/*=============== FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");
@font-face {
  font-family: "BIGMACCA";
  font-style: normal;
  font-weight: normal;
  src: local("BIGMACCA Regular"), url("../font/bigmacca.woff") format("woff");
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth !important;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Aldrich", sans-serif;
  color: #282525;
  background-image: url("../img/bg.png");
  background-size: cover;
  background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

div {
  scroll-margin-top: 50px;
}

button,
input {
  border: none;
  outline: none;
}

/*=============== BORDER ===============*/
.border-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 581px;
  width: 100%;
  background-color: red;
  pointer-events: none;
  z-index: -1;
}
.border-container .border-left {
  position: absolute;
  top: 70px;
  left: 1px;
  height: calc(100vh - 70px);
}
.border-container .border-right {
  position: absolute;
  top: 70px;
  right: 0;
  height: calc(100vh - 70px);
}
@media (max-width: 580px) {
  .border-container {
    display: none;
  }
}

/*=============== MAIN CONTENT ===============*/
.main-content {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  height: calc(100vh - 70px);
  overflow-y: scroll;
}

/*=============== SECOND NAV ===============*/
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
.main-nav .ea-logo {
  width: 100px;
}
.main-nav .nav-right-side {
  display: flex;
  align-items: center;
}
.main-nav .ea-10-logo-wrapper {
  position: relative;
  padding-right: 8px;
}
.main-nav .ea-10-logo-wrapper .ea-10-logo {
  width: 100px;
  display: block;
}
.main-nav .ea-10-logo-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: #FF254D;
}
.main-nav .nav-bars {
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  transition: 0.2s ease;
  border-radius: 10px;
}
.main-nav .nav-bars i {
  font-size: 24px;
  color: #00A6CE;
  transition: 0.2s ease;
}
.main-nav .nav-bars:hover {
  background-color: #00A6CE;
}
.main-nav .nav-bars:hover i {
  color: #fff;
}
.main-nav .nav-menu {
  position: absolute;
  top: 83px;
  left: 0;
  width: 100%;
  height: calc(100vh - 83px);
  background-color: #00A6CE;
  z-index: 1000;
}
.main-nav .nav-menu .nav-link {
  width: 100%;
  text-align: center;
}
.main-nav .nav-menu .nav-link:hover {
  background-color: #fff;
}
.main-nav .nav-menu .nav-link:hover .nav-item {
  color: #00A6CE;
}
.main-nav .nav-menu .nav-item {
  color: #fff;
  display: block;
  font-size: 35px;
  padding: 8px 0;
  transition: 0.2s ease;
}

/*=============== HERO ===============*/
.hero {
  padding: 0px 20px 10px;
  position: relative;
  background-color: #fff;
}
.hero .hero-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.hero .hero-img {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
.hero .border-container {
  top: -83px;
}

/*=============== VOTE ===============*/
.vote {
  position: relative;
  width: 100%;
  background-image: url("../img/section-bg-3.png");
  background-size: 100%;
  background-position: top center;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
}
.vote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 21, 28, 0.7);
  z-index: 0;
}
.vote .section-logo {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: #D7D7D7;
  border-radius: 50%;
}
.vote .vote-content {
  padding: 90px 40px 50px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.vote .vote-content.interact-container {
  position: relative;
  top: 180px;
}
.vote .vote-content h2 {
  text-transform: uppercase;
  font-family: BIGMACCA, sans-serif;
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px !important;
  line-height: 1;
}
.vote .vote-content h4 {
  text-transform: uppercase;
  font-family: BIGMACCA, sans-serif;
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px !important;
  line-height: 1;
}
.vote .vote-content .vote-img-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.vote .vote-content .vote-img-wrapper p {
  position: absolute;
  bottom: 60px;
  font-size: 21px;
  color: #fff;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}
.vote .vote-content .vote-btn {
  width: 320px;
  transition: 0.2s ease;
}
.vote .vote-content .vote-btn:hover {
  scale: 1.04;
}
.vote .vote-content span {
  color: #fff;
  text-align: left;
}
.vote .vote-content .contest-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.vote .vote-content .contest-info-wrapper span {
  font-size: 20px;
}
.vote .vote-content .contest-btn-wrapper {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px !important;
}

/*=============== WATCH ===============*/
.watch .vote-content {
  padding: 120px 0px 50px;
}
.watch .series {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px 10px;
}
.watch .movies {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px 10px;
}
.watch .movies .watch-box {
  max-width: 170px;
  height: 100%;
}
.watch .watch-box {
  cursor: pointer;
}
.watch .watch-box img {
  border-radius: 10px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}
.watch .watch-box span {
  transition: 0.3s ease;
}
.watch .watch-box:hover img {
  transform: translateY(-4px);
}
.watch .watch-box:hover span {
  color: #00A6CE;
}

/*=============== ARTICLES ===============*/
.articles .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
  margin-bottom: 20px;
  padding: 20px 10px;
}
.articles .watch-box span {
  display: block;
  line-height: 1.2;
  text-align: center;
}/*# sourceMappingURL=style.css.map */