@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/GillSans Condensed.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Light.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Light Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 500;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Medium.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 500;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Medium Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Bold.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/GillSans Condensed Bold.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Bold Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 900;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Heavy.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 900;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Heavy Italic.woff") format("woff");
}
html {
  font-size: 62.4%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Gill Sans";
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #777;
  background-color: #fff;
  -webkit-font-smoothing: none;
  -webkit-font-smoothing: subpixel-antialiased;
  box-sizing: border-box;
}

#scroll-up {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #e01e49;
  border-radius: 50%;
  bottom: 50px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  display: none;
}

#scroll-up:hover {
  background-color: white;
}

#loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20000;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: grid;
  place-items: center;
}
#loading div {
  width: 150px;
  position: relative;
}
#loading img {
  width: 100%;
}
#loading div::before {
  content: "";
  width: 50px;
  height: 50px;
  bottom: -35px;
  left: 0;
  background: url("../images/loading/wheel.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
#loading div::after {
  content: "";
  width: 50px;
  height: 50px;
  bottom: -35px;
  right: 10px;
  background: url("../images/loading/wheel.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  animation: spin 1s linear infinite;
}

footer {
  background: #1e1e1e;
  position: relative;
}
footer img {
  width: 10rem;
}
footer .legal h3 {
  font-weight: bold;
  font-size: 20px;
}
footer p {
  font-size: 2rem;
  color: rgb(177, 177, 177);
  padding: 0 6px;
  margin: 0 0 8px 0;
}
footer p a {
  color: rgb(177, 177, 177);
}
footer p a:hover {
  color: #E01E49;
}
footer #copyright {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  font-size: 1.4rem;
}
footer #copyright a {
  text-decoration: none;
  color: white;
}
footer .social-media i {
  font-size: 2.4rem;
  color: rgb(177, 177, 177);
}

a {
  text-decoration: none !important;
  padding: 0;
  margin: 0;
}

/* =====================
Header starts
===================== */
nav {
  display: flex;
  height: 100px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  position: fixed;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  z-index: 10000;
  background: transparent;
}

nav .logo-header {
  color: #fff;
  /* font-size: 35px; */
  /* font-weight: 600; */
  height: 120px;
  /* padding-bottom: 15px; */
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  padding: 0 5px;
  position: relative;
}

nav ul li a {
  color: #c8c8c8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav ul li:hover a {
  color: rgb(224, 30, 73);
}

nav.sticky ul li a {
  color: black;
}

nav ul li.active a {
  color: rgb(224, 30, 73);
}

nav ul .active {
  position: relative;
}

nav ul .active::after {
  position: absolute;
  width: 100%;
  height: 20px;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1662314207/Rolldxb.images/dash_tbizbp.png") center center no-repeat;
  background-size: contain;
  left: 0;
  bottom: -15px;
  transform: rotate(-5deg);
}

nav ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 20px;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1662314207/Rolldxb.images/dash_tbizbp.png") center center no-repeat;
  background-size: contain;
  left: 0;
  bottom: -15px;
  transform: rotate(-5deg);
  transition: 0.5s;
}

nav ul li:hover::after {
  width: 100%;
}

nav .menu-btn i {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

input[type=checkbox] {
  display: none;
}

@media (max-width: 1000px) {
  nav {
    padding: 0 40px 0 50px;
  }
  nav ul li a {
    font-size: 11px;
    padding: 5px 5px;
  }
  nav .logo-header {
    height: 67px;
  }
}
@media (max-width: 920px) {
  .drop-down ul {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .drop-down i {
    display: block !important;
  }
  nav {
    height: 80px;
  }
  nav.sticky ul li a {
    color: white;
  }
  nav .menu-btn i {
    display: block;
    padding-bottom: 5px;
  }
  nav {
    background-color: transparent;
  }
  nav .logo-header {
    padding-bottom: 5px;
    height: 90px;
  }
  nav.sticky .menu-btn i {
    color: black;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav ul {
    position: fixed;
    padding-top: 15rem;
    z-index: -1;
    top: 0px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 15px 0;
  }
  nav ul li a {
    width: 100%;
    display: block;
    font-size: 15px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover {
    background: none;
    color: #e01e49;
  }
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}

.content div {
  font-size: 40px;
  font-weight: 700;
}

@media only screen and (max-width: 1100px) and (min-width: 1001px) {
  nav ul li a {
    font-size: 12px;
    padding: 5px 2px;
  }
  nav .logo-header {
    height: 90px;
  }
}
@media only screen and (max-width: 1201px) and (min-width: 1101px) {
  nav ul li a {
    font-size: 13px;
    padding: 5px 3px;
  }
  nav .logo-header {
    height: 100px;
  }
}
@media only screen and (max-width: 1530px) and (min-width: 1202px) {
  nav ul li a {
    font-size: 14px;
    padding: 5px 5px;
  }
  nav .logo-header {
    height: 110px;
  }
}
.drop-down i {
  display: none;
  color: #c8c8c8;
}

.drop-down ul {
  width: 260px;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(29, 29, 29, 0.9411764706);
  padding: 0;
  z-index: 4;
  border-bottom: 4px solid #E01E49;
}

.drop-down.active::after {
  display: none;
}

.drop-down li:hover::after {
  width: 0;
}

.drop-down ul li {
  padding: 10px 0px;
  float: none;
  cursor: pointer;
}

.drop-down ul a {
  line-height: 120%;
  padding: 10px 15px;
  color: rgb(208, 208, 208) !important;
}

.drop-down ul li:hover a {
  color: #E01E49;
}

.drop-down ul li:hover {
  background-color: #3d3d3d;
}

.drop-down:hover > ul {
  display: block;
}

/* ===========================
Header ends
=========================== */
@media (max-width: 1300px) {
  html {
    font-size: 55%;
  }
  .event-about h2 {
    font-size: 4rem !important;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 62.5%;
  }
  .about-container,
  .activity-container,
  .gallery-container,
  .homies-container {
    min-height: 1160px !important;
  }
  .about-container .about,
  .about-container .about-background,
  .about-container .concept,
  .about-container .stats-background,
  .about-container .stats,
  .about-container .partners,
  .about-container .homies,
  .activity-container .about,
  .activity-container .about-background,
  .activity-container .concept,
  .activity-container .stats-background,
  .activity-container .stats,
  .activity-container .partners,
  .activity-container .homies,
  .gallery-container .about,
  .gallery-container .about-background,
  .gallery-container .concept,
  .gallery-container .stats-background,
  .gallery-container .stats,
  .gallery-container .partners,
  .gallery-container .homies,
  .homies-container .about,
  .homies-container .about-background,
  .homies-container .concept,
  .homies-container .stats-background,
  .homies-container .stats,
  .homies-container .partners,
  .homies-container .homies {
    height: 580px !important;
  }
  .contact {
    height: 580px !important;
  }
  .event-hero-text h1 {
    font-size: 40rem !important;
  }
  .aboutus-hero {
    padding: 13rem 8rem !important;
  }
  .aboutus-hero img {
    width: 57rem !important;
    top: 6rem !important;
    z-index: -1;
  }
  .c-wrapper {
    transform: translate(15rem) !important;
  }
  .questions h1, .questions h2, .questions h3 {
    font-size: 10rem !important;
  }
  .questions h4 {
    font-size: 6rem !important;
    line-height: 8.7rem !important;
  }
  .questions h1 {
    line-height: 0.5rem !important;
  }
  .questions h2 {
    line-height: 11.7rem !important;
  }
  .questions h3 {
    line-height: 0.6rem !important;
  }
}
@media (max-width: 992px) {
  .cloud-gallery {
    grid-template-rows: repeat(8, 25rem) !important;
    grid-gap: 2rem !important;
  }
  .gallery-element {
    height: 15rem !important;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  .cloud-gallery {
    grid-template-rows: repeat(8, 20rem) !important;
    grid-gap: 1.5rem !important;
  }
  .gallery .gallery-element {
    width: calc(33.3333% + 79px) !important;
  }
  .about-container {
    min-height: 1540px !important;
  }
  .about-container .about,
  .about-container .about-background {
    height: 580px !important;
  }
  .about-container .concept {
    height: 380px !important;
  }
  .homies-container {
    min-height: 1640px !important;
  }
  .homies-container .partners,
  .homies-container .homies {
    height: 580px !important;
  }
  .activity-container {
    min-height: 1000px !important;
  }
  .activity-container .stats-background,
  .activity-container .stats {
    height: 500px !important;
  }
  .gallery-container {
    min-height: 1600px !important;
  }
  .gallery-container .joindxb,
  .gallery-container .testimonial,
  .gallery-container .gallery,
  .gallery-container .quote {
    height: 400px !important;
  }
  .gallery-container .joindxb h1 {
    font-size: 2.5rem !important;
  }
  .contact {
    background-color: #82ece8 !important;
    height: 480px !important;
  }
  .contact p {
    font-size: 1.6rem !important;
    color: rgb(224, 30, 73);
  }
  .contact h1 {
    font-size: 2.4rem !important;
    color: black;
  }
  .contact a {
    font-size: 3.5rem !important;
    color: white !important;
  }
  .video-container {
    height: 0 !important;
    padding-top: 75% !important;
  }
  iframe {
    width: 150% !important;
    height: 120% !important;
  }
  .event-hero-text h1 {
    font-size: 25rem !important;
  }
  .event-hero-background {
    width: 179% !important;
  }
  .h-100 {
    height: 60vh !important;
  }
  .event-background-3 {
    height: 400px !important;
  }
}
@media (max-width: 592px) {
  .cloud-gallery {
    padding: 0rem 1.5rem 4rem 1.5rem !important;
  }
  .gallery .gallery-element {
    width: 98% !important;
    height: 35rem !important;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 40%;
  }
  .video-container {
    padding-top: 100% !important;
  }
  iframe {
    width: 178% !important;
    height: 150% !important;
  }
  .homies {
    height: 470px !important;
  }
  .about-container p {
    font-size: 2.3rem !important;
    letter-spacing: 0.05em !important;
  }
}
.container-fluid > * {
  margin-right: 0 !important;
}

body {
  background-color: #1b1b1b;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
}

#scroll-up {
  position: fixed !important;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #e01e49;
  border-radius: 50%;
  bottom: 50px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  display: none;
}

#scroll-up:hover {
  background-color: white;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  padding: 100px !important;
  width: 5px;
  background-color: #ececec;
}

body::-webkit-scrollbar-thumb {
  width: 5px;
  background: rgb(132, 132, 132);
  border-radius: 10px;
}

#about-us a {
  color: rgb(224, 30, 73);
}

#about-us::after {
  position: absolute;
  width: 100%;
  height: 20px;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1662314207/Rolldxb.images/dash_tbizbp.png") center center no-repeat;
  background-size: contain;
  left: 0;
  bottom: -15px;
  transform: rotate(-5deg);
}

.aboutus-hero {
  padding: 13rem 13rem;
  height: 80rem;
  position: relative;
  overflow: hidden;
}
.aboutus-hero h1 {
  font-weight: 700;
  font-size: 26rem;
  letter-spacing: -0.02em;
  color: #393E46;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.aboutus-hero h2 {
  width: 70rem;
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  transform: translateY(-6rem);
  position: relative;
}
.aboutus-hero h2 span {
  color: white;
  background: linear-gradient(45deg, #E01E49 0%, #981865 35.82%, #782A89 66.64%, #412F84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.aboutus-hero h2::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 4px;
  background-color: #e01e49;
  bottom: -1.8rem;
  border-radius: 1rem;
  left: 0;
}
.aboutus-hero p {
  font-weight: 400;
  font-size: 2rem;
  color: #EEEEEE;
  transform: translateY(-2rem);
  width: 55rem;
}
.aboutus-hero img {
  width: 57rem;
  position: absolute;
  right: 10rem;
  top: 5rem;
}

.about-question {
  height: 70rem;
  background-color: #252525;
}
.about-question .about-question-bg {
  padding: 30px 0px;
  height: 70rem;
  display: grid;
  place-items: center;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1668442453/new%20assets/Home%20Page/DSC04239_copy_t1qqor.jpg") center center no-repeat;
  background-size: cover;
}

.c-wrapper {
  transform: translate(20rem);
}
.c-wrapper .c-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 80rem;
  perspective-origin: 50%;
}
.c-wrapper .image-cube {
  width: 48rem;
  height: 40rem;
  transform-style: preserve-3d;
  position: relative;
  transition: 2s;
}
.c-wrapper .image-cube div {
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.c-wrapper .image-cube div h1 {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.02em;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  color: #FFFFFF;
  position: relative;
}
.c-wrapper .image-cube div h1::before {
  content: "";
  position: absolute;
  width: 10rem;
  height: 0.4rem;
  background-color: white;
  bottom: 0%;
  left: 0%;
  border-radius: 20px;
}
.c-wrapper .image-cube div p {
  font-size: 1.4rem;
  color: #FFFFFF;
}
.c-wrapper .image-cube div img {
  width: 6rem;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
.c-wrapper .image-cube div aside {
  width: 5rem;
  height: 0.2rem;
  background-color: white;
  position: absolute;
  right: 4rem;
  top: 4rem;
  cursor: pointer;
}
.c-wrapper .image-cube div aside::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 0.2rem;
  background-color: white;
  transition: 0.2s;
}
.c-wrapper .image-cube div:hover aside::before {
  transform: rotate(30deg) translateY(-5px);
}
.c-wrapper img {
  width: 100%;
  transform: translateZ(0);
}
.c-wrapper .front {
  transform: translateZ(24rem);
  background: linear-gradient(126.06deg, #E01E49 -36.79%, #981865 38.28%, #782A89 102.87%, #412F84 172.79%);
}
.c-wrapper .right {
  transform: rotateY(-270deg) translateX(24rem);
  transform-origin: 100% 0;
  background: linear-gradient(126.06deg, #E01E49 -36.79%, #981865 38.28%, #782A89 102.87%, #412F84 172.79%);
}
.c-wrapper .back {
  transform: translateZ(-24rem) rotateY(180deg);
  background: linear-gradient(126.06deg, #E01E49 -36.79%, #981865 38.28%, #782A89 102.87%, #412F84 172.79%);
}
.c-wrapper .back a {
  color: #fed841;
  text-decoration: none;
}
.c-wrapper .left {
  transform: rotateY(270deg) translateX(-24rem);
  transform-origin: 0 50%;
  background: linear-gradient(126.06deg, #E01E49 -36.79%, #981865 38.28%, #782A89 102.87%, #412F84 172.79%);
}
.c-wrapper .btns {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
.c-wrapper .btns button {
  background-color: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
  padding: 0.8rem 4rem;
  border-radius: 3rem;
  font-size: 2rem;
  cursor: pointer;
}

.questions {
  transform: rotate(-90deg) translateY(15rem);
}
.questions h1 {
  font-weight: 700;
  font-size: 15rem;
  line-height: 2.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 5;
  color: #E01E49;
}
.questions h2 {
  font-weight: 700;
  font-size: 17.2rem;
  letter-spacing: -0.02em;
  line-height: 15.7rem;
  -webkit-text-stroke-width: 0.6rem;
  -webkit-text-stroke-color: #981865;
  color: transparent;
  position: relative;
  z-index: 4;
}
.questions h3 {
  font-weight: 700;
  font-size: 16rem;
  letter-spacing: -0.02em;
  line-height: 31px;
  -webkit-text-stroke-width: 0.6rem;
  -webkit-text-stroke-color: #782A89;
  color: transparent;
  position: relative;
  z-index: 3;
}
.questions h4 {
  font-weight: 700;
  font-size: 9rem;
  letter-spacing: -0.02em;
  line-height: 11.7rem;
  -webkit-text-stroke-width: 0.5rem;
  -webkit-text-stroke-color: #412F84;
  color: transparent;
  position: relative;
  z-index: 2;
}

.trainers {
  min-height: 60rem;
  background-color: #1b1b1b;
  padding: 6rem 8rem;
}
.trainers h1 {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
}
.trainers .testim {
  width: 100%;
}
.trainers .testim .wrap {
  position: relative;
  width: 100%;
  max-width: 102rem;
  padding: 4rem 2rem;
  margin: auto;
  z-index: 1 !important;
}
.trainers .testim .arrow {
  display: block;
  position: absolute;
  color: #333;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  padding: 5px;
  z-index: 22222222;
}
.trainers .testim .arrow:before {
  cursor: pointer;
}
.trainers .testim .arrow:hover {
  color: #E01E49;
}
.trainers .testim .arrow.left {
  left: 70px;
}
.trainers .testim .arrow.right {
  right: 70px;
}
.trainers .testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}
.trainers .testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #E01E49;
  margin: 0 10px;
  cursor: pointer;
  transition: all 1s ease-in-out;
  position: relative;
}
.trainers .testim .dots .dot.active,
.trainers .testim .dots .dot:hover {
  background: #E01E49;
  border-color: #E01E49;
}
.trainers .testim .dots .dot.active {
  animation: testim-scale 1s ease-in-out forwards;
}
.trainers .testim .cont {
  position: relative;
  overflow: hidden;
}
.trainers .testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}
.trainers .testim .cont > div.inactive {
  opacity: 1;
}
.trainers .testim .cont > div.active {
  position: relative;
  opacity: 1;
}
.trainers .testim .cont div .img img {
  display: block;
  width: 100px;
  margin: auto;
}
.trainers .testim .cont div .img {
  height: 100px;
  overflow: hidden;
}
.trainers .testim .cont div h2 {
  color: #E01E49;
  font-size: 1em;
  margin: 15px 0;
}
.trainers .testim .cont div p {
  font-size: 1.15em;
  color: rgb(255, 255, 255);
  width: 70%;
  margin: auto;
}
.trainers .testim .cont div.active .img img {
  animation: testim-show 1s ease-in-out forwards;
}
.trainers .testim .cont div.active h2 {
  animation: testim-content-in 0.9s ease-in-out forwards;
}
.trainers .testim .cont div.active p {
  animation: testim-content-in 1s ease-in-out forwards;
}
.trainers .testim .cont div.inactive .img img {
  animation: testim-hide 1s ease-in-out forwards;
}
.trainers .testim .cont div.inactive h2 {
  animation: testim-content-out 0.9s ease-in-out forwards;
}
.trainers .testim .cont div.inactive p {
  animation: testim-content-out 1s ease-in-out forwards;
}
@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #000000;
  }
  35% {
    box-shadow: 0px 0px 10px 5px #000000;
  }
  70% {
    box-shadow: 0px 0px 10px 5px #E01E49;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #E01E49;
  }
}
@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

.host {
  background-color: #1b1b1b;
  padding-bottom: 10rem;
  display: grid;
  place-items: center;
}
.host h1 {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 4rem;
  background: linear-gradient(45deg, #E01E49 0%, #981865 35.82%, #782A89 66.64%, #412F84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: bold;
}
.host p {
  font-size: 1.8rem;
  color: rgb(255, 255, 255);
  width: 70%;
  text-align: center;
}

.btn-primary {
  background-color: #E01E49 !important;
  border: none;
  font-size: 1.7rem;
  transition: 0.4s;
}

.btn-primary:hover {
  background-color: #fed841 !important;
}

.text-primary {
  background: linear-gradient(45deg, #E01E49 0%, #981865 35.82%, #782A89 66.64%, #412F84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: bold;
  font-size: 2rem;
}

.card-text {
  font-size: 1.6rem;
}

@media (max-width: 1073px) {
  .aboutus-hero {
    padding: 13rem 4rem !important;
  }
  .aboutus-hero img {
    width: 57rem !important;
    opacity: 0.6;
  }
}
@media (max-width: 1073px) {
  .aboutus-hero {
    padding: 13rem 4rem !important;
  }
  .aboutus-hero img {
    opacity: 0.6;
  }
  .c-wrapper {
    transform: translate(10rem) !important;
  }
  .c-wrapper .image-cube {
    width: 40rem !important;
    height: 36rem !important;
  }
  .front {
    transform: translateZ(20rem) !important;
  }
  .right {
    transform: rotateY(-270deg) translateX(20rem) !important;
  }
  .back {
    transform: translateZ(-20rem) rotateY(180deg) !important;
  }
  .left {
    transform: rotateY(270deg) translateX(-20rem) !important;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50%;
  }
  .about-question {
    height: 90rem !important;
  }
  .about-question .about-question-bg {
    height: 33rem;
  }
  .questions {
    transform: rotate(0deg) translateY(30rem);
  }
  .c-wrapper {
    transform: translateY(10rem) !important;
  }
}
@media (max-width: 627px) {
  .aboutus-hero h1 {
    font-size: 12rem !important;
  }
  .aboutus-hero h2 {
    width: 100% !important;
    font-size: 4rem !important;
    transform: translateY(-4rem);
  }
  .aboutus-hero p {
    width: 100%;
    transform: translateY(-2rem);
  }
  .aboutus-hero img {
    right: 0rem;
    top: 5rem;
  }
  .c-wrapper .image-cube {
    width: 38rem !important;
    height: 36rem !important;
  }
  .front {
    transform: translateZ(19rem) !important;
  }
  .right {
    transform: rotateY(-270deg) translateX(19rem) !important;
  }
  .back {
    transform: translateZ(-19rem) rotateY(180deg) !important;
  }
  .left {
    transform: rotateY(270deg) translateX(-19rem) !important;
  }
  .trainers {
    padding: 6rem 0rem !important;
  }
}
@media (max-width: 410px) {
  .c-wrapper .image-cube div {
    padding: 2rem 5rem !important;
  }
  .c-wrapper .image-cube div h1 {
    font-size: 2.4rem;
  }
  .c-wrapper .image-cube {
    width: 32rem !important;
    height: 45rem !important;
  }
  .front {
    transform: translateZ(16rem) !important;
  }
  .right {
    transform: rotateY(-270deg) translateX(16rem) !important;
  }
  .back {
    transform: translateZ(-16rem) rotateY(180deg) !important;
  }
  .left {
    transform: rotateY(270deg) translateX(-16rem) !important;
  }
  .trainers {
    padding: 6rem 0rem !important;
  }
}
.heading-trainer {
  text-align: center;
  padding: 4rem 0;
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
}

.trainer-name-main {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.trainer-img-box {
  border: solid 3px rgb(224, 30, 73);
  border-radius: 40px !important;
  box-shadow: 32px 32px 0px 5px rgba(224, 30, 73, 0.6);
  transition: all 0.9s;
}

.trainer-img-box:hover {
  box-shadow: 0px 0px 0px 0px rgb(224, 30, 73);
  transition: all 1s;
}

.trainers-bio {
  font-size: 18px;
  font-weight: 100;
  opacity: 1;
  color: white;
  letter-spacing: 0.6px;
}

/* for pc */
@media only screen and (min-width: 1050px) {
  .main-row-trainer {
    padding-top: 40px;
  }
  .trainer-second {
    padding-right: 60px;
  }
}
/* for  mobile and tablets */
@media only screen and (max-width: 1000px) {
  .main-content {
    padding-top: 60px;
  }
  .trainer-img-box {
    height: 260px;
  }
  .img-box-main {
    text-align: center;
    padding-top: 45px;
  }
  .trainer-name-main, .trainers-bio {
    text-align: center;
    padding: 0 15px 0 15px;
  }
}
@media only screen and (max-width: 780px) {
  .current-event {
    display: none;
  }
  .hero-subevent {
    height: 60vh !important;
  }
}/*# sourceMappingURL=about.css.map */