/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
   /*--body-color: hsl(220, 100%, 97%); */
  --body-color:#fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


html, body {
  margin: 0;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background-color: #fff;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  -ms-flex: 1 1 auto;
  flex: 1;
  /* margin-top: var(--header-height); */
}

.banner-slider div img{
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.slick-prev, .slick-next {
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #8FCDE6;
  transition: .3s;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

.banner-slider .slick-arrow{
  position: absolute;
  top: 50%;
  left: 40px;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.slick-prev:before, .slick-next:before{
  font-size: 2rem !important;
}

.banner-slider-container{
  width: 100%;
  overflow: hidden;
}

.banner-slider .slick-arrow.slick-next{
  right: 40px;
  left: auto;
}

.video-section{
  max-width: 780px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}

.andro_icon-block {
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .04);
  transition: .3s;
}


.andro_icon-block a{
  text-decoration: none;
}

.andro_icon-block a h5{
  font-size: 14px;
  color: #630010;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
  color: #fff;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.nav-container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header-top {
  height: 20vh;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 48px;
  border: 10px solid #000;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.header-top .top-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-top .warning {
  font-size: 2.5vw;
  line-height: 1.2;
  font-family: Arial, sans-serif;
  color: #fff;
  font-weight: bold;
}

.header {
  position: inherit;
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsl(220, 24%, 12%);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: 100;
}

.fixed{
  position: fixed;
  z-index: 9999;
}

/*=============== NAV ===============*/
.nav-section {
  height: 3.5rem;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: #fff;
}

.nav__data {
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.nav__logo {
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: 600;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: hsl(220, 24%, 12%);
    padding-top: 1rem;
  }
}

.nav__link {
  color: #fff;
  background-color: hsl(220, 24%, 12%);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: hsl(220, 24%, 15%);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: #fff;
  background-color: hsl(220, 24%, 15%);
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  column-gap: .5rem;
  font-weight: 600;
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: hsl(220, 24%, 12%);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: hsl(220, 20%, 18%);
}

.title-text{
  font-size: 1.938rem;
  font-weight: bold;
}

.subtitle-text{
  font-size: 1.5rem;
}

.desc-text{
    font-size: 1rem;
}

/*=================== Age Verification====================*/
.age-popup{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  color: #fff;
}

.age-popup .age-box{
  position: absolute;
  max-width: 600px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
}

.age-box .title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin: 60px 0 24px;
}

.age-box .age-warning{
  line-height: 1.5;
}

.age-box .btn-box {
  margin-top: 40px;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.age-box .btn-box button {
  width: calc(50% - 12px);
  max-width: 160px;
  height: 48px;
  font-size: 16px;
  border-radius: 0;
  cursor: pointer;
}

.btn {
  color: #fff;
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  border: none;
  border-radius: 38px;
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  background-color: #FD9251;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  /* -webkit-tap-highlight-color:initial; */
}

.btn {
  background: #00c65e;
}

.age-box .btn-border {
  background: #000;
  border: 1px solid #FFFFFF;
  color: #fff;
  margin-right: 24px;
  font-weight: 600;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .nav-container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  main {
    -ms-flex: 1 1 auto;
    flex: 1;
  }

  .nav-container {
    margin-inline: auto;
  }

  .nav-section {
    height: calc(3.5rem + 1rem);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-column-gap: 3rem;
    column-gap: 3rem;
    -webkit-column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    -ms-flex-pack: initial;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: calc(3.5rem + 1rem);
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

@media (max-width: 767px) {
  .header-top .warning {
    font-size: 4vw;
    line-height: 1.3;
  }
  .age-box {
    font-size: 14px;
    padding: 0 24px;
  }

  .age-box .title {
    font-size: 24px;
    margin: 40px 0 16px;
  }
  .age-box .btn-box button {
    max-width: 136px;
  }
}