* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

body {
    width: 100%;
    height: 100%;
    /* background-image:url(assets/images/chadu-11.jpeg); */

}

a {
    text-decoration: none;
}

:root {
    --border-radius: 6px;
    --blue-color: #0bbcd6;
    --pink-color: #FC1CB2;
    --white-color: #fff;
    --transition: 0.3s all ease;
    --transform: scale(1.1);
    --heading: 25px;
    --big-card-fsize: 17px;
    --small-card-fsize: 15px;
    --para-fsize: 14px;
    --background-linear-gradient: linear-gradient(331deg, #0bbcd6, #FC1CB2);
    ;
}

.looplane_main_contain {
    position: absolute;
    top: 70px;
    left: 230px;
    width: calc(100% - 230px);
    height: calc(100vh - 70px);
    /* display: flex; */
    gap: 10px;
    background-color: #c1d7d657;
    overflow: auto;
    padding: 25px;
}

.looplane_main_contain .left_side_main_contain {
    width: 100%;
}


/* <!-- -----------heading---------- --> */

.div_for_main_of_fixed_heading_that_have_in_all_section_create_by_anirban {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 45px;
    padding-bottom: 15px;
}

.div_for_left_side_heading {
    font-size: var(--heading);
    font-weight: bold;
    white-space: nowrap;
    color: var(--blue-color);
}

.div_for_main_line_under_heading_in_middle_section {
    height: 3px;
    flex: 1;
    background: linear-gradient(331deg, #0bbcd6, #FC1CB2);
}

.div_for_right_side_view_more_buttton {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 125px;
    height: 40px;
    justify-content: center;
    border-radius: var(--border-radius);
    border: 2px solid #ffff;
    background: linear-gradient(331deg, #0bbcd6, #FC1CB2);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    white-space: nowrap;
}



@media(max-width:1000px) {
    .looplane_main_contain .left_side_main_contain {
        width: 100%;
    }
}

@media(max-width:700px) {
    .looplane_main_contain {
        left: 0%;
        width: 100%;
        padding: 3% !important;
        overflow-x: hidden;
    }
}





/********************* conatct us & about us ******************************/
.sub-page-banner-somnath-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: var(--border-radius);

}

.sub-page-banner-somnath-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay-somnath-subpage-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.content-subpage-banner-somnath {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.content-subpage-banner-somnath h4 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-somnath {
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-somnath .symbol-subpage-banner-somnath {
    color: #0bbcd6;
    margin: 0 5px;
}

.active-link-somnath-subpage-banner {
    color: #0bbcd6;
}

@media screen and (max-width: 768px) {
    .sub-page-banner-somnath-container {
        height: 300px;
    }

    .content-subpage-banner-somnath h4 {
        font-size: 35px;
    }
}

@media screen and (max-width: 480px) {
    .sub-page-banner-somnath-container {
        height: 250px;
    }

    .content-subpage-banner-somnath h4 {
        font-size: 28px;
    }

    .breadcrumb-somnath {
        font-size: 14px;
    }
}