@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Boxicons */

@font-face {
    font-family: boxicons;
    src: url("../fonts/boxicons/boxicons.ttf");
}


/* Root Styling */

:root {
    --c1: #4A64F6;
    --c2: #FAFDFF;
    --c3: #0F151D;
    --f1: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.img__contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* General Styling */

body {
    background: #FAFDFF;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: 'Roboto', sans-serif;
}

::selection {
    background-color: var(--c1);
    color: #fff;
}

a {
    display: inline-block;
    color: #000;
    transition: all 300ms ease-in-out;
}

a:hover {
    color: #000;
}

ul,
ol,
dl {
    margin-bottom: 0;
    padding: 0;
}

p,
li,
a,
span,
input,
input::placeholder,
button {
    font-family: var(--f1);
}

.imgFluid {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    transition: all 300ms ease-in-out;
    outline: 0;
}

i.bx {
    font-family: boxicons;
    vertical-align: middle;
}


/* button style */

.themebtn {
    padding: 10px 20px;
    background: var(--c1);
    color: transparent;
    text-transform: capitalize;
    font-size: 14px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 11;
    box-shadow: 0px 0px 0px 1px var(--c1);
    /* border-radius: 20px; */
    color: #fff;
    font-weight: 300;
}

.themebtn:hover {
    background: var(--c1);
    color: var(--c1);
    box-shadow: 0 0 0 1px var(--c1);
}

.themebtn::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    -webkit-animation: shine .75s;
    animation: shine 2s linear infinite;
}

.themebtn::after {
    position: absolute;
    content: '';
    width: 0;
    right: 0;
    height: 100%;
    background-color: var(--c2);
    top: 0;
    transition: 400ms ease;
    z-index: -1;
}

.themebtn:hover::after {
    width: 100%;
    left: 0;
}

.themebtn:hover span {
    animation: tada 1s;
}


/* button style */


/* animations */

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes handShake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(deg);
    }
}

@keyframes menu {
    0% {
        width: 100%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 100%;
    }
}


/* animation */

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    width: 120px;
}

.header_nav {
    display: flex;
    align-items: center;
    gap: 73px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 58px;
}

.header_nav li a {
    font-size: 14px;
    position: relative;
}

.header_nav>li>a:before {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--c1);
    transition: 500ms all;
    content: '';
}

.header_nav>li>a:hover:before {
    width: 100%;
}

.header_nav>li>a:hover {
    color: var(--c1);
}

.menu_btn {
    height: 25px;
    width: 25px;
    cursor: pointer;
    display: none;
    transform: rotate(180deg);
}

.menu_btn span {
    width: 100%;
    height: 3px;
    background: #000;
    display: block;
    margin: 4px 0;
    animation: menu 3S linear infinite;
}

.menu_btn span:nth-child(2) {
    animation-delay: 0.5s;
}

.menu_btn span:nth-child(3) {
    animation-delay: 1s;
}

.responsive_header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 0 15px 1px #4444;
    transform: translatey(-100%);
    transition: 500ms all;
}

.crs_btn {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    top: 10px;
}

.responsive_nav {
    margin: 30px 0 0;
}

.responsive_nav li a {
    padding: 10px 20px;
    width: 100%;
    border-bottom: 1px solid #4444;
    position: relative;
}

.responsive_nav li a:before {
    position: absolute;
    width: 0;
    height: 100%;
    content: '';
    background: var(--c1);
    transition: 500ms all;
    z-index: -1;
    inset: 0;
}

.responsive_nav li a:hover:before {
    width: 100%;
}

.responsive_nav li a:hover {
    color: #fff;
}

.responsive_header.active {
    transform: translate(0);
}


/* banner css start  */

.main__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 54px 73px;
    border-radius: 20px;
    overflow: hidden;
}

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

.banner__mainContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 552px;
}

.header {
    padding: 20px 0;
}

.banner_topContent h1 {
    font-size: 40px;
    color: var(--c2);
    font-family: var(--f1);
    font-weight: 400;
}

.banner_bottomContent h2 {
    font-size: 50px;
    font-family: var(--f1);
    font-weight: 500;
    color: var(--c2);
    margin: 0;
}

.banner_topContent h1 b {
    font-family: var(--f1);
    font-weight: 600;
}

.banner_btn {
    margin: 38px 0 0;
}

.banner_topContent h1 span {
    width: 40px;
    height: 40px;
    display: inline-block;
    transform-origin: bottom;
    animation: handShake 1s linear infinite;
}


/* momentum css start here   */

.mainMomentum {
    padding: 54px 73px;
    background: #EDF3F8;
    border-radius: 20px;
    margin: 70px 0;
}

.partner {
    display: flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 5px 14px;
    border: 1px solid #0f151d3d;
    border-radius: 30px;
}

.tag_img {
    width: 20px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner p {
    margin: 0;
    font-size: 14px;
    font-family: var(--f1);
    color: #0f151d70;
}

.momentum__title {
    font-size: 49px;
    color: #000;
    font-family: var(--f1);
    font-weight: 500;
}

.momentum__inner {
    margin: 20px 0 0;
}

.momentum_innerContent p {
    font-family: var(--f1);
    font-size: 16px;
    color: #000;
    margin: 0 0 15px;
}

.themebtn--blk {
    box-shadow: 0px 0px 0px 1px var(--c3);
    background: var(--c3);
    color: var(--c2);
}

.themebtn--trans {
    background: transparent;
    color: var(--c3);
    box-shadow: 0px 0px 0px 1px var(--c3);
}

.momentum_btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.themebtn--blk:hover {
    box-shadow: 0px 0px 0px 1px var(--c3);
    color: var(--c3);
    background: var(--c3);
}

.themebtn--trans:after {
    background: var(--c3);
}

.themebtn--trans:hover {
    color: var(--c2);
    box-shadow: 0px 0px 0px 1px var(--c3);
    background: var(--c3);
}


/* momentum css end here   */


/* client css start here    */

.section_content h4 {
    font-size: 44px;
    margin: 15px 0 0;
    font-family: var(--f1);
    font-weight: 600;
    color: #000;
}

.client_img {
    width: 100%;
    height: 40px;
}

.client__item {
    margin: 0 10px;
}

.client_slider {
    margin: 50px 0 0;
}

.client_slider--alt {
    transform: rotate(180deg);
    margin: 70px 0 0;
}

.client_slider--alt .client_img {
    transform: rotate(180deg);
}


/* client css end here    */


/* facts css start here    */

.clients {
    margin: 70px 0;
}

.facts {
    margin: 120px 0 70px;
}

.section_content>p {
    margin: 0;
    font-family: var(--f1);
    font-weight: 400;
    color: #000;
    font-size: 17px;
}

.fact_crd {
    background: #EDF3F8;
    padding: 65px 80px;
    text-align: -webkit-center;
    border-radius: 20px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 70px;
    justify-content: center;
    font-family: var(--f1);
    font-weight: 500;
    line-height: 54px;
    color: #000;
    margin: 0 0 20px;
}

.counter span {
    color: #4a64f6c7;
    font-size: 80px;
    display: flex;
    align-items: center;
}

.fact_crd p {
    margin: 0;
}

.main_factCrds {
    margin: 60px 0 0;
}


/* facts css end here    */


/* recent work css start here    */

.recent_btn {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
}

.recents__work {
    margin: 80px 0 70px;
}

.recent_Crd {
    margin: 30px 0 0;
    width: 100%;
}

.recent_img {
    width: 100%;
    height: 570px;
    background: #EDF3F8;
    padding: 70px 0 0;
    border-radius: 20px;
}

.recent_img img {
    scale: 1.04;
    transition: 500ms all;
}

.recent_title {
    margin: 30px 0 0;
    font-size: 30px;
    font-family: var(--f1);
    font-weight: 400;
}

.recent_Crd:hover .recent_img img {
    scale: 1.08;
}

.recent__mainCrds {
    margin: 40px 0 0;
}


/* recent work css end here    */


/* testimonial css start here    */

.testimonials {
    background: var(--c3);
    padding: 70px 0;
}

.collen_img {
    width: 50px;
    height: auto;
    margin: 0 0 20px;
}

.test_content {
    width: 70.5%;
}

.test_content p {
    font-size: 49px;
    color: var(--c2);
    font-family: var(--f1);
    font-weight: 400;
    line-height: 55px;
    margin: 0 0 40px;
}

.test_bottom {
    padding: 50px 0 0px;
    border-top: 1px solid #ffffff40;
}

.Test_user {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
}

.user_img {
    width: 90px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    overflow: hidden;
}

.user_name :is(p,
h4) {
    color: var(--c2);
}

.user_name p {
    font-size: 14px;
    margin: 0;
    font-family: var(--f1);
}

.user_name h4 {
    font-family: var(--f1);
    font-size: 24px;
}

.test_item {
    margin: 0px;
}

.slick-arrow {
    top: 86%;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid var(--c2);
    background: transparent;
    color: var(--c2);
}

.slick-next {
    right: 0;
}

.slick-prev {
    right: 60px;
}

.slick-arrow:hover {
    background: var(--c2);
}

.slick-arrow:hover:before {
    color: var(--c3);
}

.slick-arrow:before {
    font-size: 40px;
    font-family: 'boxicons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-prev:before {
    content: "\ea4d";
}

.slick-next:before {
    content: "\ea50";
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    background: #fdfdfd4a;
    border-radius: 100%;
    padding: 0;
}

.slick-dots li {
    margin: 0 !important;
}

.slick-dots {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    width: fit-content;
    position: absolute;
    bottom: 45px;
    right: 140px;
}

.slick-dots .slick-active button {
    background: var(--c2);
}


/* testimonial css end here    */


/* about css start here    */

.about_img {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
}

.about {
    padding: 70px 0;
}

.about_content p {
    margin: 20px 0;
    font-size: 20px;
}

.about_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 0;
}


/* about css end here    */


/* service css start here    */

.servies {
    padding: 70px 0;
}

.section_content--alt h4 {
    font-size: 50px;
}

.section_content--alt p {
    margin: 15px 0 25px;
}

.accordion-body p {
    margin: 0;
    font-size: 14px;
    font-family: var(--f1);
    color: #000;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c1);
}

.accordion-button {
    padding: 30px 0;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 25px;
    color: #000 !important;
    font-family: var(--f1);
}

.accordion-body {
    padding: 0px 0 25px;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(90deg) !important;
    filter: brightness(0) !important;
    width: 25px;
    height: 25px;
    background-size: contain;
}

.accordion-button:after {
    width: 25px;
    height: 25px;
    background-size: contain;
    transform: rotate(90deg) !important;
}

.main_services {
    padding: 54px 73px;
    background: #EDF3F8;
    border-radius: 20px;
}


/* service css end here    */


/* mac section css start here */

.maic_img {
    width: 100%;
    height: 780px;
}

.mac__sec {
    padding: 0px 0 70px;
}

.mac_imgMain {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.ripple_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}


/* mac section css end here */


/* why choose section css start here */

.choose_crd {
    text-align: -webkit-center;
}

.choose_crd h5 {
    font-family: var(--f1);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 20px;
}

.main_whyChooseCrds {
    margin: 50px 0 0;
}

.choose_crd p {
    margin: 0;
    font-size: 16px;
    font-family: var(--f1);
    font-weight: 400;
}

.why__choose {
    padding: 70px 0;
}


/* why choose section css end here */


/* blog section css start here */

.blog_img {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
}

.blogTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 15px 0;
}

.blogTop p {
    font-size: 14px;
    font-family: var(--f1);
    margin: 0;
}

.blogTop p:nth-last-child(1) {
    color: var(--c1);
}

.blog_mainContent h4 {
    font-size: 20px;
    margin: 0 0 5px;
    font-family: var(--f1);
    font-weight: 500;
}

.blog_mainContent>p {
    margin: 0;
    font-size: 16px;
    font-family: var(--f1);
    font-weight: 400;
    margin: 10px 0 0;
}

.blog_crd:hover .blog_img img {
    scale: 1.3;
}

.blog_img img {
    transition: 500ms all;
}

.main_blogCrds {
    margin: 60px 0 0;
}

.blog {
    padding: 70px 0;
}


/* blog section css end here */


/* footer css start here */

.footer {
    padding: 60px 0 0;
}

.main_footer {
    padding: 40px 73px 0;
    background: #0F151D;
    border-radius: 20px;
}

.footer_start {
    width: 420px;
}

.footer_start h3 {
    font-size: 46px;
    font-family: var(--f1);
    font-weight: 500;
    color: #fff;
    margin: 0 0;
}

.footer_start p {
    margin: 20px 0 30px;
    font-family: var(--f1);
    font-size: 14px;
    color: #fff;
}

.footer_contact {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 50px 0 20px;
}

.footer_contactMain h4 {
    font-size: 40px;
    font-family: var(--f1);
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 0 10px;
}

.foo_contList li a {
    font-family: var(--f1);
    color: #fff;
    font-size: 14px;
}

.grab_para h6 {
    margin: 0;
    font-size: 22px;
    color: #fff;
    font-family: var(--f1);
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #4a64f673;
    padding: 25px 0;
}

.footer_socialIcons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_socialIcons li a {
    font-size: 20px;
    color: #fff;
}

.copy_content {
    margin: 0;
    font-size: 14px;
    font-family: var(--f1);
    color: #fff;
}

.foo_contList li a:hover {
    padding-left: 10px;
}


/* footer css end here */