@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/**************************************
    Default Styles
***************************************/
:root {
  --font-family: "Poppins", serif;
  --font-size: 16px;
  --theme-color: #4e14ae;
}

/*=========================*/
/*  Responsive breakpoints
/*=========================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 300;
  background: #edf0f6;
  padding-top: 75px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
  line-height: 1.4;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  font-weight: 800;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#root,
#__next {
  isolation: isolate;
}

section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.bg_layer_top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: var(--theme-color);
  z-index: -1;
}

.section_content {
  max-width: calc(100% - 200px);
  margin: 100px auto 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .section_content {
    margin: 30px auto 0;
    max-width: 100%;
  }
}
.section_content .title {
  color: #5216b5;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 55px;
}
@media (max-width: 1024px) {
  .section_content .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section_content .title {
    font-size: 30px;
  }
}
.section_content p {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .section_content p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section_content p {
    font-size: 20px;
  }
}

.appIcon {
  background: #fff;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  margin-left: 20px;
  -webkit-box-shadow: 0px 0px 0px 2px #fff;
          box-shadow: 0px 0px 0px 2px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .appIcon {
    width: 47px;
  }
}
@media (max-width: 768px) {
  .appIcon {
    width: 50px;
  }
}
.appIcon img {
  width: 30px;
}
@media (max-width: 768px) {
  .appIcon img {
    width: 22px;
  }
}
.appIcon:hover {
  background: rgba(255, 255, 255, 0.8392156863);
  -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.8392156863);
          box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.8392156863);
}

.ct_button_light,
.ct_button {
  background: #101010;
  border: 0;
  padding: 10px 30px;
  font-weight: 400;
  font-size: 23px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 21px -12px #000;
          box-shadow: 0px 1px 21px -12px #000;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  position: relative;
}
.ct_button_light:focus, .ct_button_light:focus-within, .ct_button_light:focus-visible, .ct_button_light:active, .ct_button_light:hover,
.ct_button:focus,
.ct_button:focus-within,
.ct_button:focus-visible,
.ct_button:active,
.ct_button:hover {
  background-color: rgba(16, 16, 16, 0.7019607843) !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .ct_button_light,
  .ct_button {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .ct_button_light,
  .ct_button {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .ct_button_light,
  .ct_button {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .ct_button_light,
  .ct_button {
    padding: 15px 30px;
    font-size: 18px;
    width: 100%;
  }
}

.gradientBtn {
  position: relative;
  display: inline-block;
}
.gradientBtn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 5px;
  background: rgb(255, 255, 255);
  background: linear-gradient(151deg, rgb(255, 255, 255) 7%, rgb(104, 35, 207) 55%, rgb(125, 198, 201) 92%);
}

.ct_button_light {
  color: var(--theme-color);
  background: #fff;
  font-weight: 700;
}
.ct_button_light:focus-visible, .ct_button_light:hover {
  background: var(--theme-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.section_title {
  text-align: center;
  margin-bottom: 50px;
}
.section_title .title {
  font-size: 55px;
  font-weight: 700;
  color: var(--theme-color);
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section_title .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .section_title .title {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .section_title .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section_title .title {
    font-size: 30px;
  }
}
.section_title .subtitle {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.4;
  max-width: 100%;
  margin: 15px auto 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section_title .subtitle {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .section_title .subtitle {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .section_title .subtitle {
    font-size: 18px;
  }
}

.navbar {
  background-color: #1c1c1c;
  -webkit-box-shadow: 0 3px 20px -15px #24094e;
          box-shadow: 0 3px 20px -15px #24094e;
  position: relative;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}
.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .navbar .nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 1024px) {
  .navbar .nav-link {
    font-size: 14px;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
@media (max-width: 768px) {
  .navbar .nav-link {
    font-size: 18px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.navbar .ct_button {
  font-size: 16px;
}
.navbar .navbar-toggler {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar .navbar-toggler i {
  font-size: 28px;
  color: #e7e7e7;
}
.navbar .navbar-brand img {
  width: 90%;
}
.navbar .btn {
  font-size: 16px !important;
  font-weight: 400 !important;
}

footer {
  padding: 30px 0;
  background-color: #420d98;
}
footer .copyright-ct li {
  padding: 0 10px;
}
footer .copyright-ct li a {
  font-weight: 400;
  color: #fff;
}
footer .copyright-text {
  margin-top: 10px;
  color: #fff;
}
footer .copyright-text span {
  color: #fff;
  font-weight: 500;
}

.page_content {
  background-color: #fff;
}
.page_content .section_title {
  margin-bottom: 80px;
}
.page_content .section_title .title {
  color: var(--theme-color);
  text-transform: capitalize;
}
.page_content .content .title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
}
.page_content a {
  color: var(--theme-color);
}
.page_content p {
  margin-bottom: 5px;
}

.package_switcher {
  color: #18254e;
  margin-top: 20px;
  margin-bottom: 0;
}
.package_switcher span {
  color: var(--theme-color);
  font-weight: 600;
}
@media (min-width: 768px) {
  .package_switcher {
    margin-top: 30px;
    margin-bottom: 25px;
  }
}

.switcher {
  margin: 0 15px;
}
.switcher .switch {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 25px;
  border-radius: 20px;
  background: #dfd9ea;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer;
}
.switcher .switch::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: linear-gradient(95deg, var(--theme-color) 15%, rgb(202, 168, 232) 45%, rgb(115, 70, 153) 75%, var(--theme-color) 100%) 95%/200% 100%;
  border-radius: 50%;
  -webkit-transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0;
}
.switcher .switch:active::before {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}
.switcher .switch::after {
  border: none !important;
}
.switcher input:checked + .switch {
  background: linear-gradient(95deg, var(--theme-color) 15%, rgb(202, 168, 232) 45%, rgb(115, 70, 153) 75%, var(--theme-color) 100%) 95%/200% 100%;
}
.switcher input:checked + .switch::before {
  left: 27px;
  background: #fff;
}
.switcher input:checked + .switch:active::before {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

.videoModal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.videoModal img {
  max-width: 80px;
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .videoModal img {
    max-height: 96px;
    max-width: 96px;
  }
}
@media (min-width: 768px) {
  .videoModal img {
    max-width: 80px;
  }
}
@media (min-width: 1200px) {
  .videoModal img {
    max-width: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .playbtn img,
  .playbtn .circle {
    height: 80px !important;
    width: 80px !important;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .playbtn img {
    width: 75px !important;
  }
}

.circle {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  position: absolute;
  z-index: -1;
}
@media (min-width: 768px) {
  .circle {
    height: 120px;
    width: 120px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .circle {
    height: 80px;
    width: 80px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .circle {
    height: 120px;
    width: 120px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .circle {
    height: 75px;
    width: 75px;
  }
}

.circle:before,
.circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #864ae1;
  border-radius: 50%;
}

.circle:before {
  -webkit-animation: ripple 5s linear infinite;
          animation: ripple 5s linear infinite;
}

.circle:after {
  -webkit-animation: ripple 5s linear 1s infinite;
          animation: ripple 5s linear 1s infinite;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .left_img_area img,
  .larget_image img {
    width: 80%;
    margin: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .left_img_area img,
  .larget_image img {
    width: 75%;
    margin: auto;
  }
}
.left_img_area .videoModal img,
.larget_image .videoModal img {
  margin: 0;
}

.audio_play_btn {
  margin: 0 15px;
  width: 35px;
  height: 35px;
  display: inline-block;
}
.audio_play_btn .circle {
  width: 35px;
  height: 35px;
  position: relative;
}
.audio_play_btn i {
  font-size: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--theme-color);
}
.audio_play_btn i.fa-volume-up {
  margin-left: 1px;
}
.audio_play_btn i.fa-stop {
  color: #dc3545 !important;
}

#features .audio_play_btn {
  display: inline-block;
  margin: 5px 0 0;
}
#features .audio_play_btn i {
  color: #fff;
}
#features .audio_play_btn .circle:before, #features .audio_play_btn .circle:after {
  border-color: rgba(255, 255, 255, 0.2509803922);
}

#faq_area .audio_play_btn,
#our_service .audio_play_btn,
#who_should .audio_play_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 0 0;
  width: 45px;
  height: 45px;
}
#faq_area .audio_play_btn i,
#our_service .audio_play_btn i,
#who_should .audio_play_btn i {
  font-size: 20px;
  color: #ffffff;
}
#faq_area .audio_play_btn .circle,
#our_service .audio_play_btn .circle,
#who_should .audio_play_btn .circle {
  width: 45px;
  height: 45px;
}
#faq_area .audio_play_btn .circle:before, #faq_area .audio_play_btn .circle:after,
#our_service .audio_play_btn .circle:before,
#our_service .audio_play_btn .circle:after,
#who_should .audio_play_btn .circle:before,
#who_should .audio_play_btn .circle:after {
  border-color: rgba(255, 255, 255, 0.2509803922);
}

#faq_area .accordion-button .audio_play_btn {
  margin: 0 15px 0 0;
  width: 35px;
  height: 35px;
}
#faq_area .accordion-button .audio_play_btn i {
  font-size: 16px;
}
#faq_area .accordion-button .audio_play_btn .circle {
  width: 35px;
  height: 35px;
}

#winning_partnership .content {
  margin-bottom: 40px;
}
#winning_partnership .content p {
  margin-bottom: 15px !important;
}
#winning_partnership .audio_play_btn {
  margin: 0 0 0 10px;
}
@media (min-width: 992px) {
  #winning_partnership .audio_play_btn {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
#winning_partnership .audio_play_btn .circle {
  width: 38px;
  height: 38px;
}
#winning_partnership .audio_play_btn .circle i {
  font-size: 22px;
}

#meets_bakery .audio_play_btn {
  margin: 0 0 0 10px;
}
@media (min-width: 992px) {
  #meets_bakery .audio_play_btn {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@media (max-width: 375.98px) {
  #meets_bakery .audio_play_btn {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
#meets_bakery .audio_play_btn i {
  font-size: 22px;
  color: #fff;
}
@media (max-width: 375.98px) {
  #meets_bakery .audio_play_btn i {
    font-size: 16px;
  }
}
#meets_bakery .audio_play_btn .circle {
  width: 45px;
  height: 45px;
}
@media (max-width: 375.98px) {
  #meets_bakery .audio_play_btn .circle {
    width: 28px;
    height: 28px;
  }
}
#meets_bakery .audio_play_btn .circle:before, #meets_bakery .audio_play_btn .circle:after {
  border-color: #fff;
}

.globalPage .titleArea {
  color: #5216b5;
  padding: 80px 0 50px;
}
.globalPage .tnc_content {
  margin: 0 0 50px;
}
.globalPage .tnc_content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.globalPage .tnc_content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}
.globalPage .tnc_content h6 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
}
.globalPage .tnc_content ul {
  padding-left: 22px;
  margin: 15px 0;
}
.globalPage .tnc_content ul li p {
  margin: 0 0 5px;
}
.globalPage .tnc_content .bulate_style {
  list-style: circle;
}
.globalPage .tnc_content .content {
  padding-left: 20px;
}

:root {
  --font-family: "Poppins", serif;
  --font-size: 16px;
  --theme-color: #682ac5;
}

#header_section {
  background: var(--theme-color);
  position: relative;
  padding: 0px;
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 575.98px) {
  #header_section {
    height: 495px;
  }
}
@media (min-width: 768px) {
  #header_section {
    height: 500px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  #header_section {
    height: calc(100vh - 75px);
  }
}
@media (min-width: 992px) {
  #header_section {
    height: calc(100vh - 75px);
  }
}
#header_section .ct_button_light, #header_section .ct_button {
  width: auto;
}
@media (max-width: 1024px) {
  #header_section .ct_button_light, #header_section .ct_button {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  #header_section .ct_button_light, #header_section .ct_button {
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  #header_section .block {
    -webkit-transform: translateY(-38%);
            transform: translateY(-38%);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #header_section .block {
    -webkit-transform: translateY(-27%);
            transform: translateY(-27%);
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #header_section .block {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@media (max-width: 1024px) {
  #header_section .block {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@media (max-width: 768px) {
  #header_section .block {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 575.98px) {
  #header_section .block {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
#header_section .content {
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #header_section .content {
    margin-bottom: 30px;
  }
}
#header_section .content .title {
  margin: 15px 0 25px;
  font-size: 70px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #header_section .content .title {
    font-size: 60px;
    line-height: 1.2;
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #header_section .content .title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (max-width: 1024px) {
  #header_section .content .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  #header_section .content .title {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  #header_section .content .title {
    margin: 15px 0 15px;
  }
}
#header_section .content .subtitle {
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #header_section .content .subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #header_section .content .subtitle {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (max-width: 1024px) {
  #header_section .content .subtitle {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  #header_section .content .subtitle {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  #header_section .content .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #header_section .content img {
    max-width: 50px;
  }
}
#header_section .vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
#header_section .vimeo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgb(104, 42, 197);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(104, 42, 197, 0.6)), to(rgb(104, 42, 197)));
  background: linear-gradient(180deg, rgba(104, 42, 197, 0.6) 0%, rgb(104, 42, 197) 100%);
}
#header_section .vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#about .bg_layer_top {
  height: 10%;
}
@media (max-width: 1024px) {
  #about .bg_layer_top {
    height: 20%;
    top: -1px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1199px) {
  #about .bg_layer_top {
    height: 5%;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  #about .bg_layer_top {
    height: 5%;
  }
}
#about .videoModal {
  left: auto;
  right: 150px;
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #about .videoModal {
    right: 242px;
  }
}
#about .larget_image {
  margin-top: -250px;
  z-index: 10;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #about .larget_image {
    margin-top: -110px;
  }
}
@media (max-width: 768px) {
  #about .larget_image {
    margin-top: -130px;
  }
}
#about .playbtn {
  position: absolute;
  left: 50%;
  top: -38px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media (max-width: 1199.98px) {
  #about .playbtn {
    top: -25px;
  }
}
@media (max-width: 768px) {
  #about .playbtn {
    top: -30px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #about .playbtn {
    top: -20px;
  }
}
#about .playbtn img {
  width: 120px;
}
@media (max-width: 1199.98px) {
  #about .playbtn img {
    width: 80px;
  }
}
@media (max-width: 768px) {
  #about .playbtn .circle {
    width: 80px;
    height: 80px;
  }
}
#about .playbtn .circle:before, #about .playbtn .circle:after {
  border: 1px solid #864ae1;
}

#what_new .bg_layer_top {
  height: 70%;
  top: auto;
  bottom: 0;
}
@media (max-width: 1024px) {
  #what_new .bg_layer_top {
    bottom: -1px;
  }
}
@media (max-width: 575.98px) {
  #what_new .bg_layer_top {
    height: 90%;
  }
}
#what_new .section_content .title,
#what_new .section_content p,
#what_new .section_content i {
  color: #e9e9e9;
}
@media (max-width: 768px) {
  #what_new .section_content i {
    font-size: 24px;
    margin-right: 20px !important;
  }
}
#what_new .section_content .check_list {
  margin-top: 50px;
}
#what_new .section_content .check_list li {
  margin: 10px 0;
}

#scientific_backing {
  background-color: var(--theme-color);
}
#scientific_backing .section_content {
  padding: 0 0px 0 30px;
  max-width: 100%;
}
@media (max-width: 768px) {
  #scientific_backing .section_content {
    padding: 0;
  }
}
#scientific_backing .section_content .title, #scientific_backing .section_content p, #scientific_backing .section_content i {
  color: #e9e9e9;
}
#scientific_backing .section_content .title {
  margin-bottom: 30px;
}
#scientific_backing .section_content a {
  margin: 30px 0;
}
#scientific_backing .section_content .check_list {
  margin-top: 25px;
}
#scientific_backing .section_content .check_list li {
  margin: 0 0 20px;
}
#scientific_backing .section_content .check_list li i {
  font-size: 24px;
  margin-right: 20px !important;
}
#scientific_backing .section_content .check_list li p {
  font-size: 20px;
}
@media (max-width: 575.98px) {
  #scientific_backing .gradientBtn {
    width: 100%;
  }
}

.layer_section .top_img {
  position: absolute;
  right: -50px;
  top: -150px;
}
@media (max-width: 768px) {
  .layer_section .top_img {
    right: -17px;
    top: -90px;
  }
}
.layer_section .top_img img {
  max-width: 250px;
}
@media (max-width: 1024px) {
  .layer_section .top_img img {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .layer_section .top_img img {
    max-width: 150px;
  }
}
@media (max-width: 1024px) {
  .layer_section .bg_layer_top {
    top: -1px;
  }
}
.layer_section .text_content .title {
  font-size: 55px;
  font-weight: 600 !important;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .layer_section .text_content .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .layer_section .text_content .title {
    font-size: 35px;
  }
}
@media (max-width: 575.98px) {
  .layer_section .text_content .title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 75px;
  }
}
.layer_section .text_content .sub_title {
  margin: 60px 0 0;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
.layer_section .text_content .check_list {
  margin-top: 0;
  padding: 15px 0 !important;
}
.layer_section .text_content .check_list li {
  margin: 10px 0;
}

#faq_area {
  background: var(--theme-color);
}
#faq_area .section_title {
  color: #fff;
}
#faq_area .section_title .title {
  color: #FFF;
}
@media (max-width: 575.98px) {
  #faq_area .section_title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  #faq_area .section_title .title {
    font-size: 24px;
    width: 290px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #faq_area .section_title .subtitle {
    font-size: 20px;
  }
}
#faq_area .accordion-button {
  color: #FFF;
  background-image: linear-gradient(45deg, rgba(124, 196, 201, 0.1), rgba(66, 13, 152, 0.1), rgba(124, 194, 200, 0.15), rgba(124, 196, 200, 0.2));
}
#faq_area .accordion-item {
  background: rgba(28, 30, 42, 0.431372549);
}
#faq_area .accordion-body {
  color: #FFF;
}
#faq_area .accordion-body ul li {
  color: #FFF;
  list-style: auto;
  margin-left: 15px;
}

.faq_section ul,
.faq_section ol {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.faq_section ul li,
.faq_section ol li {
  margin: 0 0 15px;
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
}
.faq_section .question {
  font-weight: 600;
  margin-bottom: 5px;
}
.faq_section .theme-shape:before {
  left: -155px;
  top: -50px;
  opacity: 0.2;
}
.faq_section .theme-shape:after {
  right: -150px;
  top: 0;
  opacity: 0.4;
}
.faq_section .accordion {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .faq_section .accordion {
    margin-top: 20px;
  }
}
.faq_section .accordion .accordion-item {
  margin-bottom: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .faq_section .accordion .accordion-item {
    margin-bottom: 20px;
  }
}
.faq_section .accordion .accordion-header {
  -webkit-box-shadow: 0px 1px 3px #060606;
          box-shadow: 0px 1px 3px #060606;
}
.faq_section .accordion .accordion-header button {
  background-image: linear-gradient(45deg, rgba(173, 46, 255, 0.54), rgba(54, 198, 240, 0.1019607843), rgba(234, 95, 255, 0.34), rgba(228, 77, 255, 0.17));
}
.faq_section .accordion .accordion-button {
  background-color: transparent;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  display: block;
  text-align: left;
  font-weight: 600;
  padding: 20px;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .faq_section .accordion .accordion-button {
    font-size: 18px;
  }
}
.faq_section .accordion .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.faq_section .accordion .accordion-item {
  padding: 0;
  background: #1c1e2a;
  border-radius: 10px;
}
.faq_section .accordion .accordion-body {
  color: #cecdcd;
  padding: 20px;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  .faq_section .accordion .accordion-body {
    font-size: 18px;
  }
}
.faq_section .accordion-button::after,
.faq_section .accordion-button:not(.collapsed)::after {
  -webkit-filter: invert(1) brightness(2);
          filter: invert(1) brightness(2);
}

#pricing {
  padding: 120px 0;
}
@media (max-width: 768px) {
  #pricing {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  #pricing .title {
    font-size: 40px;
  }
}
#pricing .section_title {
  margin-bottom: 15px;
}
#pricing .section_title h6 {
  color: var(--theme-color);
  font-weight: 700;
}
#pricing .subtitle {
  font-size: 28px;
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #pricing .subtitle {
    font-size: 20px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  #pricing .subtitle {
    font-size: 20px;
  }
}
#pricing .price_table {
  background-color: var(--theme-color);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
#pricing .price_table .listing-badges {
  position: absolute;
  top: 10px;
  right: 10px;
}
#pricing .price_table .featured {
  float: left;
  -webkit-transform: rotate(-45deg);
  transform: rotate(45deg);
  right: -57px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 13px;
  margin: 0;
  padding: 7px 10px;
  font-weight: 500;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(23%, #5239af), color-stop(75%, #ac4dbe));
  background: rgb(139, 90, 181);
}
#pricing .price_table .price_head {
  text-align: center;
  padding: 18px 0;
}
#pricing .price_table .price_head h4 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #pricing .price_table .price_head h4 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #pricing .price_table .price_head h4 {
    font-size: 30px;
  }
}
#pricing .price_table .price_head h5 {
  color: #fff;
  font-size: 26px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #pricing .price_table .price_head h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  #pricing .price_table .price_head h5 {
    font-size: 20px;
  }
}
#pricing .price_table ul {
  margin: 0;
  padding: 0;
}
#pricing .price_table ul li {
  list-style: none;
  padding: 15px 35px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border-bottom: 1px dashed #7527f5;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #pricing .price_table ul li {
    padding: 15px 13px;
  }
}
#pricing .price_table ul li i {
  margin-top: 3px;
  margin-right: 10px;
  font-size: 18px;
}
#pricing .price_table ul li .close {
  color: #f17676;
}
#pricing .price_table ul li .check {
  color: #fff;
}
#pricing .price_table.active {
  background: var(--theme-color);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(79, 19, 175)), to(rgb(139, 90, 181)));
  background: linear-gradient(180deg, rgb(79, 19, 175) 0%, rgb(139, 90, 181) 100%);
}
#pricing .price_table.active .price_head h4 {
  color: #fff;
}
#pricing .price_table.active .price_head h5 {
  color: #fff;
}
#pricing .price_table.active ul li {
  color: #fff;
}
#pricing .ct_button {
  font-size: 18px;
  font-weight: 600;
}

.common_section {
  background: var(--theme-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#7dc6c9), to(#4e14ae));
  background: linear-gradient(180deg, #7dc6c9 0%, #4e14ae 100%);
}

#contactForm .form-control {
  margin-bottom: 20px;
}
#contactForm textarea,
#contactForm input {
  color: var(--bs-body-color);
  border: 1px solid rgba(255, 255, 255, 0.21);
  padding: 15px;
}
#contactForm textarea:focus,
#contactForm input:focus {
  border-color: var(--theme-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}
#contactForm input {
  height: 55px;
}
@media (min-width: 768px) {
  #contactForm input {
    height: 60px;
  }
}
#contactForm textarea {
  min-height: 125px;
}
@media (min-width: 768px) {
  #contactForm textarea {
    min-height: 193px;
  }
}

#contact_us .subtitle {
  font-size: 20px;
}

.layer_section .main_context {
  padding: 60px;
  position: relative;
  background: #5015b1;
  border-radius: 55px;
}
@media (max-width: 768px) {
  .layer_section .main_context {
    padding: 30px;
    border-radius: 30px;
  }
}
.layer_section .content_area .title,
.layer_section .content_area p {
  color: #fff;
}
.layer_section .links {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .layer_section .links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.layer_section .links .download_btn {
  width: 100%;
  text-align: center;
  font-size: 18px;
  margin: 10px 0;
  background: #dbd2e8;
  color: #751ebb;
}
.layer_section .links .download_btn:hover {
  color: #7235a3;
}
.layer_section .links .active {
  background-color: #751ebb;
  background: -webkit-gradient(linear, left top, right top, color-stop(23%, #5239af), color-stop(75%, #ac4dbe));
  background: linear-gradient(to right, #5239af 23%, #ac4dbe 75%);
  color: #fff;
}
.layer_section .top_content {
  margin-bottom: 70px;
  position: relative;
}
.layer_section .top_content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 43%;
  height: 100%;
  background: linear-gradient(20deg, rgba(129, 29, 213, 0.5) 0%, rgba(231, 170, 82, 0.5) 100%);
  border-radius: 45px;
  -webkit-box-shadow: 5px 3px 6px 0px rgba(90, 36, 142, 0.66);
          box-shadow: 5px 3px 6px 0px rgba(90, 36, 142, 0.66);
}
@media (max-width: 1024px) {
  .layer_section .top_content::before {
    display: none;
  }
}
.layer_section .image_area {
  margin-left: auto;
  text-align: right;
}
.layer_section .image_area img {
  max-width: 650px;
  width: 100%;
  -webkit-transform: translateX(38px);
          transform: translateX(38px);
}
@media (max-width: 768px) {
  .layer_section .image_area img {
    -webkit-transform: translate(0px, 25px);
            transform: translate(0px, 25px);
  }
}
.layer_section .text_content .title,
.layer_section .text_content i,
.layer_section .text_content p {
  color: #e9e9e9;
}
.layer_section .text_content .check_list {
  padding: 30px 0;
}
.layer_section .text_content .title {
  color: #fff;
}
.layer_section .text_content p {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

#racing_gym_promo .bg_layer_top {
  top: auto;
  bottom: 0;
  height: 70%;
}
@media (max-width: 768px) {
  #racing_gym_promo .bg_layer_top {
    bottom: -1px;
  }
}

@media (min-width: 992px) {
  #playlist_section {
    padding: 100px 0 100px;
  }
}
@media (min-width: 1200px) {
  #playlist_section {
    padding: 100px 0 150px;
  }
}
#playlist_section .section_content p {
  color: var(--theme-color);
  font-weight: 500;
}
#playlist_section .bg_layer_top {
  bottom: 0;
  top: auto;
}
@media (min-width: 374px) {
  #playlist_section .bg_layer_top {
    height: 55%;
  }
}
@media (min-width: 768px) {
  #playlist_section .bg_layer_top {
    height: 50%;
  }
}
@media (min-width: 992px) {
  #playlist_section .bg_layer_top {
    height: 43%;
  }
}
#playlist_section .playlist_tab {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  #playlist_section .playlist_tab {
    margin-bottom: 35px;
  }
}
#playlist_section .playlist_tab .icon {
  width: 30px;
}
#playlist_section .playlist_tab .text {
  margin: 0 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
}
@media (min-width: 992px) {
  #playlist_section .playlist_tab .text {
    font-size: 24px;
  }
}
#playlist_section .playlist_tab .count_lap {
  margin-top: 10px;
}
@media (min-width: 768px) {
  #playlist_section .playlist_tab .count_lap {
    margin-top: 0;
  }
}
#playlist_section .playlist_tab .count_lap li {
  margin-right: 5px;
}
#playlist_section .playlist_tab .count_lap li a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#playlist_section .playlist_tab .count_lap .active a {
  background-color: transparent;
  color: var(--theme-color);
}
#playlist_section .playlist {
  position: relative;
  width: 100%;
  height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  #playlist_section .playlist {
    height: 628px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist {
    height: 700px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#playlist_section .playlist .album {
  position: absolute;
  width: 150px;
  height: auto;
  -webkit-transition: z-index 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: z-index 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, z-index 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, z-index 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #playlist_section .playlist .album {
    width: 250px;
  }
}
@media (min-width: 992px) {
  #playlist_section .playlist .album {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .album {
    width: 560px;
  }
}
#playlist_section .playlist .album:nth-child(1) {
  z-index: 1;
}
@media (min-width: 992px) {
  #playlist_section .playlist .album:nth-child(1) {
    -webkit-transform: translateX(-430px) translateY(-50px) scale(0.7);
            transform: translateX(-430px) translateY(-50px) scale(0.7);
  }
}
#playlist_section .playlist .album:nth-child(2) {
  z-index: 2;
}
@media (min-width: 992px) {
  #playlist_section .playlist .album:nth-child(2) {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
#playlist_section .playlist .album:nth-child(3) {
  z-index: 1;
}
@media (min-width: 992px) {
  #playlist_section .playlist .album:nth-child(3) {
    -webkit-transform: translateX(430px) translateY(-50px) scale(0.7);
            transform: translateX(430px) translateY(-50px) scale(0.7);
  }
}
#playlist_section .playlist .center_content {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
#playlist_section .playlist .play_all {
  font-size: 15px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--theme-color);
  margin: 0 auto 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) {
  #playlist_section .playlist .play_all {
    width: 80px;
    height: 80px;
    font-size: 40px;
    margin: 0 auto 80px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .play_all {
    width: 150px;
    height: 150px;
    font-size: 55px;
    margin: 0 auto 147px;
  }
}
#playlist_section .playlist .play_all .big_circle {
  background: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#playlist_section .playlist .play_all .big_circle i.fa-stop {
  color: #dc3545 !important;
}
@media (max-width: 1024px) {
  #playlist_section .playlist .play_all .big_circle {
    height: 43px;
    width: 43px;
  }
}
#playlist_section .playlist .album_name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding: 10px 15px;
  border-radius: 100px;
  background: rgb(139, 90, 180);
  background: linear-gradient(36deg, rgba(139, 90, 180, 0.6) 0%, rgba(104, 35, 207, 0.6) 75%, rgba(78, 20, 174, 0.6) 100%);
  display: inline-block;
}
@media (min-width: 992px) {
  #playlist_section .playlist .album_name {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .album_name {
    font-size: 55px;
    padding: 15px 30px;
  }
}
#playlist_section .playlist .tracklist {
  width: 270px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 40px);
          transform: translate(-50%, 40px);
}
@media (min-width: 374px) {
  #playlist_section .playlist .tracklist {
    width: 310px;
  }
}
@media (min-width: 768px) {
  #playlist_section .playlist .tracklist {
    -webkit-transform: translate(-50%, 230px);
            transform: translate(-50%, 230px);
    width: 0;
  }
}
@media (min-width: 992px) {
  #playlist_section .playlist .tracklist {
    position: absolute;
    bottom: 55px;
    width: 100%;
    -webkit-transform: translate(-50%, 170px);
            transform: translate(-50%, 170px);
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .tracklist {
    -webkit-transform: translate(-50%, -55px);
            transform: translate(-50%, -55px);
  }
}
@media (min-width: 768px) {
  #playlist_section .playlist .tracklist .left, #playlist_section .playlist .tracklist .right {
    position: absolute;
    bottom: 0;
    width: 250px;
  }
}
@media (min-width: 992px) {
  #playlist_section .playlist .tracklist .left, #playlist_section .playlist .tracklist .right {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .tracklist .left, #playlist_section .playlist .tracklist .right {
    position: absolute;
    bottom: 0;
    width: 300px;
  }
}
#playlist_section .playlist .tracklist .left {
  left: -255px;
}
@media (min-width: 992px) {
  #playlist_section .playlist .tracklist .left {
    left: -250px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .tracklist .left {
    left: -245px;
  }
}
#playlist_section .playlist .tracklist .right {
  right: -255px;
}
@media (min-width: 992px) {
  #playlist_section .playlist .tracklist .right {
    right: -250px;
  }
}
@media (min-width: 1200px) {
  #playlist_section .playlist .tracklist .right {
    right: -245px;
  }
}
#playlist_section .playlist .tracklist ul li {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  #playlist_section .playlist .tracklist ul li {
    padding: 15px 25px;
  }
}
#playlist_section .playlist .tracklist ul li .audio_play_btn {
  position: relative;
  z-index: 10;
  margin-left: 0;
  width: 25px;
  height: 25px;
}
#playlist_section .playlist .tracklist ul li .audio_play_btn .circle {
  width: 25px;
  height: 25px;
}
#playlist_section .playlist .tracklist ul li span {
  color: #212529;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}
@media (min-width: 992px) {
  #playlist_section .playlist .tracklist ul li span {
    font-size: 16px;
  }
}
#playlist_section .playlist .tracklist ul li i {
  margin-right: 5px;
  color: var(--theme-color);
  font-size: 14px;
}

#winners_section,
#players_section {
  /* Custom arrows */
}
@media (min-width: 992px) {
  #winners_section,
  #players_section {
    padding: 100px 0 100px;
  }
}
@media (min-width: 1200px) {
  #winners_section,
  #players_section {
    padding: 100px 0 80px;
  }
}
#winners_section .section_content p,
#players_section .section_content p {
  color: var(--theme-color);
  font-weight: 500;
}
#winners_section .bg_layer_top,
#players_section .bg_layer_top {
  bottom: 0;
  top: auto;
}
@media (min-width: 374px) {
  #winners_section .bg_layer_top,
  #players_section .bg_layer_top {
    height: 35%;
  }
}
@media (min-width: 768px) {
  #winners_section .bg_layer_top,
  #players_section .bg_layer_top {
    height: 25%;
  }
}
@media (min-width: 992px) {
  #winners_section .bg_layer_top,
  #players_section .bg_layer_top {
    height: 33%;
  }
}
@media (min-width: 1200px) {
  #winners_section .bg_layer_top,
  #players_section .bg_layer_top {
    height: 32%;
  }
}
#winners_section .players,
#players_section .players {
  margin: 90px 0 0;
}
@media (max-width: 1024px) {
  #winners_section .players,
  #players_section .players {
    margin: 65px 0 0;
  }
}
@media (max-width: 575.98px) {
  #winners_section .players,
  #players_section .players {
    margin: 85px 0 0;
  }
}
#winners_section .slide,
#players_section .slide {
  position: relative;
  text-align: center;
  cursor: pointer;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 5px 10px;
}
#winners_section .slide.slick-center,
#players_section .slide.slick-center {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  z-index: 99 !important;
}
@media (max-width: 575.98px) {
  #winners_section .slide.slick-center,
  #players_section .slide.slick-center {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#winners_section .slick-slider .slick-track,
#players_section .slick-slider .slick-track {
  padding: 90px 0 80px !important;
}
@media (max-width: 768px) {
  #winners_section .slick-slider .slick-track,
  #players_section .slick-slider .slick-track {
    padding: 30px 0 30px !important;
  }
}
@media (max-width: 575.98px) {
  #winners_section .slick-slider .slick-track,
  #players_section .slick-slider .slick-track {
    padding: 0 !important;
  }
}
#winners_section .slide,
#players_section .slide {
  position: relative;
}
#winners_section .slide::before,
#players_section .slide::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 10px;
  background: rgb(255, 255, 255);
  background: linear-gradient(151deg, rgb(255, 255, 255) 7%, rgb(104, 35, 207) 55%, rgb(125, 198, 201) 92%);
  z-index: -1;
}
#winners_section .slide img,
#players_section .slide img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
#winners_section .slide h3,
#players_section .slide h3 {
  margin: 5px 0 0;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}
#winners_section .slick-prev:before,
#winners_section .slick-next:before,
#players_section .slick-prev:before,
#players_section .slick-next:before {
  color: #fff;
  font-size: 30px;
}
#winners_section .slick-prev,
#players_section .slick-prev {
  left: -40px;
}
#winners_section .slick-next,
#players_section .slick-next {
  right: -40px;
}
#winners_section .slick-arrow,
#players_section .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -45px;
}
#winners_section .slick-arrow.slick-prev,
#players_section .slick-arrow.slick-prev {
  left: 50%;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  color: red;
}
#winners_section .slick-arrow.slick-next,
#players_section .slick-arrow.slick-next {
  right: 50%;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
#winners_section .slick-prev:before, #winners_section .slick-next:before,
#players_section .slick-prev:before,
#players_section .slick-next:before {
  color: #5216b5;
  opacity: 1;
}
#winners_section .slick-dots,
#players_section .slick-dots {
  bottom: -30px;
}
#winners_section .slick-dots li button:before,
#players_section .slick-dots li button:before {
  font-size: 12px;
  opacity: 0.25;
  color: #edf0f6;
}
#winners_section .slick-dots li.slick-active button:before,
#players_section .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ffffff;
}

#winners_section .players {
  margin: 60px 0 0;
}
@media (max-width: 1024px) {
  #winners_section .players {
    margin: 65px 0 0;
  }
}
@media (max-width: 768px) {
  #winners_section .players {
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  #winners_section .players {
    margin: 85px 0 0;
  }
}
@media (min-width: 1200px) {
  #winners_section {
    padding: 100px 0 80px;
  }
}
#winners_section .slide.slick-center {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media (max-width: 575.98px) {
  #winners_section .slide.slick-center {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#winners_section .slick-slider .slick-track {
  padding: 115px 0 !important;
}
@media (max-width: 768px) {
  #winners_section .slick-slider .slick-track {
    padding: 65px 0 55px !important;
  }
}
@media (max-width: 575.98px) {
  #winners_section .slick-slider .slick-track {
    padding: 0 !important;
  }
}
#winners_section .bg_layer_top {
  bottom: 0;
  top: auto;
}
@media (min-width: 374px) {
  #winners_section .bg_layer_top {
    height: 35%;
  }
}
@media (min-width: 768px) {
  #winners_section .bg_layer_top {
    height: 35%;
  }
}
@media (min-width: 992px) {
  #winners_section .bg_layer_top {
    height: 33%;
  }
}
@media (min-width: 1200px) {
  #winners_section .bg_layer_top {
    height: 37%;
  }
}
#winners_section .slide .gradientBtn {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}
#winners_section .slide .gradientBtn .ct_button {
  font-size: 14px;
  background: var(--theme-color);
  color: #fff;
}
@media (max-width: 768px) {
  #winners_section .slide .gradientBtn .ct_button {
    font-size: 10px;
    padding: 5px 8px;
  }
}
@media (max-width: 575.98px) {
  #winners_section .slide .gradientBtn .ct_button {
    font-size: 12px;
    padding: 5px 15px;
  }
}
#winners_section .slide .gradientBtn .ct_button i {
  margin-left: 3px;
}
#winners_section .slick-current .gradientBtn {
  display: block;
}

#player_details .bg_layer_top {
  height: 300px;
  top: 0;
}
#player_details .profile_area {
  margin-bottom: 60px;
}
@media (max-width: 575.98px) {
  #player_details .profile_area {
    margin-bottom: 0px;
  }
}
#player_details .player_profile {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  #player_details .player_profile {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
}
@media (max-width: 768px) {
  #player_details .player_profile {
    -webkit-transform: translate(31px, 18px) scale(1.2);
            transform: translate(31px, 18px) scale(1.2);
  }
}
@media (max-width: 575.98px) {
  #player_details .player_profile {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#player_details .player_profile img {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 5px 7px 11px rgba(0, 0, 0, 0.16);
          box-shadow: 5px 7px 11px rgba(0, 0, 0, 0.16);
  max-width: 400px;
}
@media (max-width: 768px) {
  #player_details .player_profile img {
    max-width: 280px;
  }
}
@media (max-width: 575.98px) {
  #player_details .player_profile img {
    max-width: 100%;
  }
}
#player_details .profile_card {
  border-radius: 10px;
  -webkit-transform: translate(-130px, 100px);
          transform: translate(-130px, 100px);
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.02);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.02);
}
@media (max-width: 1024px) {
  #player_details .profile_card {
    -webkit-transform: translate(-35px, 100px);
            transform: translate(-35px, 100px);
  }
}
@media (max-width: 768px) {
  #player_details .profile_card {
    -webkit-transform: translate(5px, 100px);
            transform: translate(5px, 100px);
  }
}
@media (max-width: 575.98px) {
  #player_details .profile_card {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-top: 15px;
  }
}
#player_details .profile_card .card-body {
  padding: 60px 30px 60px 300px;
}
@media (max-width: 1024px) {
  #player_details .profile_card .card-body {
    padding: 60px 15px 60px 93px;
  }
}
@media (max-width: 768px) {
  #player_details .profile_card .card-body {
    padding: 30px 15px 30px 60px;
  }
}
@media (max-width: 575.98px) {
  #player_details .profile_card .card-body {
    padding: 25px;
  }
}
#player_details .profile_card .title {
  color: #5216b5;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 768px) {
  #player_details .profile_card .title {
    font-size: 24px;
  }
}
#player_details .profile_card .info {
  margin-top: 35px;
}
@media (max-width: 768px) {
  #player_details .profile_card .info {
    margin-top: 25px;
  }
}
#player_details .profile_card .info p {
  text-transform: capitalize;
  color: #5216b5;
  font-weight: 600;
}
@media (max-width: 768px) {
  #player_details .profile_card .info p {
    font-size: 14px;
  }
}
#player_details .profile_card .info p strong {
  font-weight: 400;
  margin-right: 10px;
  color: #212529;
}
@media (max-width: 768px) {
  #player_details .profile_card .info p strong {
    margin-right: 5px;
  }
}
#player_details .mobile_game_history,
#player_details .game_history {
  border-radius: 10px;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.02);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.02);
  -webkit-transform: translateX(-19px);
          transform: translateX(-19px);
  margin-top: 30px;
}
@media (max-width: 1024px) {
  #player_details .mobile_game_history,
  #player_details .game_history {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@media (max-width: 575.98px) {
  #player_details .mobile_game_history,
  #player_details .game_history {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#player_details .mobile_game_history th,
#player_details .game_history th {
  font-weight: 500;
  font-size: 14px;
  color: #5216b5;
}
#player_details .mobile_game_history tr td,
#player_details .game_history tr td {
  padding: 15px 8px;
  font-size: 14px;
  border-color: #f5f5f5;
}
@media (max-width: 768px) {
  #player_details .mobile_game_history .card-body,
  #player_details .game_history .card-body {
    min-height: 380px;
  }
}
#player_details .mobile_game_history .card {
  border-radius: 10px;
}
#player_details .mobile_game_history tr td {
  border-color: #e5e3e3;
}
#player_details .mobile_game_history tr:last-child td {
  border-color: transparent;
  padding-bottom: 10px;
}
/*# sourceMappingURL=style.css.map */