
/* Blog-page 28-Dec-2023 */
.blog_grey_box {
    width: 100%;
    background: #eee;
    padding: 30px;
    box-shadow: inset 0px 0px 7px #0000002e;
}

.pb--70 {
    padding-bottom: 70px !important;
}
.pt--70 {
    padding-top: 70px !important;
}


.blog_main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 25px;
    row-gap: 30px;
}

.blog_box {
    list-style: none;
    position: relative;
    margin-bottom: 0px;
    background: #fff;
    padding: 30px;
    transition: all .5s ease-in-out;
    border: 1px solid #c5c5c5;
    display: flex;
    gap: 30px;
    border-radius: 5px;
}

.blog_box .img_box {
    border-radius: 10px;
    overflow: hidden;
    width: 30%;
}

.blog_box h4 {
    color: #123785;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: normal;
}

.blog_main .blog_box a, .mybtn {
    font-weight: 600;
    color: #000000;
    transition: 0.5s ease-in-out all;
    background: #dcdcdc;
    display: table;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 5px;
    border-bottom: 3px solid #151515;
    line-height: normal;
}

.blog_main .blog_box:hover a, .mybtn:hover {
    transition: 0.5s ease-in-out all;
    background: #123785;
    border-color: #001237;
    color: #ffffff;
}

.blog_main .blog_box .img_box img {transition: .5s ease-in-out all;}

.blog_main .blog_box:hover .img_box img {
    transition: all .5s ease-in-out;
    transform: scale(1.1);
}

.blog_main .blog_box:hover {
    transition: all .5s ease-in-out;
    /* background: #ebffff; */
    border-color: #123785;
}


.side-nav.page_sidevar.blog_left {
    min-height: 500px;
}

.side-nav.blog_left .sidebar-navigation ul li:last-child a {
    border: 0;
}


/* Page  */
.nav-tabs-2-title {
    padding: 10px 0px;
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 0.025em;
    text-transform: none;
}
.nav-tabs-2 {
    display: block;
    padding-top: 0;
    border: none;
    background: transparent;
    border: 1px solid #e7e7e7;
    border-style: dashed;
}
.nav-item-2 {
    font-size: 14px;
    line-height: 1.72;
    font-weight: 700;
    color: #151515;
}

.nav-item-2 a.active {
    background: #ce3312;
    color: #ffffff;
}

.nav-item-2 a:after {
    position: absolute;
    right: 15px;
    content: '\f0a9';
    font-family: 'fontawesome';
    top: 9px;
}
.nav > li.nav-item-2  > a {
    padding: 10px 15px;
    border-bottom: 1px solid #AFAFAF;
    border-bottom-style: dashed;
    transition: 0.5s ease-in-out all;
    padding-right: 30px;
}

.nav-item-2 a:hover {
    background-image: linear-gradient(-90deg, #EBEBEB, white);
    margin-left: 10px;
    color: #ce3312;
    transition: 0.5s ease-in-out all;
}

section.blog_details_sec {
    width: 100%;
    background: #ebebeb;
    padding: 60px 0;
}

section.blog_details_sec h5.nav-tabs-2-title {font-size: 24px;}

.blog_details_box { text-align:justify;  }

.innerTitle {
    font-size: 20px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
    position: relative;
    line-height: unset;
}
.innerTitle:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: #4e4e4e;
    bottom: -3px;
    border-radius: 23px;
}

.blog_details_box .title_blg {
    font-size: 25px;
}

.blog_details_box .title_blg span {
    display: table;
}

.blog_details_box .img_box {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #a3a3a3;
    margin-bottom: 20px;
}

.blog_close_mobile{ display:none; }
.blog_open_mobile{ display:none; }
/* Page  */



/* Responsive  */
@media(max-width:1024px){
  .blog_close_mobile{ display:table; }
  
  a.blog_open_mobile {
    background: #050505;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 99;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0px -4px 14px #000000ab;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
}

  div#blogToicId {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 92%;
    background: #ffffff;
    z-index: 999;
    overflow: auto;
    padding-bottom: 50px;
    box-shadow: 2px 0px 24px #000;
    transition: all 0.6s ease 0s;
    transform: rotateY(90deg);
    transform-origin: right center;
    opacity: 0;
    visibility: hidden;
  }

  a.blog_close_mobile {
    color: #d93714;
  } 
  div#blogToicId.openLeft {
    transition: all 0.6s ease 0s;
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
  }

}
/* 1024px  */



@media(max-width:768px){
  .blog_main {
    grid-template-columns: 1fr 1fr;
  } 
  section.blog_details_sec{ padding:30px 0; }

}
/*768px*/


@media(max-width:500px){
  .blog_main {
    grid-template-columns: 1fr;
  } 
  .blog_details_box .title_blg {
    font-size: 20px;
  }

}
/*500px*/

@media(max-width:375px){
  div#blogToicId{ width:100%; }

}
/*500px*/

/* Responsive  */

.blog_left .sidebar-navigation {
    padding: 0;
}

.blog_left .sidebar-navigation .sidebartitle {
    padding: 20px 55px;
    margin: 0 31px;
}

.side-nav.blog_left .sidebar-navigation ul li a {
    border-bottom: 1px dashed #dddddd38;
    padding: 13px 13px;
    position: relative;
    font-size: 14px;
}

.side-nav.blog_left .sidebar-navigation ul li a i {
    position: absolute;
    right: 19px;
}

.side-nav.blog_left .sidebar-navigation ul li:hover a, .side-nav.blog_left .sidebar-navigation ul li.active a {
    background: linear-gradient(-90deg, #2a2a2a, #ce251c) !important;
    padding-left: 20px;
}

.blog_left {
    background: #202020;
}

.side-nav.blog_left .sidebar-navigation ul li:hover a i, .side-nav.blog_left .sidebar-navigation ul li.active a i {
    color: #ff7873;
}




.blog_box ul {
    padding: 0;
    margin: 0;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
.blog_box ul li {
    display: flex;
    align-items: center;
    column-gap: 6px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #404040;
}
.blog_box ul li img {
    height: 17px;
    opacity: 0.8;
}


ul.blogauthor_ul {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.blogauthor_ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}
ul.blogauthor_ul li img {
    height: 17px;
    opacity: 0.8;
}

.rts-single-wized .wized-body .rts-search-wrapper input {font-size: 14px;padding: 0 14px;padding-right: 60px;}

.rts-single-wized .wized-body .rts-search-wrapper input::placeholder {
    font-size: 14px;
}

/* blog-page iNNER  */

.right_div_blog {}

.right_div_blog .title_page {
    font-size: 23px;
    line-height: unset;
    margin-bottom: 45px !important;
}

.right_div_blog .title_page::after {
    bottom: -16px;
}

.right_div_blog .img_box {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #00a5a4;
}

.right_div_blog ul.blogauthor_ul {
    margin: 17px 0;
    justify-content: unset;
    column-gap: 25px;
}

.right_div_blog ul.blogauthor_ul .blog_details {}

.right_div_blog  .blog_details p, .right_div_blog .blog_details h1, .right_div_blog .blog_details h2,  .right_div_blog .blog_details h4, .right_div_blog .blog_details h3, .right_div_blog .blog_details h5, .right_div_blog .blog_details span
{
  /*font-family: "Open Sans", sans-serif !important;*/
}

.right_div_blog  .blog_details span {
    font-size: 15px !important;
    line-height: 26px !important;
    text-align: justify;
    color: #505050 !important;
    margin-bottom: 0px !important;
}

.right_div_blog  .blog_details p {
    font-size: 16px !important;
    line-height: 27px !important;
    text-align: justify;
    color: #505050 !important;
    margin-bottom: 15px !important;
}

.right_div_blog .blog_details h1 {
    font-size: 25px !important;
    margin-bottom: 15px !important;
    line-height: normal !important;
}

.right_div_blog .blog_details h2 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
    line-height: normal !important;
}

.right_div_blog .blog_details h4, .right_div_blog .blog_details h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    line-height: normal !important;
}

.right_div_blog .blog_details h5, .right_div_blog .blog_details h5 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
    line-height: normal !important;
}


.blog_open_mobile {
    display: none;
}
.blog_close_mobile {
    display: none;
}

/* blog-page iNNER  */


/* Responsive  */
@media(max-width:1024px){
  ._page_sidebar_main.blog_list .right_div {
    width: 100%;
  }
 
  .blog_close_mobile{ display:table; }
  
  a.blog_open_mobile {
    background: #050505;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 99;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0px -4px 14px #000000ab;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
    left: 0;
}

  div#blogToicId {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 34%;
    background: #202020;
    z-index: 999;
    overflow: auto;
    padding-bottom: 50px;
    box-shadow: 2px 0px 24px #000;
    transition: all 0.6s ease 0s;
    transform: rotateY(90deg);
    transform-origin: right center;
    opacity: 0;
    visibility: hidden;
  }

  a.blog_close_mobile {
    color: #d93714;
  } 
  div#blogToicId.openLeft {
    transition: all 0.6s ease 0s;
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
  }

  .blog_left .sidebar-navigation .sidebartitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 17px 15px;
    background: #363636;
  }

  .blog_left .sidebar-navigation .sidebartitle:before, .blog_left .sidebar-navigation .sidebartitle:after {
      display: none;
  }




}
/* 1024px  */



@media(max-width:990px){
  div#blogToicId { width: 40%;  }
}
/*990px*/



@media(max-width:768px){
  div#blogToicId { width:50%;  }
  .blog_left .sidebar-navigation .sidebartitle {
    font-size: 16px;
  }

  .right_div_blog .blog_details p {
    font-size: 15px !important;
  }

  .right_div_blog .blog_details h4, .right_div_blog .blog_details h3 {
    font-size: 18px !important;
  }

  span.quote__icon {
    position: absolute;
    left: -9px;
    top: -2px;
  }



}
/*768px*/


@media(max-width:500px){
    div#blogToicId { width:80%;  }
}
/*500px*/


@media(max-width:425px){
  div#blogToicId { width:85%;  }
}
/*425px*/


@media(max-width:375px){
  div#blogToicId{ width:100%; }

}
/*500px*/


/* Responsive  */


.right_div_blog .title_page {
    font-size: 23px;
    line-height: unset;
    margin-bottom: 45px !important;
    color: #00a5a4;
    position: relative;
    font-weight: normal;
}

.right_div_blog .title_page::after {
    bottom: -16px;
}

._buttom_shade::after {
    background-image: linear-gradient(45deg, #00a5a4, rgb(255, 255, 255));
    height: 3px;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 33%;
}
.right_div_blog .blog_details .subtitle {
    font-size: 20px !important;
    font-weight: 500;
    color: #000;
}

/* Blog-page 28-Dec-2023 */

.blog_box .contentbox {
    width: 70%;
}

.blog_box p {
    text-align: justify;
    font-size: 15px;
    line-height: 25px;
}



/* New Blog Page   */
.blog_page {}

.blog_page ul.blog_date {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.blog_page ul.blog_date li img {
    height: 15px;
}

.blog_page ul.blog_date li {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.blog_page .img_box {
    margin: 25px 0;
    text-align: center;
}

.blog_page .img_box img {
    max-width: 500px;
    border-radius: 15px;
}
/* New Blog Page   */


