@import url(fonts.css);

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 300;
}

body p {
    line-height: 1.8em;
    font-size: 14.5px;
    font-weight: 400;
    color: #646464;
}

/* Font family styles and desc */

.text-cabin {
    font-family: "Cabin", sans-serif; /* Use for Footer Header */
}

.text-archivo {
    font-family: "Archivo", sans-serif; /* Use for Site Headers */
}

.text-barlow {
    font-family: "Barlow", sans-serif; /* Use for Contact Us */
}

.text-raleway {
    font-family: "Raleway", sans-serif; /* Use for Newsletter Side */
}

.text-reddit {
    font-family: "Reddit Sans", sans-serif; /* Use as main p tag text*/
}

.text-source-sans {
    font-family: "Source Sans 3", sans-serif; /* Use for Footer & Header Text */
}

.text-poppins {
    font-family: "Poppins", sans-serif; /* Use for sub header text */
}

.text-ptsans {
    font-family: "PT Serif", serif; /* Bold Italic Text - To be used in newsletter side also */
}

.text-roboto {
    font-family: "Roboto", sans-serif; /* Use for Analysis side & Site Buttons */
}

.italic-text {
    font-style: italic;
}

.font-100 {
    font-weight: 100;
}

.font-200 {
    font-weight: 200;
}

.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.font-900 {
    font-weight: 900;
}

.font-10 {
    font-size: 10;
 }

.font-11 {
    font-size: 11;
 }

.font-12 {
    font-size: 12;
 }

.font-13 {
    font-size: 13;
 }

.font-14 {
   font-size: 14;
}

.text-red {
    color: #f00000;
}

/* End Font family styles and desc */

.site-header {
    border-bottom: 1px solid rgb(230, 232, 234);
    background: white;
}

/* Fixed Navbar on Scroll */

.site-header.static {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.navbar {
    border-bottom: 1px solid rgb(230, 232, 234);
}

.bootstrap-select .dropdown-menu {
    max-height: 300px;
    width: 80px;
    overflow: auto;
    border: 0px;
    box-shadow: 0 1.5px 5px rgb(0 0 0 / 0.2);
}

/* width */
.bootstrap-select .dropdown-menu::-webkit-scrollbar {
    width: 3px;
  }
  
  /* Track */
  .bootstrap-select .dropdown-menu::-webkit-scrollbar-track {
    background: #ffffff; 
  }
   
  /* Handle */
  .bootstrap-select .dropdown-menu::-webkit-scrollbar-thumb {
    background: #a8a8a8; 
  }
  
  /* Handle on hover */
  .bootstrap-select .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #888; 
  }

.bootstrap-select>.dropdown-toggle {
    font-size: 14px !important;
    font-weight: 500;
    font-family: 'Reddit Sans', sans-serif;
}

.bootstrap-select .dropdown-menu li a {
    font-size: 14px !important;
    font-weight: 500;
    font-family: 'Reddit Sans', sans-serif;
}

.img-logo {
    width: 200px;
}

.btn-toggle {
    border: none;
    color: black;
    font-size: 23px;
}

.btn-toggle:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.btn-searchnews {
    color: black;
    font-size: 21px;
    margin-top: -7px;
}

.btn-searchnews:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.nav-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55em;
}

.nav-list li a {
    margin: 0px 12px;
    padding-top: 30px;
    padding-bottom: 5px;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    font-family: "Source Sans 3", sans-serif;
    border-bottom: 4px solid transparent;
    transition: 0.3s ease-in-out;
}

.nav-list li.active a {
    border-bottom: 4px solid #f00000;
}

.nav-list li a:hover {
    border-bottom: 4px solid #f00000;
}

.nav-list .dropdown .dropdown-menu {
    border: 0px;
    box-shadow: 0 1.5px 5px rgb(0 0 0 / 0.2);
}

.nav-list .dropdown .dropdown-menu .dropdown-item {
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0px 5px;
    text-transform: capitalize;
    border-bottom: 0px solid transparent;
}

.nav-list .dropdown .dropdown-menu .dropdown-item:hover {
    color: #f00000;
    background: transparent;
}

.nav-list .dropdown .dropdown-menu .dropdown-item.active {
    color: #f00000;
    background: transparent;
}

.nav-list .dropdown:hover .dropdown-menu {
    display: block;
}

.site-offcanvas {
  background: #141414;
}

.site-offcanvas .offcanvas-header {
  border-bottom: 0px;
}

.btn-times {
  color: white;
  border: none;
  font-size: 20px;
  padding: 0px;
}

.btn-times:hover {
  color: white;
}

.btn-times:focus {
  color: white;
}

.search-group input {
  border-radius: 0px;
}

.search-group input:focus {
  box-shadow: none;
  outline: none;
  border-color: white;
}

.search-group .btn-search-red {
  border-radius: 0px;
  background: #e00e0e;
  color: white;
}

.nav-socials a {
  color: white;
  border: 1px solid white;
  font-size: 17px;
  padding: 10px 13px;
  margin-right: 10px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.nav-socials a:hover {
  color: #e00e0e;
  border: 1px solid white;
  background: white;
}

.section-padding {
    padding-top: 40px;
}

.img-offcanvas {
  width: 200px;
}

.site-offcanvas .navbar-nav .nav-item .nav-link {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.site-offcanvas .navbar-nav .nav-item .nav-link.active {
  color: #e00e0e;
}

.site-offcanvas .navbar-nav .nav-item .nav-link:hover {
  color: #e00e0e;
}

.site-offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu {
  background: #141414;
  border: none;
}

.site-offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: white;
  font-size: 15px;
  font-weight: 500;
}

.site-offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #e00e0e;
  background: #141414;
}

.site-offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  color: #e00e0e;
  background: #141414;
}

.site-offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active {
  color: #e00e0e;
  background: #141414;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 450px;
}

.img-banner {
    width: 100%;
    height: 100%;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.banner-main-content {
    position: absolute;
    bottom: 40px;
    left: 0;
}

.banner-subhead {
    color: #f00000;
    background: white;
    padding: 8px;
    font-weight: 600;
    font-size: 14px;
    border-left: 2px solid #f00000;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.banner-head {
    color: white;
    margin-top: 15px;
}

.banner-area .carousel-arrow {
    border: 0;
    background: #f00000;
    font-size: 20px;
    display: none !important;
    color: white;
    height: 40px;
    width: 40px;
    margin-left: 10px;
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    top: 47%;
    /* margin-bottom: -10px; */
    transform: translate(0, -50%);
    outline: 0;
    cursor: pointer;
  }

  .banner-area:hover .carousel-arrow {
    display: block !important;
  }

  /* Modificação só pra a seta do próximo carousel ficar na direita */

  .banner-area .carousel-arrow.next {
    right: 0;
    margin-right: 10px;
  }

  .banner-area .carousel-arrow:hover {
    background: black;
  }


  .slider-dots {
    list-style: none;
    position: absolute;
    bottom: 0;
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .slider-dots li {
    display: inline-block;
    margin: 0 8px;
  }

  .slider-dots li > button {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    background: transparent;
    color: transparent;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
  }

  .slider-dots li.slick-active > button {
    background: white;
  }

  .news-display-area .display-header h2 {
    color: black;
  }

  .red-bot {
    background: #f00000;
    width: 50px;
    height: 4px;
  }

  .news-display-area .display-content {
    margin-top: 20px;
  }

  .news-display-area .display-content a {
    text-decoration: none;
  }

  .news-display-area .display-content h6 {
    font-weight: 600;
    font-size: 14px;
    color: black;
  }

  .news-display-area .display-content p {
    font-size: 12px;
    line-height: 1.2em;
  }

  .news-display-area .display-content .date-author {
    font-size: 11px;
    font-weight: 500;
  }

  .news-display-area .display-content a:hover h6 {
    text-decoration: underline;
    text-decoration-color: black;
  }
   
  .marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    overflow-x: hidden;
    background: black;
    color: white;
  }
  
  .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
  }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  

  .cast-date {
    color: #f00000;
    font-weight: 600;
  }

  .marquee .track .content a {
    text-decoration: none;
  }

  .marquee .track .content a:hover {
    text-decoration: underline;
    text-decoration-color: white;
  }

  .news-display-area .display-content.main h6 {
    font-weight: 600;
    font-size: 16px;
    color: black;
  }

  .news-display-area .display-content.main p {
    font-size: 14px;
    line-height: 1.2em;
  }

  .news-display-area .display-content.main .date-author {
    font-size: 12px;
    font-weight: 500;
  }

  .btn-seemore {
    color: white;
    background: black;
    border-radius: 0px;
    border: 1px solid black;
    font-size: 15px;
    padding: 8px 20px;
    font-family: "Barlow", sans-serif;
  }

  .btn-seemore:hover {
    color: white;
    background: #f00000;
    border: 1px solid #f00000;
  }

     /* Carousel Slider Center Mode */

     .my-slider .slider-arrow {
      border: 0;
      background: #e00e0e;
      display: none !important;
      height: 50px;
      width: 50px;
      /* border-radius: 50%; */
      position: absolute;
      font-size: 20px;
      z-index: 5;
      top: 50%;
      transform: translate(0, -50%);
      outline: 0;
      cursor: pointer;
    }
  
    .my-slider:hover .slider-arrow {
      display: block !important;
    }
    
    /* Modificação só pra a seta do próximo carousel ficar na direita */
    
    .my-slider .slider-arrow.next {
      right: 0;
    }
  
    .myslider-dots {
      list-style: none;
      margin: 10px auto;
      display: flex;
      justify-content: center;
    }
    
    .myslider-dots li {
      display: inline-block;
      margin: 0 8px;
    }
    
    .myslider-dots li > button {
      width: 8px;
      height: 10px;
      border: none;
      background: #141414;
      font-size: 0px;
      /* color: #65066C; */
      /* border-radius: 50%; */
      cursor: pointer;
      outline: none;
    }
    
    .myslider-dots li.slick-active > button {
      background: #e00e0e;
    }
    
    .video-slide-area {
      position: relative;
      width: 90%;
      margin-left: 5%;
      margin-right: 5%;
      /* height: 220px; */
    }

    .video-slide-area a {
      text-decoration: none;
    }

    .video-slide-area .img-video {
      width: 100%;
      height: 180px;
    }

    .video-slide-area .play-icon-area {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 180px;
      text-align: center;
      background: rgba(0,0,0,0.3);
    }

    .video-slide-area .play-icon-area .play-icon {
      top: 35%;
      left: 0;
      width: 100%;
      position: absolute;
    }

    .video-slide-area .play-icon-area .play-icon .la-play {
      color: white;
      font-size: 30px;
      border: 2px solid white;
      padding: 10px;
      border-radius: 50%;
    }

    .video-content h6 {
      font-weight: 600;
      margin-top: 15px;
      color: black;
      font-size: 17px;
    }

    .video-content .date-author {
      font-size: 14px;
      font-weight: 500;
    }

    .video-slide-area a:hover .video-content h6 {
      color: black;
      text-decoration: underline;
      text-decoration-color: black;
    }

    .footer-area {
      background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../img/footer-background.jpg) no-repeat center;
      min-height: 400px;
      background-size: cover;
      padding-top: 50px;
      padding-bottom: 50px;
      font-family: "Source Sans 3", sans-serif;
      margin-top: 60px;
    }

    .img-footer {
      width: 200px;
    }

    .footer-nav-links {
      list-style-type: none;
      margin-top: 10px;
      padding-inline-start: 20px;
    }
  
    .footer-nav-links li {
      line-height: 2em;
      position: relative;
    }
  
    .footer-nav-links li::before {
      content: "";
      position: absolute;
      top: 11px;
      left: -20px;
      width: 10px;
      height: 10px;
      border: 2px solid #e00e0e;
    }
  
    .footer-nav-links li a {
      color: white;
      font-size: 15px;
      text-decoration: none;
      transition: 0.5s all ease-in-out;
    }
  
    .footer-nav-links li a:hover {
      color: #e00e0e;
    }

    .footer-area .red-bot {
      width: 40px;
      height: 3px;
    }

    .copyright-area {
      margin-top: 30px;
    }

    .copyright-area p {
      color: white;
      font-size: 15px;
    }

    #myBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 99;
      font-size: 18px;
      border: none;
      outline: none;
      background-color: #e00e0e;
      color: white;
      cursor: pointer;
      padding: 10px 15px 10px 15px;
      box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    }
    
    #myBtn:hover {
      background-color: #141414;
    }
  
    .news-tabs {
      list-style-type: none;
      display: flex;
      padding-inline-start: 0px;
      margin: 20px 0px;
    }

    .news-tabs li {
      margin-right: 18px;
    }

    .news-tabs li a {
      color: white;
      background: #141414;
      border: 1px solid #141414;
      padding: 7px 15px;
      text-decoration: none;
      border-radius: 20px;
      font-size: 15px;
      font-weight: 400;
      transition: all 0.5s ease-in-out;
    }

    .news-tabs li.active a {
      color: white;
      background: #e00e0e;
      border: 1px solid #e00e0e;
    }

    .news-tabs li a:hover {
      color: white;
      background: #e00e0e;
      border: 1px solid #e00e0e;
    }

    .newscat-area a {
      text-decoration: none;
    }

    .newscat-area a .newscat-content h6 {
      color: black;
      font-weight: 600;
      font-size: 17px;
    }

    .newscat-area a .newscat-content p {
      font-size: 15px;
      line-height: 1.2em;
    }

    .newscat-area a .newscat-content .date-author {
      font-size: 14px;
      font-weight: 500;
    }

    .newscat-area a:hover .newscat-content h6 {
      text-decoration: underline;
      text-decoration-color: black;
    }


    .news-rel .play-icon-area {
      position: absolute;
      top: 0;
      left: 0;
      width: 90%;
      margin: 0 5%;
      height: 180px;
      text-align: center;
      background: rgba(0,0,0,0.3);
    }

    .news-rel .play-icon-area .play-icon {
      top: 30%;
      left: 0;
      width: 100%;
      position: absolute;
    }

    .news-rel .play-icon-area .play-icon .la-play {
      color: white;
      font-size: 30px;
      border: 2px solid white;
      padding: 10px;
      border-radius: 50%;
    }

    .img-news {
      width: 100%;
    }

    .news-show-area .author-head {
      font-size: 15px;
    }

    .share-area .share-icon i {
      color: #e00e0e;
      font-size: 17px;
    }

    .share-socials {
      list-style-type: none;
      padding-inline-start: 0px;
      display: flex;
      margin-top: 10px;
      width: 100%;
    }

    .share-socials li {
      margin-right: 10px;
    }

    .share-socials li a span {
      color: white;
      background: #141414;
      padding: 10px 11px;
      border-radius: 50%;
    }

    .share-socials li a .fa-facebook-f {
      background: #3c599f;
    }
 
    .share-socials li a .fa-x-twitter {
      background: #000;
    }

    .share-socials li a .fa-linkedin-in {
      background: #0085ae;
    }

    .share-socials li a .fa-whatsapp {
      background: #4fce5d;
    }

    .share-socials li a .fa-pinterest-p {
      background: #cb2027;
    }
    
    .share-socials li a .fa-envelope {
      background:  #ea4445;
    }

    .share-socials li a .fa-copy {
      background:  #1977d4;
    }

    .like-dislike-area span {
      font-size: 18px;
    }

    .like-dislike-area .count-icon {
      cursor: pointer;
    }

    .like-dislike-area .count {
      font-size: 17px;
    }

    .news-show-content p {
      font-size: 16px;
    }

    .news-show-content a {
      color: black;
      text-decoration-color: black;
    }

    .news-show-content img {
      max-width: 100%;
      height: auto !important;
    }

    .news-show-content figcaption {
      font-size: 13px;
      color: #888;
      font-weight: 400;
      font-style: italic;
    }

    .viewed-content {
      font-family: "PT Serif", serif;
      margin-top: 20px;
    }

    .viewed-content a:hover h1 {
      color: #e00e0e;
    }

    .viewed-content a:hover p {
      color: #e00e0e;
    }

    .viewed-content a h1 {
      color: #000;
      font-size: 45px;
    }

    .viewed-content a p {
      font-size: 17px;
      line-height: 1.5em;
    }

    .news-show-area iframe {
      width : 100%;
      height: 500px;
    }