@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #000;

}

.my-tabs {
    display: none;
}

.my-tabs.current {
    display: block;
}

.wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

::selection {
    color: #f8c136;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #f8c136;
}

.btn,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
    outline: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    outline: 0;
}

h1 {
    font-size: 70px;
    font-family: "Bebas Neue", serif;
}

h2 {
    font-size: 80px;
    line-height: 80px;
    font-family: "Bebas Neue", serif;
}

h3 {
    font-size: 40px;
    font-family: "Bebas Neue", serif;
}

h4 {
    font-size: 36px;
    font-family: "Bebas Neue", serif;
}

h5 {
    font-size: 30px;
    font-family: "Bebas Neue", serif;
}

h6 {
    font-size: 25px;
    font-family: "Bebas Neue", serif;
}

p {
    font-size: 16px;
}

.scroll_block {
    overflow: auto;
    padding-right: 10px
}

.scroll_block::-webkit-scrollbar {
    width: 1px
}

.scroll_block::-webkit-scrollbar-track {
    background: transparent;
    /* background-image: -moz-linear-gradient(-129deg, #14288d 0, #072cc8 100%);
    background-image: -webkit-linear-gradient(-129deg, #14288d 0, #072cc8 100%);
    background-image: -ms-linear-gradient(-129deg, #14288d 0, #072cc8 100%) */
}

.scroll_block::-webkit-scrollbar-thumb {
    background: transparent
}

.combo_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: block;
    width: 120px;
    height: 40px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-family: "Bebas Neue", serif;
    /* border: 1px solid #fff; */
    font-size: 20px;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    transition-delay: .7s;
    z-index: 1;
}

.btn:hover {
    color: #000;
}

.btn::before {
    content: "";
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 1px;
    left: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn:hover::before,
.btn:hover span.line1::after,
.btn:hover span.line3::before,
.btn:hover span.line3::after {
    width: 50%;
    height: 1px;
}

.btn:hover span.line1::before,
.btn:hover span.line2::before,
.btn:hover span.line2::after,
.btn:hover span.line4::before {
    width: 1px;
    height: 50%;
}

.btn span.line1::before,
.btn span.line1::before,
.btn span.line1::after,
.btn span.line2::before,
.btn span.line2::after,
.btn span.line3::before,
.btn span.line3::after,
.btn span.line4::before {
    background: #fff;
}

.btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    transition-delay: .7s;
    z-index: -1;
}

.btn:hover::after {
    transform: scale(1);
}

.btn span.line1,
.btn span.line2,
.btn span.line3,
.btn span.line4 {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.btn span.line1::before {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    top: 1px;
    left: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn span.line1::after {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    top: 1px;
    right: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn span.line2::before {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    top: 1px;
    right: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn span.line2::after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    bottom: 0px;
    right: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn span.line3::before {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    bottom: 0px;
    right: 1px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn span.line3::after {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.btn span.line4::before {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    bottom: 1px;
    left: 0px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.sec_padding {
    padding: 80px 0;
}

.no_border {
    border: none !important;
}

/* Start Header */
.header {
    width: 100%;
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 10px 0;
    background: #00000070;
    /* backdrop-filter: blur(10px); */
}
.header .menu_btn {
    display: flex;
    justify-content: right;
    align-items: center;
    
}

.header .item-left {
    flex: 0 0 17%;
}

.header .logo a {
    font-size: 30px;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

.header .item-center {
      flex: 0 0 45%;
}

.header .item-center nav.menu ul.menu-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header .item-right {
      flex: 0 0 30%;
    display: flex;
    justify-content: flex-end;
}

.header .menu>ul>li>a {
    display: block;
    color: #fff;
    font-weight: 300;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    padding: 15px;
    /* background: blue; */
    border-radius: 0;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.header .menu>ul>li>a:hover {
    color: #000;
    background: #fff;
    transform: translateY(3px);
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #000;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 200px;
    max-width: 200px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 33.3%;
    padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    color: #3CC1CA;
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 300px;
    object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .menu>ul>li:hover>a {
    color: #0075ff;
}

.header .mobile-menu-head,
.header .mobile-menu-trigger {
    display: none;
}

.header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 3px;
    visibility: visible;
    opacity: 1;
}

.header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #fff;
    width: 24px;
    position: relative;
}

.header .mobile-menu-trigger span:before,
.header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.header .mobile-menu-trigger span:before {
    top: -6px;
}

.header .mobile-menu-trigger span:after {
    top: 6px;
}

.header .menu {
    position: fixed;
    width: 320px;
    background-color: #000;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
}

.header .menu.active {
    transform: translate(0%);
}

.header .menu>ul>li {
    width: 100%;
    line-height: 1;
    margin: 0;
    display: block;
}

.header .menu>ul>li>a {
    color: #ffffff;
    line-height: 50px;
    height: 50px;
    padding: 0 15px;
    display: block;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.header .menu>ul>li>a:hover {
    transform: translateY(0);
}

.header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
}

.header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
    position: sticky;
    background-color: #000;
    top: 0;
}

.header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgb(255 254 254 / 10%);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    display: none;
}

.header .menu .mobile-menu-head.active .go-back {
    display: block;
}

.header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgb(255 255 255 / 10%);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
}

.header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: start !important;
}

.header .menu>ul>li .sub-menu.mega-menu,
.header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
}

.header .menu>ul>li .sub-menu.active {
    /* display: block; */
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    flex-wrap: nowrap;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    width: 100%;
    flex: 0 0 0;
    padding: 0px;
}

.header .menu>ul>li .sub-menu>ul>li>a,
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    font-size: 14px;
    padding: 0 15px;
    transition: color 0.3s ease;
    color: #ffffff;
    line-height: 50px;
    /* height: 50px; */
    display: block;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.header .menu>ul>li .sub-menu ul {
    width: 100%;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    text-transform: capitalize;
    font-size: 14px;
    padding: 0 15px;
    transition: color 0.3s ease;
    color: #ffffff;
    line-height: 50px;
    height: 50px;
    display: block;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.header .head_top .left p {
    font-size: 12px;
}

.header .head_top .right ul li a {
    font-size: 12px;
}

.header .item-left {
    flex: 0 0 25%;
}

.header .item-right a.btn_1 {
    margin-right: 40px;
}

/* End Header */

/* Start Banner */

.banner {
    background: url("../images/banner-bg.png");
    background-size: cover;
    background-position: bottom center;
    padding: 260px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner .glow_img {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 0;
}

.banner .blur_img {
    position: absolute;
    bottom: -350px;
    left: 0;
    z-index: 2;
}

.banner .video {
    width: 500px;
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 1;
    animation: moving 3s linear infinite;
}

@keyframes moving {
    0% {
        transform: translateX(-50%) translateY(10px);
    }

    50% {
        transform: translateX(-50%) translateY(0px);
    }

    100% {
        transform: translateX(-50%) translateY(10px);
    }
}

.banner .video_2 {
    width: 313px;
    position: absolute;
    left: 47.2%;
    transform: translateX(-50%);
    bottom: 108px;
    z-index: 2;
    animation: moving 3s linear infinite;
}

.banner .video_2 video {
    width: 100%;
    filter: drop-shadow(0px 0px 0px black);
}

.banner .sec_left h1 {
    color: #fff;
    font-size: 90px;
    line-height: 90px;
}

.banner .sec_left h1 span {
    font-size: 90px;
    font-family: 'Intro', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    background: -webkit-linear-gradient(90deg, #0075FF, #033672 80%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #000;
    font-family: "Bebas Neue", serif;
}

.banner .sec_left .combo_btn {
    gap: 20px;
}

.banner .sec_right p {
    color: #fff;
    padding-left: 50px;
    font-weight: 100;
}

.banner .blur_img {
    animation: move 10s infinite linear;
}

@keyframes move {
    0% {
        transform: translate(-100%);
    }

    50% {
        transform: translate(100%);
    }

    100% {
        transform: translate(-100%);
    }
}

.banner .sec_center .circle_img {
    animation: rotate 50s linear infinite;
}

/* End Banner */

/* Start Section 2 */

.section2 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section2::before {
    width: 100%;
    content: "Next App";
    font-size: 300px;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}


.section2 .sec_left h2 {
    font-size: 80px;
    line-height: 80px;
    margin: 0;
}

.section2 .sec_left p {
    color: #666;
}

.section2 .sec_right {
    text-align: end;
}

.section2 .sec_right h2 {
    color: #333;
    font-family: "Bebas Neue";
    font-size: 150px;
    line-height: 150px;
    letter-spacing: -3.026px;
    margin: 0;
}

.section2 .sec_right img {
    width: 160px;
}

.section2 .sec_right h6 {
    color: #333;
    font-family: "Bebas Neue";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.517px;
}

.section2 .sec_content {
    margin-top: 40px;
}

.section2 .sec_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.section2 .sec_content ul li {
    width: 20%;
    height: 250px;
    border: 1px solid rgba(212, 212, 212, 0.70);
    display: flex;
    justify-content: center;
    align-items: center;
}

.section2 .sec_content ul li:nth-child(-n+5) {
    border-top: none;
    border-right: none;
}

.section2 .sec_content ul li:nth-child(5) {
    border-right: none;
}

.section2 .sec_content ul li:nth-child(n+6) {
    border-top: none;
    border-bottom: none;
    border-right: none;
}

.section2 .sec_content ul li:nth-child(1) {
    border-left: none;
}

.section2 .sec_content ul li:nth-child(6) {
    border-left: none;
}

.section2 .sec_content ul li:nth-child(10) {
    border-right: none;
}

.section3 {
    background: #F3EFE7;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section3 .sec3_before {
    width: 700px;
    position: absolute;
    right: 240px;
    bottom: 0;
    z-index: 0;
}

.section3 .sec3_after {
    width: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.section3 .sec_left h2 {
    font-size: 80px;
}

.section3 ul {
    margin-top: 40px;
}

.section3 ul li .box {
    background: #ffff;
    padding: 25px;
    border-radius: 0 10px 10px 10px;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section3 ul li .box h5 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section3 ul li .box .box_arrow {
    width: 30px;
    height: 30px;
    background: url(../images/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(0deg) translateY(0px);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    z-index: 1;
}

.section3 ul li .box:hover .box_arrow {
    transform: rotate(45deg) translateY(10px);
}

.section3 ul li .box::before {
    content: "";
    width: 270px;
    height: 22px;
    background: url(../images/sec3-top.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -17px;
    left: 0;
    z-index: -1;
}

.section3 ul .slick-list.draggable {
    padding: 25px 0 0;
}

.section3 ul li .box p {
    font-size: 14px;
    height: 105px;
    margin-bottom: 15px;
}

.section3 ul li .box .img {
    border-radius: 20px;
    overflow: hidden;
}

.section3 .sec3_slider .slick-slide {
    margin: 0 10px;
}

.section4 {
    background: #E3EFFF;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section4::before {
    content: "";
    width: 53%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section4 .sec_logo {
    position: absolute;
    top: 50%;
    left: 51.8%;
    transform: translate(-50%, -50%);
}

.section4 .sec_left h2 {
    position: relative;
    margin: 0;
}

.section4::after {
    width: 100%;
    content: "Next App";
    font-size: 300px;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.section4 .sec_left p {
    margin: 40px 0;
}

.section4 .sec_left .combo_btn {
    gap: 20px;
}

.section4 .sec_left .combo_btn .btn {
    color: #000;
}

.section4 .sec_left .combo_btn .btn::before,
.section4 .sec_left .combo_btn .btn span.line1::before,
.section4 .sec_left .combo_btn .btn span.line1::before,
.section4 .sec_left .combo_btn .btn span.line1::after,
.section4 .sec_left .combo_btn .btn span.line2::before,
.section4 .sec_left .combo_btn .btn span.line2::after,
.section4 .sec_left .combo_btn .btn span.line3::before,
.section4 .sec_left .combo_btn .btn span.line3::after,
.section4 .sec_left .combo_btn .btn span.line4::before {
    background: #000;
}

.section4 .sec_left .combo_btn .btn:hover::after {
    background: #0075FF;
}

.section4 .sec_left .combo_btn .btn:hover {
    color: #fff;
}

.section4 .sec_right {
    padding-left: 120px;
}

.section4 .sec_right .box h2 {
    font-family: "Bebas Neue";
    font-size: 250px;
    line-height: 200px;
    letter-spacing: -7.348px;
    background: linear-gradient(180deg, #0075FF 0%, #73B3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section4 .sec_right .box h3 {
    color: #333;
    font-family: "Bebas Neue";
    font-size: 75px;
    letter-spacing: -1.6px;
}

.section5 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section5::before {
    width: 100%;
    content: "Feature Projects";
    font-size: 250px;
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}


.section5 .sec_right .custom-arrows {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
}

.section5 .sec_right .custom-arrows button {
    position: unset;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    transition: all 0.1s cubic-bezier(0.615, 0, 0.07, 1);
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section5 .sec_right .custom-arrows button:hover {
    background: linear-gradient(45deg, #B5D7FF, #0075FF);
    border: 1px solid #fff;
}

.section5 .sec_right .custom-arrows button::before {
    display: none;
}

.section5 .sec_content {
    width: 84%;
    margin-top: 40px;
}

.section5 .sec_content .sec5_slider .slick-list.draggable {
    padding: 50px 0 !important;
}

.section5 .sec_content .sec5_slider .slick-list.draggable .slick-slide {
    margin: 0 15px;
}

.section5 .sec_content ul li .box {
    background: #f4f4f4;
    padding: 40px 20px 20px 20px;
    border-radius: 0px;
    border: 1px solid #d9d9d9;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section5 .sec_content ul li .box::before {
    content: "";
    width: 100%;
    height: 57px;
    background: url("../images/sec5-frame.png");
    background-repeat: no-repeat;
    position: absolute;
    top: -39px;
    left: -1px;
    z-index: -1;
}

.section5 .sec_content ul li .box .logo {
    position: absolute;
    top: 25px;
    left: 20px;
    transform: translateY(-50px);
    z-index: -1;
}

.section5 .sec_content ul li .box .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.section5 .sec_content ul li .box .heading h4 {
    font-size: 40px;
    margin: 0;
}

.section5 .sec_content ul li .box .heading a {
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    transform: translateX(0px) rotate(0deg);
}

.section5 .sec_content ul li .box:hover a {
    transform: translateX(-10px) rotate(45deg);
}

.section5 .sec_content ul li .box p {
    font-size: 14px;
    height: 65px;
    margin: 0;
}

.section5 .sec_content ul li .box ul {
    margin-top: 25px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}


.section6 {
    padding: 80px 0;
    background: url("../images/sec6-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: relative;
    z-index: 1;
}

.section6::before {
    content: "Next App";
    font-size: 150px;
    position: absolute;
    bottom: 200px;
    left: 50.4%;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: transparent;
    letter-spacing: -3.821px;
    transform: rotate(-90deg);
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px #ffffff;
    opacity: .2;
}

.section6::after {
    content: "";
    width: 340px;
    height: 100%;
    background: url("../images/sec6-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section6 .sec_top_logo {
    position: absolute;
    top: -81px;
    left: 37%;
}

.section6 .sec_right {
    width: 320px;
    position: absolute;
    bottom: -30px;
    right: 400px;
    transform: rotate(-20deg);
}

.section6 .sec_left h2 {
    color: #fff;
    font-family: "Bebas Neue";
    letter-spacing: -1.619px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.section6 .sec_left h2::before {
    content: "";
    width: 86px;
    height: 86px;
    background: url("../images/sec6-circle.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: -20px;
    z-index: -1;
}

.section6 .sec_left h2~h2 {
    color: #fff;
    font-family: "Bebas Neue";
    font-size: 191.029px;
    line-height: 191.029px;
    letter-spacing: -3.821px;
}

.section6 .sec_left h2~h2::before {
    display: none;
}

.section6 .sec_left h2~h2 span {
    display: block;
    -webkit-text-stroke-width: 1.870516061782837;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.40);
    font-family: "Bebas Neue";
    font-size: 191.029px;
    line-height: 171.029px;
    color: transparent;
    letter-spacing: -3.821px;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px #ffffff;
    transform: translateX(50px);
}

.section6 .sec_left .combo_btn {
    gap: 20px;
    margin-top: 20px;
}

.section6 .sec_left .line {
    position: absolute;
    top: 37%;
    left: 52.3%;
    z-index: -1;
}

.section6 .sec_left .vertical_number {
    position: absolute;
    top: 53%;
    left: 51.2%;
    z-index: 1;
}

.section6 .sec_left .vertical_number a {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}

.section6 .sec_left .vertical_number a img {
    width: 50px;
    height: 50px;
    background: #0075ff;
    border-radius: 50px;
    padding: 5px;
}

.section6 .sec_left .vertical_number a span {
    color: #fff;
    font-family: "Bebas Neue";
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.897px;
}

.section6 .sec_left .vertical_number a span {
    transform: rotate(90deg) translate(75px, 60px);
    width: 170px;
    height: 30px;
}

.section7 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section7::after {
    width: 100%;
    content: "Our Industries";
    font-size: 300px;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.section7 .sec_top h2 {
    font-size: 70px;
    line-height: 70px;
}

.section7 .sec_top p {
    color: #666666;
    margin: 0;
}

.section7 .sec_content {
    margin-top: 40px;
}

.section7 .sec_content ul#myList li .box {
    padding: 20px 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    cursor: pointer;
}

.section7 .sec_content ul#myList li .box {
    max-height: 150px;
    /* overflow: hidden; */
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    position: relative;
    z-index: 1;
}

.section7 .sec_content ul#myList li .box::before {
    content: "";
    width: 100%;
    height: 0;
    background: #2D79FD;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section7 .sec_content ul#myList li.active .box::before {
    height: 320px;
}

.section7 .sec_content ul#myList li .box::after {
    content: "";
    width: 0px;
    height: 0px;
    background: url("../images/sec7-li-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box::after {
    content: "";
    width: 332px;
    height: 320px;
}

.section7 .sec_content ul#myList li.active .box {
    max-height: 400px;
    /* background: #2D79FD; */
    padding: 20px 0;
}

.section7 .sec_content ul#myList li .box .sec_left {
    border-top: 1px solid #B5D7FF;
    border-bottom: 1px solid #B5D7FF;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box .sec_left {
    border-top: none;
    border-bottom: none;
}

.section7 .sec_content ul#myList li .box h2 {
    font-size: 40px;
    padding: 10px;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box h2 {
    margin: 0;
    color: #fff;
    font-size: 80px;
}

.section7 .sec_content ul#myList li .box h2 img {
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box h2 img {
    filter: invert(1) grayscale(1) brightness(111);
}

.section7 .sec_content ul#myList li .box .sec_left p {
    height: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box .sec_left p {
    height: 120px;
    font-size: 14px;
    margin-top: 25px;
    color: #fff;
    overflow: hidden;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li .box .sec_right .img {
    width: 100%;
    height: 0px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box .sec_right .img {
    width: 550px;
    height: 399px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li .box .sec_right .arrow {
    width: 50px;
    height: 0px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .sec_right .arrow {
    width: 50px;
    height: 50px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.section7 .sec_content ul#myList li.active .box .sec_right {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0px;
}

.section7 .sec_content ul#myList li.active .box .sec_right .arrow {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.section8 {
    padding: 60px 0;
    background: #F4F1EA;
    position: relative;
    z-index: 1;
}

.section8 .sec_right {
    width: 48%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.section8 .sec_right img,
.section8 .sec_right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section8::before {
    width: 100%;
    content: "Our Process";
    font-size: 240px;
    position: absolute;
    top: -40px;
    left: 0px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #000000;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #f4f1ea;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px #00000000;
    opacity: .1;
}

.section8 .sec_left h2 {
    font-size: 70px;
    line-height: 70px;
}

.section8 .sec_left .accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section8 .sec_left .accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 0;
}

.section8 .sec_left .accordion .accordion-item .accordion-header button {
    background: transparent;
    box-shadow: unset;
    color: #333;
    font-family: "Bebas Neue";
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.8px;
    border-radius: 0;
}

.section8 .sec_left .accordion .accordion-item .accordion-button::after {
    width: 24px;
    height: 24px;
    content: "";
    background-image: url("../images/minus.png");
    background-size: contain;
}

.section8 .sec_left .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("../images/plus.png");
}

.section8 .sec_left .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 10px 20px;
    color: #666;
    font-size: 16px;
}

.section9 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section9::before {
    width: 100%;
    content: "Frequently asked questions";
    font-size: 200px;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.section9 .sec_content {
    margin-top: 20px;
}

.section9 .sec_content .accordion .accordion-item {
    background: #F1F7FF;
    border-radius: 0;
    margin-top: 25px;
    border-radius: 20px;
    border: 1px solid #F2F1F0;
}

.section9 .sec_content .accordion .accordion-item .accordion-header button {
    background: transparent;
    box-shadow: unset;
    color: #333;
    font-family: "Bebas Neue";
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.8px;
    border-radius: 0;
}

.section9 .sec_content .accordion .accordion-item .accordion-button::after {
    width: 24px;
    height: 24px;
    content: "";
    background-image: url("../images/minus.png");
    background-size: contain;
}

.section9 .sec_content .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("../images/plus.png");
}

.section9 .sec_content .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 10px 20px;
    color: #666;
    font-size: 16px;
}

.section10 {
    background: url("../images/sec10-bg.png");
    background-size: cover;
    background-position: bottom center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section10::before {
    width: 100%;
    content: "Get in touch";
    font-size: 250px;
    position: absolute;
    top: -10px;
    left: 0;
    font-family: "Bebas Neue", serif;
    background: transparent;
    letter-spacing: -3.821px;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px #ffffff;
    opacity: .2;
    z-index: -1;
}

.section10 .sec_left h2 {
    margin: 0;
    color: #fff;
    letter-spacing: -1.8px;
}

.section10 .sec_left form input,
.section10 .sec_left form select,
.section10 .sec_left form textarea {
    width: 100%;
    height: 40px;
    margin-top: 45px;
    background: transparent;
    border: unset;
    border-bottom: 1px solid #ffffff3b;
    font-size: 16px;
    color: #fff;
    outline: none;
    box-shadow: unset;
}

.section10 .sec_left form select {
    background-color: #17171f;
}

.section10 .sec_left form input::placeholder,
.section10 .sec_left form select::placeholder,
.section10 .sec_left form textarea::placeholder {
    color: #fff;
}

.section10 .sec_left form textarea {
    height: 80px;
    resize: unset;
}

.section10 .sec_left form input[type="submit"] {
    width: 150px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #000;
    border-radius: 2px;
    font-family: "Bebas Neue";
    font-size: 20px;
}

.section10 .sec_right {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
}

.section10 .sec_right ul {
    margin-top: 50px;
}

.section10 .sec_right .box .img {
    width: 40px;
}

.section10 .sec_right .box p {
    margin: 35px 0;
}

.section10 .sec_right .box .box_info {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.section10 .sec_right .box .box_info .box_img {
    width: 60px;
}

.section10 .sec_right .box .box_info .info h6 {
    font-size: 20px;
    line-height: 20px;
    margin: 0;
}

.section10 .sec_right .box .box_info .info span {
    font-size: 14px;
    display: block;
    color: #666;
}

.section10 .sec_right .custom-arrows {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.section10 .sec_right .custom-arrows button {
    position: unset;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    transition: all 0.1s cubic-bezier(0.615, 0, 0.07, 1);
    border: 1px solid #000;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section10 .sec_right .custom-arrows button:hover {
    background: linear-gradient(45deg, #B5D7FF, #0075FF);
    border: 1px solid #fff;
}

.section10 .sec_right .custom-arrows button::before {
    display: none;
}

.section11 {
    padding: 40px 0;
    background: #17171f;
}

.section11 .sec_left h2 {
    margin: 0;
    color: #fff;
    font-family: "Bebas Neue";
    letter-spacing: -2.7px;
    text-transform: capitalize;
}

.section11 .sec_left h2 span {
    color: #0075FF;
    font-family: "Bebas Neue";
}

.section11 .sec_right .combo_btn {
    justify-content: end;
}

.section12 {
    background: url("../images/sec12-bg.png");
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ffffff0f;
}

.section12 .sec_after {
    width: 110px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
}

.section12 .ft_info a.logo {
    display: block;
    width: 250px;
}

.section12 .ft_info p {
    color: #fff;
    font-size: 14px;
    margin: 25px 0;
}

.section12 .menu h5 {
    color: #fff;
    margin: 0;
}

.section12 .menu ul {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.section12 .menu ul li a {
    display: block;
    color: #fff;
    font-weight: 300;
}

footer {
    padding: 10px 0 0;
    background: #0e0e43;
    border-top: 1px solid #ffffff0f;
}

footer p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

footer ul {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 50px;
}

footer ul li a {
    color: #fff;
    font-size: 14px;
}

footer .marquee {
    background: linear-gradient(180deg, #0e0e43, #04056e);
    height: 140px;
    margin-top: 20px;
}

footer .marquee .slick-slide {
    margin: 0 20px;
}

footer .marquee div {
    line-height: 200px;
    letter-spacing: -2.869px;
    display: block;
    font-size: 200px;
    color: #fff;
    font-family: "Bebas Neue", serif;
    background: linear-gradient(180deg, #0075FF 0%, rgb(0 117 255 / 0%) 64.59%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: luminosity;
}

/* Start Services Pages */
.pages_banner {
    background: url("../images/inner-page-bg.png");
    background-size: cover;
    background-position: bottom center;
    padding: 270px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pages_banner::before {
    width: 100%;
    content: "Next App";
    font-size: 300px;
    line-height: 300px;
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    text-align: center;
    font-family: "Bebas Neue", serif;
    background: linear-gradient(180deg, #FFF 0%, #999 100%);
    color: #fff;
    opacity: .4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: overlay;
}

.pages_banner .sec_right .logo_right {
    width: 255px;
    height: 500px;
    position: absolute;
    top: 190px;
    right: 260px;
}

.pages_banner .sec_right .logo_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pages_banner .sec_left h3 {
    color: #fff;
}

.pages_banner .sec_left h2 {
    font-size: 110px;
    line-height: 110px;
    color: #fff;
    margin: 0;
}

.pages_banner .sec_left h1 {
    font-size: 110px;
    line-height: 110px;
    color: #fff;
    margin: 0;
}

.pages_banner .sec_left h1 span {
    color: #0075FF;
    font-family: "Bebas Neue", serif;
}

.pages_banner .sec_left p {
    color: #959595;
    margin: 25px 0 35px;
}

.pages_banner .sec_right {
    width: 960px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}

.pages_banner .sec_right .circle_lg,
.pages_banner .sec_right .circle_md,
.pages_banner .sec_right .circle_sm,
.pages_banner .sec_right .logo_right {
    z-index: -1;
}

.pages_banner .sec_right .circle_lg {
    width: 899px;
    height: 899px;
    position: absolute;
    top: 0;
    right: 0;
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pages_banner .sec_right .circle_md {
    width: 899px;
    height: 899px;
    position: absolute;
    top: 0;
    right: 0;
    animation: rotate-2 20s linear infinite;
    z-index: -1;
}

@keyframes rotate-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.pages_banner .sec_right .circle_sm {
    width: 899px;
    height: 899px;
    position: absolute;
    top: 0;
    right: 0;
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.pages_banner .sec_mountain {
    position: absolute;
    bottom: 0px;
    right: 80px;
    z-index: 22;
}

.pages_banner .sec_mobile {
    width: 250px;
    position: absolute;
    bottom: 280px;
    right: 300px;
    transform: rotate(20deg);
    z-index: 2;
    transition: .6s linear;
}

.pages_banner .sec_mobile video {
    display: block;
    width: 100%;
}

.pages_sec2 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.pages_sec2::before {
    width: 100%;
    content: "Who we are";
    font-size: 300px;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.pages_sec2 .sec_top h2 {
    margin: 0;
}

.pages_sec2 .sec_top p {
    color: #666;
}

.pages_sec2 .sec_content {
    margin-top: 0px;
    padding: 100px 0;
    position: relative;
}

.pages_sec2 .sec_content .sec_right h3 {
    margin: 0;
}

.pages_sec2 .sec_content .sec_right p {
    margin: 20px 0;
}

.pages_sec2 .sec_content .sec_right .combo_btn {
    gap: 20px;
    margin: 30px 0;
}

.pages_sec2 .sec_content .sec_right .btn {
    color: #000;
}

.pages_sec2 .sec_content .sec_right .btn::before,
.pages_sec2 .sec_content .sec_right .btn span.line1::before,
.pages_sec2 .sec_content .sec_right .btn span.line1::before,
.pages_sec2 .sec_content .sec_right .btn span.line1::after,
.pages_sec2 .sec_content .sec_right .btn span.line2::before,
.pages_sec2 .sec_content .sec_right .btn span.line2::after,
.pages_sec2 .sec_content .sec_right .btn span.line3::before,
.pages_sec2 .sec_content .sec_right .btn span.line3::after,
.pages_sec2 .sec_content .sec_right .btn span.line4::before {
    background: #000;
}

.pages_sec2 .sec_content .sec_right .btn:hover::after {
    background: #0075FF;
}

.pages_sec2 .sec_content .sec_right .btn:hover {
    color: #fff;
}

.pages_sec2 .sec_content .sec_right ul {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.pages_sec2 .sec_content .sec_before {
    width: 38%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 12px 12px 12px 12px;
}

.pages_sec2 .sec_content .sec_before::before {
    content: "";
    background: url("../images/pages-sec2-logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 267px;
    height: 544px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -194px;
    z-index: 2;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, .2));
}

.pages_sec2 .sec_content .sec_before video {
    width: 100%;
    height: 100%;
}

.pages_sec3 {
    background: url("../images/pages-sec3-bg.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.pages_sec3::before {
    width: 100%;
    content: "Our Services";
    font-size: 300px;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #f3efe7;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.pages_sec3 .sec_left h2 {
    font-size: 80px;
}

.pages_sec3 ul {
    margin-top: 40px;
}

.pages_sec3 ul li .box {
    background: #ffff;
    padding: 25px;
    border-radius: 0 10px 10px 10px;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.pages_sec3 ul li .box h5 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.pages_sec3 ul li .box .box_arrow {
    width: 30px;
    height: 30px;
    background: url(../images/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(0deg) translateY(0px);
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    z-index: 1;
}

.pages_sec3 ul li .box:hover .box_arrow {
    transform: rotate(45deg) translateY(10px);
}

.pages_sec3 ul li .box::before {
    content: "";
    width: 270px;
    height: 22px;
    background: url(../images/sec3-top.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -17px;
    left: 0;
    z-index: -1;
}

.pages_sec3 ul .slick-list.draggable {
    padding: 25px 0 0;
}

.pages_sec3 ul li .box p {
    font-size: 14px;
    height: 65px;
}

.pages_sec3 ul li .box .img {
    border-radius: 20px;
    overflow: hidden;
}

.pages_sec3 .pages_sec3_slider .slick-slide {
    margin: 0 10px;
}

.pages_sec4 {
    padding: 250px 0;
    background: #DAF6FF;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pages_sec4 h2 {
    text-align: center;
    font-size: 160px;
    line-height: 200px;
    letter-spacing: 0.616px;
    font-family: "Bebas Neue", serif;
    background: rgba(95, 95, 96, 0.80);
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #daf6ff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 5px transparent;
    opacity: 1;
    margin: 0;
}

.pages_sec4 p {
    color: #333;
    text-align: center;
    font-family: "Bebas Neue";
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.8px;
    margin: 0;
}

.pages_sec4 .icon {
    width: 200px;
    height: 200px;
    transform: scale(1);
    position: absolute;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    cursor: pointer;
}

.pages_sec4 .icon:hover {
    filter: blur(0px) !important;
    transform: scale(1) !important;
}

.pages_sec4 .icon_01 {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transform: scale(1);
}

.pages_sec4 .icon_02 {
    top: 16%;
    left: 10%;
    filter: blur(5px);
    transform: scale(.4);
}

.pages_sec4 .icon_03 {
    left: 20%;
    bottom: 70px;
    filter: blur(5px);
    transform: scale(.7);
}

.pages_sec4 .icon_04 {
    left: 39%;
    top: 90px;
    filter: blur(5px);
    transform: scale(.4);
}

.pages_sec4 .icon_05 {
    right: 15%;
    top: 90px;
    filter: blur(5px);
    transform: scale(.4);
}

.pages_sec4 .icon_06 {
    right: 11%;
    bottom: 130px;
    filter: blur(5px);
    transform: scale(.6);
}

.pages_sec4 .icon_07 {
    right: 0%;
    top: 25%;
    filter: blur(5px);
    transform: scale(.4);
}

.pages_sec4 .icon_08 {
    left: 45%;
    transform: translateX(-50%);
    bottom: -65px;
    transform: scale(1);
}

/* End Service Page */

.wearable_banner .sec_mobile {
    width: 380px;
    right: 250px;
    bottom: 310px;
}

.android_banner .sec_mobile {
    width: 550px;
    transform: rotate(0deg);
    right: 160px;
    bottom: 240px;
}

.react_banner .sec_mobile {
    width: 550px;
    right: 120px;
    bottom: 300px;
    transform: rotate(0deg);
}

.game_banner .sec_mobile {
    width: 550px;
    bottom: 250px;
    right: 150px;
    transform: rotate(0deg);
}

.flutter_banner .sec_mobile {
    width: 250px;
    bottom: 240px;
    right: 300px;
    transform: rotate(-20deg);
}

.vr_banner .sec_mobile {
    width: 750px;
    bottom: 0;
    right: 90px;
    transform: rotate(0deg);
}

.prototyping_banner .sec_mobile {
    width: 600px;
    bottom: 170px;
    right: 160px;
    transform: rotate(0deg);
}

.store_banner .sec_mobile {
    width: 550px;
    bottom: 50px;
    right: 220px;
    transform: rotate(0deg);
}

/*  Start Industry Page */
.industry_banner {
    background: url("../images/inner-page-bg.png");
    background-size: cover;
    background-position: bottom center;
    padding: 250px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.industry_banner .sec_left h3 {
    color: #fff;
}

.industry_banner .sec_left h1 {
    font-size: 60px;
    line-height: 100px;
    color: #fff;
    margin: 0;
}

.industry_banner .sec_left h1 span {
    font-size: 120px;
    display: block;
    color: #0075FF;
    font-family: "Bebas Neue", serif;
}

.industry_banner .sec_left p {
    color: #959595;
    margin: 0px 0 35px;
}

.industry_banner .sec_right {
    width: 45%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.industry_banner .sec_right .industry_banner_slider {
    position: relative;
    z-index: 1;
}

.industry_banner .sec_right .industry_banner_slider::before {
    content: "";
    width: 279px;
    height: 553px;
    background: url("../images/industry-banner-mobile.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -6px;
    left: 5px;
    z-index: 2;
}

.industry_banner .sec_right .industry_banner_slider .slick-slide {
    margin: 0 15px;
}

.industry_banner .sec_right .box img {
    width: 257px;
    height: 541px;
}

.industry_sec2 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.industry_sec2::before {
    width: 100%;
    content: "Industries";
    font-size: 200px;
    text-align: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.industry_sec2 .sec_top h2 {
    margin: 0;
}

.industry_sec2 .sec_top p {
    color: #666;
}

.industry_sec2 .sec_content {
    margin-top: 0px;
    padding: 100px 0;
    position: relative;
}

.industry_sec2 .sec_content .sec_right h3 {
    margin: 0;
}

.industry_sec2 .sec_content .sec_right p {
    margin: 20px 0;
}

.industry_sec2 .sec_content .sec_right .combo_btn {
    gap: 20px;
    margin: 30px 0;
}

.industry_sec2 .sec_content .sec_right .btn {
    color: #000;
}

.industry_sec2 .sec_content .sec_right .btn::before,
.industry_sec2 .sec_content .sec_right .btn span.line1::before,
.industry_sec2 .sec_content .sec_right .btn span.line1::before,
.industry_sec2 .sec_content .sec_right .btn span.line1::after,
.industry_sec2 .sec_content .sec_right .btn span.line2::before,
.industry_sec2 .sec_content .sec_right .btn span.line2::after,
.industry_sec2 .sec_content .sec_right .btn span.line3::before,
.industry_sec2 .sec_content .sec_right .btn span.line3::after,
.industry_sec2 .sec_content .sec_right .btn span.line4::before {
    background: #000;
}

.industry_sec2 .sec_content .sec_right .btn:hover::after {
    background: #0075FF;
}

.industry_sec2 .sec_content .sec_right .btn:hover {
    color: #fff;
}

.industry_sec2 .sec_content .sec_right ul {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.industry_sec2 .sec_content .sec_before {
    width: 38%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 12px 12px 12px 12px;
}

.industry_sec2 .sec_content .sec_before::before {
    content: "";
    background: url("../images/pages-sec2-logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 267px;
    height: 544px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -194px;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, .2));
    z-index: 2;
}

.industry_sec2 .sec_content .sec_before video {
    width: 100%;
    height: 100%;
}

.industry_sec3 {
    background: #F3EFE7;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.industry_sec3::after {
    width: 100%;
    content: "Industries Types";
    font-size: 200px;
    position: absolute;
    top: -30px;
    right: -230px;
    text-align: right;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #f3efe7;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
    z-index: -2;
}

.industry_sec3 .sec_before {
    width: 700px;
    position: absolute;
    right: 240px;
    bottom: 0;
    z-index: 0;
}

.industry_sec3 .sec_after {
    width: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.industry_sec3 .sec_left h2 {
    font-size: 80px;
}

.industry_sec3 .sec_left p {
    color: #666;
}

.industry_sec3 .sec_left h2 {
    font-size: 75px;
}

.industry_sec3 .sec_left .tabs {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    background: #000;
    margin: 30px 0 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.industry_sec3 .sec_left .tabs li {
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    color: #FFF;
    font-family: "Bebas Neue";
    font-size: 20px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    cursor: pointer;
}

.industry_sec3 .sec_left .tabs li.current {
    background: #0075FF;
    border-radius: 100px;
    color: #FFF;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.industry_sec3 .sec_left .my-tabs {
    margin-top: 0px;
}

.industry_sec3 .sec_left .my-tabs .box {
    background: #fff;
    padding: 40px 30px;
    margin-top: 45px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.industry_sec3 .sec_left .my-tabs .box::before {
    content: "";
    width: 306px;
    height: 206px;
    background: url("../images/industry-sec3-left-box.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
}

.industry_sec3 .sec_left .my-tabs .box p {
    color: #666;
    font-size: 14px;
    height: 85px;
    margin: 0;
}

.industry_sec3 .sec_right {
    width: 45%;
    position: absolute;
    top: 16%;
    right: 6px;
    z-index: -1;
}

.industry_sec3 .sec_right ul.industry_sec3_slider {
    width: 36%;
    position: relative;
    z-index: 2;
}

.industry_sec3 .sec_right ul.industry_sec3_slider::before {
    content: "";
    width: 696px;
    height: 756px;
    background: url("../images/industry-sec3-before.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -96px;
    left: -74px;
    z-index: 1;
}

.industry_sec3 .sec_right .box img {
    width: 295px;
    height: 653px;
}

.industry_sec4 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.industry_sec4 .sec_top {}

.industry_sec4 .sec_top h2 {
    color: #333333;
}

.industry_sec4 .sec_top p {
    margin: 0;
    color: #666;
}

.industry_sec4 .sec_content {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.industry_sec4 .sec_content::before {
    content: "";
    width: 50%;
    height: 95%;
    background: #0075FF;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.industry_sec4 .sec_content::after {
    content: "";
    width: 50%;
    height: 95%;
    background: rgba(227, 239, 255, 0.50);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.industry_sec4 .sec_content .top_tab {
    width: 750px;
    height: 50px;
    padding: 3px;
    border-radius: 100px;
    background: #000;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.industry_sec4 .sec_content .top_tab li {
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    color: #FFF;
    font-family: "Bebas Neue";
    font-size: 20px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    cursor: pointer;
}

.industry_sec4 .sec_content .top_tab li.current {
    background: #0075FF;
    border-radius: 100px;
    color: #FFF;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.industry_sec4 .sec_logo {
    width: 100px;
    position: absolute;
    top: 50%;
    left: 51.2%;
    transform: translate(-50%, -50%);
}

.industry_sec4 .sec_content .sec_left {
    padding: 100px 0 140px;
}

.industry_sec4 .sec_content .sec_left h2 {
    color: #fff;
    margin-bottom: 40px;
}

.industry_sec4 .sec_content .sec_left .tabs {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.industry_sec4 .sec_content .sec_left .tabs li {
    width: 250px;
    cursor: pointer;
}

.industry_sec4 .sec_content .sec_right {
    padding: 100px 0 100px 140px;
}


.industry_sec4 .sec_content .sec_right .my-tabs .box .img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.industry_sec4 .sec_content .sec_right .my-tabs .box .img::before {
    width: 100%;
    content: "oracle";
    font-size: 100px;
    position: absolute;
    top: -30px;
    left: 0;
    text-align: left;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #f1f7ff;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .7;
    z-index: -1;
}

.industry_sec4 .sec_content .sec_right .my-tabs.oracle_tab .box .img::before {
    content: "oracle";
}

.industry_sec4 .sec_content .sec_right .my-tabs.mysql_tab .box .img::before {
    content: "MYSQL";
}

.industry_sec4 .sec_content .sec_right .my-tabs.sqlserver_tab .box .img::before {
    content: "sql server";
}

.industry_sec4 .sec_content .sec_right .my-tabs.mangodb_tab .box .img::before {
    content: "mongo db";
}

.industry_sec4 .sec_content .sec_right .my-tabs.andriod-studio_tab .box .img::before {
    content: "Andriod Studio";
}

.industry_sec4 .sec_content .sec_right .my-tabs.xcode_tab .box .img::before {
    content: "Xcode";
}

.industry_sec4 .sec_content .sec_right .my-tabs.visual-studio_tab .box .img::before {
    content: "Visual Studio";
}

.industry_sec4 .sec_content .sec_right .my-tabs.flutter_tab .box .img::before {
    content: "Flutter";
}

.industry_sec4 .sec_content .sec_right .my-tabs.react_native_tab .box .img::before {
    content: "React Native";
}

.industry_sec4 .sec_content .sec_right .my-tabs.xcode_tab .box .img::before {
    content: "Xcode";
}

.industry_sec4 .sec_content .sec_right .my-tabs.visual-studio_tab .box .img::before {
    content: "Visual Studio";
}

.industry_sec4 .sec_content .sec_right .my-tabs.eclipse_tab .box .img::before {
    content: "eclipse";
}

.industry_sec4 .sec_content .sec_right .my-tabs.react_native_tab .box .img::before {
    content: "React Native";
}

.industry_sec4 .sec_content .sec_right .my-tabs.python_tab .box .img::before {
    content: "Python";
}

.industry_sec4 .sec_content .sec_right .my-tabs.java_tab .box .img::before {
    content: "Java";
}

.industry_sec4 .sec_content .sec_right .my-tabs.swift_tab .box .img::before {
    content: "Swift";
}

.industry_sec4 .sec_content .sec_right .my-tabs.kotlin_tab .box .img::before {
    content: "Kotlin";
}

.industry_sec4 .sec_content .sec_right .my-tabs .box .img img {
    width: 250px;
}

.industry_sec4 .sec_content .sec_right .my-tabs .box p {
    color: #666;
    margin: 40px 0 0;
}

/* Start About Us */
.inner_banner {
    background: url("../images/inner-page-bg.png");
    background-size: cover;
    background-position: bottom center;
    overflow: hidden;
    padding: 200px 0;
    position: relative;
    z-index: 1;
}

.inner_banner::before {
    width: 100%;
    content: "About Us";
    font-size: 300px;
    line-height: 300px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    text-align: center;
    font-family:
        "Bebas Neue", serif;
    background: linear-gradient(180deg, #FFF 0%, #999 100%);
    color: #fff;
    opacity: .4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: overlay;
}

.inner_banner .sec_content h1 {
    color: #fff;
}

.inner_banner .sec_content h1 span {
    color: #0075FF;
    font-family: "Bebas Neue";
    font-size: 130px;
    line-height: 120px;
    letter-spacing: -2.6px;
}

.inner_banner .sec_content p {
    color: #959595;
    margin: 0;
}

.inner_banner .sec_content .combo_btn {
    justify-content: center;
    margin-top: 30px;
}

.inner_sec2 {
    padding: 170px 0;
    position: relative;
    z-index: 1;
}

.inner_sec2 .sec_before {
    width: 580px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.inner_sec2 .sec_left h2 {
    color: #333;
    font-family: "Bebas Neue";
    font-size: 190px;
    line-height: 190px;
    margin: 0;
    letter-spacing: -5.775px;
}

.inner_sec2 .sec_left h2 span {
    color: #0075FF;
    font-family: "Bebas Neue";
    font-size: 190px;
    letter-spacing: -5.775px;
}

.inner_sec2 .sec_left ul {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0px;
}

.inner_sec2 .sec_left ul li {
    width: 130px;
}

.inner_sec2 .sec_right .tabs {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    background: #000;
    margin: 0 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px;
    gap: 20px;
}

.inner_sec2 .sec_right .tabs li {
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    color: #FFF;
    font-family: "Bebas Neue";
    font-size: 20px;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    cursor: pointer;
}

.inner_sec2 .sec_right .tabs li.current {
    background: #0075FF;
    border-radius: 100px;
    color: #FFF;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.inner_sec2 .sec_right .my-tabs .box h4 {
    color: #333;
    font-size: 60px;
    letter-spacing: -1.8px;
}

.inner_sec2 .sec_right .my-tabs .box p {
    color: #666;
    margin: 0;
}

.inner_sec2 .sec_right .combo_btn {
    margin-top: 40px;
}

.inner_sec2 .sec_right .combo_btn .btn {
    color: #000;
}

.inner_sec2 .sec_right .combo_btn .btn::before,
.inner_sec2 .sec_right .combo_btn .btn span.line1::before,
.inner_sec2 .sec_right .combo_btn .btn span.line1::before,
.inner_sec2 .sec_right .combo_btn .btn span.line1::after,
.inner_sec2 .sec_right .combo_btn .btn span.line2::before,
.inner_sec2 .sec_right .combo_btn .btn span.line2::after,
.inner_sec2 .sec_right .combo_btn .btn span.line3::before,
.inner_sec2 .sec_right .combo_btn .btn span.line3::after,
.inner_sec2 .sec_right .combo_btn .btn span.line4::before {
    background: #000;
}

.inner_sec2 .sec_right .combo_btn .btn:hover::after {
    background: #0075FF;
}

.inner_sec2 .sec_right .combo_btn .btn:hover {
    color: #fff;
}

.inner_sec2 .inner_sec2_bottom {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -100px;
    z-index: 1;
}

.inner_sec2 .inner_sec2_bottom #counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.inner_sec2 .inner_sec2_bottom #counter li {
    width: 32.5%;
    height: 200px;
    border-radius: 5px;
    background: #F9F9F9;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    padding: 0 100px;
}

.inner_sec2 .inner_sec2_bottom #counter li p {
    margin: 0;
    color: #0075FF;
    font-family: "Bebas Neue";
    font-size: 90px;
    font-weight: bold;
    line-height: 90px;
    letter-spacing: -2.7px;
}

.inner_sec2 .inner_sec2_bottom #counter li p span {
    color: #333;
    font-family: "Bebas Neue";
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 90px;
    /* 192.141% */
    letter-spacing: -2.7px;
    text-transform: capitalize;
}

.inner_sec2 .inner_sec2_bottom #counter li span {
    color: #333;
    font-family: "Bebas Neue";
    font-size: 22px;
    line-height: 22px;
}

.inner_sec3 {
    background: #F3EFE7;
    padding: 250px 0;
    position: relative;
    z-index: 0;
}

.inner_sec3::after {
    width: 100%;
    content: "Why choose us";
    font-size: 200px;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    z-index: -1;
    font-family: "Bebas Neue", serif;
    background: #b5b5b569;
    -webkit-text-stroke-width: 2.4255001544952393;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.80);
    color: #f3efe7;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    opacity: .4;
}

.inner_sec3 .sec3_after {
    width: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.inner_sec3 .sec_left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
}

.inner_sec3 .box {
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
    z-index: 1;
}

.inner_sec3 .box:hover {
    background: #0075ff;
}

.inner_sec3 .box::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 75%;
    height: 57px;
    background: url("../images/about-us/sec3-frame.png");
    background-size: contain;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.inner_sec3 .box:hover::before {
    width: 75%;
    height: 57px;
    background: url("../images/about-us/sec3-blue-frame.png");
    background-size: contain;
}

.inner_sec3 .box h5 {
    margin: 0;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.inner_sec3 .box:hover h5 {
    color: #fff;
}

.inner_sec3 .box p {
    font-size: 14px;
    margin-top: 15px;
    color: #666;
    transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}

.inner_sec3 .box:hover p {
    color: #fff;
}

.inner_sec3 .sec_center {
    position: relative;
    z-index: 1;
}


.inner_sec3 .sec_center video {
    width: 100%;
}

.inner_sec3 .sec_center {
    width: 680px;
    position: absolute;
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
}

/* End About Us */

/* Start Contact Us */

.contact_banner .sec_content h1 {
    font-family: "Bebas Neue";
    font-size: 130px;
    line-height: 120px;
    letter-spacing: -2.6px;
}

.contact_banner::before {
    width: 100%;
    content: "Contact Us";
    font-size: 300px;
    line-height: 300px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    text-align: center;
    font-family: "Bebas Neue", serif;
    background: linear-gradient(180deg, #FFF 0%, #999 100%);
    color: #fff;
    opacity: .4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: overlay;
}

.contact_sec2 {
    padding: 80px 0;
}

.contact_sec2 .sec_left h6 {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 10px;
}

.contact_sec2 .sec_left a {
    display: block;
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.contact_sec2 .sec_left hr {
    border-top: 1px solid #c3c3c3;
    margin: 25px 0;
}

.contact_sec2 .sec_left p {
    color: #666;
}

.contact_sec2 .sec_left ul {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}

.contact_sec2 .sec_right form h2 {
    text-transform: capitalize;
    margin: 0;
}

.contact_sec2 .sec_right form p {
    margin: 0px 0 25px;
    color: #666;
}

.contact_sec2 .sec_right form input,
.contact_sec2 .sec_right form select,
.contact_sec2 .sec_right form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #000;
    color: #000;
    border-radius: 10px;
    padding: 0 15px;
    outline: none;
    margin-bottom: 15px;
}

.contact_sec2 .sec_right form input::placeholder,
.contact_sec2 .sec_right form select,
.contact_sec2 .sec_right form textarea::placeholder {
    color: #000;
}

.contact_sec2 .sec_right form textarea {
    padding-top: 10px;
    height: 100px;
    resize: none;
}

.contact_sec2 .sec_right form .combo_btn .btn_2 .text {
    width: 100px;
}

/* Start Case Studies Page */
.case_study_banner {
    background: url(../images/inner-page-bg.png);
    background-size: cover;
    background-position: bottom center;
    padding: 240px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.case_study_banner::before {
    width: 100%;
    content: "Case Studies";
    font-size: 300px;
    line-height: 300px;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: -1;
    /* text-align: center; */
    font-family: "Bebas Neue", serif;
    background: linear-gradient(180deg, #FFF 0%, #999 100%);
    color: #fff;
    opacity: .4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: overlay;
}

.case_study_banner .sec_left h1 {
    color: #FFF;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -1.8px;
    margin: 0;
}

.case_study_banner .sec_left h1 span {
    display: block;
    color: #0075FF;
    font-family: "Bebas Neue";
    font-size: 130px;
    line-height: 120px;
    letter-spacing: -2.6px;
}

.case_study_banner .sec_left p {
    margin: 30px 0 25px;
    color: #fff;
}

.case_study_banner .sec_right {
    width: 45%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 30px;
}

.case_study_banner .sec_right .case_studies_slider .slick-slide,
.case_study_banner .sec_right .case_studies_slider_2 .slick-slide {
    margin: 25px 0;
}

.case_study_banner .sec_right .case_studies_slider,
.case_study_banner .sec_right .case_studies_slider_2 {
    width: 29%;
}

.case_study_sec2 {
    background: #F0FDFF;
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.case_study_sec2 .box {
    padding-left: 90px;
}

.case_study_sec2 .box .box_img {
    display: flex;
    align-items: center;
    gap: 15px;
}

.case_study_sec2 .box .box_img img {
    width: 65px;
    transform: translateY(-4px);
}

.case_study_sec2 .box .box_img h2 {
    margin: 0;
    color: #333;
    font-size: 80px;
    letter-spacing: -1.8px;
}


.case_study_sec2 .box p {
    margin: 25px 0;
    color: #666;
}

.case_study_sec2 .box .combo_btn .btn {
    color: #000;
}

.case_study_sec2 .box .combo_btn .btn::before,
.case_study_sec2 .box .combo_btn .btn span.line1::before,
.case_study_sec2 .box .combo_btn .btn span.line1::before,
.case_study_sec2 .box .combo_btn .btn span.line1::after,
.case_study_sec2 .box .combo_btn .btn span.line2::before,
.case_study_sec2 .box .combo_btn .btn span.line2::after,
.case_study_sec2 .box .combo_btn .btn span.line3::before,
.case_study_sec2 .box .combo_btn .btn span.line3::after,
.case_study_sec2 .box .combo_btn .btn span.line4::before {
    background: #000;
}

.case_study_sec2 .box .combo_btn .btn:hover::after {
    background: #0075FF;
}

.case_study_sec2 .box .combo_btn .btn:hover {
    color: #fff;
}

.case_study_sec2 .box ul#counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.case_study_sec2 .box ul#counter .box {
    padding: 0;
}


.case_study_sec2 .box ul#counter .box h5 {
    color: #00A8C7;
    font-size: 60px;
    font-weight: 400;
    margin: 0;
}

.case_study_sec2 .box ul#counter .box h5 .count {
    color: #333;
    font-weight: bold;
    font-family: "Bebas Neue";
}

.case_study_sec2 .box ul#counter .box p {
    margin: 0;
    color: #333;
    font-family: "Bebas Neue";
    font-size: 20px;
}

.case_study_sec2::before {
    content: "";
    width: 48%;
    height: 100%;
    background: url("../images/case-studies/sec_before.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.case_study_sec2 .sec_left {
    width: 550px;
    position: absolute;
    bottom: 70px;
    left: 23%;
    z-index: 1;
}

.case_study_sec2.box2 {
    background: #F2FFEF;
}

.case_study_sec2.box2::before {
    background: url("../images/case-studies/sec2_before.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: unset;
    right: 0;
    z-index: -1;
}

.case_study_sec2.box2 .sec_left {
    width: 650px;
    position: absolute;
    bottom: 30px;
    left: unset;
    right: 16%;
    z-index: 1;
}

.case_study_sec2.box2 .box {
    padding: 0;
    padding-right: 90px;
}

.case_study_sec2.box2 .box ul#counter .box h5 {
    color: #38B91D;
}

.case_study_sec2.box3 {
    background-color: #FFF9F2;
}

.case_study_sec2.box3::before {
    background: url("../images/case-studies/sec3_before.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 0;
    z-index: -1;
}

.case_study_sec2.box2 .box ul#counter .box h5 {
    color: #F99D33;
}

.case_study_sec2.box4 {
    background-color: #FFEFF4;
}

.case_study_sec2.box4::before {
    background: url("../images/case-studies/sec4_before.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: unset;
    right: 0;
    z-index: -1;
}

.case_study_sec2.box4 .sec_left {
    width: 450px;
    position: absolute;
    bottom: 30px;
    left: unset;
    right: 29%;
    z-index: 1;
}

.case_study_sec2.box4 .box {
    padding: 0;
    padding-right: 90px;
}

.case_study_sec2.box4 .box ul#counter .box h5 {
    color: #D15077;
}

.case_study_sec2.box5 {
    background: #F2FAFF;
}

.case_study_sec2.box5::before {
    background: url("../images/case-studies/sec5_before.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    z-index: -1;
}

.case_study_sec2.box5 .box ul#counter .box h5 {
    color: #002372;
}

.case_study_sec2.box6 {
    background-color: #FDFCFF;
}

.case_study_sec2.box6::before {
    background: url("../images/case-studies/sec6_before.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    left: unset;
    right: 0;
    z-index: -1;
}

.case_study_sec2.box6 .box ul#counter .box h5 {
    color: #6d2ea4;
}

.case_study_sec2.box6 .sec_left {
    width: 750px;
    bottom: 0px;
    left: unset;
    right: 0;
    z-index: 1;
}

.case_study_sec2.box6 .box {
    padding: 0;
    padding-right: 90px;
}