@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300..500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz@0,9..40;1,9..40&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,600;1,9..40,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    /* -- Color -- */
    --primary-color: #43ffec;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #212529;
    --color-light: rgba(255, 255, 255, 0.60);

    /* -- font weight -- */
    --fw-lighter:         lighter;
    --fw-light:           300;
    --fw-normal:          400;
    --fw-medium:          500;
    --fw-semibold:        600;
    --fw-bold:            700;
    --fw-bolder:          bolder;
}

::-webkit-scrollbar-track
{
    border-radius: 0px;
    background-color: #f1f1f1;
}

::-webkit-scrollbar
{
    width: 12px;
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb
{
    border-radius: 0px;
    background-color: #9f9f9f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 3.125rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}
h1,h2,h3,h4,h5,h6{
    font-family: "DM Sans", sans-serif;
    font-weight: var(--fw-medium);
    color: var(--color-white);
}
p {
/*    font-family: "Sora", sans-serif;*/
    font-family: "Work Sans", sans-serif;
    margin: 0;
    color: var(--color-light);
    font-weight: var(--fw-light);
    line-height: 1.7;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--primary-color);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-light);
}

img{
    max-width: 100%;
    object-fit: contain;
}

.btn{
    padding: 10px 35px;
    background-color: var(--primary-color);
    color: var(--color-dark);
    font-weight: var(--fw-medium);
    border-radius: 5px;
    transition: all .4s;
}
.btn:hover{
    background: var(--primary-color);
}
body{
    /* background: url(../img/body-bg.jpg); */
    background-repeat: no-repeat;
    background-size: cover;    
    background-color: #111;
}
.display-list-item{
    display: list-item;
}

/* header */
#header{
    position: sticky;
    top: 0;
    z-index: 11;
}
#header .navbar {
    background: #090909;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}
#header .header-logo{
    width: 110px !important;
}
#header .search_box{
    position: relative;
    max-width: 215px;
}
#header .search_box input{
    border-radius: 3px;
    padding-right: 40px;
}
#header .search_box button{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background-color: var(--color-black);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: var(--color-white);
    border-radius: 3px;
    font-size: 14px;
    border: 0;
}
#header .navbar-nav > li > a{
    padding: 20px 0;
    text-transform: uppercase;
}
#header .navbar-nav li a{
    font-family: "Sora", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.7px;
}
#header .navbar-nav > li{
    margin-right: 40px;
}
#header .navbar-nav > li:last-child{
    margin-right: 0px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--primary-color);
}

/* banner-section */
#banner_section{
    padding: 100px 0;
}
#banner_section .banner-heading h6.sub_title{
    background: rgba(255,255,255,.20);
    display: inline-block;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: .7px;
    color: #fff;
    margin-bottom: 10px;
}
#banner_section .banner-heading{
    margin-bottom: 50px;
}
#banner_section .banner-heading h1{
    font-size: 3.75rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
#banner_section .banner-heading h1 span{
    background: linear-gradient(90deg, #43FFEC 0%, #FFB84D 50%, #FF0080 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
#banner_section .banner-heading p{
    margin: 0 auto;
    max-width: 50%;
}
#banner_section .service_content{
    transition: all .4s;
    padding: 20px;
    background: rgba(255, 255, 255, .06);
}
#banner_section .service_content .icon i{
    color: var(--primary-color);
    font-size: 3.125rem;
    margin-bottom: 15px;
    display: inline-block;
}

#banner_section .service_content .text h2{
    line-height: 22px;
    letter-spacing: 0px;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    padding-bottom: 20px;
}
#banner_section .service_content .text h2:after{
    content: '';
    width: 67px;
    height: 1px;
    display: inline-block;
    background-color: rgba(255, 255, 255,.10);
    transition: all .4s;
    left: 0;
    position: absolute;
    bottom: 0;
}
#banner_section .service_content:hover .text h4:after{
    width: 100%;
    background-color: var(--primary-color);
}
#banner_section .service_content .text h3{
    font-size: 50px;
    text-align: right;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
    -webkit-text-fill-color: transparent;
    transition: all .4s;
    margin-bottom: 0;
    margin-top: 14px;
}
#banner_section .service_content:hover .text h6{
    -webkit-text-stroke-color: var(--primary-color);
}

/* snippet section */
#latest_snippet{
    margin-top: 50px;
    margin-bottom: 70px;
}
#latest_snippet .snippet_heading h2{
    font-size: 1.4em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
#latest_snippet .snippet_heading p{
    margin-bottom: 20px;
}
#latest_snippet .content{
    position: relative;
    border: 1px solid #3c3c3c;
    padding: 10px;
    margin-bottom: 30px;
}
#latest_snippet .content img{
    max-height: 220px;
    object-fit: contain;
    width: 100%;
}
#latest_snippet .content .text{
    padding: 10px 20px;
}
#latest_snippet .content .text h3{
    font-size: 20px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
#latest_snippet .content .text .date_share{
    display: flex;
    justify-content: space-between;
    color: var(--color-light);
    font-size: 14px;
}
#latest_snippet .content .text .share  i{
    color: var(--primary-color);
}
#latest_snippet .prev-next-btn a{
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    font-size: 14px;
    margin: 10px 5px 0;
    transition: all .4s;
}
#latest_snippet .prev-next-btn a:hover{
    background-color: var(--primary-color);
    color: var(--color-dark);
}

/* text-img */
#text-img{
    margin-bottom: 100px;
    background: rgba(255, 255, 255, .06);
    padding: 100px 0;
}
#text-img .content h4{
    font-size: 40px;
    font-weight: var(--fw-semibold);
    font-family: "Sora", sans-serif;
    margin-bottom: 15px;
}
#text-img .content h4 span{
    background: linear-gradient(90deg, #43FFEC 0%, #FFB84D 50%, #FF0080 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
#text-img .img img{
    border: 1px solid #3c3c3c;
    padding: 20px;
}

/* language */
#language{
    padding-bottom: 100px;
}
#language .heading h2{
    font-size: 1.4em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
#language .heading p{
    max-width: 70%;
    margin: 0 auto 50px;
}
#language .img{
    background: rgba(255, 255, 255, .06);
    padding: 20px;
}
#language .img img{
    width: 100%;
    object-fit: contain;
    height: 100px;
}


/* footer */
footer{
    background: rgba(255, 255, 255, .06);
    padding-top: 100px;
}
footer .footer-logo img{
    max-width: 200px;
    max-height: 50px;
}
footer .link h2{
    margin-bottom: 2rem;
    font-size: 1.25rem;
}
footer .link ul li a{
    color: var(--color-light);
    display: inline-block;
    margin-bottom: .75rem;
    transition: all .4s;
}
footer .link ul li a:hover{
    color: var(--primary-color);
}
footer .copyright{
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    background: var(--color-black);
    margin-top: 70px;
}


/* banner section */
#banner-section{
    position: relative;
    text-align: center;
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#banner-section h2{
    position: relative;
    margin: 0;
    display: inline-block;
    font-family: "Sora", sans-serif;
}
#banner-section h2:after{
    content: '';
    position: absolute;
    top: 50%;
    left: -65px;
    border-bottom: 1px solid rgba(255, 255, 255,.50);
    transform: translateY(-50%);
    width: 50px;
}
#banner-section h2:before{
    content: '';
    position: absolute;
    top: 50%;
    right: -65px;
    border-bottom: 1px solid rgba(255, 255, 255,.50);
    transform: translateY(-50%);
    width: 50px;
}
/* color_pallete */
#color_pallete{
    margin: 100px 0;
}
#color_pallete .content{
    margin-bottom: 30px;
}
#color_pallete .content ul li{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--color-white);
}
#color_pallete .content ul li:nth-child(1),
#color_pallete .content ul li:nth-child(2),
#color_pallete .content ul li:nth-child(3),
#color_pallete .content ul li:nth-child(4){
    color: var(--color-black);
}


/* snippet-main-section */
#snippet-main-section{
    margin: 100px 0;
}
#snippet-main-section .category{

}
#snippet-main-section .category h2{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Sora", sans-serif;
    position: relative;
}
#snippet-main-section .category h2:after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 45px;
    height: 1px;
    background-color: var(--color-white);
}
#snippet-main-section .category ul li{
    padding: 10px 0;
}
#snippet-main-section .category ul li a{
    display: flex;
    justify-content: space-between;
    color: var(--bs-gray-400);
    text-transform: capitalize;
    transition: all .4s;
}
#snippet-main-section .category ul li a:hover{
    color: var(--primary-color);
}
#snippet-main-section .content{
    position: relative;
    border: 1px solid #3c3c3c;
    padding: 10px;
    margin-bottom: 30px;
    transition: all .4s;
}   
#snippet-main-section .content:hover{
    border-color: var(--primary-color);
}
#snippet-main-section .content img {
    height: 150px;
    object-fit: contain;
    width: 100%;
}
#snippet-main-section .content .text {
    padding: 10px 15px;
}
#snippet-main-section .content .text h4 {
    font-size: 16px;
    margin-bottom: 10px;
    transition: all .4s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
#snippet-main-section .content:hover .text h4{
    color: var(--primary-color);
}
#snippet-main-section .content .text .date_share {
    display: flex;
    justify-content: space-between;
    color: var(--color-light);
    font-size: 12px;
}
#snippet-main-section .content .text .share i {
    color: var(--primary-color);
}


/* snippet detail */
#snippet_detail{
    margin: 100px 0;
}
#snippet_detail .heading h1{
    font-size: 40px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-bottom: 25px;
}
#snippet_detail .heading{
    margin-bottom: 50px;
}
#snippet_detail .main_code{
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}
#snippet_detail .main_code .nav{
    margin-bottom: 50px;
}
#snippet_detail .main_code ul li button{
    background-color: var(--color-dark);
    border-radius: 0px;
    padding: 10px 60px;
    margin-right: 20px;
    color: #fff;
    text-transform: capitalize;
    font-weight: var(--fw-semibold);
    border-radius: 5px;
}
#snippet_detail .main_code ul li button.active{
    background-color: var(--primary-color);
    color: var(--color-black);
}
#snippet_detail .main_code ul li:last-child button{
    margin: 0;
}
#snippet_detail .bottom_des .post_share{
    display: inline-block;
    width: 100%;
    border-top: 1px solid #3c3c3c;
    padding-top: 30px;
    margin-top: 30px;
}
#snippet_detail .bottom_des .post_share ul{
    display: flex;
    align-items: center;
    flex-flow: wrap;
}
#snippet_detail .bottom_des .post_share ul li{
    color: var(--color-white);
    font-size: 17px;
    font-style: normal;
    margin-right: 10px;
}
#snippet_detail .bottom_des .post_share ul li:first-child{
    margin-right: 20px;
}
#snippet_detail .bottom_des .post_share ul li a{
    color: var(--color-white);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    display: inline-block;
    background-color: #3c3c3c;
    border-radius: 3px;
    padding: 10px 15px;
    text-transform: capitalize;
}
#snippet_detail .main_code .output_main{
    width: 100%;
    overflow: auto;
}
#snippet_detail .main_code #output{
    background-color: #f5f5f5;
    padding: 10px;
}

.comment_post{
    margin-top: 50px;
}
.comment_post .posted {
    display: flex;
}
.comment_post .replay_post{
    padding-left: 50px;
}
.comment_post .posted .img{
    flex: 0 0 50px;
    margin-right: 10px;
}
.comment_post .posted .des h5{
    font-size: 16px;
    margin-bottom: 5px;
    padding-top: 3px;
}
.comment_post .posted .des h5 span{
    font-size: 12px;
    opacity: 0.7;
    margin-left: 10px;
}
.comment_post .posted .des a.replay{
    text-transform: capitalize;
    font-size: 12px;
    display: inline-block;
    color: #777777;
    transition: all .4s;
}
.comment_post .posted .des a.replay:hover{
    color: var(--primary-color);
}

#snippet_detail .comment h3{
    position: relative;
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 36px;
    letter-spacing: -0.32px;
    padding-bottom: 15px;
    margin-top: 50px;
    margin-bottom: 10px;
}
#snippet_detail .comment h3:after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 30px;
    height: 1px;
    background-color: var(--color-white);
}
#snippet_detail .comment .comment_form{
    margin-top: 30px;
}
#snippet_detail .comment .comment_form input,
#snippet_detail .comment .comment_form textarea{
    height: 50px;
    padding: 15px 20px;
    font-weight: var(--fw-light);
    line-height: normal;
    color: #dddddd;
    background-color: rgb(39 39 39 / 30%);
    background-clip: padding-box;
    border: 1px solid #3c3c3c;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 30px;
}
#snippet_detail .comment .comment_form textarea{
    height: 150px;
}
#snippet_detail .comment .comment_form input::placeholder,
#snippet_detail .comment .comment_form textarea::placeholder{
    color: var(--color-white);
}

#snippet_detail .editor{
    height: 50vh;
}
#snippet_detail #preview{
    width: 100%;
    height: 523px;
    background: #ffffff;
    padding: 0rem;
}
#snippet_detail .main-prev{
    width: 100%;
    overflow: auto;
}
#snippet_detail .resize-controls{
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
#snippet_detail label{
    color: var(--color-light);
    padding-right: 5px;
}
#snippet_detail #width{
    margin-right: 50px;
}
#snippet_detail input{
    padding: 10px 15px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .15);
    color: var(--color-white);
    outline: none;
    box-shadow: none;
    border: 0;
}
#snippet_detail #format-button{
    position: absolute;
    top: 133px;
    right: 30px;
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: var(--color-black);
    border-radius: 3px;
    font-size: 14px;
    border: 0;
    box-shadow: none;
    font-weight: 600;
}
#snippet_detail #format-button .tooltiptext{
    visibility: hidden;
    width: 110px;
    background-color: black;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 2px 0;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 33px;
}
#snippet_detail #format-button:hover .tooltiptext{
    visibility: visible;
}
#related_snippet_cate {
    margin-bottom:70px;
}
/*#snippet_detail .category{
    position: sticky;
    top: 90px;
}*/
#related_snippet_cate .related_heading,
#snippet_detail .category h2{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Sora", sans-serif;
    position: relative;
}
#related_snippet_cate .related_heading:after,
#snippet_detail .category h2:after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 45px;
    height: 1px;
    background-color: var(--color-white);
}
#related_snippet_cate .content{
    position: relative;
    border: 1px solid #3c3c3c;
    padding: 10px;
    margin-bottom: 30px;
    transition: all .4s;
}
#related_snippet_cate .content img{
    height: 200px;
    object-fit: contain;
    width: 100%;
    background: var(--color-white);
}
#related_snippet_cate .content .text {
    padding: 10px 15px;
}
#related_snippet_cate .content .text h4 {
    font-size: 16px;
    margin-bottom: 10px;
    transition: all .4s;
}
#related_snippet_cate .content .text .date_share {
    display: flex;
    justify-content: space-between;
    color: var(--color-light);
    font-size: 12px;
}
#related_snippet_cate .content .text .share i {
    color: var(--primary-color);
}
#snippet_detail .category ul li {
    padding: 10px 0;
}
#snippet_detail .category ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--bs-gray-400);
    text-transform: capitalize;
    transition: all .4s;
}
#snippet_detail .category ul li a:hover{
    color: var(--primary-color);
}

/* gradient_color */
#gradient_color{
    margin: 100px 0;
}
#gradient_color .heading h1{
    font-size: 40px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-bottom: 25px;
}
#gradient_color .heading{
    margin-bottom: 50px;
}
#gradient_color .color_box{
    width: 100%;
    height: 100px;
    border-radius: 5px;
}
#gradient_color .row p{    
    margin-bottom: 20px;
    font-size: 14px;
}
#gradient_color .heading span{
    color: var(--primary-color);
    margin-top: 10px;
    display: block;
}


/* color_combination */
#color_combination{
    padding: 100px 0;
    background: rgba(255, 255, 255, .1);
}
#color_combination .heading {
    margin-bottom: 30px;
}
#color_combination .heading h1{
    font-size: 40px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-bottom: 25px;
}
#color_combination .heading span{
    color: var(--primary-color);
    margin-top: 10px;
    display: block;
}
#color_combination .main_combination{
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, .30);
    padding: 10px;
}

#color_combination .main_combination .color_box{
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
#color_combination .main_combination .color_box .color{
    flex: 0 0 50%;
    width: 50%;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
#color_combination .main_combination ul{
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}
#color_combination .main_combination ul li{
    color: var(--color-white);
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 10px;
}
#color_combination .main_combination ul li span{
    vertical-align: middle;
}
#color_combination .main_combination .circle{
    width: 25px;
    height: 25px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

/* blog */
#blog_post{
    margin: 100px 0;
}
#blog_post .blog_post_content{
    position: relative;
    border: 1px solid #3c3c3c;
    padding: 10px;
    margin-bottom: 30px;
}
#blog_post .blog_post_content .post_img img{
    height: auto;
    object-fit: contain;
    width: 100%;
    background: #fff;
}
#blog_post .blog_post_content .post_des{
    padding: 10px 20px;
}
#blog_post .blog_post_content h4{
    margin: 0;
}
#blog_post .blog_post_content h4 a{
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
#blog_post .blog_post_content .auther_share{
    display: flex;
    justify-content: space-between;
    color: var(--color-light);
    font-size: 16px;
    text-transform: capitalize;
}
#blog_post .blog_post_content .post_des .date{
    font-size: 10px;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 0.42px;
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 3px 10px;
    display: inline-block;
    margin: 15px 0;
}
#blog_post .category h2{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Sora", sans-serif;
    position: relative;
}
#blog_post .category ul li{
    padding: 10px 0;
}
#blog_post .category ul li a{
    display: flex;
    justify-content: space-between;
    color: var(--bs-gray-400);
    text-transform: capitalize;
    transition: all .4s;
}
#blog_post .category{
    position: sticky;
    top: 90px;
}

/* blog detail */
#blog_detail{
    margin: 100px 0;
}
#blog_detail .heading{
    margin-bottom: 50px;
}
#blog_detail .heading h1{
    font-size: 40px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-bottom: 10px;
}
#blog_detail .heading .other_date{
    color: var(--color-white);
    display: flex;
    margin-bottom: 25px;
}
#blog_detail .heading .other_date span{
    margin-right: 20px;
}
#blog_detail .heading .other_date i{
    color: var(--primary-color);
    padding-right: 5px;
}
#blog_detail .category{
    position: sticky;
    top: 90px;
}
#blog_detail .category h2{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Sora", sans-serif;
    position: relative;
}
#blog_detail .category h2:after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 45px;
    height: 1px;
    background-color: var(--color-white);
}
#blog_detail .category ul li {
    padding: 10px 0;
}
#blog_detail .category ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--bs-gray-400);
    text-transform: capitalize;
    transition: all .4s;
}
#blog_detail .category ul li a:hover{
    color: var(--primary-color);
}
#blog_detail .detail h2{
    font-size: 30px;
    text-transform: capitalize;
    margin-top: 45px;
    margin-bottom: 20px;
}
#blog_detail .detail .code_example .code_title{
    color: #fff;
    padding: .3rem 1rem;
    background: rgba(255, 255, 255, .1);
    margin-top: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
#blog_detail .detail .code_example pre{
    background: rgba(255, 255, 255, .1);
    padding: 0 20px;
}
#blog_detail .detail .code_example pre code{
    color: #fff;
}
#blog_detail .detail .code_example pre code span{
    white-space: pre-wrap;
}
#blog_detail .detail .post_share{
    display: inline-block;
    width: 100%;
    border-top: 1px solid #3c3c3c;
    padding-top: 30px;
    margin-top: 30px;
}
#blog_detail .detail .post_share ul {
    display: flex;
    align-items: center;
    flex-flow: wrap;
}
#blog_detail .detail .post_share ul li {
    color: var(--color-white);
    font-size: 17px;
    font-style: normal;
    margin-right: 10px;
}
#blog_detail .detail .post_share ul li:first-child {
    margin-right: 20px;
}
#blog_detail .detail .post_share ul li a {
    color: var(--color-white);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    display: inline-block;
    background-color: #3c3c3c;
    border-radius: 3px;
    padding: 10px 15px;
    text-transform: capitalize;
}
#blog_detail .comment h3 {
    position: relative;
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 36px;
    letter-spacing: -0.32px;
    padding-bottom: 15px;
    margin-top: 50px;
    margin-bottom: 10px;
}
#blog_detail .comment h3:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 30px;
    height: 1px;
    background-color: var(--color-white);
}
#blog_detail .comment .comment_form {
    margin-top: 30px;
}
#blog_detail .comment .comment_form input, 
#blog_detail .comment .comment_form textarea {
    height: 50px;
    padding: 15px 20px;
    font-weight: var(--fw-light);
    line-height: normal;
    color: #dddddd;
    background-color: rgb(39 39 39 / 30%);
    background-clip: padding-box;
    border: 1px solid #3c3c3c;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 30px;
}
#blog_detail .comment .comment_form textarea {
    height: 150px;
}
#blog_detail .comment .comment_form input::placeholder, 
#blog_detail .comment .comment_form textarea::placeholder{
    color: #fff;
}

#related_blog{
    margin-bottom: 70px;
}
#related_blog .related_heading{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Sora", sans-serif;
    position: relative;
}
#related_blog .related_heading:after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 45px;
    height: 1px;
    background-color: var(--color-white);
}
#related_blog .content {
    position: relative;
    border: 1px solid #3c3c3c;
    padding: 10px;
    margin-bottom: 30px;
    transition: all .4s;
}
#related_blog .content img {
    height: auto;
    object-fit: contain;
    width: 100%;
    background: var(--color-white);
}
#related_blog .content .text {
    padding: 10px 15px;
}
#related_blog .content .text h4 {
    font-size: 16px;
    margin-bottom: 10px;
    transition: all .4s;
}
#related_blog .content .text .date_share {
    display: flex;
    justify-content: space-between;
    color: var(--color-light);
    font-size: 12px;
}

/* about */
#about_detail,
#terms_condition{
    margin: 100px 0;
}
#about_detail h1,
#terms_condition h1{
    font-size: 40px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-bottom: 25px;
}
#about_detail p,
#terms_condition p{
    margin-bottom: 20px;
}
#about_detail ul li,
#terms_condition ul li{
    margin-bottom: 10px;
    color: var(--color-light);
    padding-left: 20px;
    position: relative;
}
#about_detail ul li i,
#terms_condition ul li i{
    position: absolute;
    left: 0;
    top: 0;
}
#about_detail ul li b,
#terms_condition ul li b{
    color: rgba(255,255,255,.8);
    padding-right: 10px;
}
#about_detail h4,
#terms_condition h4{
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-top: 25px;
}
#about_detail hr,
#terms_condition hr{
    border-color: rgba(255, 255, 255);
    margin: 50px 0;

}

/* privacy policy */
#privacy_policy{
    margin: 100px 0;
}
#privacy_policy p{
    margin-bottom: 20px;
}
#privacy_policy h4{
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: 50px;
    font-family: 'Sora';
    margin-top: 25px;
}
#privacy_policy hr{
    border-color: rgba(255, 255, 255);
    margin: 50px 0;

}

/* contact form */
#contact_form{
    margin: 100px 0;
}
#contact_form .title{
    text-align: center;
    margin-bottom: 50px;
}
#contact_form .title h1{
    position: relative;
    z-index: 1;
    color: var(--color-white);
    font-size: 3.125rem;
    letter-spacing: -1.06px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: 'Sora';
}
#contact_form form{
    max-width: 80%;
    margin: auto;
}
#contact_form form input{
    background: transparent;
    border: 0px;
    border-radius: 0;
    padding: 15px 0px;
    color: #999;
    border-bottom: 1px solid #3c3c3c;
    box-shadow: none;
}
#contact_form form input::placeholder{
    color: #999;
}
#contact_form form textarea{
    background: transparent;
    border: 0px;
    border-radius: 0;
    padding: 15px 0px;
    color: #999;
    border-bottom: 1px solid #3c3c3c;
    box-shadow: none;
    height: 200px;
}
#contact_form form textarea::placeholder{
    color: #999;
}

/* faq */
#faq{
    margin: 100px 0;
}
#faq #accordionExample{
    max-width: 70%;
    margin: 0 auto;
}
#faq .accordion-item{
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: 0;
    margin-bottom: 20px;
    border: 0;
    opacity: .8;
}
#faq .accordion-button{
    background-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}   
#faq .accordion-button.collapsed{
    border-bottom: transparent;
}
#faq .accordion-button:after{
    content:"\f63b";
    font-family: bootstrap-icons !important;
    transform: none;
}
#faq .accordion-button.collapsed:after{
    content:'\F64D';
    font-family: bootstrap-icons !important;
    transform: none;
}

/* list blog */
#list_post{
    margin-bottom: 70px;
}
#list_post .heading h2{
    font-size: 1.4em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
#list_post .heading p{
    max-width: 70%;
    margin: 0 auto 50px;
}
#list_post .content{
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #3c3c3c;
    padding: 10px;
}
#list_post .content .des{
    padding: 10px 20px;
}
#list_post .content .des h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
#list_post .content .des a{
    margin-bottom: 10px;
    display: inline-block;
}
#list_post .category h3{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Sora", sans-serif;
    position: relative;
}
#list_post .category ul li {
    padding: 10px 0;
}
#list_post .category ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--bs-gray-400);
    text-transform: capitalize;
    transition: all .4s;
}
#list_post .category ul li a:hover{
    color: #43FFEC;
}

/* google ads section */
.google_ads_home_section{
    margin-bottom: 70px;
}

.img_stock a{
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    color: #000;
    animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}


/* responsive */
@media (min-width: 991.9px) {
    #header .navbar-nav > li.dropdown ul.dropdown-menu{
        display: none;
        top: 60px;
        border-radius: 0;
        background: var(--color-dark);
        margin: 0;
    }
    #header .navbar-nav > li.dropdown ul.dropdown-menu a{
        color: var(--color-light);
        padding: 5px 15px;
    }
    #header .navbar-nav > li.dropdown:hover ul.dropdown-menu{
        display: block;
        max-height: 400px;
        overflow-y: auto;
    }
    #header .navbar-nav > li.dropdown ul.dropdown-menu li a:hover,
    #header .navbar-nav > li.dropdown ul.dropdown-menu li a:focus{
        background-color: var(--color-black);
    }
}
@media (max-width: 991px){
    #snippet-main-section .category,
    #blog_post .category{
        margin-bottom: 30px;
    }
    #text-img .content h4{
        font-size: 2rem;
    }
    #language .img{
        margin-bottom: 30px;
    }
    #snippet_detail .main_code ul li button{
        padding: 10px 50px;
    }
    #related_snippet_cate .content img{
        height: 200px;
    }
    #header .navbar{
        padding-bottom: 20px;
    }
    #snippet_detail .main_code h4{
        margin: 10px 0;
    }
    #header{
        position: relative;
    }
}
@media (max-width: 767.9px){
    #banner_section .service_content{
        margin-bottom: 30px;
    }
    #banner_section .col-md-4:last-child .service_content{
        margin-bottom: 0;
    }
    #banner_section .banner-heading h1{
        font-size: 2.75rem;
    }
    #banner_section .banner-heading p{
        max-width: 100%;
    }
    #text-img .content {
        margin-bottom: 30px;
    }
    #language .heading p{
        max-width: 100%;
    }
    footer .footer-logo{
        margin-bottom: 30px;
    }
    #related_snippet_cate .content img{
        height: 150px;
    }
    #snippet_detail .heading h1{
        font-size: 30px;
        line-height: 40px;
    }
    #snippet_detail .main_code ul li button {
        padding: 10px 30px;
    }
    #snippet_detail .resize-controls{
        justify-content: center;
        flex-direction: column;
    }
    #snippet_detail .resize-controls .div_with,
    #snippet_detail .resize-controls .div_height{
        flex: 0 0 100%;
    }
    #snippet_detail .resize-controls .div_with{
        margin-bottom: 10px;
    }
    #snippet_detail .resize-controls #width{
        margin-right: 0;
    }
    #snippet_detail .main_code .nav {
        margin-bottom: 30px;
    }
    #faq #accordionExample{
        max-width: 100%;
    }
    #blog_detail .heading h1{
        font-size: 26px;
        line-height: 35px;
    }
    #blog_detail .heading .other_date{
        flex-wrap: wrap;
        flex-direction: column;
    }
    #blog_detail .heading .other_date span{
        margin-bottom: 10px;
    }
}
@media (max-width: 576px){
    #latest_snippet .snippet_heading {
        margin-bottom: 30px;
    }
    #latest_snippet .content .text{
        padding: 10px 15px;
    }
    #latest_snippet .content .text h3{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #latest_snippet .content .text .date_share{
        font-size: 12px;
    }
    #banner_section .banner-heading h1,
    #text-img .content h4,
    #about_detail h1{
        font-size: 2rem;
    }
    footer .col-lg-7 .col-12{
        margin-top: 30px;
    }   
    #snippet_detail .heading h1,
    #color_combination .heading h1{
        font-size: 24px;
        line-height: 35px;
    }
    #snippet_detail .main_code ul li button {
        padding: 8px 15px;
        margin-right: 6px;
    }
    #snippet_detail #preview{
        height: 300px;
    }
    #banner-section h2{
        font-size: 1.8rem;
    }
    #blog_detail .detail .post_share ul li,
    #snippet_detail .bottom_des .post_share ul li{
        margin: 5px 10px 5px 0;
    }
    #blog_post .blog_post_content .post_des .date{
        line-height: normal;
    }
    #blog_post .blog_post_content .post_des{
        padding: 10px 15px;
    }
    #latest_snippet .pagination .page-item .page-link{
        width: auto;
        height: auto;
        line-height: normal;
        padding: 5px 10px !important;
        font-size: 14px !important;
    }
    #snippet_detail .main_code #output{
        padding: 5px;
    }
}