@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --main-color: #cc2609;
  --body-bg: #fafafa;
  --card-bg: #FFF;
  --h-color: #000;
  --e-color: #eee;
  --border-color: #eaeaf5;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --subp-color: #adafca;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: #5e5c9a0f;
  --sub-light: #fcfcfd;
  --border-input: #dedeea;
}

.dark-mode {
  --main-color: #cc2609;
  --body-bg: #151521;
  --card-bg: #1e1e2d;
  --h-color: #FFF;
  --e-color: #181823;
  --border-color: #222836;
  --icon-active: #FFF;
  --icon-idle: #8b88ff;
  --subp-color: #9aa4bf;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: #0000000f;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

.form-group {
  width: 100%;
  position: relative;
  margin: 0;
}

@media (max-width: 991.98px) {
  .form-group {
    margin: 10px 0;
  }
}

.form-group label {
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  pointer-events: none;
  display: block;
  margin: 0;
  line-height: 1em;
}

.form-group .form-control {
  height: 50px;
  padding: 7px 20px 7px 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--h-color);
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group .form-control:focus {
  border-color: var(--main-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-group .form-control::-webkit-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group .form-control:-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group .form-control::-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group select {
  cursor: pointer;
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 5px 10px 0;
}

.form-check input {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  height: 17px;
  width: 16px;
  position: unset;
  margin: 3px 0 0 5px;
}

.form-check p {
  color: #2c2f32;
  font-size: .875rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  display: block;
  margin: 0;
}

.form-check p a {
  text-decoration: none;
  color: #FFF;
}

p.text {
  margin-top: 30px;
  font-size: .875rem;
  line-height: 1.7142857143em;
  font-weight: 500;
  color: var(--p-color);
}

p.text a {
  text-decoration: none;
  color: #6956e5;
  font-weight: 700;
}

.active-input label {
  padding: 0 6px;
  font-size: 0.55rem;
  top: 9px;
  right: 20px;
}

.header-container {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.urgent {
  overflow: hidden;
  background: #151521;
  height: 50px;
  position: fixed;
  width: 100%;
  z-index: 9;
}

@media (max-width: 767.98px) {
  .urgent {
    height: 40px;
  }
}

.urgent .urgent-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.urgent .urgent-content .swiper-wrapper {
  height: 50px;
}

@media (max-width: 767.98px) {
  .urgent .urgent-content .swiper-wrapper {
    height: 40px;
  }
}

.urgent .urgent-content .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.urgent .urgent-content .urgent-title {
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  background: #F8EB20;
  padding: 0 15px;
  height: 50px;
  line-height: 48px;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767.98px) {
  .urgent .urgent-content .urgent-title {
    height: 40px;
    font-size: 1.1rem;
    padding: 0 10px;
  }
}

.urgent .urgent-content a {
  text-decoration: none;
  display: block;
}

.urgent .urgent-content p {
  font-size: 0.95rem;
  margin: 0;
  color: #FFF;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media (max-width: 767.98px) {
  .urgent .urgent-content p {
    font-size: 0.8rem;
  }
}

.urgent .urgent-content img {
  margin: 0 10px;
}

.header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0 0 0;
  background-image: url(./assets/images/nav-bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 0;
  position: relative;
  top: 0;
}

.header .navbar {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
}

.header .navbar .upper-navbar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
}

@media (max-width: 991.98px) {
  .header .navbar .upper-navbar {
    display: block;
    text-align: center;
  }
}

.down-nav-container {
  background: var(--body-bg);
  background-image: url(./assets/images/nav-bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
}

.down-navbar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

@media (max-width: 991.98px) {
  .down-navbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .down-navbar {
    padding: 10px 0 0 0;
  }
}

.nav-logo {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991.98px) {
  .nav-logo {
    padding: 0 0;
  }
}

.nav-logo .nav-menu {
  display: none;
}

@media (max-width: 991.98px) {
  .nav-logo .nav-menu {
    display: block;
  }
}

.nav-logo .nav-menu .nav-menu-icon {
  cursor: pointer;
  margin-left: 10px;
}

.nav-logo .nav-menu .nav-menu-icon svg {
  height: 24px;
  width: 24px;
  fill: var(--h-color);
}

.nav-logo .nav-logo-container a {
  display: block;
  text-decoration: none;
  color: var(--h-color);
}

.nav-logo .nav-logo-container a img {
  height: 75px;
}

@media (max-width: 991.98px) {
  .nav-logo .nav-logo-container a img {
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .nav-logo .nav-logo-container a img {
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .nav-logo .nav-logo-container a img {
    height: 40px;
  }
}

.nav-logo .nav-logo-container a .author {
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .nav-logo .nav-logo-container a .author {
    font-size: .7rem;
  }
}

@media (max-width: 767.98px) {
  .nav-logo .nav-logo-container a .author {
    font-size: .6rem;
  }
}

@media (max-width: 575.98px) {
  .nav-logo .nav-logo-container a .author {
    font-size: .45rem;
  }
}

.nav-logo .nav-logo-container a .author .pretitle {
  font-weight: 600;
  color: var(--main-color);
}

.nav-logo .nav-logo-container a .author span {
  font-weight: 600;
  color: var(--h-color);
}

.nav-logo .upper-nav-actions {
  display: none;
}

@media (max-width: 991.98px) {
  .nav-logo .upper-nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav-logo .upper-nav-actions .search-icon {
  cursor: pointer;
}

.nav-logo .upper-nav-actions .search-icon svg {
  height: 24px;
  width: 24px;
  fill: var(--h-color);
}

.nav-logo .upper-nav-actions .nav-custom-link {
  height: 32px;
}

@media (max-width: 575.98px) {
  .nav-logo .upper-nav-actions .nav-custom-link .nav-custom-link-text {
    font-size: 0.6rem !important;
  }
}

.nav-search {
  width: 375px;
  padding: 0 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991.98px) {
  .nav-search {
    width: 500px;
    margin: auto;
    padding: 0;
    display: none;
  }
}

@media (max-width: 767.98px) {
  .nav-search {
    width: 400px;
    margin: auto;
    padding: 0;
  }
}

@media (max-width: 575.98px) {
  .nav-search {
    width: 100%;
    margin: auto;
    padding: 0;
  }
}

.nav-search form {
  width: 100%;
}

.nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}

@media (max-width: 991.98px) {
  .nav-search .form-group {
    margin: 10px 0 0 0;
  }
}

.nav-search .form-group .form-control {
  height: 50px;
  padding: 0 45px 0 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--h-color);
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .nav-search .form-group .form-control {
    height: 43px;
    padding: 0 40px 0 20px;
  }
}

.nav-search .form-group .form-control:focus {
  border-color: var(--main-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.nav-search .form-group .form-control::-webkit-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.nav-search .form-group .form-control:-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.nav-search .form-group .form-control::-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

@media (max-width: 575.98px) {
  .nav-search .form-group .form-control::-webkit-input-placeholder {
    font-size: 0.7rem;
  }
  .nav-search .form-group .form-control:-ms-input-placeholder {
    font-size: 0.7rem;
  }
  .nav-search .form-group .form-control::-ms-input-placeholder {
    font-size: 0.7rem;
  }
  .nav-search .form-group .form-control::placeholder {
    font-size: 0.7rem;
  }
}

.nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.nav-search .form-group .search-icon svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  height: 22px;
  width: 22px;
  fill: var(--h-color);
}

@media (max-width: 575.98px) {
  .nav-search .form-group .search-icon svg {
    font-size: 0.7rem;
    height: 18px;
    width: 18px;
  }
}

.nav-banner {
  background: var(--body-bg);
  margin: 0 20px 0 20px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  color: var(--h-color);
  min-height: 80px;
  width: 750px;
}

@media (max-width: 991.98px) {
  .nav-banner {
    display: none;
  }
}

.nav-today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 600;
  background: var(--e-color);
  background: transparent;
  padding: 7px 12px;
  border-radius: 2px;
  border-left: 1px solid var(--border-color);
}

@media (max-width: 1199.98px) {
  .nav-today {
    display: none;
  }
}

.nav-today a {
  text-decoration: none;
  color: unset;
}

.nav-today .nav-today-container {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-today .nav-today-container .nav-today-icon svg {
  fill: var(--h-color);
  fill: #FFF;
  height: 20px;
  width: 20px;
  margin-left: 8px;
}

.nav-today .nav-today-container .nav-today-info {
  font-size: 0.8rem;
  color: var(--body-color);
}

.nav-today .nav-today-container .nav-today-info span {
  color: var(--main-color);
  margin-bottom: -7px;
  display: block;
  font-weight: 600;
}

.nav-today .nav-today-container .nav-today-info .nav-date {
  margin-top: 3px;
  color: var(--h-color);
}

.nav-custom-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 600;
  background: var(--e-color);
  background: #941e09;
  padding: 7px 12px;
  border-radius: 4px;
  margin: 0 3px;
  height: 40px;
}

@media (max-width: 1350px) {
  .nav-custom-link {
    padding: 7px 7px 7px 12px;
  }
}

.nav-custom-link a {
  text-decoration: none;
  color: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-custom-link .nav-custom-link-container {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-custom-link .nav-custom-link-container .nav-custom-link-icon svg {
  fill: var(--h-color);
  fill: #FFF;
  height: 18px;
  width: 18px;
}

@media (max-width: 1350px) {
  .nav-custom-link .nav-custom-link-container .nav-custom-link-icon {
    display: none;
  }
}

.nav-custom-link .nav-custom-link-container .nav-custom-link-info {
  margin-right: 5px;
  color: var(--body-color);
}

.nav-custom-link .nav-custom-link-container .nav-custom-link-info span {
  color: var(--main-color);
  margin-bottom: -7px;
  display: block;
  font-weight: 500;
}

.nav-custom-link .nav-custom-link-container .nav-custom-link-info .nav-custom-link-text {
  margin-top: 3px;
  color: var(--h-color);
  color: #FFF;
  font-size: 0.75rem;
}

@media (max-width: 1350px) {
  .nav-custom-link .nav-custom-link-container .nav-custom-link-info .nav-custom-link-text {
    font-size: 0.65rem;
  }
}

.toggle-theme {
  cursor: pointer;
}

.settings-link {
  background: unset;
  cursor: pointer;
  padding-left: 0;
}

@media (max-width: 1350px) {
  .settings-link .nav-custom-link-icon {
    display: block !important;
  }
}

.settings-link svg {
  fill: var(--h-color) !important;
  height: 22px !important;
  width: 22px !important;
}

.urgent-link {
  background: #f8eb20;
}

.urgent-link .nav-custom-link-container .nav-custom-link-icon svg {
  fill: #000;
}

.urgent-link .nav-custom-link-container .nav-custom-link-info .nav-custom-link-text {
  color: #000;
}

.cities-link {
  background: #941e09;
}

.nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991.98px) {
  .nav-actions {
    display: none;
  }
}

.nav-actions ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
}

.nav-actions ul li {
  cursor: pointer;
}

.nav-actions ul li svg {
  height: 26px;
  width: 26px;
  fill: var(--h-color);
}

.nav-actions .toggle-theme svg g path {
  fill: var(--h-color);
}

@media (max-width: 767.98px) {
  .nav {
    width: 100%;
  }
}

.nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .nav .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: scroll;
    padding-bottom: 10px;
  }
}

.nav .nav-links li.nav-link {
  margin: 0 0;
  padding: 0.5rem 0.7rem;
  position: relative;
}

.nav .nav-links li.nav-link:hover .nav-link-dropdown {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1350px) {
  .nav .nav-links li.nav-link {
    padding: 0.5rem 0.4rem;
  }
}

@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link {
    padding: 0.4rem 0.6rem;
  }
}

.nav .nav-links li.nav-link a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--h-color);
  text-decoration: none;
}

@media (max-width: 1350px) {
  .nav .nav-links li.nav-link a {
    font-size: 0.85rem;
  }
}

.nav .nav-links li.nav-link a svg {
  margin-right: -1px;
  height: 21px;
  width: 21px;
  fill: var(--h-color);
}

@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link a svg {
    display: none;
  }
}

.nav .nav-links li.nav-link .nav-link-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: var(--card-bg);
  z-index: 100;
  padding: 10px 0 10px 0;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  -webkit-transform: translate(0, -15px);
          transform: translate(0, -15px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link .nav-link-dropdown {
    display: none;
  }
}

.nav .nav-links li.nav-link .nav-link-dropdown ul li {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 8px 20px 7px 35px;
}

.nav .nav-links li.nav-link .nav-link-dropdown ul li:hover {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.nav .nav-links li.nav-link .nav-link-dropdown ul li:hover a {
  color: var(--main-color);
}

.nav .nav-links li.nav-link .nav-link-dropdown ul li:hover .nav-link-dropdown-l2 {
  opacity: 1;
  visibility: visible;
}

.nav .nav-links li.nav-link .nav-link-dropdown ul li a {
  font-size: 0.8rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav .nav-links li.nav-link .nav-link-dropdown ul li a svg {
  position: absolute;
  left: 6px;
  top: 10px;
}

.nav .nav-links li.nav-link .nav-link-dropdown-l2 {
  position: absolute;
  top: 40px;
  right: 113px;
  background: var(--card-bg);
  z-index: 100;
  padding: 10px 10px 10px 25px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  -webkit-transform: translate(0, -35px);
          transform: translate(0, -35px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
  .nav .nav-links li.nav-link .nav-link-dropdown-l2 {
    display: none;
  }
}

.nav .nav-links li.nav-link .nav-link-dropdown-l2 ul li {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav .nav-links li.nav-link .nav-link-dropdown-l2 ul li a {
  font-size: 0.8rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: var(--h-color) !important;
}

.nav .nav-links li.nav-link .nav-link-dropdown-l2 ul li a:hover {
  color: var(--main-color) !important;
}

.big-nav {
  width: 280px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 15;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background-image: url(./assets/images/nav-bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  overflow: auto;
}

@media (max-width: 575.98px) {
  .big-nav {
    width: 100%;
    height: 100vh;
  }
}

.big-nav .big-nav-header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 20px 15px 20px;
  border-bottom: 1px solid #e6e6e6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.big-nav .big-nav-header-title .nav-logo-container a {
  text-decoration: none;
  color: #000;
}

.big-nav .big-nav-header-title .nav-logo-container a img {
  height: 45px;
}

@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a img {
    height: 45px;
  }
}

.big-nav .big-nav-header-title .nav-logo-container a .author {
  font-size: 0.55rem;
  color: var(--h-color);
}

@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a .author {
    font-size: .55rem;
  }
}

.big-nav .big-nav-header-title .nav-logo-container a .author .pretitle {
  font-weight: 600;
  color: var(--main-color);
}

.big-nav .big-nav-header-title .nav-logo-container a .author span {
  font-weight: 600;
  color: var(--h-color);
}

.big-nav .big-nav-header-title .close-big-nav svg {
  fill: #000;
  width: 30px;
  cursor: pointer;
}

.big-nav .big-nav-search .nav-search {
  width: 100%;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.big-nav .big-nav-search .nav-search form {
  width: 100%;
}

.big-nav .big-nav-search .nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}

.big-nav .big-nav-search .nav-search .form-group .form-control {
  height: 43px;
  padding: 0 40px 0 20px;
  background-color: var(--card-bg) fff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

.big-nav .big-nav-search .nav-search .form-group .form-control:focus {
  border-color: var(--main-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.big-nav .big-nav-search .nav-search .form-group .form-control::-webkit-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}

.big-nav .big-nav-search .nav-search .form-group .form-control:-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}

.big-nav .big-nav-search .nav-search .form-group .form-control::-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}

.big-nav .big-nav-search .nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}

.big-nav .big-nav-search .nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.big-nav .big-nav-search .nav-search .form-group .search-icon svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  font-size: 0.7rem;
  height: 18px;
  width: 18px;
}

.big-nav .nav-links {
  width: 100%;
  height: 100%;
  position: relative;
}

@media (max-width: 767.98px) {
  .big-nav .nav-links ul {
    overflow: scroll;
    height: calc(100vh - 200px);
  }
}

.big-nav .nav-links ul .ul-head {
  padding-right: 30px;
  color: #adafca;
  font-size: .75rem;
  font-weight: 500;
}

.big-nav .nav-links ul li {
  text-decoration: none;
  color: #adafca;
  width: 100%;
  display: block;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #e5e5e58a;
}

.big-nav .nav-links ul li .li-link {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.big-nav .nav-links ul li .li-link .link-info {
  white-space: nowrap;
  border-radius: 50px;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 20px 0 0;
}

.big-nav .nav-links ul li .li-link .link-info a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  padding: 17px 0 17px 15px;
}

.big-nav .nav-links ul li .li-link .li-link-icon {
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  cursor: pointer;
  padding: 17px 0 17px 15px;
}

.big-nav .nav-links ul li .li-link .li-link-icon svg {
  height: 16px;
  width: 16px;
  fill: #000;
}

.big-nav .nav-links ul li .nav-link-popup {
  width: 280px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 20;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background-image: url(./assets/images/nav-bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  overflow: auto;
}

@media (max-width: 575.98px) {
  .big-nav .nav-links ul li .nav-link-popup {
    width: 100%;
    height: 100vh;
  }
}

.big-nav .nav-links ul .li-active {
  background-color: var(--card-bg);
  color: #000;
}

.big-nav .nav-links ul .li-active a svg {
  fill: var(--main-color);
}

.big-nav .nav-links ul .li-active a svg g [fill] {
  fill: var(--main-color);
}

.big-nav .nav-links ul .li-active a .svg-icon path {
  fill: var(--main-color);
  stroke: var(--main-color);
}

.big-nav .nav-links ul .li-active a .link-info {
  visibility: visible;
  padding-right: 8px;
}

.big-nav .nav-links ul .li-active a .link-info span {
  color: var(--main-color) !important;
}

.big-nav .nav-links ul .li-active a .link-info span:hover {
  color: var(--main-color);
}

.big-nav .nav-links ul .li-active:hover {
  background: var(--card-bg);
  color: var(--main-color);
}

.big-nav::-webkit-scrollbar {
  display: none;
}

.big-nav-hiddin {
  -webkit-transform: translate(560px, 0);
          transform: translate(560px, 0);
  opacity: 0;
  z-index: -1 !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 10;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.open-over {
  opacity: 1;
  visibility: visible;
}

.active-dropdown {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.content {
  background-color: var(--body-bg);
  padding-top: 20px;
}

.header-custom-class {
  margin-bottom: 50px !important;
  top: 50px !important;
}

.down-nav-custom {
  top: 49px !important;
}

@media (max-width: 767.98px) {
  .down-nav-custom {
    top: 40px !important;
  }
}

.pt-250 {
  padding-top: 250px !important;
}

.footer {
  background-image: url(assets/images/bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer .footer-container {
  padding: 50px 0 25px 0;
}

.footer .footer-container .footer-part {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .footer .footer-container .footer-logo {
    margin-bottom: 25px;
  }
}

.footer .footer-container .footer-logo img {
  height: 100px;
}

.footer .footer-container .footer-logo .author {
  font-size: 1.1rem;
  padding-right: 7px;
  color: var(--h-color);
}

.footer .footer-container .footer-logo .author .pretitle {
  font-weight: 600;
  color: var(--main-color);
}

.footer .footer-container .footer-logo .author span {
  font-weight: 600;
}

.footer .footer-container .footer-social {
  margin: 25px 0;
}

.footer .footer-container .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.footer .footer-container .footer-social ul li {
  margin: 0 7px;
}

.footer .footer-container .footer-social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  padding: 5px;
}

.footer .footer-container .footer-social ul li a svg {
  height: 30px;
  width: 30px;
  fill: var(--h-color);
}

.footer .footer-container .footer-apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  display: none;
}

.footer .footer-container .footer-apps .footer-app {
  margin: 0 7px;
}

.footer .footer-container .footer-apps .footer-app a img {
  max-width: 95%;
}

.footer .footer-container .footer-col {
  text-align: right;
  display: inline-block;
  margin-bottom: 25px;
}

@media (max-width: 991.98px) {
  .footer .footer-container .footer-col {
    padding-left: 50px;
  }
}

.footer .footer-container .footer-col .footer-head {
  margin-bottom: 25px;
}

.footer .footer-container .footer-col .footer-head a {
  text-decoration: none;
  color: var(--h-color);
  font-size: 1.3rem;
  display: block;
}

.footer .footer-container .footer-col ul {
  margin: 0;
  padding: 0;
}

.footer .footer-container .footer-col ul li {
  color: var(--h-color);
  font-size: 13px;
  margin: 0 0 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .footer-container .footer-col ul li:hover {
  -webkit-transform: translate(-7px, 0);
          transform: translate(-7px, 0);
}

.footer .footer-container .footer-col ul li span {
  color: var(--h-color);
}

.footer .footer-container .footer-col ul li a {
  color: var(--h-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer .footer-container .newsletter {
  background-color: var(--border-color);
  border-radius: 12px;
  padding: 35px 25px;
  width: 100%;
}

.footer .footer-container .newsletter span {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--h-color);
}

.footer .footer-container .newsletter button {
  margin-top: 15px;
  width: 100%;
  background: var(--main-color);
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 12px 0;
  border-radius: 8px;
}

.footer .copyrights {
  padding: 25px 0;
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .copyrights p {
  margin: 0 3px;
  color: var(--h-color);
}

.footer .copyrights p a {
  text-decoration: none;
}

.footer .copyrights p img {
  height: 17px;
  padding-left: 10px;
  border-left: 1px solid var(--border-color);
}

.footer .copyrights p .adwu {
  text-decoration: none;
  color: var(--main-color);
  font-size: 0.8rem;
}

.js-cookie-consent {
  position: fixed;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 99999999999;
  background: var(--card-bg) 3cd;
  border: 1px solid #ffecb5;
  padding: 0.7rem 2rem;
  border-radius: .25rem;
  line-height: 1.9rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  direction: rtl;
}

.cookie-consent__message {
  font-size: 0.9rem;
}

.js-cookie-consent-agree {
  background: #ffc107;
  border: 1px solid #ffc107;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  padding: .3rem .75rem;
  font-size: 0.8rem;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  text-align: center;
  height: 30px;
}

@media (max-width: 991.98px) {
  .js-cookie-consent {
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 575.98px) {
  .js-cookie-consent {
    display: block;
    padding: 0.5rem 0.5rem;
    width: 95%;
    margin: auto;
  }
  .js-cookie-consent-agree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px auto 0 auto;
  }
}

.poll {
  width: 350px;
  background: var(--card-bg);
  position: fixed;
  bottom: 0;
  left: 10px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575.98px) {
  .poll {
    width: 95%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.poll .poll-header .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 12px 15px;
  background: #f8eb20;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
}

.poll .poll-header .section-header .section-heading h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #000;
}

.poll .poll-header .section-header .section-actions .hide-poll {
  cursor: pointer;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.poll .poll-header .section-header .section-actions .hide-poll span {
  color: #000;
  margin-left: 8px;
  font-weight: 500;
  font-size: 0.75rem;
}

.poll .poll-header .section-header .section-actions .hide-poll svg {
  fill: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  height: 20px;
  width: 20px;
}

.poll .poll-container {
  padding: 15px 20px 5px 20px;
  padding: 15px 20px 70px 20px;
}

.poll .poll-container .poll-content .poll-heading {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--h-color);
}

.poll .poll-container .poll-content .poll-date {
  font-size: 0.8rem;
  color: #adafca;
}

.poll .poll-options {
  margin-top: 15px;
}

.poll .poll-options .checkbox-line {
  margin: 7px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.poll .poll-options .checkbox-line .checkbox-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 {
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  margin: 0;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 input:focus {
  outline: 0;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx {
  position: absolute;
  width: 20px;
  height: 20px;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--main-color);
  border-radius: 0;
  z-index: 2;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx label {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: trasnlate3d(0, 0, 0);
          transform: trasnlate3d(0, 0, 0);
  pointer-events: none;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx svg {
  position: absolute;
  top: 5px;
  left: 2px;
  z-index: 1;
  pointer-events: none;
  height: 10px;
  width: 16px;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx svg path {
  stroke: var(--card-bg);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  -webkit-transition: stroke-dashoffset 0.3s ease;
  transition: stroke-dashoffset 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx input:checked + label {
  -webkit-animation: splash 0.6s ease forwards;
          animation: splash 0.6s ease forwards;
}

.poll .poll-options .checkbox-line .checkbox-wrap .h6 .cbx input:checked + label + svg path {
  stroke-dashoffset: 0;
}

@-webkit-keyframes splash {
  40% {
    background: var(--main-color);
    -webkit-box-shadow: 0 -18px 0 -8px var(--main-color), 16px -8px 0 -8px var(--main-color), 16px 8px 0 -8px var(--main-color), 0 18px 0 -8px var(--main-color), -16px 8px 0 -8px var(--main-color), -16px -8px 0 -8px var(--main-color);
            box-shadow: 0 -18px 0 -8px var(--main-color), 16px -8px 0 -8px var(--main-color), 16px 8px 0 -8px var(--main-color), 0 18px 0 -8px var(--main-color), -16px 8px 0 -8px var(--main-color), -16px -8px 0 -8px var(--main-color);
  }
  100% {
    background: var(--main-color);
    -webkit-box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
            box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@keyframes splash {
  40% {
    background: var(--main-color);
    -webkit-box-shadow: 0 -18px 0 -8px var(--main-color), 16px -8px 0 -8px var(--main-color), 16px 8px 0 -8px var(--main-color), 0 18px 0 -8px var(--main-color), -16px 8px 0 -8px var(--main-color), -16px -8px 0 -8px var(--main-color);
            box-shadow: 0 -18px 0 -8px var(--main-color), 16px -8px 0 -8px var(--main-color), 16px 8px 0 -8px var(--main-color), 0 18px 0 -8px var(--main-color), -16px 8px 0 -8px var(--main-color), -16px -8px 0 -8px var(--main-color);
  }
  100% {
    background: var(--main-color);
    -webkit-box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
            box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

.poll .poll-options .checkbox-line .checkbox-wrap p {
  padding-left: 0px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  color: var(--h-color);
  margin-right: 10px;
}

.poll .poll-options .checkbox-line .checkbox-line-text {
  color: #000;
  font-size: .8rem;
  font-weight: 500;
}

.poll .poll-options .vote-btn {
  text-decoration: none;
  width: 100%;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 45px;
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  margin-top: 15px;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  background-color: #000;
  margin: 0 auto 12px auto;
  border: 0;
}

.poll .poll-options .vote-btn svg {
  height: 18px;
  margin-left: 4px;
}

.poll .poll-options .vote-btn svg path {
  fill: var(--card-bg);
}

.poll .poll-options .vote-btn:hover {
  background-color: var(--main-color);
}

.poll .poll-percentage {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--h-color);
  display: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}



.poll .swiper-slide {
  width: 100% !important;
}

.poll .snp-buttons-and-pagination {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  margin-top: -16px;
  background: var(--body-bg);
  margin-top: 5px;
  border-top: 1px solid var(--border-color);
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
}

.poll .snp-buttons-and-pagination .snp-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 136px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.poll .snp-button-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-position: 50% 50%;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s, background-position 150ms cubic-bezier(0.47, 0, 0.745, 0.715), background-color 0.2s, color 0.2s;
  transition: opacity 0.2s, background-position 150ms cubic-bezier(0.47, 0, 0.745, 0.715), background-color 0.2s, color 0.2s;
  color: #7e3d5d;
  font-size: 0px;
  line-height: 1em;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}

.poll .snp-button-left svg {
  height: 22px;
  fill: var(--h-color);
}

.poll .snp-button-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-position: 50% 50%;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s, background-position 150ms cubic-bezier(0.47, 0, 0.745, 0.715), background-color 0.2s, color 0.2s;
  transition: opacity 0.2s, background-position 150ms cubic-bezier(0.47, 0, 0.745, 0.715), background-color 0.2s, color 0.2s;
  color: #7e3d5d;
  font-size: 0px;
  line-height: 1em;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}

.poll .snp-button-right svg {
  height: 22px;
  fill: var(--h-color);
}

.poll .swiper-pagination-bullet {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #B2B5BE;
  opacity: 1;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.poll .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f8eb20;
  color: #19224C;
}

.poll-show .poll-header {
  width: 350px;
  position: fixed;
  bottom: 0;
  left: 10px;
}

.poll-show .poll-header .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 12px 15px;
  background: #f8eb20;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
}

.poll-show .poll-header .section-header .section-heading h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #000;
}

.poll-show .poll-header .section-header .section-actions .hide-poll {
  cursor: pointer;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.poll-show .poll-header .section-header .section-actions .hide-poll span {
  color: #000;
  margin-left: 8px;
  font-weight: 500;
  font-size: 0.75rem;
}

.poll-show .poll-header .section-header .section-actions .hide-poll svg {
  fill: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  height: 20px;
  width: 20px;
}

.remove-poll {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 125px);
          transform: translate(0, 125px);
}

.poll-validation {
  text-align: center;
  display: none;
}

.poll-validation span {
  color: #cc2609;
  font-size: 0.9rem;
  text-align: center;
  display: block;
  margin: 2px auto 4px auto;
}

.aduio-player-flow {
  position: fixed;
  bottom: -110px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 75px;
  background: var(--body-bg);
  border-top: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.aduio-player-flow .container {
  position: relative;
}

.aduio-player-flow .aduio-container {
  width: 100%;
  padding: 0 0;
}

.aduio-player-flow audio {
  background: var(--body-bg);
  width: 100%;
}

.aduio-player-flow .plyr--audio .plyr__controls {
  background: var(--body-bg);
}

.aduio-player-flow .audio-close {
  position: absolute;
  top: -41px;
  left: 0;
  height: 30px;
  width: 45px;
  background: var(--body-bg);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aduio-player-flow .audio-close svg {
  height: 22px;
  fill: var(--h-color);
}

.aduio-player-flow-active {
  bottom: 0;
}

.news-actions {
  position: absolute;
  top: 15px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.news-actions .action-btn {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px;
  cursor: pointer;
}

.news-actions .action-btn svg {
  height: 18px;
  fill: #000;
}

.post-news-actions {
  position: unset;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -33px;
}

@media (max-width: 767.98px) {
  .post-news-actions {
    margin-top: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.post-news-actions .action-btn {
  border-radius: 2px;
  background: var(--card-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px 0 0;
  cursor: pointer;
  border: 1px solid var(--border-color);
  padding: 7px 15px;
}

.post-news-actions .action-btn svg {
  height: 18px;
  fill: var(--h-color);
  margin-left: 5px;
}

.post-news-actions .action-btn span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--h-color);
}

.news-card:hover .news-actions {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.summray-container {
  position: fixed;
  z-index: 5555;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  width: 60%;
  background: #FFF;
  padding: 15px 40px;
  border-radius: 8px;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .summray-container {
    width: 95%;
  }
}

.summray-container .summray-content .summray-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
}

.summray-container .summray-content .summray-header h6 {
  font-size: 1.7rem;
  font-weight: 500;
}

.summray-container .summray-content .summray-header svg {
  fill: #000;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.summray-container .summray-content .summray-content-container {
  padding: 22px 0;
}

.episode-container {
  position: fixed;
  z-index: 5555;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  width: 45%;
  background: #FFF;
  padding: 15px 35px 35px 35px;
  border-radius: 8px;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1199.98px) {
  .episode-container {
    width: 80%;
  }
}

@media (max-width: 767.98px) {
  .episode-container {
    width: 95%;
  }
}

.episode-container .summray-content .summray-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
}

.episode-container .summray-content .summray-header h6 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

@media (max-width: 575.98px) {
  .episode-container .summray-content .summray-header h6 {
    font-size: 1.5rem;
  }
}

.episode-container .summray-content .summray-header svg {
  fill: #000;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.episode-container .summray-content .plyr--video {
  border-radius: 8px;
}

.episode-container .summray-content video {
  border-radius: 8px;
  width: 100%;
  margin: 25px 0;
}

.episode-container .summray-content .plyr__poster {
  background-size: cover !important;
}

.episode-container .summray-content .show-video-info {
  padding: 25px;
  color: #000;
}

@media (max-width: 1199.98px) {
  .episode-container .summray-content .show-video-info {
    margin-top: 25px;
  }
}

.episode-container .summray-content .show-video-info h2 {
  margin-bottom: 35px;
  font-size: 2rem;
}

@media (max-width: 575.98px) {
  .episode-container .summray-content .show-video-info h2 {
    font-size: 1.5rem;
  }
}

.episode-container .summray-content .show-video-info p {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .episode-container .summray-content .show-video-info p {
    font-size: 0.9rem;
  }
}

.episode-container .summray-content .show-video-info .social-icons-parent {
  margin-top: 25px;
}

.episode-container .summray-content .show-video-info .social-icons-parent span {
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: block;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .social-icon {
  padding: 5px;
  border-radius: 6px;
  margin-left: 15px;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .social-icon a {
  display: block;
  text-decoration: none;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .social-icon a svg {
  height: 22px;
  width: 22px;
  fill: #FFF;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .facebook {
  background: #1877f2;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .twitter {
  background: #1da1f2;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .telegram {
  background: #26a4e2;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .whatsapp {
  background: #4dcb5b;
}

.episode-container .summray-content .show-video-info .social-icons-parent .social-icons .share-link {
  background: #cc2609;
}

.settings-container {
  position: fixed;
  z-index: 5555;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 350px;
  height: 100%;
  background: var(--card-bg);
  padding: 10px 30px;
  border-radius: 0;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .settings-container {
    width: 95%;
  }
}

.settings-container .settings-content .settings-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.settings-container .settings-content .settings-header h6 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--h-color);
}

.settings-container .settings-content .settings-header svg {
  fill: var(--h-color);
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.settings-container .settings-content .settings-content-container {
  padding: 15px 0;
}

.settings-container .settings-content .settings-content-container .settings-line {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.settings-container .settings-content .settings-content-container .settings-line span {
  display: block;
  color: #7e868e;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}

.settings-container .settings-content .settings-content-container .settings-line span a {
  text-decoration: none;
  color: unset;
}

.settings-container .settings-content .settings-content-container .settings-line .settings-line-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

.settings-container .settings-content .settings-content-container .settings-line .settings-line-select span {
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  margin: 0 0 10px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--h-color);
  border-radius: 50px;
}

.settings-container .settings-content .settings-content-container .settings-line .settings-line-select .active-mode {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #FFF;
}

.settings-container .settings-content .save-changes-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
  width: 300px;
}

@media (max-width: 575.98px) {
  .settings-container .settings-content .save-changes-btn {
    width: 90%;
  }
}

.settings-container .settings-content .save-changes-btn:hover .save-btn {
  background: #000;
}

.settings-container .settings-content .save-changes-btn .save-btn {
  text-decoration: none;
  color: #FFF;
  background: var(--main-color);
  padding: 10px 25px;
  border-radius: 50px;
  outline: none;
  border: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.open-settings-popup {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translate(0, -50%) !important;
          transform: translate(0, -50%) !important;
}

.open-popup {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.open-over {
  opacity: 1;
  visibility: visible;
}

.categories-page {
  padding-bottom: 15px;
}

.categories-page .category-post-small {
  padding: 15px 15px 15px 15px;
  background: var(--card-bg);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

@media (max-width: 991.98px) {
  .categories-page .category-post-small {
    margin-bottom: 12px;
  }
}

.categories-page .category-post-small a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
}

.categories-page .category-post-small a .news-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 60px;
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: 10px;
}

.categories-page .category-post-small a .news-content h2 {
  font-size: 0.9rem;
  color: var(--h-color);
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.categories-page .category-post-small a .news-content .news-info span {
  color: #adafca;
  font-weight: 500;
  font-size: 0.8rem;
}

.categories-page .cat-vid {
  background: #FFF;
  padding: 25px 0 50px 0;
  margin-top: 50px;
  background-image: url(assets/images/nav-bg1.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.categories-page .cat-vid .shows-content {
  margin-top: 25px;
}

.categories-page .cat-vid .shows-content .show-card {
  position: relative;
}

.categories-page .cat-vid .shows-content .show-card a {
  text-decoration: none;
}

.categories-page .cat-vid .shows-content .show-card figure {
  border-radius: 8px;
  height: 275px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}

.categories-page .cat-vid .shows-content .show-card .show-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  justify-content: space-between;
  width: 100%;
}

.categories-page .cat-vid .shows-content .show-card .show-info span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF;
  background: #941e09;
  padding: 2px 10px;
}

.categories-page .cat-vid .video-card {
  position: relative;
  margin-bottom: 15px;
}

.categories-page .cat-vid .video-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.categories-page .cat-vid .video-card a .video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
}

.categories-page .cat-vid .video-card a .video-card-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.categories-page .cat-vid .video-card a .play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--card-bg);
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.categories-page .cat-vid .video-card a .play-vid svg {
  fill: var(--h-color);
  height: 25px;
  width: 25px;
}

.categories-page .cat-vid .video-card a .video-card-content {
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.categories-page .cat-vid .video-card a .video-card-content .cat-badge {
  display: table;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  margin: auto;
  font-size: 0.9rem;
}

.categories-page .cat-vid .video-card a .video-card-content h2 {
  font-size: 1.8rem;
  color: #FFF;
  padding: 0 25px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}

.categories-page .cat-vid .video-card a .video-card-content .news-date {
  text-align: center;
}

.categories-page .cat-vid .video-card a .video-card-content .news-date svg {
  fill: #cc2609;
  height: 20px;
  width: 20px;
  margin-left: 3px;
}

.categories-page .cat-vid .video-card a .video-card-content .news-date span {
  color: #FFF;
  margin-left: 5px;
  font-size: 0.9rem;
}

.categories-page .cat-vid .box-3 .video-card {
  height: 218px;
}

.categories-page .cat-vid .box-3 .video-card a .video-card-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

.categories-page .cat-vid .box-3 .video-card a .play-vid {
  height: 45px;
  width: 45px;
  -webkit-transform: translate(-50%, -125%);
          transform: translate(-50%, -125%);
}

.categories-page .cat-vid .box-3 .video-card a .play-vid svg {
  height: 16px;
  width: 16px;
}

.categories-page .cat-vid .box-3 .video-card a .video-card-content {
  bottom: 10px;
}

.categories-page .cat-vid .box-3 .video-card a .video-card-content .cat-badge {
  font-size: 0.75rem;
}

.categories-page .cat-vid .box-3 .video-card a .video-card-content h2 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.categories-page .cat-vid .box-3 .video-card a .video-card-content .news-date svg {
  height: 16px;
  width: 16px;
}

.categories-page .cat-vid .box-3 .video-card a .video-card-content .news-date span {
  font-size: 0.7rem;
}

.categories-page .cat-vid .swiper-arrows {
  height: 50px;
  width: 110px;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.categories-page .cat-vid .swiper-arrows .swiper-button-next, .categories-page .cat-vid .swiper-arrows .swiper-button-prev {
  height: 40px;
  width: 40px;
  background: var(--body-bg);
  border-radius: 6px;
}

.categories-page .cat-vid .swiper-arrows .swiper-button-next:after, .categories-page .cat-vid .swiper-arrows .swiper-button-prev:after {
  font-size: 0.9rem;
  color: var(--h-color);
  font-weight: 700;
}

.images-page .images-page-swiper {
  border-radius: 8px;
}

.images-page .album {
  position: relative;
  margin-bottom: 15px;
}

.images-page .album a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.images-page .album a .album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
}

.images-page .album a .album-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.images-page .album a .image-badges {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 15px;
}

.images-page .album a .image-badges .cat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.9rem;
}

.images-page .album a .image-badges .images-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #000;
  color: #FFF;
  font-size: 0.9rem;
}

.images-page .album a .image-badges .images-badge svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
}

.images-page .album a .album-content {
  position: absolute;
  bottom: 25px;
  text-align: center;
}

.images-page .album a .album-content h2 {
  font-size: 1.9rem;
  color: #FFF;
  padding: 0 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.images-page .box-1 .album {
  height: 415px;
}

.images-page .box-1 a .album-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

.images-page .box-3 .album {
  height: 200px;
}

.images-page .box-3 .album a .album-content {
  bottom: 15px;
}

.images-page .box-3 .album a .album-content h2 {
  font-size: 1.2rem;
}

.images-page .swiper-slide-active .image-badges {
  right: 50% !important;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

.images-page .swiper-slide-prev .image-badges {
  right: unset !important;
  left: 15px;
}

.images-page .albums {
  padding: 0;
}

.images-page .albums .album {
  position: relative;
  margin-bottom: 15px;
}

.images-page .albums .album a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.images-page .albums .album a .album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
}

.images-page .albums .album a .album-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.images-page .albums .album a .image-badges {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 15px;
}

.images-page .albums .album a .image-badges .cat-badge {
  position: unset;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.8rem;
}

.images-page .albums .album a .image-badges .images-badge {
  position: unset;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #000;
  color: #FFF;
  font-size: 0.8rem;
}

.images-page .albums .album a .image-badges .images-badge svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
}

.images-page .albums .album a .album-content {
  position: absolute;
  bottom: 25px;
  text-align: center;
}

.images-page .albums .album a .album-content h2 {
  font-size: 1.9rem;
  color: #FFF;
  padding: 0 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.album-page .gallery ul li {
  margin-bottom: 15px;
}

.album-page .gallery a {
  position: relative;
  height: 260px;
  width: 100%;
  display: block;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #FFF;
}

.album-page .gallery a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.album-page .gallery a:hover .gal-overlay {
  visibility: visible;
  opacity: 1;
}

.album-page .gallery a:hover .gal-overlay svg {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.album-page .gallery a figure {
  height: 260px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin-bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.album-page .gallery a .img-id {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-box-shadow .2s ease-in-out;
  transition: -webkit-box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out;
  text-align: left;
  padding: 5px 10px;
}

.album-page .gallery a img {
  display: none;
}

.album-page .gallery a .gal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(21, 21, 31, 0.8);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.album-page .gallery a .gal-overlay svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.album-page .gallery .image-title {
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: var(--card-bg);
  padding: 15px 15px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.album-page .gallery .image-title h5 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--h-color);
}

.album-page .album-header {
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: var(--card-bg);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-bottom: 15px;
}

.album-page .album-header .album-header-image figure {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 450px;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-image figure {
    height: 170px;
  }
}

.album-page .album-header .album-header-info .post-info {
  padding: 25px 25px 25px 50px;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info {
    padding: 15px 20px 20px 20px;
  }
}

.album-page .album-header .album-header-info .post-info .post-cat {
  color: #cc2609;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .album-page .album-header .album-header-info .post-info .post-cat {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-cat {
    font-size: 0.9rem;
  }
}

.album-page .album-header .album-header-info .post-info .post-title {
  font-size: 2.2rem;
  color: var(--h-color);
}

@media (max-width: 991.98px) {
  .album-page .album-header .album-header-info .post-info .post-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-title {
    font-size: 1.3rem;
  }
}

.album-page .album-header .album-header-info .post-info .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-date {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.album-page .album-header .album-header-info .post-info .post-date p {
  margin-left: 7px;
  font-size: 0.9rem;
  color: #adafca;
}

@media (max-width: 991.98px) {
  .album-page .album-header .album-header-info .post-info .post-date p {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-date p {
    font-size: 0.65rem;
    margin-left: 2px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.album-page .album-header .album-header-info .post-info .post-actions .post-author {
  border: 1px solid var(--border-color);
  padding: 3px 5px 3px 15px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-author {
    padding: 3px 5px 3px 10px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-author img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-author img {
    height: 20px;
    width: 20px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-author span {
  font-weight: 600;
  font-size: 0.8rem;
  margin-right: 5px;
  white-space: nowrap;
  color: var(--h-color);
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-author span {
    font-size: 0.7rem;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social {
  border-right: 1px solid var(--border-color);
  margin-right: 20px;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-social {
    margin-right: 10px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding-right: 20px;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons {
    padding-right: 10px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  margin-left: 15px;
  height: 30px;
  width: 30px;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .social-icon {
    margin-left: 10px;
    height: 27px;
    width: 27px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .social-icon a {
  display: block;
  text-decoration: none;
  margin-top: -1px;
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .social-icon a svg {
  height: 18px;
  width: 18px;
  fill: #FFF;
}

@media (max-width: 575.98px) {
  .album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .social-icon a svg {
    height: 15px;
    width: 15px;
  }
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .facebook {
  background: #1877f2;
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .twitter {
  background: #1da1f2;
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .telegram {
  background: #26a4e2;
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .whatsapp {
  background: #4dcb5b;
}

.album-page .album-header .album-header-info .post-info .post-actions .post-social .social-icons .share-link {
  background: #cc2609;
}

.lg-backdrop,
.lg-outer,
.lg-outer .lg-inner {
  direction: ltr;
}

.lg-progress-bar .lg-progress {
  background: #cc2609 !important;
}

.lg-backdrop {
  background-color: rgba(21, 21, 31, 0.96);
}

.lg-outer .lg-thumb-item {
  cursor: pointer !important;
  float: left;
  overflow: hidden;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  margin: 0 !important;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  opacity: 1;
}

.lg-outer .lg-thumb {
  margin: auto;
}

.videos-page .video-card {
  position: relative;
  margin-bottom: 15px;
}

.videos-page .video-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.videos-page .video-card a .video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos-page .video-card a .video-card-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.videos-page .video-card a .play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--card-bg);
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.videos-page .video-card a .play-vid svg {
  fill: var(--h-color);
  height: 25px;
  width: 25px;
}

.videos-page .video-card a .video-card-content {
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.videos-page .video-card a .video-card-content .cat-badge {
  display: table;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  margin: auto;
  font-size: 0.9rem;
}

.videos-page .video-card a .video-card-content h2 {
  font-size: 1.8rem;
  color: #FFF;
  padding: 0 25px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}

.videos-page .video-card a .video-card-content .news-date {
  text-align: center;
}

.videos-page .video-card a .video-card-content .news-date svg {
  fill: #cc2609;
  height: 20px;
  width: 20px;
  margin-left: 3px;
}

.videos-page .video-card a .video-card-content .news-date span {
  color: #FFF;
  margin-left: 5px;
  font-size: 0.9rem;
}

.videos-page .box-1 .video-card {
  height: 450px;
}

.videos-page .box-1 a .video-card-overlay {
  -webkit-box-shadow: inset 0 -200px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -200px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos-page .box-3 .video-card {
  height: 218px;
}

.videos-page .box-3 .video-card a .video-card-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos-page .box-3 .video-card a .play-vid {
  height: 45px;
  width: 45px;
  -webkit-transform: translate(-50%, -125%);
          transform: translate(-50%, -125%);
}

.videos-page .box-3 .video-card a .play-vid svg {
  height: 16px;
  width: 16px;
}

.videos-page .box-3 .video-card a .video-card-content {
  bottom: 10px;
}

.videos-page .box-3 .video-card a .video-card-content .cat-badge {
  font-size: 0.75rem;
}

.videos-page .box-3 .video-card a .video-card-content h2 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.videos-page .box-3 .video-card a .video-card-content .news-date svg {
  height: 16px;
  width: 16px;
}

.videos-page .box-3 .video-card a .video-card-content .news-date span {
  font-size: 0.7rem;
}

.videos-page .cat-vid {
  background: var(--card-bg);
  padding: 25px 0 50px 0;
  margin-top: 50px;
  background-image: url(assets/images/nav-bg1.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.videos-page .cat-vid .shows-content {
  margin-top: 25px;
}

.videos-page .cat-vid .shows-content .show-card {
  position: relative;
}

.videos-page .cat-vid .shows-content .show-card a {
  text-decoration: none;
}

.videos-page .cat-vid .shows-content .show-card figure {
  border-radius: 8px;
  height: 275px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}

.videos-page .cat-vid .shows-content .show-card .show-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  justify-content: space-between;
  width: 100%;
}

.videos-page .cat-vid .shows-content .show-card .show-info span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF;
  background: #941e09;
  padding: 2px 10px;
}

.videos-page .cat-vid .video-card {
  position: relative;
  margin-bottom: 15px;
}

.videos-page .cat-vid .video-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.videos-page .cat-vid .video-card a .video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos-page .cat-vid .video-card a .video-card-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.videos-page .cat-vid .video-card a .play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--card-bg);
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.videos-page .cat-vid .video-card a .play-vid svg {
  fill: var(--h-color);
  height: 25px;
  width: 25px;
}

.videos-page .cat-vid .video-card a .video-card-content {
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.videos-page .cat-vid .video-card a .video-card-content .cat-badge {
  display: table;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  margin: auto;
  font-size: 0.9rem;
}

.videos-page .cat-vid .video-card a .video-card-content h2 {
  font-size: 1.8rem;
  color: #FFF;
  padding: 0 25px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}

.videos-page .cat-vid .video-card a .video-card-content .news-date {
  text-align: center;
}

.videos-page .cat-vid .video-card a .video-card-content .news-date svg {
  fill: #cc2609;
  height: 20px;
  width: 20px;
  margin-left: 3px;
}

.videos-page .cat-vid .video-card a .video-card-content .news-date span {
  color: #FFF;
  margin-left: 5px;
  font-size: 0.9rem;
}

.videos-page .cat-vid .box-3 .video-card {
  height: 218px;
}

.videos-page .cat-vid .box-3 .video-card a .video-card-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos-page .cat-vid .box-3 .video-card a .play-vid {
  height: 45px;
  width: 45px;
  -webkit-transform: translate(-50%, -125%);
          transform: translate(-50%, -125%);
}

.videos-page .cat-vid .box-3 .video-card a .play-vid svg {
  height: 16px;
  width: 16px;
}

.videos-page .cat-vid .box-3 .video-card a .video-card-content {
  bottom: 10px;
}

.videos-page .cat-vid .box-3 .video-card a .video-card-content .cat-badge {
  font-size: 0.75rem;
}

.videos-page .cat-vid .box-3 .video-card a .video-card-content h2 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.videos-page .cat-vid .box-3 .video-card a .video-card-content .news-date svg {
  height: 16px;
  width: 16px;
}

.videos-page .cat-vid .box-3 .video-card a .video-card-content .news-date span {
  font-size: 0.7rem;
}

.videos-page .cat-vid .swiper-arrows {
  height: 50px;
  width: 110px;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.videos-page .cat-vid .swiper-arrows .swiper-button-next, .videos-page .cat-vid .swiper-arrows .swiper-button-prev {
  height: 40px;
  width: 40px;
  background: var(--body-bg);
  border-radius: 6px;
}

.videos-page .cat-vid .swiper-arrows .swiper-button-next:after, .videos-page .cat-vid .swiper-arrows .swiper-button-prev:after {
  font-size: 0.9rem;
  color: var(--h-color);
  font-weight: 700;
}

.videos-page .cat-videos .cat-videos-content:nth-child(even) .cat-videos-container {
  direction: ltr;
}

.video-main-card {
  position: relative;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.video-main-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.video-main-card a .video-main-card-image {
  position: relative;
}

.video-main-card a .video-main-card-image .news-image {
  height: 190px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.video-main-card a .video-main-card-image .play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--card-bg);
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-main-card a .video-main-card-image .play-vid svg {
  fill: var(--h-color);
  height: 22px;
  width: 22px;
}

.video-main-card a .header-news-content {
  padding: 20px 25px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  min-height: 118px;
}

.video-main-card a .header-news-content h2 {
  font-size: 1.2rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-main-card a .header-news-content .news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-main-card a .header-news-content .news-date .news-cat-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.8rem;
  margin-left: 10px;
}

.video-main-card a .header-news-content .news-date span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.9rem;
  display: inline-block;
}

.shows-page .shows-slider {
  border-radius: 8px;
}

.shows-page .shows-slider .container {
  padding: 0 8px;
}

.shows-page .shows-slider .shows-swiper {
  border-radius: 8px;
}

.shows-page .shows-slider .shows-swiper .show-card {
  position: relative;
  margin-bottom: 15px;
  background: #FFF;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  border-radius: 8px;
}

.shows-page .shows-slider .shows-swiper .show-card a {
  display: block;
  text-decoration: none;
  height: 100%;
  border-radius: 8px;
}

.shows-page .shows-slider .shows-swiper .show-card a .shows-image {
  height: 460px;
  width: 100%;
  border-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1199.98px) {
  .shows-page .shows-slider .shows-swiper .show-card a .shows-image {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  .shows-page .shows-slider .shows-swiper .show-card a .shows-image {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .shows-page .shows-slider .shows-swiper .show-card a .shows-image {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .shows-page .shows-slider .shows-swiper .show-card a .shows-image {
    height: 150px;
  }
}

.shows-page .shows-cards-container .show-card {
  position: relative;
  margin-bottom: 12px;
}

.shows-page .shows-cards-container .show-card a {
  text-decoration: none;
}

.shows-page .shows-cards-container .show-card figure {
  border-radius: 8px;
  height: 200px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
  border-bottom: 6px solid #cc2609;
}

.shows-page .shows-cards-container .show-card .show-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  padding: 10px 10px;
  position: absolute;
  bottom: 0;
  justify-content: space-between;
  width: 100%;
}

.shows-page .shows-cards-container .show-card .show-info span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF;
  background: #0000007c;
  padding: 2px 10px;
  border-radius: 8px;
}

.shows-page .most-shows-view {
  background: #FFF;
  padding: 50px 0 75px 0;
  margin-top: 50px;
  background-image: url(assets/images/nav-bg1.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.shows-page .most-shows-featured {
  margin-top: 25px;
  margin-bottom: 25px;
}

.shows-one-page .show-video-cover-parent {
  position: relative;
  background: #FFF;
  padding: 25px 0 50px 0;
  margin-top: -25px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1199.98px) {
  .shows-one-page .show-video-cover-parent {
    height: auto;
  }
}

.shows-one-page .show-video-cover-parent .show-video-card {
  border-radius: 8px;
}

.shows-one-page .show-video-cover-parent .show-video-card .plyr--video {
  border-radius: 8px;
}

.shows-one-page .show-video-cover-parent .show-video-card video {
  border-radius: 8px;
  width: 100%;
}

.shows-one-page .show-video-cover-parent .show-video-card .plyr__poster {
  background-size: cover !important;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info {
  color: #FFF;
  padding-right: 50px;
}

@media (max-width: 1199.98px) {
  .shows-one-page .show-video-cover-parent .show-video-card .show-video-info {
    padding-right: 0;
    margin-top: 25px;
  }
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info h2 {
  margin-bottom: 35px;
  font-size: 2rem;
}

@media (max-width: 575.98px) {
  .shows-one-page .show-video-cover-parent .show-video-card .show-video-info h2 {
    font-size: 1.5rem;
  }
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info p {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .shows-one-page .show-video-cover-parent .show-video-card .show-video-info p {
    font-size: 0.9rem;
  }
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent {
  margin-top: 25px;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent span {
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: block;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .social-icon {
  padding: 5px;
  border-radius: 6px;
  margin-left: 15px;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .social-icon a {
  display: block;
  text-decoration: none;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .social-icon a svg {
  height: 22px;
  width: 22px;
  fill: #FFF;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .facebook {
  background: #1877f2;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .twitter {
  background: #1da1f2;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .telegram {
  background: #26a4e2;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .whatsapp {
  background: #4dcb5b;
}

.shows-one-page .show-video-cover-parent .show-video-card .show-video-info .social-icons-parent .social-icons .share-link {
  background: #cc2609;
}

.shows-one-page .shows-videos {
  margin-top: 25px;
  margin-bottom: 25px;
}

.most-view-show-card {
  position: relative;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.most-view-show-card .most-view-show-link {
  display: block;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.most-view-show-card .most-view-show-link .image-container {
  position: relative;
}

.most-view-show-card .most-view-show-link .image-container .most-view-show-image {
  height: 190px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.most-view-show-card .most-view-show-link .image-container .news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0000008c;
  padding: 2px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.most-view-show-card .most-view-show-link .image-container .news-date svg {
  fill: #FFF;
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.most-view-show-card .most-view-show-link .image-container .news-date span {
  color: #FFF;
  margin-left: 5px;
  font-size: 0.9rem;
}

.most-view-show-card .most-view-show-link .most-view-show-content {
  padding: 15px 20px 20px 21px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.most-view-show-card .most-view-show-link .most-view-show-content .most-view-show-cat-badge {
  color: #cc2609;
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: 700;
  padding-right: 4px;
}

.most-view-show-card .most-view-show-link .most-view-show-content h2 {
  font-size: 1.2rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.post-page {
  padding: 0 0 25px 0;
}

.post-page .post-content {
  background: var(--card-bg);
  border-radius: 8px;
  padding-bottom: 25px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.post-page .post-content .post-info {
  padding: 25px 25px 25px 50px;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info {
    padding: 15px 20px 20px 20px;
  }
}

.post-page .post-content .post-info .post-cat {
  color: #cc2609;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .post-page .post-content .post-info .post-cat {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-cat {
    font-size: 0.9rem;
  }
}

.post-page .post-content .post-info .post-title {
  font-size: 2.2rem;
  color: var(--h-color);
}

@media (max-width: 991.98px) {
  .post-page .post-content .post-info .post-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-title {
    font-size: 1.3rem;
  }
}

.post-page .post-content .post-info p {
  color: var(--h-color);
}

.post-page .post-content .post-info .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-date {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.post-page .post-content .post-info .post-date p {
  margin-left: 7px;
  font-size: 0.9rem;
  color: #adafca;
}

@media (max-width: 991.98px) {
  .post-page .post-content .post-info .post-date p {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-date p {
    font-size: 0.65rem;
    margin-left: 2px;
  }
}

.post-page .post-content .post-info .post-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767.98px) {
  .post-page .post-content .post-info .post-actions {
    display: block;
  }
}

.post-page .post-content .post-info .post-actions .post-action-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-page .post-content .post-info .post-actions .post-author {
  border: 1px solid var(--border-color);
  padding: 3px 5px 3px 15px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-author {
    padding: 3px 5px 3px 10px;
  }
}

.post-page .post-content .post-info .post-actions .post-author img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-author img {
    height: 20px;
    width: 20px;
  }
}

.post-page .post-content .post-info .post-actions .post-author span {
  font-weight: 600;
  font-size: 0.8rem;
  margin-right: 5px;
  white-space: nowrap;
  color: var(--h-color);
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-author span {
    font-size: 0.7rem;
  }
}

.post-page .post-content .post-info .post-actions .post-social {
  border-right: 1px solid var(--border-color);
  margin-right: 20px;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-social {
    margin-right: 10px;
  }
}

.post-page .post-content .post-info .post-actions .post-social .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding-right: 20px;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-social .social-icons {
    padding-right: 10px;
  }
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  margin-left: 15px;
  height: 30px;
  width: 30px;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-social .social-icons .social-icon {
    margin-left: 10px;
    height: 27px;
    width: 27px;
  }
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .social-icon a {
  display: block;
  text-decoration: none;
  margin-top: -1px;
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .social-icon a svg {
  height: 18px;
  width: 18px;
  fill: #FFF;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-info .post-actions .post-social .social-icons .social-icon a svg {
    height: 15px;
    width: 15px;
  }
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .facebook {
  background: #1877f2;
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .twitter {
  background: #1da1f2;
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .telegram {
  background: #26a4e2;
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .whatsapp {
  background: #4dcb5b;
}

.post-page .post-content .post-info .post-actions .post-social .social-icons .share-link {
  background: #cc2609;
}

.post-page .post-content .video-post video {
  aspect-ratio: 16/9;
}

.post-page .post-content .post-image {
  padding: 0 15px;
  position: relative;
}

.post-page .post-content .post-image img {
  max-width: 100%;
  border-radius: 8px;
  aspect-ratio: 16/9;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-image img {
    min-height: auto;
  }
}

.post-page .post-content .post-image .image-source {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: calc(100% - 30px);
  background: #000000c2;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 10px;
  display: block;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.post-page .post-content .infograph-image {
  margin: 15px 0;
  padding: 0 15px;
  position: relative;
}

.post-page .post-content .infograph-image img {
  max-width: 100%;
  border-radius: 8px;
  min-height: 450px;
}

@media (max-width: 575.98px) {
  .post-page .post-content .infograph-image img {
    min-height: auto;
  }
}

.post-page .post-content .post-content-body {
  padding: 15px 35px;
  color: var(--h-color);
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-content-body {
    padding: 15px 20px;
  }
}

.post-page .post-content .post-content-body a {
  text-decoration: underline;
  color: #cc2609;
}

.post-page .post-content .post-tags ul {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-page .post-content .post-tags ul .post-tag {
  margin-left: 15px;
  margin-bottom: 5px;
  padding: 4px 15px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 5px solid #cc2609;
  background: var(--body-color);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.post-page .post-content .post-tags ul .post-tag a {
  text-decoration: none;
  color: var(--h-color);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .post-page .post-content .post-tags ul .post-tag a {
    font-size: 0.75rem;
  }
}

.post-page .post-content .control-font-size {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 15px;
  margin-top: 15px;
  border: 1px solid var(--border-color);
  width: 225px;
  border-radius: 50px;
}

.post-page .post-content .control-font-size button {
  margin: 0 10px;
  outline: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background-color: unset;
  border: unset;
}

.post-page .post-content .control-font-size button svg {
  fill: #000;
  height: 24px;
}

.post-page .post-related .news-card {
  position: relative;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.post-page .post-related .news-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.post-page .post-related .news-card a .news-image {
  height: 150px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.post-page .post-related .news-card a .news-cat-badge {
  position: absolute;
  z-index: 5;
  top: 118px;
  right: 9px;
  display: inline-block;
  padding: 3px 15px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.8rem;
}

.post-page .post-related .news-card a .header-news-content {
  padding: 15px 20px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  min-height: 100px;
}

.post-page .post-related .news-card a .header-news-content h2 {
  font-size: 1rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-page .post-related .news-card a .header-news-content svg {
  fill: #cc2609;
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.post-page .post-related .news-card a .header-news-content span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.8rem;
}

.post-page .post-related .video-main-card {
  position: relative;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.post-page .post-related .video-main-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.post-page .post-related .video-main-card a .video-main-card-image {
  position: relative;
}

.post-page .post-related .video-main-card a .video-main-card-image .news-image {
  height: 150px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.post-page .post-related .video-main-card a .video-main-card-image .play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--card-bg);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post-page .post-related .video-main-card a .video-main-card-image .play-vid svg {
  fill: var(--h-color);
  height: 20px;
  width: 20px;
}

.post-page .post-related .video-main-card a .header-news-content {
  padding: 20px 25px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  min-height: 100px;
}

.post-page .post-related .video-main-card a .header-news-content h2 {
  font-size: 1rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-page .post-related .video-main-card a .header-news-content .news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-page .post-related .video-main-card a .header-news-content .news-date .news-cat-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.8rem;
  margin-left: 10px;
}

.post-page .post-related .video-main-card a .header-news-content .news-date span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.8rem;
  display: inline-block;
}

.post-page .post-related .ingograph-card {
  position: relative;
  margin-bottom: 15px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.post-page .post-related .ingograph-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.post-page .post-related .ingograph-card a .news-image {
  height: 225px;
  width: 100%;
  border-radius: 8px;
  margin: 0;
  -webkit-box-shadow: inset 0 -75px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -75px 50px -40px rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.post-page .post-related .ingograph-card a .header-news-content {
  padding: 15px 20px;
  border-radius: 8px;
  min-height: 90px;
  width: 95%;
  margin: -50px auto 0 auto;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(assets/images/bg.webp);
  background-position: 85% 25%;
  background-repeat: no-repeat;
}

.post-page .post-related .ingograph-card a .header-news-content h2 {
  font-size: 1rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.post-page .post-related .ingograph-card a .header-news-content svg {
  fill: #cc2609;
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.post-page .post-related .ingograph-card a .header-news-content span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.8rem;
}

.post-sidebar .latest-news-small .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: var(--e-color);
  border-right: 10px solid #cc2609;
  border-top-left-radius: 8px;
  position: relative;
}

.post-sidebar .latest-news-small .section-header .section-heading h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--h-color);
}

.post-sidebar .latest-news-small .section-header .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post-sidebar .latest-news-small .section-header .section-actions a span {
  color: #cc2609;
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.post-sidebar .latest-news-small .section-header .section-actions a svg {
  fill: #cc2609;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.post-sidebar .latest-news-small .latest-news-small-container {
  padding: 0 18px;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-top: -1px;
}

.post-sidebar .latest-news-small .latest-news-small-container .news-card-small {
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
}

.post-sidebar .latest-news-small .latest-news-small-container .news-card-small a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
}

.post-sidebar .latest-news-small .latest-news-small-container .news-card-small a .news-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 60px;
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: 10px;
}

.post-sidebar .latest-news-small .latest-news-small-container .news-card-small a .news-content h2 {
  font-size: 0.9rem;
  color: var(--h-color);
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-sidebar .latest-news-small .latest-news-small-container .news-card-small a .news-content .news-info span {
  color: #adafca;
  font-weight: 500;
  font-size: 0.75rem;
}

.post-sidebar .urgent-news .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: #000;
  color: #FFF;
  border-right: 10px solid #f8eb20;
  border-top-left-radius: 8px;
  position: relative;
}

.post-sidebar .urgent-news .section-header .section-heading h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #FFF;
}

.post-sidebar .urgent-news .section-header .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post-sidebar .urgent-news .section-header .section-actions a span {
  color: #f8eb20;
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.post-sidebar .urgent-news .section-header .section-actions a svg {
  fill: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid #f8eb20;
  border-radius: 50%;
}

.post-sidebar .urgent-news .latest-news-small-container {
  padding: 0 18px;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-top: -1px;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small {
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small .news-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 60px;
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: 10px;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small .news-content h2 {
  font-size: 0.9rem;
  color: var(--h-color);
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small .news-content .news-info span {
  color: #adafca;
  font-weight: 500;
  font-size: 0.75rem;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small .related-post:hover a {
  color: #FFF;
  background: #000;
}

.post-sidebar .urgent-news .latest-news-small-container .news-card-small .related-post a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  background: #F8EB20;
  padding: 5px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.infographic-page .ingograph {
  padding: 0 0 25px 0;
  margin-top: 0;
  background: unset;
}

.infographic-page .ingograph .ingograph-content {
  margin-top: 0;
}

.infographic-page .ingograph .ingograph-content .ingograph-card {
  position: relative;
  margin-bottom: 15px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.infographic-page .ingograph .ingograph-content .ingograph-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.infographic-page .ingograph .ingograph-content .ingograph-card a .news-image {
  height: 260px;
  width: 100%;
  border-radius: 8px;
  margin: 0;
  -webkit-box-shadow: inset 0 -75px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -75px 50px -40px rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.infographic-page .ingograph .ingograph-content .ingograph-card a .header-news-content {
  padding: 20px 25px;
  border-radius: 8px;
  min-height: 117px;
  width: 95%;
  margin: -50px auto 0 auto;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(assets/images/bg.webp);
  background-position: 90% 25%;
  background-repeat: no-repeat;
}

.infographic-page .ingograph .ingograph-content .ingograph-card a .header-news-content h2 {
  font-size: 1.1rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.infographic-page .ingograph .ingograph-content .ingograph-card a .header-news-content svg {
  fill: #cc2609;
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.infographic-page .ingograph .ingograph-content .ingograph-card a .header-news-content span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.9rem;
}

.privacy-page {
  max-width: 1200px;
  margin: 0 auto 25px auto;
}

.privacy-page .privacy-content {
  background: var(--card-bg);
  color: var(--h-color);
  padding: 25px 35px;
  margin-bottom: 25px;
}

@media (max-width: 575.98px) {
  .privacy-page .privacy-content {
    padding: 15px 20px;
  }
}

.urgent-news-big a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.urgent-news-big h2 {
  font-size: 1.1rem !important;
  margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
  .urgent-news-big h2 {
    font-size: 0.9rem !important;
  }
}

.search-page {
  padding-bottom: 25px;
}

.search-page .sidebar-filter {
  background: var(--card-bg);
  border-radius: 12px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .search-page .sidebar-filter {
    margin-top: 18px;
  }
}

.search-page .sidebar-filter .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: var(--e-color);
  border-right: 10px solid #cc2609;
  border-top-left-radius: 8px;
  position: relative;
}

.search-page .sidebar-filter .section-header .section-heading h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--h-color);
}

.search-page .sidebar-filter .section-header .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-page .sidebar-filter .section-header .section-actions a span {
  color: #cc2609;
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.search-page .sidebar-filter .section-header .section-actions a svg {
  fill: #cc2609;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.search-page .sidebar-filter .sidebar-box-items {
  margin-top: 35px;
  margin-bottom: 20px;
  padding: 0 20px;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 {
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  margin: 0;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 input[type="checkbox"]:focus {
  outline: 0;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx {
  position: absolute;
  width: 20px;
  height: 20px;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #cc2609;
  border-radius: 50%;
  z-index: 2;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx label {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: url("#goo");
  filter: url("#goo");
  -webkit-transform: trasnlate3d(0, 0, 0);
          transform: trasnlate3d(0, 0, 0);
  pointer-events: none;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx svg {
  position: absolute;
  top: 5px;
  left: 2px;
  z-index: 1;
  pointer-events: none;
  height: 10px;
  width: 16px;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx svg path {
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  -webkit-transition: stroke-dashoffset 0.3s ease;
  transition: stroke-dashoffset 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx input:checked + label {
  -webkit-animation: splash 0.6s ease forwards;
          animation: splash 0.6s ease forwards;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx input:checked + label + svg path {
  stroke-dashoffset: 0;
}

@-webkit-keyframes splash {
  40% {
    background: #cc2609;
    -webkit-box-shadow: 0 -18px 0 -8px #cc2609, 16px -8px 0 -8px #cc2609, 16px 8px 0 -8px #cc2609, 0 18px 0 -8px #cc2609, -16px 8px 0 -8px #cc2609, -16px -8px 0 -8px #cc2609;
            box-shadow: 0 -18px 0 -8px #cc2609, 16px -8px 0 -8px #cc2609, 16px 8px 0 -8px #cc2609, 0 18px 0 -8px #cc2609, -16px 8px 0 -8px #cc2609, -16px -8px 0 -8px #cc2609;
  }
  100% {
    background: #cc2609;
    -webkit-box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
            box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@keyframes splash {
  40% {
    background: #cc2609;
    -webkit-box-shadow: 0 -18px 0 -8px #cc2609, 16px -8px 0 -8px #cc2609, 16px 8px 0 -8px #cc2609, 0 18px 0 -8px #cc2609, -16px 8px 0 -8px #cc2609, -16px -8px 0 -8px #cc2609;
            box-shadow: 0 -18px 0 -8px #cc2609, 16px -8px 0 -8px #cc2609, 16px 8px 0 -8px #cc2609, 0 18px 0 -8px #cc2609, -16px 8px 0 -8px #cc2609, -16px -8px 0 -8px #cc2609;
  }
  100% {
    background: #cc2609;
    -webkit-box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
            box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap p {
  padding-left: 34px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  color: var(--h-color);
  margin-right: 10px;
}

.search-page .sidebar-filter .sidebar-box-items .checkbox-line .checkbox-line-text {
  color: var(--h-color);
  font-size: .8rem;
  font-weight: 500;
}

.search-page .create-account-btn {
  text-decoration: none;
  width: 100%;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 45px;
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  margin-top: 15px;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  background-color: #000;
  margin: 0 auto 18px auto;
  border: 0;
}

.search-page .create-account-btn svg {
  height: 18px;
  margin-left: 4px;
}

.search-page .create-account-btn svg path {
  fill: #FFF;
}

.search-page .create-account-btn:hover {
  background-color: #cc2609;
}

.search-page .post-sidebar-search {
  margin-bottom: 12px;
}

.search-page .post-sidebar-search .posts-search {
  width: 100%;
  padding: 0 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-page .post-sidebar-search .posts-search form {
  width: 100%;
}

.search-page .post-sidebar-search .posts-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}

@media (max-width: 991.98px) {
  .search-page .post-sidebar-search .posts-search .form-group {
    margin: 10px 0 0 0;
  }
}

.search-page .post-sidebar-search .posts-search .form-group .form-control {
  height: 50px;
  padding: 0 45px 0 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--h-color);
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .search-page .post-sidebar-search .posts-search .form-group .form-control {
    height: 43px;
    padding: 0 40px 0 20px;
  }
}

.search-page .post-sidebar-search .posts-search .form-group .form-control:focus {
  border-color: #cc2609;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.search-page .post-sidebar-search .posts-search .form-group .form-control::-webkit-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.search-page .post-sidebar-search .posts-search .form-group .form-control:-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.search-page .post-sidebar-search .posts-search .form-group .form-control::-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.search-page .post-sidebar-search .posts-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

@media (max-width: 575.98px) {
  .search-page .post-sidebar-search .posts-search .form-group .form-control::-webkit-input-placeholder {
    font-size: 0.7rem;
  }
  .search-page .post-sidebar-search .posts-search .form-group .form-control:-ms-input-placeholder {
    font-size: 0.7rem;
  }
  .search-page .post-sidebar-search .posts-search .form-group .form-control::-ms-input-placeholder {
    font-size: 0.7rem;
  }
  .search-page .post-sidebar-search .posts-search .form-group .form-control::placeholder {
    font-size: 0.7rem;
  }
}

.search-page .post-sidebar-search .posts-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.search-page .post-sidebar-search .posts-search .form-group .search-icon svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  height: 22px;
  width: 22px;
  fill: var(--h-color);
}

@media (max-width: 575.98px) {
  .search-page .post-sidebar-search .posts-search .form-group .search-icon svg {
    font-size: 0.7rem;
    height: 18px;
    width: 18px;
  }
}

.search-page .section-span span {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--h-color);
}

.client-page {
  padding: 0 0 12px 0;
}

.client-page .client-card {
  padding: 15px 15px;
  border-radius: 8px;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  margin-bottom: 12px;
}

.client-page .client-card figure {
  height: 300px;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.client-page .client-card .client-card-info {
  text-align: center;
}

.client-page .client-card .client-card-info h3 {
  margin-bottom: 0;
  color: var(--h-color);
}

.client-page .client-card .client-card-info span {
  color: var(--h-color);
}

.cities-page {
  padding: 12px 0;
}

.cities-page .section-header-main {
  padding-top: 0;
}

.cities-page .city-card {
  background: #FFF;
  border-radius: 8px;
  position: relative;
  margin-bottom: 12px;
}

.cities-page .city-card figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 175px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.cities-page .city-card a {
  display: block;
  color: unset;
  text-decoration: none;
}

.cities-page .city-card .city-card-info {
  text-align: center;
  padding: 20px 15px;
}

.cities-page .city-card .city-card-info .city-icon {
  background: #FFF;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 118px;
  border: 1px solid #dee1e5;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.cities-page .city-card .city-card-info .city-icon img {
  border-radius: 50%;
  height: 70px;
  width: 70px;
}

.cities-page .city-card .city-card-info .city-title {
  margin-top: 20px;
}

.cities-page .city-card-2 {
  background: #FFF;
  border-radius: 8px;
  position: relative;
  margin-bottom: 12px;
}

.cities-page .city-card-2 figure {
  margin-bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 210px;
  border-radius: 8px;
  -webkit-filter: saturate(1.5);
          filter: saturate(1.5);
  -webkit-box-shadow: inset 0 -80px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -80px 50px -40px rgba(0, 0, 0, 0.8);
}

.cities-page .city-card-2 a {
  display: block;
  color: unset;
  text-decoration: none;
}

.cities-page .city-card-2 .city-card-info {
  text-align: center;
  padding: 0px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
}

.cities-page .city-card-2 .city-card-info .city-icon {
  background: #FFF;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 118px;
  border: 1px solid #dee1e5;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: none;
}

.cities-page .city-card-2 .city-card-info .city-icon img {
  border-radius: 50%;
  height: 70px;
  width: 70px;
}

.cities-page .city-card-2 .city-card-info .city-title {
  margin-top: 0;
  font-size: 2rem;
  padding: 0 0;
  font-family: 'Aref Ruqaa', serif;
  color: #fff;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  padding-bottom: 20px;
}

.city-page .city-header {
  position: relative;
}

.city-page .city-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  background: #cc26091f;
}

.city-page .city-header figure {
  -webkit-filter: saturate(1.5);
          filter: saturate(1.5);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 350px;
  border-radius: 12px;
  -webkit-box-shadow: inset 0 -80px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -80px 50px -40px rgba(0, 0, 0, 0.8);
}

@media (max-width: 767.98px) {
  .city-page .city-header figure {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .city-page .city-header figure {
    height: 150px;
  }
}

.city-page .city-header .city-header-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  text-align: center;
}

.city-page .city-header .city-header-info h3 {
  font-family: 'Aref Ruqaa', serif;
  font-size: 7.5rem;
  color: #FFF;
}

@media (max-width: 767.98px) {
  .city-page .city-header .city-header-info h3 {
    font-size: 4.5rem;
  }
}

@media (max-width: 575.98px) {
  .city-page .city-header .city-header-info h3 {
    font-size: 2.5rem;
  }
}

.city-page .news-card {
  position: relative;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.city-page .news-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.city-page .news-card a .news-image {
  height: 190px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.city-page .news-card a .news-cat-badge {
  position: absolute;
  z-index: 5;
  top: 155px;
  right: 12px;
  display: inline-block;
  padding: 3px 15px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.85rem;
}

.city-page .news-card a .header-news-content {
  padding: 20px 25px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  min-height: 118px;
}

.city-page .news-card a .header-news-content h2 {
  font-size: 1.2rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.city-page .news-card a .header-news-content svg {
  fill: #cc2609;
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.city-page .news-card a .header-news-content span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.9rem;
}

.poll-n {
  position: unset !important;
  width: auto !important;
  margin-bottom: 12px;
  border-radius: 8px !important;
}

@media (max-width: 575.98px) {
  .poll-n {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}

.poll-n .poll-container {
  padding-bottom: 5px !important;
}

.poll-result .poll-percentage {
  display: block !important;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Changa";
  background-color: var(--body-bg);
  height: 100%;
  position: relative;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

.row {
  overflow: hidden;
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

@media (min-width: 300px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.row-inside-row {
  margin-right: -8px;
  margin-left: -8px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-6,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9 {
  padding-right: 8px;
  padding-left: 8px;
}

.contact-banner {
  background: var(--card-bg);
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  color: var(--h-color);
  min-height: 310px;
}

.contact-banner a {
  text-decoration: none;
  color: var(--h-color);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.sections-banner {
  background: var(--card-bg);
  margin-bottom: 12px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  color: var(--h-color);
  min-height: 90px;
  width: 100%;
  margin: 10px auto 25px auto;
}

.section-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 25px 0;
}

.section-header-main .section-heading h3 {
  font-size: 1.75rem;
  background: var(--main-color);
  padding: 7px 15px;
  color: #FFF;
  border-right: 10px solid #941e09;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .section-header-main .section-heading h3 {
    font-size: 1.1rem;
  }
}

.section-header-main .section-filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-header-main .section-filter ul .cat-filter {
  margin: 0 15px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.section-header-main .section-filter ul .filter-active {
  color: var(--main-color);
}

.section-header-main .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-header-main .section-actions a span {
  color: var(--h-color);
  margin-left: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header-main .section-actions a svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  fill: var(--h-color);
}

.header-posts .header-post {
  position: relative;
  margin-bottom: 15px;
}

.header-posts .header-post a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.header-posts .header-post a .post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
}

.header-posts .header-post a .post-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.header-posts .header-post a .cat-badge {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 15px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.85rem;
}

.header-posts .header-post a .header-post-content {
  position: absolute;
  bottom: 15px;
}

.header-posts .header-post a .header-post-content h2 {
  font-size: 2rem;
  color: #FFF;
  padding: 0 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.header-posts .box-1 .header-post {
  height: 400px;
}

@media (max-width: 991.98px) {
  .header-posts .box-1 .header-post {
    height: 221px;
  }
}

@media (max-width: 767.98px) {
  .header-posts .box-1 .header-post {
    height: 221px;
  }
}

.header-posts .box-1 a .post-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

@media (max-width: 991.98px) {
  .header-posts .box-1 a .post-overlay {
    -webkit-box-shadow: inset 0 -115px 50px -40px rgba(0, 0, 0, 0.8);
            box-shadow: inset 0 -115px 50px -40px rgba(0, 0, 0, 0.8);
  }
}

@media (max-width: 991.98px) {
  .header-posts .box-1 a .header-post-content h2 {
    font-size: 1.2rem;
  }
}

.header-posts .box-2 .header-post {
  height: 192px;
}

.header-posts .box-2 .header-post a .header-post-content {
  bottom: 10px;
}

.header-posts .box-2 .header-post a .header-post-content h2 {
  font-size: 1.6rem;
}

.header-posts .box-3 .header-post {
  height: 192px;
}

@media (max-width: 991.98px) {
  .header-posts .box-3 .header-post {
    height: 103px;
  }
}

@media (max-width: 767.98px) {
  .header-posts .box-3 .header-post {
    height: 221px;
  }
}

.header-posts .box-3 .header-post a .header-post-content {
  bottom: 10px;
}

.header-posts .box-3 .header-post a .header-post-content h2 {
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .header-posts .box-3 .header-post a .header-post-content h2 {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}

@media (max-width: 575.98px) {
  .header-posts .box-3 .header-post a .header-post-content h2 {
    font-size: 1.2rem;
  }
}

.header-posts .box-4 .header-post {
  height: 400px;
}

@media (max-width: 991.98px) {
  .header-posts .box-4 .header-post {
    height: 221px;
  }
}

.header-posts .box-4 .header-post a .header-post-content {
  bottom: 10px;
}

.header-posts .box-4 .header-post a .header-post-content h2 {
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .header-posts .box-4 .header-post a .header-post-content h2 {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}

@media (max-width: 575.98px) {
  .header-posts .box-4 .header-post a .header-post-content h2 {
    font-size: 1.2rem;
  }
}

.header-posts .box-5 .header-post {
  height: 275px;
}

.header-posts .box-5 .header-post a .header-post-content {
  bottom: 10px;
}

.header-posts .box-5 .header-post a .header-post-content h2 {
  font-size: 1.2rem;
}

.banner .container {
  padding: 0 8px;
}

.banner .sections-banner {
  margin-top: 0;
}

.banner .sections-banner a {
  display: block;
}

.banner .sections-banner a img {
  max-width: 100%;
  margin: auto;
  text-align: center;
  display: block;
}

.latest-news {
  padding-top: 25px;
}

.latest-news .latest-news-big .news-card {
  position: relative;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

.latest-news .latest-news-big .news-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.latest-news .latest-news-big .news-card a .news-image {
  height: 190px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.latest-news .latest-news-big .news-card a .news-cat-badge {
  position: absolute;
  z-index: 5;
  top: 155px;
  right: 12px;
  display: inline-block;
  padding: 3px 15px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  font-size: 0.85rem;
}

.latest-news .latest-news-big .news-card a .header-news-content {
  padding: 20px 25px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  min-height: 118px;
}

.latest-news .latest-news-big .news-card a .header-news-content h2 {
  font-size: 1.2rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-news .latest-news-big .news-card a .header-news-content svg {
  fill: var(--main-color);
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.latest-news .latest-news-big .news-card a .header-news-content span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.9rem;
}

.latest-news .latest-news-small {
  padding-top: 20px;
}

.latest-news .latest-news-small .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: var(--e-color);
  border-right: 10px solid var(--main-color);
  border-top-left-radius: 8px;
  position: relative;
}

.latest-news .latest-news-small .section-header .section-heading h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--h-color);
}

.latest-news .latest-news-small .section-header .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.latest-news .latest-news-small .section-header .section-actions a span {
  color: var(--main-color);
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.latest-news .latest-news-small .section-header .section-actions a svg {
  fill: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.latest-news .latest-news-small .latest-news-small-container {
  padding: 0 18px;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-top: -1px;
}

.latest-news .latest-news-small .latest-news-small-container .news-card-small {
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
}

.latest-news .latest-news-small .latest-news-small-container .news-card-small a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.latest-news .latest-news-small .latest-news-small-container .news-card-small a .news-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 60px;
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: 10px;
}

.latest-news .latest-news-small .latest-news-small-container .news-card-small a .news-content h2 {
  font-size: 0.9rem;
  color: var(--h-color);
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-news .latest-news-small .latest-news-small-container .news-card-small a .news-content .news-info span {
  color: #adafca;
  font-weight: 500;
  font-size: 0.75rem;
}

.videos {
  background: #FFF;
  padding: 50px 0 75px 0;
  margin-top: 50px;
  background-image: url(assets/images/nav-bg1.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.videos .videos-content {
  margin-top: 25px;
}

.videos .videos-content .video-card {
  position: relative;
  margin-bottom: 15px;
}

.videos .videos-content .video-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.videos .videos-content .video-card a .video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -175px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos .videos-content .video-card a .video-card-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.videos .videos-content .video-card a .play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #FFF;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.videos .videos-content .video-card a .play-vid svg {
  fill: #000;
  height: 25px;
  width: 25px;
}

.videos .videos-content .video-card a .video-card-content {
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.videos .videos-content .video-card a .video-card-content .cat-badge {
  display: table;
  padding: 3px 10px;
  border-radius: 50px;
  background: #cc2609;
  color: #FFF;
  margin: auto;
  font-size: 0.9rem;
}

.videos .videos-content .video-card a .video-card-content h2 {
  font-size: 1.8rem;
  color: #FFF;
  padding: 0 25px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}

.videos .videos-content .video-card a .video-card-content .news-date {
  text-align: center;
}

.videos .videos-content .video-card a .video-card-content .news-date svg {
  fill: #cc2609;
  height: 20px;
  width: 20px;
  margin-left: 3px;
}

.videos .videos-content .video-card a .video-card-content .news-date span {
  color: #FFF;
  margin-left: 5px;
  font-size: 0.9rem;
}

.videos .box-1 .video-card {
  height: 450px;
}

.videos .box-1 a .video-card-overlay {
  -webkit-box-shadow: inset 0 -200px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -200px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos .box-3 .video-card {
  height: 218px;
}

.videos .box-3 .video-card a .video-card-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

.videos .box-3 .video-card a .play-vid {
  height: 45px;
  width: 45px;
  -webkit-transform: translate(-50%, -125%);
          transform: translate(-50%, -125%);
}

.videos .box-3 .video-card a .play-vid svg {
  height: 16px;
  width: 16px;
}

.videos .box-3 .video-card a .video-card-content {
  bottom: 10px;
}

.videos .box-3 .video-card a .video-card-content .cat-badge {
  font-size: 0.75rem;
}

.videos .box-3 .video-card a .video-card-content h2 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.videos .box-3 .video-card a .video-card-content .news-date svg {
  height: 16px;
  width: 16px;
}

.videos .box-3 .video-card a .video-card-content .news-date span {
  font-size: 0.7rem;
}

.categories {
  padding: 50px 0;
}

.categories .categories-content .category-part .category-part-container .category-post-big {
  position: relative;
  margin-bottom: 15px;
  height: 302px;
}

.categories .categories-content .category-part .category-part-container .category-post-big a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.categories .categories-content .category-part .category-part-container .category-post-big a .post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -130px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -130px 50px -40px rgba(0, 0, 0, 0.8);
}

.categories .categories-content .category-part .category-part-container .category-post-big a .post-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.categories .categories-content .category-part .category-part-container .category-post-big a .cat-badge {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 15px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #F8EB20;
  color: #000;
  font-weight: 500;
  font-size: 0.9rem;
}

.categories .categories-content .category-part .category-part-container .category-post-big a .category-post-content {
  position: absolute;
  bottom: 15px;
}

.categories .categories-content .category-part .category-part-container .category-post-big a .category-post-content h2 {
  font-size: 1.7rem;
  color: #FFF;
  padding: 0 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.categories .categories-content .category-part .category-part-container .category-post-small {
  padding: 15px 15px 15px 15px;
  background: var(--card-bg);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
}

@media (max-width: 991.98px) {
  .categories .categories-content .category-part .category-part-container .category-post-small {
    margin-bottom: 12px;
  }
}

.categories .categories-content .category-part .category-part-container .category-post-small a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
}

.categories .categories-content .category-part .category-part-container .category-post-small a .news-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 60px;
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: 10px;
}

.categories .categories-content .category-part .category-part-container .category-post-small a .news-content h2 {
  font-size: 0.9rem;
  color: var(--h-color);
  margin-bottom: -2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.categories .categories-content .category-part .category-part-container .category-post-small a .news-content .news-info span {
  color: #adafca;
  font-weight: 500;
  font-size: 0.8rem;
}

.categories .categories-sidebar {
  padding-top: 20px;
}

.categories .categories-sidebar .categories-sidebar-section .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: var(--e-color);
  border-right: 10px solid var(--main-color);
  position: relative;
  border-top-left-radius: 8px;
}

.categories .categories-sidebar .categories-sidebar-section .section-header .section-heading h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--h-color);
}

.categories .categories-sidebar .categories-sidebar-section .section-header .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.categories .categories-sidebar .categories-sidebar-section .section-header .section-actions a span {
  color: var(--main-color);
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.categories .categories-sidebar .categories-sidebar-section .section-header .section-actions a svg {
  fill: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.categories .categories-sidebar .categories-sidebar-section .categories-small-container {
  padding: 0 18px;
  background: var(--card-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  margin-top: -1px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.categories .categories-sidebar .categories-sidebar-section .categories-small-container .news-card-small {
  padding: 18px 0;
  border-top: 1px solid var(--border-color);
}

.categories .categories-sidebar .categories-sidebar-section .categories-small-container .news-card-small a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
}

.categories .categories-sidebar .categories-sidebar-section .categories-small-container .news-card-small a .news-image figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 60px;
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: 10px;
}

.categories .categories-sidebar .categories-sidebar-section .categories-small-container .news-card-small a .news-content h2 {
  font-size: 0.9rem;
  color: var(--h-color);
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.categories .categories-sidebar .categories-sidebar-section .categories-small-container .news-card-small a .news-content .news-info span {
  color: #adafca;
  font-weight: 500;
  font-size: 0.8rem;
}

.ingograph {
  background: #FFF;
  padding: 50px 0 75px 0;
  margin-top: 50px;
  background-image: url(assets/images/nav-bg1.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ingograph .ingograph-content {
  margin-top: 25px;
}

.ingograph .ingograph-content .ingograph-card {
  position: relative;
  margin-bottom: 15px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.ingograph .ingograph-content .ingograph-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.ingograph .ingograph-content .ingograph-card a .news-image {
  height: 260px;
  width: 100%;
  border-radius: 8px;
  margin: 0;
  -webkit-box-shadow: inset 0 -75px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -75px 50px -40px rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ingograph .ingograph-content .ingograph-card a .header-news-content {
  padding: 20px 25px;
  border-radius: 8px;
  min-height: 95px;
  width: 95%;
  margin: -50px auto 0 auto;
  background: var(--body-bg);
  -webkit-box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
          box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  text-align: center;
}

.ingograph .ingograph-content .ingograph-card a .header-news-content h2 {
  font-size: 1.2rem;
  color: var(--h-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ingograph .ingograph-content .ingograph-card a .header-news-content svg {
  fill: #cc2609;
  height: 16px;
  width: 16px;
  margin-left: 3px;
}

.ingograph .ingograph-content .ingograph-card a .header-news-content span {
  color: #adafca;
  margin-left: 5px;
  font-size: 0.9rem;
}

.special {
  padding: 50px 0;
}

.special .contact-banner {
  height: 98%;
}

.shows {
  background: #FFF;
  padding: 50px 0 75px 0;
  margin-top: 50px;
}

.shows .shows-content {
  margin-top: 25px;
}

.shows .shows-content .show-card {
  position: relative;
}

.shows .shows-content .show-card a {
  text-decoration: none;
}

.shows .shows-content .show-card figure {
  border-radius: 8px;
  height: 275px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}

.shows .shows-content .show-card .show-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  justify-content: space-between;
  width: 100%;
}

.shows .shows-content .show-card .show-info span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFF;
  background: #941e09;
  padding: 2px 10px;
}

@media (max-width: 1199.98px) {
  .shows .shows-content .show-card .show-info span {
    font-size: 0.8rem;
  }
}

.albums {
  padding: 50px 0;
}

.albums .album {
  position: relative;
  margin-bottom: 15px;
}

.albums .album a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.albums .album a .album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -120px 50px -40px rgba(0, 0, 0, 0.8);
}

.albums .album a .album-image {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.albums .album a .cat-badge {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 15px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #000;
  color: #FFF;
  font-size: 0.9rem;
}

.albums .album a .album-content {
  position: absolute;
  bottom: 25px;
  text-align: center;
}

.albums .album a .album-content h2 {
  font-size: 1.9rem;
  color: #FFF;
  padding: 0 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.albums .box-1 .album {
  height: 415px;
}

.albums .box-1 a .album-overlay {
  -webkit-box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 -150px 50px -40px rgba(0, 0, 0, 0.8);
}

.albums .box-2 .album {
  height: 260px;
}

.albums .box-2 .album a .album-content {
  bottom: 15px;
}

.albums .box-2 .album a .album-content h2 {
  font-size: 1.3rem;
}

.albums .box-3 .album {
  height: 200px;
}

.albums .box-3 .album a .album-content {
  bottom: 15px;
}

.albums .box-3 .album a .album-content h2 {
  font-size: 1.2rem;
}

.splide:not(.is-overflow) .splide__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

.splide__pagination {
  display: none;
}

.splide__arrow svg {
  fill: #000;
  height: 0.8em;
  width: 0.8em;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
  outline: none;
}

.dark-mode .header {
  background-image: unset;
}

.dark-mode .down-nav-container {
  background-image: unset;
  background-color: var(--card-bg);
}

.dark-mode .footer {
  background-image: unset;
  background-color: var(--card-bg);
}

.dark-mode .videos {
  background-image: unset;
  background-color: var(--card-bg);
}

.dark-mode .ingograph {
  background-image: unset;
  background-color: var(--card-bg);
}

.dark-mode .infographic-page .ingograph {
  background: var(--body-color);
}

.dark-mode .infographic-page .header-news-content {
  background-image: unset !important;
}

.dark-mode .post-page .header-news-content {
  background-image: unset !important;
}

.dark-mode .shows {
  background-image: unset;
  background-color: var(--card-bg);
}

.dark-mode .cat-vid {
  background-image: unset;
  background-color: var(--card-bg);
}

.dark-mode .most-shows-view {
  background-image: unset;
  background-color: var(--body-bg);
}
/*# sourceMappingURL=main.css.map */
