/**
* Template Name: Taranga Writing
* Updated: Dec 26 2023 with Bootstrap v5.3.2
* Template URL: https://techtaranga.com/
* Author: Sheikh Nesarul Islam 
*/
:root{  
    --primaryColor: #1bbd36; 
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #4d4643;
}
body, article, h1, h2, h3, h4, h5, h6, textarea, input, select, .topbar, .main-menu, .breadcrumb, .copyrights-area, form span.required {
  font-family: 'SolaimanLipi', Arial, sans-serif !important;
}
a {
  color: var(--primaryColor);
  text-decoration: none;
}

a:hover {
  color: #4c4c4c;
  text-decoration: none; 
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 50px;
  z-index: 996;
  background: var(--primaryColor);
  width: 45px;
  height: 45px;
  border-radius:100%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #21df41;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #111;
}

#header .logo a span {
  color: var(--primaryColor);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Header Search
--------------------------------------------------------------*/
.header-search-icon {
  margin-left: 20px;
  border-left: 1px solid #c4c4c4;
}

.header-search-icon a {
  color: #4f514f;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
  font-size: 20px;
}

.header-search-icon a i {
  line-height: 0;
}

.header-search-icon a:hover {
  color: var(--primaryColor);
}

@media (max-width: 768px) {
  .header-search-icon {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px 10px 10px;
  
  font-family: 'SolaimanLipi', Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primaryColor);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid var(--primaryColor);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    padding-left: 35px;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
    color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primaryColor);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  height: 100%;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primaryColor);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0 20px;
    padding: 0px 0;
    height: 100%;
    z-index: 99;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: unset !important;
    border: unset !important;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

li.dropdown:after {
    content: "\F22C";
    float: right;
    font-style: normal;
    margin-left: 3px;
    font-size: 16px;
    position: absolute;
    right: 4px;
    top: 10px;
    font-family: bootstrap-icons !important;
    transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    -ms-transition: opacity .3s linear;
    -moz-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
} 
.navbar-mobile ul li.dropdown:after{ 
    right: 30px;
}
.dropdown ul  li::before {
    content: '\F135';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0px;
    font-size: 34px;
    color: #333;
}
.navbar-mobile .dropdown ul  li::before { 
    left: -8px; 
}
.navbar-mobile .dropdown ul a {
  padding: 10px 25px;
} 
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primaryColor);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primaryColor);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--primaryColor);
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: var(--primaryColor);
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content {
  text-align:justify;
}
.blog .entry .entry-content img{ 
    width: 100%;
    height: auto;
}
.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: var(--primaryColor);
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: var(--primaryColor);
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content table {  
    width:100%; 
    overflow:auto; 
}
.blog .entry .entry-content table td,
.blog .entry .entry-content table th{  
   border:1px solid;
  padding:3px;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: var(--primaryColor);
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111;
}


.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  color: #bfb9b6;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--primaryColor);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}
.tt-card{
  border-radius: 7px;
}
.tt-card h3 {
    text-align: center;
    border-top: 3px solid red;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    padding: 9px;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.tt-card-body {
    padding: 10px 5px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.tt-shadow {
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.search-form form input[type=search] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 80px);
}
input[type="search"]:focus {
  outline: none;
}

.search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--primaryColor);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-form form button i {
  line-height: 0;
}

.search-form form button:hover {
  background: #1ecf3b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--primaryColor);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #515151;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #c4c4c4;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--primaryColor);
  background: var(--primaryColor);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}


/** article Block **/
.article-block {
    display: flex;
    align-items: center;
    padding-top: 10px !important;
}
.article-image {
    position: relative;
}
.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 40px;
    color: white;
    text-shadow: 0px 0px 10px #00000078;
}
.article-image img {
    height: auto;
    width: 100%;
    border-radius: 6px;
}

.article-meta h4 a {
    color: #111;
    font-size: 16px;
    font-weight: 800;
    transition: 0.3s;
}
.article-meta h4 a:hover{
      color: var(--primaryColor);
}
.article-image {
    width: 30%;
}

.article-meta {
    width: 70%;
}
.article-block:first-child {
  border:unset;
  padding-top: 0;
}
.article-block.have-first:first-child {
  display: block;
  border:unset;
  padding: 0;
}
.article-block.have-first:first-child  .article-image {
    width: 100%;
}
.article-block.have-first:first-child  .article-meta {
    width: 100%;
}
.hero-post .article-block{
  position: relative;
}
.hero-post .article-block .article-meta {
    width: 100%;
    position: absolute;
    bottom: 0;
}
.hero-post .article-block .article-image {
  position: relative;
}

 .hero-post .article-block .article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-post .article-block .article-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 51%) 100%);
}
.hero-post .article-block .article-meta h4 a {
    color: white;
}
.hero-post .article-block .article-meta h4 a:hover{
      color: var(--primaryColor);
}
.hero-post .article-block .article-meta span{
      color: #d3d3d3;
}
.hero-post .article-block .article-image img {
    height: auto;
    width: 100%;
    border-radius: 10px;
}

.news-tablist{
    border:none
}
.news-tablist .nav-item{
    border:none;
    margin-right:35px
}
.news-tablist .nav-item:last-child{
    margin-right:0
}
.news-tablist .nav-item .nav-link{
    background-color:transparent;
    border:none;
    font-size:16px;
    line-height:30px;
    font-weight:500;
    color:#3a3a3c;
    position:relative;
    padding:0
}
.news-tablist .nav-item .nav-link:after{
    position:absolute;
    bottom:5px;
    left:0;
    content:"";
    width:0;
    height:1px;
    background-color:var(--primaryColor);
    transition:var(--transition);
    visibility:visible;
    opacity:0
}
.news-tablist .nav-item .nav-link.active{
    color:var(--primaryColor)
}
.news-tablist .nav-item .nav-link.active:after{
    visibility:visible;
    opacity:1;
    width:100%
}
.news-tablist-two{
    border:none;
    border-radius:5px
}
.news-tablist-two .nav-item{
    width:50%;
    border:none
}
.news-tablist-two .nav-item .nav-link{
    width:100%;
    border:none;
    background-color:#3a3a3c;
    color:white;
    font-size:20px;
    line-height:30px;
    font-weight:500;
    padding:15px 20px;
    transition:0.3s;
    border:none
}
.news-tablist-two .nav-item .nav-link.active{
    background-color:var(--primaryColor)
}
.news-tablist-two .nav-item:nth-child(1) .nav-link{
    border-radius:5px 0 0 0
}
.news-tablist-two .nav-item:nth-child(2) .nav-link{
    border-radius:0 5px 0 0
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1e1e1e;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'SolaimanLipi', Arial, sans-serif !important;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primaryColor);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color:white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.tt_search {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

.tt_search   input[type=search] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.tt_search  .sbtn-tt {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primaryColor);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.tt_search .footer-newsletter input[type=submit]:hover {
  background: #2ae149;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--primaryColor);
  color: #fff;
  text-decoration: none;
}
#st-cmp-v2 .st-cmp-app .st-cmp-settings { 
    display: none !important; 
}



/* Custom Css*/

#news-container {
  border: 3px solid aliceblue;
  padding: 8px;
}
.border_3px{
    border: 3px solid aliceblue;
    border-top: 0px;
    padding-bottom: 1rem;
}
