@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", serif;
}

:root {
  --primary-color: #6653ff;
}
body {
  overflow-x: hidden;
}
input:focus {
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.col-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.col-7 {
  grid-column: span 7;
}
.col-6 {
  grid-column: span 6;
}
.col-5 {
  grid-column: span 5;
}

.post-title-sm {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: all 0.4s;
}
.post-title-sm span {
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 900;
}
.post-title-md {
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
  color: #000;
}
.post-title-md span {
  text-transform: uppercase;
  color: var(--primary-color);
}
.post-title-lg {
  font-size: 32px;
  line-height: 32px;
  font-weight: 900;
  color: #000;
  transition: all 0.4s;
}
.post-title-lg span {
  text-transform: uppercase;
  color: var(--primary-color);
}
.post-title-xl {
  font-size: 44px;
  line-height: 44px;
  font-weight: 900;
  color: #000;
}
.post-title-xl span {
  text-transform: uppercase;
  color: var(--primary-color);
}

/* ======= header ======== */
header {
  padding: 25px 0;
  border-bottom: 3px solid #000000;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
nav .logo,
nav .search-form {
  flex: 0 0 180px;
}
.navbar {
  list-style: none;
  display: flex;
}
.navbar li {
  border-right: 1px solid #000;
  padding-right: 10px;
  margin-right: 10px;
}
.navbar li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar li:last-child {
  border-right: 0;
}
.search-form {
  position: relative;
}
.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.search-form input {
  border: 0;
  padding: 5px 5px 5px 30px;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  width: 100%;
}
.search-form input::placeholder {
  color: #000000;
}

/* ==========footer======= */
footer {
  background-color: #f2f2f2;
  padding: 30px 0 30px 0;
  border-top: 3px solid #000;
}

.footer-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  border-bottom: 3px solid #000;
  padding-bottom: 30px;
}

footer p {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.footer-copyright {
  display: flex;
  justify-content: space-between;
  border-top: 0.5px solid rgba(112, 112, 112, 0.31);
  padding: 13px 0;
}
.footer-description {
  max-width: 500px;
}
.footer-terms {
  display: flex;
  gap: 25px;
}
.footer-terms a {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}

.footer-details p {
  margin-bottom: 7px;
}
.footer-cols {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  padding-top: 50px;
}

.footer-menu a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
}
.back-to-top {
  background-color: var(--primary-color);
  color: #fff;
    padding: 12px 18px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 900;
    display: block;
    margin-bottom: 0;
    text-transform: uppercase;
    border: 0;
	white-space: nowrap;
	cursor:pointer
}
.footer-social-media {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
.footer-logo {
  margin-bottom: 30px;
}
/* =======news====== */
.red-headline {
  background-color: #bc141b;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  width: fit-content;
  margin: 6px 0;
}
.red-headline span {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  line-height: 13px;
  text-transform: uppercase;
}
.first-news-section {
  margin-top: 10px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  padding: 20px 0;
}
.news-box-big-details {
  padding-right: 20px;
  position: relative;
}
.news-box-big-img {
  height: 380px;
  overflow: hidden;
  position: relative;
}
.news-box-big-img a {
  display: block;
  position: relative;
  height: 100%;
}
.news-box-big-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.29);
}
.news-box-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.red-headline img {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.news-box-big-details p {
  font-size: 17px;
  line-height: 22px;
  color: #727272;
  font-weight: 400;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.has-video {
  display: flex;
  align-items: center;
  color: #000;
  gap: 5px;
  margin-top: 8px;
}
.has-video span {
  font-size: 12px;
  line-height: 13px;
  font-weight: 900;
}
.news-box-sm {
  display: block;
}
.news-box-sm-image {
  height: 160px;
  margin-bottom: 5px;
}
.news-box-sm-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.post-cat-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.post-cat-info span {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  position: relative;
}
.bulletpoint-span::before {
  position: absolute;
  content: "";
  left: -7px;
  top: 5px;
  height: 3px;
  width: 3px;
  background-color: #000;
  border-radius: 50%;
}
.news-box .news-box-sm:first-child {
  border-bottom: 2px solid #000;
  padding-bottom: 9px;
  margin-bottom: 9px;
}
.grey-br {
  border-top: 1px solid #eaeaea;
  margin-top: 17px;
  padding-top: 17px;
}
.news-box-md {
  display: flex;
  gap: 10px;
}
.news-div .news-box-md {
  padding-right: 12px;
}
.news-box-md-img {
  width: 130px;
  height: 95px;
  min-width: 130px;
  min-height: 95px;
  display: flex;
}
.news-box-md-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-grid .col-6 {
  gap: 10px;
}
.has-video .post-cat-info {
  margin-top: 0;
}
.news-box-big-info {
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: calc(100% - 30px);
  border-top: 1px solid #fff;
}
.headline-section {
  position: relative;
  border-bottom: 2px solid #000;
}
.headline-section-without-br {
  border-bottom: 0;
  margin-bottom: 20px;
}
.headline-title {
  font-size: 18px;
  line-height: 14px;
  border-bottom: 2px solid #000000;
  font-weight: 900;
  padding: 5px 0;
  width: 170px;
  position: absolute;
  left: -200px;
  top: 30px;
  text-transform: uppercase;
}
.news-box-img-extra-sm {
  height: 112px;
  width: 95px;
  min-height: 112px;
  min-width: 95px;
  display: flex;
  position: relative;
}
.news-box-img-extra-sm::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.23);
}
.news-box-img-extra-sm img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-box-img-extra-sm .has-video {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(100% - 30px);
  transform: translate(-50%, -50%);
}
.news-box-img-extra-sm .has-video span {
  color: #fff;
}
.news-box-img-extra-sm .has-video {
  height: auto;
  width: auto;
}
.intervits-box-big-img {
  height: 260px;
}
.intervits-box-big-img .news-box-big-info {
  border-top: 0;
  text-align: center;
}
.intervits-box-big-img .news-box-big-info h3 {
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  max-width: 285px;
  margin: auto;
  margin-top: 5px;
  text-transform: uppercase;
}
.intervits-box-big-img-home .post-cat-info {
  display: none;
}
.intervits-box-big-img .has-video {
  justify-content: center;
}
.intervits-box-big-img .news-box-big-info {
  bottom: 15px;
}
.img99 {
  height: 430px;
  overflow: hidden;
  position: relative;
  display: block;
}
.img99 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.img99::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.36);
}
.im99-details {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.im99-details .post-title-lg {
  font-size: 26px;
  line-height: 29px;
  color: #fff;
  width: calc(100% - 60px);
  font-weight: 700;
}
.im99-details .has-video img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}
.im99-details .has-video span {
  color: #fff;
  font-size: 20px;
  line-height: 22px;
}
.im99-details .has-video {
  margin-bottom: 3px;
}
.news-box-fakt-you .news-box-sm-image {
  margin-bottom: 7px;
}
.fakt-you-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
}
.fakt-you-img {
  height: 100%;
  position: relative;
}
.fakt-you-grid .fakt-you-img::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 190px;
  width: 100%;
  z-index: 9;
  background: linear-gradient(
    to bottom,
    rgba(102, 83, 255, 0) 0,
    #6653ff 98.4%
  );
}
.fakt-you-grid .news-box .news-box-sm:first-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.fakt-you-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fakt-you-box {
  position: relative;
  height: 572px;
  overflow: hidden;
}
.fakt-you-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.44);
}
.fakt-you-details {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  display: block;
  z-index: 99;
}
.fakt-you-details h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 900;
  line-height: 32px;
  transition: all 0.4s;
}
.fakt-you-details p {
  margin-bottom: 7px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  line-height: 19px;
  text-transform: uppercase;
}
.fakt-you-box .has-video {
  position: absolute;
  left: 20px;
  top: 15px;
}
.fakt-you-box .has-video span {
  color: #fff;
}

/* ========single post======== */
.single-post-section {
  padding: 70px 0;
}
.single-post-section .post-title-xl {
  margin-bottom: 20px;
}
.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
}
.short-description {
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
  opacity: 0.6;
  font-style: italic;
}
.single-post-content p {
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 20px;
}
.single-post-content img {
  max-width: 100%;
  margin-bottom: 5px;
  height: auto;
}
.single-post-content a {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.wp-block-image :where(figcaption) {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  font-size: 14px;
  font-weight: 300;
  color: #707070;
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
  padding: 5px 0;
  margin-bottom: 15px;
}
.single-post-content picture iframe {
  width: 100%;
  margin-bottom: 15px;
}
.single-post-content figure iframe {
  width: 100%;
}
.share-details {
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
  position: sticky;
  top: 20px;
  height: fit-content;
}
.single-post-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}
.share-post {
  padding: 12px 0;
	  margin-top: 6px;
  display: flex;
	gap:5px
}
.single-news-details h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.single-news-details h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
}

.single-post-content {
  border-bottom: 3px solid #000;
  padding-bottom:15px
}
.single-post-headline .headline-title {
  position: relative;
  left: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
  width: 100%;
  padding: 7px 0;
  top: 0;
}
.recommended-grid {
  margin-top: 30px;
  margin-bottom: 50px;
}
.recommended-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.recommended-post-grid .news-box-sm-image {
  margin-bottom: 7px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.posts-grid .news-box-sm-image {
  height: 180px;
}
.posts-section {
  margin-top: 20px;
}
.news-pagination {
  padding: 35px 0;
  text-align: center;
}
.news-pagination .page-numbers {
  font-size: 18px;
  line-height: 14px;
  font-weight: 900;
  margin: 0 5px;
}
.news-pagination .page-numbers.current {
  text-decoration: underline;
}
.news-box-sm .red-headline {
  margin-top: 0;
}

/* intervista page */
.intervista-page-section {
  padding: 60px 0 0 0;
}
.intervits-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}
.intervits-page-box-big-img {
  height: 401px;
}
.intervits-grid .grey-br {
  padding-top: 10px;
  margin-top: 10px;
}
.intervits-grid .news-box-img-extra-sm {
  height: 120px;
}
.intervits-grid {
  margin-bottom: 20px;
}
.intervits-grid .grey-br:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.intervista-page-section .headline-title {
  top: 0;
}
.intervits-grid .intervits-box-big-img .news-box-big-info h3 {
  font-size: 27px;
  line-height: 32px;
  text-transform: uppercase;
  max-width: 75%;
}
.intervits-grid .news-box-big-info .has-video span {
  font-size: 21px;
  line-height: 22px;
}
.intervits-grid .news-box-big-info img {
  height: 22px;
  width: 22px;
}
.intervits-grid .news-box-big-info .has-video {
  margin-bottom: 5px;
}
.intervits-grid .news-box-big-info .post-cat-info {
  display: none;
}
.intervits-grid .news-box-sm .video-title {
  display: none;
}
.intervits-grid .news-box-sm img {
  display: none;
}
.news-grid-intervista .news-box-img-extra-sm .has-video .post-cat-info {
  display: none;
}
.news-grid-intervista .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}

.news-grid-intervista .news-box-sm .video-title {
  display: none;
}
.news-grid-intervista .news-box-sm img {
  display: none;
}
.news-box-intervista .news-box-img-extra-sm .has-video .post-cat-info {
  display: none;
}
.news-box-intervista .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}

/* FAKT YOU ==== */

.intervits-grid .grey-br {
  padding-top: 10px;
  margin-top: 10px;
}
.intervits-grid .news-box-img-extra-sm {
  height: 120px;
}

/* fakt you page  */
.fakt-you-grid-page {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 20px;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #a5a5a5;
}
.news-box-fakt-you .news-box-sm-image {
  position: relative;
}
.news-box-fakt-you .news-box-sm-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.23);
}
.news-box-fakt-you .news-box-sm-image .has-video {
  position: absolute;
  bottom: 2px;
  left: 10px;
  color: #fff;
  width: calc(100% - 20px);
  border-top: 1px solid #fff;
  padding: 8px 0;
}
.news-box-fakt-you .news-box-sm-image .has-video .bulletpoint-span::before {
  background-color: #ffff;
}
.news-box-fakt-you .news-box-sm-image .has-video img {
  height: 12px;
  width: 12px;
  filter: brightness(0) invert(1);
}
.news-box-fakt-you p {
  font-size: 14px;
  line-height: 18px;
  color: #727272;
  font-weight: 400;
  margin: 8px 0;
}
.fakt-you-grid-page .news-box-img-extra-sm .has-video .post-cat-info {
  display: none;
}
.fakt-you-grid-page .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}
.fakt-you-grid-page .news-box-sm .has-video img {
  display: none;
}
.fakt-you-grid-page .news-box-sm .has-video .video-title {
  display: none;
}
.fakt-you-col-12 {
  grid-column-gap: 20px;
}

.news-box-fakt-you .news-box-sm-image {
  height: 235px;
}
.news-box-fakt-you-big-image .news-box-sm-image {
  height: 520px;
}
.news-box-fakt-you-big-image .has-video {
  margin-bottom: 10px;
}
.fakt-you-homepage .news-box-img-extra-sm .has-video .post-cat-info {
  display: none;
}
.fakt-you-homepage .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}
.fakt-you-homepage .news-box-sm .has-video .video-title {
  display: none;
}
.fakt-you-homepage .news-box-sm .has-video img {
  display: none;
}
#search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.search-results-content {
  padding: 60px 0;
}
.search-results h5 {
  margin-bottom: 15px;
}
.fakt-you-grid-page-gap {
  padding-top: 0;
}

/* dark color  */
.page-id-520 header {
  background-color: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-520 .navbar li a {
  color: #fff;
}
.page-id-363 .navbar li a {
  color: #fff;
}
.page-id-520 footer {
  background-color: #191919;
  color: #fff;
}
.page-id-520 {
  background-color: #0f0f0f;
}
.page-id-520 .post-title-lg {
  color: #fff;
}
.page-id-520 .headline-title {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  top: 0;
}
.page-id-520 .footer-social-media {
  filter: brightness(0) invert(1);
}
.page-id-520 .search-form input {
  background-color: transparent;
  color: #fff;
}
.page-id-520 .search-form img {
  filter: brightness(0) invert(1);
}
.page-id-520 .search-form input::placeholder {
  filter: brightness(0) invert(1);
}
.page-id-520 .post-title-sm {
  color: #fff;
}
.page-id-520 .has-video span {
  color: rgba(255, 255, 255, 0.6);
}
.page-id-520 .bulletpoint-span::before {
  background-color: #fff;
}
.page-id-520 .headline-section {
  border: 0;
}
.page-id-520 .grey-br {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-520 .news-box .news-box-sm:first-child {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-520 .news-pagination .page-numbers {
  color: #fff;
}
.page-id-520 .navbar li {
  border-color: #fff;
}
.im99-details .red-headline img {
  height: auto;
  width: auto;
}
.im99-details .post-cat-info {
  display: none;
}
.news-box-99 .news-box-sm .has-video .video-title {
  display: none;
}
.news-box-99 .news-box-sm .has-video img {
  display: none;
}
.news-box-99 .news-box-img-extra-sm .has-video .post-cat-info {
  display: none;
}
.news-box-99 .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}
.grid-99 {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}

.page-99-box-big-img {
  height: 401px;
  display: block;
}
.page-99-section {
  padding: 60px 0;
}

.page-99-box-big-img .news-box-big-info {
  border-top: 0;
  left: 20px;
  bottom: 20px;
}
.page-99-box-big-img h3 {
  font-size: 26px;
  line-height: 29px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  max-width: 85%;
}
.page-99-box-big-img .news-box-big-info .post-cat-info {
  display: none;
}
.page-99-box-big-img .news-box-big-info .video-title {
  font-size: 17px;
  line-height: 18px;
  color: #fff;
}
.page-99-box-big-img .news-box-big-info .has-video {
  margin-bottom: 5px;
}
.page-99-box-big-img .news-box-big-info img {
  height: 18px;
  width: 18px;
}
.headline-title-99 h3 span {
  color: var(--primary-color);
}
.headline-title-99 h3 {
  margin-bottom: 10px;
}

.headline-title-99 h5 {
  color: rgba(255, 255, 255, 0.6);
}
.news-box-wrapper-99 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.page-id-520 .news-box-img-extra-sm .has-video span {
  color: #fff;
}

.inner-grid-99 .news-box-sm .has-video .video-title {
  display: none;
}
.inner-grid-99 .news-box-sm .has-video img {
  display: none;
}
.inner-grid-99 .news-box-img-extra-sm .post-cat-info {
  display: none;
}
.inner-grid-99 .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}

.news-box-big-img.page-99-box-big-img {
  box-shadow: 0px 3px 99px rgba(102, 83, 255, 0.31);
}
.posts-section .headline-title {
  top: 0;
}
.news-grid.news-grid-intervista .col-5 {
  padding-right: 20px;
}
.post-group .grey-br:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.post-group .news-box-sm-image {
  height: 200px;
}
.post-group .news-box-sm {
  position: relative;
}
.post-group .news-box-sm-image {
  position: relative;
}
.post-group .news-box-sm-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.36);
}
.post-group .news-box-big-info {
  border-top: 0;
}
.post-group .news-box-big-info h3 {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 900;
}
.post-group .news-box-big-info .post-cat-info {
  display: none;
}
.post-group .news-box-big-info img {
  height: auto;
  width: auto;
}
.post-group .news-box-big-info span {
  color: #fff;
}
.post-group .news-box-big-info .has-video {
  justify-content: center;
  margin-bottom: 5px;
}

.page-id-574 header {
  background-color: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-574 .navbar li a {
  color: #fff;
}
.page-id-574 footer {
  background-color: #191919;
  color: #fff;
}
.page-id-574 {
  background-color: #0f0f0f;
}
.page-id-574 .post-title-lg {
  color: #fff;
}
.page-id-574 .headline-title {
  color: #fff;
  border-color: #fff;
}
.page-id-574 .footer-social-media {
  filter: brightness(0) invert(1);
}
.page-id-574 .search-form input {
  background-color: transparent;
  color: #fff;
}
.page-id-574 .search-form img {
  filter: brightness(0) invert(1);
}
.page-id-574 .search-form input::placeholder {
  filter: brightness(0) invert(1);
}
.page-id-574 .post-title-sm {
  color: #fff;
}
.page-id-574 .has-video span {
  color: #fff;
}
.page-id-574 .bulletpoint-span::before {
  background-color: #fff;
}
.page-id-574 .headline-section {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-574 .grey-br {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-574 .news-box .news-box-sm:first-child {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-574 .news-pagination .page-numbers {
  color: #fff;
}
.vox-at .container {
  max-width: 1250px;
}
.vox-at-box {
  position: relative;
  box-shadow: 0px 3px 99px rgba(102, 83, 255, 0.31);
  height: 500px;
  overflow: hidden;
  border-radius: 11px;
  cursor: pointer;
}

.vox-at-box h2 {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 30px;
}
.vox-at-details {
  position: absolute;
  left: 20px;
  bottom: 25px;
  width: calc(100% - 40px);
  z-index: 2;
}
.vox-at-details h5 {
  font-size: 16px;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-weight: 400;
  text-transform: uppercase;
}
.vox-at {
  padding: 60px 0 100px 0;
}
.news-box-big-img iframe {
  height: 100%;
  width: 100%;
}
.post-cat-info .bulletpoint-span {
  text-transform: uppercase;
}
.fakt-you-video iframe {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.fakt-you-details h3 span {
  color: var(--primary-color);
  text-transform: uppercase;
}
.fakt-you-video video {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  object-fit: cover;
}
.fakt-you-video-hide {
  display: none;
}
.fakt-you-video::before {
  display: none;
}
.fakt-you-home-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .vox-at-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .vox-at .swiper {
    overflow: visible;
  }
}
.first-vox-grid {
  grid-template-columns: 500px 1fr;
  padding: 45px 0 20px 0;
}

.vox-at-video {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.first-vox-at-details {
  position: relative;
  max-width: 270px;
  height: fit-content;
  border-bottom: 0.5px solid rgba(112, 112, 112, 1);
  padding-bottom: 10px;
}
.first-vox-at-box {
  display: grid;
  gap: 60px;
  grid-template-columns: 270px 390px;
}

.first-vox-at-details h2 {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 30px;
}

.first-vox-at-details h5 {
  font-size: 16px;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-weight: 400;
  text-transform: uppercase;
}
.vox-at-video {
  position: relative;
  box-shadow: 0px 3px 99px rgba(102, 83, 255, 0.31);
  height: 700px;
  overflow: hidden;
  border-radius: 11px;
  width: 390px;
}

.vox-at-box iframe {
  position: absolute;
  left: 0;
  top: -45px;
  height: 120%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

/* video modal */
.video-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  width: 100%;
}
.video-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.43);
  z-index: 1;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background: #000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s;
  border: 10px solid #fff;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.video-modal-content video {
  max-height: 620px;
}

.close-modal {
  position: fixed;
  top: -80px;
  right: 5px;
  font-size: 52px;
  color: white;
  cursor: pointer;
  z-index: 9999;
}

.body-hidden {
  overflow: hidden;
}
.vox-at-headline {
  display: none;
}
.news-box-big-img-video::before {
  display: none;
}
.news-box-big-img-video .news-box-big-info {
  display: none;
}
.single-post-img {
  margin-bottom: 15px;
}
.single-post-img img {
  width: 100%;
}
.single-post-img p {
  font-size: 14px;
  font-weight: 300;
  color: #707070;
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
  padding: 5px 0;
}
.single-video {
  background-color: #ededec;
}
.single-post-img video {
  max-height: 500px;
  margin: auto;
  display: block;
}
.single-post-img iframe {
  width: 100%;
  height: 400px;
}
.swiper-slide:not(.swiper-slide-active) .vox-at-box iframe {
  visibility: hidden;
}

/* .swiper-slide.swiper-slide-active .video-wrapper::before {
  z-index: 999; 
} */
.vox-at-video-first {
  height: 700px;
  width: 100%;
  border-radius: 11px;
  overflow: hidden;
}
.vox-at-video-first video {
  height: 100%;
  width: 100%;
}
.news-box-big-img video {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  background-color: rgba(0, 0, 0, 0.23);
}
.video-mp4::before {
  display: none;
}
.fakt-you-img iframe {
  width: 100%;
  height: 100%;
}
.news-box-height {
  min-height: 380px;
}
.line {
  width: 21px;
  height: 3px;
  background-color: #000;
  margin: 3px;
}

.hamburger {
  position: absolute;
  cursor: pointer;
  width: 26px;
  height: 21px;
}

.full-nav {
  position: absolute;
  left: 0;
  top: 95px;
  width: 100%;
  background-color: #0f0f0f;
  padding: 60px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.2s;
}
.full-nav.full-nav-active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.full-nav-grid .navbar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 75px;
}
.full-nav-grid .navbar a {
  color: #fff;
}
.full-nav-grid {
  max-width: 700px;
}
.full-nav-grid .navbar li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  padding: 7px 0px;
  border-right: 0;
}
.hamburger-active .line:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 0;
  transform-origin: center;
}
.hamburger-active .line:nth-child(2) {
  display: none;
}
.hamburger-active .line:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 6px;
  left: 0;
  transform-origin: center;
}
.page-template-voxat .line {
  background-color: #fff;
}

.page-id-520 .line {
  background-color: #fff;
}
/* .news-box-md:hover .post-title-sm {
  color: var(--primary-color);
  transition: all 0.4s;
}
.news-box-sm:hover .post-title-sm {
  color: var(--primary-color);
  transition: all 0.4s;
}
.news-box-big-details:hover .post-title-lg {
  color: var(--primary-color);
  transition: all 0.4s;
} */
/* .img99:hover .post-title-lg {
  color: var(--primary-color);
  transition: all 0.4s;
} */
/* .fakt-you-box :hover h3 {
  color: var(--primary-color);
  transition: all 0.4s;
} */
.post-desc {
  font-size: 14px;
  line-height: 18px;
  color: #727272;
  font-weight: 400;
  margin: 2px 0 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.lajme-section {
  padding: 60px 0 20px 0;
}
.lajme-section .headline-title {
  top: 0;
}

/* dark color  */
.page-id-363 header {
  background-color: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-363 .navbar li a {
  color: #fff;
}
.page-id-363 footer {
  background-color: #191919;
  color: #fff;
}
.page-id-363 {
  background-color: #0f0f0f;
}
.page-id-363 .post-title-lg {
  color: #fff;
}
.page-id-363 .headline-title {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  top: 0;
}
.page-id-363 .footer-social-media {
  filter: brightness(0) invert(1);
}
.page-id-363 .search-form input {
  background-color: transparent;
  color: #fff;
}
.page-id-363 .search-form img {
  filter: brightness(0) invert(1);
}
.page-id-363 .search-form input::placeholder {
  filter: brightness(0) invert(1);
}
.page-id-363 .post-title-sm {
  color: #fff;
}
.page-id-363 .has-video span {
  color: rgba(255, 255, 255, 0.6);
}
.page-id-363 .bulletpoint-span::before {
  background-color: #fff;
}
.page-id-363 .headline-section {
  border: 0;
}
.page-id-363 .grey-br {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-363 .news-box .news-box-sm:first-child {
  border-color: rgba(255, 255, 255, 0.23);
}
.page-id-363 .news-pagination .page-numbers {
  color: #fff;
}
.page-id-363 .navbar li {
  border-color: #fff;
}
.page-id-363 .line {
  background-color: #fff;
}
.posts-grid-lajme {
  grid-row-gap: 0 !important;
}
.posts-grid-lajme .news-box-img-extra-sm .post-cat-info {
  display: none;
}
.posts-grid-lajme .news-box-img-extra-sm .has-video img {
  filter: brightness(0) invert(1);
}
.posts-grid-lajme .news-box-sm .has-video .video-title {
  display: none;
}
.posts-grid-lajme .news-box-sm .has-video img {
  display: none;
}
.posts-grid-lajme .grey-br:nth-child(1) {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.posts-grid-lajme {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .posts-grid-lajme .grey-br:nth-child(2) {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .posts-grid-lajme .grey-br:nth-child(3) {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
}
.news-grid-br {
  border-bottom: 2px solid #000;
}
.page-id-125 .first-news-section {
  padding-top: 40px;
  margin-top: 0;
}
.page-id-125 {
  background-color: #dbdbcfcc;
}
.page-id-125 .news-box-big-info {
  border-top: 0;
}
.page-id-125 header {
  background-color: #fff;
}
.page-id-125 .grey-br {
  border-top: 1px solid #000;
}
h6#fullscreen-btn {
  background-color: red;
  font-size: 20px;
}
.a2a_button_facebook {
  background-image: url("../images/fb-share.svg");
  background-repeat: no-repeat;
}
.a2a_button_facebook span {
  opacity: 0 !important;
}

.a2a_button_x {
  background-image: url("../images/twiter-share.svg");
  background-repeat: no-repeat;
}
.a2a_button_x span {
  opacity: 0 !important;
}
.a2a_button_facebook:hover {
  background-image: url("../images/fb-share.svg") !important;
  background-repeat: no-repeat !important;
}

.a2a_button_x:hover {
  background-image: url("../images/twiter-share.svg") !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1465px) {
  .container {
    max-width: 100%;
  }
  .headline-section {
    display: grid;
    grid-template-columns: 170px 1fr;
  }
  .headline-title {
    position: relative;
    top: 25px;
    left: 0;
    height: fit-content;
    font-size: 16px;
    width: 150px;
  }
}
@media (max-width: 1100px) {
  .headline-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .first-headline {
    display: none;
  }
}
.fakt-you-big-img-custom {
  height: 100%;
  position: relative;
}
.fakt-you-big-img-custom a {
  height: 100%;
  position: relative;
  display: block;
}
.fakt-you-big-img-custom a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.33);
}
.fakt-you-big-img-custom .has-video {
  bottom: -8px !important;
}
.custom-logo-link img {
  padding-left: 35px;
}
footer .custom-logo-link img {
  padding-left: 0;
}
@media (max-width: 1024px) {
  .news-box-99 .news-box-md {
    margin-bottom: 0;
  }
  .news-box-height {
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
  }
  .single-post-img video {
    max-height: unset;
    width: 100%;
  }
  .fakt-you-col-12 .news-box-fakt-you {
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
    margin-top: 10px;
    display: block;
  }
  .fakt-you-box::before {
    display: none;
  }
  .fakt-you-box {
    height: fit-content;
  }
  .fakt-you-img {
    height: 520px;
  }
  .fakt-you-details {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #000;
  }
  .news-box-height {
    min-height: auto;
  }
  .news-box-big-img video {
    object-fit: cover;
  }
  .col-home-big .news-box-big-img {
    height: 520px;
  }
  .navbar li {
    padding-right: 6px;
    margin-right: 6px;
  }
  .first-news-section {
    margin-top: 0;
  }
  header {
    padding: 15px 0 40px 0;
	  position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 999;
  }
  nav .logo,
  nav .search-form {
    flex: 0 0 23px;
  }
  .navbar {
    position: absolute;
    bottom: -32px;
    width: 100%;
    display: flex;
    overflow-x: scroll;
    padding-bottom: 4px;
  }
  /* header {
    display: none;
  } */
  .search-form input {
    display: none;
    width: 200px;
    position: absolute;
    top: 22px;
    right: 0;
    border: 1px solid #eaeaea !important;
    border-radius: 9px;
    padding: 7px 5px 7px 9px;
  }
  .active-input {
    display: block !important;
    background-color: #fff !important;
    color: #000 !important;
  }
  .headline-section {
    gap: 0;
  }
  .headline-title {
    border-bottom: 0;
    top: 10px;
  }
  .container {
    max-width: 600px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .col-12 {
    grid-template-columns: 1fr;
  }
  .col-home {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }
  .post-title-lg {
    font-size: 28px;
    line-height: 28px;
  }
  .news-box-big-details p {
    font-size: 14px;
    line-height: 19px;
  }
  .grey-br {
    margin-top: 15px;
    padding-top: 15px;
  }
  .fakt-you-grid {
    grid-template-columns: 1fr;
  }
  .fakt-you-details h3 {
    font-size: 28px;
    line-height: 28px;
    color: #000;
    font-weight: 900;
  }

  .fakt-you-details p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    display: none;
  }
  .news-box-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .news-box-mobile .grey-br:last-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }
  .news-box-mobile .news-box-sm:first-child {
    border-top: 1px solid #a5a5a5;
    margin-top: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #a5a5a5 !important;
    padding-bottom: 15px !important;
  }
  .news-box-img-extra-sm {
    height: 110px;
    min-height: 110px;
  }
  .news-box-md-img {
    width: 110px;
    min-width: 110px;
  }

  .mobile-order {
    order: 1;
    margin-top: 15px;
    border-bottom: 1px solid #a5a5a5;
    padding-bottom: 15px;
  }
  .single-post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .post-title-xl {
    font-size: 30px;
    line-height: 34px;
  }
  .share-details {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 1fr 123px;
  }
  .post-title-xl {
    font-size: 30px;
    line-height: 34px;
  }
  .single-post-content p {
    margin-bottom: 15px;
  }
  .single-post-headline .headline-title {
    border-bottom: 0;
  }
  .recommended-post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .recommended-post-grid .news-box-sm-image {
    height: 150px;
  }
  .recommended-grid {
    gap: 5px;
    margin-bottom: 35px;
  }
  .footer-cols {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
  .footer-menu {
    gap: 15px;
    overflow-x: scroll;
  }
  .footer-menu a {
    white-space: nowrap;
  }
  .footer-social-media {
    margin-top: 30px;
  }
  .footer-copyright {
    display: block;
  }
  .footer-terms {
    margin-top: 12px;
  }
  .footer-terms a {
    text-decoration: underline;
  }
  .posts-grid {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .posts-grid .news-box-sm-image {
    margin-bottom: 7px;
  }
  .posts-section .headline-title {
    top: -5px;
  }
  .news-box-sm-image {
    height: 210px;
  }
  #search-results {
    grid-template-columns: 1fr;
  }
  .intervits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .intervits-grid .intervits-box-big-img .news-box-big-info h3 {
    font-size: 16px;
    line-height: 18px;
    max-width: 85%;
  }
  .intervista-page-section .headline-title {
    top: -5px;
  }
  .intervits-grid .news-box-big-info .has-video span {
    font-size: 12px;
  }
  .intervits-grid .news-box-big-info img {
    height: 12px;
    width: 12px;
  }
  .intervits-grid .news-box-img-extra-sm {
    height: 82px;
  }
  .intervits-page-box-big-img {
    height: 260px;
  }
  .posts-grid .news-box-sm-image {
    height: 210px;
  }
  .fakt-you-grid-page {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .img99 {
    height: 320px;
  }
  .intervits-box-big-img {
    height: 310px;
  }
  .im99-details .post-title-lg {
    font-size: 20px;
    line-height: 24px;
    width: calc(100% - 40px);
  }
  .im99-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  .grid-99 {
    grid-template-columns: 1fr;
  }
  .news-box-wrapper-99 {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .page-99-box-big-img h3 {
    font-size: 18px;
    line-height: 20px;
  }
  .page-99-box-big-img .news-box-big-info .video-title {
    font-size: 13px;
    line-height: 10px;
  }
  .page-99-box-big-img .news-box-big-info img {
    height: 12px;
    width: 12px;
  }
  .page-99-section .headline-section {
    gap: 20px;
  }
  .page-id-520 .headline-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
  }
  .navbar::-webkit-scrollbar {
    display: none;
  }

  .intervista-page-section {
    padding: 15px 0 0 0;
  }
  .page-99-section {
    padding: 15px 0 30px 0;
  }
  .page-99-box-big-img {
    height: 310px;
  }
  .news-grid.news-grid-intervista .col-5 {
    padding-right: 0;
  }
  .post-group .grey-br:first-child {
    padding-top: 15px;
    margin-top: 0;
    border-top: 1px solid #a5a5a5;
  }
  .posts-grid {
    gap: 20px;
  }
  .page-id-574 .navbar li {
    border-color: #fff;
  }
  .single-post-section {
    padding: 35px 0;
  }
  .vox-at .mySwiper {
    height: calc(100dvh - 120px);
    overflow: hidden;
    box-shadow: unset;
    padding-top: 20px;
    /* margin-top: 20px; */
  }

  .vox-at .swiper-wrapper {
    display: flex;
    flex-direction: column;
  }

  .vox-at .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .vox-at-box {
    max-width: 100%;
    margin: auto;
    box-shadow: unset;
  }
  .vox-at {
    padding: 0;
  }
  .vox-at-headline {
    display: none;
    padding-left: 15px;
  }
  .page-template-voxat footer {
    display: none;
  }
  .close-modal {
    top: -85px;
    right: 8px;
  }
  .first-vox-section {
    display: none;
  }
  .vox-at-box {
    height: 100% !important;
  }
  .hamburger {
    position: relative;
  }
  .custom-logo-link img {
    padding-left: 0;
  }
  .full-nav-grid .navbar {
    position: relative;
    bottom: auto;
    width: 100%;
    grid-column-gap: 40px;
  }
  .full-nav {
    top: 98px;
  }
  .lajme-section {
    padding: 10px 0 20px 0;
  }
  .lajme-section .news-box-sm:first-child .news-box-sm-image {
    height: 520px;
  }
  .lajme-section .news-box-sm:first-child .post-title-sm {
    font-size: 28px;
    line-height: 28px;
    font-weight: 900;
  }
  .intervits-box-big-img .news-box-big-info h3 {
    max-width: 90%;
  }
  .recommended-post-grid .news-box-sm:nth-child(3) {
    display: none;
  }
  .custom-play-icon {
    display: none;
  }
  .page-id-125 .first-news-section {
    padding-top: 0;
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 10px 8px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: grid;
  gap: 8px;
}
.fakt-you-home-video-controls .video-controls {
  top: 10px;
  bottom: auto;
}
.control-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.control-btn svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.hidden {
  display: none !important;
}

/* Play/Pause button specific styles */
.play-pause-btn {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.play-pause-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.play-pause-btn .play-icon {
  margin-left: 2px; /* Center the play icon better */
}

/* Mute button specific styles */
.mute-btn {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Fullscreen button specific styles */
.fullscreen-btn {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Fullscreen styles */
.video-container:fullscreen {
  width: 100vw;
  height: 100vh;
}

.video-container:fullscreen .video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: unset;
}

.video-container:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
}

.video-container:-webkit-full-screen .video-player {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.video-container:-moz-full-screen {
  width: 100vw;
  height: 100vh;
}

.video-container:-moz-full-screen .video-player {
  width: 100%;
  height: 100%;
}

/* Responsive design */
@media (max-width: 1024px) {
  .fakt-you-grid .fakt-you-img::before {
    display: none;
  }
  .video-controls {
    bottom: 10px;
  }

  .control-btn {
    width: 35px;
    height: 35px;
    padding: 8px;
  }

  .control-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .video-controls {
    bottom: 10px;
    padding: 7px 5px;
    gap: 8px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .control-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Hover effects for the video container */
.video-container:hover .video-controls {
  opacity: 1;
  visibility: visible;
}

/* Smooth transitions */
.video-container {
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.control-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Animation for button state changes */
.control-btn svg {
  transition: transform 0.2s ease;
}

.control-btn:hover svg {
  transform: scale(1.1);
}

/* Loading state */
.video-player:not([src]) {
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player:not([src])::before {
  content: "Loading video...";
  color: #fff;
  font-size: 18px;
}

.col-home-big .news-box-big-info {
  left: 0;
  bottom: -5px;
  width: 100%;
}
.col-home-big .news-box-big-info img {
  filter: brightness(0);
}

.active {
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 4px;
}

.vox-at-video-first iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .col-home-big .news-box-big-info {
    position: relative;
  }
  .active {
    padding-bottom: 2px;
  }
}

.vox-at-box .video-controls {
  display: none;
}

.fullscreen-active .video-controls {
  display: grid;
}
.fullscreen-active .custom-play-icon {
  display: none;
}
.fullscreen-active.video-wrapper::before {
  display: none;
}

.youtube-video-wrapper {
  height: 100%;
  width: 100%;
}
.news-grid-intervista .news-box-big-info img {
  height: auto;
  width: auto;
}

.news-grid-intervista .news-box-big-info span {
  color: #fff;
}
.intervits-grid .news-box-big-info .has-video span {
  color: #fff;
}

.news-box-99 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-template-home .news-box-99 {
	gap:0
}

.news-box-99 .news-box-img-extra-sm {
  height: 120px;
}

@media (max-width: 1024px) {
  .news-box-99 {
    gap: 15px;
  }
}

.footer-social-media img {
  height: 28px;
}

.youtube-video-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.43);
  z-index: 1;
}
.youtube-video-wrapper iframe {
  scale: 1.3;
}


#youtube-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.youtube-wrapper {
  position: relative;
  width: 80vw;
  max-width: 900px;
}
#youtube-modal-close {
position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background-color: #fff;
    border: 0;
    /* color: #fff; */
    height: 30px;
    width: 30px;
    border-radius: 50%;
	display: flex;
    justify-content: center;
    align-items: center;
}
#youtube-modal-iframe {
  width: 100%;
  height: 50vw;
  max-height: 80vh;
  background: #000;
}
@media (max-width: 1024px) {
  .youtube-wrapper {
    width: 100%;
    max-width: 100%;
	height:100%;
	display: flex;
    align-items: flex-end;
 }

  #youtube-modal-iframe {
    height: 95%;
    max-height: 95%;
  }
}
