/* general styling starts */
/* * {
background: #000 !important;
color: #0f0 !important;
outline: solid #f00 1px !important;
} */

* {
  margin: 0;
  box-sizing: border-box;
}

:root {
  --mc: #fabc0c;
  --sc: #ff1493;
  --bc: #171717;
}

figure img {
  width: 100%;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 70px;
  margin: 0;
}

input[type="submit"] {
  cursor: pointer;
}

.main_col {
  color: #144685 !important;
}

button {
  cursor: pointer;
}

.fade {
  animation: fade 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.imgp {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fd {
  display: flex;
  flex-direction: column;
}

button {
  border: none;
}

.al {
  align-items: center;
  justify-content: center;
}

/* cta styling starts */

.cta {
  padding: 10px;
  /* border-radius: 10px; */
  /* border: 2px solid var(--mc); */
  background: var(--mc);
  color: #fff;
  transition: 0.5s;
  width: max-content;
  position: relative;
}

.cta::before,
.cta::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
  outline: 0 !important;
  outline-offset: 0;
  position: absolute;
  content: "";
  margin: 0px;
}
.cta::before {
  bottom: -5px;
  left: -5px;
  border-left: 2px solid var(--mc);
  border-bottom: 2px solid var(--mc);
}
.cta::after {
  top: -5px;
  right: -5px;
  border-right: 2px solid var(--mc);
  border-top: 2px solid var(--mc);
}
.cta:hover::before,
.cta:hover::after {
  width: calc(99% + 10.5px);
  height: calc(99% + 10.5px);
}

.ctas {
  padding: 10px;
  /* border-radius: 10px; */
  /* border: 2px solid var(--mc); */
  background: var(--sc);
  color: #fff;
  transition: 0.5s;
  width: max-content;
  position: relative;
}

.ctas::before,
.ctas::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
  outline: 0 !important;
  outline-offset: 0;
  position: absolute;
  content: "";
  margin: 0px;
}
.ctas::before {
  bottom: -5px;
  left: -5px;
  border-left: 2px solid var(--sc);
  border-bottom: 2px solid var(--sc);
}
.ctas::after {
  top: -5px;
  right: -5px;
  border-right: 2px solid var(--sc);
  border-top: 2px solid var(--sc);
}
.ctas:hover::before,
.ctas:hover::after {
  width: calc(99% + 10.5px);
  height: calc(99% + 10.5px);
}

/* cta styling ends */

/* signup page starts */

.sign_container {
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.sign_container .form {
  width: 462px;
  min-height: 550px;
  border-radius: 15.587px;
  background: #fff;
  padding: 13px;
  margin: auto 0;
  position: fixed;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, 1%);
}

.sign_container .form .form_header {
  padding: 13px;
  border-bottom: 1px solid #d9d9d9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sign_container .form .form_header h3 {
  color: #292d32;
  font-family: DM Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.sign_container .form .form_header img {
  position: absolute;
  right: 5px;
  height: 15px;
  width: 15px;
}

.sign_container .form .form_body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}

.sign_container .form .form_body .input_cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.sign_container .form .form_body .input_cont p {
  color: #000;
  font-family: DM Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.28px;
  margin-left: 5px;
}

.sign_container .form .form_body .input_cont input {
  width: calc(100%);
  padding: 13px;
  /* height: 51px; */
  border-radius: 8px;
  border: 0.8px solid #d9d9d9;
}

.sign_container .form .form_body .input_cont img {
  position: absolute;
  bottom: 17px;
  right: -4%;
  height: 18px;
  cursor: pointer;
}

.sign_container .form .form_body .submit {
  display: flex;
  width: 100%;
  height: 51px;
  padding: 15px 135px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--mc);
  border: none;
  color: #fff;
  font-family: DM Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.32px;
  margin: 10px 0;
}

.sign_container .form .form_body .or {
  color: #292d32;
  font-family: DM Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.28px;
  position: absolute;
  bottom: -12px;
  left: 43%;
  padding: 5px 24px;
  background: #fff;
}

.form_footer {
  padding: 15px 0;
}

.google_sign {
  display: flex;
  padding: 15px 106px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  border: 0.8px solid #d9d9d9;
  background: #fff;
}

.google_sign img {
  height: 20px !important;
  width: 20px !important;
}

.google_sign h3 {
  color: #222;
  font-family: DM Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.32px;
}

.form_footer .text {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 15px;
}

.form_footer .text h2 {
  color: #5e5e5e;
  font-family: DM Sans;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.form_footer .text a {
  color: var(--mc);
  font-family: DM Sans;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.signin {
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
}

.form .check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.form .check input {
  accent-color: var(--mc);
  width: 21px;
  height: 21px;
}

.form .check label {
  color: #5e5e5e;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.24px;
}

.form a {
  color: var(--mc);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.24px;
}

/* signup page ends */

/* general styling ends */

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

header {
  position: fixed;
  height: 70px;
  width: 100%;
  backdrop-filter: blur(20px);
  top: 0;
  left: 0;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  background: #fff;
}

.mobile_links {
  display: none;
}

.menu {
  display: none;
}

header .logo {
  height: 55px;
  width: auto;
}

header .links {
  display: flex;
  gap: 40px;
  align-items: center;
}

header .links .link {
  color: var(--bc);
}

header .links .link a {
  color: var(--bc);
}

header .links .link a:hover {
  color: #6610f2;
}

header .links .link.active a {
  color: #6610f2;
}

header .links .link.active a:before {
  content: "";
}

header .btns {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #fff;
}

header .btns .signup {
  padding: 10px 20px;
  border-radius: 20px;
  height: max-content;
  cursor: pointer;
  border: 1px solid #fff;
  transition: 0.7s;
  background: transparent;
  border: 1px solid var(--bc);
  color: var(--bc);
  font-size: 16px;
  font-weight: 600;
  line-height: 21.82px;
  text-align: left;
}

header .btns .login {
  cursor: pointer;
  background: var(--mc);
  color: var(--bc);
  border: 1px solid var(--mc);
  font-size: 16px;
  font-weight: 600;
  line-height: 21.82px;
  text-align: left;
}

header .btns .signup:hover {
  box-shadow: inset 200px 0 0 0 var(--mc);
  color: #fff;
  border: 1px solid var(--mc);
}

header .btns .login:hover {
  box-shadow: inset 200px 0 0 0 #000;
  color: #fff;
}

.contain {
  display: flex;
  flex-direction: column;
}

/* banner starts */

.banner {
  padding: 20px;
  padding-bottom: 20px;
  position: relative;
}

.banner.slider-container {
  padding: 0;
}

.banner-inner {
  width: 100%;
  min-height: 500px;
  border-radius: 30px;
  padding: 20px;
}

.banner .texts {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 999;
}

.banner .texts h1 {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.banner .texts p {
  color: #fafafa;
  /* width: 500px; */
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.banner .texts .info {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.banner .texts .info span {
  display: flex;
  padding: 7px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid #fafafa;
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.register {
  display: flex;
  padding: 12px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #fabc0c;
  width: max-content;
  height: max-content;
  transition: 0.2s;
}

.register:hover {
  padding-left: 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 40px;
  width: 92%;
  left: 4%;
  padding: 20px 0;
}

.nav .btns {
  display: flex;
  gap: 60px;
}

.nav .btns button:nth-child(1) {
  border-radius: 50%;
  height: 30px;
  width: 30px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.nav .btns button {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.other-banner .banner-inner {
  z-index: 3;
  position: relative;
}

.other-banner .texts {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
  z-index: 3;
  position: relative;
}

.other-banner .texts h1 {
  color: #171717 !important;
  font-size: 48px;
}

.other-banner .texts p {
  color: #171717 !important;
}

.other-banner .texts span {
  color: #171717 !important;
}

.other-banner .texts p {
  font-size: 16px;
}

.other-banner .texts .left {
  width: 55%;
}

.other-banner .texts .right {
  width: 40%;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.other-banner .texts .right .info {
  gap: 10px;
}

.other-banner .texts .right .info span {
  border: 1px solid var(--bc);
}

.other-banner .register {
  width: 100%;
}

/* slider starts */

.mck_slider {
  /* display: none; */
}

.slider-container {
  overflow: hidden;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
  min-width: 100%;
}

.slide {
  min-width: 100%;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #fff;
  display: inline-block;
  border-radius: 10px;
  margin: 0 2px;
  transition: background-color 0.6s ease;
}

.dots .active {
  width: 40px;
}

/* slider ends */

/* banner ends */

/* about-us starts */

.about-us {
  display: flex;
  flex-direction: column;
  position: relative;
}

.white-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
}

.about-us .text {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  padding: 50px 30px;
  z-index: 3;
  /* align-items: center; */
}

.about-us .text h2 {
  width: 35%;
}

.sec-text {
  position: relative;
  margin: 20px 0;
  color: #1b1b1b;
  font-family: "Nunito Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sec-text::before {
  content: "";
  display: flex;
  width: 200px;
  height: 6px;
  background: var(--bc);
}

.about-us .text p {
  width: 100%;
  color: #1b1b1b;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-us .text a {
  min-width: 10%;
  display: flex;
  justify-content: flex-end;
}

.about-us .images {
  display: flex;
  gap: 2vw;
  width: 100%;
  z-index: 3;
  overflow: hidden;
}

.about-us .images img {
  width: 32vw;
  height: auto;
}

/* about-us ends */

/* partners starts */

.partners {
  background: #fff5d8;
  display: flex;
  padding: 95px 37.5px 94px 37.5px;
  justify-content: center;
  align-items: center;
}

.partners .text {
  gap: 20px;
  width: 100%;
}

.partners .text h2 {
  color: #1b1b1b;
  font-family: "Nunito Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.partners .text p {
  color: #1b1b1b;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.partners .sponsors {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.partners .sponsors img {
  height: 7vw;
  width: auto;
  border-radius: 10px;
}

/* partners ends */

/* events starts */

.home-event {
  position: relative;
}

.home-event .white-overlay {
  padding: 40px;
  z-index: 2;
}

.home-event .text {
  gap: px;
  position: relative;
  z-index: 3;
  padding: 20px;
  padding-bottom: 5px;
}

.home-event .text p {
  color: #000;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.home-event .event-box {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
  z-index: 3;
  padding: 20px;
  padding-top: 0;
}

.home-event .event-box .big-event {
  width: 100%;
}

.home-event .event-box .big-event .texts {
  width: 100%;
  bottom: 40px;
  left: 40px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.home-event .event-box .big-event {
  width: 100%;
  position: relative;
}

.home-event .event-box .event::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.speakers .speaker {
  position: relative;
}

.speakers .speaker::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}

.banner-inner {
  position: relative;
}

.banner-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.home-blog .blog-box .left-blog {
  position: relative;
}

.home-blog .blog-box .left-blog::before {
  position: absolute;
  content: "";
  height: 98%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.events {
  display: flex;
  flex-wrap: wrap;
  justify-content: inherit;
  gap: 20px;
}

.event {
  width: 30vw;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.event img {
  width: 100%;
  height: auto;
  max-height: 80vh;
}

.event .texts {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.event .texts h3 {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.event .texts p {
  display: flex;
  gap: 20px;
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.view-more {
  display: none;
  border-radius: 30px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  display: flex;
  width: calc(100% - 40px);
  height: 60px;
  padding: 8px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 3;
  position: relative;
  color: #171717;
  font-family: Nunito sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 30px;
}

.home-event .view-more {
  margin: 30px 20px;
}

.home-event {
  padding-bottom: 2px;
}

/* events ends */

/* newsletter starts */

.newsletter {
  padding: 65px 40px;
  background: var(--bc);
}

.newsletter .box {
  position: relative;
  border: 1px solid #fafafa;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid #fafafa;
  padding: 70px 20px;
  overflow: hidden;
}

.newsletter .left {
  gap: 15px;
  width: 50%;
  position: relative;
  z-index: 3;
}

.newsletter .left h1 {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.newsletter .left p {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.newsletter .right {
  gap: 10px;
  min-width: 30%;
  position: relative;
  z-index: 3;
}

.newsletter .right p {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.newsletter .right input {
  display: flex;
  width: 32vw;
  height: 60px;
  padding: 0px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid #000;
  background: #fafafa;
  color: rgba(23, 23, 23, 0.6);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.newsletter .right .btn {
  margin-top: 40px;
  color: #171717;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  width: 32vw;
  height: 60px;
  padding: 12px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #fabc0c;
  border: none;
}
/*
.newsletter .right .btn:hover i{
margin-left: 20px;
transition: 0.5s;
} */

/* newsletter ends */

/* blog starts */

.home-blog {
  display: flex;
  flex-direction: column;
  padding: 58px 40px 57px 40px;
  justify-content: center;
  align-items: center;
  background: #fafafa;
}

.home-blog .text {
  gap: 20px;
  width: 100%;
}

.home-blog .blog-box {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.home-blog .blog-box .left-blog {
  position: relative;
  width: 42vw;
  height: 44vw;
}

.home-blog .blog-box .left-blog img {
  height: auto;
}

.home-blog .blog-box .left-blog .texts {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.home-blog .blog-box .left-blog .texts h3 {
}

.home-blog .blog-box .left-blog .texts p {
}

.home-blog .blog-box .left-blog .texts b {
}

.home-blog .blog-box {
  display: flex;
  gap: 0.5vw;
  justify-content: space-between;
}

.blogs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
}

.home-blog .blogs {
  width: 54%;
}

.blogs .blog {
  width: 22vw;
  height: auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blogs .blog .img {
  width: 100%;
  height: 17vw;
}

.blogs .blog .texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
}

.home-blog {
}

.blog_banner {
  height: 40vh;
  color: var(--bc);
  font-size: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: var(--bc); */
  z-index: 3;
  position: relative;
  padding: 0 30px;
}

.banner-image {
  width: 100%;
  position: relative;
  z-index: 3;
  border-radius: 40px;
}

/* blog ends */

/* faq starts */

.faq {
  display: flex;
  flex-direction: column;
  padding: 53.509px 40px 53.491px 40px;
  gap: 60px;
}

.faq .text {
}

.faq .text .sec-text {
  margin-bottom: 0;
}

.faq .questions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq .questions .question {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.faq .questions .question .top {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #171717;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.faq .questions .question p {
  color: #171717;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: none;
}

.Mflex {
  display: flex !important;
}

/* faq ends */

/* footer starts */

footer {
  display: flex;
  width: 100%;
  height: auto;
  padding: 55px 40px 54px 40px;
  justify-content: center;
  align-items: center;
}

footer .box {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #fafafa;
  background: linear-gradient(0deg, #171717 0%, #171717 100%);
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 30px;
}

footer .box p {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}

footer .box .top {
  display: flex;
  justify-content: space-between;
}

footer .box .top .left {
  width: 400px;
}

footer .box .top .left h1 {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

footer .box .top .right {
  display: flex;
  gap: 75px;
  flex-direction: column;
  font-size: 24px;
}

.foot-links {
  display: flex;
  gap: 40px;
}

.foot-links a {
  color: #fafafa;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

.foot-links a:hover {
  color: var(--mc);
}

footer .box .bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #fff;
  align-items: center;
}

footer .box .bottom .left {
  display: flex;
  gap: 20px;
}

footer .box .socials a {
  color: #fff;
}
footer .box .socials {
  display: flex;
  gap: 40px;
  color: #fff !important;
  justify-content: flex-end;
}

/* footer ends */

/* explore starts */

.other.main .sec-text {
  color: #171717;
  font-family: "Nunito Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

.explore {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: space-between;
}

.explore .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 34.7vw;
}

.explore .images {
  width: 63vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop_scroll::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
  display: none;
}

.desktop_scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.desktop_scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.desktop_scroll::-webkit-scrollbar-thumb:hover {
  background: #555; /* color of the handle on hover */
}

.mobile_scroll::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
  display: none;
}

.mobile_scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mobile_scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.mobile_scroll::-webkit-scrollbar-thumb:hover {
  background: #555; /* color of the handle on hover */
}

.explore .images .div {
  width: 400%;
}

.explore .images .img {
  width: 30vw;
  /* height: 22vw; */
}

.explore .images .img img {
  width: 30vw;
  /* height: 22vw; */
}

.desktop_scroll {
  width: 100%;
  overflow: hidden;
}

.explore .images .long-scroll {
  width: 400%;
}
/* explore ends */

/* timer starts */

.timer-container {
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gallery Popup Overlay */
#gallery-image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Semi-transparent dark background */
  display: none; /* Hidden by default; shown via JavaScript */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Slider Container: centers the image and sets max dimensions */
#gallery-image-popup .slider_container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

/* Popup Image Styles */
#gallery-image-popup .mck_slider {
  min-height: 400px;
  width: 300px;
  /* width: 100%; */
  /* height: 100%; */
  background-size: contain; /* Ensure the image fits inside the container */
  background-repeat: no-repeat;
  background-position: center;
  display: none; /* Only the active image will be displayed */
}

/* Optional: Fade-in transition for images */

#gallery-image-popup .mck_slider.active {
  display: block;
  opacity: 1;
}

/* Navigation Controls (Arrows) */
#gallery-image-popup .controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* So only the icons receive clicks */
  padding: 0 20px;
}

#gallery-image-popup .controls i {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  pointer-events: all; /* Enable clicking on the icons */
}

/* Close Button Style */
#gallery-image-popup [data-cancel] {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.timer-container .text {
  z-index: 3;
}

.timer-container .text h3 {
  color: #fafafa;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.timer-container .text p {
  color: #fafafa !important;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.timer-box {
  z-index: 3;
  display: flex;
}

.timer-box .timer {
  padding: 50px;
  position: relative;
  gap: 0px;
}

.timer-box .timer::before {
  content: "";
  width: 1px;
  height: 82px;
  position: absolute;
  right: 0;
  top: 35%;
  background: #fff;
}

.timer-box .timer:nth-child(4)::before {
  display: none;
}

.timer-box .timer h3 {
  color: #fafafa;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.timer-box .timer p {
  color: #fafafa !important;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.timer-container .btns {
  display: flex;
  gap: 120px;
  z-index: 3;
  margin-top: 30px;
}

.timer-container .btns a {
  color: #fafafa;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  width: 32vw;
  height: 60px;
  padding: 10px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid #fafafa;
  background: transparent;
}

/* timer ends */

/* speakers starts */

.speakers-container {
  gap: 40px;
  position: relative;
  padding: 30px 0;
}

.speakers-container .texts {
  z-index: 3;
  padding-left: 3%;
}

.speakers-container .texts p {
  /* display: none; */
}

.speakers {
  display: flex;
  gap: 20px;
  z-index: 3;
  align-items: center;
  justify-content: center;
}

.speakers .speaker {
  display: flex;
  width: 13.9vw;
  height: 40.7vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(<path-to-image>) lightgray 50% / cover no-repeat, #d9d9d9;
  position: relative;
  cursor: pointer;
}

.speakers .speaker.active {
  width: 48.6vw;
  flex-shrink: 0;
}

.speakers .speaker .text {
  border-bottom: 2px solid #fabc0c;
  position: absolute;
  bottom: 50px;
  left: 40px;
  display: none;
}

.speakers .speaker.active .text {
  display: flex;
  flex-direction: column;
}

.speakers .speaker .text h3 {
  color: #fff;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.speakers .speaker .text p {
  color: #fff !important;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* speakers ends */

/* schedules starts */

.schedules {
  padding: 10vw 2.7vw;
  gap: 40px;
}

.schedules .text {
  width: 50vw;
}

.schedules .text p {
  color: #171717;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.schedules .tab {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.schedules .tab .header {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.schedules .tab .header span {
  display: flex;
  width: 12.3vw;
  height: 50px;
  padding: 8px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.schedules .tab .header span.active {
  background: #171717;
  color: #fafafa !important;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.schedules .tab .tab-content {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.schedules .tab .active {
  display: flex !important;
}

.schedules .tab .tab-content .column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.schedules .tab .tab-content .column .box {
  display: flex;
  gap: 2.7vw;
}

.schedules .tab .tab-content .column .box .time {
  width: 90px;
}

.schedules .tab .tab-content .column .box .right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.schedules .tab .tab-content .column .box .right h4 {
  color: #171717;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.schedules .tab .tab-content .column .box .right p {
  color: #777 !important;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* schedules ends */

/* evt-gallery starts */

.evt-gallery {
  padding: 78px 2.3vw;
  background: #fafafa;
}

.evt-gallery .texts {
  width: 565px;
}

.gall {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 120px;
  align-items: center;
  justify-content: center;
}

.gall .img {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 20.83vw;
}

.gall .img:nth-child(1) {
  width: 40.7vw;
}

.gall .img:nth-child(2) {
  width: 19.83vw;
}

.gall .img:nth-child(3) {
  width: 29.83vw;
}

.gall .img:nth-child(4) {
  width: 19.83vw;
}

.gall .img:nth-child(5) {
  width: 29.83vw;
}

.gall .img:nth-child(6) {
  width: 40.7vw;
}

/* evt-gallery ends */

/* testimonials starts */

.testimonials-cont {
  gap: 80px;
  align-items: center;
  padding: 72px 40px;
}

.testimonials-cont .texts {
  width: 63vw;
  gap: 15px;
}

.testimonials-cont .texts {
  color: #171717;
  font-family: "Nunito Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.testimonials-cont .texts {
  color: #171717;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testimonials {
  display: flex;
  gap: 10px;
  width: max-content;
}

.testimonials .box {
  display: flex;
  width: 27vw;
  padding: 2vw 4vw;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
  border-radius: 10px;
  border: 1px solid #171717;
  background: #fafafa;
}

.testimonials .box i {
  font-size: 40px;
}

.testimonials .box p {
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.testimonials .box .profile {
  display: flex;
  padding: 10px 0;
  border-top: 1px solid #171717;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.testimonials .box .profile img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.testimonials .box .profile h3 {
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* testimonials ends */

/* blog_text starts */

.main_text_starts {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile_scroll {
  width: 100%;
  overflow: auto;
}

.main_text_starts p {
  color: #171717;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-align: justify;
  line-height: 2;
}
.desktop_scroll {
  width: 100%;
  overflow: auto;
  display: flex;
  gap: 10px;
}

/* blog_text ends */

/* resources starts */

.resources {
  padding: 95px 37.5px 94px 37.5px;
  gap: 20px;
}

.resources .texts {
}

.resource {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 3vw;
  column-count: 3;
}

.resource .item {
  overflow: hidden;
  /* width: 23vw; */
  gap: 10px;
}

.resource .item .img {
  border-radius: 20px;
  height: 18vw;
  width: 100%;
}

.resource .item .text {
}

.resource .item .text .period {
  display: flex;
  justify-content: space-between;
}

.resource .item .text .period h4 {
  color: #171717;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: justify;
  line-height: 2;
}

.resource .item .text h3 {
  color: #171717;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  text-align: justify;
  line-height: 2;
  text-transform: uppercase;
}

.resource .item .text p {
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: justify;
  line-height: 2;
}

.embed-video {
}

.embed-video iframe {
  border-radius: 20px;
  height: 70vh;
}

.resource-gallery {
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
  column-count: 3;
}

.resource-gallery .img {
  height: 22vw;
  /* width: 22vw; */
  border-radius: 20px;
  break-inside: avoid;
  margin-top: 10px;
}
/* resources ends */
