* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif', serif;
}

body {
    overflow-y: auto;
}
:root {
    --fcolor: #010D27;
    --white: #fff;
    --white2:#F0F1F4;
    --black:#000;
    --f2color: #0946AD;
    --main_color: #04336B;
    --second_main_color: #FE6402;
    --color-2: #000EFF;
    --color-3: #D4A915;
    --text-color: #373434d0;
    --light_blue: #E7F4FD;
    --fnunito: 'Nunito Sans', sans-serif !important;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a,
a:hover {
    text-decoration: none;
}
/* ********* CURSOR CSS START ******** */
.custom-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.5s ease;
    mix-blend-mode: difference;
    z-index: 99999;
}
/* ********* CURSOR CSS END ******** */
/* ********* COMMON CSS START ******** */
.h-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.v-center{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.overflow{
    width: 200px;
    height: 60px;
    overflow: hidden;
}
.center{
    display: grid;
    place-items: center;
    height: 100%;
}
/* width */
.scrollbar::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
    background: var(--white);
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 30px;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--black);
}
/* ********* COMMON CSS END ******** */
/* ********* TOPBAR CSS START ******** */
.top {
    background-color: var(--fcolor);
}

.top .c_info ul li a {
    font-size: 0.9rem;
    color: var(--white);
}

.top .social_link ul {
    gap: 25px;
}

.top .social_link ul li {
    transition: all 0.3s linear;
}

.top .social_link ul li a {
    font-size: 0.9rem;
    color: var(--white);
}
.top .social_link ul li a span i{
    font-weight: 600;
}

.top .social_link ul li:hover .fa-x-twitter {
    color: #1DA1F2 !important;
}

.top .social_link ul li:hover .fa-facebook-f {
    color: #4852BA !important;
}

.top .social_link ul li:hover .fa-linkedin-in {
    color: #0077B5 !important;
}

.top .social_link ul li:hover .fa-instagram {
    color: #CF3E5F !important;
}

.top .social_link ul li:hover .fa-pinterest-p {
    color: #E60023 !important;
}
/* ********* TOPBAR CSS END ******** */
/* ********* header1 CSS START ******** */
.header1{
    background-color: var(--white);
    /* overflow: hidden; */
}
.header1 .navbar-brand img{
    position: relative;
    top: -10px;
}
.header1 .inline{
    border-radius: 0;
    background-color: var(--fcolor);
    color: var(--white);
}
.header1 .sidemenutoggle{
    border: 1px solid var(--fcolor);
    border-radius: 0;
}
.header1 ul li a, .offcanvas-body ul li a{
    font-family: var(--fnunito);
    font-weight: 800;
    color: var(--black)!important;
    cursor: pointer!important;
    transition: all 0.3s linear;
}
.header1 ul li a:hover,.offcanvas-body ul li a:hover{
    color:var(--f2color)!important;
}
/* ********* header1 CSS END ******** */
/* ********* SEARCHBAR CSS START ******** */
.icon-search{
    position: absolute;
    top: 30%;
    right: 5%;
    font-size: 1.1rem;
    z-index: 99;
}
.rounded-search input{
    border-radius: 30px!important;
    font-family: var(--fnunito);
    font-weight: bold;
}
/* ********* SEARCHBAR CSS END ******** */
/* ********* CAROUSEL CSS START ******** */
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-wrapper .carouselImage {
    font-size: 18px;
    background: #fff;
    width: 100%;
}
.swiper-slide.carouselImage img{
    display: block;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
}
.coverAni .coverImage img{
    height: auto;
    object-fit: contain;
}
.coverText h1{
    font-family: var(--fnunito)!important;
    font-weight: bold;
    line-height: 35px;
}
.coverText h1:nth-child(1){
    color:var(--fcolor);
    font-weight: 900;
}
.coverText h1:nth-child(2){
    font-weight: 500;
    font-size: 1.8rem;
}
.coverText a{
    background-color: var(--fcolor);
    color: var(--white)!important;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s linear;
}
.coverText a:hover{
    background-color: var(--f2color);
}
.coverAni{
    position: relative;
}
.coverAni .object img.obj1{
    position: absolute;
    top: -20px;
    left: 0;
}
.coverAni .object img.obj2{
    position: absolute;
    bottom: 0px;
    right: 0;
}
.carousel .sliderParent .coverText{
    position: absolute;
    top: 0;
    left: 100px;
}
.carousel .sliderParent{
    position: relative;
}
/* ********* CAROUSEL CSS END ******** */
/* ********* Column2 CSS START ******** */
.col2Text{
    height: 356px;
    overflow-y: auto;
}
.column2 .col2Text h1{
    font-weight: 800;
}
.column2 .col2Text p{
    font-family: var(--fnunito);
    text-align: justify;
    letter-spacing: 1px;
}
/* ********* Column2 CSS END ******** */
/* ********* SERVICE CSS END ******** */
.services{
    background-color: var(--white2);
}
.heading h1{
    font-weight: 800;    
}
.heading h1:nth-child(1) span:nth-child(1){
    font-family: var(--fnunito);
    color: transparent;
    -webkit-text-stroke: 1px navy!important;
    text-stroke: 1px navy!important;
}
.heading h1:nth-child(1) span:nth-child(2){
    font-family: var(--fnunito);
    color: transparent;
    -webkit-text-stroke: 1px navy!important;
    text-stroke: 1px navy!important;
}
.heading h1 span:nth-child(1){
    font-family: var(--fnunito);
}
.heading h1 span:nth-child(2){
    font-family: var(--fnunito);
}

.services .card_body{
    background: var(--white);
    transition: all 0.3s linear;
    border-bottom: 5px solid var(--f2color);
    border-top: 5px solid var(--white2);
    border-left: 5px solid var(--white2);
    border-right: 5px solid var(--white2);
}
/* .services .swiper-slide{
    width: 350px!important;
} */
.services .card_body:hover{
    background: var(--white2)!important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border: 5px solid var(--white);
}
.services .icon i{
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    align-content: center;
    background-color: var(--f2color);
    color: var(--white);
    font-size: 2rem;
}
.services .card_text{
    height: 300px;
    overflow-y: auto;
}
.services_card .card_text h3{
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--f2color);
}
.services_card .card_text h5{
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}
.services_card .card_text p{
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    font-family: var(--fnunito);
}
/* ********* SERVICE CSS END ******** */
/* ********* BANNER CSS END ******** */
.banner{
    /* background-image: url("../image/banner.jpg"); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
.banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.banner_content{
    width: 75%;
    color: var(--white);
    position: relative;
    z-index: 99;
}
.banner_content h1{
    font-weight: 800;
}
.banner_content h3{
    font-size: 1.3rem;
    font-weight: 700;
}
.banner_content p{
    font-family: var(--fnunito);
}
/* ********* BANNER CSS END ******** */
/* ********* MEMBERS CSS START ******** */
.members_card{
    width: 300px;
    height: 550px;
    position: relative;
    overflow: hidden;
}
.members_card .screen_padding{
    padding: 40px 25px 0 25px;
}
.screen-1 .heading_top{
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
}
.screen-1 .heading_top h1{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    padding: 0 20px;
    font-size: 1.3rem;
    font-family: var(--fnunito);
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0 10px  0;
}
.screen-1 .heading_top h1 span{
    font-size: 1.1rem;
    font-family: var(--fnunito);
    letter-spacing: 1px;
}
.screen-1 .screen-1-button{
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 80%;
    z-index: 99;
    transform: translate(-50%,-50%);
    background-color: var(--fcolor);
    border-radius: 50%;
}
.screen-1 .screen-1-button i{
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
}
.screen-1 .loading{
    position: absolute;
    bottom: 2%;
    left: 10%;
    color: var(--white);
    z-index: 101;
}
.members .next_screen{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 100;
    color: var(--white);
    border-radius: 10px;
    padding: 40px 25px;
    /* display: none; */
}
.next_screen i.reverse{
    font-size: 1.2rem;
    font-weight: 900;
}
.next_screen h1{
    font-size: 1.3rem;
    font-weight: 800;
}
.next_screen h1 span{
    font-size: 1.1rem;
}
.next_screen .content{
    height: 300px;
    overflow-y: auto;
    line-height: 1.2;
    /* border: 1px solid red; */
}
.next_screen p{
    font-family: var(--fnunito);
}
.next_screen ul,.footer .logo_and_social_link ul{
    gap: 20px;
}
.next_screen ul li, .footer .logo_and_social_link ul li{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    display: grid;
    place-content: center;
    outline: 2px solid var(--white);
    outline-offset: 4px;
    transform: all 0.3s linear;
}
.next_screen ul li:hover .fa-x-twitter {
    color: #1DA1F2 !important;
}

.next_screen ul li:hover .fa-facebook-f {
    color: #4852BA !important;
}

.next_screen ul li:hover .fa-linkedin-in {
    color: #0077B5 !important;
}

.next_screen ul li:hover .fa-instagram {
    color: #CF3E5F !important;
}

.next_screen ul li:hover .fa-pinterest-p {
    color: #E60023 !important;
}
.next_screen ul li:hover .fa-youtube {
    color: #E60023 !important;
}
.next_screen ul li a{
    color: var(--black);
    font-size: 1.1rem;
}
/* ********* MEMBERS CSS END ******** */
/* ********* COUNTER CSS START ******** */
.counter{
    background: rgb(9,70,173);
    background: radial-gradient(circle, rgba(9,70,173,1) 0%, rgba(1,13,39,1) 44%);
}
.counter .counterInner{
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}
.counter .counterInner h1{
    font-weight: 800;
}
.counter .counterInner h1 sup{
    color: var(--f2color);
}
.counter .counterInner h4{
    font-family: var(--fnunito);
    color: var(--f2color);
    font-weight: 700;
}
/* ********* COUNTER CSS END ******** */
/* ********* TESTIMONIAL CSS START ******** */
.testimonial .testi_card{
    /* width: 300px; */
    /* height: 300px; */
    box-shadow: -31px -31px 43px rgba(255,255,255,0.64) inset,
                26px 26px 48px rgba(13, 39, 80, 0.16) inset;
    /* border: 1px solid black; */
}
.testimonial .testi_card .testiImg{
    content: "";
    width: 150px;
    height: 150px;
    border-radius: 50%;

    box-shadow: 28px 28px 50px rgba(13, 39, 80, 0.16),
                -23px -23px 45px #ffffff;
}
.testimonial .testi_card .testiImg img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.testimonial .testi_text h4{
    font-weight: 800;
}
.testimonial .testi_text p{
    font-size: 0.9rem;
}
.testimonial .swiper-slide{
    display: grid;
    place-items: center;
}
/* ********* TESTIMONIAL CSS END ******** */
/* ********* FOOTER CSS START ******** */
.footer{
    background-color: var(--fcolor);
}
.footer .usefulLink h4{
    font-weight: 900;
    color: var(--white);
    font-family: var(--fnunito);
}
.footer .usefulLink ul li{
    padding-bottom: 10px;
}
.footer .usefulLink ul li a{
    color: var(--white);
}
svg{
    position: relative;
    top: 15px;
    z-index: -1;
}
svg path.footerpath{
    fill: var(--fcolor);
}
.bottom_footer{
    background: var(--black);
    color: var(--white);
}
.bottom_footer p{
    font-size: 13px;
}
/* ********* FOOTER CSS END ******** */

.page_cover {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: rgb(0, 87, 190);
    background: radial-gradient(circle, rgba(0, 87, 190, 1) 0%, rgba(4, 51, 107, 1) 100%);
}

/* ----------------- Common Pages Layout Start------ */
.page_cover .circle1 {
    position: absolute;
    bottom: -10%;
    left: 57%;
    transform: translateY(50%);
    width: 250px;
    height: 250px;
    transform: rotate(0deg);
    transform-origin: center;
    border-radius: 50%;
    animation: circle1 10s linear 1s infinite;
}

.page_cover .circle2 {
    position: absolute;
    bottom: 150px;
    right: 700px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--second_main_color);
    animation: circle2 3s linear 1s infinite alternate;

    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.8),
        5px 20px 20px rgba(0, 0, 0, 0.5) inset;
}

.page_cover .circle3 {
    position: absolute;
    bottom: 10%;
    left: 160px;
    transform: translateY(20%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--second_main_color);
    animation: circle3 3s linear 1s infinite alternate;
    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.5),
        5px 20px 20px rgba(0, 0, 0, 0.7) inset;
}

.page_cover .circle33 {
    position: absolute;
    top: 10%;
    right: 100px;
    transform: translateY(20%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--second_main_color);
    animation: circle33 2s linear 1s infinite alternate;
    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.5),
        5px 20px 20px rgba(0, 0, 0, 0.8) inset;
}

@keyframes circle1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes circle2 {
    from {
        bottom: 150px;
    }

    to {
        bottom: 300px;
    }
}

@keyframes circle3 {
    from {
        bottom: 10%;
    }

    to {
        bottom: 20%;
    }
}

@keyframes circle33 {
    from {
        top: 10%;
    }

    to {
        top: 0%;
    }
}

.page_cover .page_text {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.page_cover .page_text h1,
.page_cover2 h1 {
    font-size: 4rem;
    text-transform: uppercase;
    /* letter-spacing: 2px; */
    /* word-spacing: 10px; */
    position: relative;
    z-index: 2;
    color: var(--white);
    font-family: var(--fnunito);
    font-weight: bold;
}

.page_cover .doted {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 150px;
    height: 100px;
    z-index: 1;
}

.page_cover .doted img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.page_cover .page_image img {
    width: 300px;
    position: relative;
}
/* ----------------- Common Pages Layout End------ */
/* **************** page_cover 2 Start ********** */
.page_cover2 {
    position: relative;
    width: 100%;
    height: 250px!important;
    background-color: var(--black);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page_cover2::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.722);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
/* **************** page_cover 2 End ********** */
/* ----------------- article start------ */
.article .article_image img {
    width: 100%;
    height: auto;
}
.article1 p {
    line-height: 30px;
}
.article2 img {
    width: 90% !important;
    height: 350px !important;
    object-fit: cover;
}
.article2 ol li {
    line-height: 30px;
}
.article1  .article_content h3,.article2 .article_content h4{
    font-weight: 700;
    font-size: 2rem;
    /* font-family: var(--fnunito); */
    
}
/*----------------- about card start------ */
.about_container {
    background-color: var(--light-white);
}

.about_container .about_card {
    /* background-color: var(--second_main_color); */
    background-color: var(--fcolor);
    width: 100%;
    height: 450px;
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.3),
        5px 20px 20px rgba(0, 0, 0, 0.2) inset,
        -5px -20px 20px rgba(0, 0, 0, 0.2) inset;
    transition: all 0.2s linear;
}

.about_container .about_card:hover {
    /* background-color: var(--main_color); */
    background-color: var(--f2color);
    transform: scale(1.04);
    border-radius: 10px;
}

.about_container .about_card.active {
    /* background-color: var(--main_color); */
    background-color: var(--f2color);
    /* transform: scale(1.1); */
    border-radius: 10px;
}

.about_container .about_content .para_container {
    overflow: auto;
    /* border: 1px solid black; */
}
.about_container .about_content  .about_image img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    /* outline: 3px solid var(--white);
    outline-offset: 5px; */
}

.about_container .about_content .para_container {
    display: grid;
    place-items: center;
}

.about_container .about_content .para_container p {
    width: 100%;
    height: 200px;
    font-size: 90%;
    line-height: 25px;
}
/*----------------- about card End------ */
/* **************** page_cover 2 Start ********** */
.page_cover2 {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: var(--black);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page_cover2::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.722);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
/* **************** page_cover 2 End ********** */
/* **************** MEMBER PAGES START ********** */
.member_pages .member_content{
    background-color: white;
    text-align: center;
}
.member_pages .member_content .memberImage img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s linear;
    outline: 2px solid var(--white);
}
.member_pages .member_content:hover .memberImage img{
    outline: 2px solid var(--black);
    outline-offset: 5px;
}
.member_pages .member_content .member_content_child a{
    color: var(--black);
}
.member_pages .member_content .member_content_child h3{
    font-size: 1.2rem;
    font-weight: 900;
    font-family: var(--fnunito);
}
.member_pages .member_content .member_content_child p{
    font-size: 0.9rem;
}
.member_pages .social_link ul li{
    width: 30px;
    height: 30px;
    background: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.member_pages .social_link ul li a{
    color: var(--black);
}
/* **************** MEMBER PAGES End ********** */
/* **************** FORM START ********** */
.form .heading h1{
    font-size: 1.8rem;
    font-family: var(--fnunito);
}
.form .contact_details h3{
    font-weight: 900;
    font-family: var(--fnunito);
}
.form .contact_details h3 span{
    color: var(--f2color);
    font-size: 2.5rem;
}
.form .contact_details ul li{
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--fnunito);
}
.form .contact_details .details li span{
    color: var(--f2color);
}
/* **************** FORM End ********** */
/* **************** BLOG START   ********** */
.blog_and_latest .blog .blog_content a{
    color: var(--f2color);
}
.blog_and_latest .blog .blog_content a h5{
    font-family: var(--fnunito);
}
.blog_and_latest .blog .blog_content{
    height: 150px;
    overflow-y: auto;
}
.blog_and_latest .blog .blog_content p{
    font-size: 0.9rem;
    
}
.blog_and_latest .content11 .blog_img img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog_and_latest .blogcard{
    width: 100%;
    height: 390px;
    background-color: var(--white);
}
/* **************** BLOG End ********** */
/* **************** ARTICLE START ********** */
.blog_image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
/* **************** ARTICLE End ********** */
/* **************** ARTICLE START ********** */
.dypage h2, .dypage h1, .dypage h3, .dypage h4, .dypage h5{
    /* font-family: var(--fnunito); */
    font-weight: 700;
}
.dypage p{
    /* font-family: var(--fnunito); */
    font-size: 1rem;
}
.image_content_parent{
    background-color: #F2F5FE;
}
.dypage .unorder_list ul{
    list-style: unset;
    padding-left:32px;
}
.order_list h4{
    font-weight: 800;
}
.order_list ol li{
    color: gray;
}
.image_content_parent2 .img_div img{
    width: 300px!important;
    height: 300px;
}
.image_content_parent2 .row{
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.column3 .content1{
    color: white;
}
.column3 i{
    color: #7143ff;
}
.column3 ul li{
    columns: gray;
    font-weight: 300;
}
.dypage img{
    width: 100%;
}
.dypage .card_hover{
    transition: all 0.3s linear;
}
.dypage .card_hover:hover{
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.dypage .count_card h1{
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    /* margin: 10px auto; */
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--fnunito);
}
.dypage .overflow2{
    height: 134px;
    overflow-y: auto;
}
.dypage .tab_heading{
    border-left: 5px solid var(--fcolor);
}
.pages_button a{
    background-color: var(--fcolor);
    color: var(--light_blue);
    padding: 10px 30px;
    border-radius: 20px;
    transition: all 0.2s linear;
}
.pages_button a:hover{
    background-color: var(--f2color);
}


.box-parent .box h5{
    font-weight: 900;
    color:#04336B;
}
.box-parent h6{
    font-size: 1.1rem;
    font-weight: 800;
    color: gray;
}
.box_table tr td{
    font-size: 0.9rem;
}

.why_choose .content1 span{
    color:#000EFF;
    font-weight: 700;
}
.bgImage{
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}
.bgImage::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}
.post_z_index_up{
    position: relative;
    z-index: 10;
}
.research_inner_card{
    height: 400px;
    overflow: hidden;
}
.template1 .about_oly p{
    color: black;
    font-size: 1.1rem;
    line-height: 2.5;
}
.template1 .about_oly p span{
    font-weight: 900;
}
.template3 .img_container img{

}
.template4 .cover img{
    height: 650px;
}
.template4 .global_image_grid .img_container.img1 img{
    width: 500px;
}
.template4 .global_image_grid .img_container.img2 img{
    width: 650px;
}
.template4 .future_goals h2{
    color: var(--f2color);
}
.template4 .future_goals .content p{
    font-size: 15px;
}
.template4 .future_goals .content h6{
    font-weight: 900;
}
.future_goals_child{
    width: 520px;
}
.f-700{
    font-weight: 700; color:#0d6efd;
}
.join .content1 li{
    color: black;
    font-weight: 700;
}
.join_child{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.join_child::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}
/* **************** ARTICLE END ********** */
.accordion button{
    background-color: #ECECEC;
}
.accordion-item{
    border: 1px solid black;
}




@media screen and (max-width:1200px) {
  /* ********* CAROUSEL CSS START ******** */
    .coverText h1:nth-child(1){
        font-size: 2rem;
    }
    .coverText h1:nth-child(2){
        font-size: 1.5rem;
    }
    .swiper-slide.carouselImage img{
        height: 500px;
    }
}
/* tablet */
@media screen and (max-width:992px) {
    /* ********* TOPBAR CSS START ******** */
    .top ul{
        column-gap: 10px;
    }
    .top .c_info ul li a {
        font-size: 0.7rem;
    }
    .top .social_link ul li a {
        font-size: 0.7rem;
    }
    .headingoverflow{
        height: auto;
    }
    .banner_content{
        width: 100%;
    }

    .template1 .img_container img{
        height: 300px;
    }
    .template4 .global_image_grid .img_container.img1 img{
        width: 100%;
    }
    .template4 .global_image_grid .img_container.img2 img{
        width: 100%;
    }

    /* *********** carousel ********* */
    .swiper-slide.carouselImage img{
        height: 400px;
    }
    .page_cover2 {
        height: 120px!important;
    }
    .page_cover .page_text h1 {
        font-size: 2rem;
    }
    .carousel .sliderParent .coverText{
        left: 40px;
    }
    .coverText h1{
        line-height: 35px;
    }
    .coverText h1:nth-child(1){
        font-size: 1.8rem;
    }
    .coverText h1:nth-child(2){
        font-size: 1.3rem;
    }
    .coverText a{
        padding: 10px 16px;
        border-radius: 50px;
        font-size: 1rem;
    }
}
@media screen and (max-width:768px){
    .card_body{
        width: 450px;
        margin: auto;
    }

    /* ************* carousel ******* */
    .swiper-slide.carouselImage img{
        height: 300px;
    }
    .coverText h1{
        line-height: 20px;
    }
    .coverText h1:nth-child(1){
        font-size: 1.3rem;
    }
    .coverText h1:nth-child(2){
        font-size: 1rem;
    }
    .coverText a{
        padding: 8px 12px;
        border-radius: 50px;
        font-size: 0.7rem;
    }

    .template1 .img_container img{
        height: auto!important;
    }
    .template3 .img_container img{
        height: auto!important;
    }
    .template4 .img_container img{
        height: auto!important;
    }
}
@media screen and (max-width:576px){
    .header1 .navbar-brand img{
        width:150px;
    }
    .overflow{
        width: 150px;
    }
    .page_cover .page_text h1 {
        font-size: 1.5rem;
    }
    .page_cover2 .page_text h1{
        font-size: 1.5rem!important;
    }

    /* ************* carousel ******* */
    .swiper-slide.carouselImage img{
        height: 200px;
    }
    .coverText h1{
        line-height: 10px;
    }
    .coverText h1:nth-child(1){
        font-size: 0.9rem;
    }
    .coverText h1:nth-child(2){
        font-size: 0.7rem;
    }
    .coverText a{
        padding: 6px 8px;
        border-radius: 50px;
        font-size: 0.6rem;
    }
    .dypage .unorder_list ul, .dypage .order_list ol{
        padding-left: 15px;
    }
}
@media screen and (max-width:430px){
    .card_body{
        width: 100%!important;
        margin: auto;
    }
    .members_card{
        width: 100%;
    }
    .page_cover .page_text h1 {
        font-size: 1.2rem;
    }
    .page_cover2  .page_text h1{
        font-size: 1.2rem!important;
    }

    /* ************* carousel ******* */
    .swiper-slide.carouselImage img{
        height: 150px;
    }
    .coverText h1{
        line-height: 5px;
    }
    .coverText h1:nth-child(1){
        font-size: 0.7rem;
    }
    .coverText h1:nth-child(2){
        font-size: 0.4rem;
        margin: 0;
    }
    .coverText a{
        padding: 5px 6px;
        border-radius: 50px;
        font-size: 0.4rem;
    }
    .bottom_footer p{
        font-size: 12px;
    }
}
