/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Roboto", sans-serif;
    color: #282421;
  }
  
  a {
    color: #9a4dff;
  }
  
  a:hover {
    color:#9a4dff;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    color:#f949b4;
  }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    background:#3d0259;
    
  }
   
  #header.header-scrolled {
    background: #1d0030;
    
  }
  
  #header .logo {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    padding-left: 10px;
  }
  
  #header .logo a {
    color: #fff;
  }
  
  #header .logo img {
    max-height: 60px;
  }
  
  @media (max-width: 992px) {
    #header .logo {
      font-size: 28px;
    }
  } 
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 0 0 0 30px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #9a4dff;
  transition: 0.3s;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #f949B4;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #9a4dff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 18px;
  text-transform: none;
  color: #fff;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ff8d15;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #9a4dff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background:  rgba(225, 206, 248, 1);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #9a4dff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f949b4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 26, 26, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #f949b4;
} 

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e03a3c;
    bottom: 0;
    left: calc(50% - 25px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  .section-bg {
    padding: 120px 0;
    color: #fff;
  }
  
  .section-bg:before {
    content: "";
    background: #6318cb;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
  }
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 100vh;
    background: #3d0259;
    overflow: hidden;
    position: relative;
  }
  
  @media (max-height: 500px) {
    #intro {
      height: 150vh;
    }
  }
  
  #intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  #intro .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  #intro .carousel-item::before {
    content: '';    
  }
  
  #intro .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 15px;
    left: 50px;
    right: 50px;
  }
  
  #intro .container {
    text-align: left;
    margin-bottom: 25px;
  }
  
  #intro h2 {
    color: #f949b4;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    #intro h2 {
      font-size: 28px;
    }
  }
  
  #intro p {
    width: 80%;
    color: #9a4dff; 
    text-align: justify;
  }
  
  @media (min-width: 1024px) {
    #intro p {
      width: 60%;
    }
  }
  
  #intro .carousel-fade {
    overflow: hidden;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
  }
  
  #intro .carousel-fade .carousel-inner .active,
  #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
  #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item-next,
  #intro .carousel-fade .carousel-inner .carousel-item-prev,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
  }
  
  @media (min-width: 1024px) {
    #intro .carousel-control-prev, #intro .carousel-control-next {
      width: 5%;
    }
  }
  
  #intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    
    font-size: 32px;
    line-height: 1;
  }
  
  #intro .carousel-indicators li {
    cursor: pointer;
    
  }
  
  #intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    margin-bottom: 10px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #18d26e;
  }
  
  #intro .btn-get-started:hover {
    background: #fff;
    color: #18d26e;
  }
/*--------------------------------------------------------------
# Inner Hero Section
--------------------------------------------------------------*/
#innerhero {
    width: 100%;
    /*background: url("../img/hero-bg.jpg");*/
    position: relative;
    padding: 175px 0 75px 0;
  }
  
  #innerhero:before {
    content: "";
    background: #fff; 
  
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #innerhero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #f949b4;
  }
  
  #innerhero h1 span {
    color: #89c248;
    
  }
  
  #innerhero h2 {
    color:#9a4dff;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    text-align: justify;
  }
  
  #innerhero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #6318cb;
    background: #f949b4;
    
  }
  
  #innerhero .btn-get-started:hover {
    color: #f949b4;
    background: #6318cb;
    
  }
  
  #innerhero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (min-width: 1024px) {
    #innerhero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 991px) {
    #innerhero {
      padding-top: 80px;
    }
    #innerhero .animated {
      -webkit-animation: none;
      animation: none;
    }
    #innerhero .hero-img {
      text-align: center;
    }
    #innerhero .hero-img img {
      max-width: 100%;
    }
    #hero h1 {
      font-size: 28px;
      line-height: 32px;
      margin-bottom: 10px;
    }
    #innerhero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 575px) {
    #innerhero .hero-img img {
      width: 100%;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  
  
  @-webkit-keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
    100% {
      transform: translate(-90px, 0%);
    }
  }
  
  @keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
    100% {
      transform: translate(-90px, 0%);
    }
  }
  
  @-webkit-keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @-webkit-keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 40px 0;
  }
  
  .counts .counters span {
    font-size: 48px;
    display: block;
    color: #c20084;
  }
  
  .counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #9a4dff;
  }

 
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .container {
    position: relative;
    z-index: 10;
  }
  
  .about .content {
    padding: 30px 30px 30px 0;
  }
  
  .about .content h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .about .content span {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 30px;
    font-style: italic;
  }
  .about .content p {
    margin-bottom: 30px;
    font-size:20px;
    font-weight:400;
  }
  
  .about .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: #f949b4;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #f949b4;
  }
  
  .about .content .about-btn i {
    font-size: 16px;
    padding-left: 5px;
  }
  
  .about .content .about-btn:hover {
    background: #f949b4;
    color:#fff;
    text-decoration: none;
  }
  
  .about .icon-boxes .icon-box {
    margin-top: 30px;
  }
  
  .about .icon-boxes .icon-box i {
    font-size: 40px;
    color: #f949b4;
    margin-bottom: 10px;
  }
  
  .about .icon-boxes .icon-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #f949b4;
  }
  
  .about .icon-boxes .icon-box p {
    font-size: 16px;
    color: #fff;
  }
  
  @media (max-width: 1200px) {
    .about .content {
      padding-right: 0;
    }
  }
  
  @media (max-width: 768px) {
    .about {
      text-align: center;
    }
  }
/*--------------------------------------------------------------
# Program
--------------------------------------------------------------*/
.about-game .what {
    padding: 20px;
  }
  .about-game .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
  }
  
  .about-game .icon-box::before {
    content: '';
    position: absolute;
    background: #e1f0fa;
    right: -60px;
    top: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .about-game .icon-box:hover::before {
    background: #1a2381;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  
  .about-game .icon {
    margin: 0 auto 20px auto;
    padding-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #1a2381;
    transition: all 0.3s ease-in-out;
  }
  
  .about-game .icon i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
  }
  
  .about-game .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .about-game .title a {
    color: #1a2381;
  }
  
  .about-game .description {
    
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
  }
  
  .about-game .icon-box:hover .title a, .about-game .icon-box:hover .description {
    color: #fff;
  }
  
  .about-game .icon-box:hover .icon {
    background: #fff;
  }
  
  .about-game .icon-box:hover .icon i {
    color: #1a2381;
  }
  .about-game .play-btn {
    
    width: 94px;
    height: 94px;
    /* background: radial-gradient(#6318cb 50%, rgba(154, 77, 255, 1) 52%); */
    background: radial-gradient(#c20084 50%, rgba(249, 73, 180, 1) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  
  .about-game .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .about-game .play-btn::before {
    
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #c20084;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  
  .about-game .play-btn:hover::after {
    border-left: 15px solid #6318cb;
    transform: scale(20);
  }
  
  .about-game .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }
  
  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
/*--------------------------------------------------------------
# why
--------------------------------------------------------------*/
.why h3 {
    font-weight: 500;
    font-size: 32px;
    color: #f949b4;
  }
  .why h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    
  }
  .why .icon-box {
    text-align: center;
    padding:15px 15px 15px 15px;
    margin-bottom: 20px;
    transition: all ease-in-out 0.3s;
    background: #f949b4;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
  }
  .why .icon-box .icon {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
    background: #f1f1f1;
    border-radius: 50px;
  }
  .why .icon-box .icon i {
    font-size: 30px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
  }
  .why .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 18px;
    color: #6318cb;
  }
  .why .icon-box h4 a {
    color: #282421;
    transition: ease-in-out 0.3s;
    
  }
  .why .icon-box p {
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    color: 282421;
    margin-bottom: 0;
    text-align: justify;
  }
  .why .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  }
  .why .iconbox-why i {
    color: #f949b4;
  }
  .why .iconbox-why:hover .icon {
    background: #6318cb;
  }
  .why .iconbox-why:hover .icon i {
    color: #fff;
  }
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details{
    margin: 0 0 0 0;
  }
  .details .div{
    margin-bottom: 100px;
  }
  .details .content + .content {
    margin-top: 150px;
  }
  .details .content img {
    width: 500px;
  }
  .details .content .dstyle1 h1 {
    font-weight: 600;
    font-size: 32px;
    color: #f949b4;
  }
  .details .content .dstyle2 h1 {
    font-weight: 600;
    font-size: 32px;
    color: #9a4dff;
  }
  
  .details .content ul {
    list-style: none;
    padding: 0;
  }
  
  .details .content ul li {
    padding-bottom: 10px;
  }
  
  .details .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #1acc8d;
  }
  
  .details .content p:last-child {
    margin-bottom: 0;
  }
  .details .dstyle1 .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #f949b4;
    
  }

  .details .dstyle1 .google-play,.details .dstyle2 .google-play {
     width: 35%;
    
  }
  
  .details .dstyle1 .btn-get-started:hover {
    color: #fff;
    background: #c20084;
    
  }
  .details .dstyle2 .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #9a4dff;
    
  }
  
  .details .dstyle2 .btn-get-started:hover {
    color: #fff;
    background: #6318cb;
    
  }

/* Games Section
--------------------------------*/
#games {
    display: inline-block;
    height: 100%;
    width: 100%;
  }
  
  #games .games-block {
    background: #fff none repeat scroll 0 0;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out 0s;
  }
  
  #games .games-block:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out 0s;
  }
  
  
  
  #games .games-block h4 {
    margin-top:25px;
    margin-bottom: 20px;
  }
  
  #games .games-block p {
    margin-bottom: 0;
    text-align: justify;
  }
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
  }
  
  .faq .faq-list ul {
    padding: 0;
    list-style: none;
  }
  
  .faq .faq-list li + li {
    margin-top: 15px;
  }
  
  .faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
  }
  
  .faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    color: #f949b4;
  }
  
  .faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #c20084;
  }
  
  .faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #9a4dff;
  }
  
  
  .faq .faq-list .icon-show {
    display: none;
  }
  
  .faq .faq-list a.collapsed {
    color: #c20084;
    transition: 0.3s;
  }
  
  .faq .faq-list a.collapsed:hover {
    color: #c20084;
  }
  
  .faq .faq-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .faq .faq-list a.collapsed .icon-close {
    display: none;
  }
  
  @media (max-width: 1200px) {
    .faq .faq-list {
      padding: 0;
    }
  }

  .faq .google-play{
    
    width: 20%;
  }


/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/
.privacy .body {
    padding: 20px;
  }
  .privacy .body h1{
    margin-bottom: 20px;
    text-align: justify;
  }
  .privacy .body p{
    margin-bottom: 20px;
    text-align: justify;
  }
  
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #6318cb;
  }
  
  #footer .footer-newsletter {
    padding: 50px 0;
    background: #ffffff;
    text-align: center;
    font-size: 15px;
    color: #2f82ff;
  }
  
  #footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #f949b4;
  }
  
  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06); */
    box-shadow: 0px 2px 15px #9a4dff;
    text-align: left;
  }
  
  #footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }
  
  #footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #f949b4;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #footer .footer-newsletter form input[type="submit"]:hover {
    background: #c20084;
  }
  
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #9a4dff;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  
  #footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #000053;
  }
  
  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #282421;
  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000053;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f949b4;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #282421;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #c20084;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #6318cb;
    color: #9a4dff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #c20084;
    color: #f949b4;
    text-decoration: none;
  }
  
  #footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
  }
  
  #footer .copyright {
    float: left;
  }
  
  #footer .credits {
    float: right;
    font-size: 13px;
  }
  
  #footer .credits a {
    transition: 0.3s;
  }
  
  @media (max-width: 768px) {
    #footer .footer-bottom {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    #footer .copyright, #footer .credits {
      text-align: center;
      float: none;
    }
    #footer .credits {
      padding-top: 4px;
    }
  }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #f949b4;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #c20084;
  color: #fff;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h3 {
  font-weight: 500;
  font-size: 30px;
  color: #f949b4;
  padding: 30px 0 0 0;
  margin-bottom: 30px;
}
.contact h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 50px 0;
  color: #282421;
}
.contact .btn-contat-type {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  border: 2px solid #f949b4;
  transition: 0.5s;
  color: #f949b4;
  margin-right: 15px;
  
}

.contact .btn-contat-type:hover {
  color: #fff;
  background: #f949b4;
  
}
/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -6px;
}

.map iframe {
  width: 100%;
  height: 380px;
}
/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.who-we-are h3 {
  font-weight: 500;
  font-size: 30px;
  color: #f949b4;
  padding: 30px 0 0 0;
  margin-bottom: 30px;
}
.who-we-are h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 50px 0;
  color: #282421;
}

.who-we-are .icon-box {
  text-align: center;
  padding:15px 15px 15px 15px;
  margin-bottom: 20px;
  transition: all ease-in-out 0.3s;
  background: #ffffff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}
.who-we-are .icon-box .icon {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background: #6318cb;
  border-radius: 50px;
}
.who-we-are .icon-box .icon i {
  font-size: 30px;
  transition: 0.5s;
  line-height: 1;
  position: relative;
}
.who-we-are .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 18px;
}
.who-we-are .icon-box h4 a {
  color: #f949b4;
  transition:ease-in-out 0.3s;
}
.who-we-are .icon-box p {
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: 282421;
  margin-bottom: 0;
}
.who-we-are .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.who-we-are .iconbox-contact i {
  color: #89c248;
}
.who-we-are .iconbox-contact:hover .icon {
  background: #f949b4;
}
.who-we-are .iconbox-contact:hover .icon i {
  color: #6318cb;
}  
