* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2');
}

@font-face {
    font-family: 'Satoshi_light';
    src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2');
}

@font-face {
    font-family: 'clash_display_regular';
    src: url('../fonts/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Regular.woff2');
}

@font-face {
    font-family: 'clash_display_medium';
    src: url('../fonts/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Medium.woff2');
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #489AE0;
    --secndary-color: #fff;
    --secondary-dark: #14181b;
    --clash-regular: 'clash_display_regular';
    --clash-medium: 'clash_display_medium';
}

.primary-text {
    color: var(--primary-color) !important;
}

.secondary-text {
    color: var(--secondary-dark-color) !important;
}

body {
    background-color: #14181b;
    font-family: "Poppins", sans-serif;
}

p {
    font-family: 'Satoshi' !important;
}

header {
    background-color: transparent;
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container .nav-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #FFFFFF1A;
    border-radius: 25px;
    padding: .6rem 3rem;
}

header .container .nav-list li a {
    font-family: 'Satoshi';
    color: #DFDFDF;
    font-size: 16px;
    text-transform: capitalize;
    transition: all .3s;
}

header .container .nav-list li a:hover {
    color: var(--primary-color);
}

header .container .nav-list li.has-dropdown {
    position: relative;
}

header .container .nav-list li.has-dropdown i {
    font-size: .8rem;
    transition: all .3s;
    color: #fff;
}

header .container .nav-list li.has-dropdown .dropdown {
    position: absolute;
    left: 0;
    top: 35px;
    width: max-content;
    background-color: #329fff79;
    backdrop-filter: blur(5px);
    list-style-type: none;
    padding: 1rem;
    border-radius: 1rem;
    display: none;
}

header .container .nav-list li.has-dropdown .dropdown li {
    margin-bottom: .5rem;
}

header .container .nav-list li.has-dropdown .dropdown li a {
    color: #fff;
    position: relative;
}

header .container .nav-list li.has-dropdown .dropdown li a::after {
    position: absolute;
    transition: all .3s;
    bottom: -2px;
    background-color: #fff;
    width: 0;
    height: 1px;
    right: 0;
    content: "";
}

header .container .nav-list li.has-dropdown .dropdown li a:hover::after {
    width: 100%;
    left: 0;
    right: inherit;
}

header .container .nav-list li.has-dropdown .dropdown li:last-of-type {
    margin-bottom: 0;
}

.nav-btn {
    background-color: var(--primary-color);
    font-family: 'clash_display_regular';
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.005em;
    color: #fff;
    border-radius: 2rem;
    padding: .8rem 2rem;
}

.main-banner {
    background-color: var(--secondary-dark);
    padding: 17rem 0;
    padding-top: 10rem;
    background-image: url('../images/Mask group.png');
    background-position: bottom;
    background-size: cover;
    position: relative;
}

.main-banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 74%;
    /* z-index: -1; */
}

.main-banner .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 30%;
    /* transform: rotateY(-180deg); */
}



h1 {
    font-family: var(--clash-medium);
    /* font-size: 187px; */
    font-size: 11vw;
    font-weight: 500;
    /* line-height: 216px; */
    letter-spacing: 0.005em;
    color: var(--secndary-color);
    text-transform: capitalize;
}

h1.typewriter {
    overflow: hidden;
    height: 12vw;
}

.main-banner p {
    font-size: 18px;
    color: #fff;
}

.main-banner a {
    color: var(--primary-color);
}

.main-banner hr {
    color: #313B43;
    opacity: 1;
    margin-top: 4rem;
}

.main-banner .num {
    font-size: 120px;
    font-size: 5.8vw;
    font-family: var(--clash-medium) !important;
    color: #fff;
    margin-bottom: 0;
    line-height: 95%;
}

h2 {
    color: #fff;
    font-size: 4.9vw;
    font-family: var(--clash-medium);
    text-transform: capitalize;
}

.my-btn {
    background-color: transparent;
    border: 1px solid #fff;
    font-family: var(--clash-regular);
    font-size: 16px;
    color: #fff;
    border-radius: 2rem;
    padding: .7rem 2rem;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    z-index: 99;
    transition: all .4s;
    overflow: hidden;
}

.my-btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    content: "";
    z-index: -1;
    transition: all .4s;
}

.my-btn:hover::after {
    width: 100%;
}

.my-btn.invert {
    border-color: transparent;
}

.my-btn.invert::after {
    width: 100%;
    right: 0;
    left: inherit;
}

.my-btn.invert:hover::after {
    width: 0;
}

.my-btn.invert:hover {
    border-color: #fff;
}

.services {
    padding: 3rem 0;
}

.services p {
    color: #fff;
    font-size: 18px;
}

.service-box {
    border-top: 1px solid rgba(49, 59, 67, 1);
    padding: 2.7rem 0;
    position: relative;
}

.service-box .d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-box:last-child {
    border-bottom: 1px solid rgba(49, 59, 67, 1);
}

.service-box h2 {
    transition: all .3s;
}

.service-box h2 span {
    margin-right: 5rem;
}

.service-box img {
    position: absolute;
    opacity: 0;
    visibility: hidden;

    /* transform: translateY(-50%); */
    /* right: 0; */
    z-index: 9;
    height: 120%;
    transition: all .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}

.service-box .text {
    display: none;
    margin-left: 10vw;
}

.service-box:hover img {
    opacity: 1;
    visibility: visible;
}

.service-box svg {
    transition: all .3s;
}

.service-box:hover svg {
    transform: rotateZ(-45deg);
}

.service-box:hover svg path {
    stroke: var(--primary-color);
}

.service-box h2 {
    font-size: 3.6vw;
}

.service-box:hover h2 {
    color: var(--primary-color);
}

.ideas {
    padding: 5rem 0;
}

.ideas p {
    font-size: 18px;
    color: #fff;
}

h3,
.content h2 {
    font-size: 46px;
    font-family: var(--clash-medium);
    color: #fff;
}

.ideas .idea-box {
    font-size: 250px;
    font-size: 15vw;
    line-height: 90%;
    color: #fff;
    font-family: var(--clash-regular);
    position: relative;
    width: max-content;
    line-height: 90%;
}

.ideas .idea-box div {
    /* font-size: 34px; */
    font-size: 18%;
    position: absolute;
    font-style: normal;
    top: 10%;
    line-height: 90%;
    right: -15%;
}

.ideas .image a {
    background-color: var(--primary-color);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    color: var(--secndary-color);
    text-align: center;
    line-height: 5rem;
    font-size: 1.2rem;
}

.marque {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: -1;
}

.marque.top {
    margin-bottom: -9rem;
}

.marque.bottom {
    margin-top: -9rem;
}

.marque h2 {
    font-size: 200px !important;
    font-family: var(--clash-medium);
    white-space: nowrap;
    color: rgba(20, 24, 27, 1);
    text-shadow: 0px 0px 50px rgba(72, 154, 224, 0.4);
    text-align: center;

}

.marque .marque-container {
    transition: all 0s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}

.explore-more {
    position: relative;
    display: inline-block;
}

.explore-more img {
    animation: rotate 4s linear infinite;
}

.explore-more .svg {
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps {
    background-image: url('../images/Group 34110.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 18rem 0;
}

.steps p {
    color: #fff;
    font-size: 18px;
}

.steps-box {
    background: radial-gradient(circle at 100% 100%, #192e3f 0, #192e3f 23px, transparent 23px) 0% 0%/24px 24px no-repeat,
        radial-gradient(circle at 0 100%, #192e3f 0, #192e3f 23px, transparent 23px) 100% 0%/24px 24px no-repeat,
        radial-gradient(circle at 100% 0, #192e3f 0, #192e3f 23px, transparent 23px) 0% 100%/24px 24px no-repeat,
        radial-gradient(circle at 0 0, #192e3f 0, #192e3f 23px, transparent 23px) 100% 100%/24px 24px no-repeat,
        linear-gradient(#192e3f, #192e3f) 50% 50%/calc(100% - 2px) calc(100% - 48px) no-repeat,
        linear-gradient(#192e3f, #192e3f) 50% 50%/calc(100% - 48px) calc(100% - 2px) no-repeat,
        linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(72, 154, 224, 0.5) 100%);
    border-radius: 24px;
    padding: 2rem;
    box-sizing: content-box;
    text-align: center;
}

.steps-box .num {
    -webkit-text-stroke-color: rgba(92, 124, 151, 1);
    -webkit-text-stroke-width: 1.5px;
    font-size: 80px;
    color: transparent;
    font-family: var(--clash-medium) !important;
    transition: all .3s;
}

.steps-box:hover .num {
    color: rgba(92, 124, 151, 1);
}

.steps-box p.heading {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: normal;
}

.steps-box p.desc {
    font-size: 16px;
    line-height: 26px;
}

.steps .col-lg-3.margin {
    margin-top: 7rem;
}

.steps .row.position-relative {
    margin-top: 7rem !important;
}

.steps svg {
    position: absolute;
    top: 0;
    width: max-content;
    /* z-index: -1; */
}

.steps svg:nth-child(1) {
    left: 50%;
    transform: translateX(-50%);
}

.steps svg.last {
    bottom: -16px;
    top: inherit;
    left: 50%;
    transform: translateX(-50%);
}

.steps svg.second {
    bottom: 99px;
    top: inherit;
    right: -15px;
}

.steps svg.four {
    bottom: 99px;
    top: inherit;
    left: -15px;
}

.steps .pluse-animation {
    position: absolute;
    top: -51px;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    padding: 0;
    text-align: center;
    line-height: 5rem;
    background-color: #192E3F;
    /* overflow: hidden; */
    border-radius: 50%;
}

.steps img {
    width: 50% !important;
    height: 50% !important;
}

.steps .pluse-animation::after {
    position: absolute;
    top: 0;
    right: 0;
    border: 0.55rem solid #fff;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    content: "";
    animation: pluse 1.5s linear infinite;
}

.steps .pluse-animation::before {
    position: absolute;
    top: 0;
    right: 0;
    border: 0.55rem solid #fff;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    content: "";
    animation: pluse 1.5s linear infinite;
    animation-delay: 1.2s;
}

.benefits {
    padding-bottom: 7rem;
}

.benefits .box {
    background: rgba(20, 24, 27, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 70px 0px rgba(72, 154, 224, 0.15);
    border-radius: 30px;
    padding: 3rem;
}

.benefits .benefits-box {
    background: radial-gradient(circle at 100% 100%, #192e3f 0, #192e3f 23px, transparent 23px) 0% 0% / 24px 24px no-repeat, radial-gradient(circle at 0 100%, #192e3f 0, #192e3f 23px, transparent 23px) 100% 0% / 24px 24px no-repeat, radial-gradient(circle at 100% 0, #192e3f 0, #192e3f 23px, transparent 23px) 0% 100% / 24px 24px no-repeat, radial-gradient(circle at 0 0, #192e3f 0, #192e3f 23px, transparent 23px) 100% 100% / 24px 24px no-repeat, linear-gradient(#192e3f, #192e3f) 50% 50% / calc(100% - 2px) calc(100% - 48px) no-repeat, linear-gradient(#192e3f, #192e3f) 50% 50% / calc(100% - 48px) calc(100% - 2px) no-repeat, linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(72, 154, 224, 0.5) 100%);
    border-radius: 24px;
    padding: 3rem;
    /* box-sizing: content-box; */
    /* text-align: center; */
}

.benefits .benefits-box h5 {
    color: #fff;
    font-size: 30px;
    font-family: var(--clash-medium);
}

.benefits .benefits-box p,
.benefits .benefits-box ul li {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin: 2rem 0;
}

.benefits .benefits-box ul li {
    margin: 0 0 1rem 0;
}

.benefits .benefits-box ul li i {
    color: var(--primary-color);
}

.benefits .benefits-box h2 {
    line-height: 90%;
}

.testimonial {
    padding: 8rem 0;
    /* padding-bottom: 0; */
    background-image: url('../images/testimonial.png');
    background-position: center;
    background-size: cover;
}

.testimonial-box {
    background-image: radial-gradient(circle at 100% 100%, transparent 17px, rgba(255, 255, 255, 0.5) 17px, rgba(255, 255, 255, 0.5) 18px, transparent 18px), linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), radial-gradient(circle at 0% 100%, transparent 17px, rgba(255, 255, 255, 0.5) 17px, rgba(255, 255, 255, 0.5) 18px, transparent 18px), linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(72, 154, 224, 0.5)), radial-gradient(circle at 0% 0%, transparent 17px, rgba(72, 154, 224, 0.5) 17px, rgba(72, 154, 224, 0.5) 18px, transparent 18px), linear-gradient(to left, rgba(72, 154, 224, 0.5), rgba(72, 154, 224, 0.5)), radial-gradient(circle at 100% 0%, transparent 17px, rgba(72, 154, 224, 0.5) 17px, rgba(72, 154, 224, 0.5) 18px, transparent 18px), linear-gradient(to top, rgba(72, 154, 224, 0.5), rgba(255, 255, 255, 0.5));
    background-size: 18px 18px, calc(100% - 36px) 1px, 18px 18px, 1px calc(100% - 36px);
    background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
    background-repeat: no-repeat;
    border-radius: 18px;
    padding: 3rem 3rem;
    background-color: rgba(72, 154, 224, 0.01);
    box-shadow: 0px 0px 60px 0px rgba(72, 154, 224, 0.2);
    backdrop-filter: blur(200px);
    color: #fff !important;
    text-align: center;
    transition: all 1s;
    opacity: 0.9;
}

.testimonial .splide__track {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.testimonial .splide__list .splide__slide.is-active .testimonial-box {
    background-color: rgba(72, 154, 224, 0.2);
    transform: translateY(-49px);
    backdrop-filter: blur(55px);
    opacity: 1;
}

.testimonial .splide__pagination {
    gap: .2rem;
}

.testimonial .splide__pagination button {
    width: 40px;
    border: 0;
    background: rgba(255, 255, 255, 0.15);
    height: 5px;
    border-radius: 2rem;
    transition: all .3s;
}

.testimonial .splide__pagination button.is-active {
    width: 100px;
    background: rgba(255, 255, 255, 1);
}

.testimonial-box h4 {
    font-size: 40px;
    font-family: 'Satoshi';
    margin-bottom: 1.5rem;
}

.testimonial-box p {
    font-size: 18px;
    font-family: 'Satoshi';
    font-weight: 400;
    margin-bottom: 2.4rem;
}

.testimonial-box p.name {
    font-family: 'Satoshi';
    font-size: 30px;
    border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
    border-radius: 5px;
    /* this doesn't work */
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(20, 15, 42, 0) 0%, #FFFFFF 50%, #FFFFFF 75%, rgba(20, 15, 42, 0) 100%);
    width: max-content;
    margin: 0 auto;
    padding-top: 1rem;
}

.faqs {
    padding: 5rem 0;
    margin-bottom: -28rem;
}

.faqs .accordion-button::after {
    background-image: url('../images/star.png') !important;
}

.faqs .accordion-button:not(.collapsed)::after {
    background-image: url('../images/cross.png') !important;
}

.faqs .accordion-button {
    padding: 0;
    font-family: var(--clash-medium) !important;
    font-size: 25px;
    background-color: inherit !important;
    color: #fff;
    box-shadow: none;
}

.faqs .accordion-body {
    margin-top: 2rem;
    padding: 0;
    color: rgba(255, 255, 255, 1);
    font-family: 'Satoshi_light';
    font-size: 20px;
}

/* .faqs .accordion-collapse {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
} */

.faqs .accordion-item {
    background: rgba(29, 48, 64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 1rem;
}

.footer {
    background-image: url(../images/footer.png);
    background-position: top;
    background-size: cover;
    padding: 0rem 0;
    padding-top: 30rem;
}

.footer .copyrights {
    margin-top: 2rem;
    padding-top: .5rem;
    border-top: 1px solid #2a2a2a;
}

.footer h5 {
    font-family: var(--clash-medium);
    font-size: 14px;
    color: #fff;
    margin-bottom: 1.4rem;
}

.footer .footer-list {
    list-style: none;
    padding-inline: 0;
    margin: 0;
}

.footer .footer-list li {
    margin-bottom: .5rem;
}

.footer .footer-list li a {
    font-family: 'Satoshi_light';
    font-size: 14px;
    color: rgb(255 255 255 / 67%);
}

.footer h4 {
    font-family: var(--clash-medium);
    font-size: 32px;
    color: #fff;
}

.footer .form-group {
    border: 1px solid rgba(31, 42, 49, 1);
    border-radius: 2rem;
    padding: .2rem;
}

.footer .form-group button {
    flex-shrink: 0;
}

.footer .form-group .form-control {
    background-color: transparent;
    color: #fff;
    font-family: 'Satoshi';
    font-size: 18px;
    border: none;
    padding-left: 1.5rem;
}

.footer .form-group .form-control:focus {
    box-shadow: none;
    background-color: transparent;
    color: #fff;
}

.footer .form-group .form-control::placeholder {
    color: #fff;
}

.footer .social-icon-list {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding-inline: 0;
    margin-top: 2rem;
    list-style-type: none;
}

.footer .social-icon-list li a i {
    background-color: var(--primary-color);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 50%;
    text-align: center;
    font-size: 1rem;
    transition: all .5s;
}

.footer .social-icon-list li a i:hover {
    transform: scale(1.2);
    background-color: var(--secondary-dark);
}




header .menu-btn {
    width: 25px;
    padding: 0;
    border: 0;
    outline: 0;
    position: relative;
    display: none;
}

header .menu-btn span {
    background-color: #fff;
    height: 2px;
    content: "";
    width: 100%;
    display: block;
    transition: all .3s;
}

header .menu-btn::after {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
    top: -7px;
    content: "";
    transition: all .3s;

}

header .menu-btn::before {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
    top: 7px;
    content: "";
    transition: all .3s;

}

header .menu-btn.active span {
    opacity: .5;
    display: none;
}

header .menu-btn.active::before {
    top: 0;
    transform: rotateZ(-45deg);
}

header .menu-btn.active::after {
    top: 0;
    transform: rotateZ(45deg);
}

.portfolio {
    position: relative;
    padding: 4rem 0;
    padding-bottom: 12rem;
    margin-bottom: -7rem;
    overflow-x: hidden;
}

.portfolio .carousel_container {
    margin: 114px auto;
    width: 350px;
    height: 345px;
    position: relative;
    perspective: 1000px;
    top: 7rem;
}

.portfolio .custom_carousel {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
    /* transition: transform 1s; */
    /* transition: all .5s; */
    transition: all .5s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}

.portfolio .item {
    position: absolute;
    background: #000;
    width: 350px;
    height: 300px;
    background: transparent;
    opacity: 1;

    /* overflow: hidden; */
}



.portfolio .item .text {
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 1rem;
    width: 100%;
    height: 100%;
    background-image: url('../images/portfolio.png');
    ;
    background-position: center !important;
    background-size: cover !important;
    color: #FFF;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    transition: all .8s;
}

.portfolio .item.active .text {
    transform: scale(1.5);
}

.portfolio .item .text div {
    opacity: 0;
    visibility: hidden;
    transition: all .9s;
    transition-delay: .5s;
    transform: translateY(-50px);
}

.portfolio .item.active .text div {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.portfolio .item .text::after {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 24, 27, 0) 0%, #000000 100%);
}

.portfolio .item .text {
    position: relative;
    z-index: 2;
}

.portfolio .item .text h5 {
    font-size: 40px;
    font-family: var(--clash-medium);
    color: #fff;
}

.portfolio .item .text p {
    font-size: 11px;
    /* line-height: 0; */
}

.portfolio .a {
    transform: rotateY(0deg) translateZ(350px);

    /* background-image: url('../images/portfolio-1.png') !important; */
}

.portfolio .b {
    transform: rotateY(60deg) translateZ(350px);

    /* background-image: url('../images/portfolio-2.png') !important; */
}

.portfolio .c {
    transform: rotateY(120deg) translateZ(350px);
}

.portfolio .d {
    transform: rotateY(180deg) translateZ(350px);

}

.portfolio .e {
    transform: rotateY(240deg) translateZ(350px);

}

.portfolio .f {
    transform: rotateY(300deg) translateZ(350px);

}

.portfolio .next,
.portfolio .prev {
    color: #fff;
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(38, 44, 47, 1);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
}

/* .portfolio .next:hover,
.portfolio .prev:hover {
    color: #000;
} */

/* .portfolio .next:active,
.portfolio .prev:active {
    top: 104px;
    box-shadow: 0 1px 0 #999;
} */

.portfolio .next {
    right: 5em;
}

.portfolio .prev {
    left: 5em;
}

/* .portfolio h2 {
    margin-top: 120px;
    font-size: 2em;

}

.portfolio h2>a {
    color: white;
} */



.cursor {
    width: 50px;
    height: 50px;
    border-radius: 0;
    transition: 0.2s ease-out;
    left: 0;
    top: 4px;
    transform: translate(calc(-50% 15px), -50%);
    background-image: url(../images/cur.png);
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(78%) sepia(34%) saturate(2741%) hue-rotate(163deg) brightness(104%) contrast(98%);
    background-size: 50px;
    position: fixed;
    z-index: 99999;
    pointer-events: none;
}

.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    background-color: #4fd8fd;
    position: fixed;
    z-index: 99999;
    pointer-events: none;
}

.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

* {
    cursor: none;
    margin: 0;
    padding: 0;
}

.drag-pointer {
    transition: 0.2s;
    transform: scale(3);
    border-radius: 0;
    color: #fff !important;
    line-height: 15px;
    font-weight: 700;
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    height: 75px;
    width: 90px;
}

.pages-banner {
    padding: 15rem 0;
    padding-top: 10rem;
    background-image: url('../images/page-banner.png');
    background-position: bottom;
    background-size: cover;
}

.pages-banner.contact {
    background-position: top;
}

.pages-banner.contact h1 {
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    width: max-content;
}

.pages-banner.contact h1::after {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    width: 4rem;
    height: 2px;
    top: 48%;
    opacity: 1;
    z-index: 9;
    right: -38%;
}

.pages-banner h1 {
    background: radial-gradient(circle, rgba(48, 127, 191, 1) 18%, rgba(255, 255, 255, 1) 39%);
    background-clip: text;
    background-position-x: -600px;
    color: transparent;
    background-size: cover;
    animation: h1_animation 10s infinite linear;
}

.pages-banner h2,
.pages-banner.blogs h1 {
    font-size: 57px;
    margin-bottom: 1.2rem;
}

.pages-banner .breadcrumb {
    color: var(--secndary-color);
    font-weight: 300;
    text-transform: capitalize;
}

.pages-banner .breadcrumb a {
    color: var(--primary-color);
    text-transform: capitalize;
}

.contact-form {
    /* background: linear-gradient(90deg, #0D1317 50%, rgba(25,46,63,1) 50%); */
    border-top-right-radius: 9rem;
    border-bottom-left-radius: 9rem;
    padding: 4rem 0;
}

.contact-form.home {
    background: linear-gradient(90deg, #0D1317 50%, rgba(25, 46, 63, 1) 50%);
}

.contact-form form {
    /* background-color: #192e3f; */
    padding-left: 4rem;

}

.contact-form form .form-control {
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding-left: 0;
}
.contact-form form .form-control.error{
    border-color: red;
}

.contact-form form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form form .form-group {
    margin-bottom: 3.8rem;
}

.contact-form form .form-group label {
    color: #fff;
    text-transform: capitalize;
}

.contact-form .info .location-box {
    background-color: #192e3f;
    padding: 2rem;
    border-radius: .5rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    width: max-content;
    font-size: 25px;
}

.contact-form .info .location-box img {
    width: 4rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-form .info h4 {
    color: var(--secndary-color);
}

.contact-form .info p,
.contact-form .info p a {
    color: rgba(255, 255, 255, .6);
}

.services-main .services-main-box {
    width: 100%;
    height: 25rem;
    border-radius: 20px;
    border: 1.5px solid #82828280;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.services-main .services-main-box::after {
    background: #14181B99;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-main .services-main-box .text {
    position: relative;
    z-index: 4;
    color: #fff;
}

.services-main .services-main-box .text h3 {
    margin-bottom: 0;
    line-height: 99%;
    text-transform: capitalize;
}

.services-main .services-main-box .text p {
    display: none;
    margin-top: 1rem;
    padding-bottom: 3rem;
}

.services-main .services-main-box svg {
    position: absolute;
    bottom: 0;
    right: 0%;
    transition: all .5s;
}

.services-main .services-main-box:hover {
    box-shadow: 0px 0px 19px 0px rgba(72, 153, 224, 0.343);
}

.services-main .services-main-box:hover svg {
    right: 90%;
}

/* .services-main .services-main-box:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} */
.service-detail .box {
    color: #fff;
    padding: 0 1rem;
    padding-bottom: 1rem;
    border-right: 1px solid #ffffff0a;
}

.service-detail .box img {
    width: 15rem;
}

.service-detail .box h5 {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.call-to-action {
    background-color: rgba(20, 24, 27, 1);
    padding: 5rem 0;
    box-shadow: 0px 0px 21px 7px rgb(72 154 224 / 36%);
    margin: 6rem 0 0 0;
    animation: shadow 3s linear infinite;
}

.call-to-action.service-inner {
    background-image: url('../images/Banner Images Services.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.call-to-action.service-inner::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000000bf;
    z-index: -1;
}


.steps.about .support-box {
    background-color: #489AE033;
    border: 1px solid #FFFFFF80;
    border-radius: 24px;
    padding: 1.3rem;
}

.steps.about .support-box h5 {
    font-family: var(--clash-regular);
    font-size: 20px;
    margin-bottom: 2rem;
}

.steps.about .support-box p {
    font-size: 14px;
}

.steps.about .support-box i {
    font-family: 'Font Awesome 6 Free';
    padding: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2.9rem;
}

.steps.about h4 {
    font-size: 30px;
    font-family: var(--clash-medium);
}

.steps.about .animate img {
    transition: all .6s;
}

.steps.about .animate img:hover {
    transform: scale(1.2);
}

.steps.about .animate {
    transition: all .6s;
}

.steps.about .animate:hover {
    box-shadow: 0px 0px 19px 0px rgba(72, 153, 224, 0.725);
}

.font-16 {
    font-size: 16px !important;
    font-family: 'Satoshi_light';
    font-weight: 400;
}

.vertical-tab {
    padding: 2rem 0;
}

.vertical-tab .nav-tabs {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
    overflow: hidden;
    border: 1px solid #b1b6bb;
    border-right: 0;
}

.vertical-tab .nav-tabs .my-btn {
    border-top: 0;
    border-radius: 0;
    width: 100%;
    padding: 1.6rem 0;
    border-left: 0;
    border-right: 0;
}

.vertical-tab .nav-tabs .my-btn.active::after {
    width: 100%;
}

.vertical-tab .nav-tabs .nav-item:last-child .my-btn {
    border-bottom: 0;
}

.vertical-tab .tab-box .text-col {
    box-shadow: 0px 0px 30px #3acfd536;
}

.vertical-tab .tab-box .text-col .text {
    padding: 0 2rem;
}

.vertical-tab .tab-box .slider {
    background-color: var(--primary-color);
}

.vertical-tab .tab-box .slider .splide__pagination {
    padding: 0;
    padding: 1rem 0;
    gap: .4rem;
}

.vertical-tab .tab-box .slider .splide__pagination button {
    border: none;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background-color: #fff;
    transition: all .3s;
}

.vertical-tab .tab-box .slider .splide__pagination button.is-active {
    background-color: var(--secondary-dark);
}

.splide:not(.is-overflow) .splide__pagination {
    display: flex !important;
}

.blog-box {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all .3s;
}

.blog-box:hover {
    box-shadow: rgba(41, 126, 183, 0.35) 0px 5px 15px;
}

.blog-box:hover .image img {
    transform: scale(1.2);
}

.blog-box .image {
    width: 100%;
    height: 15rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .7s;
}

.blog-box .text {
    padding: 1rem 1.5rem;
}

.blog-box .text h5 {
    color: #fff;
    font-size: 1.7rem;
    transition: all .3s;
}

.blog-box:hover .text h5 {
    color: var(--primary-color);
}

.blog-box .text p {
    color: #979696;
}

.form-modal .modal-content {
    background-color: #1D3040;
    border: 4px solid #fff;
    border-radius: 2rem;
    position: relative;
}

.form-modal .modal-content .close-btn {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    border-radius: 50%;
    opacity: 1;
    border: none;
    text-align: center;
    right: .3rem;
    top: .3rem;
    z-index: 99;
}

.form-modal .modal-content .modal-body {
    padding: 2rem;
}

.form-modal .modal-content .modal-body h3 {
    font-family: var(--clash-medium);
    font-size: 32px;
    color: #fff;
    margin-bottom: 2rem;
}

.form-modal .modal-content .form-control {
    background-color: transparent;
    padding: .8rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    color: #fff;

}
.form-modal .modal-content .form-control.error{
    border-color: red;
}
.form-modal .modal-content .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-modal .modal-content .form-control::placeholder {
    color: #fff;
}

.form-modal .modal-content .position-relative i {
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.3rem;
}

.form-modal .modal-content .position-relative:focus-within i {
    color: var(--primary-color);
}

.form-modal .modal-content .my-btn {
    border-radius: 1rem;
}

/* Modal opening animation */
.modal.show .modal-dialog {
    -webkit-animation: flipX 0.5s cubic-bezier(0.2, 0.3, 0.25, 0.9) forwards;
    animation: flipX 0.5s cubic-bezier(0.2, 0.3, 0.25, 0.9) forwards;
}

/* Modal closing reverse animation */
.modal.hide .modal-dialog {
    -webkit-animation: flipXReverse 0.5s cubic-bezier(0.2, 0.3, 0.25, 0.9) forwards;
    animation: flipXReverse 0.5s cubic-bezier(0.2, 0.3, 0.25, 0.9) forwards;
}

@keyframes flipX {
    0% {
        opacity: 0;
        -webkit-transform: perspective(400px) translateZ(0) rotateY(90deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(90deg) scale(1);
    }

    100% {
        opacity: 1;
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    }
}

@keyframes flipXReverse {
    0% {
        opacity: 1;
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: perspective(400px) translateZ(0) rotateY(90deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(90deg) scale(1);
    }
}



@keyframes sketchIn {
    0% {
        stroke-dashoffset: 778;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes shadow {
    0% {
        box-shadow: 0px 0px 21px 7px rgb(72 154 224 / 36%);
    }

    50% {
        box-shadow: 0px 0px 31px 7px rgb(72 154 224 / 56%);
    }
}

@media (max-width: 1360px) {
    .portfolio .carousel_container {
        width: 300px;
        height: 300px;
    }

    .portfolio .item {
        width: 300px;
    }

    .portfolio .a {
        transform: rotateY(0deg) translateZ(300px);


    }

    .portfolio .b {
        transform: rotateY(60deg) translateZ(300px);


    }

    .portfolio .c {
        transform: rotateY(120deg) translateZ(300px);

    }

    .portfolio .d {
        transform: rotateY(180deg) translateZ(300px);

    }

    .portfolio .e {
        transform: rotateY(240deg) translateZ(300px);

    }

    .portfolio .f {
        transform: rotateY(300deg) translateZ(300px);

    }

    .portfolio .item.active .text {
        transform: scale(1.3);
    }

    .pages-banner.blogs h1 {
        font-size: 50px;
    }

    .main-banner {
        padding-bottom: 10rem;
    }

    .steps {
        margin: -6rem 0;
    }

    .steps.about {
        margin-top: -4rem;
    }

    .benefits .benefits-box {
        padding: 2rem;
    }

    header .container .nav-list {
        padding: .6rem 1rem;
        gap: 1.3rem;
    }

    header .container .nav-list li a {
        font-size: 13px;
    }

    header .number {
        font-size: 13px;
    }

}

@media (max-width: 991px) {
    header .container .nav-list {
        position: absolute;
        top: 6rem;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        display: none;
        text-align: center;
        padding: 2rem 0;
        background-color: #489ae036;
        backdrop-filter: blur(26px);
        border-radius: 1rem;
    }

    header .container .nav-list li.has-dropdown .dropdown {
        position: initial;
        margin: 0 auto;
        background-color: transparent;
    }


    header .container .nav-list li {
        margin-bottom: 1rem;
    }

    header .container .nav-list li a {
        font-size: 17px;
    }

    header .container .nav-list li:last-child {
        margin-bottom: 0;
    }

    header .menu-btn {
        display: block;
    }

    header .number {
        display: none;
    }

    .steps svg {
        display: none;
    }

    .steps .col-lg-3.margin {
        margin-top: 0;
    }

    .steps img {
        top: -93px;
    }

    .steps.about {
        padding: 29rem 0;
        margin: -19rem 0;
    }

    .testimonial-box h4 {
        font-size: 33px;
    }

    .testimonial-box p {
        font-size: 16px;
    }

    .main-banner p {
        font-size: 14px;
    }

    h3 {
        font-size: 40px;
    }

    .service-box h2 span {
        margin-right: 3rem;
    }

    .benefits .benefits-box {
        padding: 2rem;
    }

    .benefits .benefits-box p,
    .benefits .benefits-box ul li {
        font-size: 14px;
    }

    .portfolio .carousel_container {
        width: 250px;
        height: 250px;
    }

    .portfolio .item {
        width: 250px;
        height: 250px;
    }

    .portfolio .item .text h5 {
        font-size: 30px;
    }

    .portfolio .item .text p {
        font-size: 9px;
    }

    .portfolio {
        padding-bottom: 2rem;
    }

    .portfolio .carousel_container {
        top: 1rem;
    }

    .portfolio .a {
        transform: rotateY(0deg) translateZ(250px);
    }

    .portfolio .b {
        transform: rotateY(60deg) translateZ(250px);
    }

    .portfolio .c {
        transform: rotateY(120deg) translateZ(250px);

    }

    .portfolio .d {
        transform: rotateY(180deg) translateZ(250px);

    }

    .portfolio .e {
        transform: rotateY(240deg) translateZ(250px);

    }

    .portfolio .f {
        transform: rotateY(300deg) translateZ(250px);

    }

    .portfolio .prev {
        left: 2em;
    }

    .portfolio .next {
        right: 2em;
    }

    .steps {
        margin: -6rem 0;
        margin-bottom: -11rem;
    }

    .marque h2 {
        font-size: 155px !important;
    }

    .contact-form.home {
        background: linear-gradient(180deg, #0D1317 50%, rgba(25, 46, 63, 1) 50%);
        padding-bottom: 0;
        border-top-right-radius: 4rem;
        border-bottom-left-radius: 4rem;
    }

    .contact-form.home .info {
        padding-bottom: 11rem;
    }

    .contact-form.home form {
        position: relative;
        top: -8rem;
        padding-left: 0;
    }

    .contact-form form {
        padding-left: 0;
    }

    .vertical-tab .nav-tabs {
        /* justify-content: space-between !important; */
        border-radius: .2rem;
        padding: 1rem;
        gap: 1rem;
        border: 0;
        /* box-shadow: 0px 0px 10px #3acfd536; */
        margin-bottom: 1rem;
    }

    .vertical-tab .nav-tabs .my-btn {
        border-top: 0;
        border-radius: 2rem;
        width: 100%;
        padding: .7rem 1.5rem;
        width: 100%;
        border: 1px solid #fff;
    }

    .vertical-tab .nav-tabs .nav-item:last-child .my-btn {
        border: 1px solid #fff;
    }

    .vertical-tab .tab-box .text-col {
        border-top-right-radius: .2rem;
        border-top-left-radius: .2rem;
    }

    .vertical-tab .tab-box .text-col .text {
        padding: 3rem 2rem;
    }

    .portfolio .item.active .text {
        transform: scale(1.5);
    }

    .pages-banner.blogs h1 {
        font-size: 40px;
    }

    .content {
        margin-top: -6rem;
    }

}

@media(max-width: 756px) {
    .marque h2 {
        font-size: 111px !important;
        text-shadow: 0px 0px 25px rgba(72, 154, 224, 0.4);
    }

    .portfolio {
        padding-bottom: 9rem;
    }

    .pages-banner.blogs h1 {
        font-size: 35px;
    }
}



@media (max-width: 576px) {

    .service-box:hover img {
        display: none;
    }

    h2 {
        font-size: 6.9vw !important;
    }

    .service-box h2 {
        font-size: 4.6vw !important;
    }

    .services {
        padding-top: 0;
    }

    .explore-more {
        display: none;
    }

    .service-box {
        padding: 1rem 0;
    }

    .portfolio {
        padding-bottom: 3rem;
    }

    .steps-box {
        padding: .7rem;
    }

    .steps-box .num {
        font-size: 52px;
    }

    .steps-box p.desc {
        font-size: 13px;
    }

    .footer {
        padding: 2rem 0;
        padding-top: 29rem;
    }

    .steps.about {
        margin: -13rem 0;
        padding: 24rem 0;
    }

    .services p,
    .ideas p,
    .steps p,
    .testimonial p,
    .faqs p {
        font-size: 16px;
    }

    .testimonial-box p {
        margin-bottom: 1.8rem;
        font-size: 13px;
    }

    .testimonial {
        padding: 4rem 0;
    }

    .faqs {
        padding: 1rem 0;
    }

    .faqs .accordion-body {
        font-size: 16px;
    }

    .faqs .accordion-button {
        font-size: 19px;
    }

    h3 {
        font-size: 28px;
    }

    .service-box h2 span {
        margin-right: 1rem;
    }

    .service-box svg {
        width: 3rem;
    }

    .portfolio .carousel_container {
        width: 170px;
        height: 200px;
        top: 0;
    }

    .portfolio .item {
        width: 170px;
        height: 200px;
    }

    .portfolio .a {
        transform: rotateY(0deg) translateZ(170px);


    }

    .portfolio .b {
        transform: rotateY(60deg) translateZ(170px);


    }

    .portfolio .c {
        transform: rotateY(120deg) translateZ(170px);

    }

    .portfolio .d {
        transform: rotateY(180deg) translateZ(170px);

    }

    .portfolio .e {
        transform: rotateY(240deg) translateZ(170px);

    }

    .portfolio .f {
        transform: rotateY(300deg) translateZ(170px);

    }

    .portfolio .item .text h5 {
        font-size: 21px;
    }

    .portfolio .item .text p {
        font-size: 8px;
    }

    .testimonial-box {
        padding: 2rem 1rem;
    }

    .testimonial-box h4 {
        font-size: 25px;
    }

    .testimonial-box p.name {
        font-size: 23px;
    }

    .steps {
        margin: -8rem 0;
        margin-bottom: -9rem;
    }

    .nav-btn {
        padding: .7rem 1rem;
        font-size: 11px;
    }

    .main-banner {
        padding: 11rem 0;
    }

    .benefits .box {
        padding: 2rem;
    }

    .benefits .benefits-box ul li {
        font-size: 11px;
    }

    .my-btn {
        font-size: 13px;
        padding: .7rem 1rem;
    }

    .marque h2 {
        font-size: 76px !important;
        text-shadow: 0px 0px 18px rgba(72, 154, 224, 0.4);
    }

    .marque.top {
        margin-bottom: -7rem;
    }

    .marque.bottom {
        margin-top: -7rem;
    }

    .marque.two.top {
        margin-bottom: -2rem !important;
    }

    .marque.two.bottom {
        margin-top: -9rem !important;
    }

    .cursor {
        display: none !important;
    }

    .cursor2 {
        display: none !important;
    }

    * {
        cursor: initial;
    }
}

@media (max-width: 400px) {
    .portfolio .carousel_container {
        top: -28px;
    }

    /* .steps {
        margin: -17rem 0;
        margin-bottom: -6rem;
    } */

    .nav-btn {
        padding: .7rem 1rem;
        font-size: 11px;
    }

    .main-banner {
        padding: 9rem 0;
    }

    .benefits .box {
        padding: 1.5rem;
    }

    .benefits .benefits-box {
        padding: 1rem;
    }

    .benefits .benefits-box ul li {
        font-size: 11px;
    }

    .benefits .benefits-box h5 {
        font-size: 22px;
    }

    .pages-banner.blogs h1 {
        font-size: 30px;
    }
}

@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes typewriter {
    0% {
        width: 0;
    }

    30% {
        width: 46vw;
    }

    80% {
        width: 46vw;
    }

    100% {
        width: 0;
    }
}

@keyframes pluse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes h1_animation {
    100% {
        background-position: 600px;
    }
}

/* @keyframes blinkTextCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }

    to {
        border-right-color: transparent;
    }
} */