@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --font1: "Open Sans", sans-serif;
  --font2: 'Montserrat', sans-serif;
  --color1: #000;
  --color2: #4f46e5;
  --body-color: #000;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--color1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color1);
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font2) !important;
  background: var(--body-color);
}

p, a, div, h1, h2, h3, h4, h5, h6, span {
  font-family: var(--font2);
  margin: 0;
}

a, a:hover {
  text-decoration: none;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.tc-container {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 24px;
}
.tc-container.full {
  max-width: 100%;
}
.tc-container.small {
  max-width: 880px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .tc-container {
    padding: 0 14px;
  }
}

.uk-sticky-placeholder {
  display: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--body-color);
  z-index: 1000;
  padding: 8px 0;
}
header .tc-container {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 72px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .tc-container {
    gap: 16px;
  }
}
header .logo a {
  display: flex;
}
header .logo a img {
  width: auto;
  height: 48px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .logo a img {
    height: 38px;
  }
}
header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header nav .menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav .menu-list a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  header nav .menu-list a {
    font-size: 14px;
  }
}
header nav .menu-list a.active {
  color: #fff;
}
header nav .menu-list a:not(.active) {
  color: #ffffff;
}
header nav .menu-list a:not(.active):hover {
  color: #fff;
}
header nav .button-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header nav .button-group {
    gap: 8px;
  }
}
header nav .button-group a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  header nav .button-group a {
    font-weight: 500;
  }
}
header nav .button-group a.btn {
  padding: 8px 16px;
  border-radius: 500px;
  background: var(--color1);
  transition: 0.3s ease;
}
@media (min-width: 320px) and (max-width: 767px) {
  header nav .button-group a.btn {
    padding: 4px 8px;
  }
}
header nav .button-group a.btn:hover {
  color: #fff;
  background: var(--color2);
}
header nav .button-group a.active {
  color: #fff;
  background: var(--color2);
}

.content {
  margin-top: 64px;
  padding: 24px 0;
}

.btn-big {
  width: 100%;
  padding: 16px 24px;
  border-radius: 500px;
  background: #fff;
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 16px;
}
.btn-big:hover {
  background: var(--color2);
  color: #fff;
  border: 1px solid var(--color2);
}

.home-hero-shell .home-hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 540px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-hero-shell .home-hero-grid {
    grid-template-columns: 1fr;
  }
}

.movie-card {
  position: relative;
}
.movie-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 2;
}
.movie-card .movie-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  z-index: 4;
}
.movie-card .movie-info .title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .movie-card .movie-info .title {
    font-size: 14px;
  }
}
.movie-card .movie-info .title:hover {
  color: var(--color2);
}

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 112px);
}

/*# sourceMappingURL=main.css.map */
