@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    width: 100%;
    margin-bottom: 8vh;
    transition: 0.5s;
    z-index: 20;
    top: 0;
}

/* header .active{
    position: fixed;
    width: 100%;
    margin-bottom: 8vh;
    transition: 0.5s;
    z-index: 20;
} */
.active {
    background-color: #293b5d;
    padding: 8px;
    border-radius: 6px;
    color: #fff !important;
}

.logo_comany {
    height: 8vh;
}

.logo_comany_2 {
    height: 55vh;
    margin-left:5vw;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: transparent;
    border-bottom-color: transparent;
}

nav.active_color {
    background-color: #fff;
    box-shadow: 2px -2px 13px 7px #a5a5a5;
    /* background-color: #009eb5; */
}

.logo {
    color: #e2e2e2;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 60%;
    z-index: 25;

}

.nav-links li {
    list-style: none;
}

.nav-links a {
    /* color: #fff; */
    color: black;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bolder;
    font-size: 17px;
    font-family: 'Merriweather', serif;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #2e2e2e;
    margin: 5px;
    transition: all 0.3s ease;
}

/* header Media Quary Start  */
@media screen and (max-width:1050px) {
    .nav-links {
        width:80%;
    }
}
@media screen and (max-width:925px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width:100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
    .blog_card .blog_card_img img{
        display: none;
    }
    .blog-post_img{
        display: none;
    }
}

/* header Media Quary END  */
.nav-active {
    transform: translateX(0%);
}
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* NAV BAR CSS CLOSE */













/* HOME PAGE IMG SECTION CSS START */
.frist_img_section .lending_page_img {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;

}

.frist_img_section .img_text_div {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    flex-direction: column;
}

.frist_img_section .img_text_div p {
    width: 80%;
    text-align: center;
    color: #ffff;
    font-weight: bold;
    /* margin-left: 20px; */
}


/* HOME PAGE IMG SECTION CSS END */
















/* HOME PAGE ABOUT SECTION CSS START */

.about_section_big_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80vh;
}

.second_about_section .about_us_hedding p {
    display: inline-block;
    text-align: center;
    border-radius: 17.5px;
    border-bottom-left-radius: 0px;
    box-shadow: 0px 10px 30px 0px rgba(16, 137, 32, 0.17);
    background-image: linear-gradient(90deg, #12a014 0%, #18538d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 8px 25px;
    font-size: 20px;
    font-weight: bold;
}

.second_about_section .about_section_div {
    width: 48%;
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
}

.second_about_section .about_section_div .about_us_teg_line {
    color: #2b6296;
    font-size: larger;
}

.second_about_section .about_us_hedding {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 15vh;
}

.about_us_text p {
    font-size: large;
}



/* ABOUT US Media Quary Start */


@media screen and (max-width:768px) {

    .about_section_big_div {
        display: block;
        height: 120vh;
    }

    .second_about_section .about_section_div {
        width: 100%;
    }

    .second_about_section .about_us_hedding {
        align-items: center;
    }

    .about_us_btns {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ABOUT US Media Quary Start */
/* HOME PAGE ABOUT SECTION CSS END */












/* HOME PAGE SERVICES SECTION CSS START */
.third_services_section {
  padding-bottom: 10vh;

}

.services_us_hedding {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.services_us_hedding p {
    display: inline-block;
    border-radius: 17.5px;
    border-bottom-left-radius: 0px;
    box-shadow: 0px 10px 30px 0px rgba(16, 137, 32, 0.17);
    padding: 1.5px 29px;
    background-image: linear-gradient(90deg, #12a014 0%, #18538d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 8px 25px;
    font-size: 20px;
    font-weight: bold;

}


.lern_more_services_us_btn {
    font-size: larger;
    padding: 10px 20px;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    border: 0;
    box-shadow: 0px 0px 14px -7px #1a8a94;
    background-image: linear-gradient(45deg, #1a8a94 0%, #89aacc 51%, #1a8a94 100%);
    cursor: pointer;
    text-decoration: none;

}

.lern_more_services_us_btn:hover {
    background-position: right center;
    color: #fff;
}

.lern_more_services_us_btn:active {
    transform: scale(1.1);
}

/* SERVICES Media Quary Start  */
@media screen and (max-width:950px) {
    .third_services_section .services_card_container {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .services_card_container .services_card {
        margin: 6vh 0px;
        width: 80%;
    }

    .third_services_section {
        height: 200%;
    }
}

@media screen and (max-width:600px) {
    .third_services_section {
        height: 200%;
    }
}

/* SERVICES Media Quary END  */

/* HOME PAGE SERVICES SECTION CSS END */












/* HOME PAGE BLOG SECTION CSS START */



.blog-post {
    width: 85%;
    max-width: 98rem;
    padding: 3rem 3rem;
    background-color: #dbf4ff21;
    box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
    margin: auto;
    margin-top: 10vh;
}


.blog-post_img {
    min-width: 20rem;
    max-width: 20rem;
    height: 20rem;
    transform: translateX(-5rem);
    position: relative;
    z-index: 1;
}

.blog-post_img img {
    height: 100%;
    width: 90%;
    object-fit: cover;
    border-radius: .8rem;
}

.blog-post_img img::before {
    content: '';
    width: 90%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, 0.5);
    border-radius: .8rem;
}

.blog-post_date span {
    display: block;
    color: #00000080;
    font-size: 1.2rem;
    font-weight: 600;
    margin: .1rem 0;
}

.blog-post_title {
    font-size: 2rem;
    text-transform: uppercase;
    color: #1a8a94;
}

.blog-post_text {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #000000b3;
}




/* SERVICES Media Quary SYART  */

@media screen and (max-width: 1000px) {
    .blog-post {
        padding: 2.5rem;
        flex-direction: column;
    }

    .blog-post_img {
        min-width: 100%;
        max-width: 100%;
        transform: translate(0, -1rem);
    }

    .blogs_container {
        margin-top: auto;
    }

    .blog-post_title {
        font-size: 150%;
    }
}

/* SERVICES Media Quary END  */
/* HOME PAGE BLOG SECTION CSS END */





/* HOME PAGE NEWSLETTER SECTION CSS START */
.fifth_newslettersection {
    min-height: 100vh;
    padding-top: 10vh;
    position: relative;
    z-index: 1;
}

.newsletter_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.newsletter_container .newsletter_card {
    height: 50vh;
    width: 35vw;
    background: rgb(242, 234, 234);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    position: relative;
    transition: transform .3s ease;
    z-index: 0;
}

.newsletter_container .newsletter_card .newsletter_letter form {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    background: #fff;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 20px;
    z-index: -1;
    width: 80%;

}

.newsletter_container .newsletter_card .newsletter_letter form img {
    height: 90px;
    width: 32%;
    margin: 5px 0;
    /* object-fit: cover; */
}

.newsletter_container .newsletter_card .newsletter_letter form h3 {
    font-size: 17px;
    color: #999;
    padding: 10px;
    text-transform: uppercase;
}

.newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox {
    display: flex;
    border-radius: 50px;
    margin: 5px;
    overflow: hidden;
    border: 1px solid #1a8a94;
}

.newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox input[type="email"] {
    height: 40px;
    width: 100%;
    font-size: 17px;
    color: #444;
    padding: 0 10px;
    text-align: center;
    text-transform: none;
    outline: none;
    border: none;
}

.newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox input[type="email"]::placeholder {
    text-transform: capitalize;
}

.newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox input[type="submit"] {
    font-size: 17px;
    color: #fff;
    background: #1a8a94;
    height: 40px;
    width: 170px;
    cursor: pointer;
    border: none;
    outline: none;
}

.newsletter_container .newsletter_card::before,
.newsletter_container .newsletter_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.newsletter_container .newsletter_card::before {
    background: linear-gradient(180deg, rgb(213, 213, 213), #1a8a94);
    clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.newsletter_container .newsletter_card::after {
    background: #6ac0c8;
    clip-path: polygon(0 0, 50% 50%, 100% 0);
    transition: transform .2s ease-out;
    transition-delay: .3s;
    transform-origin: top;
}

.newsletter_container .newsletter_card:hover::after {
    transform: rotateX(180deg);
    transition-delay: .0s;
    z-index: -2;
}

.newsletter_container .newsletter_card:hover .newsletter_letter form {
    top: -175px;
    transition: top .2s linear;
    transition-delay: .3s;
}

.newsletter_container .newsletter_card:hover {
    transform: translateY(70px);
}

/* NEWS LETTER Media Quary SYART  */

@media screen and (max-width: 950px) {


    .newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox {
        height: 30px;
    }

    .newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox input[type="email"] {
        height: 30px;
        font-size: 13px;
    }

    .newsletter_container .newsletter_card .newsletter_letter form .newsletter_inputBox input[type="submit"] {
        height: 30px;
        width: 100px;
        font-size: 13px;

    }

    .newsletter_container .newsletter_card::after,
    .newsletter_container .newsletter_card::before {
        background: transparent;
        z-index: -1;
    }

    .newsletter_container .newsletter_card:hover {
        transform: translateY(0px);
    }

    .newsletter_container .newsletter_card:hover .newsletter_letter form {
        top: 0;
    }

    .newsletter_container .newsletter_card {
        width: 350px;
        background:none;
        box-shadow:none;
    }
}

/* NEWS LETTER Media Quary END  */
/* HOME PAGE NEWSLETTER SECTION CSS END */



/* HOME PAGE FOOTER SECTION CSS START */

footer {
    height: 65vh;
    /* background-color: red; */
    position: static;
    bottom: 0;
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

.footer_container {
    position: relative;
    background-color: rgb(26, 138, 148);
    /* background-color: #009eb5; */
    min-height: 250px;
    padding: 20px 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.footer_container .social_icon,
.footer_container .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;

}

.footer_container .social_icon li,
.footer_container .menu li {
    list-style: none;
}

.footer_container .social_icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.footer_container .social_icon li a:hover {
    transform: translateY(-10px);
}

.footer_container .menu li a {
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

.footer_container .menu li a:hover {
    opacity: 1;
}

.footer_container p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.footer_container .wave {
    position: absolute;
    top: -95px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(imgs/wave.png);
    background-size: 1000px 100px;
}

.footer_container .wave#wave_1 {
    z-index:10;
    opacity: 1;
    bottom: 0;
    animation: animatedwave 4s linear infinite;
}

@keyframes animatedwave {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-position-x: 0px;
    }
}

.footer_container .wave#wave_2 {
    z-index: 19;
    opacity: 0.5;
    bottom: 10px;
    animation: animatedwave_2 4s linear infinite;
}

@keyframes animatedwave_2 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

.footer_container .wave#wave_3 {
    z-index: 19;
    opacity: 0.2;
    bottom: 15px;
    animation: animatedwave 3s linear infinite;
}

@keyframes animatedwave_2 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

.footer_container .wave#wave_4 {
    z-index: 19;
    opacity: 0.7;
    bottom: 10px;
    animation: animatedwave_2 3s linear infinite;
}

@keyframes animatedwave_2 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

/* HOME PAGE FOOTER SECTION CSS END */







































/* ABOUT JSS PAGE CSS START */

.about_jss_image {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_jss_image img {
    width: 99.9%;
    height: 500px;
    position: absolute;
    z-index: 1;
}

.service_jss_image {
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_jss_image .img_services {
    width: 99.9%;
    height: 95vh;
    position: absolute;
    z-index: 1;
}

.img_heding_text {
    z-index: 2;
    text-align: center;
}

.img_heding_text .img_heding {
    font-size: 45px;
    font-weight: 1000;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.img_heding_text .img_text {
    display: inline-flex;
    font-size: 17px;
    font-weight: 600;
}

.img_heding_text .img_text a {
    text-decoration: none;
    color: #1a4e52;
    transition: 0.8s;
    margin-right: 4px;
}

.img_heding_text .img_text a:hover {
    color: rgb(230, 230, 230);
}

.about_jss_big_container {
    width: 90%;
    margin: auto;
    margin-top: 10vh;
}

.about_jss_big_container .about_jss_frist_section {
    display: flex;
    justify-content: start;
}

.about_jss_big_container .about_jss_frist_section .about_jss_frist_section_img {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_jss_big_container .about_jss_frist_section .about_jss_frist_section_img img {
    width: 80%;
    height: 80%;
}

.about_jss_big_container .about_jss_frist_section .about_jss_frist_section_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 50px 0;
}

.way_us h6 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-left: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #015e6f;
}

.way_us h6::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 13px;
    background: #015e6f;
    top: 8.5px;
    left: 0;
    border-radius: 50%;
}

@media screen and (max-width: 900px) {
    .about_jss_big_container .about_jss_frist_section {
        display: flex;
        flex-direction: column;
    }

    .about_jss_big_container .about_jss_frist_section .about_jss_frist_section_text {
        width: 100%;
    }

    .about_jss_big_container .about_jss_frist_section .about_jss_frist_section_img {
        display: none;
    }
}





.main {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.profile-card {
    width: 20%;
    height: 40vh;
    background: #fff;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: 0 25px;
}

.profile-card:hover {
    border-radius: 10px;
    width: 20%;
    height: 270px;
}

.profile-card .img {
    position: relative;
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card:hover .img {
    transform: translateY(-100px);
    height: 100%;
}

.img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
}

.profile-card:hover img {
    border-radius: 10px;
    height: 60%;
    top: 0;

}

.caption {
    text-align: center;
    transform: translateY(-80%);
    opacity: 0;
    transition: .6s;
    width: 100%;
}

.profile-card:hover .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 21px;
}

.caption p {
    font-size: 16px;
    color: #0c52a1;
    margin: 2px 0 9px 0;
}

.caption .social-links a {
    color: #333;
    margin-right: 8px;
    font-size: 21px;
    transition: .6s;
}

.social-links a:hover {
    color: #0c52a1;
}

@media screen and (max-width: 800px) {
    .main {
        display: flex;
        align-items: center;
        flex-direction: column;
        height: auto;
    }

    .profile-card {
        border-radius: 10px;
        width: 300px;
        height: 250px;
        margin-top: 60px;
    }

    .profile-card:hover {
        border-radius: 10px;
        width: 300px;
        height: 250px;
        margin-top: 60px;
    }

    .profile-card .img {
        transform: translateY(-100px);
        height: 100%;
    }

    .profile-card img {
        border-radius: 50%;
        height: 75%;
        width:60%;
        top: 0;

    }

    .profile-card .caption {
        opacity: 1;
    }
}

/* ABOUT JSS PAGE CSS END */
/* SERVISE PAGE CSS START */

.service_img_and_text_container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.service_img_and_text_container .service_img_div {
    width: 34%;
}

.service_img_and_text_container .service_text_div {
    width: 63%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service_text_div span {
    font-size: 23px;
    font-weight: 700;
}

.service_img_div img {
    width: 95%;
    height: 75vh;
    border-radius: 30px;
}


.service_page_more_text {
    background-color: #dbf4ff86;
    width: 95%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    padding: 4vw;
    border-radius: 15px;
    flex-direction: column;
    gap: 17px;
}

.service_page_more_text .service_page_hedding {
    font-size: larger;
    font-weight: 700;
}

@media screen and (max-width:900px) {
    .service_img_div {
        display: none;
    }

    .service_img_and_text_container .service_text_div {
        width: auto;
    }
}

/* SERVISE PAGE CSS END */

/* BLOG JSS PAGE CSS START */

.blog_cards_container {
    width: 90%;
    margin: auto;
    justify-content: space-around;
    margin-top: 10vh;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 2%;
    grid-auto-flow: row;
}

.blog_cards_container .blog_card {
    width: 90%;
    padding: 5px;
    border-radius: 4px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    margin-top: 30px;

}

.blog_card:hover {
    box-shadow: rgba(5, 5, 7, 0.1) 0px 0px 19px;
}

.blog_card .blog_card_img img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.blog_card_text {
    width: 95%;
    margin: auto;
    margin-top: 3%;
}

.blog_card_date span {
    background-color: rgb(243, 243, 243);
    border-radius: 3px;
    padding: 3px;
}

.blog_card_date hr {
    margin: 3% 0;
}

.blog_card_hedding p {
    font-size: 25px;
}

.blog_card_inner_text {
    margin: 10px 0;
    text-align: justify;
}


.blog_card_read_more_btn {
    background-color: initial;
    border-style: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    outline: none;
    padding: 8px 14px;
    pointer-events: auto;
    position: relative;
    text-decoration: none;
}

.blog_card_read_more_btn:before,
.blog_card_read_more_btn:after {
    border-radius: 20px;
}

.blog_card_read_more_btn:before {
    background-color: rgba(9, 113, 144, 0.603);
    content: "";
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.blog_card_read_more_btn:after {
    background-image: linear-gradient(92.83deg, #36a4a1 0, #329685 100%);
    bottom: 4px;
    content: "";
    left: 4px;
    overflow: hidden;
    position: absolute;
    right: 4px;
    top: 4px;
    transition: all 100ms ease-out;
    z-index: -1;
}

.blog_card_read_more_btn:not(:disabled):after {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition-timing-function: ease-in;
}

.blog_card_read_more_btn:active:not(:disabled):after {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)),
        linear-gradient(92.83deg, #36a4a1 0, #329685 100%);
    bottom: 4px;
    left: 4px;
    right: 4px;
    top: 4px;
}

/* BLOG JSS PAGE MEDIA QUARY START */

@media screen and (max-width:1200px) {
    .blog_cards_container {
        width: 80%;
        grid-template-columns: repeat(2, 2fr);
    }
}

@media screen and (max-width:850px) {
    .blog_cards_container {
        width: 75%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .blog_cards_container .blog_card {
        width: 100%;
        padding: 5px;
        border-radius: 4px;
        box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
        margin-top: 30px;
    }
}

/* BLOG JSS PAGE MEDIA QUARY END */
/* BLOG JSS PAGE CSS END */
/* FIRST BLOG JSS PAGE CSS START */

.first_blog_main_hedding h1 {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    min-height: 8vh;
    z-index: 20;
    width: 100%;
    box-shadow: rgb(0, 0, 0) 2px 2px 15px;
}

.frist_blog_back_btn {
    position: fixed;
    top: 1.5%;
    left: 1%;
    z-index: 21;
    padding: 4px 10px;
    font-size: large;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 3px;
    text-decoration: none;

}

.first_blog_text_big_container {
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

.first_blog_text_big_container .first_blog_texts {
    margin-top: 30px;
}

.first_blog_text_big_container .first_blog_img img {
    border-radius: 10px;
    width: 100%;
    height: 500px;
    margin-top: 20px;
}

/* FIRST BLOG JSS PAGE CSS END */




/* CONTECT JSS PAGE CSS START */

.contect_us_data_container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-top: 50px;
}

.contect_us_data_container .data_div_continer {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: auto;
}

.data_div_continer .data_div {
    background-color: rgba(243, 243, 243, 0.867);
    padding: 10px;
    border-radius: 5px;
    width: 280px;
    box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 10%);
}

.data_div .data_hedding {
    text-align: center;
    font-size: 25px;
}

.map_container .map {
    width: 75%;
    margin: auto;

}

.map_container .map iframe {
    width: 100%;
    border-radius: 7px;
    height: 400px;
}

.contect_form_container {
    display: flex;
    align-items: center;
    width: 75%;
    margin: auto;
    flex-direction: row;

}

.contect_form_container .form {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-left: 5%;
    box-shadow: 0px 7px 29px 0px #888888;
    padding: 15px;
    border-radius: 18px;

}

.form_img img {
    width: 100%;
    height: 80vh;
    border-radius: 10px;
}

.div_for_bgc_color {
    position: absolute;
    width: 67.5%;
    background-color: #d6d5d0;
    height: 81%;
    z-index: -2;
    margin-bottom: 5px;
    border-radius: 5px;
}

.form_img {
    width: 50%;
}












.from_hedding {
    font-size: 14px;
    font-weight: 700;
    color: #a5b7d2;
    position: relative;
    display: inline-block;
    padding-left: 21px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    margin-left: 10px;

}

.from_hedding:after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: #a5b7d2;
    top: 5.7px;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.from_hedding_2 {
    font-size: 30px;
    margin-left: 10px;
}

.from_filds {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.from_filds input {
    color: #7e7e7e;
    border: 1px solid #e6e6e6;
    border-radius: 23px;
    padding: 9px 20px;
    box-sizing: border-box;
    width: 90%;
    outline: none;
}

.from_filds textarea {
    color: #7e7e7e;
    border: 1px solid #e6e6e6;
    border-radius: 23px;
    padding: 9px 20px;
    box-sizing: border-box;
    width: 90%;
    outline: none;
}


.form_btn_container input {
    font-size: larger;
    padding: 10px 20px;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    border: 0;
    box-shadow: 0px 0px 14px -7px #1a8a94;
    background-image: linear-gradient(45deg, #1a8a94 0%, #89aacc 51%, #1a8a94 100%);
    cursor: pointer;
    width: 120px;
    margin-left: 5px;
}

.form_btn_container input:hover {
    background-position: right center;
    color: #fff;
}

.form_btn_container input:active {
    transform: scale(0.9);
}


@media screen and (max-width:850px) {
    .contect_us_data_container .data_div_continer {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .data_div_continer .data_div {
        width: 350px;
    }
}

@media screen and (max-width:750px) {
    .contect_form_container {
        width:100%;
        flex-direction: column;
        box-shadow: 0px 7px 29px 0px #888888;
        border-radius: 18px;
    }

    .contect_form_container .form {
        width: 90%;
        box-shadow: none;
    }

    .form_img {
        width: 70%;

    }

    .div_for_bgc_color {
        display: none;
    }

}

@media screen and (max-width:600px) {
    .contect_form_container .form {
        width: 350px;
    }

}

/* CONTECT JSS PAGE CSS END */
/* NETWORK JSS PAGE CSS START */
.network_big_container {
    margin-top: 15vh;
}

.network_big_container .network {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
}

.network_big_container .network .network_img {
    width: 100%;
    overflow: hidden;
    display: block;
    height: 50vh;
}

.network_img img {
    height: 50vh;
    width: 100%;
    background-size: cover;
    transition: 0.3s linear;
}

.network_img:hover img {
    
    transform: scale(1.4);
}

@media screen and (max-width:800px) {
    .network_big_container .network {
    grid-template-columns: auto auto;
    }
}
@media screen and (max-width:400px) {
    .network_big_container .network {
    grid-template-columns: auto;

    }
}


/* NETWORK JSS PAGE CSS END */

.scrolltop{
    position: fixed;
    bottom: 100vh;
    right: 40px;
    width:50px;
    height:40px;
    background:  #293b5d;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    cursor: pointer;
    z-index:20;
    transition: 1.5s;
}
.scrolltop.active{
    bottom: 40px;
    opacity: 1;
}






.fer_cer_big_container{
    margin-top: 15vh;
    display: flex;
    flex-direction: column;
    gap: 50px;
    
}
.fer_cer_table_container{
    width: 90%;
    margin: auto;
    border: 1px solid #000; 
    padding: 50px;
    border-bottom-left-radius:20px;
    border-top-right-radius:20px;
    box-shadow: 2px 1px 20px 0px #000;
    overflow-x: auto;
}

.fer_cer_table th{
    border: 1px solid #000; 
}

.fer_cer_table td{
    border: 1px solid #000; 
    text-align: center;
}
.fer_cer_table_hedding {
    display: flex;
    justify-content: center;
    margin-bottom: -68px;
}
.fer_cer_table_hedding span{
    width: 70%;
    text-align: center;
    padding: 10px;
    background-color: #293b5d;
    color: #fff;
    border-bottom-left-radius:20px;
    border-top-right-radius:20px;
    z-index: 2;
}

@media screen and (max-width:800px) {
    .fer_cer_table_container{
        padding: 15px 2px;
    }
}