/* General Styles */
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

/*=========== 
|   reset    |
=============*/
::selection {
  background: #333;
  color: #fff;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -webkit-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
}

body {
  position: relative;
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

input,
select,
textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: inherit;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

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

a:hover, a:visited, a:active, a:focus {
  color: inherit;
  text-decoration: none;
}

ol, ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.clear {
  clear: both;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

section {
  position: relative;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: auto;
  background: #282828;
}

.page-wrap {
  flex-grow: 1;
  background: #282828;
  color: #fff;
}

@media (max-width: 768px) {
  .page-wrap {
    width: 100%;
    margin-top: 91px;
  }
}

.page-wrap .container {
  padding: 0;
}

@media (max-width: 768px) {
  .page-wrap .container {
    padding: 1rem 0;
  }
}

@media (max-width: 767px) {
  .page-wrap .container {
    padding: 0;
  }
}

.page {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .page .container {
    box-shadow: none;
  }
}

button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: 0 0 0 1px #0089ff;
  transition: .2s ease;
  margin: 0;
  line-height: 1;
  text-align: center;
  color: #0089ff;
  cursor: pointer;
  font-size: calc(var(--base-font-s) * 1.25);
}

button:hover {
  background: #0089ff;
  color: #fff;
}

button:hover {
  background: #006ecc;
  box-shadow: none;
  color: #fff;
}

form button,
.featured button, button.featured {
  background: #0089ff;
  color: #fff;
}

form button:hover,
.featured button:hover, button.featured:hover {
  box-shadow: 0 0 0 1px #0089ff;
  background: #222;
  color: #0089ff;
}

.logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 160px;
}

header .logo {
  cursor: pointer;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a,
label {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h6 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

p, li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

label {
  font-weight: 300;
}

h1 {
  font-size: calc(var(--base-font-s) * 4);
}

h2 {
  font-size: calc(var(--base-font-s) * 3);
}

h3 {
  font-size: calc(var(--base-font-s) * 2.5);
}

h4 {
  font-size: calc(var(--base-font-s) * 2);
}

h5 {
  font-size: calc(var(--base-font-s) * 2);
}

h6 {
  font-size: calc(var(--base-font-s) * 1.25);
}

@media (max-width: 768px) {
  h1 {
    font-size: calc(var(--base-font-s) * 2);
  }
  h2 {
    font-size: calc(var(--base-font-s) * 1.75);
  }
  h3 {
    font-size: calc(var(--base-font-s) * 1.5);
  }
  h4 {
    font-size: calc(var(--base-font-s) * 1.25);
  }
  h5 {
    font-size: calc(var(--base-font-s) * 1.2s);
  }
  h6 {
    font-size: calc(var(--base-font-s) * 1.1);
  }
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.logo {
  position: relative;
  cursor: pointer;
  width: 160px;
  margin-right: 30px;
}

@media (max-width: 768px) {
  .logo {
    width: 120px;
  }
}

/*===========
|   header    |
=============*/
header {
  position: relative;
  top: 0;
  width: 100%;
  padding: 0 10px;
  background: #fff;
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.1), inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
  z-index: 999;
}

.wrapper-home header {
  position: fixed;
}

.wrapper-home header.header-up {
  transform: translateY(-80px);
  opacity: 0;
  transition: transform .5s ease-in-out, opacity 1s ease-in-out;
}

@media (max-width: 768px) {
  .wrapper-home header.header-up {
    transform: translateY(0);
    opacity: 1;
  }
}

.wrapper-home header.header-down {
  transition: .3s ease-in-out;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    max-height: 75px;
  }
}

header.dark {
  background: #282828;
  color: #fff;
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 10px;
  transition: .2s ease;
}

@media (max-width: 1024px) {
  header .container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 8px;
  }
}

header .container > button {
  display: none;
}

@media (max-width: 768px) {
  header .container > button {
    display: block;
  }
}

header .logo {
  margin-right: 30px;
}

@media (max-width: 1024px) {
  header .logo {
    margin-right: 0;
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  header .logo {
    padding-top: 0;
  }
}

header button {
  margin-left: auto;
  padding: 5px 10px;
  font-size: 14px;
}

@media (max-width: 767px) {
  header button {
    padding: 5px 8px;
    font-size: 12px;
  }
}

header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}

@media (max-width: 768px) {
  header .navbar {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 20px 10px;
    top: 75px;
    left: 0;
    background: #282828;
    color: #fff;
    box-shadow: inset 0 10px 16px -10px rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 768px) {
  header .navbar.in, header .navbar.show {
    position: absolute;
    left: 0;
    height: 100vh;
    padding: 16px;
    background: rgba(0, 0, 0, 0.8);
  }
}

header .navbar.in + .navbar-toggle:after, header .navbar.show + .navbar-toggle:after {
  content: 'close';
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header ul:last-child {
  margin-left: auto;
}

@media (max-width: 768px) {
  header ul {
    display: block;
  }
}

header ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 4px;
  transition: .2s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 768px) {
  header ul li {
    display: block;
    width: 100%;
    margin: 0 0 16px;
    border: 0;
    text-align: left;
  }
}

header ul li span {
  padding: 5px;
  border-radius: 30px;
  transition: .2s ease;
}

header ul li:hover:not(.tel) span {
  background: #0089ff;
  color: #282828;
}

header .tel {
  cursor: unset;
}

@media (max-width: 768px) {
  header .user-nav li.btn-wrap {
    order: 1;
    display: flex;
    width: 100%;
  }
}

header .user-nav li.btn-wrap button {
  margin: 0;
}

header .user-nav li.btn-wrap button:first-child {
  margin-inline-end: 10px;
}

@media (max-width: 768px) {
  header .user-nav li.sign {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 30px;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: 0 0 0 1px #0089ff;
    transition: .2s ease;
    margin: 0;
    line-height: 1;
    text-align: center;
    color: #0089ff;
    cursor: pointer;
    width: fit-content;
    margin-top: 20px;
    padding: 5px;
  }
  header .user-nav li.sign:hover {
    background: #0089ff;
    color: #fff;
  }
  header .user-nav li.sign span {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .header-btn-wrap {
    display: flex;
    width: 100%;
    padding: 10px;
    background: #282828;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header-btn-wrap button {
    flex: 1;
  }
  .header-btn-wrap button:first-child {
    margin-inline-end: 10px;
  }
}

#touch-menu {
  display: none;
  width: 20px;
  height: 30px;
  position: relative;
  margin-inline-start: auto;
}

@media (max-width: 768px) {
  #touch-menu {
    display: block;
  }
}

#touch-menu span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #666;
  width: 100%;
  height: 2px;
  transition: .2s ease;
}

#touch-menu span:before, #touch-menu span:after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  background: #666;
  transition: .2s ease;
}

#touch-menu span:before {
  top: -5px;
}

#touch-menu span:after {
  top: 5px;
}

#touch-menu.on span {
  background: transparent;
  height: 0;
}

#touch-menu.on span:before {
  top: -10px;
  transform: rotate(45deg) translate(6px, 5px);
  background: rgba(255, 255, 255, 0.5);
}

#touch-menu.on span:after {
  transform: rotate(-45deg) translate(5px, -5px);
  background: rgba(255, 255, 255, 0.5);
}

/*===========
|  /header    |
=============*/
/*===========
|   footer    |
=============*/
footer {
  padding: 40px;
  background: #fff;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  footer {
    padding: 20px;
  }
}

footer.dark {
  background: #000;
  color: #fff;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  footer .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
}

footer .container > p {
  padding: 20px 0;
  flex: 100%;
  font-size: 13px;
}

footer .row {
  margin-bottom: 20px;
}

footer .row:last-of-type {
  margin-bottom: 0;
}

footer .col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-inline-end: 40px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .col {
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

footer .col:first-of-type {
  border-inline-end: 1px solid #9bfffb;
}

@media (max-width: 768px) {
  footer .col:first-of-type {
    margin: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border: 0;
    border-bottom: 1px solid #9bfffb;
  }
}

footer .col:last-of-type {
  margin-inline-end: 0;
  max-width: 300px;
}

footer p {
  margin-bottom: 10px;
  font-size: 13px;
}

footer ul {
  width: fit-content;
}

@media (max-width: 768px) {
  footer ul {
    margin: 0;
  }
}

footer ul.flex_wrap li {
  flex: 0 1 auto;
  margin-inline-end: 10px;
  margin-bottom: 0;
  padding-inline-end: 10px;
  border-inline-end: 1px solid #0089ff;
  text-align: center;
}

footer ul.flex_wrap li:hover {
  text-decoration: underline;
  color: #0089ff;
}

footer ul.flex_wrap li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 768px) {
  footer ul.flex_wrap li {
    margin: 0 0 20px 0;
    padding: 0;
    border: 0;
    text-align: left;
  }
}

footer ul.contact {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  footer ul.contact {
    order: 2;
    width: 100%;
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid #cce7ff;
  }
}

footer ul.contact a {
  white-space: nowrap;
}

footer li {
  margin-bottom: 10px;
  font-size: 13px;
  cursor: pointer;
}

footer li:hover a {
  text-decoration: underline;
  color: #0089ff;
}

footer .contact_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  footer .contact_wrap .terms-links_wrap {
    order: 1;
  }
}

footer .logo {
  margin-bottom: 20px;
}

.footer_title {
  margin-bottom: 10px;
  font-weight: bold;
}

.company {
  font-size: 12px;
}

/*===========
|   /footer   |
=============*/
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.carousel-item {
  position: relative;
}

.slides_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-half_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.slider-half_wrap > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  transition: .2s ease-in;
  background-color: #282828;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-child(1) {
  background-image: url(../images/movies-banner-1.jpg);
}

.slide:nth-child(2) {
  background-image: url(../images/movies-banner-2.jpg);
}

.slide:nth-child(3) {
  background-image: url(../images/movies-banner-3.jpg);
}

.slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .slide {
    position: relative;
    position: absolute;
    padding: 0;
  }
  .slide:before, .slide:after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
  }
  .slide:after {
    background: rgba(0, 0, 0, 0.3);
    mix-blend-mode: multiply;
  }
}

.carousel-item {
  position: relative;
  height: 60vh;
  background-color: #35FFF6;
}

.carousel-item .content {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item .content:before, .carousel-item .content:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.carousel-item .content:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 768px) {
  .carousel-item .content:after {
    background-position-x: 30%;
  }
}

.carousel-item:nth-of-type(4n+2) .content:after {
  background-image: url("../img/bg-hero1.jpg");
}

.carousel-item:nth-of-type(4n+3) .content:after {
  background-image: url("../img/bg-hero2.jpg");
}

.carousel-item:nth-of-type(4n+4) .content:after {
  background-image: url("../img/bg-hero3.jpg");
}

.carousel-item:nth-of-type(1) .content:after, .carousel-item:nth-of-type(5n) .content:after {
  background-image: url("../img/bg-hero4.jpg");
}

.slick-arrow {
  float: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  color: transparent;
  z-index: 1;
  transition: .2s ease;
  opacity: .5;
}

@media (max-width: 768px) {
  .slick-arrow {
    display: none !important;
  }
}

.slick-arrow:before, .slick-arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  font-family: 'Glyphicons Halflings';
  font-size: 20px;
  line-height: 2;
  color: #fff;
}

@media (max-width: 768px) {
  .slick-arrow:before, .slick-arrow:after {
    font-size: 15px;
  }
}

.slick-arrow:hover, .slick-arrow:focus {
  color: transparent;
  outline: none;
  opacity: 1;
  background: rgba(0, 137, 255, 0.2);
}

.slick-arrow.slick-prev {
  left: 20px;
}

@media (max-width: 768px) {
  .slick-arrow.slick-prev {
    left: 16px;
  }
}

.slick-arrow.slick-prev:before {
  content: '\e079';
}

.slick-arrow.slick-next {
  right: 20px;
}

@media (max-width: 768px) {
  .slick-arrow.slick-next {
    right: 16px;
  }
}

.slick-arrow.slick-next:after {
  content: '\e080';
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -30px;
}

@media (max-width: 768px) {
  .slick-dots {
    display: none !important;
  }
}

.slick-dots li {
  margin: 5px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: #33a1ff;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  text-indent: 1000px;
}

.slick-dots li.slick-active button {
  background-color: #fff;
  box-shadow: 0 0 0 1px #0089ff;
}

.hero-half-slider .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.hero-half-slider .content > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-half-slider .slide:nth-child(1) {
  background-image: url(../images/bgHero-1.jpg);
}

.hero-half-slider .slide:nth-child(2) {
  background-image: url(../images/bgHero-2.jpg);
}

.hero-half-slider .slide:nth-child(3) {
  background-image: url(../images/bgHero-3.jpg);
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.container {
  position: relative;
  margin: auto;
  padding: 0;
}

@media (max-width: 1920px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 960px;
  }
}

.card {
  position: relative;
  background: #252a2c;
  box-shadow: 0 0 4px 0 #0089ff;
  border-radius: 0;
}

.close-icon {
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
  transition: .2s ease;
}

.close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  color: #666;
}

.close-icon:hover:before {
  color: #0089ff;
}

.modal-content {
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  background: transparent;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.response {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #e50914;
}

input:focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-internal-autofill-selected,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-internal-autofill-selected,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-internal-autofill-selected {
  background-color: inherit !important;
}

input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

input:not([type="checkbox"]),
select,
textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #999999;
  transition: .3s ease;
  font-size: 12px;
  color: #fff;
}

input:not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #0089ff;
}

@media (max-width: 768px) {
  input:not([type="checkbox"]),
  select,
  textarea {
    height: 44px;
  }
}

input[type="checkbox"] {
  position: relative;
  background: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  margin: 0;
  padding: 0;
  height: 16px;
  border: 0;
  outline: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #666666;
  transition: .3s ease;
  cursor: pointer;
}

input[type="checkbox"]:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: 'check';
  font-family: 'Material Icons';
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  width: 16px;
  height: 16px;
  opacity: 0;
}

input[type="checkbox"]:checked {
  box-shadow: none;
  background: #0089ff;
}

input[type="checkbox"]:checked:after {
  opacity: 1;
}

input[type="checkbox"]:hover input[type=checkbox]:after {
  opacity: .5;
}

select {
  position: relative;
  background-image: url(../img/arrow-down.svg);
  background-size: 13px;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  background-repeat: no-repeat;
}

select option {
  color: #282828;
}

form label {
  font-size: 13px;
}

form textarea {
  height: 80px;
  padding: .5em;
}

form button {
  padding: 16px;
  font-size: 16px;
}

@media (max-width: 768px) {
  form button {
    width: 100%;
  }
}

form .term-wrap-text {
  margin-left: 1rem;
}

form .term-wrap {
  margin: 20px 0;
}

form .term-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

form .term-wrap .terms-text {
  margin-left: 10px;
  font-size: 12px;
}

form .no-match {
  font-size: 0.8rem;
  color: #e50914;
}

form .general-error {
  position: relative;
  height: 20px;
}

form p {
  font-weight: 400;
}

form p a {
  text-decoration: underline;
}

form p a:hover {
  text-decoration: underline;
  color: #0089ff;
}

select {
  cursor: pointer;
}

.loader {
  position: relative;
  top: 10px;
  width: 0;
  height: 1px;
  transition: .2s all;
}

.loader-gradient, .loader, header .nav-loader {
  background: linear-gradient(to right, #0089ff 50%, rgba(255, 255, 255, 0) 100%);
}

.modal-content {
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  background: transparent;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label:not(.cc-label) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  transition: .2s ease;
  user-select: none;
  cursor: text;
}

.form-group.active:not(.cc-input-wrap) label {
  top: -8px;
  left: 8px;
  z-index: 3;
  transform: none;
  padding: 0 4px;
  font-size: 13px;
  background: #282828;
  color: #0089ff;
}

.form-group .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-group .input-wrap span {
  color: #777;
}

.cc-input-wrap input {
  max-width: 100px;
}

.cc-input-wrap .cc-label {
  margin-right: 10px;
}

.term-wrap {
  position: relative;
}

.required,
.input-msg {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #e50914;
  position: absolute;
}

.form-group .required, .form-group
.input-msg {
  right: 10px;
  bottom: -16px;
}

.term-wrap .required, .term-wrap
.input-msg {
  right: 0;
  bottom: 0;
}

#sign-up form button,
.signin-form form button,
#support form button {
  width: 100%;
}

@media (max-width: 767px) {
  #sign-up form button,
  .signin-form form button,
  #support form button {
    max-width: 100%;
  }
}

#sign-up input, #sign-up select,
.signin-form input,
.signin-form select,
#support input,
#support select {
  color: #fff !important;
}

#sign-up input::-webkit-input-placeholder, #sign-up select::-webkit-input-placeholder,
.signin-form input::-webkit-input-placeholder,
.signin-form select::-webkit-input-placeholder,
#support input::-webkit-input-placeholder,
#support select::-webkit-input-placeholder {
  font-size: 14px;
  color: #fff;
}

#sign-up .links-wrap,
.signin-form .links-wrap,
#support .links-wrap {
  margin-top: 20px;
  text-align: center;
}

#sign-up .links-wrap p,
.signin-form .links-wrap p,
#support .links-wrap p {
  margin-bottom: 10px;
}

#sign-up .links-wrap p a,
#sign-up .links-wrap p span,
.signin-form .links-wrap p a,
.signin-form .links-wrap p span,
#support .links-wrap p a,
#support .links-wrap p span {
  cursor: pointer;
  color: #0089ff;
}

#sign-up .links-wrap p a:hover,
#sign-up .links-wrap p span:hover,
.signin-form .links-wrap p a:hover,
.signin-form .links-wrap p span:hover,
#support .links-wrap p a:hover,
#support .links-wrap p span:hover {
  text-decoration: underline;
  color: #005299;
}

.signin-form {
  position: relative;
  position: relative;
  background: #252a2c;
  box-shadow: 0 0 4px 0 #0089ff;
  border-radius: 0;
  z-index: 10;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  padding: 16px;
}

.signin-form .loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
}

.signin-form .close-icon {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
}

.signin-form .close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
}

.signin-form button {
  width: 100%;
  margin: 20px auto 0;
}

.signup-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .signup-wrap {
    display: block;
    padding: 5em 0 0;
  }
}

@media (max-width: 767px) {
  .support-content > div:first-child {
    order: 1;
  }
  .support-content > div:last-child {
    order: 0;
  }
}

.captcha-wrap {
  margin-bottom: 20px;
}

.phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.phone-wrap .prefix_wrap {
  width: 80px;
  margin-right: 5px;
}

.phone-wrap .prefix_wrap label {
  margin-left: 10px;
  color: #fff;
  cursor: pointer;
}

.phone-wrap .prefix_wrap .btn {
  display: block;
  height: 100%;
  padding: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
  line-height: 1;
}

.phone-wrap .prefix_wrap .dropdown-menu {
  min-width: 300px;
}

.phone-wrap .ui-select-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #999999;
  transition: .3s ease;
  font-size: 12px;
  color: #fff;
  z-index: 100;
  padding: 0 5px;
}

.phone-wrap .ui-select-container:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #0089ff;
}

@media (max-width: 768px) {
  .phone-wrap .ui-select-container {
    height: 44px;
  }
}

.phone-wrap .ui-select-container input {
  height: 100%;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .ui-select-container input:focus {
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .ui-select-match {
  padding: 0;
}

.phone-wrap .ui-select-match::placeholder {
  color: #fff;
}

.phone-wrap .ui-select-match-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 44px;
  padding: 0;
  background-image: url(../images/arrow-down.svg);
  background-size: 13px;
  background-position-x: calc(100% - 0px);
  background-position-y: 50%;
  background-repeat: no-repeat;
  color: #fff;
}

.phone-wrap .ui-select-match-text + i {
  display: none;
}

.phone-wrap .ui-select-match-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 44px;
}

@media (max-width: 768px) {
  .phone-wrap .ui-select-match-text span {
    height: 44px;
  }
}

.phone-wrap .btn-default-focus {
  outline: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .form-group {
  width: 100%;
  height: 100%;
  padding: 0;
}

.phone-wrap .form-group input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #999999;
  transition: .3s ease;
  font-size: 12px;
  color: #fff;
}

.phone-wrap .form-group input:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #0089ff;
}

@media (max-width: 768px) {
  .phone-wrap .form-group input {
    height: 44px;
  }
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

section {
  position: relative;
  padding: 0;
  color: #fff;
}

@media (max-width: 768px) {
  section {
    padding: 20px;
  }
}

section .content {
  max-width: 100%;
  margin: auto;
}

.content-squares {
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  padding-top: 50px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0;
  }
}

.hero .hero6 {
  position: relative;
  height: 95vh;
  min-height: 95vh;
  background-image: url(../images/bgHero-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero .hero6 {
    height: 50vh;
    min-height: 100%;
  }
}

@media (max-width: 767px) {
  .hero .hero6 {
    background: none;
    height: auto;
  }
}

.hero .text {
  position: relative;
  font-family: Poppins;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 40px;
  background: rgba(42, 42, 42, 0.7);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero .text {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .hero .text {
    top: initial;
    left: initial;
    transform: none;
    margin: auto;
    background: none;
  }
}

.hero .text .title {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  color: #35FFF6;
  animation: glow-text 5s infinite;
  text-shadow: none;
}

.hero .text .subtitle,
.hero .text .title-text,
.hero .text .btn-su,
.hero .text .sign-up-btn {
  text-align: center;
}

.hero .text .subtitle {
  text-transform: uppercase;
  text-shadow: 2px 2px 2px #282828;
}

.hero .text .subtitle span {
  font-size: 120%;
}

.hero .text .title-text {
  padding: 0 0 30px;
  color: #ffffff;
  font-size: 29px;
  font-weight: 300;
}

@media (max-width: 767px) {
  .hero .text .title-text {
    font-size: 18px;
  }
}

.hero .text .btn-su,
.hero .text .sign-up-btn {
  position: relative;
  font-weight: 700;
  background: linear-gradient(to right, #0089ff 0%, #0060b3 100%) !important;
  background-size: 200%;
  background-position: center;
  border: 0;
  box-shadow: 5px 10px 10px rgba(0, 137, 255, 0.3);
  margin: 0 auto;
  font-size: 30px;
  border: 1px solid #000;
  padding: 20px 80px;
}

@media (max-width: 767px) {
  .hero .text .btn-su,
  .hero .text .sign-up-btn {
    font-size: 21px;
    padding: 11px 42px;
  }
}

.hero .text .btn-su:before,
.hero .text .sign-up-btn:before {
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: '';
  width: 0;
  height: 100%;
  background: #0089ff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero .text .btn-su:hover,
.hero .text .sign-up-btn:hover {
  color: #fff;
}

.hero .text .btn-su:hover:before,
.hero .text .sign-up-btn:hover:before {
  background: #0089ff;
  width: 100%;
}

.hero .text .btn-su span,
.hero .text .sign-up-btn span {
  position: relative;
  text-shadow: 2px 2px 2px #122b36;
  z-index: 2;
}

.hero button {
  color: #fff;
  background: #0089ff;
  border: 1px solid #0089ff;
}

.hero button:hover {
  background: #fff;
  color: #0089ff;
}

.hero-sm {
  display: none;
}

@media (max-width: 767px) {
  .hero-sm {
    display: block;
  }
}

@keyframes glow-text {
  0% {
    text-shadow: none;
  }
  80% {
    text-shadow: none;
  }
  81% {
    text-shadow: 0 0 10px #35fff6;
  }
  90% {
    text-shadow: 0 0 5px #35fff6;
  }
  100% {
    text-shadow: 0 0 10px #35fff6;
  }
}

.columns-wrap2 {
  padding-top: 50px;
}

.columns-wrap2 .content {
  max-width: 1200px;
  margin: 0 auto;
}

.columns-wrap2 .title {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.columns-wrap2 .title h2 {
  position: relative;
  padding-bottom: 40px;
  text-shadow: 2px 2px 2px #35FFF6;
}

@media (max-width: 767px) {
  .columns-wrap2 .title h2 {
    font-size: 24px;
  }
}

.columns-wrap2 .title h2:after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 2px;
  border-radius: 2px;
  background-color: #35FFF6;
}

.columns-wrap2 .title p {
  font-size: 120%;
  font-family: poppins;
}

.columns-wrap2 .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  min-height: auto;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #202020;
  padding: 30px;
}

@media (max-width: 767px) {
  .columns-wrap2 .col {
    margin: 20px 0px;
  }
}

.columns-wrap2 .col:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .columns-wrap2 .col:nth-child(even) {
    flex-direction: column;
  }
}

.columns-wrap2 .col:nth-child(even) h5 {
  color: #0089ff;
}

.columns-wrap2 .col:nth-child(even) .icon {
  margin-inline-end: 0;
  margin-inline-start: 30px;
}

@media (max-width: 767px) {
  .columns-wrap2 .col:nth-child(even) .icon {
    margin-inline-start: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .columns-wrap2 .col {
    width: 100%;
    min-height: auto;
    flex-direction: column;
  }
}

.columns-wrap2 .col .icon {
  width: 220px;
  height: 220px;
  min-width: 220px;
  border-radius: 100%;
  margin-inline-end: 30px;
  box-shadow: 0 0 0 2px #35FFF6;
  overflow: hidden;
}

@media (max-width: 767px) {
  .columns-wrap2 .col .icon {
    margin-inline-end: 0;
    margin-bottom: 30px;
  }
}

.columns-wrap2 .col h5 {
  position: relative;
  color: #35FFF6;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .columns-wrap2 .col h5 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .columns-wrap2 p, .columns-wrap2 h5 {
    text-align: center;
  }
}

.columns-wrap2 button {
  margin: 30px auto;
  padding: 20px 80px;
  font-size: 30px;
  font-weight: 800;
  background-color: #262626;
  box-shadow: inset 0 0 0 2px #35FFF6;
  color: #fff;
}

@media (max-width: 767px) {
  .columns-wrap2 button {
    font-size: 18px;
    padding: 10px 40px;
  }
}

.columns-wrap2 button.support {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #35FFF6;
  border: 2px solid #35FFF6;
  padding: 8px 25px;
  margin: 25px;
  font-size: 20px;
  background-color: #262626;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .columns-wrap2 button.support {
    margin: 23px auto;
  }
}

.columns-wrap2 button.support:hover {
  text-decoration: underline;
}

.icons-wrap1 {
  padding: 80px 0;
  background-color: #333;
}

@media (max-width: 767px) {
  .icons-wrap1 {
    padding: 30px 0;
  }
}

.icons-wrap1 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
}

@media (max-width: 767px) {
  .icons-wrap1 .content {
    display: block;
  }
  .icons-wrap1 .content > div {
    margin: auto;
  }
}

.icons-wrap1 .box {
  flex: 25%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .icons-wrap1 .box {
    flex: 50%;
  }
}

@media (max-width: 767px) {
  .icons-wrap1 .box {
    justify-content: flex-start;
    padding-bottom: 3em;
  }
}

@media (max-width: 767px) {
  .icons-wrap1 .box:last-child {
    padding-bottom: 0;
  }
}

.icons-wrap1 figure {
  position: relative;
  display: block;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  margin: 0 auto 40px;
  z-index: 2;
}

@media (max-width: 767px) {
  .icons-wrap1 figure {
    width: 50px;
  }
}

.icons-wrap1 figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0089ff;
  z-index: -1;
}

.icons-wrap1 .text {
  text-align: center;
  font-family: Poppins;
}

.icons-wrap1 .text p {
  color: #fff;
}

.button1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: 0 0 0 1px #0089ff;
  transition: .2s ease;
  margin: 0;
  line-height: 1;
  text-align: center;
  color: #0089ff;
  cursor: pointer;
  background-color: #0089ff;
  color: #fff;
}

.button1:hover {
  background: #0089ff;
  color: #fff;
}

.button1:hover {
  box-shadow: inset 0 0 3px rgba(34, 34, 34, 0.5);
}

.icons-set h4 {
  text-align: center;
}

.icons-set .set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}

.icons-set .item {
  margin: 10px;
  text-align: center;
}

.icons-set .item .icon {
  width: 40px;
  height: 40px;
  margin: 5px auto;
}

/*===============
|     thumbs   |
=================*/
.thumbs-wrap {
  max-width: 1360px;
  margin: 50px auto;
}

.thumbs-wrap .thumb-wrap {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .thumbs-wrap .thumb-wrap {
    flex-wrap: wrap;
  }
}

.thumbs-wrap .thumb-title {
  text-align: center;
  padding-bottom: 40px;
  text-shadow: 2px 2px 2px #35FFF6;
}

.thumbs-wrap .thumb-title:after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 2px;
  border-radius: 2px;
  background-color: #35FFF6;
}

.thumb-box {
  flex: 1;
  margin-inline-end: 10px;
  padding: 20px 10px 0;
}

.thumb-box:last-child {
  margin-inline-end: 0;
}

.thumb-box:focus {
  border: 0;
  outline: 0;
}

@media (max-width: 768px) {
  .thumb-box {
    flex: 0 1 50%;
    margin: 0 10px;
    padding: 20px 0 0;
  }
}

.thumb-box .poster {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: .2s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (max-width: 768px) {
  .thumb-box .poster {
    min-height: 120px;
  }
}

.thumb-box .poster:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.thumb-box .thumb-disc {
  padding: 1rem 0;
  cursor: pointer;
}

.thumb-box p {
  color: #fff;
  line-height: 1;
}

@media (max-width: 768px) {
  .thumb-box p {
    font-size: 12px;
  }
}

.thumb-box p.thumb-text {
  font-weight: 600;
}

.thumb-box p.thumb-views {
  margin: .5rem 0 0;
  font-weight: 100;
  color: #fff;
}

.thumb-box .star-wrap i {
  margin-right: -4px;
  font-size: 19px;
  color: #ffeb3b;
}

/*===============
|    /thumbs   |
=================*/
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.page {
  padding: 30px 0;
}

@media (max-width: 1024px) {
  .page {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .page {
    padding: 10px 0;
  }
}

.page .col {
  padding: 20px;
}

.page .col h5 {
  margin: 10px 0;
  font-size: 18px;
  color: #35FFF6;
}

.page .col-title {
  margin-bottom: 20px;
}

.page .col-title h4 {
  margin-bottom: 10px;
}

.page .col-form {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .page .col-form {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    order: 0;
  }
}

.page .col-text {
  background: #282828;
}

@media (max-width: 768px) {
  .page .col-text {
    order: 3;
  }
}

.page .text p {
  margin-bottom: 5px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .page.support-wrap, .page.signup-wrap, .page.pricing {
    padding: 0;
  }
}

.page.support-wrap .container, .page.signup-wrap .container, .page.pricing .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .page.support-wrap .container, .page.signup-wrap .container, .page.pricing .container {
    flex-direction: column;
    box-shadow: none;
  }
}

.page-title {
  margin-bottom: 20px;
}

.signup-wrap,
.support-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: auto;
}

.signup-wrap .content,
.support-wrap .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .signup-wrap .content,
  .support-wrap .content {
    display: block;
    border-radius: 0;
  }
}

.signup-wrap .content .text p,
.support-wrap .content .text p {
  margin-bottom: 10px;
}

.signup-wrap .content .text button,
.support-wrap .content .text button {
  flex-basis: 100%;
  margin-top: 20px;
}

.signup-wrap .contact,
.support-wrap .contact {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .signup-wrap .contact,
  .support-wrap .contact {
    margin-top: 0;
    padding-top: 0;
  }
}

.signup-wrap .col-title p {
  color: #fff;
}

/*=-=-=-=--=-=-
| support page |
-=-=-=-=-=-=-=-*/
.qna-wrap {
  margin-bottom: 10px;
  transition: .2s ease;
}

.qna-wrap:last-child .qna-content {
  border: 0;
}

.qna-title,
.qna-content {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  font-weight: 700;
}

.qna-title:before, .qna-title:after,
.qna-content:before,
.qna-content:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.qna-title:before,
.qna-content:before {
  left: 0;
  transition: .15s ease;
  line-height: 1;
  font-weight: 700;
}

.qna-title {
  font-size: 14px;
  cursor: pointer;
}

.qna-title:before {
  content: 'Q';
}

.qna-content {
  width: fit-content;
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid black;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  transition: .2s;
}

.qna-content:before {
  content: 'A';
}

.contact p {
  margin: 5px 0;
}

.contact p span {
  font-weight: bold;
}

.contact p .link {
  color: #0089ff;
  font-weight: normal;
  cursor: pointer;
}

.contact p .link:hover {
  text-decoration: underline;
  color: #005299;
}

.contact p a {
  color: #0089ff;
  text-decoration: underline;
}

.contact p:last-child {
  margin-bottom: 0;
}

.moneyback {
  position: relative;
  background: #252a2c;
  box-shadow: 0 0 4px 0 #0089ff;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 4px;
}

.moneyback h3 {
  margin-top: 0 !important;
}

.moneyback p {
  font-size: 12px;
}

.moneyback figure {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .moneyback figure {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
}

.support-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 30px;
}

.support-icons .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 20px 0px;
}

.support-icons figure {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.support-icons p span {
  font-weight: bold;
}

/*=-=-=-=--=-=-
| sign-up page |
-=-=-=-=-=-=-=-*/
.signup-wrap .container {
  display: block;
}

.signup-wrap .container > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .signup-wrap .container > .content {
    flex-direction: column;
  }
}

.signup-wrap .col {
  -webkit-box-flex: 1 1 50%;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

@media (max-width: 768px) {
  .signup-wrap .col {
    -webkit-box-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.signup-wrap .col-text ul {
  margin: 20px 0;
}

.signup-wrap .col-text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.signup-wrap .col-text li:before {
  content: "check";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  margin-right: 5px;
  font-size: 150%;
  font-weight: bold;
  color: #0089ff;
}

.signup-wrap .col-text li span {
  font-weight: bold;
}

/*===============
|  price list  |
=================*/
.pricing > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .pricing > .container {
    display: block;
  }
}

.pricing .main-img {
  min-width: 400px;
  background-image: url("../images/pricing-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .pricing .main-img {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .pricing .main-img {
    min-width: 100%;
    height: 100px;
    background-position-y: 80%;
  }
}

.pricing .text {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .pricing .text {
    margin: 0;
    padding: 10px;
  }
}

.pricing .text h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .pricing .text h3 {
    font-size: 18px;
  }
}

.pricing .text span {
  font-size: 80%;
  font-weight: 400;
}

.pricing .text p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 768px) {
  .pricing .text p {
    font-size: 12px;
  }
}

.prices-wrap {
  width: 100%;
  padding: 20px;
}

@media (max-width: 768px) {
  .prices-wrap {
    width: 100%;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .prices {
    padding: 0;
    background: transparent;
  }
}

.price-box {
  position: relative;
  background: #252a2c;
  box-shadow: 0 0 4px 0 #0089ff;
  border-radius: 0;
  margin-bottom: 20px;
  padding: 20px;
  transition: .2s ease;
}

@media (max-width: 768px) {
  .price-box {
    margin-bottom: 10px;
    padding: 10px;
  }
}

.price-box:last-child {
  margin-bottom: 0;
}

.price-box.featured {
  box-shadow: 0 0 0 1px #0089ff, 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.price-box .content {
  width: 100%;
  margin: 0;
}

.price-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .price-box ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.price-box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 13px;
  white-space: nowrap;
}

.price-box li:before {
  content: "navigate_next";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  font-size: 140%;
  font-weight: 700;
  color: #35FFF6;
}

@media (max-width: 768px) {
  .price-box li {
    margin-right: 0;
  }
}

.price-box button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: 0 0 0 1px #0089ff;
  transition: .2s ease;
  margin: 0;
  line-height: 1;
  text-align: center;
  color: #0089ff;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.price-box button:hover {
  background: #0089ff;
  color: #fff;
}

@media (max-width: 768px) {
  .price-box button {
    margin-top: 1em;
    padding: 0.8em;
    font-size: .8em;
  }
}

.price-box button.featured {
  background-color: #0089ff;
  color: #fff;
}

.price-box button.featured:hover {
  background: #222;
  color: #0089ff;
}

.price-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.price-title h4 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .price-title h4 {
    font-size: 14px;
  }
}

.price-title span {
  color: #0089ff;
}

@media (max-width: 768px) {
  .price-title {
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #0089ff;
  }
}

.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .price-list {
    display: block;
  }
}

.price-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .price-text {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #0089ff;
  }
}

.price-text button {
  display: none;
}

p.price-num {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #0089ff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

p.price-num label {
  font-weight: 600;
}

p.price-num span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  p.price-num {
    margin: auto;
    padding: 10px;
    border-right: 0;
    text-align: right;
  }
}

p.desc {
  margin-top: 10px;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 767px) {
  p.desc {
    font-size: 11px;
  }
}

.pricing-col .container {
  flex-direction: column;
  background: none;
}

.pricing-col .text {
  margin-bottom: 40px;
}

.pricing-col .text,
.pricing-col p {
  text-align: center;
}

.pricing-col .prices-wrap {
  background: none;
}

.pricing-col .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .pricing-col .prices {
    flex-wrap: wrap;
  }
}

.pricing-col .price-box {
  width: calc(100% / 4 - 2rem);
  margin: 0 10px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .pricing-col .price-box {
    width: calc(100% / 2 - 2rem);
    margin: 10px auto;
  }
}

@media (max-width: 767px) {
  .pricing-col .price-box {
    width: 90%;
  }
}

.pricing-col .price-box:not(.featured) .price-title {
  padding-top: 16px;
}

.pricing-col .price-text,
.pricing-col .price-title {
  flex-direction: column;
}

.pricing-col .price-title {
  position: relative;
  margin-bottom: 20px;
}

.pricing-col .price-title span {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
  background: #252a2c;
  text-align: center;
  color: #0089ff;
  padding: 10px 20px;
  border-radius: 0;
  border-top: 1px solid #0089ff;
  border-bottom: 1px solid #0089ff;
}

.pricing-col .price-title button {
  display: none;
}

@media (max-width: 768px) {
  .pricing-col .price-text {
    display: flex;
  }
}

.pricing-col .price-text button {
  display: flex;
}

.pricing-col .price-num {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 768px) {
  .pricing-col .price-num {
    margin: initial;
  }
}

.pricing-col ul {
  flex-direction: column;
  align-items: flex-start;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .pricing-col ul {
    justify-content: center;
  }
}

.pricing-col ul li {
  margin-bottom: 10px;
}

.pricing-col ul li:last-of-type {
  margin-bottom: 0;
}

.pricing-col button {
  margin: 20px 0 0 0;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.page section {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .page section {
    margin-top: 0;
  }
}

.page section.banner {
  display: block;
  min-height: auto;
  box-shadow: none;
}

.browse-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 1px 0 0 rgba(0, 137, 255, 0.5);
}

@media (max-width: 768px) {
  .browse-title {
    margin-bottom: 0;
  }
}

.browse-title h3 {
  margin: 0 20px 5px 0;
}

@media (max-width: 768px) {
  .browse-title h3 {
    display: none;
  }
}

.browse-title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .browse-title ul {
    overflow-x: auto;
  }
}

.browse-title ul li {
  margin-right: 10px;
  padding: 5px;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.browse-title ul li:hover {
  box-shadow: 0 1px 0 0 #006ecc;
  color: #006ecc;
}

.browse-title ul li.active {
  box-shadow: 0 2px 0 0 #006ecc;
  color: #006ecc;
}

@media (max-width: 768px) {
  .browse-title ul li.active {
    box-shadow: inset 0 -2px 0 -1px #0089ff;
  }
}

.thumb-block-title {
  margin: 30px 0;
}

.thumbs-block,
.categories-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .thumbs-block,
  .categories-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .thumbs-block .thumb-wrap,
  .thumbs-block .category,
  .categories-wrap .thumb-wrap,
  .categories-wrap .category {
    width: calc(50% - 15px);
    margin-right: 0;
  }
  .thumbs-block .thumb-wrap:nth-child(odd),
  .thumbs-block .category:nth-child(odd),
  .categories-wrap .thumb-wrap:nth-child(odd),
  .categories-wrap .category:nth-child(odd) {
    margin: 0 5px 15px 10px;
  }
  .thumbs-block .thumb-wrap:nth-child(even),
  .thumbs-block .category:nth-child(even),
  .categories-wrap .thumb-wrap:nth-child(even),
  .categories-wrap .category:nth-child(even) {
    margin: 0 10px 15px 5px;
  }
}

.thumb {
  position: relative;
  cursor: pointer;
}

.thumb:before, .thumb:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.thumb:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s ease;
}

.thumb:after {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.thumb:hover:after {
  opacity: 1;
}

.thumb:hover .play-btn {
  opacity: 1;
}

.thumb .play-btn {
  opacity: 0;
}

/*===========
|   movies    |
=============*/
.thumb-wrap {
  width: calc(100% / 5 - 20px);
  margin-right: 20px;
  margin-bottom: 20px;
}

.thumb-wrap:nth-child(5n) {
  margin-right: 0;
}

.thumb-wrap:last-child:not(:nth-child(5n)) {
  margin-right: auto;
}

.thumb-wrap > .thumb img {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.08);
}

.thumb-wrap > .thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: .2s ease;
}

.thumb-wrap > .thumb .play-btn:before, .thumb-wrap > .thumb .play-btn:after {
  content: '';
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: .8;
  transition: .2s ease;
  line-height: 1;
}

.thumb-wrap > .thumb .play-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 calc(6.25px) #fff, 0 0 20px calc(6.25px) rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.thumb-wrap > .thumb .play-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "play_arrow";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  background: transparent;
  font-size: 50px;
  text-align: center;
  color: #fff;
}

.thumb-wrap > .thumb .play-btn:hover:before, .thumb-wrap > .thumb .play-btn:hover:after {
  opacity: 1;
}

.movie-title {
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .movie-title {
    margin-top: 5px;
  }
}

.movie-title h5 {
  font-size: inherit;
  font-weight: 500;
}

.genre {
  font-weight: 500;
  color: #333;
}

.thumb-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 5px;
}

.thumb-details > *:last-child {
  margin-left: auto;
}

.stars-wrap img {
  width: auto;
  height: 12px;
}

.full-details {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 95%;
  max-width: 1000px;
  padding: 20px;
  position: relative;
  background: #252a2c;
  box-shadow: 0 0 4px 0 #0089ff;
  border-radius: 0;
  position: fixed;
}

@media (max-width: 768px) {
  .full-details {
    overflow-y: auto;
    top: 75px;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
  }
}

.full-details .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .full-details .content {
    display: grid;
    gap: 20px;
  }
}

.full-details .thumb {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .full-details .thumb {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    grid-column: 1 / 2;
    grid-row: 1;
    margin-right: 0;
  }
}

.full-details .close-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
}

.full-details .close-icon:before {
  content: "highlight_off";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 768px) {
  .details-title {
    grid-column: 2 / 6;
    grid-row: 1;
    padding-right: 30px;
  }
}

.details-text {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .details-text {
    margin-right: 0;
    grid-column: 1 / 5;
    grid-row: 2;
  }
}

.details-text > * {
  margin-bottom: 10px;
}

.details-text .description {
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trailer-wrap {
    grid-column: 1 / 5;
    grid-row: 3;
  }
  .trailer-wrap h5 {
    margin-bottom: 10px;
  }
}

.watch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .watch {
    margin-top: 20px;
    padding: 10px;
  }
}

.watch:before {
  content: "play_arrow";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  font-size: 20px;
}

.video-player {
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin-top: 30px;
  background: #000;
}

/*===========
|   sports    |
=============*/
.category {
  width: calc(100% / 3 - 20px);
  margin: 0 20px 20px 0;
  cursor: pointer;
  position: relative;
}

.category:before, .category:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.category:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .category {
    position: relative;
  }
  .category:before, .category:after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
  }
  .category:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .2s ease;
  }
  .category:after {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

.category .cat-title {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 10px;
  transition: .2s ease;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-align: center;
  color: #0089ff;
}

@media (max-width: 768px) {
  .category .cat-title {
    padding: 5px;
    background: transparent;
    font-size: 16px;
    color: #fff;
  }
}

.category:hover .cat-title {
  background: rgba(0, 137, 255, 0.9);
  color: #fff;
}

.categories-title {
  margin: 0 0 30px;
}

.categories-title h3 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .categories-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .categories-title h3 {
    font-size: 18px;
  }
}

/*===========
|   workout    |
=============*/
@media (max-width: 768px) {
  .workout-page {
    padding: 30px 10px 10px;
  }
}

.workout-page .level {
  flex: 100%;
  margin: 60px 0 20px;
  padding-bottom: 5px;
  font-weight: 500;
  text-transform: capitalize;
  color: #0089ff;
}

@media (max-width: 768px) {
  .workout-page .level {
    margin: 30px 10px 0;
  }
}

.workout-page .links-wrap .col {
  height: 200px;
  margin: 0 !important;
  margin-right: 20px !important;
  padding: 0;
}

.workout-page .links-wrap .col:before {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.2) 50%);
  mix-blend-mode: multiply;
  transition: .2s ease;
}

.workout-page .links-wrap .col:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .workout-page .links-wrap .col {
    height: 100px;
    margin: 0 5px !important;
  }
}

.workout-page .links-wrap .col h3 {
  padding: 10px;
}

.workout-page .links-wrap .col.active {
  box-shadow: inset 0 0 0 4px #fff, 0 0 20px 0 rgba(0, 0, 0, 0.16);
}

.workout-page .links-wrap .col.active:before {
  opacity: 0;
}

.workout-page .links-wrap .col.active img {
  filter: none;
}

.workout-page .links-wrap .col.active h3 {
  background: rgba(255, 255, 255, 0.9);
  mix-blend-mode: luminosity;
  color: #0089ff;
  text-shadow: none;
}

@media (max-width: 768px) {
  .workout-page .links-wrap .col.active h3 {
    background: transparent;
    mix-blend-mode: normal;
    color: #fff;
  }
}

.workout-page .links-wrap figure {
  height: 100%;
  position: relative;
}

.workout-page .links-wrap figure:before, .workout-page .links-wrap figure:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.workout-page .links-wrap figure:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s ease;
}

@media (max-width: 768px) {
  .workout-page .links-wrap figure:after {
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  }
}

.workout-page .links-wrap figure img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.workout-page .links-wrap figure h3 {
  top: inherit;
  bottom: 20px;
  color: #fff;
  transition: .2s ease;
}

@media (max-width: 768px) {
  .workout-page .links-wrap figure h3 {
    bottom: 5px;
    font-size: 13px;
    text-shadow: none !important;
  }
}

.workout-page .links-wrap:after {
  opacity: .2;
}

@media (max-width: 768px) {
  .workout-page .links-wrap {
    flex-direction: row !important;
    height: 100px;
  }
}

.thumbs-block-wrap {
  padding: 0 10px;
}

/* Helpers */
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

/*============== 
|   helpers    |
===============*/
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex_wrap > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .flex_wrap {
    flex-direction: column;
  }
}

.row {
  width: 100%;
  margin: 0;
}

.card {
  position: relative;
  background: #252a2c;
  box-shadow: 0 0 4px 0 #0089ff;
  border-radius: 0;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.hide {
  display: none !important;
}

.hide-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hide-desktop {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hide-tablet-h {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide-tablet {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

.noSelect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
