


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.fw-thin {
    font-weight: 100;
}

.text-uppercase {
    font-size: 14px;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.link-hover {
    transition: 0.5s;
}

.link-hover:hover {
    color: var(--bs-primary) !important;
}


.img-zoomin {
    transition: 0.5s;
}

.img-zoomin:hover {
    transform: scale(1.1);
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}


#note {
    position: relative;
    animation: noteAnimate 10s infinite;
    animation-timing-function: ease-in-out;
    display: flex;
    align-items: center;
}

@keyframes noteAnimate {
    from {left: -735px;}
    to {left: 735px;}
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 700;
    opacity: .65;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    opacity: 1;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/


/*** Features Start ***/
.features {
    width: 100%;
    background: linear-gradient(rgba(26, 125, 255, 0.5), rgba(255, 255, 255, 0.3)), url(../img/features-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Features End ***/


/*** Top News Start ***/
.news-2 h3 {
    position: relative;
}

.news-2 h3::after {
    content: "";
    line-height: 1.3rem;
    background: var(--bs-secondary);
    position: absolute;
    width: 68%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    right: 0;
    opacity: 0.2;
}
/*** Top News End ***/


/*** Latest News Start ***/
.latest-news .latest-news-carousel.owl-carousel{
    position: relative;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -65px;
    right: 70px;
    font-size: 20px;
    padding: 2px 20px;
    transition: 0.5s;
    margin-right: 10px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    padding: 2px 20px;
    transition: 0.5s;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev:hover,
.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 10px;
}
/*** Latest News End ***/


/*** Whats New Start ***/
.populer-news .whats-carousel.owl-carousel {
    position: relative;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    bottom: 0px;
    right: 15px;
    font-size: 20px;
    
    transition: 0.5s;
    margin-right: 10px;
    
    color: #333;
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    bottom: 0px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    
    transition: 0.5s;
    
    color: #333;
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev:hover,
.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next:hover {
 
    color: #000;
    
}

.populer-news .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.lifestyle .lifestyle-item {
    position: relative;
    overflow: hidden;
}

.lifestyle .lifestyle-item img {
    transition: 0.5s;
}

.lifestyle .lifestyle-item:hover img {
    transform: scale(1.2);
}

.lifestyle .lifestyle-item .lifestyle-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
/*** Whats New End ***/


/*** Banner Section start ***/
.banner-2 {
    position: relative;
}

.banner-content-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(rgba(26, 125, 255, 0.7), rgba(255, 255, 255, 0.7));
    z-index: 2;
}
/*** Banner Section End ***/


/*** Footer Start ***/
.footer{
    background: linear-gradient(to bottom,rgb(255,255,255),rgb(187, 184, 184));
}
.footer button:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.footer .footer-item-1 .line-h {
    line-height: 38px;
}

.footer .footer-item-1 a i {
    transition: 0.5s;
}

.footer .footer-item-1 a:hover i {
    color: var(--bs-primary) !important;
}

.footer .footer-item-3 a {
    line-height: 38px;
}

.footer .footer-item-2 a {
    transition: 0.5s;
}

.footer .footer-item-2 a:hover {
    color: #00d49f !important;
}

.footer .footer-item-3 a {
    transition: 0.5s;
}

.footer .footer-item-3 a:hover {
    color: var(--bs-primary) !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** Footer End ***/






/* new css */


.header-main{border-bottom: 2px solid #ccc;}
.header-main .navbar{padding-top: 0px; padding-bottom: 0px;}

.populer-news .post-title{font-size: 18px;
    color: #000;
    line-height: 25px;
    font-weight: 700;}

    .populer-news .author{color: #cccccc;
        font-size: 12px;
        margin-top: 10px;
        line-height: 14px;
        letter-spacing: 0.3px;
        font-weight: 700;}

     .whats-item.home-side img{height:160px; min-height: 100%;}   

     .news-list{padding-left: 15px;
        border-left: 0.125rem solid #00000026;        
        height: 5rem;}


    .news-list .h3{font-size:17px; font-weight: 600; line-height: 25px;}
    .news-list .auth-info p{font-size: 13px;
        padding-top: 4px;}

        .feature::before{content: '';
        background: #000;
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.3;}
        
        
.latest .features-content a.h3{font-size: 20px;
            font-weight: 700;
            line-height: 30px;}
.latest .latest-homeright img{height:141px;}     
.more-btn{background-color: #00d49f; padding: 10px 15px; display: inline-block;}
.more-btn a{color:#fff; font-weight: 700;}
.more-btn:hover{background-color: rgb(6 161, 122);}

.whats-carousel a.h4{font-size: 18px;
    font-weight: 700;
    line-height: 22px;}


    .footer .footer-item-1 .ftr-nav{display:flex; justify-content: space-between; }
    .footer .footer-item-1 .ftr-nav a{font-size: 16px; line-height: 24px; font-weight: 700; padding-bottom: 20px; color:#000;}
    .footer .footer-item-2 {display: flex; justify-content: end;}
    .footer .footer-item-2 a.social-icon{margin-right:30px; color:#999999; font-size:20px; }
    .footer .footer-item-2 a.social-icon:hover{color:#000;}
    .copyright{padding-bottom: 30px;}
    .copyright span{color:#999;}
    .copyright span a{color:#999;}
    .copyright span a:hover{color:#000;}






    /* category post */

.heading-title h2{font-size: 32px; font-weight: 700; line-height: 40px; color:#333;}

.category-post .item-cateogry{height:100%; background-color: rgb(255,255,255);
    box-shadow: 0 0.125rem 0.1875rem 0 rgba(0,0,0, .15);
    border-radius: 10px;
    transition: box-shadow .2s, transform .2s;}


    .category-post .item-cateogry:hover{box-shadow: 0 0.25rem 0.75rem -0.25rem rgba(0, 0, 0, .15);
        transform: scale(1.03);}

        .category-post .item-cateogry a.h4{font-size:16px; font-weight:600; line-height:24px;}
        .category-post .item-cateogry:hover a.h4{color:#00d49f;}


        .category-post .item-cateogry .whats-item img{min-height:200px; height:220px;}


        /* post detail */


        .post-detail h1{font-size:44px; font-weight: 600; line-height: 52px;}
        .post-detail .auth-info {border-bottom:2px solid #ccc; padding-bottom: 20px;}
        .post-detail .post-content p{font-size:16px; line-height: 24px; font-weight: 400; color:#000;}
        .post-detail .post-content h2, h3{padding-top:15px; padding-bottom: 10px;}
        .post-detail .post-content h2{font-size:28px;}
        .post-detail .post-content h3{font-size:24px;}
        .post-detail .post-content li{font-size:16px; line-height: 24px; font-weight: 400; color:#000;}
        .post-detail .tag ul li{list-style: none; padding-left: 10px; margin-bottom: 10px;}

        .post-detail .tag ul{flex-wrap: wrap;}
        .post-detail .tag a{background: #333;
            border-radius: 35px;
            margin-bottom: 15px;
            color: #fff;
            padding: 3px 12px; }


        @media(max-width:767px){

            .news-list{height:auto;}
        }   
        
        
        /*======start-about======*/
        .about_content_sec {
            padding: 40px;
          }
          .about_content_box p {
            font-size: 16px;
            color: #000;
          }
          .about_list_box ul {
            padding-top: 20px;
          }
          .about_list_box ul li {
            color: #000;
            padding-bottom: 10px;
          }
           /*======start-about======*/
           .blog_heading {
            display: flex;
            align-items: center;
            padding-bottom: 15px;
          }
          .blog_heading h3 {
            font-size: 28px;
            font-weight: 600;
            text-transform: capitalize;
          }
          .feater_img_on_txt {
            bottom: 0 !important;
            padding-bottom: 30px;
          }
        /* ===start-breadcurm-sec=== */
        .breadcurmb_sec {
            background-image: url("/assets/img/breadcurmb-image.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            height: 350px;
            position: relative;
          }
          
         
          .breadcurmb_title ul {
            margin: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            padding: 0;
          list-style: none;
          margin: 0;
          }
          .breadcurmb_title ul li {
            font-size: 20px;
            text-transform: capitalize;
            color: #000;
            font-weight: 600;
          }
          .breadcurmb_title ul li a{
            font-size: 20px;
            text-transform: capitalize;
            color: #000;
            font-weight: 600;
          }
          /* ===end-breadcurm-sec=== */
        
          /* ====start-contact==== */
          .contact_prgh {
            font-size: 16px;
            color: #000;
          }
          .contact_sec_box{
            padding: 40px;
          }
          .contact_content_box p{
            font-size: 16px;
            color: #000;
            text-align: center;
          }
          .content {
            padding: 7rem 0; }
          
          h2 {
            font-size: 3.5rem;
            font-weight: 700; }
          
          h3 {
            font-size: 2rem;
            font-weight: 700; }
          
          .form-control {
            border: none;
            border-bottom: 1px solid #d9d9d9;
            padding-left: 0;
            padding-right: 0;
            border-radius: 0; }
            .form-control:active, .form-control:focus {
              outline: none;
              -webkit-box-shadow: none;
              box-shadow: none;
              border-color: #000; }
          
          .btn, .form-control {
            height: 55px; }
          
          form.border-right {
            padding-right: 6rem !important; }
            @media (max-width: 991.98px) {
              form.border-right {
                padding-right: 0 !important;
                border-right: none !important; } }
          
          label.error {
            font-size: 12px;
            color: red; }
          
          #message {
            resize: vertical; }
          
          #form-message-warning, #form-message-success {
            display: none; }
          
          #form-message-warning {
            color: #B90B0B; }
          
          #form-message-success {
            color: #55A44E;
            font-size: 18px;
            font-weight: bold; }
          
          .submitting {
            float: left;
            width: 100%;
            padding: 10px 0;
            display: none;
            font-weight: bold;
            font-size: 12px;
            color: #000; }
          /* =============>>>> */

          /* ===start-blog=== */
          .blog_sec_box{
            padding: 40px 0;
          }
          /* ===end-blog=== */


          /* ===load-more=== */
          .box-container {
            padding: 0.5rem 0.5rem;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 10px;
            display: none;
          }
          
          .box-container:nth-child(1)
          /* .box-container:nth-child(2),
          .box-container:nth-child(3) */
           {
            display: inline-block;
            transition: 0.2s ease;
          }
          
          .box-container img {
            border-radius: 10px;
          }
          
          .box-container img:hover {
            transform: scale(1.02);
            border-radius: 10px;
            transition: 0.5s ease;
          }
          
          .load-more-btn {
            display: block;
            width: auto;
            text-align: center;
            justify-content: center;
            align-items: center;
          }
          
          .load-more-btn button {
            padding: 1rem 1rem;
            width: auto;
            color: white;
            background-color: orange;
            border-radius: 5px;
            border: none;
            text-align: center;
            justify-content: center;
            align-items: center;
          }
          
          .load-more-btn button:hover {
            background-color: pink;
          }
          
          .load-more-btn button:active {
            background-color: orange;
          }
          
          @media (max-width: 500px) {
            .container {
              display: grid;
              grid-template-columns: 1fr;
              grid-template-rows: 1fr;
              grid-gap: 20px;
              padding: 1rem 0.5rem;
            }
          }
          
          @media (max-width: 991px) {
            .container {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
              grid-gap: 1rem;
              padding: 1rem 0.5rem;
            }
          }


          .content-box ul{position: relative; list-style: none; padding-left: 0px;}
        .content-box ul li{position: relative; padding-left: 30px;}

        .content-box ul li:before{background-color: #4a86e1;
            border-radius: 50px;
            color: #fff;
            content: "\f00c";
            font-family: fontawesome;
            font-size: 10px;
            height: 20px;
            line-height: 20px;
            left: 0;
            position: absolute;
            text-align: center;
            top: 6px;
            width: 20px;}
   

        .content-box h3{position: relative;
            
            font-weight: 400;
            
            font-size: 22px;
            font-weight: 700;
            }
        .content-box h2{ position: relative;
            letter-spacing: 1px;
            font-weight: 700;
            border-left: 3px solid #4a86e1;
            font-size: 24px;
            font-weight: 700;
            padding-left: 11px;}
        .content-box ul li, .content-box ol li{line-height: 28px;
            color: #000;
            font-size: 16px;
            letter-spacing: 0.5px;}
        .content-box p{line-height: 28px;
            color: #000;
            font-size: 16px;
            letter-spacing: 0.5px;}
        .section-title {
            text-align: center;
            padding-bottom: 30px;
        }


        .section-title h1 {
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            border-radius: 50px;
            letter-spacing: 1px;
            font-weight: 700;
            padding: 20px 0px;
            margin: 15px 0 0 0;
            font-size: 28px;
            font-weight: 700;
        }

        .section-title h1:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 5px;
            width: 55px;
            background-color: #000;
        }
        .section-title h1:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 2px;
            height: 1px;
            width: 95%;
            max-width: 255px;
            background-color: #333;
        }

      .header-main .dropdown .dropdown-menu a:hover {
        background: #000!important;
        color: #ffffff!important;
    }  

    .header-main .dropdown-item{border-bottom: 1px solid #333;}