@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;300;500&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Oswald:wght@200;400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');


body {
    overflow-x: hidden;
}


:root {
    /* --color: #649ac9; */

    --color: #3c74b4;
    --white: white;
    --red: rgb(77, 194, 107);
    --light: rgb(218, 218, 218);
    --gray: rgb(179, 179, 179);
    --black: black;
    --light-blue: rgb(252, 243, 240);
    --bg: rgba(100, 154, 201, 0.703);
    --c2: #020622;

}

.c1 {
    color: var(--color) !important;
}

.c2 {
    color: var(--c2) !important;
}

.c4 {
    color: var(--red) !important;
}

.c3 {
    color: #444;
}

.w {
    color: var(--white) !important;
}

header {
    width: 100%;
    height: 90vh;
    background-image: url(../IMAGES/BANNER/BANNER-3.jpg);
    background-position: center center !important;
    background-size: cover;
    position: relative;
    overflow: hidden;
    margin-bottom: 5%;
}
.headers{
       width: 100%;
    height: 90vh;
    background-image: url(../IMAGES/image.png);
    background-position: center center !important;
    background-size: cover;
    position: relative;
    overflow: hidden;
    margin-bottom: 5%;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background-color: white;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 10%;
    left: -5%;
    animation: circle 5s infinite ease-in-out;
}

@keyframes circle {
    0% {
        left: -6%;
    }

    50% {
        left: -1%;
    }

    100% {
        left: -6%;
    }
}

.circle-2 {
    width: 150px;
    height: 150px;
    background-color: white;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 10%;
    bottom: 0;
    animation: circle-1 5s infinite ease-in-out;
}

@keyframes circle-1 {
    0% {
        right: -50%;
    }

    50% {
        right: -5%;
    }

    100% {
        right: -50%;
    }
}


.navbar .logo {
    width: 17%;

}

.logo-sec {
    width: 100%;
}

.logo-sec img {
    width: 100%;
}

a {
    text-decoration: none !important;
}


.navbar .navbar-nav .active {
    color: var(--color) !important;
    font-weight: 900;
    border-bottom: 3px solid var(--color);
}

.navbar {
    position: fixed !important;
    top: 0%;
    left: 0%;
    transition: top 1s ease-out 0s !important;
    width: 100% !important;
    z-index: 200;
    background-color: #fff;
    min-height: 80px !important;
    padding: 0 2% !important;

}

/* Remove border from toggler */
.navbar-toggler {
    border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--color);
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
    margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: var(--color);
}


.nav-item {
    margin: 0%;
}

.header-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 50%;
    z-index: 0;

}

.margin-space-top {
    margin-top: 50px;
}

.navbar .nav-link {
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 900;
    transition: 1s;
    font-weight: 500;
    /* font-family: 'Oswald', sans-serif; */

    font-family: 'Montserrat', sans-serif;

}

.navbar .nav-link:hover {
    color: var(--gray) !important;
}


.sign-up {
    width: 100px;
    padding: 5% 2%;
    font-size: 13px;
    margin-right: 3%;
    background: var(--color);
    border-radius: 5px;
    transition: 0.8s;
    text-align: center;
    color: var(--white) !important;
    /* animation: blick 3s ease-in-out infinite; */
}

.sign-up {
    width: 100px;
    padding: 2% 2%;
    font-size: 13px;
    margin-right: 3%;
    background: var(--color);
    border-radius: 5px;
    transition: 0.8s;
    text-align: center;
    color: var(--white) !important;
    /* animation: blick 3s ease-in-out infinite; */
}

.sign-up:hover {
    background: var(--red);
    color: var(--white) !important;
}

@keyframes blick {
    0% {
        box-shadow: var(--red) 0px 3px 8px;
    }

    50% {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    100% {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}


.navbar .sign-up:hover {
    background: var(--red);
    color: var(--white) !important;
}

.sign-up:hover {
    color: var(--white);
}

/* header content  */

.header-content {
    position: absolute;
    top: 50%;
    left: 34%;
    width: 65%;
    height: auto;
    transform: translate(-50%, -50%);
    /* text-align: justify !important; */
    padding: 2%;
    z-index: 5;

}


.header-content h3 {
    color: var(--white);
    /* font-family: 'Open Sans', sans-serif; */

}


.header-content h1 {
    color: var(--white);
    /* font-family: 'Open Sans', sans-serif; */

}

.dropdown:hover .dropdown-menu {
    display: block !important;
    transition: 1s !important;
}

.dropdown .dropdown-menu {
    background-color: var(--color);
    transition: 1s !important;

}

.dropdown .dropdown-menu .dropdown-item {
    color: var(--white);
    transition: 0.5s;
}


.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--black);
}

.header-content p {
    /* font-family: 'Open Sans', sans-serif; */
    color: var(--white);
}


.header-content center a:hover {
    color: var(--black) !important;
}

.header-content .line {
    width: 20%;
    height: 3px;
    background-color: var(--red);
    margin-left: 0%;
    margin-top: 5%;
    transform: translate(-0%);
}


.mem {
    width: 150px;
    margin: 15px 50% 20px 50%;
    transform: translate(-50%);
    padding: 2% 3%;
    background: var(--color);

}

.mem a {
    text-decoration: none;
    color: var(--white);
}

.brain-img {
    position: absolute;
    width: 20%;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
}


header .brain {
    width: 100%;
    opacity: 70%;
}

.header-background {
    /* background-color: var(--color); */
    position: absolute;
    width: 100%;
    height: 95%;
    left: 0;
    top: 0;
    z-index: -5;
    /* opacity: 50%; */
    /* background-image: url(../IMAGES/BANNER/BBBB.jpg); */
    background-position: center center;
    background-size: cover;
}

.header-background-1 {
    /* background-color: var(--color); */
    position: absolute;
    width: 30px;
    height: 90%;
    left: 0;
    top: 0;
    opacity: 30%;
}

.about-assesment-img {
    width: 100% !important;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
}

.about-assesment-img img {
    width: 90%;
    height: 100%;
    animation: image-alt 3s infinite ease-in-out;
    object-fit: cover;
}

@keyframes image-alt {
    0% {
        transform: translateY(-0px);

    }

    50% {
        transform: translateY(-10px);

    }

    100% {
        transform: translateY(-0px);

    }
}

.library-content h3 {
    color: #fff;
    margin-top: 5px;
    font-size: 18px;
}

/*------------------------------- home about content -------------------------------------- */

.home-about {
    width: 70% !important;
    display: flex;
    height: auto;
    justify-content: space-between;
    margin-bottom: 5%;
    text-align: center;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
    margin-top: -130px;
    position: relative;
    z-index: 3;
    padding: 2%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    border-radius: 15px;

}

/* /////////////////////solutions /////////////////////////////////////////// */

.solution .pro-top h3 {
    color: var(--white);
}

.solution .pro-top h3 span {
    color: var(--red) !important;
}

.solution {
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
    padding: 2%;

}

.home-about .home-about-title {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 2%;
}

.home-about .home-about-title p {
    color: var(--white);
}


.easy-started .line {
    width: 7%;
    height: 3px;
    background-color: var(--red);
    margin-left: 50%;
    transform: translate(-50%);
    animation: animate 6s linear infinite;
}

@keyframes animate {
    0% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}



.home-about .about-img-container {
    width: 47%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    z-index: 0;
    animation: animate-border 2s infinite ease-in-out;
}

@keyframes animate-border {
    0% {
        box-shadow: rgb(77, 194, 107);
    }

    50% {
        box-shadow: rgb(100, 154, 201) 0px 20px 60px -10px;
    }

    100% {
        box-shadow: rgb(77, 194, 107);
    }
}

.home-about .about-img-container img {
    position: relative;
    z-index: 4;
    object-fit: cover;
    border-radius: 20px;
}

.home-about .about-img-container .png-img {
    position: absolute !important;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
}

.home-about .home-about-title h4 {
    color: var(--color);
    /* font-family: 'Open Sans', sans-serif; */
    font-weight: 700;
}

.home-about-boxes {
    width: 100%;
    height: 50px;
    display: flex;
    margin-bottom: 5%;
    padding: 2%;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: 1s;
}

.home-about .home-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 4;
    opacity: 20%;
}

.about-img-container:hover img {
    transform: scale(1.1);
    transition: all 1s;
}

.solution {
    border-radius: 20px;
}

.home-about-boxes i {
    transition: 1s;
    color: var(--black);
}

.home-about-boxes p {
    color: var(--color);
    /* font-family: 'Open Sans', sans-serif; */
    transition: 1s;
    font-weight: 700;
    margin-bottom: 0;
}

.home-about-boxes:hover {
    background-color: var(--color);
}


.home-about-boxes:hover i {
    color: var(--white);
}

.home-about-boxes:hover p {
    color: var(--white);
}

.home-about .home-about-title h3 {
    /* font-family: 'Open Sans', sans-serif; */
    font-weight: 700;
    color: var(--white);
}

.home-about .home-about-title h1 {
    font-weight: 700;
    font-size: 25px;
}



.home-about .about-img-container img {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.home-about-title a {
    color: var(--white);
    font-weight: 500;
    transition: 1s;
}

.home-about-title a:hover {
    background: var(--red);
    color: var(--white);
}


.home-about-title ul li {
    color: var(--color);
    font-weight: 500;
}

.big-circle {
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: var(--color);
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 50%;
    border-radius: 50%;
    animation: big-circle 20s infinite ease-in-out;
}

@keyframes big-circle {
    0% {
        right: 0%;
    }

    25% {
        right: 90%;
        top: 0;
        border-radius: 15%;
        transform: rotateZ(360deg);
    }

    50% {
        right: 90%;
        top: 89%;
        border-radius: 50%;
        transform: rotateZ(-360deg);
        background-color: var(--red);


    }

    75% {
        right: 0%;
        top: 89%;
        border-radius: 15%;
        transform: rotateZ(360deg);
        background-color: var(--color);



    }

    100% {
        right: 0;
        top: 0;
        transform: rotateZ(-360deg);


    }
}

.home-about .about-circle {
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: var(--white);
    border-radius: 50%;
    right: 0;
    bottom: 8%;
    opacity: 80%;
    z-index: -1;
    animation: 3s about-circle-1 infinite ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}


.about-circle {
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: var(--color);
    border-radius: 50%;
    right: 0;
    bottom: 8%;
    opacity: 80%;
    z-index: -1;
    animation: 3s about-circle-1 infinite ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

@keyframes about-circle-1 {
    0% {
        transform: translateY(-0px);

    }

    50% {
        transform: translateY(-10px);

    }

    100% {
        transform: translateY(-0px);

    }
}

.about-circle-1 {
    width: 17px;
    height: 17px;
    position: absolute;
    background-color: var(--red);
    border-radius: 50%;
    right: 8%;
    opacity: 50%;
    bottom: 0;
    animation: 4s about-circle-2 infinite ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

@keyframes about-circle-2 {
    0% {
        transform: translateY(-0px);

    }

    50% {
        transform: translateY(-10px);

    }

    100% {
        transform: translateY(-0px);

    }
}

.cursor-1 {
    position: fixed;
    width: 8px;
    height: 8px;
    border: 0.5px solid var(--color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    z-index: 15;
}

.easy-started {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 5%;
    text-align: center;
}

.easy-started .easy-title {
    width: 100%;
    margin-bottom: 5%;
    font-family: 'Manrope', sans-serif;
    color: var(--color);
}

.easy-started .easy-title h1 {
    font-weight: 900;
}


.easy-started .easy-title h1 span {
    color: var(--black);
}


.easy-started .easy-title p {
    color: var(--black);
    font-weight: 500;
}

.easy-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
}

.easy-container .easy-boxs {
    width: 20%;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1%;
    position: relative;
    border: 0.5px solid var(--light);
    border-radius: 15px;
    transition: 1s;

}

.step-section h3 {
    color: var(--black) !important;
}

.easy-container .easy-boxs:hover {
    background-color: var(--color);
    box-shadow: rgb(100, 154, 201) 0px 20px 30px -10px !important;

}

.easy-container .easy-boxs span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color);
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
}

.easy-container .easy-boxs:hover span {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    background: var(--red);
}

.easy-container .easy-boxs:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;

}

.easy-container .easy-boxs:hover .box-container h4 {
    color: var(--white);
}

.easy-container .easy-boxs:hover .box-container p {
    color: var(--white);
}

.easy-container .easy-boxs .box-container h4 {
    /* font-family: 'Manrope', sans-serif; */
    font-weight: 600;
    font-size: 1em;
    color: var(--color);
    transition: 1s;
}


.easy-container .easy-boxs .box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding-top: 15%;
}

.easy-container .easy-boxs .box-container .how-work-img img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.easy-container .easy-boxs .box-container .how-work-img .box-a {
    z-index: 5;
    transition: 1s;
}

.easy-container .easy-boxs .box-container:hover .how-work-img .box-a {

    opacity: 0;
}

.easy-container .easy-boxs .box-container p {
    color: var(--gray);
}

.easy-container .easy-boxs .how-work-img {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 8%;
    background-color: var(--white);
}



/* ---------------------Social icons---------------------------------- */
.home-social {
    width: 100%;
    display: flex;
    justify-content: space-around;
    height: auto;
    align-items: center;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
    overflow: hidden;
    margin-bottom: 5%;
    padding: 8% 3%;
}

.home-social .social-title {
    width: 65%;
    color: var(--white);
    /* font-family: 'Manrope', sans-serif; */
    font-weight: 700;

}

.home-social .social-title h1 {
    color: var(--white);
}

.home-social .social-title p {
    color: var(--gray) !important;
}

.social-icons {
    width: 30%;
    display: flex;
    justify-content: space-around;
}


.social-icons .icon-social {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    animation: alter 2s infinite linear;

}

.social-icons .icon-social i {
    font-size: 35px;
    color: var(--color);
    transition: 0.6s;
}

@keyframes alter {

    0% {
        box-shadow: 0 0 0 0rem var(--light),
            0 0 0 0rem var(--white);

    }

    50% {
        box-shadow: 0 0 0 0.5rem var(--light),
            0 0 0 1rem var(--white);

    }

    100% {
        box-shadow: 0 0 0 0rem var(--light),
            0 0 0 0rem var(--white);

    }

}

.social-icons .icon-social i:hover {
    color: var(--red);
}


/*-------------------------- Testimonial section ----------------------------- */



.testimonial-title {
    margin-bottom: 5%;
}

.testimonial-container {
    height: auto;
    width: 100%;
}

.testimonial-section,
.testimonial-color,
.testimonial-section .testimonial-color {
    margin-bottom: 5%;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);

    /* background-image: url(../IMAGES/BANNER/AAAA.jpg); */
}

.content-area {
    border-radius: 20px;
    width: 100%;
    height: auto;
    background-image: url(../IMAGES/BANNER/BBB.jpg);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 2%;
    background-position: center center;
    background-size: cover;
    padding: 2%;
}

.content-area:hover {
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.content-area .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-top: 5%; */
    position: relative;
}


.content-area .content .fa-quote-left {
    position: absolute;
    left: 0;
    top: 10%;
    transform: translate(50%, 50%);
    color: var(--color);
    -webkit-text-stroke: 2px var(--black);
}

.content-title {
    width: 100%;
}


.content-container {
    width: 100%;
}

.test-star {
    padding: 2%;
}

.test-star i {
    color: #ffd700;
    text-shadow: 0 0 0.2rem black;
}

.content-area .content .content-title h4 {
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 700;
    color: var(--red);
}

.content-area .content .content-title h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--black);
}

.content-area .content p {
    /* font-family: 'Manrope', sans-serif; */
    font-weight: 500;
    color: var(--black);
    font-size: 12px;

}


.testimonial-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1%;
    /* border-radius: 15px; */
    margin-bottom: 5%;
    justify-content: center !important;
    align-items: center;
}

.testimonial-title {
    width: 100%;
    margin-bottom: 6%;
}

.testimonial-title h4 {
    color: var(--color);
    font-weight: 900;
    /* font-family: 'Manrope', sans-serif; */

}


.testimonial-title h4 span {
    color: var(--white);
}

.testimonial-title h1 {
    font-weight: 700;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-container {
    width: 100%;
    min-height: 300px;
    position: relative;
}

.owl-dot {
    display: none !important;
}

.testimonial-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-content img {
    display: none;
}

.owl-carousel {
    /* position: absolute !important; */
    right: 0%;
    top: 0%;
    transform: translate(0, -0%);
    background: transparent;
    width: 100% !important;
    height: 100%;
    display: flex;
    border-radius: 15px;

}


/*---------------------------- footer ------------------------------------ */

footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    padding: 2%;
    /* background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%); */
    border-top: 2px solid var(--light);
    background-image: url(../IMAGES/BANNER/BBBB.jpg);
}


footer .footer-boxs {
    width: 25%;
    padding: 0 40px 0 0;
}

.content-align {
    background: transparent !important;
    padding: 2%;
    box-shadow: none !important;
    border-radius: 15px;
}


footer .footer-boxs img {
    width: 100%;

}

.content-align p {
    color: var(--white) !important;
}

footer .footer-boxs .footer-address {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
    justify-content: flex-start;
    text-align: justify !important;

}

footer .footer-boxs .footer-address iframe {
    width: 100%;
    border-radius: 10px;
}

footer .footer-boxs .footer-address i {
    margin-right: 10px;
    color: var(--white);

}

footer .footer-boxs .footer-logo img {
    /* margin-top: 30%; */
    transform: translate(0, -50%);
}

footer .footer-boxs h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

footer .footer-boxs .footer-address a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: 1s;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-transform: initial;
}

footer .footer-boxs .footer-address a:hover {
    color: var(--color);
}

footer .footer-boxs .link ul li {
    margin-bottom: 15px !important;
}

footer .footer-boxs p {
    color: var(--black);
    font-weight: 600;
    transition: 1s;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin-top: 30px;
}

footer .footer-boxs .footer-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

footer .footer-boxs .footer-links a {
    color: var(--gray);
    font-size: 15px;
    transition: 1s;
}

footer .footer-boxs .footer-links a:hover {
    color: var(--color);
}

footer .footer-boxs .footer-address ul li::marker {
    color: var(--light-blue);
}

.f-logo {
    width: 300px !important;
}

/* Mega Menu  */

.menu-area {
    position: static !important;
    height: auto !important;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
    z-index: 9;
}

.mega-area {
    position: absolute;
    width: 100%;
    left: 50% !important;
    transform: translate(-50%, 0);
    transition: 1s !important;
    top: 0;
    background-color: var(--color) !important;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
    z-index: 70;
}

.counselling-program {
    width: 100% !important;
    height: auto;
    margin-bottom: 5%;
    border-bottom: 0.5px solid var(--light);
}


.navbar .row .col-lg-6 {
    padding: 3% !important;

}

.mega-one .row {
    width: 100% !important;
}


.mega-area .num h6 {
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.counselling-program a {
    color: var(--white);
    text-decoration: none;
    /* font-family: 'Open Sans', sans-serif; */
    transition: 1s;
    font-size: 12.5px;
    font-weight: 400;

}



.a-details {
    color: var(--white) !important;
}


.counselling-program a .counselling-title {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}


.counselling-program a .counselling-title span {
    color: var(--white);
}


/* After Footer  */

.after-footer {
    width: 100%;
    text-align: center;
    padding: 1%;
}

.after-footer h6 {
    color: var(--black);
    font-weight: 900;
    /* font-family: 'Manrope', sans-serif; */

}

.after-footer h6 a {
    color: var(--color);
    transition: 1s;
}


.after-footer h6 a:hover {
    color: var(--red);
}


.home-about .home-about-title ul li {
    list-style: none;
    font-weight: bolder;
    color: var(--black);
}



.home-about .home-about-title ul li:not(:last-child) {
    margin-bottom: 10px;
}


.home-about .home-about-title ul li::before {
    content: "\2713";
    margin-right: 20px;
    color: var(--color);
    text-shadow: 3px 3px 11px rgba(0, 0, 0, 0.39) !important;
}


/* Carousel  */
.carousel {
    margin-bottom: 5%;
}

.carousel-item {
    position: relative;
}

.carousel-caption {
    position: absolute !important;
    top: 30% !important;
    left: 35% !important;
    transform: translate(-50%);
    color: var(--black) !important;
    text-align: justify !important;

}

.carousel-caption h4 {
    /* font-family: 'EB Garamond', serif; */
    color: var(--color);
}

.carousel-caption h1 {
    color: var(--black);
    /* font-family: 'EB Garamond', serif; */

}

.carousel-item .content-2 h1 {
    color: var(--color) !important;
}


.carousel-item .content-2 h1 span {
    font-size: 50px !important;
    color: rgb(67, 85, 96);
    font-weight: 900;
}

/*///////////////////////////// 5 Dimensions Content ////////////////////// */

.mini-content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 5%;
    background-image: url(../IMAGES/New-1/BA.jfif);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding: 3%;
    align-items: center;

}

.mini-content .mini-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
    z-index: 0;
    opacity: 50%;
}

.mini-content .dimensions-title {
    width: 47%;
    height: auto;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
    padding: 2%;
}

.mini-content .dimensions-title h4 {
    color: var(--white);
    /* font-family: 'Open Sans', sans-serif; */
    font-weight: 600;

}

.mini-content .dimensions-title h4 span {
    color: var(--red);

}

.mini-content .dimensions-title p {
    color: var(--white);

}


.mini-content .dimension-img {
    width: 33%;
    height: 350px;
    position: relative;
    z-index: 1;
}

.mini-content .dimension-img img {
    width: 100%;
    height: 100%;
    filter: contrast(100%);
}

.faq-section .faq-title h3 {
    /* font-family: 'Open Sans', sans-serif; */
    color: var(--color) !important;
    font-weight: 700;
}

.faq-section .faq-title h3 span {
    color: var(--black) !important;
}


.uparrow1 {
    position: fixed;
    bottom: 20px;
    z-index: 5 !important;
    right: 20px;

}

.uparrow1 .uparrow-div {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgb(10, 72, 122) 87.6%);
    padding: 2%;
    color: var(--white);
    border-radius: 8px;

}

.uparrow1 .uparrow-div i {
    animation: shake 2s infinite ease-in-out;
}


@keyframes shake {
    0% {
        transform: scale(0.7);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.7);
    }
}



.uparrow2 {
    position: fixed;
    bottom: 20px;
    z-index: 5 !important;
    left: 20px;
}

.uparrow2 .uparrow-div-2 {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgb(10, 72, 122) 87.6%);
    padding: 2%;
    color: var(--white);
    border-radius: 8px;

}

.uparrow2 .uparrow-div-2 i {
    animation: shake 2s infinite ease-in-out;
}


@keyframes shake {
    0% {
        transform: scale(0.7);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.7);
    }
}









.js {
    text-align: justify !important;
}

.btn-c1 {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(86deg, rgba(0, 119, 182, 1) 0%, rgb(10, 72, 122) 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px !important;
    transition: background-image 0.6s ease, box-shadow 0.6s ease, transform 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
}

.btn-c1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: none;
}

.btn-c1:hover {
    background-image: linear-gradient(120deg, rgba(0, 119, 182, 1) 0%, rgb(10, 72, 122) 100%) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

.btn-c1:hover::before {
    left: 125%;
    transition: left 0.75s ease-in-out;
}


.types-card {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .5s;
}

.types-card:hover {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    transition: all .5s;
}


.bg-point {
    background-image: url(../IMAGES/poits.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.w {
    color: #fff !important;
}

.typ-img {
    transition: all .5s;
}

.types-card:hover .typ-img {
    transform: scale(1.05);
    transition: all .5s;
}

.pro-kit-card {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.shape-div {
    width: 100px;
    height: 100px;
    background-color: var(--bg);
    opacity: 0.4;
    border-radius: 100%;
    position: absolute;
    top: -15%;
    left: -8%;
    z-index: -1;
    transition: all .5s;
}

.pro-kit-card:hover .shape-div {
    width: 500%;
    height: 500%;
    top: 0%;
    left: 0%;
    transition: all .5s;

}

.pro-kit-card::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-color: #ffff;
    z-index: -2;
}

.pro-icon {
    width: 25%;
}

.bg-z-3 {
    position: relative;
}

.bg-z-3::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-color: #f6f6f6;
    z-index: -3;
}

.benifit-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beni-img {
    width: 60px;
}

.ben-h {
    font-size: 15px;
}

.bg-c1-lite {
    background-color: #e9edf3;
    border: 1px solid #dbe8fb;
    border-radius: 30px;
}

.num-bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.num-bdr {
    border-right: 1px solid #b9b8b8;
}

.frm-bg {
    position: relative;
}

.frm-bg::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../IMAGES/poits.jpg);
    background-size: cover;
}

/* from */
.frm-right {
    border-radius: 15px;
}


/* ------ step section ----- */
.step-crd {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stp-round {
    width: 170px;
    height: 170px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.step-in-rnd {
    width: 80%;
    height: 80%;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: dashed 1px var(--color);
}

.stp-img {
    width: 50%;
}

.stp-w-img {
    display: none;
}

.step-crd:hover .stp-w-img {
    display: block;
}

.step-crd:hover .stp-b-img {
    display: none;
}

.step-crd:hover .step-in-rnd {
    background-color: var(--color) !important;
    transition: all .5s;
}

.step-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-line {
    width: 80%;
    position: absolute;
    z-index: 1;
    top: 20%;
}

.step-main .row {
    z-index: 2;
}

.nv-bar-bg {
    background-color: rgb(2, 27, 61) !important;
}

.highlighter {
    font-weight: 600;
    position: relative;
}

.highlighter::after {
    content: '';
    background: url(../IMAGES/hero-elem-2.png) no-repeat;
    background-size: 90% 100%;
    display: block;
    width: 100%;
    height: 15.5px;
    position: absolute;
    bottom: -10px;
    left: 10px;
}

/* ---------- */
.std-ser-box {
    width: 100%;
    background-color: #FFFF;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #fff;
    transition: all .5s;
    height: 100%;
}

.std-ser-icon {
    width: 18%;
}

.std-ser-box:hover {
    border: 1px solid var(--color);
    transition: all .5s;
}

/* ------------------- */
.place-crd {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-crd-in {
    background-color: #020622;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 12px;
    transition: all .5s;
    min-width: 10px;
    min-height: 10px;
}

.place-crd-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-crd:hover .place-crd-in {
    min-width: 110%;
    min-height: 110%;
    background-color: #0206229f;
    transition: all .5s;
}

/* ---- why -------- */
.rund-2-img {
    width: 90%;
}

.why-bg {
    background-image: url(../IMAGES/arrow-bg.jpg);
    background-color: #f6f6f6;
    background-size: cover;
}

.why-side-img {
    /* width: 40%; */
    height: 30%;
    border: 5px solid #ffff;
    position: absolute;
    right: 5%;
    bottom: 0%;
    border-radius: 0 50px 0 0;
}

/* ------- faq ----- */

/* ======== faq ====== */
.faq-btn {
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 8PX !important;
}

.faq-pills .active {
    background-color: var(--color) !important;
}

.nav-pills .nav-item {
    border-bottom: unset !important;
}

.faq .accordion-item {
    margin-bottom: 1rem !important;
}

.faq .accordion-button {
    background-color: #fff;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    /* height: 0px; */
}

.accordion-button:focus {
    box-shadow: unset !important;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: var(--color) !important;
    /* box-shadow: unset !important; */
}

.accordion-button::after {
    content: '+' !important;
    font-size: 22px;
    font-weight: bold;
    color: var(--color);
    background-image: unset !important;
    /* background-color: #fff; */
    font-display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s;
    line-height: inherit;
}

.accordion-button:not(.collapsed)::after {
    content: '—' !important;
    font-size: 18px;
    color: #fff;
    background-image: unset !important;
    font-display: flex;
    align-items: center;
    justify-content: center;
    line-height: inherit;
}

.faq-acc button {
    display: flex !important;
    align-items: center;
}

.bg-blue-lite {
    position: relative;

}

.bg-blue-lite::after {
    content: '';
    background-color: #edf2fe;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    z-index: -3;
}

.cg-bx {
    background-color: #f6f6f6;
    border-radius: 8px;
    position: relative;
    width: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cg-bx-ab {
    position: absolute;
    bottom: 2%;
    right: 2%;
    width: 60px;
    opacity: 0.7;
}

.cg-bx-b {
    border: 3px solid var(--color);
}

/* .cg-bx-b::after{
    content: '';
    background-color: rgb(66 129 253);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: -1;
    border-radius: 13px;
  } */

.cg-bx-l {
    border: 1px solid rgb(168 85 247);
}

.cg-bx-l::after {
    content: '';
    background-color: rgb(168 85 247);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: -1;
    border-radius: 13px;
}

.cg-bx-sb {
    border: 1px solid rgb(96 165 250);
}

.cg-bx-sb::after {
    content: '';
    background-color: rgb(96 165 250);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: -1;
    border-radius: 13px;
}

.cg-bx-y {
    border: 1px solid rgb(250 204 21);
}

.cg-bx-y::after {
    content: '';
    background-color: rgb(250 204 21);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: -1;
    border-radius: 13px;
}

.cg-bx-g {
    border: 1px solid rgb(34 197 94);
}

.cg-bx-g::after {
    content: '';
    background-color: rgb(34 197 94);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: -1;
    border-radius: 13px;
}

/* --------- */
.pro-kit-card2 {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 2rem;
    min-height: 250px;
}

.shape-div2 {
    width: 100px;
    height: 100px;
    background-color: var(--bg);
    opacity: 0.4;
    border-radius: 100%;
    position: absolute;
    top: -13%;
    left: -5%;
    z-index: -1;
    transition: all .8s ease-in-out;
}

.pro-kit-card2:hover .shape-div2 {
    width: 500%;
    height: 500%;
    top: 0%;
    left: 0%;
    transition: all .8s ease-in-out;


}

.pro-kit-card2::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-color: #ffff;
    z-index: -2;
}

.pro-icon2 {
    width: 45px;
}

.bg-z-3 {
    position: relative;
}

.bg-z-3::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-color: #f6f6f6;
    z-index: -3;
}

/* -- steps --- */
.career-step {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
}

.step-c-num {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color);
}

.cs-in-1 {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-in-2 {
    width: 80%;
    background-color: #f3f4f6;
}


.serv-side-imgs {
    width: 80%;
    height: 340px;
    object-fit: cover;
    object-position: center;
}

.serv-side-imgs1 {
    width: 100%;
    height: 370px;
    object-fit: cover;
    object-position: center;
}

.serv-side-imgs-2 {
    width: 40%;
    height: 180px;
    position: absolute;
    right: 0%;
    top: 0%;

    object-fit: cover;
}

.serv-side-imgs-3 {
    width: 40%;
    height: 180px;
    position: absolute;
    left: 0%;
    top: 0%;
    object-fit: cover
}

.line1 {
    width: 60px;
    height: 2px;
    background-color: #020622 !important;
}



.testimonial-card {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    min-height: 360px !important;
    border-radius: 1.4rem !important;
}

.testimonial-img {
    width: 80px !important;
    /* or any size you prefer */
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 50%;
}

.circle-icon {
    width: 30px;
    height: 30px;
    background-color: #3c74b4 !important;
    border-radius: 50%;
    position: absolute;
    bottom: 0%;
    right: 0%;
}

.tes-pro {
    position: relative;
}

.owl-nav {
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    /* top: 40%;
  left: 0%; */
}

.sim-arrow {
    background-color: #fff !important;
    border-radius: 50% !important;
    height: 35px;
    width: 35px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: all 1s !important;
    border: 2px solid #3c74b4 !important;
}

.h-arrow {
    /* border: 2px solid var(--c1) !important; */
    color: #000 !important;
}


.isim-btn {
    background-color: var(--c1) !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.sim-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sw-nav {
    width: 102%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    left: -1%;
}

.ser-nav {
    width: 102%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: -31%;
    left: -1%;
}


/* --- hero section ----- */
.hero {
    background-color: rgba(6, 3, 21, .9);
    display: flex;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    background-image: url(../IMAGES/88.jpg);
    background-size: cover;
    background-attachment: fixed;
    /* background-repeat: no-repeat !important; */
    background-position: bottom !important;
    background-color: var(--bg);
    z-index: -1;
}

.hero-con {
    width: 100% !important;
}

.ban-img {
    height: 80vh !important;
    object-fit: contain;
    width: 100%;
}

.hero-p {
    font-size: 18px !important;
}

.hero-f {
    font-size: 25px;
}


.ban-down-bgf {
    font-size: 25px !important;
}

/* ------------- time line -----------  */


ul.timeline-list {
    position: relative;
    margin: 0;
    padding: 0
}

ul.timeline-list:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--c2);
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

ul.timeline-list li {
    position: relative;
    clear: both;
    display: table;
}

.timeline_content {
    border: 2px solid var(--c2);
    background-color: #fff
}

ul.timeline-list li .timeline_content {
    width: 45%;
    color: #333;
    padding: 20px;
    float: left;
    text-align: right;
}

ul.timeline-list li:nth-child(2n) .timeline_content {
    float: right;
    text-align: left;
}

.timeline_content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

ul.timeline-list li:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background-color: var(--c2);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.timeline_content span {
    font-size: 18px;
    font-weight: 500;
    font-family: poppins;
    color: var(--c2);
}


/* --------------------  */


.abt-img {
    height: 440px;
}

.abt-img1 {
    height: 90%;
    width: 100%;
    object-fit: cover;
}

.abt-img2 {
    height: 90%;
    width: 100%;
    object-fit: cover;
}

/* -----------------------  */


.ex-box {
    width: 100%;
    min-height: 280px;
    background-color: #FFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;

}

.l-bx {
    height: 15%;
    width: 10%;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--color);
    position: absolute;
    top: 0%;
    left: 0%;
    transition: all 1s;
}

.r-bx {
    height: 15%;
    width: 10%;
    border-bottom: 4px solid var(--red);
    border-right: 4px solid var(--color);
    position: absolute;
    bottom: 0%;
    right: 0%;
    transition: all 1s;
}

.ex-box:hover {
    box-shadow: unset;
    transition: all .5s;
}

.ex-box:hover .l-bx {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.ex-box:hover .r-bx {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.l-bx,
.r-bx {
    pointer-events: none;
    /* Add this line */
}

.ca-box-pos {
    position: absolute;
    bottom: 2%;
    right: 4%;
    opacity: 0.5;
}


/* ---------------------  */

.con-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.con-box img {
    width: 40px;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1) !important;
    /* Makes the icon white */
}

.carousel-control-prev,
.carousel-control-next {
    background-color: transparent;
    /* Optional: remove background */
    border: none;
}

.faq-man {
    /* height: 95%; */
    height: 80%;
    object-fit: contain;
    width: 100%;
    z-index: 2;
}

/* ------------------- counter --------------*/
.count-div {
    position: relative;
    background-color: white;
}

.count-div::after {
    content: '';
    /* background-image: url(../images/agency-1.jpg); */
    background-attachment: fixed;
    background-position: right;
    background-size: cover;
    position: absolute;
    inset: 0%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.count-head {
    font-size: 50px;
    color: black !important;
    font-weight: bold;
}

.count-bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../IMAGES/services-bg-01.png);
    background-position: center;
    background-size: cover;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-height: 180px;
}

.cnt-nm {
    color: var(--red) !important;
    display: inline-block;
    font-size: 38px;
    line-height: 1em;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
}

.about-main1 {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* -----------------  */

.best-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    min-height: 130px;
    border-radius: 10px;
}

.best-img-div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color);
}

.best-img {
    width: 60%;
}

.best-box:hover .best-img-div {
    transform: rotateY(360deg);
    transition: all 1s;

}

.white-icon {
    filter: brightness(0) invert(1) !important;
}

/* -------------------- */

.bg-c1 {
    background-color: var(--color);
}

.bord-sta {
    border-left: 1px solid white;
}



.choose-in2 {
    background-color: var(--c2) !important;
    border: 1px solid var(--c1) !important;
    color: var(--white) !important;
    transition: all 0.3s;
    border-radius: 2rem !important;
}

.choose-in2:hover {
    background-color: var(--white) !important;
    border: 1px solid var(--c1) !important;
    color: var(--c2) !important;
}

.p-in-line {
    width: 30px;
    height: 2px;
    background-color: var(--color);
    transition: all .5s;
}

.br-bot {
    border-bottom: 1px solid #a3a3a3;
}

.br-ri {
    border-right: 1px solid #a3a3a3;
}

.br-lef {
    border-left: 1px solid #a3a3a3;
}

.make-us-box {
    height: 100%;
}

.make-us-box:hover {
    background-color: #fff;
}

.make-us-box:hover .p-in-line {
    width: 0px;
    /* height: 0px; */
    background-color: unset;
    transition: all .5s;
    margin-right: unset !important;
}

.web-form {
    background-color: #ed979729;
}

.form-web-img {
    width: 100%;
}

.web-pg-input {
    background-color: unset !important;
    border-radius: 0% !important;
    border: 1px solid #000 !important;
    height: 50px;
}

/* ------ step section ----- */
.step-crd {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stp-round {
    width: 170px;
    height: 170px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.step-in-rnd {
    width: 80%;
    height: 80%;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: dashed 1px var(--color);
}

.stp-img {
    width: 50%;
}

.stp-w-img {
    display: none;
}

.step-crd:hover .stp-w-img {
    display: block;
}

.step-crd:hover .stp-b-img {
    display: none;
}

.step-crd:hover .step-in-rnd {
    background-color: var(--color) !important;
    transition: all .5s;
}

.step-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-line {
    width: 80%;
    position: absolute;
    z-index: 1;
    top: 20%;
}

.step-main .row {
    z-index: 2;
}


.img-left-shape {
    display: flex;
    justify-content: center;
    position: relative;

}


.dif-shape {
    width: 70%;
    height: 400px;
    object-fit: cover;
    border-radius: 59% 41% 70% 30% / 30% 30% 70% 70%;
    /* animation: border-move 15s linear infinite forwards; */
    /* animation: spin 12s ease-in-out infinite alternate-reverse; */
}

.dif-shape2 {
    width: 70%;
    height: 400px;
    object-fit: cover;
    border-radius: 59% 41% 70% 30% / 30% 30% 70% 70%;
    position: absolute;
    /* margin-right: 0%; */
    margin-left: 2%;
    background-color: var(--c2);
    z-index: -2;
    /* animation: border-move 15s linear infinite forwards; */
}


.type-bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.type-round {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    border-radius: 50%;
    position: relative;
    border: 2px solid var(--c2);
}

.type-round::before {
    content: '';
    width: 90px;
    height: 90px;
    border: 2px dashed var(--c1);
    position: absolute;
    border-radius: 50%;
    animation-name: spin;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.type-img {
    width: 60%;

    /* border-radius: 50%; */
}

.spl-type {
    /* border: 2px dashed #fff; */
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-height: 420px;
}

.spl-type .type-round::before {
    border: 2px dashed var(--color);
}

.spin {
    animation-name: spin;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== why choose us ========== */

.btn-br {
    background-color: var(--c1) !important;
    color: #fff !important;
    border-radius: 0% !important;
}


.btn-br:hover {
    transition: all .5s;
    background-color: #000 !important;
    color: var(--c1) !important;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.mini-line {
    height: 3px;
    background-color: var(--c1);
}

.grow {
    animation-name: grow;
    animation-duration: 6s;
    /* animation-iteration-count: 3; */
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes grow {
    0% {
        width: 10%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 10%;
    }
}

.wy-full {
    width: 100%;
    background-color: #fff;
    position: relative;
    border-bottom: 8px solid var(--c2);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all .5s;
}

.round-why {
    width: 20%;
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 1;
    transition: all .5s;
}

.round-why2 {
    opacity: 0;
    width: 20%;
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 1;
    transition: all .5s;
}

.why-num {
    z-index: 4 !important;
}

.wy-full:hover .round-why2 {
    opacity: 1;
    transform: rotate(10deg);
    transition: all .5s;
}

.wy-full:hover .round-why {
    opacity: 0;
    transition: all .5s;
}


/* ---------------------- */
.drive-box {
    width: 100%;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 100%;
    border-bottom: 2px solid #ffff;
    position: relative;
    overflow: hidden;
    background-color: #fff !important;
}

.drive-box:hover {
    border-bottom: 2px solid var(--red);
}

.drive-grid-img {
    width: 100px;
    position: absolute;
    bottom: -40%;
    right: -5%;
}

/* ------ resposive ---- */

@media screen and (max-width:920px) {
    .num-bdr {
        border-right: unset !important;
        border-bottom: 1px solid #b9b8b8 !important;
    }

    .place-crd {
        width: 100%;
        height: 144px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .place-crd-in * {
        font-size: 14px;
    }

    .sm-js {
        text-align: justify !important;
    }

    .pro-icon2 {
        width: 22%;
    }
}

@media screen and (max-width:768px) {
    header {
        height: 60vh !important;
    }
}

@media screen and (max-width:620px) {
    .career-step {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cs-in-1 {
        width: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cs-in-2 {
        width: 100%;
        background-color: #f3f4f6;
    }
}





@media screen and (max-width:320px) {


    .navbar .logo {
        width: 50%;

    }


    .logo-sec {
        width: 100%;
    }

    .logo-sec img {
        width: 100%;
    }


    header {
        width: 100%;
        height: 70vh;
        /* background-image: url(../IMAGES/BANNER/BANNER-MOBILE.jpg); */
        background-position: center center;
        background-size: cover;
        position: relative;
    }

    .navbar .navbar-nav {
        background-color: var(--black) !important;
        padding: 3%;
    }


    .carousel-caption {
        position: absolute !important;
        top: 10% !important;
        left: 5% !important;
        transform: translate(0%);
        color: var(--black) !important;
        text-align: justify !important;

    }


    .carousel-item .content-2 h1 {
        color: var(--color) !important;
        font-size: 12px;
    }


    .carousel-item .content-2 h1 span {
        font-size: 16px !important;
        font-weight: 900;
    }

    /* header content  */

    .header-content {
        position: absolute;

    }

    .header-content h3 {
        font-weight: 600;
        font-size: 20px;
    }

    .header-content h1 {
        font-weight: 800;
        font-size: 25px;
    }


    .header-content P {
        font-size: 15px;
    }

    .brain-img {
        position: absolute;
        width: 50%;
        top: 100%;
        transform: translate(-50%, -100%);

    }


    header .brain {
        width: 100%;
        opacity: 70%;
    }


    .about-assesment-img {
        width: 100% !important;
        height: 120px;
        margin-bottom: 5%;
    }

    /*------------------------------- home about content -------------------------------------- */

    .home-about {
        width: 100% !important;
        display: flex;
        height: auto;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-bottom: 5%;
        margin-top: 0px;
        border-radius: 0;
        box-shadow: none;
        padding: 2% !important;
    }

    .home-about .home-about-title {
        width: 100%;
        height: auto;
        margin-bottom: 5%;
    }

    .home-about .about-img-container {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .cursor-1 {
        display: none;
    }

    /* easy section  */

    .easy-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-top: 5%;
    }

    .easy-container .easy-boxs {
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
        margin-bottom: 15%;
    }


    .testimonial-container {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .testimonial-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .testimonial-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }





    /*---------------------------- footer ------------------------------------ */

    footer {
        width: 100%;
        height: auto;
        flex-direction: column;
        display: flex;
        justify-content: space-around;
        padding: 2%;
        border-top: 2px solid var(--light);


    }


    footer .footer-boxs {
        width: 100%;
        margin-bottom: 5%;
    }


    .navbar .row .col-lg-6 {
        padding: 7% !important;

    }

    .mega-area {
        transform: translate(0, 0) !important;
    }


    /*///////////////////////////// 5 Dimensions Content ////////////////////// */

    .mini-content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-bottom: 5%;
        background-image: url(../IMAGES/New-1/BA.jfif);
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        position: relative;
        padding: 3%;
        align-items: center;

    }

    .mini-content .dimensions-title {
        width: 95%;
        height: auto;
        position: relative;
        z-index: 1;
        background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
        padding: 2%;
        margin-bottom: 5%;
    }

    .mini-content .dimension-img {
        width: 100%;
        height: 330px;
        position: relative;
        z-index: 1;
    }




}
















@media screen and (min-width:321px) and (max-width:425px) {

    .navbar .logo {
        width: 50%;

    }

    .navbar .navbar-nav {
        background-color: var(--black) !important;
        padding: 3%;
    }


    .logo-sec {
        width: 100%;
    }

    .logo-sec img {
        width: 100%;
    }


    .carousel-caption {
        position: absolute !important;
        top: 15% !important;
        left: 5% !important;
        transform: translate(0%);
        color: var(--black) !important;
        text-align: justify !important;

    }


    .carousel-item .content-2 h1 {
        color: var(--color) !important;
        font-size: 12px;
    }


    .carousel-item .content-2 h1 span {
        font-size: 16px !important;
        font-weight: 900;
    }

    header {
        width: 100%;
        height: 70vh;
        /* background-image: url(../IMAGES/BANNER/BANNER-MOBILE.jpg); */
        background-position: left center;
        background-size: cover;
        position: relative;
    }



    /* header content  */


    .header-content {
        position: absolute;

    }

    .header-content h3 {
        font-weight: 600;
        font-size: 20px;
    }

    .header-content h1 {
        font-weight: 800;
        font-size: 25px;
    }


    .header-content P {
        font-size: 15px;
    }

    .brain-img {
        position: absolute;
        width: 50%;
        top: 100%;
        transform: translate(-50%, -100%);
        z-index: 4;
    }


    header .brain {
        width: 100%;
        opacity: 70%;
    }

    .navbar .row .col-lg-6 {
        padding: 7% !important;

    }



    .header-background {
        background-color: var(--color);
        position: absolute;
        width: 100%;
        height: 80%;
        left: 0;
        top: 0;
        z-index: -5;
        opacity: 50%;

    }

    .header-background-1 {
        background-color: var(--color);
        position: absolute;
        width: 30px;
        height: 70%;
        left: 0;
        top: 0;
        opacity: 30%;
    }


    .about-assesment-img {
        width: 100% !important;
        height: 130px;
        margin-bottom: 5%;
    }



    /*------------------------------- home about content -------------------------------------- */

    .home-about {
        width: 100% !important;
        display: flex;
        height: auto;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-bottom: 5%;
        margin-top: 0px;
        border-radius: 0;
        box-shadow: none;
        padding: 2% !important;
    }

    .home-about .home-about-title {
        width: 100%;
        height: auto;
        margin-bottom: 5%;
    }

    .home-about .about-img-container {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .cursor-1 {
        display: none;
    }

    /* easy section  */

    .easy-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-top: 5%;
    }

    .easy-container .easy-boxs {
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
        margin-bottom: 15%;
    }

    /* ---------------------Social icons---------------------------------- */
    .home-social {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: auto;
        align-items: center;
        background-image: linear-gradient(111.4deg, rgba(7, 7, 9, 1) 6.5%, rgba(27, 24, 113, 1) 93.2%);
        margin-bottom: 5%;
        padding: 8% 3%;
    }

    .home-social .social-title {
        width: 100%;
        color: var(--white);
        /* font-family: 'Manrope', sans-serif; */
        font-weight: 700;

    }

    .home-social .social-title p {
        color: var(--gray) !important;
    }

    .social-icons {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }


    .testimonial-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        /* background-color: var(--light-blue); */
        padding: 0%;
        /* border-radius: 15px; */
    }

    .testimonial-title h1 {
        font-weight: 700;
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
    }

    .testimonial-container {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .testimonial-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .testimonial-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*---------------------------- footer ------------------------------------ */

    footer {
        width: 100%;
        height: auto;
        flex-direction: column;
        display: flex;
        justify-content: space-around;
        padding: 2%;
        border-top: 2px solid var(--light);


    }


    footer .footer-boxs {
        width: 100%;
        margin-bottom: 5%;
    }

    .mega-area {
        transform: translate(0, 0) !important;
    }



    /*///////////////////////////// 5 Dimensions Content ////////////////////// */

    .mini-content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-bottom: 5%;
        background-image: url(../IMAGES/New-1/BA.jfif);
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        position: relative;
        padding: 3%;
        align-items: center;

    }

    .mini-content .dimensions-title {
        width: 95%;
        height: auto;
        position: relative;
        z-index: 1;
        background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
        padding: 2%;
        margin-bottom: 5%;
    }

    .mini-content .dimension-img {
        width: 100%;
        height: 330px;
        position: relative;
        z-index: 1;
    }


}

@media screen and (max-width:660px) {
    .serv-side-imgs {
        width: 80%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .serv-side-imgs-2 {
        width: 40%;
        height: 150px;
        position: absolute;
        right: 0%;
        top: 0%;

        object-fit: cover;
    }

    .serv-side-imgs-3 {
        width: 40%;
        height: 150px;
        position: absolute;
        left: 0%;
        top: 0%;
        object-fit: cover
    }

    .testimonial-card {
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
        min-height: 380px !important;
    }

    .hero {
        background-color: rgba(6, 3, 21, .9);
        display: flex;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hero-con {
        width: 100% !important;
    }

    /* --------------------  */

    ul.timeline-list li .timeline_content {
        width: 45%;
        color: #333;
        padding: 30px;
        float: left;
        text-align: left !important;
    }

    ul.timeline-list li:nth-child(2n) .timeline_content {
        float: right;
        text-align: left;
    }

    ul.timeline-list:before {
        position: absolute;
        content: "";
        width: 2px;
        height: 100%;

        left: 0%;
        top: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    ul.timeline-list li:before {
        position: absolute;
        content: "";
        width: 25px;
        height: 25px;

        left: 0%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    ul.timeline-list li .timeline_content {
        width: 100%;
        color: #333;
        padding: 30px;
        float: left;
        text-align: right;
    }

    /* -------------  */

    .abt-img {
        height: 340px;
    }

    .cg-bx-ab {
        position: absolute;
        bottom: 2%;
        right: 2%;
        width: 50px;
        opacity: 0.7;
    }

    /* What makes us the top web developer */

    .br-bot {
        border-bottom: unset;
    }

    .br-ri {
        border-right: unset;
    }

    .br-lef {
        border-left: unset;
    }

    .make-us-box {
        border-bottom: 1px solid #a3a3a3;
    }

    .dif-shape {
        width: 100%;
        height: 330px;
        object-fit: cover;
        margin-bottom: 20px;
        border-radius: 59% 41% 70% 30% / 30% 30% 70% 70%;
        /* animation: border-move 15s linear infinite forwards; */
        /* animation: spin 12s ease-in-out infinite alternate-reverse; */
    }

    .dif-shape2 {
        width: 100%;
        height: 330px;

        /* animation: border-move 15s linear infinite forwards; */
    }

}

@media screen and (min-width:426px) and (max-width:600px) {

    .mega-area {
        transform: translate(0, 0) !important;
    }

    .navbar .logo {
        width: 30%;

    }


    .logo-sec {
        width: 100%;
    }

    .logo-sec img {
        width: 100%;
    }


    header {
        width: 100%;
        height: 70vh;
        /* background-image: url(../IMAGES/BANNER/BANNER.jpg); */
        background-position: center center;
        background-size: cover;
        position: relative;
    }

    .navbar .navbar-nav {
        background-color: var(--black);
        padding: 3%;
    }


    /* header content  */


    .header-content {
        position: absolute;

    }

    .header-content h3 {
        font-weight: 600;
        font-size: 20px;
    }

    .header-content h1 {
        font-weight: 800;
        font-size: 25px;
    }


    .header-content P {
        font-size: 15px;
    }

    .brain-img {
        position: absolute;
        width: 30%;
        top: 100%;
        right: 50%;
        transform: translate(50%, -100%);
        z-index: 4;
    }


    header .brain {
        width: 100%;
        opacity: 70%;
    }


    .header-background {
        background-color: var(--color);
        position: absolute;
        width: 100%;
        height: 80%;
        left: 0;
        top: 0;
        z-index: -5;
        opacity: 50%;

    }

    .header-background-1 {
        background-color: var(--color);
        position: absolute;
        width: 30px;
        height: 70%;
        left: 0;
        top: 0;
        opacity: 30%;
    }


    .about-assesment-img {
        width: 100% !important;
        height: 200px;
        margin-bottom: 5%;
    }

    /*------------------------------- home about content -------------------------------------- */

    .home-about {
        width: 80% !important;
        display: flex;
        height: auto;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-bottom: 5%;
        margin-top: -100px;
        border-radius: 20px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 2% !important;
        z-index: 5;
    }

    .home-about .home-about-title {
        width: 100%;
        height: auto;
        margin-bottom: 5%;
    }


    .home-about .about-img-container {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .cursor-1 {
        display: none;
    }

    /* easy section  */

    .easy-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-top: 5%;
    }

    .easy-container .easy-boxs {
        width: 100%;
        height: 230px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
        margin-bottom: 15%;
    }





    /*---------------------------- footer ------------------------------------ */

    footer {
        width: 100%;
        height: auto;
        flex-direction: column;
        display: flex;
        justify-content: space-around;
        padding: 2%;
        border-top: 2px solid var(--light);
        background-color: var(--light-blue);
        /* background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%); */

    }


    footer .footer-boxs {
        width: 100%;
        margin-bottom: 5%;
    }

    /*///////////////////////////// 5 Dimensions Content ////////////////////// */

    .mini-content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-bottom: 5%;
        background-image: url(../IMAGES/New-1/BA.jfif);
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        position: relative;
        padding: 3%;
        align-items: center;

    }

    .mini-content .dimensions-title {
        width: 95%;
        height: auto;
        position: relative;
        z-index: 1;
        background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
        padding: 2%;
        margin-bottom: 5%;
    }

    .mini-content .dimension-img {
        width: 100%;
        height: 330px;
        position: relative;
        z-index: 1;
    }






}

@media screen and (min-width:601px) and (max-width:768px) {

    header {
        width: 100%;
        height: 70vh;
        /* background-image: url(../IMAGES/BANNER/NEW-2.jpg); */
        background-position: left center;
        position: relative;
        margin-bottom: 5%;
    }


    .mega-area {
        transform: translate(0, 0) !important;
    }

    /* header content  */


    .header-content {
        position: absolute;

    }

    .header-content h3 {
        font-weight: 600;
        font-size: 20px;
    }

    .header-content h1 {
        font-weight: 800;
        font-size: 25px;
    }


    .header-content P {
        font-size: 15px;
    }

    .navbar .navbar-nav {
        background-color: var(--black);
        padding: 3%;
    }




    .brain-img {
        position: absolute;
        width: 30%;
        top: 100%;
        right: 50%;
        transform: translate(50%, -100%);
        z-index: 4;
    }


    header .brain {
        width: 100%;
        opacity: 70%;
    }


    .header-background {
        background-color: var(--color);
        position: absolute;
        width: 100%;
        height: 75%;
        left: 0;
        top: 0;
        z-index: -5;
        opacity: 50%;

    }

    .header-background-1 {
        background-color: var(--color);
        position: absolute;
        width: 30px;
        height: 70%;
        left: 0;
        top: 0;
        opacity: 30%;
    }


    .about-assesment-img {
        width: 80% !important;
        height: 200px;
        margin-bottom: 5%;
    }

    /*------------------------------- home about content -------------------------------------- */

    .home-about {
        width: 80% !important;
        display: flex;
        height: auto;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-bottom: 5%;
        margin-top: -120px;
        border-radius: 20px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

        padding: 2% !important;
        z-index: 5;
    }

    .home-about .home-about-title {
        width: 100%;
        height: auto;
        margin-bottom: 5%;
    }

    .home-about .about-img-container {
        width: 47%;
        height: 500px;
        position: relative;
    }

    .cursor-1 {
        display: none;
    }


    /* easy section  */

    .easy-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-top: 5%;
    }

    .easy-container .easy-boxs {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
        margin-bottom: 15%;
    }


    .easy-container .easy-boxs .box-container {
        padding-top: 8%;
    }


    .home-social .social-title {
        width: 47%;
        color: var(--white);
        /* font-family: 'Manrope', sans-serif; */
        font-weight: 700;

    }

    .home-social .social-title p {
        color: var(--gray) !important;
    }

    .social-icons {
        width: 47%;
        display: flex;
        justify-content: space-around;
    }

    /*---------------------------- footer ------------------------------------ */

    footer {
        width: 100%;
        height: auto;
        flex-direction: column;
        display: flex;
        justify-content: space-around;
        padding: 2%;
        border-top: 2px solid var(--light);
        background-color: var(--light-blue);
        /* background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%); */

    }


    footer .footer-boxs {
        width: 100%;
        margin-bottom: 5%;
    }

    /*///////////////////////////// 5 Dimensions Content ////////////////////// */

    .mini-content {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-around;
        margin-bottom: 5%;
        background-image: url(../IMAGES/New-1/BA.jfif);
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        position: relative;
        padding: 3%;
        align-items: center;

    }

    .mini-content .dimensions-title {
        /* width: 95%; */
        height: auto;
        position: relative;
        z-index: 1;
        background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
        padding: 2%;
        margin-bottom: 5%;
    }

    .mini-content .dimension-img {

        width: 40%;
        height: 300px;
        position: relative;
        z-index: 1;
    }




}

@media screen and (min-width:769px) and (max-width:900px) {

    .mega-area {
        transform: translate(0, 0) !important;
    }


    /* header content  */


    .header-content {
        position: absolute;

    }

    header {
        height: 70vh;
    }

    .header-content h3 {
        font-weight: 600;
        font-size: 20px;
    }

    .header-content h1 {
        font-weight: 800;
        font-size: 25px;
    }


    .header-content P {
        font-size: 15px;
    }

    .brain-img {
        position: absolute;
        width: 30%;
        top: 100%;
        right: 50%;
        transform: translate(50%, -100%);
        z-index: 4;
    }


    header .brain {
        width: 100%;
        opacity: 70%;
    }

    .navbar .navbar-nav {
        background-color: var(--black);
        padding: 3%;
    }


    .header-background {
        background-color: var(--color);
        position: absolute;
        width: 100%;
        height: 75%;
        left: 0;
        top: 0;
        z-index: -5;
        opacity: 50%;

    }

    .header-background-1 {
        background-color: var(--color);
        position: absolute;
        width: 30px;
        height: 70%;
        left: 0;
        top: 0;
        opacity: 30%;
    }


    .about-assesment-img {
        width: 80% !important;
        height: 200px;
        margin-bottom: 5%;
    }

    /*------------------------------- home about content -------------------------------------- */

    .home-about {
        width: 80% !important;
        display: flex;
        height: auto;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-bottom: 5%;
        margin-top: -120px;
        border-radius: 20px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 2% !important;
        z-index: 5;
    }

    .home-about .home-about-title {
        width: 100%;
        height: auto;
        margin-bottom: 5%;
    }

    .home-about .about-img-container {
        width: 47%;
        height: 500px;
        position: relative;
    }

    .cursor-1 {
        display: none;
    }

    .easy-container .easy-boxs {
        width: 30%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
    }

    .home-social .social-title {
        width: 47%;
        color: var(--white);
        /* font-family: 'Manrope', sans-serif; */
        font-weight: 700;

    }

    .home-social .social-title p {
        color: var(--gray) !important;
    }

    .social-icons {
        width: 47%;
        display: flex;
        justify-content: space-around;
    }

    /*---------------------------- footer ------------------------------------ */

    footer {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-around;
        padding: 2%;
        border-top: 2px solid var(--light);
        background-color: var(--light-blue);
        /* background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%); */

    }

    footer .footer-boxs p {
        font-size: 10px;
    }

    footer .footer-boxs .footer-address a {
        font-size: 10px;
    }

}

/* form and faq */

.frm-bg {
    background-color: #f4f7fc;
    border-radius: 12px;
}


.gif-txx {
    top: 15px;
    position: relative;
}

/* key */

.card {
  transition: transform 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
}

/* card  */

.img1-map{
    height: 100%;
    object-fit: cover;
  
}

.imgs {
  background: rgba(0, 0, 0, 0.5); /* Optional: dark overlay */
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}



.img{
     background: rgba(0, 0, 0, 0.5);
}

/* how we help */



/* ====== HOW WE HELP GLOW CARD STYLING ====== */
.card {

  --primary: hsl(189, 92%, 58%);

  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 380px;
  margin: auto;

  background-color: hsla(240, 15%, 9%, 1);
   background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
  border-radius: 1rem;

}

.card__border {
  pointer-events: none;
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);

  border-radius: 1rem;
}



@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.card_title__container {
  text-align: center;
}

.card_title {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: bold;
}

.card_paragraph {
  font-size: 0.875rem;
  color: var(--paragraph);
  margin-top: 0.25rem;
}

.line {
  width: 100%;
  height: 0.1rem;
  background-color: var(--line);
  border: none;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__list_item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white);
}

.check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.check_svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--black);
}

.list_text {
  font-size: 0.875rem;
  color: var(--white);
}

.button {
  cursor: pointer;
  padding: 0.75rem 1rem;
  width: 100%;
  margin-top: 1rem;
 background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
  font-size: 0.875rem;
  color: var(--white);
  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 -2px 25px -4px var(--white);
  transition: all 0.3s ease;
}

.imgh{
    top: 40px;
    position: relative;
}
.card_paragraph{
    color: white;
}


/* .......... */


/* service */



  .card .card-img {
    border: none !important;
    box-shadow: none !important;
  }

  .card {
    background-color: transparent !important;
  }

  .imgs h5 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* for readability */
  }






  /* key features */

  .position-absolute {
    position: absolute !important;
  }
  .top-50 {
    top: 50% !important;
  }
  .start-50 {
    left: 50% !important;
  }
  .translate-middle {
    transform: translate(-50%, -50%) !important;
  }


/* student page */




.banner-img {
  height: 650px;
  object-fit: cover;
  width: 100%;
}

/* Optional: Gradient button styling */
.btn-grad {
  background: linear-gradient(to right, #06beb6, #48b1bf);
  border: none;
  padding: 12px 30px;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-grad:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .banner-img {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .banner-img {
    height: 75vh;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}

/* cards */

.text-orange {
  color:#3c74b4;
}

.image-box {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  transform: rotate(-6deg);
  transition: transform 0.5s ease;
}

.image-box:hover {
  transform: rotate(-6deg) scale(1.03);
}

.imgj{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}



.main-image {
  width: 90%;
  object-fit: cover;
  height: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}





/* key */





.cardsss{
    height: 480px;
}

.card-img-top{
  
    width: 80%;
    object-fit: cover;
}


@media (max-width: 660px) {
  .imgj {
    height: 220px;
  }

  .main-image {
    width: 100%;
    height: 80%;
  }
}

@media (max-width: 480px) {
  .imgj {
    height: 180px;
  }
}





.angled-red-box {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 60%;
  height: 50px;
  background-color:#3c74b4;
  transform: rotate(15deg);
  z-index: 1;
}



.main-page{
      background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%);
}


 .diamond {
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .diamond-img {
    width: 60%;
    transform: rotate(-45deg);
  }

  .arrow-line {
    position: absolute;
    top: 65px; /* adjust based on design */
    left: 100%;
    width: 40px;
    height: 2px;
    background-color: white;
  }

  .arrow-line::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -8px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid white;
  }
















.diamond {
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond i {
  transform: rotate(-45deg);
}
.diamond {
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.diamond-img {
  width: 60%;
  transform: rotate(-45deg); /* Rotate image back to look straight */
}

.img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.diamond {
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.diamond-img {
  width: 60%;
  transform: rotate(-45deg); /* keep image upright */
}

.card-text {
  min-height: 60px; /* Adjust as needed */
  top: 15px;
  position: relative;
}

 .card-img-car{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
  }



.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #007bff10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hover-effect:hover .icon-circle {
  background-color: #007bff;
}

.hover-effect:hover .icon-img {
  filter: brightness(0) invert(1);
}

.step-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}




.removebg{
     height: 340px;
     width: 350px;
     object-fit: cover;
}



/* vision mission */

.mission1{
    border-radius: 250px 25px 25px 25px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.mission2{
   border-radius: 25px 25px 200px 25px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}



/* how we help */

/* .backup{
    height: 30%;
    width: 40%;
    object-fit: cover;
} */


.card-gem{
    height: 430px;
}


/* key */

.img-key{
    height: 100%;
    width: 100%;
    object-fit: cover;
   
}


.img-key {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-key::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.img-key img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

/* Text box centering */
.position-absolute.text-white.text-center {
  z-index: 2;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* Optional: For full height alignment */
  text-align: center;
}



/* banner */







.bbanner{
    height: 100%;
}


/*  */







.footer-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #007bff;
  text-decoration: underline;
}

.footer-link {
  color: #fff; /* or #333 if on white background */
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-link {
  color: #fff; /* Use #333 if on white background */
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
}

.footer-link:hover {
  color: #ffc107;
  text-decoration: underline;
}








/* overseas */


  .frm-bg {
    background-color: #033e7d;
  }

  .btn-c1 {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
  }

  .w {
    color: #333;
  }

  .reach-bg{
    background-color:  #007bff;
  }
/* contact */

/* Applies to all input and textarea placeholder text */
input::placeholder,
textarea::placeholder {
  font-family: 'Poppins', sans-serif; /* Change to your desired font */
  font-size: 15px;
  font-style: italic;
  color: #888; /* Optional: Lighter gray */
}



.contact-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
  }

  .contact-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .contact-card input,
  .contact-card textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 14px;
    color: #333;
  }

  .contact-card input::placeholder,
  .contact-card textarea::placeholder {
    color: #aaa;
    font-style: italic;
    font-weight: 400;
  }

  .contact-card button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-card button:hover {
    background-color: #0056b3;
  }



  .contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  min-width: 40px;
  margin-right: 15px;
  color: #007bff;
}

.card-content p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.card-content a {
  color: #007bff;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

input::placeholder,
textarea::placeholder {
  font-style: italic;
  color: #aaa;
}






@media screen and (min-width:901px) and (max-width:991px) {
    .mega-area {
        transform: translate(0, 0) !important;
    }

    .easy-container .easy-boxs {
        width: 30%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
    }

    .navbar .navbar-nav {
        background-color: var(--black);
        padding: 3%;
    }


    /*---------------------------- footer ------------------------------------ */

    footer {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-around;
        padding: 2%;
        border-top: 2px solid var(--light);
        background-color: var(--light-blue);
        /* background-image: linear-gradient(86.3deg, rgba(0, 119, 182, 1) 3.6%, rgba(8, 24, 68, 1) 87.6%); */

    }

    footer .footer-boxs p {
        font-size: 10px;
    }

    footer .footer-boxs .footer-address a {
        font-size: 10px;
    }

}

@media screen and (min-width:992px) and (max-width:1024px) {

    .navbar .logo {
        width: 17% !important;

    }


    .logo-sec {
        width: 100%;
    }

    /* header content  */


    .header-content {
        position: absolute;

    }

    .header-content h3 {
        font-weight: 600;
        font-size: 20px;
    }

    .header-content h1 {
        font-weight: 800;
        font-size: 25px;
    }


    .header-content P {
        font-size: 15px;
    }

    .easy-container .easy-boxs {
        width: 30%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1%;
        position: relative;
        border: 0.5px solid var(--light);
        border-radius: 15px;
    }

}

@media screen and (min-width:1025px) and (max-width:1140px) {}











/* 


@media screen and (max-width:320px) {
    
}

@media screen and (min-width:321px) and (max-width:425px) {
    
}

@media screen and (min-width:426px) and (max-width:600px) {
    
}

@media screen and (min-width:601px) and (max-width:768px) {
    
}

@media screen and (min-width:769px) and (max-width:900px) {
    
}

@media screen and (min-width:901px) and (max-width:992px) {
    
}

@media screen and (min-width:993px) and (max-width:1024px) {
    
}

@media screen and (min-width:1025px) and (max-width:1140px) {
    
}



*/