/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #585a61;
  background-color: #ffffff;
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

#myVideo {
  position: fixed;
  /* right: -25%; */
  /* bottom: -15%; */
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  /* filter: blur(1px); */
  /* filter: contrast(130%); */
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: radial-gradient(rgb(140, 45, 164), rgb(36, 3, 44));
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  /* background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 5px #000; */
}

#header.header-transparent {
  background: transparent;
  box-shadow: 0 0 5px #000;
}

#header.header-scrolled {
  background: #001858;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #5777ba;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background-image: linear-gradient(90deg, #972b4b, #345eb1);
  color: #000;
  padding: 12px 25px;
  margin: 10px 0 10px 20px;
  /* margin-left: 240px; */
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background-image: linear-gradient(90deg, #972b4b, #345eb1);
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  width: 350px;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #001858;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5777ba;
  border-bottom: 0px;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-bottom: 0px;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5777ba;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5777ba;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 110px 0 0 0;
  border-bottom: 1px solid #000;
  background: url("../img/dubaibg1.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* filter: contrast(130%); */
}

#hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
  /* background-image: linear-gradient(90deg, #0000009a, #0000009a); */
    background-image: linear-gradient(90deg, #0418557c, #041855ce);
  /* background: #ffffff; */
  /* transform: skewY(150deg); */
}

.bg-box {
  background-image: linear-gradient(360deg, #1d1846, #441e42);
  /* margin-top: -100px; */
  z-index: 1;
  /* position: absolute; */
  /* width: 40%;
  left: 30%; */
  padding-bottom: 30px;
  border: 2px solid #fff;
  box-shadow: 0 0 5px #000;
}

@media (max-width: 1600px) {
  .bg-box {
    width: 60%;
    left: 20%;
  }
}

@media (max-width: 991px) {
  .bg-box {
    width: 80%;
    position: relative;
    margin-top: 0px;
  }
}

.bg-box h2 {
  color: #fff;
}

#hero h1 {
  /* margin: 0 0 10px 0; */
  /* font-size: 30px; */
  font-weight: 500;
  color: #221f1f;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

#hero h1 span {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 600;
  margin-top: 40px;
  color: #f89b32;
  font-family: "Montserrat", sans-serif;
}

#hero h2 {
  color: #fff;
  font-weight: 500;
  z-index: 1;
  /* position: relative; */
  filter: drop-shadow(-1px 1px #000);
  line-height: 42px;
}

#hero h3 {
  color: #fff;
  font-weight: 500;
  z-index: 1;
  position: relative;
  filter: drop-shadow(-1px 1px #000);
}

#hero h2 sup {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

#hero h3 i {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  /* text-shadow: 0 0 5px #bc0a82; */
}

#hero h5 {
  background-image: linear-gradient(0deg, #1c183c, #371935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

#hero .download-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  width: 100%;
  /* padding: 20px 36px 10px 66px; */
  border-radius: 8px;
  transition: 0.3s;
  color: #fff;
   filter: drop-shadow(-1px 1px #000);
  background-color: #001858;
  position: relative;
  border: 1px solid #fff;
}

#hero .download-btn:hover {
  background-color: #0248bd;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  color: #ffffff;
}

#hero .download-btn i {
  font-size: 38px;
  position: absolute;
  left: 2px;
  top: 3.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .download-btn+.download-btn {
    margin: 0 10px;
  }
}

#hero .hero-img {
  text-align: center;
  position: relative;
  filter: drop-shadow(-1px 1px 0 #000);
  /* filter: contrast(500%); */

  /* animation: zoom 5s ease-in-out infinite; */
}

@keyframes zoom {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.0);
  }

  100% {
    transform: scale(0.9);
  }
}

#hero .hero-img img {
  width: 60%;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    /* margin-bottom: 30px; */
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

.download-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 10px 36px 10px 36px;
  border-radius: 8px;
  transition: 0.3s;
  color: #fff;
  background: #3e4095;
  position: relative;
}

.download-btn:hover {
  background: #02164b;
  color: #fff;
  /* transform: scale(1.1); */
  transition: 0.3s ease-in-out;
  font-weight: 600;
}

.details1 {
  background-image: linear-gradient(180deg, #1c183c7c, #371935);
  padding: 20px;
  color: #fff;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
  box-shadow: 0 0 5px #000;
}

.section-bg1 {
  background-color: #ffffff;
}

.section-bg2 {
  background: #20143f;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  /* font-size: 32px; */
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 0;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
}

.section-title h4 {
  /* font-size: 32px; */
  /* font-weight: 600; */
  /* margin-bottom: 20px; */
  padding-bottom: 0;
  background: -webkit-linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
}

.section-title1 {
  text-align: center;
  padding-bottom: 10px;
}

.section-title1 h1 {
  /* font-size: 32px; */
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.section-title p {
  margin-bottom: 0;
}

.partner {
  border-bottom: 2px solid #e8ecf5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f6f8fb;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
/* #features1 {
  background-image:linear-gradient(18deg, #000000a2 0%, #000000a2 100%), url('../img/bg-awards.jpg');
  background-repeat: no-repeat;
  background-size: cover;
} */

.features .content {
  padding: 30px 0;
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 36px;
  float: left;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features .content .icon-box p {
  font-size: 17px;
  color: #000000;
  font-weight: 600;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}



#features1 .card-inverse h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  font-size: 24px;
  font-weight: 700;
  pointer-events: none;
  opacity: 1;
  width: 70%;
  text-align: center;
}

#features1 .card-inverse .gold-text {
  position: relative;
  margin-bottom: 30px;
  color: #fff;
  background-image: linear-gradient(to right, #c1bb84 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #c1bb84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
  font-weight: 700;
  transition: all .3s linear;
}

#features1 .article {
  margin-top: 50px;
}


#features1 .btn-get-started {
  font-size: 18px;
  /* display: inline-block; */
  padding: 10px 0px 10px;
  border-radius: 50px;
  letter-spacing: 0px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  text-align: center;
  border: 2px solid #084994;
  color: #fff;
  background-color: #084994;
  font-weight: 600;
  position: absolute;
  top: 60%;
  width: 50%;
  display: none;
}

#features1 .card-inverse:hover .btn-get-started {
  display: block;
}

#features1 .button {
  border: none;
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #084994;
  background-color: #fff;
  /* border: 2px dashed #040213; */
  font-size: 18px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  /* letter-spacing: 1px; */
  transition: 0.3s ease-in-out;
  margin: 10px;
  text-align: center;
  border: 1px solid #ffffff;
  color: #fff;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  font-weight: 600;
}

#features1 .button:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #084994;
  background-color: #fff;
  border: 2px solid #040213;
}

/* #features1 .body,
#features1 .body :not(script):not(style),
::before {
  display: grid;
} */

#features1 .body {
  grid-gap: 2em;
  /* grid-template-columns: repeat(auto-fit, Min(100%, 12rem)); */
  place-content: center;
  /* min-height: 100vh; */
  background: #22222200;
  /* font: 900 1.25em/1.25 sans-serif; */
  text-align: center;
  text-transform: capitalize;
  width: 306px;
}

#features1 article {
  --m: calc(.5*(var(--n) - 1));
  --abs: Max(calc(var(--i) - var(--m)), calc(var(--m) - var(--i)));
  --val: calc(var(--abs)*(1 + .5*var(--i))/var(--n));
  --dt0: calc(var(--val)*1s);
  --dt1: calc((var(--val) + 1)*1s);
  --dt2: calc((var(--val) + 1.5)*1s);
  --dt3: calc((var(--val) + 2)*1s);
  --dt4: calc((var(--val) + 2.5)*1s);
  --dt5: calc((var(--val) + 3)*1s);
  overflow: hidden;
  padding-bottom: 1rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: perspective(25em);
  background: #fff content-box;
  filter: drop-shadow(4px 4px 13px);
  -webkit-animation: card 1s ease-out var(--dt0) backwards, cost 1s var(--dt4) backwards;
  animation: card 1s ease-out var(--dt0) backwards, cost 1s var(--dt4) backwards;
  --i: 0;
  /* --cost: 100; */
  --grad: #030a10, #113650;
}

#features1 article ::before,
#features1 article ::after {
  --j: 1;
  --sgn-j: calc(2*var(--j) - 1);
  --not-j: calc(1 - var(--j));
  --mask:
    linear-gradient(calc(var(--sgn-j)*90deg),
      red 33.333%, transparent 66.667%) calc(var(--not-j)*100%)/ 300%;
}

@-webkit-keyframes card {
  0% {
    transform: perspective(25em) rotatey(0.5turn);
  }
}

@keyframes card {
  0% {
    transform: perspective(25em) rotatey(0.5turn);
  }
}

#features1 header {
  grid-gap: 1rem;
  padding: 1rem 0.5em 1rem;
  transform-origin: 100% 100%;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  color: #fff;
  counter-reset: cost var(--cost);
  -webkit-animation: head 1s ease-out var(--dt1) backwards;
  animation: head 1s ease-out var(--dt1) backwards;
}

#features1 header .before1 {
  place-self: center;
  place-content: center;
  border: solid 4px currentcolor;
  width: 100px;
  padding: 15px;
  height: auto;
  border-radius: 50%;
  /* -webkit-animation: ring 1s ease-out var(--dt3) backwards;
  animation: ring 1s ease-out var(--dt3) backwards; */
  /* content: url(/images/trophy.gif) ; */
}

#features1 header::after {
  height: 4px;
  background: currentcolor;
  -webkit-clip-path: inset(0 round 4px);
  clip-path: inset(0 round 4px);
  -webkit-animation: line 1s ease-out var(--dt2) backwards;
  animation: line 1s ease-out var(--dt2) backwards;
  content: "";
  display: block;
}

@-webkit-keyframes head {
  0% {
    transform: translate(-100%) skewx(35deg);
  }
}

@keyframes head {
  0% {
    transform: translate(-100%) skewx(35deg);
  }
}

@-webkit-keyframes ring {
  0% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes ring {
  0% {
    transform: scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes line {
  0% {
    -webkit-clip-path: inset(0 50% round 4px);
    clip-path: inset(0 50% round 4px);
  }
}

@keyframes line {
  0% {
    -webkit-clip-path: inset(0 50% round 4px);
    clip-path: inset(0 50% round 4px);
  }
}

/* #features1 .before,
#features1 .after {
  place-self: center;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  -webkit-animation: text 1s ease-out var(--dt5) backwards;
  animation: text 1s ease-out var(--dt5) backwards;
} */

#features1 .before {
  /* --j: 0;
  -webkit-animation-name: text, move;
  animation-name: text, move;
  content: attr(data-name); */
  font-size: 18px;
  line-height: 24px;
  transition: .3s;
  padding: 15px;
  font-weight: 600;
}

#features1 .after {
  font-size: 16px;
  font-weight: 600;
  content: "subscription";
  line-height: 20px;
  display: none;
  transition: .3s;
  color: #05173a;
  background: #ffffff;
  padding: 5px;
}

#features1 .before:hover+.after {
  display: block;
  transition: .3s;
}

@-webkit-keyframes move {
  0% {
    transform: translate(50%);
  }
}

@keyframes move {
  0% {
    transform: translate(50%);
  }
}

#features1 section {
  margin-bottom: -1rem;
  border-bottom: solid 1rem transparent;
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem));
  padding: 0px;
}

#features1 .button {
  place-content: center;
  /* line-height: 3; */
  -webkit-mask: var(--mask);
  mask: var(--mask);
  cursor: pointer;
  -webkit-animation: text 1s ease-out var(--dt2) backwards;
  animation: text 1s ease-out var(--dt2) backwards;
}

@-webkit-keyframes text {
  0% {
    -webkit-mask-position: calc(var(--j)*100%);
    mask-position: calc(var(--j)*100%);
  }
}

@keyframes text {
  0% {
    -webkit-mask-position: calc(var(--j)*100%);
    mask-position: calc(var(--j)*100%);
  }
}

.features1 .section-title1 h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(90deg, #c1bb84 0,
      #cb9b51 22%,
      #f6e27a 45%,
      #f6f2c0 50%,
      #f6e27a 55%,
      #cb9b51 78%,
      #c1bb84 100%);
  background: linear-gradient(90deg, #c1bb84 0,
      #cb9b51 22%,
      #f6e27a 45%,
      #f6f2c0 50%,
      #f6e27a 55%,
      #cb9b51 78%,
      #c1bb84 100%);
  -webkit-background-clip: text;
  font-weight: 700;
  text-align: center;
  /* filter: drop-shadow(0 0 3px #000000); */
  filter: drop-shadow(0px 0px 1px black);
  font-family: "Montserrat", sans-serif;
}

.features1 {
  background-image: linear-gradient(#001959, #0019593f, #001959), url('../img/awardbg7.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

}

.features1 .section-title {
  margin-bottom: 80px;
  background: -webkit-radial-gradient(#fdc56f, #bb8757, #eeb177);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* background: -webkit-linear-gradient(#ecd355, transparent), -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1) 35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1) 100%); */
  filter: drop-shadow(0 0 6px black);
}

.features1 .kuku h2.special {
  position: relative;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  color: #ffffff;
}

.features1 .kuke h5 {
  /* font-family: "Roboto", "sans-serif"; */
  font-weight: 700px;
  /* color: rgb(255, 255, 255); */
  line-height: 49px;
  font-size: 26px;
  text-align: center;
  vertical-align: baseline;
  text-transform: capitalize;
  background: -webkit-radial-gradient(#fdc56f, #bb8757, #eeb177);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px black);
}

.features1 .card img {

  /* opacity: 0.3; */
}

.features1 .gold-text {
  color: #D5AD6D;
  background: -webkit-linear-gradient(#ecd355, transparent), -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1) 35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1) 100%);
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 55px #000);
}

.features1 .card h2 {
  position: absolute;
  top: 40%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  pointer-events: none;
  opacity: 1;
  text-align: center;
  width: 100%;
}

.topics.container {

  background-color: white;
}

.topics .content h3,
.topics .content h5 {

  color: #ffffff;
}



.contain {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contain .card {
  position: relative;
  width: 250px;
  height: 450px;
  background: #232323;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 12px;
}

.contain .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#ffffff, #edbc2b);
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.contain .card:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.contain .card:after {
  content: "Awards";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 12em;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);

}

.contain .card .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* z-index: 1000; */
  width: 100%;
  height: 100%;
  transition: .5s;
}

.contain .card:hover .imgBx {
  top: 0%;
  transform: translateY(-10%);
  /* bug  */
}

.contain .card .imgBx img {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 80%;
}

.contain .card .contentBx {
  position: absolute;
  bottom: 70px;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 90;
}

.contain .card:hover .contentBx {
  height: 150px;
  bottom: 100px;
}

.contain .card .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  font-size: 20px;
  padding: 0px 10px;
}

.contain .card .contentBx .size,
.contain .card .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.contain .card:hover .contentBx .size {
  opacity: 1;
  visibility: visible;
  transition-delay: .5s;
}

.contain .card:hover .contentBx .color {
  opacity: 1;
  visibility: visible;
  transition-delay: .6s;
}

.contain .card .contentBx .size h3,
.contain .card .contentBx .color h3 {
  color: white;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.contain .card .contentBx .size span {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: .5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.contain .card .contentBx .size span:hover {
  /* other bug */
  background: #B90000;
}

.contain .card .contentBx .color span {
  width: 20px;
  height: 20px;
  background: #ff0;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.contain .card .contentBx .color span:nth-child(2) {
  background: #1BBFE9;
}

.contain .card .contentBx .color span:nth-child(3) {
  background: #1B2FE9;
}

.contain .card .contentBx .color span:nth-child(4) {
  background: #080481;
}

.contain .card .contentBx a {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  opacity: 0;
  transform: translateY(50px);
  transition: .5s;
}

.contain .card:hover .contentBx a {
  opacity: 1;
  transform: translateY(40px);
  transition-delay: .2s;
}




.btn {
  display: block;
  background: #bded7d;
  color: white;
  text-decoration: none;
  margin: 20px 0;
  padding: 15px 15px;
  border-radius: 5px;
  position: relative;
}

.btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0), 0 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.btn:hover::after {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.2);
}

/*--------------------
Form
--------------------*/
.form fieldset {
  border: none;
  padding: 0;
  padding: 10px 0;
  position: relative;
  clear: both;
}

.form fieldset.fieldset-expiration {
  float: left;
  width: 60%;
}

.form fieldset.fieldset-expiration .select {
  width: 84px;
  margin-right: 12px;
  float: left;
}



.form fieldset label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
  font-weight: bold;
font-family: "Montserrat", sans-serif;
}

.form fieldset input,
.form fieldset .select {
  width: 100%;
  height: 38px;
  color: #333333;
  padding: 10px;
  border-radius: 5px;
  font-size: 15px;
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
}

.form fieldset input.input-cart-number,
.form fieldset .select.input-cart-number {
  width: 82px;
  display: inline-block;
  margin-right: 8px;
}

.form fieldset input.input-cart-number:last-child,
.form fieldset .select.input-cart-number:last-child {
  margin-right: 0;
}

.form fieldset .select {
  position: relative;
}

.form fieldset .select::after {
  content: "";
  border-top: 8px solid #222;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 10px;
  pointer-events: none;
}

.form fieldset .select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  padding: 0;
  border: none;
  width: 100%;
  outline: none !important;
  top: 6px;
  left: 6px;
  background: none;
}

.form fieldset .select select :-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.form button {
  width: 100%;
  outline: none !important;
  background: linear-gradient(143deg, #e50c0c, #2e0101);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  border: none;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 90px;
  transition: .3s ease-in-out;
}

.form button:hover {
  width: 100%;
  outline: none !important;
  background: linear-gradient(43deg, #e50c0c, #2e0101);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 90px;
  transform: scale(1.1);
  transition: .3s ease-in-out;
}

.form button .fa {
  margin-right: 6px;
}

/*--------------------
Checkout
--------------------*/
.checkout {
  margin: 150px auto 30px;
  position: relative;
  /* width: 350px; */
  background: linear-gradient(to top, #ffefba, #ffffff00);
  border-radius: 15px;
  padding: 160px 45px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1400px) and (min-width: 1200px) {

  .checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 115px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 1199px) and (min-width: 991px) {

  .checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 130px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 768px) and (min-width: 576px) {

  .checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 245px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 576px) and (min-width: 500px) {

  .checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 270px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 500px) and (min-width: 400px) {

  .checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 220px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 400px) and (min-width: 334px) {

  .checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 220px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

}

/*--------------------
Credit Card
--------------------*/


/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details {
  /* margin-top: 100px; */
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
} 

.details .section-bg1 {
  background-color: linear-gradient(90deg, #972b4b, #345eb1);
}

.details .content h3 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 32px;
  background: -webkit-linear-gradient(18deg, #000 0%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.details .content p {
  /* font-weight: 500; */
  margin-bottom: 20px;
  color: #000;
  /* font-size: 32px; */
  /* background: -webkit-linear-gradient(18deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #5777ba;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  /* background-color: #efefefd9; */
  padding: 20px 0;
}

.gallery .swiper {
  padding: 10px 20px;
}

.gallery .swiper-slide img {
  transition: 0.3s;
  border-radius: 10px;
}

.gallery .swiper-slide img:hover {
  transform: scale(1.1);
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


.team {
  background-image: linear-gradient(90deg, #00000000 0%, #00000000 100%), url(../img/aboutbg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;

}


.team .team-item {
  box-sizing: content-box;
  /* padding: 5px 5px 5px 5px; */
  margin: 10px 10px 10px 10px;
  min-height: 150px;
  box-shadow: 0px 2px 15px #030a10;
  position: relative;
  background-color: #fff;
}

.team .team-item:hover .team-img {
  transform: scale(1.2);
  transition: .3s ease-in-out;
}

.team .team-item .speaker-info {
  padding: 0px 10px 0px 10px;
}

.team .team-item .team-img {
  width: 130px;
  border-radius: 3px;
  border-radius: 50%;
  box-shadow: 0 5px 0px #fff;
  position: absolute;
  left: -25px;
  top: -35px;
  transition: .3s ease-in-out;
}

.team .team-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: rgb(56, 56, 56);
  text-align: right;
}

.team .team-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgb(56, 56, 56);
  margin: 0;
  text-align: right;
}

.team .team-item p {
  font-size: 13px;
  color: rgb(56, 56, 56);
  margin: 0;
  line-height: 18px;
  font-weight: 600;
  text-align: right;
}

#team .contain2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#team .card {
  position: relative;
  width: 100%;
  height: 100%;
  /* height: 450px; */
  /* background-image: linear-gradient(90deg, #1c183c83, #3719357d); */
  /* background-image: linear-gradient(0deg, #1c183c, #371935); */
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
  border: 0px;
  background-color: transparent;
}

#team .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(#48539c, #48539c); */
  /* clip-path: circle(160px at 50% 0%); */
  transition: 0.5s ease-in-out;
}

/* #team .card:hover:before {
  clip-path: circle(300px at 80% -20%);
} */

/* #team .card:after {
  content: "Speaker";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7em;
  font-weight: 800;
  font-style: italic;
  color: #85858554;
  transform: translate(-4%, 10%) rotate(314deg);
} */

#team .card .imgBx {
  position: relative;
  /* top: 50%;
  transform: translateY(-50%); */
  /* z-index: 1000; */
  width: 100%;
  /* height: 100%; */
  transition: .5s;
  z-index: 1;
}

/* #team .card:hover .imgBx {
  top: 0%;
  transform: translateY(-10%); 
} */

#team .card .imgBx img {
  position: relative;
  /* top: 25%;*/
  /* left: 10%;  */
  /* transform: translate(-50%, -50%) rotate(0deg); */
  width: 100%;
  border-top-right-radius: 20%;
  /* border: 4px solid #fff; */
  box-shadow: 0 0 5px #000;
  background-image: linear-gradient(360deg, #1d1846, #441e42);
  padding: 5px;
}

#team .card .contentBx {
  position: relative;
  /* bottom: 70px; */
  width: 100%;
  height: 100%;
  /* height: 100px; */
  /* text-align: center; */
  transition: 1s;
  z-index: 90;
  border-radius: 10px;
  /* height: 150px;
    bottom: 100px; */
}

#team .card .contentBx .name {
  background-image: linear-gradient(360deg, #1d1846, #441e42);
  color: #fff;
}

/* #team .card:hover .contentBx {
  height: 150px;
  bottom: 100px;
} */



#team .card .contentBx p,
#team .card .contentBx h5 {
  display: block;
  padding: 5px 8px;
  /* background: #fff; */
  border-radius: 4px;
  margin-bottom: 0px;
  font-weight: 500;
  color: #371935;
  opacity: 1;
  /* transform: translateY(50px); */
  transition: .5s;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  background: #ffffffe3;
}


.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #3038a0;
  background-image: linear-gradient(0deg, #001858, #001858);
  border-radius: 15px;
  height: 100%;
  min-height: 200px;
}

.testimonials .testimonial-item .info-box {
  min-width: 276px;
  display: flex !important;
  align-items: center !important;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #f7c633;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fff;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
  max-width: 800px;
  text-align: center;
  color: #fff;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000462;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    flex-direction: column;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }

  .mb-50 {
    margin-bottom: 50px;
  }
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 24px;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 25px;
}

.pricing sub {
  background-image: linear-gradient(0deg, #1c183c, #371935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: "Montserrat", sans-serif;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #000;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 16px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #5777ba;
  font-size: 24px;
  padding-right: 4px;
}

.pricing .get-started-btn {
  background-image: linear-gradient(0deg, #1c183c, #371935);
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 25px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {

  background-image: linear-gradient(90deg, #972b4b, #345eb1);
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
  font-weight: 500;
  color: #ffffff;

}

.pricing .get-started-btn:hover {
  background-image: linear-gradient(0deg, #1c183c, #371935);
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #5777ba;
}

.pricing .featured .get-started-btn:hover {
  background: #748ec6;
}

.pricing .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(90deg, #972b4b, #345eb1);
  ;
  border-radius: 100%;
  margin-right: 16px;
}

.pricing .card-number i {

  color: #ffffff;
  font-size: 30px;
}

.pricing .display-bug {
  display: flex;
}

.pricing img {
  position: absolute;
  /* padding-top: 30%; */
  width: 100%;
  left: 0%;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background-image: linear-gradient(90deg, #ffffff78, #ffffffdf), url("../img/speaker_bg.jpeg");
  /* background-color: #e8ecf5; */
  background-size: cover;
}


.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li+li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: #fff;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #fff;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #fff;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #fff;
}

.faq .accordion-list a.collapsed:hover {
  color: #fff;
  filter: drop-shadow(-1px 1px 0 #000);
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 10px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid #fff;
}

.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  color: #8a8c95;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5777ba;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fff;
  border: 2px solid #5777ba;
  padding: 10px 24px;
  color: #5777ba;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5777ba;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer .footer-top {
  padding: 30px 0 30px 0;
  background: #001858;
}

#footer .footer-top .footer-contact img {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 20px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #47536e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9fb2d8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #5777ba;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #5777ba;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffffff;
  color: #000465;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  color: #47536e;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #47536e;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #8c2da4;
  border-radius: 20%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}





.wrapper-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem;
  cursor: pointer;
  justify-content: center;

}

.container1 {
  box-shadow: 0px 2px 8px 0px var(--clr-gray-light);
  box-shadow: 0 0 5px #000;
  text-align: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 410px;
  margin-bottom: 10px;
  /* margin-left: 1rem; */
  background-color: #ffffff;
}

.banner-img {
  position: absolute;
  background-image: linear-gradient(90deg, #972b4b, #345eb1);
  height: 10rem;
  width: 100%;
  height: 25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.profile-img {
  width: 10rem;
  clip-path: circle(80px at center);
  margin-top: 20px;
}

/* .name {
  font-size: 18px;
} */

/* .description {
  margin: 1rem 1rem;
  font-size: 0.9rem;
} */

.btn {
  width: 100%;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: var(--clr-primary);
  padding: 1rem;
}

.btn:hover {
  cursor: pointer;
  background-color: var(--clr-primary);
  opacity: 0.9;
}

/* footer credits */
.footer-heart {
  text-align: center;
  font-family: open sans, sans-serif;
  padding: 20px;
  background-color: var(--clr-gray-light);
}

.footer-heart a {
  border-bottom: 1px solid #453886;
  color: black;
  padding-bottom: 0.25em;
  text-decoration: none;
}

.footer-heart a:hover {
  color: indianred;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23453886' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 20%;
  border-bottom: 0;
  padding-bottom: 0.3em;
  text-decoration: none;
}

.emoji {
  vertical-align: middle;
}


/* .attend1 .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  background: -webkit-linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
font-family: "Montserrat", sans-serif;
}


.attend1 {

  background:linear-gradient(260deg, #0000007d,#00000000) ,url(/assets/img/who_should_attend_17.jpg) center right;
  background-size: cover;
} */

.attend1 .content ul {
  list-style: none;
  padding: 0;
  align-items: center;
  /* display: flex;
  flex-wrap: wrap;
  gap: 10px; */
}

.attend1 .content ul li {
  /* position: relative; */
  color: rgb(19 20 20 / 80%);
  margin-bottom: 5px;
  border-radius: 8px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  /* width: 48%; */
  /* line-height: 50px; */
  align-items: center;
  display: inline-flex;
}

/* .attend1 .content ul li:hover {
  color: #ffb20a;
  margin-left: 10px;
} */

.attend1 .content ul li img {
  color: var(--color-primary);
  background-image: linear-gradient(360deg, #001858, #001858);
  width: 50px;
  padding: 5px;
  border-bottom-left-radius: 20%;
  border-bottom-left-radius: 20%;
}

.attend1 .content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 5px;
}

.attend1 .content ul li {
  position: relative;
  color: rgb(19 20 20 / 80%);
  background: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
  border-radius: 8px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  box-shadow: 0 0 2px #000;
  width: 100%;
}

.attend1 .content ul li h5 {
  padding-left: 10px;
  padding-top: 0px;
  font-size: 15px;
  margin-bottom: 0px;
  font-weight: 500;
}

.attend1 .content ul li:hover {
  color: #000462;
}

.attend1 .content ul i {
  color: var(--color-primary);
}


@media (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}


@media (max-width: 992px) {
  .cid-tlLbHJEfxQ .row {
    margin: 0;
  }
}

@media (max-width: 992px) {
  .cid-tlLbHJEfxQ .row .title-wrapper {
    display: none;
  }
}



.services {
  background-color: #ffffff;
}

.services .icon-boxes:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(50% + 20px);
  background-color: #fff;
}


.services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(360deg, #1d1846, #001858);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  z-index: 1;
  height: 100%;
  width: 100%;
  min-height: 250px;
  /* text-align: center; */
  transition: 0.3s;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
}

.services .icon-box img {
  width: 50px;
}

@media(max-width:991px) {
  .services .icon-box {
    padding: 10px;
    position: relative;
    overflow: hidden;
    /* background: #fafafb; */
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    z-index: 1;
    height: 100%;
    width: 100%;
    /* text-align: center; */
    transition: 0.3s;
    display: block;
    /* align-items: center;
    justify-content: center; */
  }
}

.services .icon-box .title {

  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box .icon {
  /* margin-bottom: 20px; */
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 45px;
  line-height: 1;
  color: #fff;
  transition: 0.5s;
  padding-bottom: 10px;

}

.services p {
  margin-bottom: 0;
  font-weight: 600;
  color: #fff;
}

.services .icon-box:hover {
  background-image: linear-gradient(360deg, #001858, #441e42);
}

.services .icon-box:hover .title a,
.services .icon-box:hover p,
.services .icon-box:hover .icon {
  /* color: #fff; */
  background: -webkit-linear-gradient(18deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .icon-box.active {
  background-image: linear-gradient(0deg, #1c183c, #371935);
}

.services .icon-box.active .title a,
.services .icon-box.active p,
.services .icon-box.active .icon {
  color: #fff;
  background: linear-gradient(18deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* filter: drop-shadow(7px 4px 0px #000); */
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #ffffff;
}

.cid-tlLbQcNGJO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f5fa;
}

.cid-tlLbQcNGJO .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  /* border-radius: 100%; */
  /* background-image: linear-gradient(90deg, #ffb639 50%, #ca41ec); */
  /* backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px); */
  z-index: 1;
}

@media (max-width: 768px) {
  .cid-tlLbQcNGJO .row .blur-circle {
    display: none;
  }
}

.cid-tlLbQcNGJO .mbr-fallback-image.disabled {
  display: none;
}

.cid-tlLbQcNGJO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

@media (max-width: 992px) {
  .cid-tlLbQcNGJO .row {
    padding: 0 35px;
  }
}

@media (max-width: 425px) {
  .cid-tlLbQcNGJO .row {
    padding: 0 24px;
  }
}

.cid-tlLbQcNGJO .title {
  /* display: flex; */
  align-items: center;
  transition: 0.5s;
}

.cid-tlLbQcNGJO .title:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.cid-tlLbQcNGJO .title-wrapper {
  position: relative;
  z-index: 2;
  /* margin-bottom: 64px; */
  width: 100%;
}

@media (max-width: 992px) {
  .cid-tlLbQcNGJO .title-wrapper {
    margin-bottom: 32px;
  }
}

.cid-tlLbQcNGJO .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}

.cid-tlLbQcNGJO .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}

.cid-tlLbQcNGJO .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: #ca41ec;
  z-index: -1;
}

.cid-tlLbQcNGJO .title-wrapper .mbr-text {
  margin-bottom: 0;
}

.cid-tlLbQcNGJO .card {
  position: relative;
  display: block;
  align-items: center;
  /* flex-direction: row; */
  /* margin-bottom: 2rem; */
  padding: 16px;
  border-radius: 8px;
  background-color: #ffffff;
  z-index: 2;
  transition: 0.5s;
  min-height: 230px;
}

@media (max-width : 500px) {
  .cid-tlLbQcNGJO .card {
    position: relative;
    /* display: flex; */
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 16px;
    border-radius: 8px;
    background-color: #f4efe800;
    z-index: 2;
    transition: 0.5s;
  }

  .cid-tlLbQcNGJO .card .card-number {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background-image: linear-gradient(90deg, #972b4b, #345eb1);
    border-radius: 100%;
    margin-bottom: 16px;
  }

  .cid-tlLbQcNGJO .card .card-number .mbr-number i {
    color: #ffffff;
    rotate: 90deg;
  }

}

/* .cid-tlLbQcNGJO .card:hover {
  transform: scale(1.1);
  transition: 0.5s;
} */

.cid-tlLbQcNGJO .card .card-number {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-image: linear-gradient(90deg, #972b4b, #345eb1);
  border-radius: 100%;
  margin-right: 16px;
}

.cid-tlLbQcNGJO .card .card-number .mbr-number {
  margin-bottom: 0;
  padding-top: 6px;
}

.cid-tlLbQcNGJO .card .card-number .mbr-number i {
  color: #ffffff;
}

.cid-tlLbQcNGJO .card .mbr-card-title {
  margin-bottom: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}

.cid-tlLbQcNGJO .mbr-section-title {
  color: #f4efe8;
}

.cid-tlLbQcNGJO .mbr-text {
  color: #000000;
  /* text-align: right; */
}

.cid-tlLbQcNGJO .mbr-number {
  color: #111111;
}

.cid-tlLbQcNGJO .mbr-card-title {
  color: #111111;
}

.cid-tlLbQcNGJO .mbr-section-title,
.cid-tlLbQcNGJO .mbr-section-btn {
  text-align: right;
}

.cid-tlLbQcNGJO i {
  font-size: 30px;
}







.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  background-image: linear-gradient(0deg, #1c183c, #371935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* filter: drop-shadow(7px 4px 0px #000); */
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #ffffff;
}

.faq .content h4 {
  font-size: 20px;

  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0 0 2px 0 rgb(8 66 152 / 33%);
  border-radius: 15px;
  background-image: linear-gradient(0deg, #1c183c, #371935);
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq button {
  padding: 20px 50px 20px 20px;
  font-weight: 500;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  text-align: left;
  background: #fff0;
  box-shadow: none;
  border-radius: 15px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.faq button .num {
  padding-right: 10px;
  font-size: 30px;
  line-height: 0;
  color: #ffffff;
}

.faq button:not(.collapsed) {
  color: #ffffff;
  border-bottom: 0;
  box-shadow: none;
}

.faq button:after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  position: absolute;
  right: 20px;
  top: 23px;
  background: url(../images/icons/down-arrow.svg);
}

.faq .accordion-body {
  padding: 30px;
  border: 0;
  border-radius: 15px;
  background: #fff;
  box-shadow: none;
}


.media {
  background-color: #ffffff;
}

#myVideo1 {
  position: relative;
  /* left: 67%; */
  /* bottom: 0; */
  width: 100%;
  min-height: 100%;
  z-index: 1;
  object-fit: contain;
}

.clock {
  margin: 1rem auto;
  position: relative;
}

.clock-container {
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.5), 0 15px 20px 15px rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media screen and (max-width: 600px) {
  .clock-container {
    max-width: 320px;
  }
}

.clock-col {
  flex: 25%;
  max-width: 200px;
  text-align: center;
  border: 1px solid #efefef;
  /* background: #006ea2;
  background: linear-gradient(180deg, #006ea2 0%, #014e73 100%); */
}

@media screen and (max-width: 600px) {
  .clock-col {
    flex: 50%;
  }
}

/* .clock-col:first-child {
  background: #e91e63;
  background: linear-gradient(180deg, #e91e63 0%, #b91852 100%);
} */
.clock-timer {
  font-size: 2.5rem;
  padding: 10px 0;
  box-shadow: 0 -5px 5px -5px #ffffff;
  font-weight: 600;
  filter: drop-shadow(0 0 5px #000);
  position: relative;
  color: #fff;
}

.clock-label {
  /* text-transform: uppercase; */
  font-size: 0.9rem;
  padding: 5px 0;
  margin: 0;
  /* background: #006ea2;
  background: linear-gradient(180deg, #02496b 0%, #006ea2 100%); */
  border-top: 1px solid #fff;
  color: #fff;
  font-weight: 600;
}

/* .clock-label.label-days {
  background: #e91e63;
  background: linear-gradient(0deg, #c91c57 0%, #9e1845 100%);
  border-top: 1px solid #a31847;
} */

.grid-container {
  margin: auto;
  max-width: 600px;
  aspect-ratio: 1/1;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(16, 1fr);
}

.collage1 .item {
  border: 5px solid white;
  width: 100%;
}

.item {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.5) 10px 10px 10px 0px;
  width: 100%;
}

.grid-container .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item1 {
  z-index: 10;
  grid-area: 1/3/6/8;
  width: 100%;
  object-fit: contain;
}

.item2 {
  z-index: 6;
  grid-area: 5/1/11/7;
}

.item3 {
  z-index: 5;
  grid-area: 4/6/11/13;
}

.item4 {
  grid-area: 2/-1/8/-7;
}

.item5 {
  z-index: 10;
  grid-area: 9/3/15/-9;
}

.item6 {
  z-index: 6;
  grid-area: -1/3/-9/11;
}

.item7 {
  z-index: 6;
  grid-area: -3/-2/-9/-8;
}

.grid-container>* {
  transition: all 0.5s;
}

.grid-container>*:hover {
  z-index: 99;
  transform: scale(1.1);
}

@media (max-width:991px) {
  .grid-container {
    display: none;
  }

}

/* .plan {
  display: inline-block;
  margin: 10px 1%;
  font-family: 'Lato', Arial, sans-serif;
} */

.plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position: relative;
  box-shadow: 0 0 2px #000;
}

.entry-title {
  background-image: linear-gradient(0deg, #1c183c, #001858);
  height: 100px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.entry-title>h3 {
  background: transparent;
  font-size: 20px;
  padding: 20px 0;
  /* text-transform: uppercase; */
  font-weight: 600;
  margin: 0;
}

.entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #ffff;
  /* height: 95px; */
  width: 175px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 2px solid #20143f;
  filter: drop-shadow(0 0 2px #fff);
  line-height: 50px;
  font-size: 28px;
  font-weight: 700;
  color: #20143f;
}

.price span {
  position: absolute;
  font-size: 9px;
  bottom: -10px;
  left: 30px;
  color: #20143f;
  font-weight: 400;
}

.entry-content {
  color: #323232;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;
}

.entry-content li:last-child {
  border: none;
}

.btn1 {
  padding: 3em 0;
  text-align: center;
}

.btn1 a {
  background-image: linear-gradient(0deg, #001858, #001858);
  padding: 10px 30px;
  color: #fff;
  /* text-transform: uppercase; */
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease-in-out;
}

.btn1:hover {
  transform: scale(0.9);
  transition: .3s ease-in-out;
}

@media(max-width:768px) {
  .plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 100%;
  max-width: 100%;
  position: relative;
  box-shadow: 0 0 2px #000;
  margin-bottom: 20px;
}
  .entry-title {
    background-image: linear-gradient(0deg, #1c183c, #001858);
    height: 70px;
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}
.entry-title>h3 {
  background: transparent;
  font-size: 14px;
  padding: 20px 0;
  /* text-transform: uppercase; */
  font-weight: 600;
  margin: 0;
}
.entry-title .price {
  position: absolute;
  bottom: -15px;
  background: #ffff;
  /* height: 95px; */
  width: 105px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 2px solid #20143f;
  filter: drop-shadow(0 0 2px #fff);
  line-height: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #20143f;
}
.btn1 a {
  background-image: linear-gradient(0deg, #001858, #001858);
  padding: 5px 8px;
  color: #fff;
  /* text-transform: uppercase; */
  font-weight: 500;
  text-decoration: none;
  transition: .3s ease-in-out;
  font-size: 14px;
}

.price span {
  position: absolute;
  font-size: 9px;
  bottom: -10px;
  left: 30px;
  color: #20143f;
  font-weight: 400;
}
.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 0px;
}
.pricing ul li {
    padding-bottom: 2px;
}

}


.features1 .flipbox {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 20px auto;
  perspective: 1000px;
}

.features1 .card {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  box-shadow: 1px 5px 13px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  backface-visibility: hidden;
  transition: transform .5s ease-in-out;
  transform-style: preserve-3d;
}

.features1 .flipbox-front {
  transform: rotateY(0deg);
  background: linear-gradient(360deg, #00175800, #001858), url("../img/awardbg4.jpg") no-repeat bottom center;
  border-radius: 5%;
  background-size: cover;
  box-shadow: 0 0 2px #fff;
}

.features1 .flipbox-back {
  transform: rotateY(180deg);
  padding: 10px;
  font-size: 18px;
  line-height: 1.5;
  background: #001858;
}

.features1 .flipbox:hover .flipbox-front {
  transform: rotateY(-180deg);
}

.features1 .flipbox:hover .flipbox-back {
  transform: rotateY(0deg);
}

.speaker-link {
display: block;
color: inherit;
}


.speaker-card {
transition: all 0.3s ease;
}
.speaker-card:hover {
transform: translateY(-5px);
box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}
.speaker-image-container {
height: 220px;
display: flex;
align-items: center;
justify-content: center;
}
.speaker-img {
width: 100%;
height: 100%;
object-fit: contain;
transition: transform 0.4s ease;
}
.speaker-card:hover .speaker-img {
transform: scale(1.03);
}
@media (max-width: 768px) {
.speaker-image-container {
height: 150px;
}
}

.speaker-card-wrapper:nth-child(-n+6) {
display: block;
}

.speaker-card-wrapper img {
filter: grayscale(1);
}

.speaker-card-wrapper:hover img {
filter: grayscale(0);
}

/*Optional hover effect if previously defined */
.hover-effect:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease-in-out;

}

.spktext{
  color: #001858;
}

@media (max-width: 773px) {
 h3{  
    font-size: 18px;
  }
  #hero h3 i{  
    font-size: 20px;
  }
  h2{  
    font-size: 20px;
  }
  h5{  
    font-size: 16px;
    line-height: 20px !important;
  }
  #hero .download-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    width: 100%;
    padding: 5px 10px 5px 10px;
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
    filter: drop-shadow(-1px 1px #000);
    background-color: #001858;
    position: relative;
    border: 1px solid #fff;
}
.details .content p {
  font-size: 15px;
  line-height: 18px;
}
.services .icon-box img {
    width: 30px;
}
.services p {
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}
.services .icon-box {
  min-height: 220px;
  gap: 10px;
}
.features1 .section-title1 h2{
    font-size: 20px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}
.features1 .card h2 {
    position: absolute;
    top: 40%;
    left: 50%;
    padding: 10px;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    pointer-events: none;
    opacity: 1;
    text-align: center;
    width: 100%;
}
#features1 .button {
    border: none;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #084994;
    background-color: #fff;
    /* border: 2px dashed #040213; */
    font-size: 14px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 30px;
    /* letter-spacing: 1px; */
    transition: 0.3s ease-in-out;
    margin: 10px;
    text-align: center;
    border: 1px solid #ffffff;
    color: #fff;
    background-image: linear-gradient(0deg, #1c183c, #371935);
    font-weight: 600;
}
.sponsorship-benefits {
    padding: 20px 0;
    background-color: #f8f9fa;
}
}