@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;
  }
}
#home a {
  color: rgb(224, 30, 73);
}

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

/* hero video starts */
.video-container {
  position: relative;
  z-index: -1;
  width: 100%;
  overflow: hidden;
  padding-top: 52.25%;
}
.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  width: 125%;
  height: 110%;
  border: none;
  transform: translate(-50%, -50%);
}

.about {
  color: white;
}

.greeting {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.about-container, .activity-container, .gallery-container, .homies-container {
  height: 100vh;
  min-height: 600px;
}
.about-container .about-heading, .activity-container .about-heading, .gallery-container .about-heading, .homies-container .about-heading {
  font-size: 3rem;
  font-weight: 800;
}
.about-container p, .activity-container p, .gallery-container p, .homies-container p {
  font-size: 2.2rem;
}
.about-container .about-background, .activity-container .about-background, .gallery-container .about-background, .homies-container .about-background {
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/c_scale,f_auto,q_auto/v1668442453/new%20assets/Home%20Page/DSC05695_oxisco.webp") center center no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.about-container .about-background:hover, .activity-container .about-background:hover, .gallery-container .about-background:hover, .homies-container .about-background:hover {
  transform: scale(1.2);
}
.about-container .concept-heading, .activity-container .concept-heading, .gallery-container .concept-heading, .homies-container .concept-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}
.about-container .concept, .activity-container .concept, .gallery-container .concept, .homies-container .concept {
  background-color: black;
}
.about-container .concept-description, .activity-container .concept-description, .gallery-container .concept-description, .homies-container .concept-description {
  color: #ababab;
}
.about-container .stats-background, .activity-container .stats-background, .gallery-container .stats-background, .homies-container .stats-background {
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/c_scale,f_auto,q_auto/v1668442453/new%20assets/Home%20Page/DSC00064_situau.webp") center center no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.about-container .stats-background:hover, .activity-container .stats-background:hover, .gallery-container .stats-background:hover, .homies-container .stats-background:hover {
  transform: scale(1.2);
}
.about-container .stats-heading, .activity-container .stats-heading, .gallery-container .stats-heading, .homies-container .stats-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: black;
}
.about-container .stats ul, .activity-container .stats ul, .gallery-container .stats ul, .homies-container .stats ul {
  list-style: none;
  color: black;
}
.about-container .stats ul li, .activity-container .stats ul li, .gallery-container .stats ul li, .homies-container .stats ul li {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  border-bottom: 3px solid #eb2f5b;
}
.about-container .gallery, .activity-container .gallery, .gallery-container .gallery, .homies-container .gallery {
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/c_scale,f_auto,q_auto/v1668442453/new%20assets/Home%20Page/DSC05647_vv6hwh.webp") center center no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.about-container .gallery a, .activity-container .gallery a, .gallery-container .gallery a, .homies-container .gallery a {
  text-decoration: none;
  color: white;
}
.about-container .gallery a h1, .activity-container .gallery a h1, .gallery-container .gallery a h1, .homies-container .gallery a h1 {
  font-size: 2.8rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.about-container .gallery a h1::before, .activity-container .gallery a h1::before, .gallery-container .gallery a h1::before, .homies-container .gallery a h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24rem;
  height: 0.8rem;
  background-color: #fed841;
  z-index: -1;
}
.about-container .gallery:hover, .activity-container .gallery:hover, .gallery-container .gallery:hover, .homies-container .gallery:hover {
  transform: scale(1.2);
}
.about-container .testimonial, .activity-container .testimonial, .gallery-container .testimonial, .homies-container .testimonial {
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/c_scale,f_auto,q_auto/v1668442453/new%20assets/Home%20Page/DSC04158_jsolsz.webp") center center no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.about-container .testimonial:hover, .activity-container .testimonial:hover, .gallery-container .testimonial:hover, .homies-container .testimonial:hover {
  transform: scale(1.2);
}
.about-container .quote, .activity-container .quote, .gallery-container .quote, .homies-container .quote {
  background-color: #fed841;
}
.about-container .quote h1, .activity-container .quote h1, .gallery-container .quote h1, .homies-container .quote h1 {
  color: black;
}
.about-container .quote h1 span, .activity-container .quote h1 span, .gallery-container .quote h1 span, .homies-container .quote h1 span {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.4;
}
.about-container .quote h2, .activity-container .quote h2, .gallery-container .quote h2, .homies-container .quote h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: black;
}
.about-container .quote p, .activity-container .quote p, .gallery-container .quote p, .homies-container .quote p {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #777;
}
.about-container .joindxb, .activity-container .joindxb, .gallery-container .joindxb, .homies-container .joindxb {
  background-color: black;
}
.about-container .joindxb h1, .activity-container .joindxb h1, .gallery-container .joindxb h1, .homies-container .joindxb h1 {
  color: #eb2f5b;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  text-align: center;
}
.about-container .joindxb p, .activity-container .joindxb p, .gallery-container .joindxb p, .homies-container .joindxb p {
  width: 80%;
  line-height: 1.8;
  color: white;
  font-size: 2rem;
}
.about-container .joindxb button, .activity-container .joindxb button, .gallery-container .joindxb button, .homies-container .joindxb button {
  background-color: #eb2f5b;
  color: white;
  border: none;
  padding: 1.3rem 3.1rem;
  border-radius: 10rem;
  font-weight: 600;
}
.about-container .joindxb button:hover, .activity-container .joindxb button:hover, .gallery-container .joindxb button:hover, .homies-container .joindxb button:hover {
  transition: 0.5s;
  background-color: #fed841;
}
.about-container .partners, .activity-container .partners, .gallery-container .partners, .homies-container .partners {
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/c_scale,f_auto,q_auto/v1668442453/new%20assets/Home%20Page/DSC04207_rkw5s4.webp") center center no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.about-container .partners:hover, .activity-container .partners:hover, .gallery-container .partners:hover, .homies-container .partners:hover {
  transform: scale(1.2);
}
.about-container .homies-heading, .activity-container .homies-heading, .gallery-container .homies-heading, .homies-container .homies-heading {
  font-size: 2.2rem;
  color: #eb2f5b;
  letter-spacing: 0.2em;
}
.about-container .contact, .activity-container .contact, .gallery-container .contact, .homies-container .contact {
  background-color: #eb2f5b;
}
.about-container .contact p, .activity-container .contact p, .gallery-container .contact p, .homies-container .contact p {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: white;
}
.about-container .contact h1, .activity-container .contact h1, .gallery-container .contact h1, .homies-container .contact h1 {
  font-size: 4.6rem;
  text-align: center;
  width: 90%;
  font-weight: 900;
  color: black;
}
.about-container .contact a, .activity-container .contact a, .gallery-container .contact a, .homies-container .contact a {
  font-size: 4.6rem;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  color: white;
}

.overflow-hidden {
  overflow: hidden;
}

.css-selector {
  background: linear-gradient(302deg, #e01e49, #981865, #782a89, #412f84);
  background-size: 800% 800%;
  animation: gradient 5s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 20% 0%;
  }
  50% {
    background-position: 81% 100%;
  }
  100% {
    background-position: 20% 0%;
  }
}
@media (max-width: 592px) {
  #event-img {
    width: 80vw !important;
  }
  #event-popup {
    height: 80vh !important;
  }
}/*# sourceMappingURL=index.css.map */