@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900&amp;subset=latin-ext');
*
 {
     padding:0px;
     margin:0px;
     box-sizing: border-box;
 }
body {
    font-family: 'Lato', sans-serif;
    color: #110D0C;
    font-size: 16px;
    line-height: 20px;
}
h1{
    font-weight: 600;
}
h2{
    font-weight: 900;
}
header {
    background: #fff;
    border-bottom: 1px solid rgb(219, 219, 219);
    width: 100%;
}
    header.fixed {
        position: fixed;
        -webkit-animation-name: example;
        /* Safari 4.0 - 8.0 */
        -webkit-animation-duration: .4s;
        /* Safari 4.0 - 8.0 */
        animation-name: example;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
        animation-duration: .4s;
        z-index:99;

        }

/* Safari 4.0 - 8.0 */

@-webkit-keyframes example {
    from {
        top: -50px
    }

    to {
        top: 0;
    }
}

/* Standard syntax */

@keyframes example {
    from {
        top: -50px
    }

    to {
        top: 0;
    }
}


  /*topbar*/
  .top-bar{
      padding:  0px;
	  margin:0px;
	  width:100%;
	  height:auto;
  }

  

/*logo*/
.brand-logo {
    height: 50px;
}
.brand-logo img {
    max-width: 100%;
    max-height: 100%;
}
/*logo end*/


/*top heading*/
.top-heading {
    padding: 50px 0;
    background: #003087;
    color: #fff;
}
.top-heading h1{
	padding:0px;
	margin:0px;
	font-size:2em;
	font-weight:600;
	margin-bottom:10px;
}
@media (max-width: 992px)
{
.top-heading h1 {
    font-size: 1.5em;
}
}
.top-heading p{
    line-height: 28px;
	padding:0px;
	margin:0px;
	opacity:0.9;
}
/*top heading end*/
/*top bar end*/


/*width 767px*/
@media only screen and (max-width: 767px){
    .top-heading {
        padding: 30px;
    }
    .top-socailicon{
        float:none;
        margin: 0 auto;
        display: table;
    }
    .top-bar {
        padding: 10px 0;
    }
    .card{
        margin-bottom: 20px;
    }
}
/*width 385px*/
@media only screen and (max-width: 450px){
    .brand-logo p{
        font-size: 12px;
        margin-left: 0;
        margin-top:-10px;
    }
    .logo-col{
        padding-right: 0;
        padding-left: 5px;
    }
    .top-heading {
        padding: 30px 10px;
    }
}
/*top navigation*/
.top_navbar {
    margin:0;
    text-align:right;
}
.top_navbar li{
    /*margin:0 10px;*/
    list-style:none;
    display:inline-block;
    position:relative;
}

.top_navbar a {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    padding: 0px;
    display:block;
    padding:24px 10px;
    position:relative;
}

@media(max-width:1199px) {
    .top_navbar a {
        padding: 24px 5px;
    }
}
.top_navbar a:before{
    content:'';
    height:2px;
    width:0px;
    left:50%;
    position:absolute;
    bottom:0;
    transform:translate(-50%, 0);
    background:#003087;
    transition:.3s ease-in-out;
}
.top_navbar a:hover{
    text-decoration:none;
}
.top_navbar a:hover::before{
   width:100%;
}
@media(min-width:992px) {
    .top_navbar li ul.drop_down {
        position: absolute;
        background: #fff;
        min-width: 250px;
        left: 0;
        z-index: 9;
        transition: .2s all;
        top:0;
        opacity:0;
        pointer-events: none;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 4px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
    }

    .top_navbar li:nth-last-child(-n+2) ul.drop_down {
        left: auto;
        right: 0;
    }

    .top_navbar li:hover ul.drop_down {
        pointer-events: all;
        transition: .3s all;
        top: 68px;
        opacity:1;
    }

    .top_navbar li ul li {
        display: block;
        text-align: left;
        margin: 0;
    }
    .top_navbar li ul.drop_down li a {
        padding: 10px;
        font-size:15px;
    }

    .top_navbar li ul.drop_down ul.sub_dropdown {
        position: absolute;
        background: #fff;
        left: 0px;
        top: 0;
        min-width:250px;
        opacity: 0;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 4px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
        transition: .3s ease-in-out
    }
    .top_navbar li ul.drop_down li:hover ul.sub_dropdown {
        opacity:1;
        left:100%;
    }
    .top_navbar li ul.drop_down li a i.fa-angle-right {
        position:absolute;
        right:10px;
        top:12px;
    }
}

.top_navbar .blog_search a::before{
    content:none;
}
.blog_search a {
    background: #003087;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    padding: 0;
    transition: .3s ease-in-out;
}
    .blog_search a:hover {
        background: #003087;
    }
/*blogs card*/
.tobopad {
    padding: 2em 0px !important;
}
.carddatcal{
	display:block;
    color:#959797;
    font-size: 16px;
	margin-bottom:5px;
}

.show-more-btn{
    flex:0 0 100% !important;
	max-width:100% !important;  
	display:flex;
	justify-content:center;
}

.show-more-btn button{
    font-weight: 600;
    font-size: 25px;
	width:250px;
	padding:15px 0px;
	margin-top:30px;
	transition:0.3s all;
}

.subscribe{
	
	display:table;
	margin-left:auto;
    
	margin-right:auto;
}
.subscribe h2 {
   padding: 0px;
   margin: 0px;
   font-size: 1.7em;
   font-weight: 700;
   margin-bottom:20px;
}
.subscribe .input-group
 {
	 width:auto;	
	 position:relative;
 }
@media (min-width:570px)
{
.subscribe .input-group
  {
	   margin:0px 30px;
  }
}
.subscribe .input-group > .form-control {
    border: none;
    padding: 25px 0;
    padding-left: 50px;
    background: none;
    border: 0;
    border-bottom: 2px solid #003087;
    border-radius: 0;
    color: #090f10;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}
.subscribe input:active,
.subscribe input:focus
 {
	 outline:none !important;
	 box-shadow:none !important;
 }
.search_input::-webkit-input-placeholder {
    color:#959797 !important;
	font-weight:500 !important;
}
.subscribe span{
    position: absolute;
    left: 15px;
    top: 15px;
    color:#959797;
    z-index: 999;
    font-size: 20px;
}
.subscribe button {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    background: none;
    position: relative;
    color: #fff;
    transition: .3s ease-in-out;
}
    .subscribe button::after {
        content: '';
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background: #003087;
        position: absolute;
        z-index: -1;
        transition: .3s ease-in-out;
    }

.subscribe button::before{
    content:'';
    top:0;
    left:0;
    height:100%;
    width:100%;
    background:#003087;
    position:absolute;
    z-index:-1;
    transition:.3s ease-in-out;
}
.subscribe button:hover::after, .subscribe button:hover::before{
    height:10px;
    width:10px;
}
.subscribe button:hover{
    color:#003087;
}
.subscribe .btn-hover:hover
 {
	 background-color:#1b4e53;
	 color:#fff;
	 outline:none;
 }
.btn-hover:hover{
	background-color:transparent;
	color:#003087;
}


@media (max-width: 470px){
    .subscribe input{
        width: 100% !important;
    }
    .subscribe span{     
    left: 20px;
    }
    .subscribe button{
        width: 100% !important;
        margin-top: 20px;
    }
    .subscribe .input-group-append{ 
        width: 100%;
    }
}
/*blogs card*/

/*add banner*/

.addbanner{
	display:none;
	opacity:0;
    margin-top:50px;
	visibility:hidden;
}
.addbanner img
 {
	 max-width:100%;
 }
@media (min-width:992px)
{
.addbanner
 {
	 display:block;
	 opacity:1;
	 visibility:visible;
 }
}

/*add banner end*/


/*footer*/
footer {
    background: #003087;
    padding: 30px 0;
}

.footer-copyright p
 {
	 padding:0px;
	 margin:0px;
	 color: #fff;
 }
.footer-copyright p a{
    color:#fff;
    font-weight:600;
}
.footer-copyright p a:hover{
    color:#fff;
    text-decoration:none;
}
.footer-link {
	margin:0px;
}
.footer-link li{
    display:inline-block;
    font-size: 18px;
    list-style: none;
    padding-right:5px;
}
.footer-link li a{
    text-decoration: none;
    color:#003087;
    text-align:center;
    line-height:30px;
    border-radius:50px;
    position:relative;
    display:block;
    height:30px;
    width:30px;
    z-index:1;
    transition:.3s ease-in-out;
}
.footer-link li a:hover{
    color:#fff;
    text-decoration:none;
}
.footer-link li a:before{
    content: "";
    border-radius:50px;
    height:100%;
    z-index:-1;
    width:100%;
    position:absolute;
    left:0;
    top:0;
    background:#fff;
    transition:.5s ease-in-out;
}
.footer-link li a:hover:before{
        transform: rotate3d(1, 1, 1, 120deg);
    background:#003087;
}


/*blog category*/
.blog-title{
    padding: 30px 0;
    padding-bottom: 0;
}
.blog-name{
    margin: 0 auto;
    display: table;
}
.blog-name h1{
    
}
/*blog category*/

/*blog detail */


.blog-views{
    background: #E5EBEB;
    padding: 15px;
	margin:0px;
    position:sticky;
    top:100px;
}
.blog-views p{
    color: #090f10;
    color: #090f10;
    font-size: 18px;
	padding:0px;
	margin:0px;
	margin-bottom:8px;
}
.blog-reads{
    border-bottom: 1px solid #F1F2F2;
	padding:15px 0px;
	padding-top:0px;
}
.blog-views span {
	display:block;
    font-weight: 600;
    font-size: 22px;
}

.blog-comments{
	padding:15px 0px;
  border-bottom: 1px solid #F1F2F2;
} 

.blog-comments a{
	display:inline-block;
    margin-top:15px;
    background: #4A68FF;
    border:2px solid #4A68FF;
    color: #fff;
    padding: 6px 10px;
    font-size: 18px;
    transition: 0.3s all;
}
.blog-comments a:hover{
    background:transparent;
    border:2px solid #4A68FF;
    color: #4A68FF;
    transition: 0.3s all;
	text-decoration:none;
}


.any-query{
	padding-top:15px;
}
.any-query p{
    color: #090f10;
    font-size: 20px;
	margin-bottom:15px;
}
    .any-query a {
        padding: 6px 10px;
        font-size: 18px;
        background: #003087;
        color: #fff;
        transition: 0.3s all;
        border: 2px solid #003087;
    }
.any-query :hover
{
	background-color:transparent;
	color:#003087;
}




.blog-share{
	padding-bottom:15px;
	margin:0px;
	border-bottom: 1px solid #dee2e6;
}
.blog-share ul
 {
	 padding:0px;
	 margin:0px;
	 list-style:none;
 }
.blog-share ul:after
 {
	 content:'';
	 clear:both;
	 display:table;
 }
.blog-share ul li
 {
	 display:inline-block;
	 padding:0px 10px;
	 margin:0px;
 }
.blog-share ul li:first-child
 {
	 padding-left:0px;
 }
.blog-share ul li:last-child
 {
	 padding-right:0px;
 }
 
.blog-share ul li a
{
	color:#003087;
}
 
/*leave comment*/
.comment-border{
   height: 5px;
   width: 100%;
   background: #E5EBEB;
   margin-top: 40px;
}
.leave-comment{
    background: #fff;
}

.comment-input{
    width: 100%;
    padding:8px 15px;
   height:50px;
    font-size: 20px;
	border:1px solid #707D7E;
    font-size:18px;
    font-weight:600;
}
textarea.comment-input {
    height:auto;
}
.comment-input::-webkit-input-placeholder {

    font-weight:500;
    font-size:18px;
}
.comment-input:active,
.comment-input:focus {
    border: 1px solid #959797;
    outline: none;
}
 
.all-comment
 {
	 width:100%;
	 padding:0px;
	 margin:0px;
	 border-top:5px solid #E5EBEB;
	 padding-top:30px;
 }

.all-comment span{
    color: #707d7e;
    margin-left: 10px;
}
.comment-img{
    height: 80px;
    width: 80px;
    overflow: hidden;
    border-radius: 50%;
}
.comment-img img{
    max-height: 100%;width: 100%;
    height: -webkit-fill-available;
}
@media (min-width:768px)
{
.comment-det{
    margin-left: 10px;
}
}
.comment-det h2{
    font-size: 22px;
	padding:0px;
	font-weight:600;
	margin:0px;
	margin-bottom:10px;
}
.comment-det p {
    line-height: 30px;
    font-size: 18px;
    color: #090f10;
    padding: 0px;
    margin: 0px;
}
.comment-det span{
    color: #959797;
    font-size: 16px;
    font-weight: 500;
}
.reply-btn{
	display:inline-block;
    border: 2px solid #003087;
    color:#003087;
    padding: 6px 15px;
	margin-top:20px;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    transition: .5s ease-in-out;
}
.reply-btn::after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    top: 2px;
    content: "\f30b";
    left: 5px;
}
a.reply-btn:hover , a.reply-btn a:hover{
    background: #003087;
    color: #fff !important;
    text-decoration: none;
    transition: .5s ease-in-out;
    cursor:pointer;
}
.comment-btn {
    display: inline-block;
    border: 2px solid #003087;
    color: #003087;
    padding: 6px 15px;
    margin-top: 20px;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    transition: .5s ease-in-out;
}

    .comment-btn::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: relative;
        top: 2px;
        content: "\f086";
        left: 5px;
    }

    .comment-btn:hover, .comment-btn a:hover {
        background: #003087;
        color: #fff !important;
        text-decoration: none;
        transition: .5s ease-in-out;
        cursor: pointer;
    }


/*blog detail end*/
.btn-gr{
    background: #003087;
    color: #fff;  
    transition:0.3s all;
	border: 4px solid #003087;
}

.navgamenubaar
 {
	 width:auto;
	 padding:0px;
	 margin:0px;
	 border:1px solid;
	 justify-content: center;
 }
.navgamenubaar ul li:first-child
 {
	 margin-left:0px;
 }
 

@media (min-width:1200px)
{
.navmainbox
 {
	 width:85%;	 
	 justify-content:center;
	 margin-left:auto;
	 margin-right:auto;
 }
}
@media (min-width:992px)
{
.navmainbox ul
 {
	 display:flex;
	 flex-direction:row;
 }
}


.navmainbox ul li a
 {
	 position:relative;
 }

@media (min-width:992px)
{
.navmainbox ul li a:after
 {
	 content:'';
	 width:0%;
	 height:4px;
	 background-color:#003087;
	 position:absolute;
	 left:0px;
	 border-radius:50px;
	 bottom:0px;
	 transition:0.3s all;
 }
.navmainbox ul li a:hover:after
 {
	 content:'';
	 width:100%;
	 transition:0.3s all;
 }
.navmainbox ul li a.active
 {
	 color:#003087;
	 font-weight:600;
 }
.navmainbox ul li a.active:after
 {
	 width:100%;
 }
}

.catrtoogle {
    display: none;
}
@media (max-width:991px)
{
    header {
        padding:10px 0; 
    }
    .top_navbar a {
        padding:10px;
        font-size:16px;

    }
    .top_navbar li.blog_search a {
        padding:0;
    }
    .top_navbar  li ul {
        display:none;
    }
    .navmainbox .filter-btn {
        display: none;
    }
    
    .navmainbox {
        padding: 0px;
        margin: 0px -15px;
    }
.dactive_side
 {
	 left:-250px;
	 opacity:0;
	 transition:0.3s all;
 }
.active_side
 {
	 left:0px;
	 opacity:1;
	 transition:0.3s all;
 }
.navmainbox ul
 {
	 display:block;
	 padding:0px;
	 width:100%;
	 vertical-align:top;
	 top:0px;
	 margin-top:0px;
 }
.navmainbox ul li
 {
	 margin-left:15px !important;
 }
.catrtoogle
 {
	 display:block;
	 width:32px;
	 cursor:pointer;
 }
.catrtoogle span
 {
	display: block;
    height: 2px;
    background-color: rgb(41, 41, 41);
    margin-bottom: 5px;
 }
.catrtoogle span:nth-child(2)
 {
	 width:15px;
 }
.catrtoogle span:nth-child(3)
 {
	 margin-bottom:0;
 }
}

.backoverley
 {
	 width:100%;
	 height:100%;
	 padding:0px;
	 margin:0px;
	 position:fixed;
	 top:0px;
	 left:0px;
	 background-color:rgba(0,0,0,0.5);
 }
 
.blogname_head
 {
	 width:100%;
	 padding:0px;
	 margin:0px;
	 height:auto;
	 text-align:center;
	 margin-bottom:1.5em;
 }
.blogname_head h2
{
	padding: 0px;
    margin: 0px;
        font-size: 28px;
    font-weight: 600;
}
.disnoss
 {
	 display:none;
 }
 
.blog-detail
 {
	 width:100%;
	 height:auto;
	 padding:0px;
	 margin:0px;
 }
 
.btn_comment
 {
	 width:auto;
	 padding:10px 15px;
	 margin:0px;
	 background-color:#003087;
	 border:2px solid #003087;
	 color: #fff;
     transition: 0.3s all;
	 outline:none;
 }
.btn_comment:active,
.btn_comment:focus
 {
	 outline:none;
 }
.btn_comment:hover
{
	background-color:#1b4e53;
	 color:#fff;
	 outline:none;
}
.cardboxcomment
 {
	 width:100%;
	 padding:15px;
	 margin-top:10px;
 }
@media (min-width:768px)
{
.cardboxcomment
 {
	 width:600px;
 }
}
.cardboxcomment h2
 {
	 padding:0px;
	 margin:0px;
	 margin-bottom:15px;
 }
 
.closecommbox
 {
	 width:auto;
	 padding:0px;
	 margin:0px;
	 color:#003087 !important;
	 font-weight:600 !important;
	 cursor:pointer;
 }
.closecommbox i
 {
	 color:#fff;
	 width:20px;
	 height:20px;
	 text-align:center;
	 line-height:20px;
	 background-color:#003087;
 }
.collapsesss
 {
	 display:none;
 }

@media (max-width:768px)
{
.rigsires
 {
	 display:none;
 }
}

.repeadcomments
 {
	 width:100%;
	 padding:0px;
	 margin:0px;
	 height:auto;
 }
.repeadcomments ul
 {
	 list-style:none;
	 padding:0px;
	 margin:0px;
 }
.repeadcomments ul li
 {
	 border-bottom:1px solid #E5EBEB;
	 padding:15px 0px;
	 display:flex;
	 flex-wrap:wrap;
 }
.repeadcomments ul li:first-child
 {
	 padding-top:0px;
 }
.repeadcomments ul li:last-child
 {
	 padding-bottom:0px;
	 border-bottom:none;
 }

@media (max-width:768px)
{
.repeadcomments ul
 {
	 padding:0px 15px;
 }
}
.repeadcomments ul li .col-lg-1,
.repeadcomments ul li .col-md-2,
.repeadcomments ul li .col-lg-11,
.repeadcomments ul li .col-md-10
 {
	 padding-left:0px;
	 padding-right:0px;
 }

.blog_box {
    margin-top: 50px;
    border-top: 2px solid #003087;
    padding-top: 50px;
}
.blog_img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    transition:.3s ease-in-out;
}
.blog_box:hover .blog_img {
    margin-top:-20px;
    margin-bottom:50px;
}
.blog_img .date {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    background-color: #000;
    border-radius: 6px;
}
.blog_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background-color: rgb(117, 117, 117);
    bottom: 0px;
    left:50%;
    transform:translate(-50%, 0);
    z-index:-1;
    filter: blur(15px);
    transition:.3s ease-in-out;
}
.blog_box:hover .blog_img::before {
bottom:-15px;
}
.blog_img img{
    border-radius:5px;
}
.blog_dets .tags li{
    display:inline-block;
}
.blog_dets .tags li a{
    color:#003087;
    margin-right: 20px;
    font-size: 14px;
    transition:.3s ease-in-out;
    font-weight: 400;
}
.blog_dets .tags li a:hover{
    color:#090f10;
    text-decoration:none;
}
.blog_dets h2 {
    line-height:25px;
}
.blog_dets h2 a {
    color: rgb(41, 41, 41);
    font-size: 21px;
    font-weight: 700;
     transition:.3s ease-in-out;
}
.blog_dets h2 a:hover{
    color:#003087;
    text-decoration:none;
}
.blog_dets p {
  
    color: rgb(41, 41, 41);
    font-weight: 400;
    line-height: 2;
    margin-bottom: 0px;
}
    .blog_dets p.full_date {
        color: #003087;
        font-weight:500;
    }
.blog-card .col-sm-6:nth-child(1) .blog_box, .blog-card .col-sm-6:nth-child(2) .blog_box {
    margin-top: 0;
    border:0;
    padding-top:0;
}
.sec_shadow {
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.1);
}

.sec_padd {
    padding: 50px 0;
}
}

.about_seccont {
    background-size: cover;
}

.client_sec {
    background-image: url(../../img/11.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 90% 76%;
}
.searchsec {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: .3s ease-in-out;
    background-color: rgb(250, 250, 250);
    transform: rotate3d(50, 0, 0, 155deg);
    top: 70px;
    height:100%;
    opacity:0;
    pointer-events:none;
}
.searchsec.clicked{
    height:auto;
    pointer-events:all;
    opacity:1;
    transform:none;
}
.searchsec .form-group{
    position:relative;
    margin:0;
}
.searchsec .form-control{
    height:50px;
    border-radius:0;
    border-color:#fff;
    font-weight:500;
    color:#090f10;
    padding-right:120px;
}
.searchsec .form-control:active, .searchsec .form-control:focus{
    outline:0;
    box-shadow:none;
    border-color:#003087;
}
.searchsec .form-control::-webkit-input-placeholder, .searchsec .form-control::-moz-placeholder{
    color:#959797;
    font-weight:500;
}
.searchsec button{
    position:absolute;
    top:0;
    right:0;
    height:100%;
    padding:0 25px;
    border:1px solid #003087;
    color:#fff;
    z-index:1;
    font-weight:500;
    background:none;
    transition: .3s ease-in-out;
}

.searchsec button::after {
    content: '';
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #003087;
    position: absolute;
    z-index: -1;
    transition: .3s ease-in-out;
}

.searchsec button::before {
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #003087;
    position: absolute;
    z-index: -1;
    transition: .3s ease-in-out;
}

.searchsec button:hover::after, .searchsec button:hover::before {
    height: 10px;
    width: 10px;
}

.searchsec button:hover {
    color: #003087;
}
.side_nav {
    display:none;
}
@media(max-width:991px) {
    .top_navbar li {
        padding-right:10px;
        display:block;
    }
    .top_navbar li.listblog {
        display: none;
    }
        .top_navbar li.blog_search{
            display:inline-block;
        }
        .brand-logo a {
            display: flex;
            height: 50px;
        }
    .top_navbar  a i {
        position:absolute;
        right:0;
    }
    .top_navbar li.blog_search a i {
        position:relative;
    }
    .top_navbar a i.fa-angle-right {
        transform: rotate(90deg);
    }
    .brand-logo img {
        margin: auto;
    }
    .side_nav {
        display:block;
        position:fixed;
        left:-350px;
        top:0;
        height:100%;
        width:275px;
        background:#fff;
        z-index:999;
        transition:.3s ease-in-out;
    }
    .side_nav.show{
        left:0;
    }
    .side_nav .top_navbar li.listblog{
        display:block;
    }
    .side_nav .top_navbar li.blog_search{
        display:none;
    }
    .side_nav .top_navbar {
        text-align:left;
        padding-top:20px;
    }
    .side_nav .d-flex{
        padding:10px;
        border-bottom:1px solid #E5EBEB;
        align-items:center;
    }
    .side_nav .catrtoogle{
        margin-left:auto;
    }
    .side_nav .catrtoogle span:nth-child(2) {
        display:none;
    }
     .side_nav .catrtoogle span:nth-child(3) {
        transform:rotate(45deg);
        margin:0;
        width:20px;
        margin-top:-2px;
    }
     .side_nav .catrtoogle span:nth-child(1) {
        transform:rotate(-45deg);
        margin:0;
        width:20px;
    }
}
.overlay {
    position: fixed;
    display: none;
    width: 100%; 
    height: 100%; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
}

@media(max-width:767px) {
    .blog_dets h2 {
        line-height:22px;
    }
    .blog_dets h2 a {
        font-size: 18px;
    }
    .blog_dets .tags {
        margin-bottom:5px;
    }
    .blog_img .date {
        height:55px;
        width:55px;
        left:15px;
        top:15px;
        font-size:22px;
    }
    .blog_box {
        margin-top:30px;
        padding-top:30px;
    }
    .subscribe h2 {
        font-size:22px;
    }
}
@media(max-width:575px) {
    .blog-card .col-sm-6:nth-child(2) .blog_box {
        margin-top: 30px;
        padding-top: 30px;
        border-top:2px solid #003087;
    }
    .blog_search a {
        height:40px;
        width:40px;
        line-height:40px;
    }
}
.blog-detail h1 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(41, 41, 41);
    line-height: 1.53;
    margin-bottom: 10px;
}
.blog-post-time {
    display: block;
    font-size: 15px;
    color: rgb(41, 41, 41);
    font-weight: 400;
    text-transform: uppercase;
}
.blog-detail-text, .blog-detail-text p, .blog-detail-text span, .blog-detail-text a, .blog-detail-text li{
    font-family: 'Montserrat', sans-serif !important;
    font-size:16px !important;
    text-align:left !important;
    line-height:28px !important;
}
.blog-detail-text img{
    width:100% !important;
    height:auto !important;
}

.blog-detail-text p{
    margin:20px 0;
}
@media(max-width:767px) {
    .blog-detail h1 {
        font-size:22px;
    }
    .blogname_head h2 {
        font-size:20px;
    }
}

.blog-detail-text ul li {
    list-style:none;
    padding-left:10px;
    position:relative;
}
.blog-detail-text ul li::before{
    content:'-';
    left: 0;
    font-weight: 800;
    color: #003087;
    position: absolute;
}
.blog-detail-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: rgb(41, 41, 41);
    line-height: 1.53;
    margin-bottom: 10px;
}
.blog-detail-text h3 {
    font-size: 25px;
    font-weight: 700;
    color: rgb(41, 41, 41);
    line-height: 1.53;
    margin-bottom: 10px;
}

@media(max-width:767px) {
    .blog-detail-text h2, .blog-detail-text h3 {
        font-size:22px;
    }
}

