@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap");
.container {
  width: 100%;
  max-width: 121.6rem;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .container {
    max-width: 124.6rem;
  }
}

.btn {
  max-width: 28rem;
  padding: 2rem 5rem;
  border: 2px solid #051E3F;
  text-align: center;
  margin: 5rem auto;
  display: block;
  font-size: 2rem;
  border-radius: 5px;
  color: #051E3F;
  transition: all 0.3s ease;
}
.btn:hover {
  color: #FFF;
  border: 2px solid #051E3F;
  background: #051E3F;
}

.swiper {
  overflow: hidden;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
}

html {
  font-size: 62.5%;
}

img {
  max-width: 100%;
  display: block;
}

/**
    Variables
*/
body {
  background: #FFF;
}

header .top-section {
  display: flex;
  align-items: center;
  background: #04408F;
  color: #FFF;
  height: 6rem;
}
header .top-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top-section .container .date {
  font-weight: 700;
}
header .top-section .container .social {
  display: flex;
}
header .top-section .container .social a {
  display: block;
}
header .top-section .container .social a:not(:first-child) {
  margin: 0 0 0 15px;
}
header .ft-section {
  background: #051E3F;
  height: 18.5rem;
  display: flex;
  align-items: center;
}
header .ft-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .ft-section .container .menu #menu {
  display: none;
}
header .ft-section .container .menu ul {
  display: flex;
  align-items: center;
}
header .ft-section .container .menu ul li:not(:first-child) {
  margin: 0 0 0 3rem;
}
header .ft-section .container .menu ul li a {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  min-height: 18.5rem;
  transition: all 0.1s ease;
}
header .ft-section .container .menu ul li a:hover {
  color: #D7883D;
  border-top: 3px solid #D7883D;
  border-bottom: 3px solid #D7883D;
}
header .ft-section .container .menu ul .destaque {
  background: #04408F;
  padding: 0 3rem;
  border: none;
}
header .ft-section .container .menu ul .destaque:hover a {
  color: #D7883D;
  border: none;
}

section.main-slide {
  width: 100%;
  background: url(../img/main-banner.png) center center no-repeat;
  background-size: cover;
  height: 60rem;
  position: relative;
}
section.main-slide canvas {
  position: absolute;
  z-index: 0;
  top: 0;
}
section.main-slide .container {
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  z-index: 2;
}
section.main-slide .container .typed {
  font-size: 6rem;
  color: #FFF;
}
section.main-slide .container .typed::after {
  content: "|";
  animation: blink 1s step-end infinite;
  color: #FFF;
  font-weight: 200;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
section.count {
  width: 100%;
  height: 14rem;
  background: #D7883D;
  color: #FFF;
  display: flex;
  align-items: center;
}
section.count .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.count .container .title {
  font-size: 2.8rem;
  font-weight: 600;
}
section.count .container .timer {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 600;
}
section.count .container .timer span {
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.6rem;
  font-weight: 900;
  margin: 0 2.2rem;
}
section.shows {
  width: 100%;
  height: 50rem;
  background: #F3F3F3;
}
section.shows .swiper-slide {
  height: 50rem;
  background: #929496;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
section.shows .swiper-slide.banner-desktop {
  display: flex;
  background-size: cover;
}
section.shows .swiper-slide.banner-mobile {
  display: none;
}
section.shows .swiper-button-next, section.shows .swiper-button-prev {
  width: 4.8rem;
  height: 4.8rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
section.shows .swiper-button-next::after, section.shows .swiper-button-prev::after {
  text-indent: -9999rem;
}
section.news h2, section.videos h2, section.more h2 {
  font-size: 2.8rem;
  color: #051E3F;
  margin: 5.5rem 0 3rem 0;
  border-bottom: 1px solid #F3F3F3;
  padding: 0 0 2rem 0;
}
section.news .list, section.videos .list, section.more .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(38.4rem, 1fr));
  grid-gap: 1.5rem;
}
section.news .list article, section.videos .list article, section.more .list article {
  cursor: pointer;
  margin-bottom: 2rem;
}
section.news .list article h3, section.videos .list article h3, section.more .list article h3 {
  font-size: 1.9rem;
  color: #051E3F;
  line-height: 150%;
  margin: 2rem 0 0 0;
  transition: all 0.3s ease;
}
section.news .list article .thumb, section.videos .list article .thumb, section.more .list article .thumb {
  border: 3px solid #051E3F;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.news .list article .thumb img, section.videos .list article .thumb img, section.more .list article .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.7s ease;
  scale: 1.07;
}
section.news .list article:hover h3, section.videos .list article:hover h3, section.more .list article:hover h3 {
  color: #04408F;
}
section.news .list article:hover .thumb, section.videos .list article:hover .thumb, section.more .list article:hover .thumb {
  border-color: #04408F;
  transform: scale(1.03);
}
section.news .list article:hover .thumb img, section.videos .list article:hover .thumb img, section.more .list article:hover .thumb img {
  transform: scale(1.4);
}
section.words {
  padding: 7rem 0;
  background: #051E3F;
}
section.words h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #FFF;
  margin-bottom: 5rem;
}
section.words .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.words .container .content {
  max-width: 100rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.words .container .content img {
  max-width: 20rem;
  border-radius: 10px;
  margin-right: 3.2rem;
}
section.words .container .content .text {
  display: flex;
  flex-direction: column;
}
section.words .container .content .text p {
  font-size: 1.7rem;
  color: #FFF;
  line-height: 150%;
  text-align: justify;
}
section.words .container .content .text p:not(:last-child) {
  margin-bottom: 3rem;
}
section.single {
  margin: 4rem 0;
}
section.single h2 {
  display: block;
  font-size: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #EEE;
  padding: 0 0 2rem 0;
  color: #051E3F;
}
section.single .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #EEE;
  padding: 0 0 2rem 0;
}
section.single .content {
  width: 100%;
  display: inline-block;
  font-size: 1.4rem;
}
section.single .content * {
  font-size: 1.4rem;
  color: #202020;
}
section.single .content {
  line-height: 180%;
}
section.single .content p:not(:last-of-type) {
  margin-bottom: 2rem;
}

footer {
  padding: 10rem 0 20rem 0;
  height: 20rem;
}
footer .support {
  border-top: 1px solid #C4C4C4;
  padding: 5rem 0;
}
footer .support .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #C4C4C4;
  padding: 5rem 0;
}
footer .info .text {
  font-size: 1.3rem;
}

@media (max-width: 1200px) {
  section.count {
    display: none;
  }
}
@media (max-width: 991px) {
  header .ft-section .container .menu #menu {
    display: block;
    border: none;
    background: none;
  }
  header .ft-section .container .menu ul {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 51, 51, 0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: all;
    overflow-y: auto;
    padding: 10rem 0 0 0;
  }
  header .ft-section .container .menu ul li {
    width: 100%;
    border: none;
  }
  header .ft-section .container .menu ul li:not(:first-child) {
    padding: 0;
    margin: 0;
    border-top: 1px solid #04408F;
  }
  header .ft-section .container .menu ul li a {
    min-height: 0;
    font-size: 3rem;
    margin: 2rem 3rem !important;
  }
  header .ft-section .container .menu ul li:hover a {
    border: none;
    margin: 2rem 4rem !important;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 756px) {
  section.words .container .content {
    flex-direction: column;
  }
  section.words .container .content img {
    margin: 0;
    margin-bottom: 4rem;
  }
  footer .info {
    flex-direction: column;
  }
  footer .info .text {
    text-align: center;
  }
  footer .info .dev {
    margin-top: 2rem;
  }
}
.active {
  opacity: 1 !important;
  pointer-events: all !important;
}

@media (max-width: 576px) {
  section.shows {
    height: 27rem;
  }
  section.shows .swiper-slide {
    height: 27rem;
    background-color: var(--white);
  }
  section.shows .swiper-slide.banner-desktop {
    display: none;
  }
  section.shows .swiper-slide.banner-mobile {
    display: flex;
  }
  section.shows .swiper-button-next, section.shows .swiper-button-prev {
    width: 3rem;
    height: 3rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  section.shows .swiper-button-next::after, section.shows .swiper-button-prev::after {
    text-indent: -9999rem;
  }
}/*# sourceMappingURL=main.css.map */