/ Template CSS / :root {
  --primary: #ffdd51;
  --secondary: #fe8800;
  --light: #f5f5f5;
  --dark: #14141f;
}
.btn-primary {
  color: #000;
  background-color: #ffdd51;
  border-color: #ffdd51;
}
.d-none {
  display: none;
}
.game-boxShadow{
      padding: 40px 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
span.playText {
  background: #bae6ff;
  width: 160px;
  padding: 5px;
  margin: 20px auto;
  border: 1px solid;
}
.largeTile no-cache {
  border-radius: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.letterSpacing {
  letter-spacing: 2px;
}
.gamesTitlewrap {
  font-family: "Russo One", sans-serif;
  letter-spacing: 4px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.gameswrapDesc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gamesWrapimg {
  /*    border: 4px solid #BDD4FF;*/
  border-radius: 4px;
  width: 27%;
  padding: 10px;
}
.gamesTitle {
color: #0f172a;
    font-weight: 500;
    line-height: 17px;
    font-size: 22px;
    margin: 6px 0;
    letter-spacing: 2px;
    font-family: "Russo One", sans-serif;
}
.gamesSubtitle {
  color: #0f172a;
  line-height: 22px;
  font-size: 14px;
  margin: 10px 0 15px 0;
  letter-spacing: 1px;
  text-align: justify;
}
.gamesLink {
  display: flex;
  /* flex-direction: column; */
}
.gamesLink img {
  width: 24px;
}
.gamesLink a {
  padding: 6px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*Madbox style starts*/
/* Layout container */
    .cards-section{
      padding: 60px 0;
      overflow: hidden;
      margin: 40px 0;
    }
.cards-section .px-15 {
  padding: 20px 0;
}

    /* Animated backdrop blobs */
    .blob{
      position: absolute;
      border-radius: 50%;
      filter: blur(50px);
      opacity: 0.5;
      animation: floatBlob 14s ease-in-out infinite;
      z-index: 0;
    }
    .blob.one{ width: 280px; height: 280px; background: #a7c5ff; top: -60px; left: -60px; animation-delay: 0.4s; }
    .blob.two{ width: 260px; height: 260px; background: #d0e1ff; bottom: -80px; right: 10%; animation-delay: 1.2s; }
    .blob.three{ width: 200px; height: 200px; background: #b9d3ff; top: 30%; right: -60px; animation-delay: 2s; }

    @keyframes floatBlob {
      0%,100% { transform: translateY(0) translateX(0) scale(1); }
      50% { transform: translateY(20px) translateX(10px) scale(1.05); }
    }

    /* Card base */
    .a-card{
      position: relative;
      background: #ffffff;
      border: none;
      border-radius: 18px;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      overflow: hidden;
      transform: translateY(20px) scale(0.98);
      opacity: 0;
      animation: cardIn 0.9s cubic-bezier(.2,.8,.2,1) forwards;
      z-index: 1;
    }
    /* Staggered entrance */
    .a-card.delay-1{ animation-delay: .1s; }
    .a-card.delay-2{ animation-delay: .25s; }
    .a-card.delay-3{ animation-delay: .4s; }

    @keyframes cardIn {
      to { transform: translateY(0) scale(1); opacity: 1; }
    }

    /* Subtle gradient header stripe */
    .a-card::before{
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 70%;
      background: radial-gradient(1200px 200px at 20% 100%, rgba(13,110,253,0.08), transparent 60%);
      transform: rotate(-6deg);
      pointer-events: none;
    }

    /* Hover animation */
.a-card{
      
      box-shadow: 0 16px 40px rgba(253 209 13,0.40);
    }
    .a-card:hover{
      transform: translateY(-6px) scale(1.01);
      transition: transform .35s ease, box-shadow .35s ease;
      box-shadow: 0 16px 40px rgba(253 209 13,0.40);
    }

    /* Image / icon area */
    .card-hero{
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      /*background: linear-gradient(135deg, #e9f2ff 0%, #f6faff 100%);*/
    }

    .pulse-ring{
      position: absolute;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(13,110,253,0.08);
      animation: pulse 2.4s ease-out infinite;
    }
    @keyframes pulse{
      0% { transform: scale(0.8); opacity: 0.6; }
      70% { transform: scale(1.25); opacity: 0; }
      100% { transform: scale(1.25); opacity: 0; }
    }

    .hero-icon{
      font-size: 52px;
      color: var(--accent);
      position: relative;
      z-index: 1;
      animation: float 3.2s ease-in-out infinite;
    }
    @keyframes float{
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Card content */
    .a-card .card-body{
      padding: 20px 20px 16px;
    }
    .a-card .card-title{
    color: #0f172a;
    font-weight: 500;
    line-height: 22px;
    font-size: 20px;
    margin: 6px 0;
    letter-spacing: 2px;
    font-family: "Russo One", sans-serif;
    }

    .a-card .card-subtitle{
      color: #6c757d;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }
    .a-card .card-text{
      color: #495057;
      font-size: 0.96rem;
      line-height: 1.55;
      min-height: 72px;
    }

    /* Social buttons row */
    .social-row{
      display: flex;
      gap: 10px;
      padding: 12px 20px 20px;
      align-items: center;
    }
    .social-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border-radius: 10px;
      color: #fff;
      text-decoration: none;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }
    .social-row .img-fluid{
      width: 24px;
}
    .social-btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }
    .social-twitter{ background: #1DA1F2; box-shadow: 0 6px 14px rgba(29,161,242,0.25); }
    .social-linkedin{ background: #0A66C2; box-shadow: 0 6px 14px rgba(10,102,194,0.25); }

    /* Decorative animated underline on titles */
    .title-underline{
      position: relative;
      display: inline-block;
    }
    .title-underline::after{
      content: "";
      position: absolute;
      left: 0; bottom: -6px;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), #66a3ff);
      border-radius: 2px;
      transition: width .5s ease;
    }
    .a-card:hover .title-underline::after{ width: 100%; }

    /* Responsive tweaks */
    @media (max-width: 991.98px){
      .card-hero{ height: auto; }
    }
    @media (max-width: 575.98px){
      .social-row{ justify-content: flex-start; }
    }
/*Madbox style Ends*/

.blackText {
  color: #1f1503;
}
.form-floating input {
  border-radius: 4px;
  color: #000;
}
.height40 {
  height: 40px;
}
.textCaps {
  text-transform: uppercase;
}
.btn-primary:hover {
  color: #000;
  background-color: #ffdd51;
  border-color: #ffdd51;
}
.fw-medium {
  font-weight: 600 !important;
}
.homesectionText {
  background: #fff9ef;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homesectionText h3 {
  line-height: 46px;
  width: 60%;
  text-align: center;
  padding: 50px 0;
  font-family: "Russo One", sans-serif;
  text-shadow: 1px 3px 2px #fff;
  letter-spacing: 2px;
}

.homesectionText .text-primary {
  background: #bbb5ff;
  color: #000 !important;
}
.slider_carousel2 img {
  /* background: #ffdd51; */
  padding: 1vw;
}
.slider_carousel img {
  background: #d4d0ff;
  padding: 7vw;
} /*
.homesectionImg img { 
    padding: 20px;
}*/
.visiblityHidden {
  visibility: hidden !important;
}
.fontWrap12 p {
  font-family: "Open Sans";
  font-size: 13px;
  color: #475569;
  /* font-weight: 500; */
}
.robotolight {
  font-weight: 200;
  letter-spacing: 1px;
}
.roboto14 {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #475569 !important;
  line-height: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}
.text-white.roboto14 {
  color: #fff !important;
}
.mailLink a {
  letter-spacing: 1px;
  color: #14141f;

  overflow-wrap: anywhere;
}
.marXauto {
  margin: 20px auto 10px;
}
.borderRound {
  border-radius: 50px;
}
.borderSize {
  border: 1px solid #bbb;
  padding: 30px;
  border-radius: 10px;
}
.borderForm {
  border: 1px solid #bbb;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 #bbb;
}
.borderForm:hover {
  transition: 0.1s ease-in;
  border: 1px solid #fff;
}
.borderSize:hover {
  box-shadow: 0 0 5px 0 #bbb;
  transition: 0.1s ease-in;
  border: 1px solid #fff;
}
.banner-smalltext {
  background: #ffb800;
  text-transform: uppercase;
  position: relative;
  color: #000;
  font-size: 1vw !important;
  display: flex;
  padding: 0.5vw 2vw;
  font-family: "Roboto", sans-serif;
  justify-content: center;
  letter-spacing: 0.4vw;
  margin-bottom: 0.2vw !important;
}
.banner-longtext {
  position: relative;
  padding-top: 1vw;
  justify-content: center;
  display: flex;
  font-family: "Russo One", sans-serif;
  font-size: 2.5vw;
  text-shadow: 1px 3px 2px #fff;
  letter-spacing: 2px;
}
.banner-longtext,
.banner-smalltext {
  width: 25vw;
}
.display-center {
  display: flex;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
}
.displayCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.display-center .img-fluid {
  max-width: 50%;
  border-radius: 100px;
  padding: 20px;
}
.fw-semi-bold {
  font-weight: 700 !important;
}
.banner-height {
  padding: 5vw 3vw 13vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-height-about {
  padding: 150px;
}

.container-about {
  width: 1000px;
  margin: 0 auto;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}
.about-font {
  font-size: 16px;
  color: #000;
  font-family: "Open Sans";
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1px;
}
.center75 {
  width: 75%;
  margin: 0 auto;
}
.gameWrap85 {
  width: 85%;
  margin: 0 auto;
}
/* Spinner */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.parallax-container {
  height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
}
.parallax-image {
  position: relative;
  height: 100%;
  transform-origin: 0;
  transform-style: preserve-3d;
}
.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
}
.parallax-background {
  /*    background-image: url('background.jpg'); */
  background-color: #ffdd51;
  background-size: cover;
  background-position: center;
  transform: translateZ(-1px) scale(2);
}
.parallax-foreground {
  /* Add foreground content styles */
  text-align: center;
  color: #fff;
  padding-top: 100px;
}
.yellowBg {
  background-color: #ffdd51;
  display: flex;
  justify-content: center;
  align-items: center;
}
.policyWrap a,
.policyWrap a:hover {
  color: #0d6efd;
}
.policyWrap li {
  line-height: 28px;
  font-size: 15px;
  /*    font-family: "Roboto", sans-serif;*/
  margin-bottom: 6px;
}
.policyellowBg {
  background-color: #ffdd51;
}
.bg-yellow {
  background-color: #ffdd51;
}
.padT7pre {
  padding-top: 7%;
}
.bannerMargintop {
  margin-top: 3rem;
}
.policyIntro p {
  line-height: 28px;
  font-size: 15px;
  /*
  font-family: "Roboto", sans-serif;
  font-weight: 500;
*/
  margin-bottom: 6px;
}
.noList {
  margin-left: 30px;
}
.policyIntro i {
  font-weight: 600;
}
ul.disc {
  list-style-type: disc;
}
ul.square {
  list-style-type: square;
}
p.highText {
  font-weight: 600;
}
.textBold {
  font-weight: 600;
}
.mainHead {
  font-size: 15px !important;
  font-weight: 600 !important;
}
.subHead {
  font-size: 15px !important;
  font-weight: 500 !important;
}
/* Button */
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #000;
}
.text-black {
  color: #000;
}
.width75center {
  width: 75%;
  margin: 0 auto;
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}
/**Font Starts */
.russo-one-regular {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
}

/**Font ends */
/* Navbar */
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: #1a1a1a !important;
  transition: 0.5s;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 10px;
  color: #1a1a1a !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  background: #ffdd51;
}

.navbar-light .navbar-brand img {
  max-height: 50px;
  transition: 0.5s;
  padding: 5px;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px;
    margin-left: 0;
    margin-right: 0;
    color: #000 !important;
    border-radius: 10px;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    /* position: absolute;
        width: 100%;
        top: -3rem;
        left: 0;*/
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
    background-color: #fff;
  }

  .navbar-light {
    position: fixed;
    background: #ffffff;
    top: 0;
    width: 100%;
  }
  #carouselSliderIndicators {
    padding-top: 3rem;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/* Hero Header */
.hero-header {
  background: url(../images/hero-bg-banner.png),
    linear-gradient(0deg, rgba(255, 249, 239, 1) 0%, rgba(255, 221, 81, 1) 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 3rem;
}
.hero-header-about {
  background: url(../images/about-us.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70% 90%;
  margin-top: 3rem !important;
}
.gamesBanner {
  background: url(../images/gamesbanner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.gamesBanner.ozoGamebanner {
  background: url(../images/games/game-banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 300px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Section Title */
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/* Service */
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/* Destination */
.destination img {
  transition: 0.5s;
}

.destination a:hover img {
  transform: scale(1.1);
}

/* Package */
.package-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.package-item img {
  transition: 0.5s;
}

.package-item:hover img {
  transform: scale(1.1);
}
.fullspace {
  padding-right: 0;
  padding-left: 0;
}
.teamWrap.fullspace {
  background: #ffdd51;
  padding: 0 50px;
}
.aboutWrap {
  width: 75%;
  margin: 0 auto;
  text-align: justify;
}

/* Team */
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  margin: 20px;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
  background: #fff;
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  /* transform: scale(1.1); */
}

.team-item .btn {
  background: #ffffff;
  color: var(--primary);
  border-radius: 20px;
  border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.team-item h5 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
}
.team-item small,
.team-item span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  padding: 5px;
  color: #0f172a;
  /* font-weight: 100; */
  margin-bottom: 10px;
}
.team-item span {
  min-height: 100px;
  color: #1c1c1c;
}

/* Testimonial */
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (max-width: 768px) {
  .slidermobile {
    display: block !important;
  }
  .flexdir {
    flex-direction: column-reverse;
      }
      .flexdir  .largeTile no-cache { 
        margin-top:30px;
      }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1440px) {
  .homesectionText {
    padding: 20px;
  }
}
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) {
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

  .homesectionText {
    padding: 70px;
  }
  .teamWrap.fullspace {
    padding: 0;
  }
  .aboutWrap,
  .gameWrap75 {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  /*  .homesectionImg img { 
    padding: 50px;
}*/
  .cards-section {
    padding: 15px;
  }
  .homesectionText {
    padding: 10px;
  }
  .borderSize {
    padding: 10px;
    margin-left: 0;
    color: #000 !important;
    margin-right: 0;
    border-radius: 10px;
  }
  .hero-header-about {
    background-size: 90% 70%;
  }
  .teamWrap.fullspace {
    padding: 0;
  }
  .aboutWrap,
  .gameWrap75 {
    width: 100%;
  }
  .gamesTitle {
         font-size: 25px;
        /* padding-top: 20px; */
        text-align: center;
        line-height: 32px;
  }
  .gameWrap85 {
    width: 95%;
    margin: 0 auto;
}
.mobilegamesLinks {
    margin-bottom: 30px;
}
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }

  .homesectionText h3 {
    line-height: 40px;
    width: 60%;
    text-align: center;
  }
  /* .homesectionImg img { 
    padding: 100px;
}*/
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* Footer */
.footer .btn.btn-social {
  margin-right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #475569;
  font-weight: normal;
  border: 1px solid #000;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  background: #ffdd51;
}
.footer .btn-link a {
  color: #475569 !important;
}

.footer .btn.btn-link {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0px 6px 0 0;
  text-align: left;
  color: #475569;
  font-size: 13px;
  font-family: "Open Sans";
  transition: 0.3s;
  font-weight: normal;
}
.pad0X {
  padding: 0 !important;
}
.footer .btn-link a.borderX {
  border-right: 1px solid #bbb;
  /*    border-left: 1px solid #bbb;*/
}

.footer .btn.btn-link::before {
  position: relative;
  /* content: "\f105"; */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  /*    letter-spacing: 1px;*/
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a,
.footer .copyright p {
  color: var(--light);
  color: #475569;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}

.footer .footer-menu a {
  background: #475569;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
@media only screen and (min-width: 992px) {
  .gamesBanner.ozoGamebanner {
    height: 600px;
    margin-top: 60px;
  }
  .gamesBannerimg {
    max-width: 200%;
  }
}
.mart-30 {
  margin-top: 30px;
}
