:root {
  --primary-color: #476eac;
  --secondary-color: #c0192b;
  --light-blue: #1d376d;
  --gray-shade: #313039;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  transition: all 0.6s;
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", serif;
}

.main-width {
  max-width: 1600px;
  width: 90%;
  margin: auto;
}

.white-grid {
  background: linear-gradient(
    179deg,
    rgba(255, 255, 255, 0.9) 10.19%,
    rgba(255, 255, 255, 0.81) 19.09%,
    rgba(255, 255, 255, 0.54) 37.78%
  );
}
.img-grid {
  background: linear-gradient(
    181deg,
    rgba(255, 255, 255, 0.7) 11.26%,
    rgba(255, 255, 255, 0.8) 60.09%
  );
}
.color-grid {
  background: linear-gradient(
    180deg,
    rgba(192, 25, 43, 0.81) 0%,
    rgba(25, 59, 115, 0.77) 100%
  );
}
.members-images {
  width: 280px;
  height: 280px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(192, 25, 43, 0.4) 0%,
    rgba(71, 110, 172, 0.4) 100%
  );
}

@media (min-width: 1281px) {
  .heading1 {
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .heading1 {
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .heading1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
  }
}
@media (max-width: 769px) {
  .heading1 {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 22px;
  cursor: pointer;
  z-index: 20;
  background: transparent;
  border: none;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Transform hamburger to X */
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #212657;
  color: white;
  transition: left 0.3s ease;
  z-index: 15;
  overflow-y: auto;
  padding-top: 20px;
}

.mobile-nav.active {
  left: 0;
}

/* Mobile Navigation Links */
.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  text-decoration: none;
}

/* Close Hamburger Button */
.close-hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Cross (X) Style for Close Button */
.close-hamburger .line:nth-child(1) {
  transform: rotate(0);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(0);
}

.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger.active .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent Scrolling */
body.nav-open {
  overflow: hidden;
}

.truncate-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
}

.dropdown {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  perspective: 1000px;
  z-index: 100;
}

.dropdown:hover {
  cursor: pointer;
}

.dropdown:hover .dropdown_menu li {
  display: block;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  perspective: 1000px;

  width: 350px;
  overflow: hidden;
  z-index: -1;
}

.dropdown_menu li {
  display: none;
  color: #313039;
  background-color: #fff;
  padding: 7px 10px;
  width: 100%;
  font-size: 14px;
  opacity: 0;
}

.dropdown_menu-2 .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateX 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateX 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateX 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateX 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-5 {
  transform-origin: top center;
  animation: rotateX 300ms 300ms ease-in-out forwards;
}

@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4caf50;
  margin: 0 auto 20px;
  position: relative;
  animation: grow 0.5s ease-in-out;
}
.background {
  width: 100%;
  height: 100%;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulsate 1s infinite;
}

.checkmark {
  width: 40px;
  height: 20px;
  border-left: 5px solid white;
  border-bottom: 5px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  animation: draw 0.5s ease-out 0.5s;
}
@keyframes grow {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes pulsate {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes draw {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    width: 40px;
    height: 0;
  }
  100% {
    width: 40px;
    height: 20px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 769px) {
  .banner-cont {
    width: 99%;
    display: flex;
    flex-direction: column-reverse;
  }
  .banner {
    display: none !important;
  }
  .banner2 {
    width: 75%;
    margin: auto;
  }
  .banner img {
    margin: auto !important;
  }
  .child-cont-mine {
    border-radius: 10px !important;
  }
  .comp-redd {
    margin: 3% 5.6% !important;
    font-size: 13px;
    /*border:4px solid;*/
  }
  .comp-reddd {
    margin: 3% 5.6% !important;
    font-size: 13px;
  }
  .comp-reddd table {
    width: 99% !important;
  }
}
@media only screen and (min-width: 770px) and (max-width: 1200px) {
  .banner-cont {
    width: 99%;
    display: flex;
    flex-direction: column-reverse;
  }
  .banner {
    display: none !important;
  }
  .banner2 {
    width: 75%;
    margin: auto;
  }
  .banner img {
    margin: auto !important;
  }
  .child-cont-mine {
    border-radius: 10px !important;
  }
  .comp-reddd {
    margin: 3% 5.6% !important;
    font-size: 13px;
  }
  .comp-reddd table {
    width: 99% !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .comp-reddd {
    /*margin:3% 5.6% !important;*/
    font-size: 13px;
  }
  .comp-reddd table {
    width: 99% !important;
  }
}

.btn-circle-download {
  position: relative;
  height: 48px;
  width: 48px;
  margin: auto;
  border-radius: 100%;
  background: #e8eaed;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.btn-circle-download:after {
  content: "";
  position: relative;
  display: block;
  width: 200%;
  height: 100%;
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
}

.btn-circle-download svg {
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn-circle-download svg#border {
  position: absolute;
  top: 0;
  left: 0;
  stroke: none;
  stroke-dasharray: 144;
  stroke-dashoffset: 144;
  transition: all 0.9s linear;
}

.btn-circle-download svg#arrow {
  position: absolute;
  top: 14px;
  left: 17px;
  stroke: #9098a9;
  transition: all 0.2s ease;
}

.btn-circle-download svg#check {
  position: absolute;
  top: 17px;
  left: 13px;
  stroke: white;
  transform: scale(0);
}

.btn-circle-download:hover {
  background: rgba(0, 0, 0, 0.2);
}

.btn-circle-download:hover #arrow path,
.btn-circle-download:hover #arrow polyline {
  stroke: #000000;
}

.btn-circle-download.load {
  background: rgba(0, 0, 0, 0.2);
}

.btn-circle-download.load #arrow path,
.btn-circle-download.load #arrow polyline {
  stroke: #000000;
}

.btn-circle-download.load #border {
  stroke: #90ee90;
  stroke-dasharray: 144;
  stroke-dashoffset: 0;
}

.btn-circle-download.done {
  background: #90ee90;
  animation: rubberBand 0.8s;
}

.btn-circle-download.done:after {
  transform: translateX(50%);
  transition: transform 0.4s ease;
  transition-delay: 0.7s;
}

.btn-circle-download.done #border,
.btn-circle-download.done #arrow {
  display: none;
}

.btn-circle-download.done #check {
  transform: scale(1);
  transition: all 0.2s ease;
  transition-delay: 0.2s;
}

@keyframes rubberBand {
  from {
    transform: scale(1, 1, 1);
  }
  30% {
    transform: scale3d(1.15, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.15, 1);
  }
  50% {
    transform: scale3d(1.1, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

@media only screen and (min-width: 300px) and (max-width: 769px) {
  .cont-mine {
    width: 100% !important;
    margin: auto;
  }
  .child-cont-mine {
    width: 90% !important;
    margin: 5% auto !important;
  }
}

.container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
.banner-cont {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4caf50;
  margin: 0 auto 20px;
  position: relative;
  animation: grow 0.5s ease-in-out;
}
.background {
  width: 100%;
  height: 100%;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulsate 1s infinite;
}

.checkmark {
  width: 40px;
  height: 20px;
  border-left: 5px solid white;
  border-bottom: 5px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  animation: draw 0.5s ease-out 0.5s;
}
@keyframes grow {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes pulsate {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes draw {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    width: 40px;
    height: 0;
  }
  100% {
    width: 40px;
    height: 20px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 769px) {
  .banner-cont {
    width: 99%;
    display: flex;
    flex-direction: column-reverse;
  }
  .banner {
    display: none !important;
  }
  .banner2 {
    width: 75%;
    margin: auto;
  }
  .banner img {
    margin: auto !important;
  }
  .child-cont-mine {
    border-radius: 10px !important;
  }
  .comp-redd {
    margin: 3% 5.6% !important;
    font-size: 13px;
    /*border:4px solid;*/
  }
  .comp-reddd {
    margin: 3% 5.6% !important;
    font-size: 13px;
  }
  .comp-reddd table {
    width: 99% !important;
  }
}
@media only screen and (min-width: 770px) and (max-width: 1200px) {
  .banner-cont {
    width: 99%;
    display: flex;
    flex-direction: column-reverse;
  }
  .banner {
    display: none !important;
  }
  .banner2 {
    width: 75%;
    margin: auto;
  }
  .banner img {
    margin: auto !important;
  }
  .child-cont-mine {
    border-radius: 10px !important;
  }
  .comp-reddd {
    margin: 3% 5.6% !important;
    font-size: 13px;
  }
  .comp-reddd table {
    width: 99% !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .comp-reddd {
    /*margin:3% 5.6% !important;*/
    font-size: 13px;
  }
  .comp-reddd table {
    width: 99% !important;
  }
}

@media only screen and (min-width: 300px) and (max-width: 769px) {
  .child-cont-mine {
    width: 100% !important;
  }
  .regis-papapa {
    font-size: 14px;
  }
}

.dropdownd {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  height: 0;
  display: none; /* Hidden by default */
  transition: opacity 0.5s ease, height 0.5s ease;
}

.dropdown-toggle:hover {
  cursor: pointer;
}

.dropdownd.showing {
  display: block; /* Make it visible for animation */
}

.dropdownd.visible {
  opacity: 1;
}

.rounded-grid {
  background: linear-gradient(
    180deg,
    rgba(192, 25, 43, 0.4) 0%,
    rgba(71, 110, 172, 0.4) 100%
  );
}

.round-grid2 {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(71, 110, 172, 0.4) 100%
  );
}
.section {
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.section.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.link {
  position: relative;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease-in-out;
}

.link.active {
  color: #fff;
}

.link:hover::after,
.link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.link::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #a545a5;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.45s ease-out;
}

              .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  /* border-radius: 20px; */
  transition: transform 400ms;
  transform: scale(0.9);
  transform-origin: center center;
}

.splide__slide.is-active img {
  transform: scale(1);
}

.splide .splide__arrow {
  top: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  border-radius: unset;
  width: 50px;
  opacity: 0.9;
}

.splide .splide__arrow svg {
  filter: invert(1);
  width: 24px;
  height: 24px;
}

.splide__arrow.splide__arrow--prev,
.splide__arrow.splide__arrow--next {
  height: 40px;
  top: -60px;
  display: none;
  background-color: transparent;
  border-radius: 4px;
  width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
          
