/*
**
**** Global ****
**
*/

:root {
  --bodyFont: 'Open Sans', sans-serif;
  --numFont: 'Roboto', sans-serif;
  --highlightFont: 'Kalam', cursive;
  --headingFont: 'Titan One', cursive;

  --bodyColor: #282828;

  --mainBlue: #3BB1F9;
  --mainGreen: #6EBA3A;

  --mainGradient: linear-gradient(135deg, #3BB1F9 2%, #63CDAD 61%, #6EBA3A 93%);
  --mainGradient2: linear-gradient(to right, #D8ECCB, #C8E7F9);

  --blue: #2577F2;
  --lightBlue: #75CEF3;
  --darkLightBlue: #39598A;

  --red: #F22563;
  --darkBlue: #2650E1;
  --redGradient: linear-gradient(to right, #0839E2, #F225A0);

  --purple: #A33FF2;
  --gray: #2F2F2F;
  --darkBlue2: #1F3F93;

  --green: #58BD35;
  --lightBlue2: #334561;
  --cyan: #187C92;

  --orange: #FFA217;
  --lightBlue3: #006686;
  --bgorange: #DEAD01;

  --cyanBg: #00CBDC;
  --redLight: #DF2929;
  --violet: #6030E9;

}

body {
  font-size: 15px;
  font-family: var(--bodyFont);
  color: var(--bodyColor);
}

h1,
h2,
.h1 {
  font-family: var(--headingFont);
}

h3,
h4,
h5,
h6 {
  font-family: var(--bodyFont);
  font-weight: 700;
}

.hl-heading {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--highlightFont);
  text-shadow:
    -1.2px -1.2px 0 #fff,
    0 -1.2px 0 #fff,
    1.2px -1.2px 0 #fff,
    1.2px 0 0 #fff,
    1.2px 1.2px 0 #fff,
    0 1.2px 0 #fff,
    -1.2px 1.2px 0 #fff,
    -1.2px 0 0 #fff;
}

.blue-style h2,
.blue-style .hl-heading {
  color: var(--blue);
}

.red-style h2,
.red-style .hl-heading {
  color: var(--red);
}

.purple-style h2,
.purple-style .hl-heading {
  color: var(--purple);
}

.green-style h2,
.green-style .hl-heading {
  color: var(--green);
}

.orange-style h2,
.orange-style .hl-heading {
  color: var(--orange);
}

.description p {
  font-size: 16px;
  line-height: 26px;
}

.btn:not(.main-btn) {
  color: #fff;
  outline: none;
  font-size: 15px;
  border: 1px solid #fff;
  font-weight: 500;
  border-radius: 11px;
  padding: 10px 15px;
  min-height: 45px;
  min-width: 120px;
  transition: all 0.15s linear;
}

.blue-style .section .btn:not(.main-btn) {
  background-color: var(--blue);
}

.red-style .section .btn:not(.main-btn) {
  background-color: var(--red);
}

.purple-style .section .btn:not(.main-btn) {
  background-color: var(--purple);
}

.green-style .section .btn:not(.main-btn) {
  background-color: var(--green);
}

.orange-style .section .btn:not(.main-btn) {
  background-color: var(--orange);
}

.btn:hover {
  transform: scale(1.05);
}

.main-btn {
  min-height: 60px;
  text-decoration: none;
  transition: all 0.15s linear;
  border: none;
  box-shadow: none;
}

.main-btn .txt {
  font-family: var(--headingFont);
  color: #ffff;
  font-weight: 500;
  z-index: 1;
  padding: 2px 6px;
  line-height: initial;
  max-width: 145px;
}

.btn-container>div:not(:last-child),
.btn-container>.btn:not(:last-child) {
  margin-right: 15px;
}

.btn.rounded-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  font-size: 18px;
  padding: 5px 5px 5px 8px;
  border-width: 2px;
}

.title {
  font-weight: 500;
  font-size: 18px;
}

.bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

img {
  width: 100%;
}

header.bg .container,
section.bg .container {
  position: relative;
  z-index: 9;
}

.carousel-bg,
header.bg .bg-overlay,
section.bg .bg-overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.35);
}

.section-space {
  padding: 100px 0;
}

.big-space {
  padding: 200px 0 100px 0;
}

.top-space {
  padding-top: 100px;
}

.btm-space {
  padding-bottom: 100px;
}

.bg-wave {
  min-height: 114px;
  z-index: 99;
}

.mxwidth1 {
  max-width: 780px;
}

.mxwidth2 {
  max-width: 600px;
}

.btn.blue-btn {
  background-color: var(--blue);
}

.btn.pink-btn {
  background-color: var(--red);
}

.btn.green-btn {
  background-color: var(--green);
}

.btn.purple-btn {
  background-color: var(--purple);
}

.btn.orange-btn {
  background-color: var(--orange);
}

.btn.cyan-btn {
  background-color: var(--cyanBg);
}

.btn.red-btn {
  background-color: var(--redLight);
}

.btn.violet-btn {
  background-color: var(--violet);
}

.underline {
  box-shadow: inset 0px -15px 0px 0px var(--mainBlue);
  padding: 0 1px 0px 0;
}

.underline.green {
  box-shadow: inset 0px -15px 0px 0px var(--mainGreen);
}

.topwave-space {
  padding-top: 114px;
}

.gradient-bg {
  background: var(--mainGradient2);
}

/*
**
**** Navbar ****
**
*/

.navbar {
  z-index: 99999;
}

.navbar.fixed-top {
  top: 0;
  box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
  animation: navScroll 0.17s linear;
  backdrop-filter: blur(4.5px);
  background-color: rgba(117, 206, 243, 0.92);
}

.blue-style .navbar.fixed-top {
  background-color: rgba(117, 206, 243, 0.92);
}

.red-style .navbar.fixed-top {
  background-color: rgba(38, 80, 225, 0.92);
}

.purple-style .navbar.fixed-top {
  background-color: rgba(47, 47, 47, 0.92);
}

.green-style .navbar.fixed-top {
  background-color: rgba(51, 69, 97, 0.92);
}

.orange-style .navbar.fixed-top {
  background-color: rgba(0, 102, 134, 0.92);
}

.navbar.scroll-rev {
  animation: revScroll 0.17s linear;
}

@keyframes navScroll {
  0% {
    top: -170px
  }

  100% {
    top: 0px
  }
}

@keyframes revScroll {
  0% {
    top: 0px
  }

  100% {
    top: -170px
  }
}

.navbar.fixed-top .navbar-brand {
  width: 130px;
  padding: 2px 0;
}

.navbar.position-absolute {
  backdrop-filter: blur(3.5px);
  animation: fadeIn2 0.15s linear;
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 22%);
}

.navbar.nav-gradient {
  background: var(--mainGradient);
  border-bottom: 2px solid #fff;
  box-shadow: none;
}

.navbar .inner-navbar {
  padding: 10px 0 15px 0;
}

.navbar .global-btns {
  margin-bottom: -29px;
}

.navbar .global-btns .btn {
  padding: 12px 14px;
  min-height: auto;
  border-radius: 5px;
  line-height: initial;
  font-size: 14px;
  min-width: 110px;
  font-weight: 400;
  border: none;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 18%);
}

.navbar .global-btns .btn:not(:last-child) {
  margin-right: 6px;
}

.navbar a {
  font-size: 15px;
  font-weight: 500;
}

.navbar .nav-item-btn img {
  width: 38px;
}

.navbar .nav-item-btn .btn {
  color: #fff;
  border: none;
  font-size: 14px;
}

.navbar .nav-item-btn .btn:not(:last-child) {
  margin-right: 16px;
}

.navbar .nav-item-btn .social-btn {
  position: relative;
  padding-left: 16px;
  border-left: 1px solid transparent;
}

.navbar .nav-item-btn .social-btn::after {
  content: ' ';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background-color: #fff;
}

.navbar .navbar-nav .nav-item:not(:last-child) {
  margin-right: 14px;
}

.navbar .navbar-nav .nav-item>.nav-link {
  color: #fff;
  padding: 10px 15px;
  border-radius: 40px;
  transition: all 0.12s linear;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bodyColor);
  background-color: #f1f1f1;
}

.navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.navbar .navbar-nav .dropdown-toggle.show,
.navbar .navbar-nav .nav-item>.nav-link:hover {
  color: #fff;
}

.navbar.nav-gradient .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.navbar.nav-gradient .navbar-nav .dropdown-toggle.show,
.navbar.nav-gradient .navbar-nav .nav-item>.nav-link:hover {
  color: var(--bodyColor);
  background-color: #fff;
}

.blue-style .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.blue-style .navbar .navbar-nav .dropdown-toggle.show,
.blue-style .navbar .navbar-nav .nav-item>.nav-link:hover {
  background-color: var(--blue);
}

.red-style .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.red-style .navbar .navbar-nav .dropdown-toggle.show,
.red-style .navbar .navbar-nav .nav-item>.nav-link:hover {
  background-color: var(--red);
}

.purple-style .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.purple-style .navbar .navbar-nav .dropdown-toggle.show,
.purple-style .navbar .navbar-nav .nav-item>.nav-link:hover {
  background-color: var(--purple);
}

.green-style .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.green-style .navbar .navbar-nav .dropdown-toggle.show,
.green-style .navbar .navbar-nav .nav-item>.nav-link:hover {
  background-color: var(--green);
}

.orange-style .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle,
.orange-style .navbar .navbar-nav .dropdown-toggle.show,
.orange-style .navbar .navbar-nav .nav-item>.nav-link:hover {
  background-color: var(--orange);
}

.navbar .navbar-brand {
  width: 109px;
}

.navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 30px;
}

.navbar .dropdown-toggle::after {
  position: absolute;
  top: 20px;
  right: 13px;
  transition: transform 0.2s linear;
}

.navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after,
.navbar .navbar-nav .dropdown-toggle:hover::after,
.navbar .navbar-nav .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.navbar-nav .dropdown-menu.show {
  animation: dropdown-menu 0.2s ease-in-out;
}

@keyframes dropdown-menu {
  0% {
    top: 150%;
    opacity: 0;
  }

  100% {
    top: 100%;
    opacity: 1;
  }
}

.navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  width: max-content;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown {
  padding-right: 10px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li {
  min-width: 220px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li a {
  padding: 8px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li a img {
  width: 45px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li img {
  margin-right: 5px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown>ul {
  padding: 0 15px 0 10px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  margin-top: 0;
}

.navbar .navbar-toggler {
  height: 35px;
  width: 42px;
  padding: 6px;
  border: 1px solid #fff;
  box-shadow: none;
  outline: none;
}

.navbar .burger-icon {
  left: 0;
  height: 1px;
  background-color: #fff;
}

.navbar .navbar-toggler span {
  transition: transform 0.15s linear;
}

.navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(0px, 7px) rotate(-45deg);
}

.navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(0px, -7px) rotate(45deg);
}

.navbar .nav-item-btn .btn {
  min-width: inherit;
  min-height: inherit;
}


/*
**
**** Header Section ****
**
*/

.header-section .carousel-item:nth-child(1) {
  background-image: url('../img/bg-header0.jpg');
}

.header-section .carousel-item:nth-child(2) {
  background-image: url('../img/bg-header02.jpg');
}

.header-section .carousel-item:nth-child(3) {
  background-image: url('../img/bg-header03.jpg');
}

.header-section .bg-wave.btm-wave {
  bottom: -116px;
}

.header-section .bg-wave {
  background-image: url('../img/wave-gradient.png');
}

.header-section .carousel {
  position: absolute;
  height: calc(100% - 120px);
  bottom: 0;
}

.header-section .carousel .inner-content {
  max-width: 600px;
}

.header-section .carousel-inner {
  height: calc(100% + 114px);
  align-items: center;
  display: flex;
}

.header-section .carousel-item {
  height: 100%;
  padding-bottom: 114px;
  z-index: 1;
}

.header-section .carousel-indicators {
  z-index: 999;
}

.header-section .carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 100%;
}

.header-section .carousel-indicators button.active {
  background-color: var(--mainBlue);
  box-shadow: inset 0px 0px 0px 3px #fff;
}

.header-section .carousel .video-btn {
  background: var(--mainGradient);
}

.header-section .carousel-indicators button:not(:last-child) {
  margin-right: 10px;
}

.header-section .carousel-control-next,
.header-section .carousel-control-prev {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
  width: 55px;
  height: 55px;
  border-radius: 100%;
  top: 43%;
  transform: translateY(-50%);
}

.header-section .carousel-item-next,
.header-section .carousel-item-prev,
.header-section .carousel-item.active {
  display: flex;
  align-items: center;
}

.header-section .carousel-control-next {
  right: 5%;
  padding-left: 5px;
}

.header-section .carousel-control-prev {
  left: 5%;
  padding-right: 5px;
}

.jellyball .header-section.bg1 {
  background-image: url('../img/bg-header1.jpg');
}

.blue-style .header-section .bg-wave {
  background-image: url('../img/topcover-blue.png');
}

.lasertag .header-section.bg1 {
  background-image: url('../img/bg-header2.jpg');
}

.red-style .header-section .bg-wave {
  background-image: url('../img/wave-darkblue.png');
}

.casino .header-section.bg1 {
  background-image: url('../img/bg-header3.jpg');
}

.purple-style .header-section .bg-wave {
  background-image: url('../img/wave-gray.png');
}

.carnival .header-section.bg1 {
  background-image: url('../img/bg-header4.jpg');
}

.green-style .header-section .bg-wave {
  background-image: url('../img/wave-darkblue2.png');
}

.escaperoom .header-section.bg1 {
  background-image: url('../img/bg-header5.jpg');
}

.orange-style .header-section .bg-wave {
  background-image: url('../img/wave-darkblue3.png');
}

.header-section {
  color: #fff;
  background-attachment: fixed;
}

.header-section .bg-wave {
  min-height: 114px;
  z-index: 99;
  bottom: -1px;
}

.header-section .box-content {
  visibility: hidden;
  max-width: 770px;
  padding: 0 20px 50px 20px;
  background-color: #fff;
  border-radius: 45px;
  min-height: 420px;
  box-shadow: 0 2px 17px 0px rgb(0 0 0 / 7%);
}

.header-section .box-content.active {
  visibility: visible;
  animation: topAnim 0.5s ease;
}

.header-section .box-content .success-video {
  width: 191px;
}

.header-section .box-content .heading-txt {
  color: var(--bodyColor);
}

.header-section .box-content .heading-para {
  font-weight: 500;
  line-height: 30px;
  color: var(--bodyColor);
}

/*
**
**** About Section ****
**
*/

.about-section {
  padding-bottom: 80px;
}

.about-section .pic {
  max-width: 480px;
}

.about-section .games-num {
  color: #fff;
  right: 0;
  width: 92px;
  flex: 0 0 92px;
  height: 92px;
  bottom: 70px;
}

.about-section .games-num .overlay {
  filter: blur(1.4px);
  background: linear-gradient(to bottom, var(--mainBlue), var(--mainGreen));
}

.about-section .games-num .num {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
}

.about-section .games-num .txt {
  font-size: 14px;
}


/*
**
**** Goals Section ****
**
*/

.blue-style .goals-section {
  background-color: var(--lightBlue);
}

.red-style .goals-section {
  background-color: var(--darkBlue);
}

.purple-style .goals-section {
  background-color: var(--gray);
}

.green-style .goals-section {
  background-color: var(--lightBlue2);
}

.orange-style .goals-section {
  background-color: var(--lightBlue3);
}

.goals-section .bg-overlay {
  opacity: 0.8;
  background-image: url('../img/overlay-pattern.png');
}

.goals-section {
  padding: 50px 0 30px 0;
  color: #fff;
}

.goals-section .heading h2 {
  color: #fff;
  line-height: 42px;
}

.goals-section .card-content .inner-pic {
  width: 60px;
  transition: transform 0.35s ease-in-out;
}

.goals-section .card-content .icon {
  width: 140px;
  height: 140px;
  cursor: pointer;
}

.blue-style .goals-section .card-content .icon {
  background-color: var(--blue);
}

.red-style .goals-section .card-content .icon {
  background-color: var(--red);
}

.purple-style .goals-section .card-content .icon {
  background-color: var(--purple);
}

.green-style .goals-section .card-content .icon {
  background-color: var(--green);
}

.orange-style .goals-section .card-content .icon {
  background-color: var(--orange);
}

.goals-section .card-content:hover .inner-pic {
  transform: rotate(360deg);
}

.goals-section .card-content .icon .pic {
  width: 125px;
  height: 125px;
  border: 2px dashed #fff;
}

.goals-section .bg-wave {
  transform: rotate(180deg);
  bottom: -113px;
}

.blue-style .goals-section .bg-wave {
  background-image: url('../img/topcover-blue.png');
}

.red-style .goals-section .bg-wave {
  background-image: url('../img/wave-darkblue.png');
}

.purple-style .goals-section .bg-wave {
  background-image: url('../img/wave-gray.png');
}

.green-style .goals-section .bg-wave {
  background-image: url('../img/wave-darkblue2.png');
}

.orange-style .goals-section .bg-wave {
  background-image: url('../img/wave-darkblue3.png');
}

.goals-section .card-container {
  max-width: 300px;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 50px;
}


/*
**
**** Features Section ****
**
*/

.features-section h2,
.features-section {
  color: #fff;
}

.features-section .inner-content>div {
  flex: 0 0 50%;
}

.features-section .left-content .pic {
  min-height: 770px;
}

.jellyball .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg.jpg');
}

.lasertag .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg2.jpg');
}

.casino .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg3.jpg');
}

.carnival .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg4.jpg');
}

.escaperoom .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg5.jpg');
}

.home .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg6.jpg');
}

.features-section .left-content .bg-overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
}

.features-section .right-content {
  padding: 184px 35px 150px 35px;
}

.features-section .right-content ul li.d-flex .highlight {
  font-weight: 600;
  padding-right: 10px;
}

.blue-style .features-section .right-content {
  background-color: var(--darkLightBlue);
}

.red-style .features-section .right-content {
  background: var(--redGradient);
}

.purple-style .features-section .right-content {
  background: var(--darkBlue2);
}

.purple-style .features-section .right-content {
  background: var(--darkBlue2);
}

.green-style .features-section .right-content {
  background: var(--cyan);
}

.orange-style .features-section .right-content {
  background: var(--bgorange);
}

.gradient-bg .features-section .right-content {
  background: #1973AA;
}

.features-section .feature {
  font-size: 16px;
}

.features-section .feature:not(:last-child) {
  margin-bottom: 10px;
}

.features-section .feature .txt {
  transition: all 0.15s linear;
}

.features-section .feature .num {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  font-weight: 500;
  background-color: #7E7E7E;
  margin-right: 10px;
  box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 30%);
}

.features-section .feature:nth-child(1) .num {
  background-color: #FF5E5E;
}

.features-section .feature:nth-child(2) .num {
  background-color: #FFB053;
}

.features-section .feature:nth-child(3) .num {
  background-color: #5EBD5C;
}

.features-section .feature:nth-child(4) .num {
  background-color: #7F60FF;
}

.features-section .feature:nth-child(5) .num {
  background-color: #2577F2;
}

.features-section .feature:nth-child(6) .num {
  background-color: #303030;
}

.features-section .feature:nth-child(7) .num {
  background-color: #50B6B0;
}

.features-section .feature:nth-child(8) .num {
  background-color: #E56E00;
}

.features-section .feature:nth-child(9) .num {
  background-color: #CE43FF;
}

.features-section .feature:nth-child(1):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #FF5E5E;
}

.features-section .feature:nth-child(2):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #FFB053;
}

.features-section .feature:nth-child(3):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #5EBD5C;
}

.features-section .feature:nth-child(4):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #7F60FF;
}

.features-section .feature:nth-child(5):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #2577F2;
}

.features-section .feature:nth-child(6):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #303030;
}

.features-section .feature:nth-child(7):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #50B6B0;
}

.features-section .feature:nth-child(8):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #E56E00;
}

.features-section .feature:nth-child(9):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #CE43FF;
}

.features-section .overlay-shapes {
  max-width: 875px;
  background-size: contain;
  background-position: right 80px;
  background-image: url('../img/shapes-overlay.png');
}

.features-section .bg-wave {
  bottom: -1px;
  background-image: url('../img/wave-white.png');
}

.gradient-bg .features-section .bg-wave {
  background-image: url('../img/wave-gradient.png');
}

.gradient-bg .features-section .bg-wave.topwave {
  top: -1px;
  bottom: auto;
  background-image: url('../img/wave-gradient2.png');
}

.features2-section .feature-card .title {
  font-weight: 600;
}

.features2-section .highlight {
  font-weight: 700;
}

.features2-section .feature-card .icon {
  max-width: 132px;
  padding: 30px;
  margin-bottom: 28px;
}

.features2-section .feature-card .icon::before,
.features2-section .feature-card .icon::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: rotate(15deg);
  border-radius: 25px;
}

.features2-section .feature-card .icon::after {
  opacity: 0.5;
  transform: rotate(0deg);
  filter: blur(2px);
}

.features2-section .feature-card .pic {
  width: 65px;
  z-index: 1;
}

.features2-section .feature-card:nth-child(1) .icon::before,
.features2-section .feature-card:nth-child(1) .icon::after {
  background-color: #3C89FC;
}

.features2-section .feature-card:nth-child(1) .highlight {
  color: #3C89FC;
}

.features2-section .feature-card:nth-child(2) .icon::before,
.features2-section .feature-card:nth-child(2) .icon::after {
  background-color: #F13C3C;
}

.features2-section .feature-card:nth-child(2) .highlight {
  color: #F13C3C;
}

.features2-section .feature-card:nth-child(3) .icon::before,
.features2-section .feature-card:nth-child(3) .icon::after {
  background-color: #58BD35;
}

.features2-section .feature-card:nth-child(3) .highlight {
  color: #58BD35;
}

.features2-section .feature-card:nth-child(4) .highlight,
.features2-section .feature-card:nth-child(4) .icon::before,
.features2-section .feature-card:nth-child(4) .icon::after {
  background-color: #AD56F1;
}

.features2-section .feature-card:nth-child(4) .highlight {
  color: #AD56F1;
}

.features2-section .feature-card:nth-child(5) .icon::before,
.features2-section .feature-card:nth-child(5) .icon::after {
  background-color: #FEA92A;
}

.features2-section .feature-card:nth-child(5) .highlight {
  color: #FEA92A;
}


/*
**
**** Pickup Section ****
**
*/

.pickup-section .pickup-note {
  color: var(--mainBlue);
  font-weight: 600;
}

.pickup-section .adress-btn {
  border: none;
  border-radius: 8px;
  border-bottom: 3px solid #B9B9B9;
  background-color: #fff;
  color: #7C7C7C;
  text-align: left;
  padding: 18px 15px;
  transition: all 0.25s ease-in-out;
}

.pickup-section .adress-btn .title {
  font-size: 16px;
  font-weight: 700;
}

.pickup-section .adress-btn:not(:last-child) {
  margin-bottom: 15px;
}

.pickup-section .adress-btn:hover {
  transform: none;
}

.pickup-section .adress-btn .icon {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  margin-right: 15px;
  background-color: #D0D0D0;
}

.pickup-section .adress-btn .icon img {
  width: 22px;
}

.pickup-section .adress-btn.active .icon {
  background-color: var(--mainBlue);
}

.pickup-section .adress-btn.active .title {
  color: var(--mainBlue);
}

.pickup-section .adress-btn.active {
  color: var(--bodyColor);
  border-bottom-color: var(--mainBlue);
}

.pickup-section .map-content .inner-content {
  padding: 5px;
  border: 2px dashed var(--mainGreen);
  border-radius: 15px;
}

.pickup-section .map-content iframe {
  width: 100%;
  min-height: 530px;
  border-radius: 16px;
  border: 3px solid #fff;
}

.pickup-section .map-content iframe:not(.active) {
  display: none;
}


/*
**
**** Games Section ****
**
*/

.games-section .games-container {
  max-width: 1150px;
  border: 2px dashed var(--mainBlue);
  border-radius: 15px;
  min-height: 150px;
  padding: 30px 100px;
}

.games-section .games-container a {
  display: block;
  max-width: 240px;
  margin: 0 auto;
}

.games-section .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.games-section .owl-nav button.owl-next,
.games-section .owl-nav button.owl-prev {
  font-size: 20px;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background-color: #D0D0D0;
  border-radius: 100%;
}

.games-section .owl-nav button.disabled {
  background-color: #D0D0D0;
}

.games-section .owl-nav button:not(.disabled) {
  background-color: var(--mainBlue);
}

.games-section .owl-nav button.owl-next {
  position: absolute;
  right: -60px;
}

.games-section .owl-nav button.owl-prev {
  position: absolute;
  left: -60px;
}


/*
**
**** Price Section ****
**
*/

.glist-section .games-control .btn {
  color: var(--mainBlue);
  border-color: var(--mainBlue);
  border-radius: 8px;
  margin-bottom: 16px;
}

.glist-section .games-control .btn:not(:last-child) {
  margin-right: 10px;
}

.glist-section .games-control .btn.active,
.glist-section .games-control .btn:hover {
  transform: none;
  color: #fff;
  background-color: var(--mainBlue);
}

.glist-section .inner-item {
  padding: 15px 25px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 2px dashed var(--mainBlue);
  border-radius: 25px;
  height: 100%;
}

.glist-section .inner-item .title {
  font-size: 22px;
  font-family: var(--headingFont);
  color: var(--mainBlue);
}

.glist-section .pic {
  max-width: 230px;
  flex: 0 0 230px;
  width: 100%;
}

.glist-section .pic img {
  border-radius: 15px;
}

.glist-section .info {
  padding-left: 20px;
}

.glist-section .item-btn .btn {
  color: var(--mainBlue);
  width: 100%;
  margin: 20px 0 5px 0;
  border-color: var(--mainBlue);
  border-radius: 35px;
}

.glist-section .item-btn .btn:hover {
  transform: none;
  color: #fff;
  background-color: var(--mainBlue);
}

.glist-section .inner-item .info-icon {
  width: 30px;
  flex: 0 0 30px;
}

.glist-section .inner-item .info-txt {
  font-weight: 500;
  padding-left: 10px;
}

.glist-section .game-item {
  margin-bottom: 25px;
}

/*
**
**** Price Section ****
**
*/

.price-section {
  padding-top: 50px;
}

.price-section .price-table {
  position: relative;
  max-width: 390px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 2px 13px -1px rgb(0 0 0 / 14%);
}

.price-section .price-table:not(:last-child) {
  margin-right: 50px;
}

.price-section .price-table .btn-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 50px);
}

.price-section .price-slide .btn-container .btn,
.price-section .price-table .btn-container .btn {
  background-color: transparent;
  border: 1px solid;
}

.price-section .price-table .top-table {
  color: #fff;
  padding: 25px 25px 0 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  overflow: hidden;
}

.price-section .price-table .overlay {
  height: calc(100% - 20px);
  z-index: -1;
  background-color: #2577F2;
}

.price-section .price-table:nth-child(2) .overlay {
  background-color: #F4B91F;
}

.price-section .price-table .top-table .price {
  font-family: var(--numFont);
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 8px;
  line-height: initial;
}

.price-section .price-table .top-table .note {
  font-weight: 500;
  margin-bottom: 25px;
}

.price-section .price-table .top-table .type {
  font-weight: 500;
  background-color: var(--lightBlue);
  display: inline-block;
  padding: 10px 30px;
  line-height: initial;
  border-radius: 40px;
}

.price-section .price-table:nth-child(2) .top-table .type {
  background-color: #FF6A6A;
}

.price-section .price-table .table-body {
  padding: 25px 25px 100px 25px;
}

.price-section .price-table .feature:not(:last-child) {
  margin-bottom: 10px;
}

.price-section .price-table .feature .icon {
  width: 20px;
  flex: 0 0 20px;
  margin-right: 10px;
}

.price-section .price-table .feature .txt {
  font-weight: 600;
}

.price-section .price-slide {
  box-shadow: 0px 2px 12px 0px rgb(0 0 0 / 13%);
  border-radius: 25px;
  max-width: 1100px;
}

.price-section .price-slide:not(:last-child) {
  margin-bottom: 35px;
}

.price-section .price-slide .inner-content {
  padding: 35px;
}

.price-section .price-slide .slide-info .content-info {
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 35px;
  padding-right: 20px;
}

.price-section .price-slide .inner-slide-info {
  border-left: 1px solid #E3E3E3;
  padding-left: 35px;
}

.price-section .price-slide .slide-title {
  padding-right: 20px;
  width: 27%;
  flex: 0 0 27%;
}

.price-section .price-slide .info-icon:not(.price-icon) {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.price-section .price-slide .price-icon {
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 6px 10px;
  font-size: 18px;
  font-family: var(--numFont);
}

.price-section .price-slide .feature-list {
  margin-bottom: 15px;
}

.price-section .price-slide .feature-list li {
  position: relative;
  padding-left: 17px;
  color: #898989;
  line-height: initial;
  margin-bottom: 5px;
}

.price-section .price-slide .feature-list li::after {
  content: ' ';
  position: absolute;
  width: 9px;
  height: 9px;
  left: 0;
  top: 6px;
  border-radius: 100%;
}

.price-section .price-slide .price-icon p {
  line-height: initial;
}

.price-section .price-slide .price-description {
  font-size: 15px;
  font-weight: 500;
  color: #898989;
}

.price-section .price-slide .btn-container {
  margin-top: 20px;
}

.price-section .price-slide .info-txt {
  color: #898989;
}

.price-section .price-slide .slide-price {
  margin-bottom: 20px;
}

.price-section .price-slide .slide-price h2 {
  font-weight: 600;
  color: var(--bodyColor);
  font-family: var(--numFont);
}

.price-section .price-slide .price-title {
  margin-bottom: 5px;
}

.price-section .price-slide .info-icon img {
  max-width: 29px;
  max-height: 39px;
}

.price-section .h-price {
  font-weight: 700;
}

.price-section .price-slide .slide-note {
  margin-left: 35px;
  padding-top: 20px;
  padding-bottom: 5px;
  border-top: 1px solid #E3E3E3;
}

.price-section .price-slide .slide-note>div:not(:last-child) {
  margin-right: 35px;
}

.price-section .price-slide.price-slide-features .inner-content {
  padding-bottom: 15px;
}

.price-section .price-slide.price-slide-features .slide-title {
  padding-bottom: 50px;
}

.price-section .price-slide .slide-note .note .icon {
  width: 24px;
  height: 24px;
  border-radius: 100%;
}

.price-section .price-slide .slide-note .note .icon img {
  max-width: 16px;
}

.price-section .price-slide .slide-note .txt {
  font-weight: 600;
  padding-left: 7px;
}

.price-section .price-slide .slide-note .note .icon {
  background-color: #F9B609;
}

.price-section .price-slide .slide-note .feature .icon {
  width: 19px;
  margin-top: 2px;
}

.price-section .price-slide .content-feature {
  margin-bottom: 10px;
}

.price-section .price-slide .content-feature .icon {
  font-size: 18px;
  flex: 0 0 30px;
  width: 30px;
  text-align: center;
}

.price-section .price-slide .content-feature:nth-child(1) .icon {
  font-size: 20px;
}

.price-section .price-slide .content-feature .txt {
  padding-top: 2px;
  padding-left: 10px;
  font-weight: 500;
}

.price-section .price-slide .lg-space {
  padding-top: 60px;
}

.price-section .price-slide .group-feature-title {
  font-weight: 700;
  font-size: 16px;
  padding-top: 35px;
}

.price-section .price-slide .btn-container .btn:hover,
.price-section .price-table .btn:hover {
  transform: none;
  color: #fff !important;
}

.price-section .price-slide:nth-child(1) .btn-container .btn:hover,
.price-section .price-table:nth-child(1) .btn:hover,
.price-section .price-slide:nth-child(1) .feature-list li::after,
.price-section .price-slide:nth-child(1) .info-icon {
  background-color: #2577F2;
}

.price-section .price-slide:nth-child(1) .btn-container .btn,
.price-section .price-table:nth-child(1) .btn,
.price-section .price-slide:nth-child(1) .content-feature .icon,
.price-section .price-slide:nth-child(1) .h-price,
.price-section .price-slide:nth-child(1) .price-title {
  color: #2577F2;
}

.price-section .price-slide:nth-child(2) .btn-container .btn:hover,
.price-section .price-slide:nth-child(2) .feature-list li::after,
.price-section .price-slide:nth-child(2) .info-icon {
  background-color: #F65353;
}

.price-section .price-slide:nth-child(2) .btn-container .btn,
.price-section .price-slide:nth-child(2) .content-feature .icon,
.price-section .price-slide:nth-child(2) .h-price,
.price-section .price-slide:nth-child(2) .price-title {
  color: #F65353;
}

.price-section .price-slide:nth-child(3) .btn-container .btn:hover,
.price-section .price-table:nth-child(2) .btn:hover,
.price-section .price-slide:nth-child(3) .feature-list li::after,
.price-section .price-slide:nth-child(3) .info-icon {
  background-color: #F4B91F;
}

.price-section .price-slide:nth-child(3) .btn-container .btn,
.price-section .price-table:nth-child(2) .btn,
.price-section .price-slide:nth-child(3) .content-feature .icon,
.price-section .price-slide:nth-child(3) .h-price,
.price-section .price-slide:nth-child(3) .price-title {
  color: #F4B91F;
}

/*
**
**** Gallery ****
**
*/

.gallery-section .gallery-container .pic {
  width: 20%;
  flex: 0 0 20%;
  border: 2px solid #fff;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.gallery-section .gallery-container .pic .cover {
  height: 470px;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}

.gallery-section .gallery-container .pic:hover .cover {
  transform: scale(1.2);
}

.gallery-section .gallery-container .pic .cover .overlay {
  transition: all 0.25s ease-in-out;
}

.gallery-section .gallery-container .pic:hover .cover .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-section .gallery-container .pic>img {
  display: none;
}

.gallery-section .gallery-container .pic .icon {
  opacity: 0;
  width: 23%;
  transition: all 0.3s ease-in-out;
}

.gallery-section .gallery-container .pic:hover .icon {
  opacity: 1;
}

.gallery-section .lightbox {
  display: none;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
}

.gallery-section .lightbox.active {
  display: block;
  opacity: 1;
  animation: fadeIn2 0.25s linear;
}

.gallery-section .lightbox.active.active2 {
  opacity: 0;
  animation: fadeOut2 0.25s linear;
}

.gallery-section .lightbox .right-arrow {
  right: 90px;
}

.gallery-section .lightbox .left-arrow {
  left: 90px;
}

.gallery-section .lightbox .arrow {
  border: none;
  background-color: #000;
  border-radius: 100%;
  color: #fff;
  font-size: 25px;
  width: 60px;
  height: 60px;
}

.gallery-section .lightbox .cancel-btn {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  background-color: transparent;
  font-size: 29px;
  top: -65px;
  right: -60px;
}

.gallery-section .lightbox .preview {
  max-height: 80%;
}

.gallery-section .lightbox .preview img {
  max-height: 100%;
  max-width: fit-content;
}

/*
**
**** Promotion ****
**
*/

.promotion-section .promotion {
  color: var(--mainBlue);
  margin-bottom: 50px;
  border: 2px dashed;
  border-radius: 15px;
  padding: 25px 50px 15px 25px;
  max-width: 1200px;
}

.promotion-section .promotion .icon {
  width: 55px;
  flex: 0 0 55px;
  margin-right: 30px;
}

.promotion-section .promotion .txt h4 {
  font-weight: 100;
  font-family: var(--headingFont);
}

.promotion-section .promotion .btn-promotion {
  border: none;
  color: #fff;
  background-color: var(--mainBlue);
  padding: 14px 22px;
  border-radius: 8px;
}

.promotion-section .promotion .title {
  color: var(--bodyColor);
}

.promotion-section .promotion.green {
  color: var(--mainGreen);
}

.promotion-section .promotion.green .btn-promotion {
  background-color: var(--mainGreen);
}


/*
**
**** FAQ ****
**
*/

.faq-section .accordion-item {
  border: none;
  background-color: transparent;
}

.faq-section .accordion-item .faq-content {
  border: 1px solid #D8D8D8;
  border-radius: 25px;
  max-width: 590px;
  padding: 0 25px;
  background-color: #fff;
}

.gradient-bg .faq-section .accordion-item .faq-content {
  border: 1px solid #fff;
  box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 11%);
}

.gradient-bg .accordion-button .txt {
  font-weight: 700;
  font-family: var(--bodyFont);
}

.gradient-bg .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--mainBlue);
}

.gradient-bg .faq-section .accordion-item .faq-content.active h2 {
  color: var(--mainBlue);
}

.gradient-bg .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--mainBlue);
}

.faq-section .accordion-item:not(:last-child) .faq-content {
  margin-bottom: 25px;
}

.faq-section .accordion-button {
  background-color: transparent;
  padding: 20px 0px;
}

.faq-section .accordion-button {
  color: inherit;
  box-shadow: none;
  outline: none;
}

.faq-section .accordion-button::after {
  display: none;
}

.faq-section .accordion-button .txt {
  padding-right: 50px;
}

.faq-section .faq-content:not(.active) .accordion-button .icon {
  color: #979797;
}

.faq-section .accordion-button .icon {
  right: 0;
  font-size: 18px;
  color: inherit;
  transform: rotate(180deg);
  transition: all 0.2s linear;
}

.faq-section .faq-content:not(.active) .accordion-button .icon {
  color: #979797;
  transform: rotate(0deg);
}

.faq-section .accordion-body,
.faq-section .faq-content:not(.active) .accordion-button {
  color: var(--bodyColor) !important;
}

.faq-section .accordion-body {
  padding: 20px 0 15px 0;
  border-top: 1px solid #D8D8D8;
}

.faq-section ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}

.faq-section ul li::before {
  content: ' ';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  top: 7.5px;
  left: 10px;
  background-color: var(--mainBlue);
}

.blue-style .faq-section .accordion-item .faq-content.active {
  color: var(--blue);
}

.blue-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--blue);
}

.blue-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--blue);
}

.red-style .faq-section .accordion-item .faq-content.active {
  color: var(--red);
}

.red-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--red);
}

.red-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--red);
}

.purple-style .faq-section .accordion-item .faq-content.active {
  color: var(--purple);
}

.purple-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--purple);
}

.purple-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--purple);
}

.green-style .faq-section .accordion-item .faq-content.active {
  color: var(--green);
}

.green-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--green);
}

.green-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--green);
}

.orange-style .faq-section .accordion-item .faq-content.active {
  color: var(--orange);
}

.orange-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--orange);
}

.orange-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--orange);
}

/*
**
**** Product ****
**
*/

.product-section .product-container .inner-content {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 2px dashed var(--mainBlue);
  border-radius: 25px;
}

.product-section .details-title {
  margin: 10px 0 35px 0;
}

.product-section .details-title h4 {
  font-weight: 100;
  color: var(--mainBlue);
  font-family: var(--headingFont);
}

.product-section .details-title .icon {
  width: 28px;
  flex: 0 0 28px;
  margin-right: 10px;
}

.product-section .inner-row {
  flex: 0 0 50%;
  width: 50%;
  padding-right: 20px;
}

.product-section .details-row {
  margin-bottom: 25px;
}

.product-section .details-row .icon {
  width: 50px;
  flex: 0 0 50px;
  margin: 0px 15px 0 0;
}

.product-section .product-details {
  padding-left: 25px;
}

.product-section p {
  font-size: 16px;
  font-weight: 500;
}

.product-section .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--mainBlue);
}

.product-section .num-details {
  margin-bottom: 35px;
}

.product-section .num-details p {
  font-size: 18px;
  font-weight: 700;
}

.product-section .num-details .icon {
  flex: 0 0 40px;
  width: 40px;
  margin-right: 10px;
}

.product-section .btn-details .btn {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  background: var(--mainGradient);
}

.product-section .btn-details .btn:hover {
  transform: scale(1.03);
}

.product-section .product-gallery {
  flex: 0 0 36%;
  width: 36%;
}

.product-section .product-gallery .product-pic {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 6px;
  background: var(--mainGradient);
}

.product-section .product-pic .slide-pic {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}

.product-section .slide img {
  border-radius: 10px;
}

.product-section .product-imgs {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
}

.product-section .product-imgs .icon {
  font-size: 29px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 100%;
  width: 33px;
  height: 33px;
  color: #f74949;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-in-out;
}

.product-section .product-imgs .slide {
  cursor: pointer;
}

.product-section .product-imgs .slide:hover .icon {
  transform: translate(-50%, -50%) scale(1.08);
}

.product-section .product-imgs .owl-stage {
  margin: 0 auto;
}

.product-section .product-imgs .owl-nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 33px;
  height: 33px;
  color: #fff;
  border-radius: 100%;
  background-color: var(--mainBlue);
  background-color: rgba(0, 0, 0, 0.85);
}

.product-section .product-imgs .owl-nav button:last-child {
  left: auto;
  right: 10px;
}

.product-section .product-imgs iframe {
  display: none;
}

.product-section .product-pic .slide-pic iframe+img {
  display: none;
}

.product-section .product-pic .slide-pic iframe {
  width: 100%;
  min-height: 280px;
}

/*
**
**** Footer ****
**
*/

.footer-section {
  padding: 170px 0 28px;
  color: #fff;
  background-color: #2D2D2D;
}

.footer-section.topwave-space {
  margin-top: 114px;
  padding-top: 56px;
}

.footer-section .bg-wave {
  top: 0px;
  transform: rotate(180deg);
  background-image: url('../img/wave-white.png');
}

.footer-section .bg-wave.top-wave {
  transform: rotate(0deg);
  margin-top: -114px;
  background-image: url('../img/top-wave.png');
}

.footer-section .left-content {
  padding-right: 30px;
}

.footer-section .left-content .logo {
  width: 100px;
  flex: 0 0 100px;
}

.footer-section .left-content .about {
  padding-left: 15px;
  font-size: 15px;
}

.footer-section .left-content .social-icon .social {
  width: 38px;
}

.footer-section .left-content .social-icon .social:not(:last-child) {
  margin-right: 12px;
}

.footer-section .right-content {
  padding-left: 30px;
}

.footer-section .mid-content {
  padding: 0 30px;
}

.footer-section .mid-content ul {
  padding-right: 15px;
  flex: 0 0 50%;
  width: 50%;
}

.footer-section .mid-content ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 5px;
  transition: all 0.25s linear;
}

.footer-section .mid-content ul li a:hover {
  color: #959595;
}

.footer-section .top-footer>div {
  padding-bottom: 30px;
  margin-bottom: 10px;
}

.footer-section .top-footer>div:not(:last-child) {
  border-right: 1px solid #646464;
}

.footer-section .copyright {
  padding: 28px 0 0 0;
  border-top: 1px solid #646464;
  font-size: 14px;
  font-weight: 500;
}

/*
**
**** responsive ****
**
*/

@media only screen and (min-width: 992px) {
  .header-section:not(.fixed-height) {
    min-height: 600px;
  }
}

@media only screen and (min-width: 1200px) {
  .header-section:not(.fixed-height) {
    min-height: 700px;
  }
}

@media only screen and (min-width: 1400px) {
  .header-section:not(.fixed-height) {
    min-height: 950px;
  }
}

@media only screen and (max-width: 1700px) {
  .header-section .carousel .container {
    max-width: 1200px;
  }

  .header-section .carousel-control-prev {
    left: 4%;
  }

  .header-section .carousel-control-next {
    right: 4%;
  }
}

@media only screen and (max-width: 1500px) {
  .header-section .carousel .container {
    max-width: 1000px;
  }
}


@media only screen and (max-width: 1399px) {
  .title {
    font-size: 18px;
  }

  .navbar a {
    font-size: 14px;
  }

  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 10px;
  }

  .navbar .navbar-brand {
    width: 135px;
  }

  .navbar.fixed-top .navbar-brand {
    width: 125px;
  }

  .header-section .carousel .container {
    max-width: 950px;
  }

  .gallery-section .gallery-container .pic {
    width: 25%;
    flex: 0 0 25%;
  }

  .gallery-section .gallery-container .pic .cover {
    height: 400px;
  }

  .about-section .pic {
    max-width: 410px;
  }

  .about-section .games-num {
    width: 85px;
    flex: 0 0 85px;
    height: 85px;
    bottom: 60px;
  }

  .header-section .carousel-control-next,
  .header-section .carousel-control-prev {
    top: 44.5%;
  }
}

@media only screen and (max-width: 1199px) {
  .title {
    font-size: 17px;
  }

  .navbar {
    backdrop-filter: blur(4.5px);
  }

  .navbar.fixed-top .navbar-brand,
  .navbar .navbar-brand {
    width: 113px;
  }

  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 5px;
  }

  .navbar .global-btns .btn {
    padding: 10px;
    font-size: 13px;
  }

  .navbar .inner-navbar {
    padding: 5px 0 10px 0;
  }

  .header-section .carousel .container {
    text-align: center;
  }

  .header-section .carousel .inner-content {
    margin: 0 auto;
  }

  .header-section .carousel .btn-container {
    justify-content: center;
  }

  .price-section .price-slide .slide-title {
    width: 25%;
    flex: 0 0 25%;
  }

  .gallery-section .lightbox .left-arrow {
    left: 30px;
  }

  .gallery-section .lightbox .right-arrow {
    right: 30px;
  }

  .gallery-section .lightbox .preview {
    height: auto !important;
    width: 80%;
  }

  .gallery-section .lightbox .cancel-btn {
    right: 0;
  }

  .features2-section .feature-card .icon {
    max-width: 120px;
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .features2-section .feature-card .pic {
    width: 60px;
  }

  .glist-section .pic {
    max-width: 130px;
    flex: 0 0 130px;
  }

  .glist-section .info {
    padding-left: 15px;
  }

  .glist-section .inner-item {
    padding: 10px 15px;
  }

  .footer-section .mid-content {
    padding: 0 15px;
  }

  .footer-section .left-content {
    padding-right: 15px;
  }

  .footer-section .right-content {
    padding-left: 15px;
  }

  .footer-section .mid-content ul li a {
    font-size: 14px;
  }

  .product-section .num-details p,
  .product-section .title {
    font-size: 16px;
  }

  .product-section p {
    font-size: 15px;
  }

  .product-section .details-row .icon {
    flex: 0 0 40px;
    width: 40px;
  }

  .product-section .details-row .icon {
    flex: 0 0 35px;
    width: 35px;
  }

  .product-section .details-row.btn-details {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    z-index: 999;
  }

  .navbar .navbar-collapse .inner-navbar {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 10px 0 0 0;
    padding: 5px 12px 5px 12px;
  }

  .navbar.fixed-top .navbar-collapse .inner-navbar {
    background: transparent;
  }

  .navbar .btn,
  .navbar .navbar-nav .nav-item,
  .navbar .navbar-collapse .inner-navbar .navbar-nav {
    width: 100%;
  }

  .navbar .navbar-collapse .inner-navbar {
    padding: 5px 0 15px 0;
  }

  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin: 0;
  }

  .navbar .navbar-nav .nav-item>.nav-link {
    padding: 10px 15px;
  }

  .navbar .btn,
  .navbar .navbar-nav .nav-item.nav-item-btn {
    text-align: center;
    padding-top: 10px;
    justify-content: center;
  }

  .navbar .dropdown-toggle::after {
    right: 17px;
  }

  .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    margin-left: 15px;
  }

  .navbar .nav-item-btn .social-btn {
    display: flex;
  }

  .navbar .nav-item-btn .btn {
    width: unset;
  }

  .navbar .inner-navbar {
    flex-wrap: wrap;
    padding: 0;
  }

  .navbar .container>.global-btns {
    display: none !important;
  }

  .header-section .carousel {
    height: calc(100% - 94px);
  }

  .navbar .global-btns {
    flex-wrap: wrap;
    margin: 0;
    padding: 20px 15px 15px 15px;
  }

  .navbar .global-btns .btn {
    margin: 0 0 10px 0;
  }

  .header-section .carousel .inner-content {
    max-width: 550px;
  }

  .goals-section {
    padding: 0;
  }

  .features-section .right-content {
    padding: 150px 20px 154px 20px;
  }

  .features-section .left-content .pic {
    min-height: 680px;
  }

  .price-section .price-table .top-table {
    padding: 20px 20px 0 20px;
  }

  .price-section .price-table .table-body {
    padding: 20px 20px 100px 20px;
  }

  .price-section .price-container>div {
    width: 100%;
    flex: 0 0 100%;
    min-height: 355px;
  }

  .price-section .price-table:not(:last-child) {
    margin: 0 0 35px 0;
  }

  .price-section .price-slide .inner-content {
    padding: 25px;
  }

  .price-section .price-slide .inner-slide-info {
    padding-left: 25px;
  }

  .price-section .price-slide .slide-note {
    margin-left: 25px;
  }

  .price-section .price-slide .slide-info .content-info {
    margin-bottom: 30px;
  }

  .price-section .price-slide .group-feature-title {
    padding-top: 25px;
  }

  .section-space {
    padding: 50px 0;
  }

  .big-space {
    padding-top: 60px;
  }

  .price-section {
    padding-top: 20px;
  }

  .gallery-section .gallery-container .pic {
    width: 33.3333%;
    flex: 0 0 33.3333%;
  }

  .gallery-section .gallery-container .pic .cover {
    height: 330px;
  }

  .gallery-section .gallery-container .pic .icon {
    width: 20%;
  }

  .gallery-section .lightbox .right-arrow {
    right: 20px;
  }

  .gallery-section .lightbox .left-arrow {
    left: 20px;
  }

  .gallery-section .lightbox .arrow {
    font-size: 22px;
    width: 50px;
    height: 50px;
  }

  .gallery-section .lightbox .preview {
    width: 70%;
  }

  .gallery-section .lightbox .cancel-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .header-section .carousel-control-next,
  .header-section .carousel-control-prev {
    top: 43%;
  }

  .about-section {
    padding-bottom: 60px;
  }

  .faq-section .left-content {
    margin-bottom: 25px;
  }

  .footer-section {
    padding: 170px 0 28px 0;
  }

  .footer-section .top-footer>div.right-content {
    padding: 10px 15px 0px 15px;
    text-align: center;
    font-size: 14px;
  }

  .footer-section .top-footer>div.mid-content {
    border-right: none;
  }

  .games-section .owl-nav button.owl-next,
  .games-section .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
  }

  .games-section .games-container {
    padding: 25px 60px;
  }

  .games-section .owl-nav button.owl-next {
    right: -45px;
  }

  .games-section .owl-nav button.owl-prev {
    left: -45px;
  }

  .promotion-section .promotion {
    padding: 25px 25px 15px 25px;
    margin-bottom: 25px;
  }

  .glist-section .top-content>.d-flex {
    flex-wrap: wrap;
  }

  .glist-section .pic {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .glist-section .info {
    padding-left: 0;
  }

  .product-section .inner-content {
    flex-wrap: wrap;
  }

  .product-section .product-details,
  .product-section .product-gallery {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 0;
  }

  .product-section .details-title {
    margin: 35px 0;
  }

  .product-section .details-row.btn-details {
    margin-bottom: 0px;
  }

  .product-section .product-gallery .product-pic {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-section .num-details .icon {
    flex: 0 0 30px;
    width: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li img {
    width: 35px;
  }

  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li a {
    padding: 5px;
  }

  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li:not(:last-child) {
    margin-bottom: 6px;
  }

  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown li {
    min-width: inherit;
  }

  .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    margin-left: 0px;
  }

  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown>ul {
    padding: 0 10px;
  }

  .header-section .carousel-control-next,
  .header-section .carousel-control-prev {
    width: 40px;
    height: 40px;
  }

  .header-section .carousel-control-next span,
  .header-section .carousel-control-prev span {
    width: 25px;
    height: 25px;
  }

  .header-section .carousel-control-next {
    right: 2%;
  }

  .header-section .carousel-control-prev {
    left: 2%;
  }

  .header-section .carousel .inner-content {
    max-width: 450px;
  }

  .goals-section .card-container {
    margin-bottom: 40px;
  }

  .bg-wave,
  .header-section .bg-wave {
    min-height: 60px;
  }

  .goals-section {
    padding: 50px 0 30px 0;
  }

  .goals-section .card-container:last-child {
    margin-bottom: 20px;
  }

  .goals-section .bg-wave {
    bottom: -59px;
  }

  .features-section .inner-content>div {
    width: 100%;
    flex: 0 0 100%;
  }

  .features-section .inner-content>div:nth-child(1) {
    order: 2;
  }

  .features-section .inner-content>div:nth-child(2) {
    order: 1;
  }

  .features-section .right-content {
    padding: 100px 25px 40px;
    text-align: center;
  }

  .features-section .txt-content {
    margin: 0 auto;
  }

  .features-section .left-content .pic {
    min-height: 500px;
  }

  .price-section .price-slide .inner-content {
    flex-wrap: wrap;
  }

  .price-section .price-slide .slide-title {
    width: 100%;
    flex: 0 0 100%;
    padding-right: 0px;
    padding-bottom: 20px;
  }

  .price-section .price-slide.price-slide-features .slide-title {
    padding-bottom: 20px;
  }

  .price-section .price-slide .slide-note {
    margin-left: 0px;
  }

  .price-section .price-slide .slide-info .content-info {
    margin-bottom: 25px;
  }

  .price-section .price-slide .inner-content {
    padding: 25px 25px 10px 25px;
  }

  .price-section .price-slide .inner-slide-info {
    padding-left: 0px;
    border-left: none;
    border-top: 1px solid #E3E3E3;
    padding-top: 20px;
    ;
  }

  .price-section .price-slide .lg-space {
    padding-top: 0px;
  }

  .gallery-section .gallery-container .pic .cover {
    height: 250px;
  }

  .about-section .pic {
    max-width: 380px;
    padding: 0 15px;
    margin-bottom: 25px;
  }

  .about-section .games-num {
    bottom: 40px;
  }

  .features2-section .feature-card .title {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-section {
    padding-bottom: 25px;
  }

  section.pickup-section {
    padding-top: 35px;
  }

  .promotion-section .promotion {
    padding: 20px 20px 10px 20px;
  }

  .promotion-section .promotion .btn-promotion {
    padding: 12px 17px;
    border-radius: 6px;
  }

  .promotion-section .promotion .icon {
    width: 45px;
    flex: 0 0 45px;
    margin-right: 15px;
  }

  .footer-section {
    padding-top: 115px;
  }

  .footer-section .top-footer>div.left-content {
    border-right: none;
    padding-bottom: 20px;
    border-bottom: 1px solid #646464;
  }

  .footer-section .left-content .about {
    font-size: 14px;
  }

  .footer-section .top-footer>div.mid-content {
    padding: 10px 15px 0 15px;
    margin-bottom: 0px;
  }

  .footer-section .bg-wave.top-wave {
    margin-top: -59px;
  }

  .footer-section.topwave-space {
    margin-top: 60px;
  }

  .product-section .row-group {
    flex-wrap: wrap;
  }

  .product-section .inner-row {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 0px;
  }

  .product-section .inner-row:not(:last-child) {
    margin-bottom: 15px;
  }

  .product-section .details-row .icon {
    flex: 0 0 40px;
    width: 40px;
  }

  .product-section .num-details .icon {
    flex: 0 0 30px;
    width: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .games-section .games-container {
    max-width: 450px;
  }

  .faq-section .accordion-button .txt {
    line-height: 23px;
  }

  .product-section .details-row .icon {
    flex: 0 0 35px;
    width: 35px;
  }

  .product-section .num-details .icon {
    flex: 0 0 30px;
    width: 30px;
  }

  .product-section .details-title {
    margin: 30px 0 20px 0;
  }
}

@media only screen and (max-width: 500px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown>ul {
    width: 100%;
    padding: 0 0 0 5px;
  }

  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .inner-dropdown {
    flex-wrap: wrap;
  }

  .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    width: inherit;
  }

  .header-section .carousel .h1,
  .header-section .carousel h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .header-section .carousel .inner-content {
    max-width: 300px;
  }

  .header-section .carousel-item {
    background-position: center center;
  }

  .header-section .carousel-indicators button {
    width: 12px;
    height: 12px;
  }

  .header-section .box-content {
    max-width: 95%;
    padding-bottom: 12px;
    min-height: 400px;
  }

  .header-section .box-content .heading-para {
    line-height: 28px;
    font-size: 19px;
  }

  .header-section .box-content .success-video {
    width: 151px;
  }

  .btn.rounded-circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
  }

  .main-btn .txt {
    font-size: 15px;
    padding: 2px 6px;
  }

  .main-btn {
    min-height: 57px;
  }

  .underline.green {
    box-shadow: inset 0px -10px 0px -1px var(--mainGreen);
  }

  .underline {
    box-shadow: inset 0px -10px 0px -1px var(--mainBlue);
  }

  .goals-section .card-container:last-child {
    margin-bottom: 0;
  }

  .features-section .feature:not(:last-child) {
    margin-bottom: 15px;
  }

  .price-section .price-slide .slide-info .content-info {
    width: 100%;
    flex: 0 0 100%;
  }

  .price-section .twelve-card .content-info {
    display: block !important;
  }

  .price-section .price-slide .group-feature-title {
    padding-top: 15px;
  }

  .gallery-section .gallery-container .pic .cover {
    height: 180px;
  }

  .gallery-section .lightbox .cancel-btn {
    width: 40px;
    height: 40px;
    font-size: 19px;
    top: -50px;
  }

  .gallery-section .lightbox .arrow {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }

  .gallery-section .lightbox .left-arrow {
    left: 12px;
  }

  .gallery-section .lightbox .right-arrow {
    right: 12px;
  }

  .gallery-section .lightbox .preview {
    width: 75%;
  }

  .gallery-section .gallery-container .pic {
    border: 1px solid #fff;
  }

  .faq-section .accordion-item .faq-content {
    padding: 0 15px;
  }

  .faq-section .accordion-body {
    padding: 15px 0 10px 0;
  }

  .footer-section {
    padding-top: 105px;
  }

  .title {
    font-size: 16px;
  }

  .about-section .pic {
    max-width: 350px;
  }

  .promotion-section .promotion .btn-promotion {
    font-size: 14px;
  }

  .promotion-section .promotion .title {
    font-size: 15px;
  }

  .footer-section.topwave-space {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 450px) {

  .header-section .carousel .h1,
  .header-section .carousel h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .header-section .carousel .inner-content {
    max-width: 270px;
  }
}

/*
**
**** Global animation ****
**
*/

@keyframes fadeIn2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes topAnim {
  0% {
    transform: translateY(150px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) {
  .header-section .carousel-item {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: 100% !important;
  }

  .product-section .product-pic .slide-pic iframe {
    min-height: 300px;
  }

  /*.product-section .product-gallery .product-imgs > .imgs {
     overflow: unset; 
}
.product-section .product-gallery .product-imgs .owl-nav button:first-child{
  left: -15%;
}
.product-section .product-gallery .product-imgs .owl-nav button:last-child{
      right: -15%;
}*/
  /*.product-section .product-gallery .product-imgs {
    padding: 10px 0;
}
.product-section .product-gallery .owl-carousel .owl-stage-outer {
    padding: 0px 50px;
}*/
}

@media only screen and (max-width: 767px) {

  /*   .product-section .product-gallery .product-imgs > .imgs {
     overflow: unset; 
}
.product-section .product-gallery .product-imgs .owl-nav button:first-child{
  left: -22%;
}
.product-section .product-gallery .product-imgs .owl-nav button:last-child{
      right: -22%;
}*/
  .header-section .carousel .inner-content {
    max-width: 100%;
    padding-bottom: 0 !important;
  }

  .header-section .carousel-control-next,
  .header-section .carousel-control-prev {
    display: none;
  }

  /* .navbar.position-absolute {
    position: relative !important;
} */
  .header-section {
    /* min-height: 300px !important; */
    /* padding-top: 90px; */
  }

  .header-section .carousel {
    height: unset !important;
    position: relative !important;
  }

  .header-section .carousel-item {
    padding-bottom: 65px !important;
    padding-top: 50px !important;
    background-size: cover;
    height: 300px;
  }

  .header-section .carousel .h1,
  .header-section .carousel h1 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}