:root{
    --bg_color_1: #ffffff;;

}
* {
    /* user-select: none; */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    background-color: rgba(227, 237, 253, 0.041);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    display: block;
    margin: 0;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-family: Poppins;
}

.navbar{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
    background-color: var(--bg_color_1);
    top: 0;
    width: 100%;
    height: max-content;
    border-bottom: 1px solid #00000023;
    z-index: 1;
    cursor: grab;
}
.nav_header{
    text-align: left;
    margin: .7rem 2rem;
    margin-left: 5vw;
    font-size: 2.1rem; 
    font-weight: 900;
}
.nav_header > a{
    text-decoration: none;
    color: rgb(20, 20, 20);
    
}
.nav_header > a > span{
    font-size: 2.6rem; 
    font-weight: 100;
    padding-left: .25rem;
    color: #00b100;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.container {
    /* width: 100vw; */
    max-width: 69rem;
    margin: auto;
    /* margin-top: 24rem; */
    margin-top: 100vh;
    /* padding: 5vw; */
    background-color: var(--bg_color_1);
    /* background-color: #ff0000; */
    padding-bottom: 30vh;
    border-top: 1px solid #00000017;
}
.semi_container{
    margin: 5vh 3vw;
    padding: 2vh 0rem 1vh;
    background-color: var(--bg_color_1);
    border-radius: 8px;

}
.hr_2_wraper{
    margin-top: 15vh;

}
.hr_2{
    width: 60%;
    margin: auto;
    /* display: inline-block; */
}
#banner_area{
    /* background-color: #efefef00; */
    background-color: var(--bg_color_1);
    position: fixed;
    top: 6rem;
    top: 50%;
    transform: translateY(-65%);
    right: 0;
    left: 0;
    z-index: -1;
}
#semi_container_02{
    margin-bottom: 10rem;
    scroll-margin-top: 18vh;

}
#semi_container_02,
#semi_container_03{
    /* box-shadow: #00000005 0px 1px 3px 0px, #1b1f2325 0px 0px 0px 1px; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.089);
}
.banner_header{
    display: block !important;
    text-align: center;
    font-size: 1.9rem; 
    font-weight: 900;
    padding: 1rem 0rem;
}
.banner_header > img{
    width: 3rem;
    height: auto;
    margin: 5px .6rem -10px;
}
.banner_header >span{
    font-size: 2.5rem; 
    font-weight: 100;
    padding-left: .25rem;
    color: #00b100;
    font-family: 'Lucida Sans',  'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.banner_txt{
    text-align: center;
    font-size: 1.1rem; 
    font-weight: 600;
}
.banner_txt > span{
    padding-right: .2rem;
}
.banner_btn_holder{
    margin: auto;
    width: max-content;
    margin-top: 5vh;
}
.banner_btn_1{
    padding: .5rem 1.1rem;
    border-radius: 8px;
    border: 1px solid;
    font-family: Poppins ;
    background-color: #000000;
    color: #ffffff;
    transition: .3s ease-in-out;
    cursor: pointer;
}
.banner_btn_1 > i{
    padding-left: .3rem;
}
.banner_btn_1:hover{
    /* transition: .5s ease-in-out; */
    background-color: #ffffff;
    color: #00b100;
}
.banner_btn_1:hover  .banner_btn_1 > i{
    transition: .5s ease-in-out;
    /* background-color: #000000; */
    color: #fec006;

}
.semi_container_header{
    text-align: left; 
    font-size: 1.5rem; 
    font-weight: 700;
    margin-top: .5rem;
    margin-bottom: .8rem;
    /* padding-left: 3vw; */
    color: #000000de;
}
.semi_container > .hr_1{
    height: 3px;
    /* color: #000000; */
    background-color: #000000;
}

.para{
    margin: 5% 5%;
    /* margin-top: 5vh; */
    /* margin-bottom: 0vh; */

}

.para_header{
    text-align: left; 
    font-size: 1.2rem; 
    font-weight: 500;
    margin-bottom: 1vh;
}
.tika_1{
    text-decoration: none;
    font-size:.9rem ;
    /* font-weight: 600 ; */
    color: #000000;
    /* color: #ffffff; */
    /* padding: 0px 7px; */
    display: inline-block;
    padding-left: 1rem;
    margin-top: -1rem;
}
.tika_1 > a{
    text-decoration: none;
    color: #e75858;
    transition: .3s;
}
.tika_1 > a:hover{
    cursor: pointer;
    color: #0061bb;


}
.para > pre {
    position: relative; /* Establish a positioning context */
    display: flex; /* Use Flexbox for layout */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space out code and button */
    background: #313131; /* Background color for the code block */
    color: #d4d4d4; /* Text color */
    border-radius: 5px; /* Rounded corners */
    padding: 1rem; /* Padding around the content */
    margin: 1rem 0; /* Margin between code blocks */
    /* overflow-x: auto; Enable horizontal scrolling if needed */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.144) 0px 0px 0px 1px;
}

.para > pre > code {
    flex-grow: 1; /* Allow the code to take up available space */
    font-family: 'Courier New', Courier, monospace; /* Monospace font for code */
    font-size: 1rem; /* Font size */
    /*white-space: pre-wrap;  Wrap long lines */
    /*word-break: break-all;  Break long words if necessary */
    user-select: auto;
}

.copy-btn {
    flex-shrink: 0; /* Prevent the button from shrinking */
    background: transparent; /* Transparent background */
    border: none; /* No border */
    color: #d4d4d4; /* Icon color */
    cursor: pointer; /* Pointer cursor on hover */
    margin-left: 1rem; /* Space between code and button */
    font-size: 1rem; /* Icon size */
    transition: color 0.3s ease; /* Smooth color transition */
}

.copy-btn:hover {
    color: #1e88e5; /* Change color on hover */
}
.pre_line{
    background: #313131;
    color: #d4d4d4;
    /* margin-left:5% ; */
    /* margin: 1rem; */
    border-radius: 5px;
    overflow-x: auto;
    box-shadow: #3c40434d 0px 1px 2px 0px ,
                 #3c404326 0px 1px 3px 1px ;
    /* user-select: text; */
    /* padding: 1rem 1.5rem; */
}
.pre_line > code{
    font-size: 1rem;
} 
.para_2{
    margin: 2rem 2rem;
}
.para_2_sub{
    margin-bottom: 3rem;
}
.para_2_sub_header{
    margin-top: 1rem;
    padding: .25rem 0;
    text-align: left; 
    font-size: 1.3rem; 
    font-weight: 500;
    /* margin-bottom: 1vh; */
}
.para_2_sub_text{
    margin-left: 1rem;
}
#example > pre{
    margin: 0 2rem;
}
.para_2 > p{
    margin-left: 1rem;
    display: inline-block;
    font-weight: 600;
}
.hilighter_pre{
    background: #d6d6d67e;
    display: inline-block;
    /* color: #d4d4d4; */
    /* margin-left:5% ; */
    border-radius: 3px;
    overflow-x: auto;
    box-shadow: #3c40434d 0px 1px 2px 0px ,
                 #3c404326 0px 1px 3px 1px ;
    /* user-select: text; */
    padding: 3px;
    /* margin-top: 1rem; */
}









.footer{
    /* margin-top: 10rem; */
    border-top:  1px solid #00000023;
    /* height: 5rem; */
    padding: 2vh 0;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px -2px 50px 0px inset; */
}
.footer > p{
    text-align: center;
    font-weight: 500;
}
.p2{
   font-size:.85rem ;
   font-weight: 500 ;
   color: #000000;
   /* padding-top: .5rem; */
   /* color: #ffffff; */
   /* font-family: var(--bn_font_4); */
}
.p2 span{
    font-size:.85rem ;

}
.devider{
    display: inline-block;
    font-size: .9rem;
    padding: 0 7px;
}
.f_3{
    margin-top: .3rem;
    font-size: .8rem ;
    font-weight: 500 ;
    color: #000000ce;
    /* color: #ffffff; */
    /* font-family: var(--bn_font_4); */
}
.f_3 > a{
    text-decoration: none;
    font-size:.8rem ;
    /* font-weight: 600 ; */
    color: #000000;
    /* color: #ffffff; */
    font-family: var(--bn_font_2);
    /* padding: 0px 7px; */
    display: inline-block;
}
.f_3 > a:hover{
    text-decoration: none;
    font-size:.8rem ;
    /* font-weight: 500 ; */
    color: #113557;
    /* color: #ffffff; */
    cursor: pointer;
    /* padding: 0px 5px;  */

}














