body {
    /*font-family: "Heebo", sans-serif;*/
}

:root {
    --orange: #F04F3A;
    --yellow: #F47920;
    --white: #FFFFFF;
    --black: #000000;
    --grey: #e7e7e8;
    --grey-100: #a2a2a2;
    --dark-grey: #212529;
    --light-grey: #F5F5F5;
}

/*-------------------------------------common css for other pages banner start-------------------------------------*/
.section {
    position: relative;
    overflow: hidden;
}
.section .compe_bg {
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: var(--black);
}
.compe_bg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0, 0.7);
}
.section .default_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .section .banner_text {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        max-width: 1050px;
        width: 100%;
    }

.section .item_body {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    color: var(--white);
    
}

    .section .item_body .breadcrumb {
       
    }

.section .item_body .breadcrumb .breadcrumb-item a {
    color: var(--yellow);
}
    .section .item_body .breadcrumb .breadcrumb-item.active {
        color: var(--grey-100);
    }

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: var(--grey-100);
    content: ">";
}
.section .item_body .banner-titletext {
    margin-bottom: 1rem;
    /*text-shadow: rgba(0, 0, 0, 0.9) 1px 2px 4px;*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.built-tech {
    max-width: 550px;
    margin: 0 auto;
    overflow: hidden;
}

.built-tech .built, .built-tech .tech-sec {
    text-align: center;
    float: left;
    width: 50%;
}

.built-tech .built h3, .built-tech .tech-sec h3 {
    font-size: 24px;
    margin: 0 0 20px;
    color: var(--white);
}

.built-tech .item-list {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.built-tech .item-list .item {
    display: inline-flex;
}

.built-tech .item-list img {
    border: 0;
    height: auto;
    width: 40px;
    vertical-align: middle;
}
/*-------------------------------------common css for other pages banner end-------------------------------------*/

.content_body {
    width: 92%;
}


/*-------------------------------------common css for blog detail & portfolio detail page start-------------------------------------*/
.b_details ul li {
    list-style: disc;
}

.b_details .blog_sidebar {
    padding: 30px;
    margin-bottom: 24px;
    background-color:#f0f0f0;
	border-radius:5px;
}
.b_details blockquote {
    position: relative;
    padding: 15px 30px;
    margin: 0 0 24px;
    border-left: 5px solid var(--orange);
    color: var(--black);
    background: linear-gradient(90deg,rgba(240, 79, 58,.2) 0,rgba(1,25,255,0) 100%);
}

.b_details .recent-post-item {
    gap: 20px;
    display: grid;
    align-items: start;
    overflow: hidden;
    margin-bottom: 24px;
    grid-template-columns: 96px 1fr;
}

.b_details .recent-post-thumb {
    margin-top: 6px;
    height: 65px;
}

.b_details .recent-post-thumb img {
    width: 100%;
    
}

.b_details .pd-content-item img {
    width: 100%;
}
.b_details .recent-post-data p {
    font-size: 0.85rem;
}

.b_details .recent-post-data p.post-title {
    margin-bottom: 5px;
    color: var(--black);
    display: block;
    height: 20px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.b_details .recent-post-data p.post-para {
    margin-bottom: 5px;
    line-height: 22px;
    color: var(--dark-grey);
    display: block;
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.b_details .sidebar .recent-post-item {
    display: block;
}

@media (max-width: 992px) {
    .b_details .recent-post-data p.post-para {
        display: block;
    }
    .b_details .recent-post-data p.post-title {
        height: auto;
        white-space: wrap;
    }
}

@media (max-width: 576px) {
    .b_details .recent-post-item {
        display: block;
    }
    .b_details .recent-post-data {
        margin-top: 1rem;
    }
}

/*-------------------------------------common css for blog detail & portfolio detail page end-------------------------------------*/

.two_sec.white {
    background-color: var(--white);
}

.two_sec.grey {
    background-color: var(--light-grey);
}

.two_sec .comp_img {
    /*max-width: 625px;
    width: 100%;*/
    max-width: 100%;
    height: auto;
}

  /*-------------------------------------admin page Start-------------------------------------*/
 .table
 {
    border-color: #E0E0E0;
    background-color: #fff;
 }
  .table th
  {
    color:#212121;
    font-weight: 500;
    font-size: 13px;
  }
  .table td
  {
    color:#666666;
    font-weight: 400;
    font-size: 13px;
  }
  .table td p
  {
    color:#666666;
    font-weight: 400;
    font-size: 13px;
   
  }
  .blog-content
{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.table td img
{
    width: 110px;
  
}
  
   .table td a i
  {
    color:#757575;
    
  }

  .table th i
  {
    color:#757575;
    
  }
  .table-responsive .filter_blk
  {
    padding: 1rem;
    background-color: #f5f5f5;
  border-radius: 5px;
  }
 .table-responsive .filter_blk .form-inline
  {
    row-gap: 10px;
	column-gap: 10px;
  }
  .search-form
  {
    background-color: #fff;
    border: solid 1px #e0e0e0;
    border-bottom: none;
    padding:10px;
    border-radius: 5px 5px 0px 0px;

  }
  
  
  

  .table-responsive .filter_blk .dc-form-default :not([class~="note-editor"]) .dc-button, .table-responsive .dc-form-default :not([class~="note-editor"]) a.dc-button, .table-responsive .dc-form-default :not([class~="note-editor"]) button.dc-button
  {
    height: 36px;
  line-height: 36px;
  
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 0px;
  margin-bottom:0px;
  }
  .table > thead
  {
    vertical-align:middle;
    height: 52px;
  }
  .btn-primary
  {
    font-size: 14px;
	font-weight: 400;
    text-transform: uppercase;
    border-radius: 5px;
    margin-left: 10px;
    background-color: #040e56!important;
    border-color: #040e56!important;
  }

  .btn-primary:hover
  {
    opacity: 0.8;
  }

  .btn-secondary{

    font-size: 14px;
	font-weight: 400;
    text-transform: uppercase;
    border-radius: 5px;
    margin-left: 10px;
    border:solid 1px #040e56!important;
    color:#040e56!important;
    background-color: #fff!important;
  }
  .btn-secondary:hover{
    opacity: 0.8;
  }

  .btn-success
  {
    font-size: 14px;
	background-color: #146EF5;
    font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
 
  }

  .btn-success:hover
  {
    background-color: #146EF5;
    opacity: 0.8;
  }
  
  .btn-danger
  {
   font-size: 14px;
   background-color: #fff;
    font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
  border:none!important;
  color:#146EF5;
  text-decoration:none;
 
  }

  .btn-danger:hover
  {
    background-color: #d0e2fd;
    color:#146EF5;
  }
  
  .btn-success:focus{
	background-color:rgb(20, 110, 245);
	opacity:0.8;
	 box-shadow:none;
	
  }
  .btn-success:active{
	background-color:rgb(20, 110, 245);
	opacity:0.8;
	 box-shadow:none;
	
  }
  
  .btn-danger:focus{
	background-color: #d0e2fd;
    color:#146EF5;
	 box-shadow:none;
	
  }
  .btn-danger:active{
	background-color: #d0e2fd;
    color:#146EF5;
	 box-shadow:none;
	
  }
  .btn-success:active:focus
  {
	  box-shadow:none;
  }
  .btn-danger:active:focus
  {
	  box-shadow:none;
  }
  .btn:focus, .btn:active:focus
  {
	  box-shadow:none;
  }
  
  
  
  .plus-mr
  {
    margin-right: 5px;
  }
  .ml0
  {
	  margin-left:0px!important;
  }
  .mr0
  {
	  margin-right:0px!important;
  }
  .simple-pagination
  {
	  padding:0px;
  }
  
  .light-theme li span:last-child
  {
	  margin-right:0px;
	  margin-left:5px;
  }
  
  .btn
  {
	  padding:0px;
  }
  .blog_grid_sec .tile
  {
	  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.2);
	box-shadow: 0 1px 10px rgba(0,0,0,.2);
  }
  .blog_grid_sec .blog-content a
  {
	  color:#040e56;
	  
  }
  .para_txt
  {
	  font-size: 20px;
	  font-weight: 500;
	  text-decoration:none;
  }
  .single-post .post-full
  {
	  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.2)!important;
  box-shadow: 0 1px 10px rgba(0,0,0,.2)!important;
  border-radius: 5px;
  }
  
    .search-box
  {
   
	background-color: #fcfeff;
  border-radius:15px;
  padding: 30px 30px 30px 30px;
 
  margin: 0 auto;
  box-shadow: 2px 2px 12px 2px rgba(0,0,0,.1);
  
  

  }
  
   .search-box .form-floating > label
   {
	    color:#626262;
   }
   .search-box .remember
    {
      text-align:start;
      font-size:14px;
    }
    
    .search-box .remember label
    {
      color:#0f2542;
      margin-left:10px;
    }
	
	.search-box .btn-primary
	{
		background-color: #146ef5;
  border: solid 1px #146ef5;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 2px 2px 12px 2px rgba(0,0,0,.1);
  padding: .5rem 1rem;
  margin-left:0px;
	}
	
	.search-box .login-head
	{
		font-size: 22px;
  color: #040e56;
  font-weight: 500;
  margin-bottom:15px;
  text-align:center;
  
	}
	
	