@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
:root {
  --primary-color:#e44332;
  --ltn__body-font:'Roboto', sans-serif;
  --white: #fff;
  --light-white:#f2f2f2;
  --black: #000000;
  --black-1:#252525;
  --black-2:#1A1A1A;
  --red:#ef0a27;
  --text-1:#a6a6a6;
  --text-2:#858484;
  --text-3:#333;
  --button-1:#262626;
  --border-1:#e6e6e6 ;
  --border-2:#e5e5e5;
  --border-3:#ddd;
  --transition: all 0.30s ease-in-out;
}

body {
  font-family: var(--ltn__body-font);
  background: none;
  color: var(--text-content);
  border-top: solid 5px var(--primary-color);
}

.padding20 {
  padding: 20px 0;
}

.padding30 {
  padding: 30px 0;
}

.padding40 {
  padding: 40px 0;
}

.padding60 {
  padding: 60px 0;
}

.padding40 {
  padding: 40px 0;
}

.padding80 {
  padding: 80px 0;
}

.background-1 {
  background: var(--light-white);
}

header .top-area {
  border-bottom: solid 1px var(--border-1);
  padding: 6px 0;
}

header .top-area .top-menu ul {
  margin: 0;
  padding: 0;
  float: right;
}

header .top-area .top-menu ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  float: left;
  font-size: 14px;
  padding: 0 10px;
}

header .top-area .top-menu ul li a {
  color: var(--text-3);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

header .top-area .top-menu ul li a:hover {
  color: var(--primary-color);
}

header .top-area .today-date {
  background-color: #f2f2f2;
  font-size: 13px;
  display: table;
  padding: 3px 15px 3px 10px;
  border-radius: 4px 0px 0px 4px;
  position: relative;
}

header .top-area .today-date::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -10px;
  background-color: #f2f2f2;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

header .top-area .today-date #hours, header .top-area .today-date #point, header .top-area .today-date #min, header .top-area .today-date #sec {
  font-weight: 700;
}

header .logo-area {
  padding: 10px 0;
}

header .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

header .navbar-toggler {
  background: var(--primary-color);
  border: none;
}

header .navbar {
  padding: 0;
  margin-top: 0;
  background: var(--white);
}

header .navbar ul {
  margin: 0;
  padding: 0;
}

header .navbar ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  float: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  letter-spacing: -0.010em;
  position: relative;
}

header .navbar ul li .active {
  background: var(--button);
  color: var(--primary-color);
}

header .navbar ul li a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 15px 15px;
  display: block;
}

header .navbar ul li a:hover {
  background: var(--primary-color);
  color: var(--white);
}

header .navbar ul li:hover {
  background: var(--primary-color);
  color: var(--white);
}

header .navbar ul li:hover::before {
  background: #b22617;
  top: -5px;
}

header .navbar ul li::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  top: 0px;
  left: 0;
  background: var(--white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

header .navbar ul .dropdown .dropdown-menu {
  margin-top: 0;
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  min-width: 630px;
  border-radius: 0px;
  z-index: 99999;
  left: auto;
  right: 0px;
  border: none;
}

header .navbar ul .dropdown .dropdown-menu li {
  background: var(--button);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
  border-bottom: 1px solid #ddd;
  font-weight: 400;
}

header .navbar ul .dropdown .dropdown-menu li a {
  padding: 10px 15px;
  display: block;
  color: var(--blue);
  font-size: 14px;
  text-transform: capitalize;
}

header .navbar ul .dropdown .dropdown-menu li:hover {
  background: var(--primary-color);
}

header .navbar ul .dropdown .dropdown-menu li:hover a {
  background: none;
  display: block;
  color: var(--white);
}

header .navbar ul .dropdown .dropdown-menu li:hover::before {
  top: 0px;
}

header .navbar ul .dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

header .navbar ul .dropdown .dropdown-menu .active {
  background: var(--black);
}

header .navbar ul .dropdown .sub-menu {
  margin-top: 0;
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  min-width: 250px;
  border-radius: 0px;
  z-index: 99999;
}

header .navbar ul .dropdown .sub-menu li {
  background: var(--button);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  width: 100%;
  display: block;
  border-bottom: 1px solid #ddd;
  font-weight: 400;
}

header .navbar ul .dropdown .sub-menu li a {
  padding: 10px 15px;
  display: block;
  color: var(--blue);
  font-size: 14px;
  text-transform: capitalize;
}

header .navbar ul .dropdown .sub-menu li:hover {
  background: var(--primary-color);
}

header .navbar ul .dropdown .sub-menu li:hover a {
  background: none;
  display: block;
  color: var(--white);
}

header .navbar ul .dropdown .sub-menu li:hover::before {
  top: 0px;
}

header .navbar ul .dropdown .sub-menu li:last-child {
  border-bottom: none;
}

header .navbar ul .dropdown .sub-menu .active {
  background: var(--black);
}

header .navbar ul .dropdown:hover a {
  background: var(--button);
  color: var(--blue);
}

header .navbar ul .dropdown:hover .dropdown-menu {
  -webkit-transform: scale(1);
          transform: scale(1);
  display: block;
}

header .navbar-brand {
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
}

header .nav-bg {
  background: #e17816;
  padding: 10px 0;
}

header .menu {
  background-color: #f2f2f2;
  padding-top: 5px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

figure .banner .row > * {
  padding: 0 3px;
  margin: 0;
}

figure .post-thumb {
  position: relative;
  overflow: hidden;
}

figure .post-thumb img {
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

figure .post-thumb .height-1 {
  height: 314px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

figure .post-thumb .height-2 {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

figure .post-thumb:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1) rotate(1deg);
          transform: scale3d(1.1, 1.1, 1) rotate(1deg);
}

figure .post-thumb:hover .overlay::before {
  opacity: 0.8;
}

figure .post-thumb .overlay {
  position: relative;
  display: block;
}

figure .post-thumb .overlay::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.63;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

figure .post-thumb .post {
  position: relative;
}

figure .post-thumb .post .category {
  background: var(--primary-color);
  font-size: .95em;
  line-height: 1em;
  padding: 4px 8px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(108, 108, 108, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(108, 108, 108, 0.2);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  margin-right: 3px;
  margin-bottom: 3px;
  display: table;
  position: absolute;
  z-index: 99;
  top: 10px;
  right: 10px;
  font-size: 13px;
}

figure .post-thumb .post .category a {
  color: var(--white);
  text-decoration: none;
}

figure .post-thumb .post .post-info {
  position: absolute;
  bottom: 25px;
  z-index: 9999;
  padding: 0 20px;
}

figure .post-thumb .post .post-info h2 {
  font-size: 21px;
  letter-spacing: -0.010em;
  font-weight: 700;
}

figure .post-thumb .post .post-info h2 a {
  color: var(--white);
  text-decoration: none;
}

figure .post-thumb .post .post-info .date {
  font-size: 13px;
  color: var(--white);
}

figure .post-thumb .post .post-info-2 {
  position: absolute;
  bottom: 25px;
  z-index: 9999;
  padding: 0 20px;
}

figure .post-thumb .post .post-info-2 h2 {
  font-size: 18px;
  letter-spacing: -0.010em;
  font-weight: 700;
}

figure .post-thumb .post .post-info-2 h2 a {
  color: var(--white);
  text-decoration: none;
}

figure .post-thumb .post .post-info-2 .date {
  font-size: 13px;
  color: var(--white);
}

figcaption h1 {
  font-size: 25px;
  font-weight: 500;
  margin: 0px;
}

figcaption .breadcrumbs {
  margin-bottom: 0;
}

figcaption .breadcrumbs ul {
  margin: 0;
  padding: 0;
  float: right;
}

figcaption .breadcrumbs ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  float: left;
  padding: 0 0px 0 15px;
  color: var(--primary-color);
  font-size: 14px;
  position: relative;
  margin-left: 10px;
}

figcaption .breadcrumbs ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 1px;
  padding: 0;
  vertical-align: middle;
  font-weight: 900;
  color: var(--primary-color);
}

figcaption .breadcrumbs ul li:first-child::before {
  display: none;
}

figcaption .breadcrumbs ul li a {
  color: var(--black);
  text-decoration: none;
}

section .posts-widget .nav-pills {
  background: var(--light-white);
  border-radius: 5px;
  padding: 5px 10px;
  border-radius: 4px;
}

section .posts-widget .nav-pills li {
  margin-right: 10px;
}

section .posts-widget .nav-pills li:nth-child(1) button {
  padding: 4px 8px 2px;
  border-radius: 3px;
  font-size: 11px;
  border: none;
  background: #9b59b6;
  color: var(--white);
}

section .posts-widget .nav-pills li:nth-child(2) button {
  padding: 4px 8px 2px;
  border-radius: 3px;
  font-size: 11px;
  border: none;
  background: #2ecc71;
  color: var(--white);
}

section .posts-widget .nav-pills li:nth-child(3) button {
  padding: 4px 8px 2px;
  border-radius: 3px;
  font-size: 11px;
  border: none;
  background: #e28712;
  color: var(--white);
}

section .posts-widget .nav-pills li:nth-child(4) button {
  padding: 4px 8px 2px;
  border-radius: 3px;
  font-size: 11px;
  border: none;
  background: #e60d9b;
  color: var(--white);
}

section .posts-widget .tab-content .post h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 20px 0 10px;
}

section .posts-widget .tab-content .post h2 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .posts-widget .tab-content .post h2 a:hover {
  color: var(--primary-color);
}

section .posts-widget .tab-content .post .meta {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 5px;
}

section .posts-widget .tab-content .post .meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

section .posts-widget .tab-content .post p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 25px;
}

section .posts-widget .tab-content .post .readmore {
  background: var(--button-1);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .posts-widget .tab-content .post .readmore:hover {
  background: var(--primary-color);
}

section .posts-widget .tab-content .post .post-list ul {
  margin: 0;
  padding: 0;
}

section .posts-widget .tab-content .post .post-list ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: solid 1px var(--light-white);
  padding: 10px 0;
}

section .posts-widget .tab-content .post .post-list ul li:last-child {
  border-bottom: none;
}

section .posts-widget .tab-content .post .post-list ul li img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .posts-widget .tab-content .post .post-list ul li .title {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

section .posts-widget .tab-content .post .post-list ul li .title a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .posts-widget .tab-content .post .post-list ul li .title a:hover {
  color: var(--primary-color);
}

section .posts-widget .tab-content .post .post-list ul li .text {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 3px;
  line-height: 19px;
}

section .posts-widget .tab-content .post .post-list ul li .meta {
  font-size: 13px;
  margin: 0;
}

section .posts-widget .tab-content .post .post-list ul li .meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

section .posts-widget .tab-content .post .post-list ul li i {
  color: var(--primary-color);
  display: none;
}

section .posts-widget-1 h1 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .posts-widget-1 h1::after {
  content: '';
  width: 29.5px;
  height: 29.5px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

section .posts-widget-1 .post h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 20px 0 10px;
}

section .posts-widget-1 .post h2 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .posts-widget-1 .post h2 a:hover {
  color: var(--primary-color);
}

section .posts-widget-1 .post .img-height {
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .posts-widget-1 .post .meta {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 5px;
}

section .posts-widget-1 .post .meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

section .posts-widget-1 .post p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 25px;
}

section .posts-widget-1 .post .readmore {
  background: var(--button-1);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .posts-widget-1 .post .readmore:hover {
  background: var(--primary-color);
}

section .posts-widget-1 .post .post-list ul {
  margin: 0;
  padding: 0;
}

section .posts-widget-1 .post .post-list ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: solid 1px var(--light-white);
  padding: 10px 0;
}

section .posts-widget-1 .post .post-list ul li:last-child {
  border-bottom: none;
}

section .posts-widget-1 .post .post-list ul li img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .posts-widget-1 .post .post-list ul li .title {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

section .posts-widget-1 .post .post-list ul li .title a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .posts-widget-1 .post .post-list ul li .title a:hover {
  color: var(--primary-color);
}

section .posts-widget-1 .post .post-list ul li .text {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 3px;
  line-height: 19px;
}

section .posts-widget-1 .post .post-list ul li .meta {
  font-size: 13px;
  margin: 0;
}

section .posts-widget-1 .post .post-list ul li .meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

section .posts-widget-1 .post .post-list ul li i {
  color: var(--primary-color);
  display: none;
}

section .entertainment h2 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .entertainment h2::after {
  content: '';
  width: 29.5px;
  height: 29.5px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

section .entertainment .post-item {
  margin-bottom: 50px;
}

section .entertainment .post-item .post-thumb {
  position: relative;
  margin-bottom: 20px;
}

section .entertainment .post-item .post-thumb img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .entertainment .post-item .post-thumb .cat-tag-list {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  background: var(--primary-color);
}

section .entertainment .post-item .post-thumb .cat-tag-list a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

section .entertainment .post-item h4 {
  font-size: 18px;
}

section .entertainment .post-item h4 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
}

section .entertainment .post-item h4 a:hover {
  color: var(--primary-color);
}

section .entertainment .post-item .meta {
  margin: 0px;
  font-size: 12px;
  color: var(--text-2);
}

section .entertainment .post-item .meta a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

section .recent-post h2 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .recent-post h2::after {
  content: '';
  width: 29.5px;
  height: 29.5px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

section .recent-post .post-thumb {
  position: relative;
  margin: 40px 0 25px;
}

section .recent-post .post-thumb .img-height-1 {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .recent-post .post-thumb .cat-tag-list {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  background: var(--primary-color);
}

section .recent-post .post-thumb .cat-tag-list a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

section .recent-post h3 {
  font-size: 23px;
  font-weight: 700;
}

section .recent-post h3 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .recent-post h3 a:hover {
  color: var(--primary-color);
}

section .recent-post .meta {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
}

section .recent-post .meta a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

section .recent-post p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 25px;
}

section .recent-post .readmore {
  background: var(--button-1);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .recent-post .readmore:hover {
  background: var(--primary-color);
}

section .recent-post .list ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 2;
          column-count: 2;
}

section .recent-post .list ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: solid 1px var(--border-1);
  padding: 10px 0;
}

section .recent-post .list ul li .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

section .recent-post .list ul li .title a {
  color: var(--text-3);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .recent-post .list ul li .title a:hover {
  color: var(--primary-color);
}

section .recent-post .list ul li .meta {
  margin: 0px;
}

section .recent-post .list ul li .meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

section .recent-post .list ul li:nth-of-type(4), section .recent-post .list ul li:nth-of-type(8) {
  border-bottom: none;
}

section .border-1 {
  border-top: solid 1px var(--light-white);
}

section .post-carousel {
  padding: 40px 20px;
  background: var(--light-white);
  position: relative;
}

section .post-carousel h2 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .post-carousel h2::after {
  content: '';
  width: 29px;
  height: 29px;
  border-radius: 4px;
  position: absolute;
  top: 49.8%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

section .post-carousel .owl-carousel .item .post-item .post-thumb {
  position: relative;
  margin-bottom: 20px;
}

section .post-carousel .owl-carousel .item .post-item .post-thumb img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .post-carousel .owl-carousel .item .post-item .post-thumb .cat-tag-list {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  background: var(--primary-color);
}

section .post-carousel .owl-carousel .item .post-item .post-thumb .cat-tag-list a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

section .post-carousel .owl-carousel .item .post-item h4 {
  font-size: 18px;
}

section .post-carousel .owl-carousel .item .post-item h4 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
}

section .post-carousel .owl-carousel .item .post-item h4 a:hover {
  color: var(--primary-color);
}

section .post-carousel .owl-carousel .item .post-item .meta {
  margin: 0px;
  font-size: 12px;
  color: var(--text-2);
}

section .post-carousel .owl-carousel .item .post-item .meta a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

section .post-carousel .owl-carousel .owl-nav {
  margin: 0px;
}

section .post-carousel .owl-carousel .owl-nav .owl-prev, section .post-carousel .owl-carousel .owl-nav .owl-next {
  width: 32px;
  height: 32px;
  position: absolute;
  top: -50px;
  background: var(--text-3);
  margin: 0px;
  color: var(--white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .post-carousel .owl-carousel .owl-nav .owl-prev:hover, section .post-carousel .owl-carousel .owl-nav .owl-next:hover {
  background: var(--primary-color);
}

section .post-carousel .owl-carousel .owl-nav .owl-prev {
  right: 40px;
}

section .post-carousel .owl-carousel .owl-nav .owl-next {
  right: 0px;
}

section .post-carousel .owl-carousel .owl-dots {
  display: none;
}

section .sports h1 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .sports h1::after {
  content: '';
  width: 29.5px;
  height: 29.5px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

section .sports .img-1 {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .sports .post h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 20px 0 10px;
}

section .sports .post h2 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .sports .post h2 a:hover {
  color: var(--primary-color);
}

section .sports .post .meta {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 5px;
}

section .sports .post .meta a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

section .sports .post p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 25px;
}

section .sports .post .readmore {
  background: var(--button-1);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .sports .post .readmore:hover {
  background: var(--primary-color);
}

section .sports .post .post-list ul {
  margin: 0;
  padding: 0;
}

section .sports .post .post-list ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: solid 1px var(--light-white);
  padding: 10px 0;
}

section .sports .post .post-list ul li:last-child {
  border-bottom: none;
}

section .sports .post .post-list ul li img {
  height: 65px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .sports .post .post-list ul li .title {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

section .sports .post .post-list ul li .title a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .sports .post .post-list ul li .title a:hover {
  color: var(--primary-color);
}

section .sports .post .post-list ul li .meta {
  font-size: 14px;
  margin: 0;
}

section .sports .post .post-list ul li .meta a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

section .sports .post .post-list ul li i {
  color: var(--primary-color);
}

section .sports-1 h1 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .sports-1 h1::after {
  content: '';
  width: 29.5px;
  height: 29.5px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

section .sports-1 .img-1 {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .sports-1 h3 {
  font-size: 23px;
  font-weight: 700;
}

section .sports-1 h3 a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .sports-1 h3 a:hover {
  color: var(--primary-color);
}

section .sports-1 .meta {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
}

section .sports-1 .meta a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

section .sports-1 p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 25px;
  margin: 0;
}

section .sports-1 .readmore {
  background: var(--button-1);
  padding: 10px 15px;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
}

section .sports-1 .readmore:hover {
  background: var(--primary-color);
}

section .post-left {
  padding: 20px;
  background: var(--light-white);
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

section .post-left .social-icons ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}

section .post-left .social-icons ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  float: left;
  margin-left: 15px;
  font-size: 16px;
}

section .post-left .social-icons ul li a {
  color: var(--text-1);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .post-left .social-icons ul li a:hover {
  color: var(--primary-color);
}

section .post-left h2 {
  background: var(--button-1);
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--button-1);
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: -0.010em;
  font-size: 16px;
  display: inline;
}

section .post-left h2::after {
  content: '';
  width: 29px;
  height: 29px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: -13px;
  background-color: var(--button-1);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

section .post-left .categories {
  margin: 25px 0 50px;
}

section .post-left .categories ul {
  margin: 0;
  padding: 0;
}

section .post-left .categories ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  padding: 5px 15px;
  border-bottom: solid 1px var(--border-3);
  transition: var(--transition);
}

section .post-left .categories ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 4px;
  vertical-align: middle;
  font-weight: 900;
  color: var(--primary-color);
}

section .post-left .categories ul li:hover {
  border-color: var(--primary-color);
}

section .post-left .categories ul li a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .post-left .categories ul li a:hover {
  color: var(--primary-color);
}

section .post-left .post-list {
  margin-top: 20px;
}

section .post-left .post-list ul {
  margin: 0;
  padding: 0;
}

section .post-left .post-list ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: solid 1px var(--border-2);
  padding: 10px 0;
}

section .post-left .post-list ul li:last-child {
  border-bottom: none;
}

section .post-left .post-list ul li .title {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

section .post-left .post-list ul li .title a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

section .post-left .post-list ul li .title a:hover {
  color: var(--primary-color);
}

section .post-left .post-list ul li img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

section .post-left .post-list ul li .meta {
  font-size: 14px;
  margin: 0;
  color: var(--text-2);
}

section .post-left .post-list ul li .meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

footer {
  background: var(--black-2);
  padding: 50px 0;
  color: var(--white);
}

footer ul {
  margin: 0;
  padding: 0;
  margin: 0 auto 10px;
  padding: 0;
  display: table;
  text-align: center;
}

footer ul li {
  list-style: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  float: left;
  font-size: 14px;
  padding: 0 10px;
}

footer ul li a {
  color: var(--white);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--primary-color);
}

/*back to top button*/
.back-to-top {
  display: none;
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  height: 80px;
  width: 3.125rem;
  text-align: center;
  font-size: 23px;
  line-height: 80px;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.back-to-top:hover {
  background-color: var(--text-3);
  color: var(--white);
}

/*end*/
.img-1 img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
  header .top-area {
    border-bottom: solid 1px var(--border-1);
    padding: 6px 0;
  }
  header .top-area .top-menu ul {
    margin: 0;
    padding: 0;
  }
  header .top-area .top-menu ul li {
    list-style: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    float: left;
    font-size: 12px;
    padding: 0 3px;
  }
  header .logo-area {
    padding: 10px 0;
  }
  header .navbar-toggler:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .navbar-toggler {
    background: var(--primary-color);
    border: none;
  }
  header .navbar {
    padding: 0;
    margin-top: 0;
    background: var(--white);
  }
  header .navbar ul {
    margin: 0;
    padding: 0;
  }
  header .navbar ul li {
    list-style: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    float: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    letter-spacing: -0.010em;
    position: relative;
  }
  header .navbar ul li .active {
    background: var(--button);
    color: var(--primary-color);
  }
  header .navbar ul li a {
    color: var(--black);
    text-decoration: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 5px 15px;
    display: block;
  }
  header .navbar ul li a:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  header .navbar ul li:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  header .navbar ul li:hover::before {
    background: #b22617;
    top: -5px;
  }
  header .navbar ul li::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    top: 0px;
    left: 0;
    background: var(--white);
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  header .navbar ul .dropdown .dropdown-menu {
    margin-top: 0;
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
    min-width: 250px;
    border-radius: 0px;
    z-index: 99999;
  }
  header .navbar ul .dropdown .dropdown-menu li {
    background: var(--button);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    width: 100%;
    display: block;
    border-bottom: 1px solid #ddd;
    font-weight: 400;
  }
  header .navbar ul .dropdown .dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    color: var(--blue);
    font-size: 14px;
    text-transform: capitalize;
  }
  header .navbar ul .dropdown .dropdown-menu li:hover {
    background: var(--primary-color);
  }
  header .navbar ul .dropdown .dropdown-menu li:hover a {
    background: none;
    display: block;
    color: var(--white);
  }
  header .navbar ul .dropdown .dropdown-menu li:hover::before {
    top: 0px;
  }
  header .navbar ul .dropdown .dropdown-menu li:last-child {
    border-bottom: none;
  }
  header .navbar ul .dropdown .dropdown-menu .active {
    background: var(--black);
  }
  header .navbar ul .dropdown .sub-menu {
    margin-top: 0;
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
    min-width: 250px;
    border-radius: 0px;
    z-index: 99999;
  }
  header .navbar ul .dropdown .sub-menu li {
    background: var(--button);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    width: 100%;
    display: block;
    border-bottom: 1px solid #ddd;
    font-weight: 400;
  }
  header .navbar ul .dropdown .sub-menu li a {
    padding: 10px 15px;
    display: block;
    color: var(--blue);
    font-size: 14px;
    text-transform: capitalize;
  }
  header .navbar ul .dropdown .sub-menu li:hover {
    background: var(--primary-color);
  }
  header .navbar ul .dropdown .sub-menu li:hover a {
    background: none;
    display: block;
    color: var(--white);
  }
  header .navbar ul .dropdown .sub-menu li:hover::before {
    top: 0px;
  }
  header .navbar ul .dropdown .sub-menu li:last-child {
    border-bottom: none;
  }
  header .navbar ul .dropdown .sub-menu .active {
    background: var(--black);
  }
  header .navbar ul .dropdown:hover a {
    background: var(--button);
    color: var(--blue);
  }
  header .navbar ul .dropdown:hover .dropdown-menu {
    -webkit-transform: scale(1);
            transform: scale(1);
    display: block;
  }
}
/*# sourceMappingURL=stylesheet.css.map */