@charset "UTF-8";
/*==============================================  css Reset ==============================================*/
@import url(font.css);
@import url(slick.css);
@import url(slick-theme.css);
@import url(select2.min.css);
* {
  direction: ltr;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none !important;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.8125rem;
}

h6 {
  font-size: 0.9375rem;
}

p {
  margin: 0;
  padding: 0;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #eee;
  text-decoration: none;
}

big {
  font-size: 125%;
}

blockquote {
  quotes: "" "";
}

q {
  quotes: "“" "”" "‘" "’";
}

blockquote:before, blockquote:after {
  content: "";
}

label {
  color: #333;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5em;
}

fieldset {
  margin-bottom: 1em;
}

select {
  border: 1px solid #bbb;
  border-radius: 3px;
  height: 3em;
  max-width: 100%;
}

b, strong {
  font-weight: bold;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  font-family: Poppins;
  direction: ltr;
  line-height: 1.5;
  font-weight: 500;
  background-color: #221F1F;
}

input,
textarea,
button,
select {
  font-family: Poppins;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

button, input[type=submit] {
  cursor: pointer;
}

a {
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  font-weight: normal;
}

ul {
  list-style: none;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*===================== [ color (sass) ] ===========================*/
/*===================== [ import ] =================================*/
/*======================= [ mixed-in (sass) ] ============================*/
/*_ mixed-in for ( transition effect )_*/
/*_ mixed-in for ( transition effect )_*/
/*_ mixed-in for ( display=flex; flex=1;)_*/
/*_ mixed-in for ( display=flex;)_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = center )_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = space-between )_*/
/*============================ [ breakpoints for responsive in sass ] ==================================*/
/* xsm--Extra small  (smart phones, portrait iPhone, portrait 480x320 phones (Android)) */
/* sm--smart phones, Android phones, landscape iPhone */
/* sm--smart phones, Android phones, landscape iPhone */
/* md-- tablet, landscape iPad, lo-res laptops ands desktops */
/* lg-- hi-res laptops and desktops */
/* lg-- hi-res laptops and desktops */
/* xl -- Extra large screens, TV */
/* 2xl -- Extra large screens, TV */
/*====================== [ media query - container ] ==========================*/
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .container {
    padding: 0 25px;
  }
}

/*<< Start Code  :  >>*/
/*=====================<< slick style >>======================*/
.arrow-next, .arrow-prev {
  position: absolute;
  top: -90px;
  width: 50px;
  height: 50px;
  background-color: rgba(229, 9, 20, 0.5);
  cursor: pointer;
  transition: 0.3s;
  border: none;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-next svg, .arrow-prev svg {
  height: 20px;
  width: 20px;
}

.arrow-prev {
  right: calc(5% + 60px);
}

.arrow-next {
  right: 5%;
}

.arrow-next:hover, .arrow-prev:hover, .arrow-prev-little:hover, .arrow-next-little:hover {
  background-color: #E50914;
}

/*======================== [ header ] =================================*/
/*============== top-header =============*/
.top-header { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  flex-wrap: wrap;
}
@media (max-width: 1140px) {
  .top-header {
    padding: 15px 0;
  }
}
.top-header ul#main-menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  margin-right: 10px;
}
.top-header ul#main-menu li a {
  color: #FCFCFC;
  margin-right: 40px;
  font-size: 1.5625rem;
  display: inline-block;
  font-weight: 600;
}
.top-header ul#main-menu li a:hover {
  color: #E50914;
}
@media (max-width: 1400px) {
  .top-header ul#main-menu {
    margin-bottom: 40px;
  }
}
@media (max-width: 1140px) {
  .top-header ul#main-menu {
    width: 0;
    height: 100% !important;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    color: black;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.3s;
    padding: 40px 30px 0 30px;
    flex-direction: column;
    justify-content: flex-start;
    visibility: hidden;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 15;
  }
  .top-header ul#main-menu li {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
  }
  .top-header ul#main-menu li:last-child {
    border-bottom: none;
  }
  .top-header ul#main-menu li > a {
    padding: 15px 0;
    color: black;
    width: 100%;
  }
}
.top-header .button-header { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.top-header .button-header a.btn-header {
  background-color: #E50914;
  color: #FCFCFC;
  font-size: 1.375rem;
  font-weight: 500;
  width: 130px;
  height: 50px;
  margin-right: 10px;
  border-radius: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-header .button-header a.btn-header:last-child {
  margin-right: 0;
}
.top-header .button-header a.btn-header:hover {
  background-color: #FCFCFC;
  color: #221F1F;
}
@media (max-width: 1140px) {
  .top-header .button-header {
    margin: 15px 0;
  }
}
.top-header .button-header-done {
  display: none;
}
@media (max-width: 1140px) {
  .top-header .button-header-done {
    margin: 15px 0;
  }
}

.closebtn {
  display: none;
  color: #221F1F;
}

button.menu-button {
  display: none;
  margin: 15px 0;
}

@media (max-width: 1140px) {
  .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    display: block;
  }
  .closebtn svg {
    height: 30px;
    color: white;
  }
  nav {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
  }
  button.menu-button {
    display: block;
    color: #221F1F;
    background-color: #FCFCFC;
    border: none;
    width: 60px;
    height: 40px;
    border-radius: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  button.menu-button svg, button.menu-button img {
    height: 30px;
    width: 30px;
    color: #221F1F; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
/*= login-done =*/
.login-done .button-header {
  display: none;
}
.login-done .button-header-done { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.login-done .button-header-done a.img-member {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
}
.login-done .button-header-done a.img-member img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login-done .button-header-done a.btn-header {
  background-color: #E50914;
  color: #FCFCFC;
  font-size: 1.375rem;
  width: 130px;
  height: 50px;
  margin-left: 10px;
  border-radius: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login-done .button-header-done a.btn-header:hover {
  background-color: #FCFCFC;
  color: #221F1F;
}

/*============================ [ main ] ==============================*/
/* head-section */
.head-section h3 {
  color: #FCFCFC;
  font-size: 2.5rem;
  margin: 30px 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .head-section h3 {
    font-size: 1.5625rem;
  }
}

/*============= news ============*/
.single section.news {
  display: grid;
  grid-template-columns: 1fr;
  color: #FCFCFC;
}
.single .bg-black {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, rgba(34, 31, 31, 0) 4%, rgba(13, 12, 12, 0.9) 100%);
  border-radius: 30px;
}
.single .image-box figure {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 40px 0 20px 0;
}
.single .image-box figure .bg-black {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, rgba(34, 31, 31, 0) 4%, rgba(13, 12, 12, 0.9) 100%);
  border-radius: 30px;
}
.single .image-box figure img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .image-box figure .tooltip { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 40px;
}
@media (max-width: 768px) {
  .single .image-box figure .tooltip {
    top: 20px;
    left: 20px;
  }
}
.single .image-box figure .tooltip a {
  font-size: 1.375rem;
  color: #FCFCFC;
  background-color: #E50914;
  border-radius: 30px;
  padding: 15px 25px;
  margin-right: 10px;
}
.single .image-box figure .tooltip a:hover {
  background-color: #FCFCFC;
  color: #221F1F;
}
@media (max-width: 768px) {
  .single .image-box figure .tooltip a {
    font-size: 1.125rem;
    padding: 10px 20px;
  }
}
.single .image-box figure .subject-img {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 20px;
}
@media (max-width: 768px) {
  .single .image-box figure .subject-img {
    bottom: 20px;
    left: 20px;
  }
}
.single .image-box figure .subject-img h4 {
  color: #FCFCFC;
  font-size: 2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .single .image-box figure .subject-img h4 {
    font-size: 1.5rem;
  }
}
.single .about-box {
  flex-basis: 100%;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .single .about-box {
    padding: 0;
  }
}
.single .about-box .about-text { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 1140px) {
  .single .about-box .about-text {
    flex-wrap: wrap;
  }
}
.single .about-box .about-text p {
  font-size: 1.75rem;
  font-weight: 400; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  flex: 1;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -moz-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  line-height: 2;
  max-height: 295px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single .about-box .about-text p {
    font-size: 1.25rem;
  }
}
@media (max-width: 1140px) {
  .single .about-box .about-text p {
    width: 100%;
    flex-basis: 100%;
    max-height: 100%;
    height: auto;
  }
}
.single .writer {
  background-color: rgba(229, 9, 20, 0.25);
  border-radius: 30px;
  width: 340px;
  height: 300px;
  margin-left: 40px;
  padding: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1140px) {
  .single .writer {
    width: 100%;
    margin-left: 0;
    flex-basis: 100%;
    margin-top: 40px;
  }
}
.single .writer ul {
  width: 100%;
}
.single .writer ul li {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.single .writer ul li:last-child {
  margin-bottom: 0;
}
.single .writer ul li span:first-child {
  font-size: 1.5625rem;
}
@media (max-width: 768px) {
  .single .writer ul li span:first-child {
    font-size: 1.25rem;
  }
}
.single .writer ul li span:last-child {
  font-size: 1.375rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .single .writer ul li span:last-child {
    font-size: 1rem;
  }
}

#single-2 section.news {
  grid-template-columns: 6fr 5fr;
  grid-gap: 30px;
}
@media (max-width: 1200px) {
  #single-2 section.news {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1140px) {
  #single-2 section.news {
    grid-template-columns: 1fr;
  }
}
#single-2 .image-box figure {
  height: 550px;
  margin: 0;
}
#single-2 .about-box {
  padding: 0;
}
@media (max-width: 1140px) {
  #single-2 .about-box {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  #single-2 .about-box {
    padding: 0;
  }
}
#single-2 .about-box .about-text {
  flex-direction: column-reverse;
}
@media (max-width: 1140px) {
  #single-2 .about-box .about-text {
    flex-direction: column;
  }
}
#single-2 .about-box .writer {
  width: 100%;
  height: 250px;
  margin: 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  #single-2 .about-box .writer {
    height: 200px;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  #single-2 .about-box .writer {
    height: 200px;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 1140px) {
  #single-2 .about-box .writer {
    height: 250px;
    margin-top: 40px;
  }
}

#single-3 section.news {
  grid-template-columns: 1fr 2fr;
  grid-gap: 30px;
}
@media (max-width: 1200px) {
  #single-3 section.news {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1140px) {
  #single-3 section.news {
    grid-template-columns: 1fr;
  }
}
#single-3 .writer {
  background-color: rgba(229, 9, 20, 0.25);
  border-radius: 30px;
  width: 100%;
  height: 300px;
  margin-left: 0;
  padding: 30px;
}
@media (max-width: 1140px) {
  #single-3 .writer {
    width: 100%;
    margin-left: 0;
    flex-basis: 100%;
    margin-top: 40px;
  }
}
#single-3 .writer ul {
  width: 100%;
}
#single-3 .writer ul li {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
#single-3 .writer ul li:last-child {
  margin-bottom: 0;
}
#single-3 .writer ul li span:first-child {
  font-size: 1.5625rem;
}
@media (max-width: 768px) {
  #single-3 .writer ul li span:first-child {
    font-size: 1.25rem;
  }
}
#single-3 .writer ul li span:last-child {
  font-size: 1.375rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  #single-3 .writer ul li span:last-child {
    font-size: 1rem;
  }
}
#single-3 .image-box figure {
  width: 100%;
  height: 600px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 40px 0 20px 0;
}
#single-3 .image-box figure img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
#single-3 .image-box figure .tooltip { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 40px;
}
@media (max-width: 768px) {
  #single-3 .image-box figure .tooltip {
    top: 20px;
    left: 20px;
  }
}
#single-3 .image-box figure .tooltip a {
  font-size: 1.375rem;
  color: #FCFCFC;
  background-color: #E50914;
  border-radius: 30px;
  padding: 15px 25px;
  margin-right: 10px;
}
#single-3 .image-box figure .tooltip a:hover {
  background-color: #FCFCFC;
  color: #221F1F;
}
@media (max-width: 768px) {
  #single-3 .image-box figure .tooltip a {
    font-size: 1.125rem;
    padding: 10px 20px;
  }
}
#single-3 .image-box figure .subject-img {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media (max-width: 768px) {
  #single-3 .image-box figure .subject-img {
    bottom: 20px;
    left: 20px;
  }
}
#single-3 .image-box figure .subject-img h4 {
  color: #FCFCFC;
  font-size: 2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  #single-3 .image-box figure .subject-img h4 {
    font-size: 1.5rem;
  }
}
#single-3 .about-box {
  /* head-section */
  padding: 0;
}
#single-3 .about-box .subject-img {
  margin-top: 120px;
}
#single-3 .about-box .subject-img h4 {
  font-size: 2.5rem;
  font-weight: 500;
}
@media (max-width: 1140px) {
  #single-3 .about-box .subject-img {
    margin-top: 20px;
  }
}
#single-3 .about-box .head-section h3 {
  font-size: 2.125rem;
  margin: 30px 0 5px 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  #single-3 .about-box .head-section h3 {
    font-size: 1.5625rem;
  }
}
#single-3 .about-box .about-text { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
}
#single-3 .about-box .about-text p {
  font-size: 1.75rem;
  font-weight: 400;
  max-height: 800px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #single-3 .about-box .about-text p {
    font-size: 1.25rem;
  }
}
@media (max-width: 1140px) {
  #single-3 .about-box .about-text p {
    width: 100%;
    flex-basis: 100%;
    max-height: 100%;
    height: auto;
  }
}

/*=========== article ===========*/
section.article {
  margin: 50px 0;
  color: #FCFCFC;
  padding: 0 30px;
}
@media (max-width: 1140px) {
  section.article {
    padding: 0;
  }
}
section.article p {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 768px) {
  section.article p {
    font-size: 1.25rem;
  }
}

/*=========== slider ===========*/
section.slider {
  margin-bottom: 30px;
  margin-left: 80px;
}
@media (max-width: 1200px) {
  section.slider {
    margin-left: 150px;
  }
}
@media (max-width: 1140px) {
  section.slider {
    margin-left: 0;
  }
}
section.slider .slick-list {
  padding-right: 10%;
}
@media (max-width: 1140px) {
  section.slider .slick-list {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  section.slider .slick-list {
    margin-top: 100px;
  }
}
@media (max-width: 576px) {
  section.slider .slick-list {
    padding: 0 0;
  }
}
section.slider .slide-item {
  height: 500px;
  margin: 0 15px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
section.slider .slide-item .bg-black-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, rgba(34, 31, 31, 0) 10%, rgba(13, 12, 12, 0.8) 100%);
  transition: 0.4s;
  border-radius: 30px;
}
section.slider .slide-item:hover .bg-black-slide {
  background-image: linear-gradient(to bottom, rgba(13, 12, 12, 0.3) 1%, rgba(13, 12, 12, 0.5) 20%, rgba(0, 0, 0, 0.9) 100%);
}
section.slider .slide-item img {
  height: 100%;
  width: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.slider .slide-item .slide-text {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  padding: 5px 20px;
  color: #FCFCFC; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  section.slider .slide-item .slide-text {
    padding: 10px;
  }
}
section.slider .slide-item .slide-text h6 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 5px;
}
section.slider .slide-item .slide-text p {
  font-size: 1rem;
  font-weight: 400;
}
section.slider .slide-item .slide-text a {
  background-color: #E50914;
  border-radius: 15px;
  padding: 12px 15px;
  font-weight: 400;
  color: #FCFCFC;
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}
section.slider .slide-item .slide-text a:hover {
  background-color: #FCFCFC;
  color: #221F1F;
}

/*=========== footer ===========*/
.footer {
  color: #FCFCFC;
  padding: 0 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 768px) {
  .footer {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .footer {
    flex-wrap: wrap;
  }
}
.footer .foot-child {
  flex-basis: 50%;
}
.footer .foot-child:first-child {
  padding-right: 40px;
}
.footer .foot-child img.app {
  width: 90%;
  margin-bottom: 10px;
}
@media (max-width: 1140px) {
  .footer .foot-child img.app {
    width: 100%;
  }
}
.footer .foot-child ul.fast-link li a {
  font-size: 1.625rem;
  margin-bottom: 40px;
  display: inline-block;
  font-weight: 500;
  color: #FCFCFC;
}
.footer .foot-child ul.fast-link li a:hover {
  color: #E50914;
}
@media (max-width: 1200px) {
  .footer .foot-child ul.fast-link li a {
    font-size: 1.125rem;
  }
}
.footer .foot-child ul.app-list {
  margin-bottom: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.footer .foot-child ul.app-list li a {
  display: inline-block;
  margin: 5px 5px 5px 0;
}
.footer .foot-child ul.app-list li a:hover {
  transform: scale(1.1);
}
.footer .foot-child ul.app-list li svg, .footer .foot-child ul.app-list li img {
  height: 55px;
  width: 55px;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .footer .foot-child {
    flex-basis: 100%;
  }
}

.copy-right {
  background-color: #E50914;
  color: #FCFCFC;
  text-align: center;
  font-size: 1.125rem;
  padding: 10px 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1140px) {
  .copy-right {
    font-size: 0.875rem;
  }
}

/*============================ [ upload-list page ]==============================*/
#upload-page main {
  position: relative;
}
#upload-page main .bg-text {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -80px;
  z-index: -1;
}
#upload-page main .bg-text img {
  width: 100%;
  height: 100%;
}

.upload-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 1400px) {
  .upload-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 1140px) {
  .upload-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .upload-list {
    grid-template-columns: 1fr;
  }
}
.upload-list .up-box {
  position: relative;
  background-color: #484848;
  box-shadow: 0 3px 6px rgba(72, 72, 72, 0.1);
  height: 310px;
  color: #FCFCFC;
  border-radius: 15px;
  width: 100%;
  border: 1px solid transparent;
  padding-bottom: 70px;
  transition: 0.3s; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-list .up-box svg, .upload-list .up-box img {
  width: 60px;
  height: 90px;
}
.upload-list .up-box:hover {
  border: 1px solid rgba(229, 0, 20, 0.27);
}
.upload-list .title-upload { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.upload-list .title-upload .plus {
  height: 30px;
  width: 30px;
  background-color: rgba(252, 252, 252, 0.4); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  border-radius: 5px;
  margin-right: 10px;
}
.upload-list .title-upload .plus svg {
  color: #FCFCFC;
  width: 10px;
  height: 10px;
}
.upload-list .title-upload > span {
  font-size: 1rem;
  font-weight: 500;
}
.upload-list .up-detail {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 90%;
  transform: translateX(-50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 10px;
  border-top: 1px solid #707070;
}
.upload-list .up-detail .detail-item { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
.upload-list .up-detail .detail-item span {
  font-size: 0.75rem;
  font-weight: 400;
}
.upload-list .up-detail .detail-item span:last-child {
  color: #BEBEBE;
  margin-left: 5px;
  font-weight: 300;
}

/*============================ [ history table ]==============================*/
.history {
  background-color: #484848;
  padding: 30px 30px 100px 30px;
  color: #FCFCFC;
  border-radius: 15px;
}
@media (max-width: 1400px) {
  .history {
    overflow-x: auto;
  }
}
.history table {
  width: 100%;
  border-collapse: collapse;
}
.history tr {
  width: 100%;
  font-size: 0.875rem;
}
.history tr th, .history tr td {
  text-align: left;
  padding: 20px 5px;
  border-bottom: 1px solid rgba(252, 252, 252, 0.18);
}
.history tr th:first-child, .history tr td:first-child {
  padding-right: 20px;
}
.history tr th:nth-child(2), .history tr td:nth-child(2) {
  max-width: 200px;
}
.history tr th .upload-tag, .history tr th .pending-tag, .history tr th .checking-tag, .history tr td .upload-tag, .history tr td .pending-tag, .history tr td .checking-tag {
  border-radius: 6px;
  width: 95px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.history tr th .upload-tag, .history tr td .upload-tag {
  background-color: rgba(0, 147, 71, 0.25);
  color: #00DF6C;
}
.history tr th .pending-tag, .history tr td .pending-tag {
  background-color: rgba(222, 9, 20, 0.25);
  color: #E50914;
}
.history tr th .checking-tag, .history tr td .checking-tag {
  background-color: rgba(222, 229, 9, 0.25);
  color: #DEE509;
}
.history th {
  font-size: 1rem;
}
.history .icon-table {
  width: 25px;
  height: 25px;
  background-color: rgba(161, 160, 160, 0.2);
  border-radius: 50%;
  margin-right: 3px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.history .icon-table svg, .history .icon-table img {
  height: 50%;
  width: 50%;
}

/*============================ [ single-upload ]==============================*/
/*===[ browse ]===*/
label.custom-file-upload {
  background-color: #484848;
  box-shadow: 0 3px 6px rgba(72, 72, 72, 0.1);
  height: 480px;
  color: #FCFCFC;
  border-radius: 15px;
  width: 100%;
  border: 1px solid transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='15' ry='15' stroke='gray' stroke-width='3' stroke-dasharray='40' stroke-dashoffset='24.5' stroke-linecap='square'/%3e%3c/svg%3e");
  transition: 0.3s; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
label.custom-file-upload input[type=file] {
  display: none;
}
label.custom-file-upload > svg {
  height: 90px;
  width: 90px;
  margin-bottom: 40px;
}
label.custom-file-upload > span {
  font-size: 2.1875rem;
  font-weight: 400;
}
label.custom-file-upload span.det-upload-s {
  color: #A1A0A0;
  font-size: 1.625rem;
  font-weight: 300;
  margin-top: 5px;
}
label.custom-file-upload span.det-upload-s span {
  color: #FCFCFC;
}
label.custom-file-upload:hover {
  border: 1px solid rgba(229, 0, 20, 0.27);
}
@media (max-width: 1140px) {
  label.custom-file-upload {
    height: 350px;
  }
}
@media (max-width: 576px) {
  label.custom-file-upload {
    height: 300px;
    padding: 5px;
    text-align: center;
  }
  label.custom-file-upload > svg {
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
  }
  label.custom-file-upload > span {
    font-size: 1.5rem;
  }
  label.custom-file-upload span.det-upload-s {
    color: #A1A0A0;
    font-size: 1.125rem;
    font-weight: 400;
  }
}

.success, .error {
  font-weight: 400;
  display: none;
}

.success {
  color: #00DF6C;
}

.error {
  color: #E50914;
}

.bar {
  width: 400px;
  height: 5px;
  background-color: #221F1F;
  border-radius: 30px;
  margin-bottom: 40px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.bar .in-bar {
  width: 0%;
  height: 5px;
  background-color: #FCFCFC;
  border-radius: 30px;
  transition: width 1s;
}
@media (max-width: 576px) {
  .bar {
    width: 250px;
    height: 3px;
    margin: 10px 0 20px 0;
  }
  .bar .in-bar {
    height: 3px;
  }
}

/*===[ tabs]===*/
.tabs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 30px;
  margin: 60px 0;
  border-top: 2px solid rgba(112, 112, 112, 0.25);
  padding-top: 60px;
}
@media (max-width: 1140px) {
  .tabs {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.tabs .tab-buttons .tab-btn, .tabs .tab-form {
  background-color: #313131;
  border-radius: 15px;
  color: #FCFCFC;
}
.tabs .tab-buttons .tab-btn {
  margin-bottom: 30px;
  height: 230px;
  text-align: left;
  overflow: hidden;
  border: none;
  padding: 40px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
}
.tabs .tab-buttons .tab-btn:last-child {
  margin-bottom: 0;
}
.tabs .tab-buttons .tab-btn span.head-step {
  color: #E50914;
  font-size: 1.5rem;
  font-weight: 600;
}
.tabs .tab-buttons .tab-btn span.sub-step {
  font-size: 1.875rem;
}
.tabs .tab-buttons .tab-btn p {
  font-size: 1rem;
  font-weight: 400;
  color: #A1A0A0;
}
.tabs .tab-buttons .tab-btn:hover {
  background-color: rgba(229, 9, 20, 0.25);
}
.tabs .tab-buttons .tab-btn.active {
  background-color: rgba(229, 9, 20, 0.25);
}
@media (max-width: 1400px) {
  .tabs .tab-buttons .tab-btn {
    padding: 20px;
  }
}
@media (max-width: 1140px) {
  .tabs .tab-buttons .tab-btn {
    margin-bottom: 10px;
    flex-basis: 32.5%;
    height: 100px;
    overflow: hidden;
    padding: 5px;
    justify-content: center;
    align-items: center;
  }
  .tabs .tab-buttons .tab-btn span.head-step {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .tabs .tab-buttons .tab-btn span.sub-step {
    font-size: 14px;
    font-weight: lighter;
    margin-top: 5px;
    text-align: center;
  }
  .tabs .tab-buttons .tab-btn p {
    display: none;
  }
}
@media (max-width: 576px) {
  .tabs .tab-buttons .tab-btn span.sub-step {
    display: none;
  }
}
@media (max-width: 1140px) {
  .tabs .tab-buttons { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex;
    justify-content: space-between;
  }
}
.tabs .tab-form {
  padding: 30px 30px 60px 30px;
  position: relative;
}
@media (max-width: 576px) {
  .tabs .tab-form {
    padding: 10px 10px 60px 10px;
  }
}
.tabs .tabcontent {
  transition: 0.3s;
  height: 100%;
  color: #FCFCFC;
  display: none;
  /********* w-full *********/
  /********* lit-browse *********/
  /********* step-btn *********/
  /********* checkbox *********/
}
.tabs .tabcontent.active {
  display: block;
}
.tabs .tabcontent .formparent { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tabs .tabcontent .form-box {
  margin-bottom: 20px;
  color: #FCFCFC;
  flex-basis: 48%;
  /*multi select   */
  /* select   */
}
@media (max-width: 576px) {
  .tabs .tabcontent .form-box {
    flex-basis: 100%;
  }
}
.tabs .tabcontent .form-box label {
  color: #FCFCFC;
  font-size: 1.375rem;
  font-weight: 500;
}
.tabs .tabcontent .form-box input[type=text], .tabs .tabcontent .form-box select {
  background-color: #221F1F;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 300;
  border: 1px solid #FCFCFC;
  height: 60px;
  padding: 10px;
  width: 100%;
  color: #FCFCFC;
}
.tabs .tabcontent .form-box input[type=text]:hover, .tabs .tabcontent .form-box input[type=text]:focus, .tabs .tabcontent .form-box select:hover, .tabs .tabcontent .form-box select:focus {
  border: 1px solid #E50914;
}
.tabs .tabcontent .form-box .select-selected {
  background-color: #221F1F;
}
.tabs .tabcontent .form-box .select2-container--default .select2-selection--multiple {
  background-color: #221F1F;
  border: 1px solid #FCFCFC;
  color: #FCFCFC;
  height: 60px;
  padding: 10px;
  overflow-y: auto;
  width: 100%;
}
.tabs .tabcontent .form-box .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .tabs .tabcontent .form-box .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  background-color: #221F1F;
  border: 1px solid #E50914;
  color: #FCFCFC;
}
.tabs .tabcontent .form-box .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #221F1F;
}
.tabs .tabcontent .form-box .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #E50914;
}
.tabs .tabcontent .form-box .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #221F1F;
  font-size: 0.875rem;
}
.tabs .tabcontent .form-box .select2-container--default .select2-search--inline .select2-search__field {
  color: #FCFCFC;
  font-size: 1.125rem;
  font-weight: 300;
}
.tabs .tabcontent .form-box .select-container {
  width: 100%;
}
.tabs .tabcontent .form-box textarea.textarea {
  width: 100%;
  height: 130px;
  background-color: #221F1F;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 300;
  border: 1px solid #FCFCFC;
  padding: 10px;
  resize: vertical;
  color: #888888;
}
.tabs .tabcontent .form-box textarea.textarea:hover, .tabs .tabcontent .form-box textarea.textarea:focus {
  border: 1px solid #E50914;
}
.tabs .tabcontent .form-box .terms {
  background-color: #221F1F;
  padding: 20px;
  border-radius: 5px;
  font-weight: 300;
  font-size: 1.25rem;
  border: 1px solid #FCFCFC;
  max-height: 500px;
  overflow-y: auto;
}
.tabs .tabcontent .error-form {
  color: #E50914;
  margin-bottom: 5px;
  display: none;
}
.tabs .tabcontent .w-full {
  flex-basis: 100%;
}
.tabs .tabcontent .h140 input, .tabs .tabcontent .h140 textarea.textarea {
  height: 120px;
}
.tabs .tabcontent .h100 input, .tabs .tabcontent .h100 textarea.textarea {
  height: 100px;
}
.tabs .tabcontent .lit-browse {
  flex-basis: 100%;
}
.tabs .tabcontent .lit-browse label {
  height: 190px;
  background-color: #221F1F;
  border: 1px solid #FCFCFC;
  border-radius: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: none;
  transition: 0.3s;
}
.tabs .tabcontent .lit-browse label .success, .tabs .tabcontent .lit-browse label .error {
  font-size: 0.9375rem;
}
.tabs .tabcontent .lit-browse label .bar {
  width: 300px;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.tabs .tabcontent .lit-browse label .bar .in-bar {
  height: 3px;
}
.tabs .tabcontent .lit-browse label span {
  font-size: 1.25rem;
}
.tabs .tabcontent .lit-browse label span.det-upload-s {
  color: #A1A0A0;
  font-size: 0.9375rem;
  font-weight: 300;
  margin-top: 10px;
}
.tabs .tabcontent .lit-browse label span.det-upload-s span {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #FCFCFC;
}
.tabs .tabcontent .lit-browse label .top-browse { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.tabs .tabcontent .lit-browse label .top-browse span {
  font-size: 1.25rem;
  margin-left: 10px;
}
.tabs .tabcontent .lit-browse label input[type=file] {
  display: none;
}
.tabs .tabcontent .lit-browse label svg {
  height: 30px;
  width: 30px;
  margin: 0;
}
.tabs .tabcontent .lit-browse label img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.tabs .tabcontent .lit-browse label:hover {
  border: 1px solid #E50914;
}
@media (max-width: 576px) {
  .tabs .tabcontent .lit-browse label {
    padding: 5px;
  }
  .tabs .tabcontent .lit-browse label .success, .tabs .tabcontent .lit-browse label .error {
    font-size: 0.875rem;
  }
  .tabs .tabcontent .lit-browse label .bar {
    width: 200px;
    height: 2px;
  }
  .tabs .tabcontent .lit-browse label .bar .in-bar {
    height: 2px;
  }
  .tabs .tabcontent .lit-browse label span {
    font-size: 1rem;
  }
  .tabs .tabcontent .lit-browse label span.det-upload-s {
    font-size: 0.875rem;
    font-weight: 400;
  }
  .tabs .tabcontent .lit-browse label span.det-upload-s span {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.tabs .tabcontent .step-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tabs .tabcontent .step-btn button {
  background-color: #E50914;
  color: #FCFCFC;
  padding: 10px 25px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
}
.tabs .tabcontent .step-btn button:hover {
  background-color: #FCFCFC;
  color: #221F1F;
}
@media (max-width: 576px) {
  .tabs .tabcontent .step-btn {
    left: 10px;
    right: 10px;
  }
}
.tabs .tabcontent .container-checkbox {
  margin-top: 30px;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.tabs .tabcontent .container-checkbox .check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.25rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #FCFCFC;
  transition: 0.3s;
}
.tabs .tabcontent .container-checkbox .check:hover {
  color: #E50914;
}
@media (max-width: 1400px) {
  .tabs .tabcontent .container-checkbox .check {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .tabs .tabcontent .container-checkbox .check {
    font-size: 1rem;
  }
}
.tabs .tabcontent .container-checkbox .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.tabs .tabcontent .container-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #FCFCFC;
  border-radius: 2px;
  transform: translateY(2px);
}
.tabs .tabcontent .container-checkbox .container:hover input ~ .checkmark {
  background-color: #ccc;
}
.tabs .tabcontent .container-checkbox .check input:checked ~ .checkmark {
  background-color: transparent;
}
.tabs .tabcontent .container-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.tabs .tabcontent .container-checkbox .check input:checked ~ .checkmark:after {
  display: block;
}
.tabs .tabcontent .container-checkbox .check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #FCFCFC;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.tabs .tabcontent input[type=submit] {
  background-color: #707070;
  color: #FCFCFC;
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 5px;
  border: none;
  display: none;
}
.tabs .tabcontent input[type=submit]:hover {
  background-color: #E50914;
}
.tabs .tabcontent:first-child .step-btn { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
}
.tabs .tabcontent:first-child .step-btn button.pre-step {
  display: none;
}
.tabs .tabcontent:last-child input[type=submit] {
  display: block;
}
.tabs .tabcontent:last-child .step-btn button.next-step {
  display: none;
}

@media (max-width: 1140px) {
  #two-step .tabs .tab-buttons .tab-btn {
    flex-basis: 48.5%;
  }
}/*# sourceMappingURL=style.css.map */