/* ================================================== */


/* AIvent
/* created by designesia

@charset "utf-8";

Table of content:

* body
* header
* subheader
* navigation
* content
* section
* footer
* sidebar
* contact
* elements
  * border
  * breadcrumb
  * button and link
  * columns
  * counter
  * divider
  * dropcap
  * heading
  * list
  * map
  * page heading
  * pagination
  * preloader
  * progress bar
  * social icons
  * spacer
  * tabs
  * testimonial
 * plugins
 * media query
*/

/* ================================================== */

:root {
  --primary-color: #764DF0;
  --primary-color-rgb: 118, 77, 240;
  --secondary-color: #442490;
  --secondary-color-rgb: 68, 36, 144;
}

* {
  /* body font */
  --body-font: "Manrope", Helvetica, Arial, sans-serif;
  --body-font-size: 16px;
  --body-font-color: rgba(0, 0, 0, .6);
  --body-font-color-dark: rgba(255, 255, 255, .75);
  --body-font-weight: 500;
  /* heading font */
  --heading-font: "Manrope", Helvetica, Arial, sans-serif;
  --heading-font-weight: bold;
  --heading-font-color: #000000;
  --heading-text-transform: none;
  /* h1 */
  --h1-font-size: 60px;
  --h1-font-weight: var(--heading-font-weight);
  --h1-letter-spacing: -0.02em;
  --h1-line-height: 1.25em;
  --h1-margin-bottom: 20px;
  /* h2 */
  --h2-font: var(--heading-font);
  --h2-font-size: 48px;
  --h2-font-weight: var(--heading-font-weight);
  --h2-letter-spacing: -0.015em;
  --h2-line-height: 1.2em;
  --h2-margin-bottom: 25px;
  /* h3 */
  --h3-font-size: 26px;
  --h3-font-weight: var(--heading-font-weight);
  --h3-letter-spacing: 0;
  --h3-line-height: 1.5em;
  --h3-margin-bottom: 10px;
  /* h4 */
  --h4-font-size: 20px;
  --h4-font-weight: var(--heading-font-weight);
  --h4-letter-spacing: 0;
  --h4-line-height: 1.6em;
  --h4-margin-bottom: 10px;
  /* h5 */
  --h5-font-size: 18px;
  --h5-font-weight: var(--heading-font-weight);
  --h5-letter-spacing: 0;
  --h5-line-height: 1.6em;
  --h5-margin-bottom: 10px;
  /* h6 */
  --h6-font-size: 16px;
  --h6-font-weight: var(--heading-font-weight);
  --h6-letter-spacing: 0;
  --h6-line-height: 1.6em;
  --h6-margin-bottom: 10px;
  /* mainmenu */
  --mainmenu-font: var(--body-font);
  --mainmenu-font-size: 15px;
  --mainmenu-font-weight: 700;
  --mainmenu-letter-spacing: 0;
  --mainmenu-text-transform: none;
  /* header logo */
  --logo-width: 170px;
  --logo-footer-width: 150px;
  /* misc */
  --border-default: solid 1px rgba(30, 30, 30, 1);
  --bg-color-even: #E8E8E8;
  --bg-color-odd: #F4F4F4;
  --bg-light: #F8F9FA;
  --bg-dark-1: #101435;
  --bg-dark-2: #1A1E42;
  --bg-dark-3: #1e1e1e;
  --bg-dark-1-rgb: 16, 20, 53;
  --bg-grey: #eeeeee;
  --bg-gradient-1: 0deg, rgba(var(--primary-color-rgb), .1) 0%, rgba(var(--secondary-color-rgb), .2) 100%;
  --swiper-theme-color: var(--secondary-color);
  --rounded-1: 10px;
  --border-color: #bbbbbb;
  --container-max-width: 1240px;
  /* button */
  --btn-color: #fff;
  --btn-hover-bg: var(--bg-dark-1);
  --btn-font-family: var(--body-font);
  --btn-font-size: 15px;
  --btn-font-weight: 800;
  --btn-letter-spacing: 2px;
  --btn-padding: 8px 30px;
  --btn-rounded: 6px;
  --btn-text-decoration: none;
  --btn-text-transform: uppercase;
  --gradient-text: 0deg, #888888 0%, #ffffff 75%;
}

/* base background color */
.bg-color {
  background: var(--primary-color)
}

.bg-color-2 {
  background: var(--secondary-color)
}

.bg-dark {
  background-color: var(--bg-dark-1) !important
}

/* base color */
.id-color {
  color: var(--primary-color)
}

.rounded-1 {
  border-radius: var(--rounded-1) !important;
  -moz-border-radius: var(--rounded-1) !important;
  -webkit-border-radius: var(--rounded-1) !important;
}

/* ================================================== */


/* body */


/* ================================================== */

html {
  position: relative;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  ;
  color: var(--body-font-color);
  padding: 0;
  line-height: 1.8em;
  word-spacing: 0px;
}

body.dark-scheme {
  color: var(--body-font-color-dark);
  background: var(--bg-dark-1);
  height: auto !important;
}

html.page-transition-enabled body {
  opacity: 0;
  transition: opacity 240ms ease;
}

html.page-transition-enabled body.page-transition-ready {
  opacity: 1;
}

html.page-transition-enabled body.page-transition-leaving {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html.page-transition-enabled body {
    opacity: 1;
    transition: none;
  }
}

a,
a:hover {
  color: var(--body-font-color);
  text-decoration: none;
  outline: none;
}

.dark-scheme a,
.dark-scheme a:hover,
.text-light a,
.text-light a:hover {
  color: var(--body-font-color-dark);
  text-decoration: none;
  outline: none;
}


/* ================================================== */


/*  header  */


/* ================================================== */

header {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1001;
  background: var(--bg-dark-1);
  margin: 0;
}

header.transparent {
  background: none;
}

header.autoshow {
  top: -120px;
  height: 70px !important;
}

header.autoshow.scrollOn,
header.autoshow.scrollOff {
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  outline: none;
}

header.autoshow.scrollOn {
  top: 0;
}

header.autoshow.scrollOff {
  /* opacity: ; */
  top: -120px;
}

header div#logo {
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header .logo-scroll {
  display: none;
}

header .logo {
  font-family: var(--body-font);
  color: #fff;
  font-size: 40px;
  font-weight: 300;
}

header nav a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header nav a:hover {
  color: #555;
}

header.smaller #mainmenu ul ul {
  top: 0px;
}

header.smaller {
  position: fixed;
  top: 0px;
  background: var(--bg-dark-1);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
}

.scroll-down {
  margin-top: -90px;
}

/* header.smaller div#logo,
header.s2 div#logo {} */

header.smaller #topbar {
  margin-top: -42px;
  overflow: hidden;
}

header .logo-mobile {
  display: none;
}

.logo-smaller div#logo {
  width: 150px;
  height: 30px;
  line-height: 65px;
  font-size: 30px;
}

.logo-smaller div#logo img {
  font-size: 30px;
}

div#logo img {
  max-width: var(--logo-width);
}

/* left col header */

/* middle col header */

/* subheader */


/* ================================================== */


/* navigation */


/* ================================================== */

#mainmenu {
  font-size: 13px;
  margin: 0 auto;
  padding: 0;
  float: none;
  counter-reset: my-awesome-counter;
}

#mainmenu ul {
  margin: 0px 0px;
  padding: 0px;
  height: 30px;
  background: #ffffff;
  color: var(--body-font-color);
}

#mainmenu ul:not(.mega) {
  border: solid 1px #dddddd;
}

.dark-scheme #mainmenu ul {
  background: var(--bg-dark-1);
  border: solid 1px rgba(255, 255, 255, .1);
}

#mainmenu li {
  margin: 0px 0px;
  padding: 0px 0px;
  float: left;
  display: inline;
  list-style: none;
  position: relative;
}

#mainmenu>li {
  margin-right: 30px;
}

#mainmenu>li:last-child {
  margin-right: 0;
}

#mainmenu>li {
  counter-increment: my-awesome-counter;
}

#mainmenu li a.new:before {
  content: "NEW";
  font-size: 12px;
  padding: 1px 4px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  margin-right: 5px;
  color: #ffffff;
  background: var(--primary-color);
}

/*
#mainmenu>li::before {
  content: counter(my-awesome-counter) ' —';
  right: 8px;
  top: 5px;
  color:var(--secondary-color);
  margin-right: 5px;
  font-weight: 500;
  font-family: var(--heading-font);
}
*/

header.smaller #mainmenu>li::before {
  transform: scale(0);
}

#mainmenu>li.has-child:after {
  font-family: FontAwesome;
  content: "\f078";
  padding-left: 5px;
  font-size: 8px;
  position: relative;
  top: -2px;
  color: rgba(255, 255, 255, .75);
}

.rtl #mainmenu li.has-child:after {
  padding-left: 15px;
}

#mainmenu>li>a {
  padding-right: 6px;
  font-size: var(--mainmenu-font-size);
  font-weight: var(--mainmenu-font-weight);
  text-transform: var(--mainmenu-text-transform);
  letter-spacing: var(--mainmenu-letter-spacing);
}

#mainmenu li.has-child>a {
  padding-right: 0px;
}

#mainmenu a {
  position: relative;
  display: inline-block;
  padding-top: 25px;
  padding-bottom: 25px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  outline: none;
}

#mainmenu p {
  line-height: 1.8em;
  margin-bottom: 0;
}

#mainmenu a span:not(.badge) {
  position: relative;
  width: 0%;
  color: #ffffff;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 14px;
  border-bottom: solid 2px #ffffff;
}

#mainmenu li:hover a span:not(.badge) {
  width: 100%;
}

#mainmenu li li a span:not(.badge) {
  float: right;
  margin-top: 5px;
}

#mainmenu a.active span:not(.badge) {
  width: 100%;
  margin-left: 0%;
}

#mainmenu li li {
  font-family: var(--body-font);
  font-size: 14px;
}

#mainmenu li li:last-child {
  border-bottom: none;
}

#mainmenu li li a {
  padding: 5px 15px;
  border-top: none;
  color: #606060;
  width: 100%;
  border-left: none;
  text-align: left;
  font-weight: normal;
  border-bottom: solid 1px rgba(255, 255, 255, .1);
  letter-spacing: 0;
}

#mainmenu li li a:hover {
  background: var(--primary-color);
}

#mainmenu li:last-child>a {
  border-bottom: none;
}

.dark-scheme #mainmenu li li a {
  color: #ffffff;
}

.rtl #mainmenu li li a {
  text-align: right;
}

#mainmenu li li a:hover {
  color: #111;
}

#mainmenu li li a:after {
  content: none;
}

#mainmenu li li a:hover,
#mainmenu ul li:hover>a {
  color: #fff;
}

#mainmenu li a {
  position: relative;
}

#mainmenu li a:before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 20px;
  background: var(--primary-color);
}

#mainmenu li a.active:before {
  width: calc(100% - 5px);
}

#mainmenu li ul {
  width: 190px;
  height: auto;
  position: absolute;
  left: 0px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  border-radius: 3px;
}

#mainmenu ul li b {
  background: #333;
  color: #ffffff;
  padding: 0 3px;
  padding-bottom: 3px;
  font-size: 10px;
  margin-right: 3px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

#mainmenu li li {
  font-size: 14px;
  display: block;
  float: none;
  text-transform: none;
}

#mainmenu li:hover>ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}

#mainmenu li ul ul:not(.ul-list) {
  top: 0px;
  margin-left: 188px;
}

#mainmenu select {
  padding: 10px;
  height: 36px;
  font-size: 14px;
  border: none;
  background: #ff4200;
  color: #eceff3;
}

#mainmenu select option {
  padding: 10px;
}

#mainmenu .btn-type {
  padding: 0;
  margin: 0;
}

#mainmenu .btn-type a {
  background: #eee;
  padding: 0;
  margin: 0;
}

#mainmenu>li ul.mega {
  position: fixed;
  left: 0;
  height: 0%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: none;
}

#mainmenu>li ul.mega>li {
  padding: 0;
  margin: 0;
}

#mainmenu>li ul.mega .sb-menu {
  background: #fff;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: solid 1px #dddddd;
}

.dark-scheme #mainmenu>li ul.mega .sb-menu {
  background: var(--bg-dark-1);
  border-color: rgba(255, 255, 255, .1);
}

#mainmenu li:hover ul.mega {
  visibility: visible;
  opacity: 1;
}

#mainmenu li ul.mega>li,
#mainmenu li ul.mega>li a {
  width: 100%;
}

#mainmenu li ul.mega li.title {
  padding: 0px 10px 15px 10px;
  text-align: left;
  color: #fff;
  font-weight: bold;
}

#mainmenu li ul.mega>li ul {
  position: static;
  visibility: visible;
  opacity: 1;
  left: 0;
  float: none;
  width: 100%;
}

#mainmenu ul.mega>li ul li {
  margin: 0;
  padding: 0;
}

#mainmenu ul.mega>li ul li:last-child {
  border-bottom: none;
}

#mainmenu li ul.mega li.title {
  font-family: var(--main-font);
  padding: 0px;
  text-align: left;
  font-weight: bold;
  color: #586383;
}

#mainmenu ul.mega>li ul {
  border: none;
}

#mainmenu li ul.mega ul li a {
  background: none;
  padding: 2px 0;
}

#mainmenu li ul.mega ul li a:hover {
  color: #35404e;
}

header.header-mobile #mainmenu>li ul.mega {
  visibility: visible;
  opacity: 1;
}

header:not(.header-mobile) #mainmenu>li:hover ul.mega {
  height: auto;
}

/* menu toggle for mobile */

#menu-btn {
  line-height: 1.5em;
  display: none;
  float: right;
  width: 32px;
  height: 32px;
  padding: 4px;
  text-align: center;
  cursor: poInter;
  color: #fff;
  margin-top: 0px;
  margin-left: 20px;
}

#menu-btn:before {
  font-family: FontAwesome;
  content: "\f0c9";
  font-size: 20px;
}

#menu-btn.menu-open:before {
  content: "\f068";
}

.rtl #menu-btn {
  float: left;
}


#btn-extra {
  position: relative;
  margin-left: 20px;
  width: 24px;
  height: 12px;
  cursor: pointer;
}

#btn-extra span {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  border-bottom: solid 2px #ffffff;
}

#btn-extra.img {
  width: 32px;
  height: 32px;
}

#btn-extra img {
  width: 100%;
}


#btn-extra span:nth-child(2) {
  top: auto;
  bottom: 0;
  right: 0;
}

#btn-extra:hover span {
  width: 70%;
}

#extra-wrap {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  overflow: hidden;
  background: rgba(var(--bg-dark-1-rgb), .75);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#extra-wrap.open {
  right: 0;
}

#extra-content {
  padding: 50px;
  color: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -17px;
  overflow-y: scroll;
}

#btn-close {
  top: 50px;
  right: 50px;
  position: absolute;
  z-index: 1001;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

#btn-close span {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: rotate(45deg);
}

#btn-close span:nth-child(2) {
  transform: rotate(-45deg);
}

/* ================================================== */


/* content */


/* ================================================== */

#content {
  width: 100%;
  background: #ffffff;
  padding: 90px 0 90px 0;
  z-index: 100;
}

.dark-scheme #content {
  background: var(--bg-dark-1);
}

.dark-scheme #content {
  background: var(--bg-dark-1);
}

/* ================================================== */


/* section */


/* ================================================== */

section {
  padding: 50px 0 50px 0;
}

/* section:not(.relative) {} */


.dark-scheme section {
  background: var(--bg-dark-1);
}

/* ================================================== */


/* footer */


/* ================================================== */

footer {
  color: var(--body-font-color-dark);
  background: var(--bg-dark-1);
  padding: 100px 0 0 0;
}

footer p {
  line-height: 1.8em;
}

.dark-scheme footer a {
  color: var(--body-font-color-dark);
}

footer h5 {
  color: #fff;
  font-size: 18px;
  text-transform: none;
}

footer a {
  color: var(--body-font-color-dark);
  text-decoration: none !important;
}

header.header-mobile {
  position: fixed !important;
  background: var(--heading-font-color);
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

header.header-mobile .container {
  max-width: 100% !important;
  padding-left: 20px;
  padding-right: 20px;
}

.dark-scheme header.header-mobile {
  background: var(--bg-dark-1);
}

header.header-mobile nav {
  float: none;
}

header.header-mobile .logo {
  display: none;
}

header.header-mobile #mainmenu ul {
  padding: 0;
}

/* topbar start here */

#topbar {
  z-index: 1000;
  width: 100%;
  overflow: hidden;
  top: 0;
  background: var(--bg-dark-3);
}

#topbar a {
  text-decoration: none;
}

#topbar.text-light a {
  color: #ffffff;
}

/* topbar left content */

.menu_side_area .btn-line {
  display: inline-block;
}

/* topbar widget */

/* topbar end here */

/* ================================================== */


/* blog */


/* ================================================== */

/* blog list */

/* de-bloglist-type-1 */


/* de-post-type-1 */

#blog-carousel .item.item {
  width: 100%;
}

/* blog comment */

/* #blog-comment li li .comment {} */

/* .comment-info span {} */

/* .blog-list .post-wrapper {} */

.blog-carousel ul,
.blog-carousel li {
  margin: 0;
  list-style: none;
}

.blog-carousel h4 {
  margin-bottom: 0px;
}

.blog-carousel p {
  margin-bottom: 10px;
}

/* blog comment form */


.blog-slide {
  padding: 0;
  margin: 0;
}

/* ================================================== */

/* ratings */


/* ================================================== */

/* ================================================== */


/* contact form */


/* ================================================== */

.error {
  display: none;
  margin-top: 30px;
  color: #e7505a;
  clear: both;
  padding-top: 20px;
  padding: 20px;
  background: rgba(231, 80, 90, .1);
  border: solid 1px #e7505a;
}

.success {
  display: none;
  position: relative;
  color: #ffffff;
  background: var(--bg-dark-2);
  clear: both;
  padding: 30px;
  padding-left: 90px;
  border-radius: var(--rounded-1);
  -moz-border-radius: var(--rounded-1);
  -webkit-border-radius: var(--rounded-1);
}

.success:before {
  font-size: 40px;
  position: absolute;
  font-family: "FontAwesome";
  content: "\f00c";
  margin-right: 15px;
  left: 30px;
  top: 40px;
}

.error img {
  vertical-align: top;
}

/* #contact_form textarea {
  height: calc(100% - 20px);
} */

#contact_form input[type=checkbox] {
  position: relative;
  border: solid 1px var(--primary-color);
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 4px .6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 15px;
  width: 15px;
  -webkit-appearance: none;
  opacity: .5;
}

.form-control {
  padding: 10px;
  border: solid 1px rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, .025);
  border-radius: var(--rounded-1) !important;
  -moz-border-radius: var(--rounded-1) !important;
  -webkit-border-radius: var(--rounded-1) !important;
}

.text-light .form-control {
  color: #ffffff;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, .025);
}

.text-light select.form-control option {
  color: var(--heading-font-color);
}



#contact_form input[type=checkbox]:checked {
  background: var(--primary-color);
  opacity: 1;
}

.text-light ::placeholder {
  color: #ffffff;
  opacity: 1;
  /* Firefox */
}

.text-light::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #ffffff;
}

.error_input {
  border-bottom: solid 1px #ff0000 !important;
}

.arrow-up,
.arrow-down {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #fff;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: poInter;
  z-index: 101;
}

.arrow-down {
  border-top: 40px solid #fff;
  border-bottom: none;
  position: fixed;
  z-index: 102;
  top: -40px;
}

.arrow-up:before {
  font-family: "FontAwesome";
  font-size: 20px;
  content: "\f067";
  color: #222;
  position: relative;
  top: 12px;
  margin: 0 0 0 -8px;
}

.arrow-down:before {
  font-family: "FontAwesome";
  font-size: 20px;
  content: "\f068";
  color: #222;
  position: relative;
  top: -35px;
  margin: 0 0 0 -8px;
}

/* ================================================== */


/* elements */


/* ================================================== */


/* border */


/* ------------------------------ */

/* breadcrumb */


/* ------------------------------ */

/* button and link */


/* ------------------------------ */

a {
  text-decoration: none;
}

a.btn-text {
  text-decoration: none;
  display: inline-block;
  color: #111;
  font-weight: 600;
  padding: 0;
}

a.btn-text:after {
  font-family: FontAwesome;
  content: "\f054";
  padding-left: 10px;
}

a.btn-text {
  color: #fff;
}

a.btn-big {
  font-size: 14px;
  color: #eceff3;
  letter-spacing: 1px;
  line-height: normal;
  font-weight: bold;
  text-transform: uppercase;
  border: solid 1px #fff;
  padding: 10px 30px 10px 30px;
}

a.btn-big:after {
  font-family: FontAwesome;
  content: "\f054";
  margin-left: 20px;
}

a.btn,
.btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

a.btn:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
}

a.btn-fx:after {
  font-family: FontAwesome;
  content: "\f178";
  margin-left: 15px;
  position: absolute;
  right: -20px;
  margin-top: 0px;
}

a.btn-fx {
  font-size: 14px;
  color: #eceff3;
  letter-spacing: 1px;
  line-height: normal;
  font-weight: bold;
  text-transform: uppercase;
  border: solid 1px #fff;
  padding: 10px 30px 10px 30px;
}

a.btn-fx:hover {
  padding-left: 20px;
  padding-right: 40px;
}

a.btn-fx:before {
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

a.btn-fx:hover:after {
  right: 15px;
}

a.btn-fx:hover:before {
  width: 100%;
  background: rgba(0, 0, 0, 1);
}

a.btn-fx.light:hover:before {
  width: 100%;
  background: rgba(255, 255, 255, 1);
}

.btn-fullwidth {
  display: block;
  width: 100%;
}

a.btn-slider {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  border: solid 2px #fff;
  padding: 10px 30px 10px 30px;
  border-radius: 60px;
}

a.btn-slider:hover {
  color: #222;
  background: #fff;
  border-color: #000;
  border: solid 2px #fff;
}

a.btn-main:hover,
.btn-main:hover,
a.btn-main.btn-line:hover {
  color: #fff;
  background: var(--btn-hover-bg);
}

a.btn-slider:hover:after {
  color: #222;
}

a.btn-id,
a.btn-id:hover {
  border: none;
}

a.btn-light.btn-id {
  color: #222;
}

a.btn-dark.btn-id {
  color: #fff;
}

.btn-main.btn-small {
  padding: 5px 20px 5px 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-fx.btn-main {
  text-transform: normal;
}

a.btn-bg-dark {
  background: #222;
}

a.btn-text-light {
  color: #fff;
}

.btn-icon-left i {
  margin-right: 12px;
  color: #fff;
}

.btn-add_to_cart,
a.btn-add_to_cart {
  border: solid 1px #bbb;
  font-size: 12px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  padding: 3px;
  padding-left: 40px;
  padding-right: 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #555;
}

.btn-add_to_cart:before,
a.btn-add_to_cart:before {
  font-family: "FontAwesome";
  content: "\f07a";
  position: absolute;
  left: 20px;
}

a.btn-main,
a.btn-main:active,
a.btn-main:focus,
a.btn-main:visited,
.btn-main,
input[type=button].btn-main,
a.btn-line,
#mainmenu li ul.mega a.btn-main {
  width: 260px;
  background: var(--primary-color);
  color: var(--btn-color);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  padding: var(--btn-padding);
  text-decoration: var(--btn-text-decoration);
  text-transform: var(--btn-text-transform);
  border-radius: var(--btn-rounded);
  -moz-border-radius: var(--btn-rounded);
  -webkit-border-radius: var(--btn-rounded);
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  outline: 0;
}

a.btn-main.fx-slide {
  overflow: hidden;
}

a.btn-main.fx-slide span {
  display: block;
  position: relative;
  transition: all .3s ease-in-out;
}

a.btn-main.fx-slide:hover span {
  transform: translate(0, 40px);
  opacity: 0;
}

a.btn-main.fx-slide:hover:before {
  opacity: 1;
  transform: translate(0, 0);
}

a.btn-main.fx-slide:before {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translate(0, -100%);
  transition: all 0.3s ease-in-out;
}

a.btn-main.btn-dark-trans {
  background: rgba(255, 255, 255, .1);
}

a.btn-main.btn-dark-trans:hover {
  background: var(--primary-color);
}


a.btn-main.btn-light-trans {
  color: var(--heading-font-color);
  background: rgba(0, 0, 0, .05);
}

a.btn-main.btn-light-trans:hover {
  color: #ffffff;
  background: var(--primary-color);
}

a.btn-main.btn-trans.light {
  background: rgba(255, 255, 255, .25);
}

a.btn-topbar {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: bold;
}

a.btn-sc {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: bold;
  padding: 6px;
  font-size: 14px;
  color: #222;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background: #f2f2f2;
}

a.btn-sc img {
  width: 20px;
  margin-top: -4px;
  margin-right: 8px;
}

a.btn-line,
a.btn-line:hover {
  background: none;
  color: #35404e;
  border: solid 1px rgba(255, 255, 255, .5);
}

a.btn-line:hover {
  border: solid 1px rgba(255, 255, 255, 0);
}

.text-light .btn-line {
  color: #ffffff;
}


a.btn-line:hover {
  color: #ffffff;
}

header:not(.header-light) a.btn-line,
.dark-scheme a.btn-line {
  color: #ffffff;
}

a.btn-main.btn-white {
  background: #ffffff;
}

a.btn-border {
  border: solid 2px rgba(255, 255, 255, .3);
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  min-width: 120px;
  outline: 0;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 30px;
  min-width: 120px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

a.btn-border:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0);
  margin-top: -2px;
  margin-bottom: 2px;
  box-sizing: border-box
}

a.btn-border.light {
  border: solid 1px #ffffff;
  color: #ffffff;
}

a.btn-border.light:hover {
  background: #ffffff;
}

a.btn-border:hover a {
  color: #ffffff !important;
}

a.btn-link {
  display: block;
  text-decoration: none;
  margin-top: 10px;
}

a.btn-lg {
  font-size: 24px;
  padding: 15px 30px 10px 30px;
}

.btn-plus {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  text-align: center;
  max-width: 36px;
  height: 36px;
  border-radius: 36px;
  -moz-border-radius: 36px;
  -webkit-border-radius: 36px;
  overflow: hidden;
  border: solid 1px var(--heading-font-color);
  color: var(--heading-font-color);
  ;
}

.btn-plus:hover {
  max-width: 100%;
  color: var(--heading-font-color);
  ;
}

.btn-plus i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.btn-plus span {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
  margin-left: 36px;
  line-height: 2.2em;
  padding-right: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-plus:hover span {
  opacity: 1;
}


.text-light .btn-plus {
  border: solid 1px #ffffff;
  color: #ffffff;
  ;
}

.text-light .btn-plus:hover {
  color: #ffffff;
  ;
}

a.btn-main.btn-with-arrow {
  padding-right: 40px;
}

.btn-with-arrow {
  position: relative;
}

.btn-with-arrow:after {
  position: absolute;
  content: url(../images/ui/arrow-top-right-white.webp);
  top: 12px;
}

.btn-with-arrow:hover:after {
  top: 8px;
}

.btn-with-arrow:before {
  position: absolute;
  content: url(../images/ui/arrow-top-right-white.webp);
  top: 16px;
  left: 8px;
  opacity: 0;
}

a.btn-main.btn-with-arrow:hover {
  padding-right: 25px;
  padding-left: 40px;
}

.btn-with-arrow:hover:after {
  opacity: 0;
}

.btn-with-arrow:hover:before {
  opacity: 1;
  top: 12px;
  left: 12px;
}

.cover a.btn-link:hover {
  color: #fff;
}



/* divider */


/* ------------------------------ */

.spacer-single {
  width: 100%;
  height: 30px;
  display: block;
  clear: both;
}

hr {
  display: block;
  clear: both;
  border-top: solid 1px #ddd;
  margin: 40px 0 40px 0;
}

/* dropcap */


/* ------------------------------ */

/* form */


/* ------------------------------ */

.dark-scheme ::-webkit-calendar-picker-indicator {
  filter: invert(1);
}


/* heading */


/* ------------------------------ */

h1,
h2,
h4,
h3,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-font-color);
  text-transform: var(--heading-text-transform);
}

.dark-scheme h1,
.dark-scheme h2,
.dark-scheme h4,
.dark-scheme h3,
.dark-scheme h5,
.dark-scheme h6,
.dark-scheme .h1,
.dark-scheme .h2,
.dark-scheme .h3,
.dark-scheme .h4,
.dark-scheme .h5,
.dark-scheme .h6 {
  color: #ffffff;
}

footer h1,
footer h2,
footer h4,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}

h2.text-light,
footer h4,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  margin-bottom: var(--h1-margin-bottom);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  margin-bottom: var(--h2-margin-bottom);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  margin-bottom: var(--h3-margin-bottom);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  letter-spacing: var(--h5-letter-spacing);
  line-height: var(--h5-line-height);
  margin-bottom: var(--h5-margin-bottom);
}


h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  letter-spacing: var(--h6-letter-spacing);
  line-height: var(--h6-line-height);
  margin-bottom: var(--h6-margin-bottom);
}

h1.title {
  font-size: 64px;
  letter-spacing: 10px;
}

h1.title strong {
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
}


h5.new:before {
  content: "NEW";
  font-size: 12px;
  padding: 1px 6px 2px 6px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  margin-right: 5px;
  color: #ffffff;
  background: var(--primary-color);
}

h5 span.label {
  display: inline-block;
  margin-right: 10px;
  background: #222222;
  color: #ffffff;
  padding: 0 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.text-light,
.text-light p {
  color: var(--body-font-color-dark);
}

.text-white {
  color: #fff;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
  color: #fff;
}

.text-light h1,
.text-light h2,
.dark-scheme h1,
.dark-scheme h2 {
  background: -webkit-linear-gradient(var(--gradient-text));
  background: -moz-linear-gradient(var(--gradient-text));
  background: linear-gradient(var(--gradient-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-white h1,
.text-white h2,
.text-white h4,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: #fff;
}

/* list */

.ul-check {
  padding: 0;
  list-style: none;
}

.ul-check li {
  margin: 5px 0 5px 0;
}

.ul-check li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  margin-right: 15px;
  color: var(--primary-color);
}

.dark-scheme .ul-check li a {
  color: rgba(255, 255, 255, .7);
}

/* pagination */

.spinner {
  display: table-cell;
  vertical-align: middle;
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner>div {
  width: 18px;
  height: 18px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

@-webkit-keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0)
  }

  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* ================================================== */

/* preloader */

/* ================================================== */

#de-loader {
  position: fixed;
  z-index: 20000;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(116, 70, 237, 0.28), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(48, 175, 229, 0.16), transparent 36%),
    linear-gradient(145deg, #050b1c 0%, #101036 52%, #160845 100%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

#de-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  pointer-events: none;
}

#de-loader.is-complete {
  opacity: 0;
  visibility: hidden;
}

.dark-scheme #de-loader {
  background:
    radial-gradient(circle at 18% 20%, rgba(116, 70, 237, 0.28), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(48, 175, 229, 0.16), transparent 36%),
    linear-gradient(145deg, #050b1c 0%, #101036 52%, #160845 100%);
}

.de-loader__content {
  position: relative;
  z-index: 1;
  width: min(84vw, 520px);
  display: grid;
  justify-items: center;
}

.de-loader__logo {
  display: block;
  width: min(86vw, 560px);
  height: auto;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(116, 70, 237, 0.28));
  animation: de-loader-logo 1.8s ease-in-out infinite alternate;
}

.de-loader__tagline {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.68rem, 1.6vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.de-loader__progress {
  position: relative;
  width: 100%;
  height: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.35),
    0 0 26px rgba(116, 70, 237, 0.16);
}

.de-loader__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, #7042ec, #9a5cff 62%, #50c4f4);
  box-shadow: 0 0 18px rgba(145, 85, 255, 0.58);
  transition: width 240ms ease;
}

.de-loader__progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: translateX(-100%);
  animation: de-loader-shimmer 1.25s ease-in-out infinite;
}

.de-loader__status {
  width: 100%;
  margin-top: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

@keyframes de-loader-logo {
  from {
    opacity: 0.82;
    transform: translateY(0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(-3px) scale(1);
  }
}

@keyframes de-loader-shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 520px) {
  #de-loader {
    box-sizing: border-box;
    padding-inline: 9vw;
  }

  .de-loader__content {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .de-loader__logo {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .de-loader__status {
    align-items: flex-start;
    font-size: 0.58rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .de-loader__logo,
  .de-loader__progress-fill::after {
    animation: none;
  }
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: -2px 0 0 -2px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* progress bar */


/* ================================================== */

.de-progress {
  width: 100%;
  height: 8px;
  background: #ddd;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
}

.de-progress .progress-bar {
  background: #333;
  height: 8px;
  box-shadow: none;
}

.de-progress {
  background: #ffffff;
}


/* social-icons */


/* ================================================== */

/* ================================================== */

/* accordion

/* ================================================== */


.accordion-section-title {
  color: #35404e;
  width: 100%;
  padding: 15px 0;
  cursor: poInter;
  font-family: var(--body-font);
  width: 100%;
  display: inline-block;
  font-size: 17px;
  transition: all linear 0.5s;
  text-decoration: none;
  font-weight: 600;
  overflow: none;
  border-bottom: solid 1px #dddddd;
}

.dark-scheme .accordion-section-title,
.text-light .accordion-section-title {
  color: #ffffff;
  border-bottom: solid 1px rgba(255, 255, 255, .4) !important;
}

.accordion-section-title:before {
  font-family: "FontAwesome";
  content: "\f107";
  float: right;
  color: var(--bg-dark-1);
  text-align: center;
  padding: 0 8px 0 8px;
  font-size: 15px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  width: 30px;
}

.dark-scheme .accordion-section-title:before,
.text-light .accordion-section-title:before {
  color: #ffffff;
}

.rtl .accordion-section-title:before {
  float: left;
}

.accordion-section-title.active:before {
  content: "\f106";
}

.accordion-section-title.active {
  margin-bottom: 0px;
  text-decoration: none;
}

.accordion-section-title:hover {
  text-decoration: none;
}

.accordion-section-content {
  padding-top: 15px;
  padding-bottom: 5px;
  display: none;
  margin-bottom: 10px;
}


/* bs */

.de_tab .de_nav {
  overflow: hidden;
  padding-left: 0;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.de_tab .de_nav li {
  float: left;
  list-style: none;
  margin-right: 10px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

.rtl .de_tab .de_nav li {
  float: right;
  margin-right: 0;
  margin-left: 0;
}

.de_tab .de_nav li span {
  border: solid 1px rgba(0, 0, 0, .2);
  display: block;
  text-decoration: none;
  color: #646464;
  font-size: 15px;
  cursor: poInter;
}

.dark-scheme .de_tab .de_nav li span {
  color: rgba(255, 255, 255, .3);
  background: #292F45;
}

.de_tab .de_nav li span {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.de_tab .de_tab_content {
  padding-top: 30px;
}

.de_tab .de_nav li.active span {
  background: #FFF;
  color: #222;
}

.de_tab .de_nav li.active span .v-border {
  display: none;
}

.de_tab .de_nav li.active span {
  background: #27282b;
}

/* new added */



/* tab de_light */

/* .de_light .de_tab.tab_style_2 .de_nav {} */

/* tab de_light */

.de_tab h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.de_tab h3 span {
  font-size: 40px;
}

.de_tab p {
  margin-bottom: 0;
}

.de_nav h3 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 0;
}


/* tab de_light */

.btn-left,
.btn-right {
  background: none;
  border: solid 1px rgba(255, 255, 255, .2);
  padding: 10px 20px 10px 20px;
  margin: 5px;
  font-family: var(--body-font);
  text-transform: uppercase;
  letter-spacing: 5px;
}

.btn-right:after {
  font-family: FontAwesome;
  content: "\f054";
  padding-left: 10px;
}

.btn-left:before {
  font-family: FontAwesome;
  content: "\f053";
  padding-right: 10px;
}

a.btn-left,
a.btn-right {
  text-decoration: none;
}

/* testimonial
    /* ================================================== */

/*
.de_testi blockquote:before {
  font-family: FontAwesome;
  content: "\f10d";
  padding-bottom: 10px;
  font-size: 20px;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  font-style: normal;
  background: #000;
  position: absolute;
  left: 15px;
  font-weight: normal;
}
*/

/* new timeline */

/* close new timeline */



/* css attributes */

.overflow-hidden {
  overflow: hidden;
}

/* ================================================== */


/* anim */


/* ================================================== */

header,
header *,
.hover,
.hover *,
.de_tab .de_nav li span,
a.btn-line:after,
.mfp-close,
.mfp-close:hover,
.text-rotate-wrap,
.text-rotate-wrap .text-item,
.owl-slider-nav .next,
.owl-slider-nav .prev,
#back-to-top.show,
#back-to-top.hide,
.de_tab .de_nav li span,
#popup-box.popup-show,
#popup-box.popup-hide,
.btn-main,
#mainmenu *,
#mainmenu a span,
#mainmenu a.active span,
#mainmenu li a.active:before,
.error_input,
a.btn-border,
#contact_form input,
.dropdown *,
.d-carousel *,
#slider-carousel *,
.d_demo_img *,
.show-on-scroll,
#mainmenu>li::before,
.btn-plus,
.btn-plus *,
.btn-with-arrow:after,
.btn-with-arrow:before,
#topbar,
#extra-wrap,
#btn-extra,
#btn-extra *,
.de-tab * {
  -o-transition: all 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  -ms-transition: all 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  -moz-transition: all 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  -webkit-transition: all 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  transition: all 1s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  outline: none;
}

a.btn-fx:after,
a.btn-fx:hover:after,
a.btn-fx:before,
a.btn-fx:hover:before,
#mainmenu li,
#mainmenu li ul,
.owl-prev,
.owl-next {
  -o-transition: .2s ease;
  -ms-transition: .2s ease;
  -moz-transition: .2s ease;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  outline: none;
}

header.header-mobile #mainmenu>li>span {
  -o-transition: none;
  -ms-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
  outline: none;
}

@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}

@keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}

@-webkit-keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }

  100% {
    opacity: 1;
    width: 100px;
  }
}

@keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }

  100% {
    opacity: 1;
    width: 100px;
  }
}

/* ================================================== */


/* video */


/* ================================================== */

video,
object {
  display: inline-block;
  vertical-align: baseline;
  min-width: 100%;
  min-height: 100%;
}

.de-video-container {
  top: 0%;
  left: 0%;
  height: 500px;
  width: 100%;
  overflow: hidden;
}

/* youtube, vimeo */

.de-video-container .btn-line:hover:after,
.de-video-container a.btn-line:hover:after,
.de-video-container a.btn-line.hover:after {
  color: #eceff3;
}

/* ================================================== */


/* map */


/* ================================================== */


/* --------------- map --------------- */

#map {
  width: 100%;
  height: 500px;
}

.map iframe {
  width: 100%;
  border: solid 1px #ccc;
  padding: 2px;
  background: #fff;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0.0;
  }

  50% {
    opacity: 1.0;
  }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0.0;
  }
}

/* ================================================== */


/* overide bootstrap */


/* ================================================== */

.dark-scheme .modal-header {
  border-bottom-color: rgba(255, 255, 255, .2);
}

.dark-scheme .modal-content {
  background: var(--bg-dark-1);
}

.dark-scheme .modal-footer {
  border-top-color: rgba(255, 255, 255, .2);
}

.btn-primary {
  text-shadow: none;
  border: none;
}

.btn.btn-primary:hover {
  background: #555;
}

p {
  margin-top: 0;
}

p.lead {
  font-size: 18px;
  line-height: 32px;
  margin-top: 0;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin-bottom: 30px;
}

p.small {
  line-height: 1.8em;
}

.dark-scheme p.lead {
  color: rgba(255, 255, 255, .75);
}

.dark-scheme strong {
  color: #ffffff;
}

.progress {
  background: #27282B;
}

/* Vertical line */

/* ================================================== */


/* widget */


/* ================================================== */

.widget {
  margin-bottom: 30px;
  padding-bottom: 30px;
}

footer .widget {
  margin-bottom: 0;
}


.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  margin: 3px 0;
}

footer .widget {
  border: none;
  margin-bottom: 0;
}

footer .widget h5 {
  margin-bottom: 20px;
}

#cookit {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 1rem 2rem;
  display: flex;
  z-index: 1022;
  background: rgba(20, 20, 20, 1) !important;
}

.dark-scheme #cookit {
  border-top: solid 1px rgba(255, 255, 255, .15);
}

#cookit.hidden {
  display: none;
}

#cookit #cookit-container {
  margin: auto;
  width: 1300px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#cookit #cookit-container>* {
  margin: .4rem;
}

#cookit #cookit-container p {
  line-height: 1.4rem;
}

#cookit #cookit-container a {
  text-decoration: none;
}

#cookit #cookit-container a:hover {
  opacity: .9;
}

#cookit #cookit-container #cookit-button {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: bold;
  padding: .25rem 2rem;
  margin-left: auto;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}

/* marquee */


.d-flex {
  display: flex;
  white-space: nowrap;
}

/* marquee */

.bg-blur {
  background: rgba(0, 0, 0, .15);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* marquee plugin close */

.gradient-edge-top {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0) 100%);
}

.gradient-edge-top.light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.gradient-edge-bottom {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0) 100%);
}

.gradient-edge-top.color {
  background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 1) 0%, rgba(var(--primary-color-rgb), 0) 100%);
}

.gradient-edge-bottom.color {
  background: linear-gradient(0deg, rgba(var(--primary-color-rgb), 1) 0%, rgba(var(--primary-color-rgb), 0) 100%);
}

.show-on-scroll {
  opacity: 0;
}

.show-on-scroll.show {
  opacity: 1;
}

.show-on-scroll.hide {
  opacity: 0;
}

/* select2 begin */

.select2-dropdown {
  border-radius: 0;
  box-shadow: #444 0px 3px 5px;
  border: 0;
}

/* select2 end */

/* ================================================== */

/* declass */

/* ================================================== */

/* background */

/* width (percent) */

.w-80 {
  width: 80%;
}

.w-100 {
  width: 100%;
}

/* width (px) */

/* height (percent) */

.h-50 {
  height: 50%;
}

.h-100 {
  height: 100%;
}

/* height (px) */

/* top (percent) */

/* top (px) */

/* bottom (percent) */
.bottom-10 {
  bottom: 10%;
}

/* bottom (px) */

/* top negative (px) */

/* bottom negative (px) */

/* left pos (percent) */

/* left pos (px) */

/* right  pos (percent) */

/* right  pos (px) */

/* margin-left (percent) */


/* margin-left (px) */


/* margin top (px) */

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

/* margin top negative (px) */

.mt-min-20 {
  margin-top: -20px;
}

/* margin bottom (px) */

/* margin bottom negative (px) */

/* margin left negative (px) */

/* margin top negative (px) */

/* font-size (px) */

.fs-18 {
  font-size: 18px;
}

.fs-40 {
  font-size: 40px;
}

.fs-60 {
  font-size: 60px;
}

.fs-72 {
  font-size: 72px;
}

.fs-96 {
  font-size: 96px;
}


/* font-weight */

.fw-bold {
  font-weight: bold !important;
}

/* margin left (px) */

/* padding (px) */

.p-40 {
  padding: 40px;
}

/* padding bottom (px) */

.pb-40 {
  padding-bottom: 40px;
}

/* padding top (px) */

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

/* padding left (px) */

/* border white */

/* border bottom white with transparency */

/* border bottom grey */

/* border bottom dark */

/* border bottom dark */

/* hover effects */

.hover:hover .hover-scale-1-1 {
  transform: scale(1.1);
}

.inline-block {
  display: inline-block;
}

.infinite {
  animation-iteration-count: infinite;
}

/* opacity */

.op-2 {
  opacity: .2;
}

.op-5 {
  opacity: .5;
}

.op-6 {
  opacity: .6;
}

.op-8 {
  opacity: .8;
}


/* line height em */
.lh-1 {
  line-height: 1em;
}

.lh-1-1 {
  line-height: 1.1em;
}

.lh-1-5 {
  line-height: 1.5em;
}

/* min height (px) */

.mh-500 {
  min-height: 500px;
}

.mh-700 {
  min-height: 700px;
}

/* max height (px) */

/* background dark */

/* overlay-black */

/* overlay-black */

/* overlay-white */

/* rotation */

.rot-2 {
  transform: rotateZ(2deg);
}

.rot-min-1 {
  transform: rotateZ(-1deg);
}

/* positions */
.absolute,
.abs {
  position: absolute;
}

.relative,
.position-relative {
  position: relative;
}

/* z-index */

.z-2 {
  z-index: 2
}

.z-3 {
  z-index: 3
}

.border-white-op-3 {
  border: solid 1px rgba(255, 255, 255, .3);
}

/* declass end */

/* custom tabs */
.de-tab .d-tab-nav {
  padding: 0;
  list-style: none;
  position: relative;
}

.de-tab .d-tab-nav .active-tab {
  border-bottom: none;
  font-weight: 500;
  position: relative;
  color: #ffffff;
  background: var(--primary-color);
}

.de-tab .d-tab-nav li {
  display: block;
  cursor: pointer;
  padding: 10px;
}

.de-tab .d-tab-content {
  padding: 0;
  margin: 0;
  list-style: none;
}

.de-tab .d-tab-content>li {
  display: none;
}

.de-tab .d-tab-nav li {
  display: inline-block;
  padding: 8px 20px;
}

.de-tab.pill .d-tab-nav {
  background: rgba(var(--primary-color-rgb), .2);
}

.text-light .de-tab.pill .d-tab-nav {
  background: rgba(255, 255, 255, .05);
}

.de-tab.pill .d-tab-nav {
  display: flex;
  justify-content: space-around;
  border: none;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  overflow: hidden;
}

.de-tab.pill .d-tab-nav li {
  font-weight: 500;
  text-align: center;
  flex-grow: 1;
  opacity: .5;
}

.de-tab.pill .d-tab-nav li:not(.active-tab):hover {
  opacity: 1;
}

.de-tab.pill .d-tab-nav .active-tab {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  opacity: 1;
}

.de-tab.plain .d-tab-nav li {
  font-weight: 500;
  color: #000000;
  text-align: center;
  padding: 0;
  margin: 0;
  opacity: .4;
}

.text-light .de-tab.plain .d-tab-nav li {
  color: #ffffff;
}

.de-tab.plain .d-tab-nav .active-tab {
  background: none;
  font-weight: bold;
  opacity: 1;
}


@media only screen and (max-width: 767px) {

  .d-tab-nav,
  .d-tab-nav li {
    display: block !important;
  }
}

/* custom tabs end */

/* de-dot */


@keyframes dot-pulse {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2.2);
    opacity: 0;
  }
}

/* de-vertical-nav begin */

/* de-vertical-nav end */


/* timeline begin */

@keyframes pulsing {
  from {
    box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb), 1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(var(--secondary-color-rgb), 0);
  }

  to {
    box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb), 0);
  }
}

/* de-timeline end */

/* timeline-s2 begin */

@keyframes pulsing {
  from {
    box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb), 1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(var(--secondary-color-rgb), 0);
  }

  to {
    box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb), 0);
  }
}

/* de-timeline end */


/* swiperjs */

.swiper {
  background: var(--bg-dark-1);
}

.swiper,
.sw-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-slide {
  position: relative;
  background: var(--bg-dark-1);
}

.sw-overlay {
  background: -webkit-linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 70%);
  background: -moz-linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 70%);
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 70%);
}

.swiper-inner {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  width: 100px;
  font-size: 20px;
  text-align: right;
  position: absolute;
  left: auto;
  right: 40px;
  bottom: 40px;
  font-weight: 400;
}

.swiper-pagination-total {
  font-size: 20px;
  opacity: .5;
}

.swiper-pagination-current {
  color: #ffffff;
  font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}


/* swiper end */


/* swiper #2 begin */

.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .swiper-container {
    min-height: 320px;
  }
}

.swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
  height: 100vh;
  width: 100vw;
}

@media (min-width: 480px) {
  .swiper-container-wrapper {
    flex-flow: row nowrap;
  }
}

#swiper-s2 .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark-1);
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}

.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}

.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}

.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}

.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

/* swiper #2 end */


.player {
  margin: 0 auto;
  background: none;
  width: 120px;
  height: 120px;
  border: solid 2px #fff;
  position: relative;
  text-indent: -9999px;
}

.player span {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 20px solid #ffffff;
  border-bottom: 15px solid transparent;
  position: absolute;
  top: 37.5%;
  left: 45%;
}

.player:hover {
  background: var(--primary-color);
  cursor: pointer;
  border: none;
  box-shadow: none;
}

.player:hover span {
  transform: scale(.8);
}

.player.invert span {
  border-left: 20px solid #000;
}


.player.invert:hover span {
  border-left: 20px solid #fff;
}

.de-flex #mainmenu {
  margin: 0;
}


.subtitle {
  position: relative;
  font-weight: 500;
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding: 2px 10px;
  font-family: var(--body-font);
  /*background: rgba(var(--bg-dark-1-rgb), .05);*/
  color: var(--heading-font-color);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 20px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

.subtitle:before {
  content: "[  ";
  color: var(--primary-color);
  font-weight: bold;
}

.subtitle:after {
  content: "  ]";
  color: var(--primary-color);
  font-weight: bold;
}

/* .dark-scheme .subtitle,
.text-light .subtitle {
  background: rgba(255,255,255, .15);
} */

.dark-scheme .subtitle:not(.id-color),
.text-light .subtitle:not(.id-color) {
  color: #ffffff;
}

@keyframes blinkingText {
  0% {
    background: var(--primary-color);
  }

  50% {
    background: rgba(var(--primary-color-rgb), 0);
  }

  100% {
    background: var(--primary-color);
  }
}

.scrollbar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 4px;
  transition: all linear 0.1s;
  min-width: 0%;
  z-index: 1000;
}

.scrollbar-v {
  background: var(--secondary-color);
  position: fixed;
  top: calc(50% + 60px);
  left: 43px;
  width: 2px;
  transition: all linear 0.1s;
  min-height: 0%;
  z-index: 1000;
}

.scrollbar-v:before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  min-height: 100px;
  background: rgba(0, 0, 0, .15);
}


.scrollbar-v.dark:before {
  background: rgba(255, 255, 255, .2);
}

.float-text {
  font-family: var(--heading-font);
  width: 20px;
  position: fixed;
  z-index: 1002;
  margin-left: 30px;
  text-align: center;
  font-size: 12.5px;
  top: 70%;
  left: 16px;
  transform: translate(-50%, -50%);
  font-weight: 500;
}

.float-text a {
  color: #000000;
}

.float-text.dark a {
  color: #ffffff;
}

.float-text span {
  margin-left: -5px;
  margin-top: 20px;
  writing-mode: vertical-rl;
  letter-spacing: .75px;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: #222;
}


.dark-scheme .float-text span {
  color: #ffffff;
}

/* de-number begin */

.de-number {
  margin-top: 8px;
}

.d-minus,
.d-plus {
  margin-top: -6px;
  cursor: pointer;
  color: #ffffff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  padding: 3px 5px 3px 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
  background: var(--primary-color);
}

.d-minus:active,
.d-plus:active {
  background: #ffffff;
  color: #000;
}

.de-number input {
  width: 40px;
  text-align: center;
  font-size: 20px;
  border: none;
  padding: 3px !important;
  background: none;
  color: #ffffff;
  border: solid 1px var(--primary-color);
}

/* de-number close */

.carousel-indicators [data-mdb-target] {
  background: none !important;
  margin: 0 10px;
}

.carousel-indicators [data-mdb-target] img {
  margin-top: 20px;
}

.d_demo_img {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 5px;
  margin-bottom: 15px;
  border-radius: var(--rounded-1);
  -moz-border-radius: var(--rounded-1);
  -webkit-border-radius: var(--rounded-1);

  box-shadow: 5px 20px 40px 5px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 5px 20px 40px 5px rgba(0, 0, 0, .1);
  -moz-box-shadow: 5px 20px 40px 5px rgba(0, 0, 0, .1);
}

.d_demo_img:hover {
  border-color: rgba(var(--primary-color-rgb), 1);
}

.d_demo_img:hover img {
  transform: scale(1.1);
}

.soft-shadow {
  box-shadow: 0 0.25rem 0.5rem rgb(0 0 0 / 5%), 0 1.5rem 2.2rem rgb(0 0 0 / 10%);
}

.rtl .owl-carousel {
  direction: ltr;
}

.rtl .owl-carousel .owl-item {
  direction: rtl;
}

#item-carousel-big {
  padding: 0 25px;
}

.de-flex {
  display: flex;
  justify-content: space-between;
}

.de-flex>.de-flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

#loadmore {
  display: inline-block;
  margin-top: 10px;
}

.d-item {
  display: none;
}


.filter__r {
  font-family: var(--heading-font);
}

.filter__r {
  float: right;
  cursor: pointer;
}

/*Cookie Consent Begin*/
#cookieConsent {
  background-color: rgba(255, 255, 255, 0.8);
  min-height: 26px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  padding: 10px 30px 10px 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 9999;
}

#cookieConsent a {
  text-decoration: none;
}

#closeCookieConsent {
  float: right;
  display: inline-block;
  cursor: poInter;
  height: 20px;
  width: 20px;
  margin: -15px 0 0 0;
  font-weight: bold;
}

#closeCookieConsent:hover {
  color: #FFF;
}

#cookieConsent a.cookieConsentOK {
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 0 20px;
  cursor: poInter;
}

#cookieConsent a.cookieConsentOK:hover {
  opacity: .8;
}

/*Cookie Consent End*/

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(120, 169, 56, 0.2);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(120, 169, 56, 0);
  }
}

.opt-1 {
  display: inline-block;
}

.opt-2 {
  display: none;
}

.border {
  border-color: #EFEFEF !important;
}

.text-light .border {
  border-color: rgba(255, 255, 255, .1) !important;
}

.owl-carousel {
  position: relative;
  margin-top: -5px;
  bottom: -5px;
  margin-bottom: -15px;
}

.owl-thumbs img {
  padding: 3px;
}

#slider-carousel .owl-thumbs {
  padding: 3px;
  margin-bottom: 30px;
  width: auto;
}

#slider-carousel .owl-thumbs button {
  opacity: 1;
  border: none !important;
  padding: 0;
  margin-right: 15px;
  margin-bottom: 20px;
  opacity: 1;
  overflow: hidden;
  opacity: .5;
}

#slider-carousel .owl-thumb-item.active {
  opacity: 1;
}

#slider-carousel button.owl-thumb-item.active {
  -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.5);
}

#slider-carousel .owl-thumb-item img {
  background: #fff;
  padding: 0;
  width: 120px;
}

strong {
  font-weight: bold;
}

.text-light strong {
  color: #fff;
}

.border-top {
  border-top: solid 1px #e5e5e5;
}

#navigation {
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  right: 20px;
  text-align: center;
  margin-bottom: 60px;
  z-index: 1000;
}

.no-bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

p {
  margin-bottom: 20px;
}

/* .no-bottom .col-md-12 {} */

.no-bottom {
  padding-bottom: 0 !important;
}

.no-top {
  padding-top: 0 !important;
}

#filters i {
  margin-right: 10px;
}

.form-control:focus {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.d-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.d-arrow-left,
.d-arrow-right {
  display: none;
  cursor: pointer;
  position: absolute;
  margin-top: -10px;
  z-index: 100;
  width: 30px;
  height: 60px;
  background-color: rgba(255, 255, 255, 1.0);
}

.d-arrow-left {
  left: 0px;
  border-top-right-radius: 110px;
  border-bottom-right-radius: 110px;
}

.d-arrow-right {
  right: 0px;
  border-top-left-radius: 110px;
  border-bottom-left-radius: 110px;
}

.d-arrow-left i,
.d-arrow-right i {
  position: absolute;
  z-index: 1000;
  top: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}

.d-arrow-left i {
  left: 8px;
}

.d-arrow-right i {
  right: 8px;
}

.owl-nav {
  display: flex;
}

.owl-prev,
.owl-next {
  cursor: pointer;
  position: absolute;
  top: 27.5%;
  z-index: 100;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 1.0);
  border: solid 1px #ccc;
}

.dark-scheme .owl-prev,
.dark-scheme .owl-next {
  background: var(--bg-color-even);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .1);
}

.owl-prev:hover,
.owl-next:hover {
  transform: scale(1.1);
  -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
}

.owl-prev {
  left: -12px;
  border-radius: 60px;
  padding-left: 4px;
}

.owl-next {
  right: -12px;
  border-radius: 60px;
  padding-right: 4px;
}

.owl-next i {
  top: 12px;
  left: 16px;
}

/* new owl */

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0px;
}

.owl-dots button {
  border: none;
  outline: none;
  padding: 0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .15);
}

.owl-theme .owl-dots .owl-dot span {
  display: none;
}

/* new owl close */

.text-item i {
  font-size: 60px;
  margin-top: 5px;
}

.text-rotate-wrap {
  display: inline-block;
}

.text-rotate-wrap .text-item {
  display: none;
}

.wow {
  visibility: hidden;
}

#back-to-top {
  background: var(--primary-color);
  position: fixed;
  bottom: -40px;
  right: 20px;
  z-index: 1020;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
  cursor: poInter;
  padding-top: 3px;
  border: 0;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  outline: none;
  opacity: 0;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}

#back-to-top:hover {
  transform: scale(1.1);
}

#back-to-top.show {
  bottom: 20px;
  opacity: 1;
}

#back-to-top.hide {
  bottom: -40px;
}

#back-to-top:before {
  font-family: "FontAwesome";
  font-size: 18px;
  content: "\f106";
  color: #fff !important;
  position: relative;
}

/* mouse scroll icon begin */

.mouse {
  position: absolute;
  width: 22px;
  height: 42px;
  bottom: 40px;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid #fff;
  -webkit-animation: intro 1s;
  animation: intro 1s;
}

.scroll {
  display: block;
  width: 3px;
  height: 3px;
  margin: 6px auto;
  border-radius: 4px;
  background: #fff;
  -webkit-animation: finger 1s infinite;
  animation: finger 1s infinite;
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

/* mouse scroll icon close */

@-moz-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

/* owl */

.owl-custom-nav .btn-prev:before,
.owl-custom-nav .btn-next:before {
  display: block;
  font-family: "FontAwesome";
  content: "\f105";
  color: #ffffff;
  padding: 10px 0;
  font-size: 20px;
  width: 40px;
  height: 50px;
  background: var(--primary-color);
  text-align: center;
}

.owl-custom-nav .btn-prev:before {
  content: "\f104";
  border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
}

.owl-custom-nav .btn-next:before {
  border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
}

.owl-custom-nav.dark .btn-prev:before,
.owl-custom-nav.dark .btn-next:before {
  color: #000000;
}

.owl-custom-nav a {
  text-decoration: none;
}

.owl-prev,
.owl-next {
  display: none;
}

#custom-owl-slider {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  background: #fff;
}

#custom-owl-slider .items {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 20;
  visibility: inherit;
  opacity: 1;
}

#custom-owl-slider .item img {
  display: block;
  width: 100%;
  height: 100%;
}

.owl-slider-nav {
  position: absolute;
  width: 100%;
}

.owl-slider-nav,
.owl-slider-nav div {
  position: absolute;
  z-index: 10;
  cursor: poInter;
}

.owl-slider-nav .next {
  right: -50px;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-right: 50px solid transparent;
}

.owl-slider-nav .prev {
  left: -50px;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid transparent;
}

.owl-slider-nav .next:before {
  font-family: "FontAwesome";
  font-size: 24px;
  content: "\f0da";
  color: #fff;
  position: absolute;
  right: -40px;
  top: -13px;
}

.owl-slider-nav .prev:before {
  font-family: "FontAwesome";
  font-size: 24px;
  content: "\f0d9";
  color: #fff;
  position: absolute;
  left: -40px;
  top: -13px;
}

.owl-dots {
  text-align: center;
  margin-top: 30px !important;
}

.owl-dot {
  background: #ccc;
  border: none;
  margin: 5px;
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 60px;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
}

.dark-scheme .owl-dot,
.text-light .owl-dot {
  background: rgba(255, 255, 255, .2);
}

.owl-stage {
  overflow: none;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.5s infinite;
  -moz-animation: blink 0.5s infinite;
  animation: blink 0.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.list {
  margin: 0;
  padding: 0;
}

.list li {
  list-style: none;
}

.rtl .list.s1 li:after,
.list.s1 li:before {
  font-family: FontAwesome;
  content: "\f00c";
  margin-right: 10px;
}

.rtl .list.s1 li:after {
  margin-right: 0;
  margin-left: 10px;
}

.rtl .list.s1 li:before {
  display: none;
}

.dark-scheme .switch {
  background: rgba(255, 255, 255, .1);
}

.switch {
  margin-bottom: -5px;
  -webkit-appearance: none;
  height: 22px;
  width: 42px;
  background-color: #F4F4F4;
  border-radius: 60px;
  position: relative;
  cursor: poInter;
  border: none;
}

.switch::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  position: absolute;
  border-radius: 100%;
  transition: .5s;
  margin: 2px 0 0 2px;
}

.switch-with-title h5 {
  float: left;
}

.switch:checked::after {
  transform: translateX(20px);
}

.switch:focus {
  outline-color: transparent;
}

.menu_side_area {
  display: flex;
  align-items: center;
}

.rtl .menu_side_area {
  margin-left: 0;
}

.hide-content {
  display: none;
}

.ul-check {
  padding: 0;
  list-style: none;
}

.ul-check li {
  position: relative;
  display: block;
  margin-top: 0;
  padding: 0px;
  padding-left: 30px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  line-height: 1.6em;
}

.ul-check li h4 {
  font-size: 18px;
  font-weight: 500;
}

.ul-check li:before {
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
  content: "\f00c";
  margin-right: 12px;
  width: 20px;
  line-height: 1;
  padding: 4px 0;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

.rtl .ul-check li:before {
  margin-right: 0;
  margin-left: 12px;
}


/* shadow */

.circle {
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}

.carousel-indicators [data-mdb-target] {
  background-color: var(--primary-color);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}


/* css animation */

@-webkit-keyframes move-up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes move-up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.scale-in-mask {
  animation: scale-in-mask 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards;
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}

@keyframes scale-in-mask {
  0% {
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    clip-path: inset(30% 30% 30% 30%);
    opacity: 0;
  }

  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.mask-right {
  animation: mask-right 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards;
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

@keyframes mask-bottom {
  0% {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 0;
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}


@keyframes mask-left {
  0% {
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}


@keyframes mask-right {
  0% {
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.rotate-animation {
  animation: rotate-animation 30s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* price list */

#search {
  float: left;
  width: 70%;
  margin-bottom: 0;
}

#btn-search {
  border: none;
  padding: 7px;
  background: #222;
  float: left;
  width: 30%;
  height: 42px;
}

#btn-search:before {
  font-family: FontAwesome;
  content: "\f002";
  font-size: 24px;
  color: #111;
}

#btn-search:hover {
  background: #fff;
}

/* dropdown */
/* ------------------------------ */
.dropdown {
  position: relative;
  z-index: 500;
  font-weight: 600;
  display: inline-block;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  text-align: left;
}

.dropdown a,
.dropdown a:hover {
  text-decoration: none;
  outline: none;
  display: inline-block;
}

.dropdown a {
  color: #333;
}

.dark-scheme .dropdown a {
  color: #ffffff;
}

.dropdown>a {
  display: inline-block;
  padding: 7px 12px 7px 12px;
  min-width: 140px;
  border: solid 1px rgba(0, 0, 0, .2);
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  font-weight: bold;
}

.dark-scheme .dropdown>a {
  border: solid 1px rgba(255, 255, 255, .2);
}

.dropdown>a:after {
  font-family: "FontAwesome";
  font-size: 16px;
  content: "\f107";
  position: relative;
  float: right;
  margin-left: 10px;
}

.rtl .dropdown>a:after {
  margin-left: 0;
  float: left;
}

.dropdown ul,
.dropdown li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.dropdown ul {
  background: #ffffff;
  padding: 10px;
  position: absolute;
  min-width: 140px;
  display: none;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, .1);
}

.dropdown li span {
  background: #ffffff;
  display: block;
  padding: 5px 10px 5px 10px;
  border-top: none;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
}

.dark-scheme .dropdown li span {
  background: var(--bg-dark-1);
  border: solid 1px rgba(255, 255, 255, .1);
}

.dark-scheme .dropdown li span:hover {
  background: var(--bg-color-even);
  color: #fff;
}

.dropdown li span:hover {
  color: #ffffff;
  background: #eeeeee;
}

.dropdown li.active {
  display: none;
}

/* .dropdown ul.d-col-3 li span {} */

.text-light .dropdown {
  background: none;
  border: solid 1px rgba(255, 255, 255, .1);
}

.text-light .dropdown a {
  color: #ffffff;
}

a.btn-search-big {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 20px;
  font-weight: bold;
  color: #ffffff;
  font-size: 20px;
  border: solid 1px #ffffff;
}

a.btn-search-big:hover {
  background: #ffffff;
  color: #35404e;
}

/* --------------------------------------------------
* plugin
* --------------------------------------------------*/

/* ================================================== */


/* isotope */


/* ================================================== */

.isotope {
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

/**** disabling Isotope CSS3 transitions ****/

#filters {
  font-family: var(--body-font);
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 400;
}

#filters li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 25px;
}

#filters a {
  outline: none;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  font-weight: 600;
}

.text-light #filters a {
  color: rgba(255, 255, 255, .5);
}

#filters a:hover {
  background: rgba(255, 255, 255, .2);
}

#filters a.selected {
  color: #fff;
}

.text-light #filters a:hover {
  color: #fff;
}

.text-light #filters a.selected {
  color: #fff;
}

.text-light #filters a.selected {
  color: #fff;
}

a,
img {
  outline: 0;
}

/* overwrite bootstrap */

@-webkit-keyframes grow {
  to {
    transform: translateX(-50%) scale(0);
  }
}

@keyframes grow {
  to {
    transform: translateX(-50%) scale(0);
  }
}


/* -------------------------Line Preloader--------------------- */

@keyframes anim4 {
  to {
    transform: rotate(360deg);
  }
}

/* countdown-begin */

/* ================================================== */


/* media query */


/* ================================================== */

@media (min-width: 1000px) {

  .container {
    max-width: var(--container-max-width);
  }
}


@media (min-width: 1200px) {

  .container {
    max-width: 1200px;
  }
}


@media (min-width: 1400px) {

  .container {
    max-width: 1304px;
  }
}


/* bootstrap cols 5 */

@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
  }
}

/* bootstrap cols 5 end */

@media(min-width:980px) and (max-width: 1199px) {
  #mainmenu li a:after {
    margin-left: 15px;
  }

  .container {
    min-width: 95%;
  }
}

/* -------------------------------------------------- 
    design for 768px
    /* ================================================== */

@media only screen and (max-width: 992px) {

  .container {
    max-width: 100%;
  }

  #menu-btn {
    display: block;
    float: right;
    z-index: 1000;
    top: 0;
    right: 0;
  }

  .header-col-mid #mainmenu {
    position: absolute;
    top: 90px;
    width: 100%;
    padding: 0 0 0 0;
    left: 20px;
  }

  #mainmenu>li::before {
    display: none;
  }

  header {
    display: none;
  }

  header,
  header.fixed {
    display: block;
    position: inherit;
    margin: 0;
    padding: 0;
    margin-top: 0;
    height: auto;
    background: var(--bg-dark-1);
  }

  header.autoshow {
    height: auto;
    top: 0;
  }

  header.autoshow #mainmenu li a {
    background: none;
  }

  #logo,
  #logo .inner {
    vertical-align: middle;
    height: auto;
  }

  nav {
    height: 0;
  }

  #mainmenu {
    position: fixed;
    height: 100%;
    z-index: 200;
    width: 200px;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 100px !important;
    overflow-y: auto;
    top: 100px;
  }

  #mainmenu ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  #mainmenu a.menu-item {
    text-align: left;
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #mainmenu li.has-child:after {
    display: none;
  }

  #mainmenu li li a.menu-item,
  #mainmenu li li li a.menu-item {
    padding-left: 0;
  }

  #mainmenu a.menu-item:hover {
    background: #111;
  }

  #mainmenu a.menu-item:hover {
    background: #111;
  }

  #mainmenu li ul {
    display: block;
    position: inherit;
    margin: 0;
    width: 100%;
  }

  #mainmenu li {
    border-bottom: solid 1px var(--bg-dark-3);
    margin: 0;
    width: 100%;
    display: block;
  }

  #mainmenu li a.menu-item:after {
    display: none;
  }

  #mainmenu li:last-child {
    margin-bottom: 30px;
  }

  #mainmenu li ul {
    border-top: solid 1px #eee;
    top: auto;
    width: auto;
    height: auto;
    position: inherit;
    visibility: visible;
    opacity: 1;
  }

  #mainmenu>li.menu-item-has-children>a.menu-item {
    position: relative;
    padding-right: 15px;
  }

  #mainmenu>li.menu-item-has-children>a.menu-item:after {
    content: "\f107";
    font-family: "FontAwesome";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
  }

  #mainmenu li ul a.menu-item {
    width: 100%;
    background: none;
    border: none;
  }

  #mainmenu li ul li {
    border: none;
    padding-left: 40px;
  }

  #mainmenu li ul li a.menu-item {
    display: block;
  }

  #mainmenu li ul li:last-child {
    border-bottom: none;
    margin: 0;
  }

  #mainmenu li ul li:last-child a.menu-item {
    border-bottom: none;
  }

  #mainmenu li a {
    color: #eceff3;
  }

  #mainmenu li li a.menu-item:hover {
    color: #fff;
  }

  #mainmenu ul:not(.mega) {
    border: none;
  }

  #mainmenu>li ul.mega .sb-menu {
    border: none;
  }

  #back-to-top {
    display: none;
  }

  header.header-mobile {
    overflow: hidden;
    position: relative;
  }

  header.header-mobile #mainmenu {
    width: 100%;
    padding-right: 30px;
    position: absolute;
  }

  header.header-mobile #mainmenu ul {
    background: none;
  }

  header.header-mobile #mainmenu a.menu-item {
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  header.header-mobile #mainmenu a.menu-item:hover {
    background: none;
  }

  header.header-mobile #mainmenu li ul {
    display: block;
    position: inherit;
    margin: 0;
    width: 100%;
  }

  header.header-mobile #mainmenu li {
    border-bottom: solid 1px rgba(255, 255, 255, .2);
    margin: 0;
    width: 100%;
    display: block;
  }

  .dark-scheme header.header-mobile #mainmenu li {
    border-bottom-color: rgba(255, 255, 255, .1);
  }

  header.header-mobile #mainmenu li ul.mega ul {
    height: auto;
  }

  header.header-mobile #mainmenu li a.menu-item:after {
    display: none;
  }

  header.header-mobile #mainmenu li:last-child {
    margin-bottom: 30px;
  }

  header.header-mobile #mainmenu li ul {
    border-top: none;
    top: auto;
  }

  header.header-mobile #mainmenu li ul a.menu-item {
    width: 100%;
    background: none;
    border: none;
  }

  header.header-mobile #mainmenu li ul li {
    border: none;
    padding-left: 40px;
  }

  header #mainmenu li ul li:first-child {
    border-top: solid 1px var(--bg-dark-3);
  }

  .dark-scheme header #mainmenu li ul li:first-child {
    border-top-color: rgba(255, 255, 255, .1);
  }

  header.header-mobile #mainmenu li ul li a.menu-item {
    display: block;
    border-bottom: solid 1px var(--bg-dark-3);
  }

  header.header-mobile #mainmenu li ul li:last-child {
    border-bottom: none;
    margin: 0;
  }

  header.header-mobile #mainmenu li ul li:last-child a.menu-item {
    border-bottom: none;
  }

  header.header-mobile #mainmenu li a {
    color: #ffffff;
  }

  .dark-scheme header.header-mobile #mainmenu li a.menu-item {
    color: #ffffff;
  }

  header.header-mobile #mainmenu li a.menu-item:hover {
    color: var(--secondary-color);
  }

  .dark-scheme header.header-mobile #mainmenu li a.menu-item:hover {
    color: #fff;
  }

  header.header-mobile #mainmenu li ul {
    height: 0;
    overflow: hidden;
    position: relative;
    left: 0;
  }

  header.header-mobile #mainmenu li ul li ul {
    margin-bottom: 10px;
  }

  header.header-mobile #mainmenu>li>span {
    width: 36px;
    height: 36px;
    background: url(../images/ui/arrow-down-light.webp) center no-repeat;
    position: absolute;
    right: 0;
    margin-top: 10px;
    z-index: 1000;
    cursor: poInter;
  }

  .dark-scheme header.header-mobile #mainmenu>li>span {
    background: url(../images/ui/arrow-down-light.webp) center no-repeat;
  }

  header.header-mobile #mainmenu li span.active {
    background: url(../images/ui/arrow-up-light.webp) center no-repeat;
  }

  .dark-scheme header.header-mobile #mainmenu li span.active {
    background: url(../images/ui/arrow-up-light.webp) center no-repeat;
  }

  header.header-mobile #mainmenu li>ul>li>span {
    width: 36px;
    height: 36px;
    background: url(../images/ui/arrow-down.webp) center no-repeat;
    position: absolute;
    right: 0;
    margin-top: -45px;
    z-index: 1000;
    cursor: poInter;
  }

  header.header-mobile #mainmenu>li>ul>li>span.active {
    background: url(../images/ui/arrow-up.webp) center no-repeat;
  }

  header.header-mobile #mainmenu li ul li a.menu-item {
    border-bottom: solid 1px rgba(255, 255, 255, .2);
  }

  .dark-scheme header.header-mobile #mainmenu li ul li a.menu-item {
    border-bottom-color: rgba(255, 255, 255, .1);
  }

  header.header-mobile #mainmenu li ul li:last-child>a.menu-item {
    border-bottom: none;
  }

  #mainmenu li ul.mega {
    position: fixed;
    left: 0;
    width: 100%;
    margin-top: 30px;
    display: block;
  }

  #mainmenu li ul.mega>li {
    width: 100%;
  }

  #mainmenu li ul.mega>li ul {
    position: static;
    visibility: visible;
    opacity: 1;
    left: 0;
    float: none;
    width: 100%;
  }

  #mainmenu ul.mega>li ul li {
    margin: 0;
    padding: 0;
  }

  /* header light */

  #mainmenu a.menu-item span {
    display: none;
  }

  .dropdown {
    display: inline-block;
    margin-bottom: 10px;
  }

  section {
    padding: 60px 0;
  }

  /* title tablet */

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  /* padding top (px) */

  /* padding top (px) */

  /* margin top (px) */

  /* margin top (px) */

  .fs-sm-3vw {
    font-size: 3vw
  }

  .fs-sm-7vw {
    font-size: 7vw
  }

  .fs-sm-10vw {
    font-size: 10vw
  }

  #content {
    margin-top: 50px;
  }

  #btn-extra {
    display: none;
  }

  #mainmenu li a:before {
    display: none;
  }

}

/* -------------------------------------------------- 
    custom for 320px & 480px 
    /* -------------------------------------------------- */

@media only screen and (max-width: 767px) {

  header .logo-main {
    display: none;
  }

  header .logo-mobile {
    display: block;
  }

  header .btn-main {
    display: none;
  }

  #topbar {
    display: none;
  }

  .menu_side_area {
    margin-left: 20px;
    width: 100%;
    position: relative;
    right: 0;
    text-align: right;
    z-index: 0;
    display: block;
  }

  header .container {
    min-width: 100%;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-item {
    font-size: 48px;
    line-height: 48px;
  }

  .text-item i {
    font-size: 36px;
  }

  header a.btn-main {
    display: none !important;
  }

  .scrollbar-v,
  .float-text {
    top: 70%;
    left: 0%;
  }

  section {
    padding: 40px 0;
  }

  /* title phone */

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  /* padding top (px) */

  /* padding top (px) */

  /* margin top (px) */

  /* margin top (px) */

}

/* -------------------------------------------------- 
    design for 480px
    /* -------------------------------------------------- */

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* -------------------------------------------------- 
    design for 320px
    /* -------------------------------------------------- */

@media only screen and (max-width: 480px) {

  .text-item {
    font-size: 32px;
    line-height: 32px;
  }

  .text-item i {
    font-size: 24px;
  }

  header a.btn-main i {
    display: inline-block;
  }

}

@media only screen and (max-width: 360px) {
  #topbar {
    display: none;
  }
}

/* section control */
@media only screen and (min-device-width: 768) and (max-device-width: 1024) and (orientation: portrait) {
  section {
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

@media only screen and (max-width: 992px) {

  section {
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

/* new added */

/* New styles */

.attendee-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  color: #fff;
  height: 100%;
}

.attendee-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.attendee-box .icon {
  font-size: 44px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

/* .attendee-box:hover .icon {
  color: var(--primary-color);
} */

.attendee-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  line-height: 1.4;
}


.video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}



.industry-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  color: #fff;
  height: 100%;
}

.industry-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.industry-box .icon {
  font-size: 44px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.industry-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  line-height: 1.4;
}

/* //Hero Logo */

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 800px;
  /* min-width: 1200px; */
  height: auto;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .hero-logo {
    max-width: 600px;
  }

}

@media screen and (max-width: 480px) {
  .hero-logo {
    max-width: 300px;
  }

}

/* New styles --> Hero background video */
/* jarallax effect with video zoom and positioning at the bottom */
#section-hero .jarallax {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

#section-hero .jarallax video {
  position: absolute;
  top: 10vh !important;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.2);
  /* Center and zoom */
  z-index: -1;
  /* Behind other content */
}

/* Ensure the section has proper dimensions */
#section-hero {
  min-height: 700px !important;
  /* Matches the mh-700 class */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-content-group {
  position: relative;
  top: clamp(-5rem, -5vw, -3rem);
}

.hero-main-title {
  font-size: clamp(6.25rem, 6.3vw, 7rem);
  margin-bottom: clamp(0.9rem, 1.1vw, 1.2rem) !important;
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.hero-eyebrow {
  position: relative;
  z-index: 5;
  margin: 0 0 clamp(0.45rem, 0.8vw, 0.75rem);
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(169, 140, 255, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(
      110deg,
      transparent 28%,
      rgba(255, 255, 255, 0.06) 42%,
      rgba(196, 174, 255, 0.24) 50%,
      rgba(255, 255, 255, 0.06) 58%,
      transparent 72%
    ),
    rgba(16, 20, 53, 0.58);
  background-position: 130% 0, 0 0;
  background-size: 250% 100%, auto;
  background-repeat: no-repeat;
  color: #c7b6ff;
  font-size: clamp(0.68rem, 0.68vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-slogan {
  position: relative;
  z-index: 5;
  margin: 0;
  max-width: 96vw;
  white-space: nowrap;
  font-size: clamp(1.25rem, 1.7vw, 1.85rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

#section-hero .hero-slogan {
  color: #ffffff;
}

#section-hero .hero-slogan + .spacer-single {
  height: clamp(1.25rem, 1.5vw, 1.4rem);
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 74px;
  overflow: hidden;
  border-top: 1px solid rgba(169, 140, 255, 0.48);
  border-bottom: 1px solid rgba(118, 77, 240, 0.28);
  background:
    radial-gradient(circle at 18% 50%, rgba(118, 77, 240, 0.2), transparent 30%),
    radial-gradient(circle at 82% 50%, rgba(149, 103, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(24, 29, 72, 0.96), rgba(13, 17, 46, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(149, 103, 255, 0.08),
    0 -12px 32px rgba(4, 6, 24, 0.32);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-marquee::before,
.hero-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(2rem, 7vw, 7rem);
  pointer-events: none;
}

.hero-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #101435 10%, rgba(16, 20, 53, 0.82) 42%, transparent);
}

.hero-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #101435 10%, rgba(16, 20, 53, 0.82) 42%, transparent);
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: stretch;
  will-change: transform;
  animation: hero-marquee-scroll 30s linear infinite;
}

.hero-marquee__group {
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  align-items: center;
  gap: clamp(4rem, 7vw, 7.5rem);
  padding: 0 clamp(2rem, 4.2vw, 4.2rem);
  box-sizing: border-box;
}

.hero-marquee__group span {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.65rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 22px rgba(149, 103, 255, 0.16);
  transition:
    color 220ms ease,
    -webkit-text-stroke 220ms ease,
    text-shadow 220ms ease;
}

.hero-marquee__group span::after {
  content: "✦";
  position: absolute;
  left: calc(100% + clamp(1rem, 2.3vw, 2.6rem));
  top: 50%;
  color: #9567ff;
  font-size: 1.95rem;
  transform: translateY(-50%);
  -webkit-text-fill-color: #9567ff;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 12px rgba(118, 77, 240, 0.5);
}

@media (hover: hover) {
  .hero-marquee:hover .hero-marquee__group span {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 18px rgba(149, 103, 255, 0.28);
  }

  .hero-marquee:hover .hero-marquee__group span::after {
    color: #9567ff;
    -webkit-text-fill-color: #9567ff;
    -webkit-text-stroke: 0;
  }
}

@keyframes hero-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.hero-calendar {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(88vw, 370px);
  padding: 0.42rem 0.62rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(177, 158, 228, 0.42);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 88% 28%, rgba(112, 63, 224, 0.22), transparent 43%),
    linear-gradient(135deg, rgba(6, 11, 35, 0.94), rgba(16, 18, 55, 0.94));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-calendar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, #8e63ff, #a77cff 52%, #764df0);
  pointer-events: none;
}

.hero-calendar__countdown {
  display: grid;
  justify-items: center;
  gap: 0.12rem;
  padding: 0.06rem 0.5rem 0.08rem 0.1rem;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}

#section-hero .hero-calendar__days {
  color: #9567ff !important;
  font-family: var(--title-font);
  font-size: clamp(1.42rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 22px rgba(118, 77, 240, 0.32);
}

.hero-calendar__countdown > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.5rem, 0.46vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.hero-calendar__button {
  display: grid;
  min-height: 44px;
  padding: 0.34rem 0.12rem 0.34rem 0.82rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.48rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: clamp(0.62rem, 0.55vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-calendar__button > i:first-child {
  color: #9d74ff;
  font-size: 1.05rem;
  transition:
    color 180ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-calendar__arrow {
  color: #9567ff;
  font-size: 0.66rem;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-calendar__button:hover,
.hero-calendar__button:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.hero-calendar__button:hover > i:first-child,
.hero-calendar__button:focus-visible > i:first-child {
  color: #cbb9ff;
  transform: translateY(-1px);
}

.hero-calendar__button:hover .hero-calendar__arrow,
.hero-calendar__button:focus-visible .hero-calendar__arrow {
  transform: translateX(4px);
}

.hero-calendar__button:focus-visible {
  border-radius: 0.8rem;
  outline: 2px solid rgba(169, 133, 255, 0.7);
  outline-offset: 2px;
}

.js-enabled #section-hero .hero-eyebrow,
.js-enabled #section-hero .hero-content-group h1,
.js-enabled #section-hero .hero-slogan,
.js-enabled #section-hero .hero-calendar {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.js-enabled body.is-page-ready #section-hero .hero-eyebrow {
  animation:
    hero-copy-reveal 720ms cubic-bezier(0.2, 0.75, 0.25, 1) 30ms both,
    hero-eyebrow-glow 2.4s ease-in-out 900ms infinite alternate,
    hero-eyebrow-shimmer 3.4s ease-in-out 1.1s infinite;
}

.js-enabled body.is-page-ready #section-hero .hero-content-group h1 {
  animation: hero-title-reveal 900ms cubic-bezier(0.2, 0.75, 0.25, 1) 140ms both;
}

.js-enabled body.is-page-ready #section-hero .hero-slogan {
  animation: hero-copy-reveal 760ms cubic-bezier(0.2, 0.75, 0.25, 1) 340ms both;
}

.js-enabled body.is-page-ready #section-hero .hero-calendar {
  animation: hero-calendar-reveal 780ms cubic-bezier(0.16, 0.8, 0.24, 1) 540ms both;
}

@keyframes hero-title-reveal {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(34px) scale(0.975);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-eyebrow-glow {
  from {
    border-color: rgba(169, 140, 255, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 rgba(118, 77, 240, 0);
  }

  to {
    border-color: rgba(185, 160, 255, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 18px rgba(118, 77, 240, 0.3);
  }
}

@keyframes hero-eyebrow-shimmer {
  from {
    background-position: 130% 0, 0 0;
  }

  to {
    background-position: -130% 0, 0 0;
  }
}

@keyframes hero-calendar-reveal {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(22px) scale(0.94);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled #section-hero .hero-eyebrow,
  .js-enabled #section-hero .hero-content-group h1,
  .js-enabled #section-hero .hero-slogan,
  .js-enabled #section-hero .hero-calendar {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    will-change: auto;
  }
}

@media screen and (max-width: 520px) {
  .hero-slogan {
    max-width: 96vw;
    font-size: clamp(0.68rem, 2.8vw, 1.05rem);
    line-height: 1.55;
    letter-spacing: 0.035em;
  }

  .hero-calendar {
    width: min(78vw, 255px);
    padding: 0.38rem 0.5rem 0.42rem;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 1rem;
  }

  .hero-calendar__countdown {
    grid-template-columns: auto auto;
    justify-content: center;
    justify-items: start;
    align-items: baseline;
    gap: 0.42rem;
    padding: 0.12rem 0.18rem 0.38rem;
  }

  .hero-calendar__days {
    font-size: 1.35rem;
  }

  .hero-calendar__countdown > span {
    font-size: 0.54rem;
  }

  .hero-calendar__button {
    min-height: 36px;
    padding: 0.44rem 0.18rem 0.04rem;
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 0.42rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    font-size: 0.58rem;
  }

  .hero-calendar__button > i:first-child {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-content-group {
    top: -2rem;
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  #section-hero .hero-content-group {
    top: -6.5rem;
  }
}


/* New styles --> Events in Numbers */

.event-numbers-block {
  padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.event-numbers-title {
  margin-bottom: clamp(2rem, 4vw, 3.75rem);
  background: none !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.66) !important;
}

.event-numbers-panel {
  width: min(100%, 1000px);
  padding: 0;
  margin-inline: auto;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}

.stats-section .stat-card {
  display: flex;
  height: 180px;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.1rem, 1.6vw, 1.4rem);
  overflow: hidden;
  border: 1px solid rgba(151, 112, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(24, 27, 68, 0.98) 0%,
    rgba(31, 30, 84, 0.98) 58%,
    rgba(79, 52, 166, 0.98) 100%
  );
  box-shadow:
    12px 12px 24px rgba(116, 70, 237, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  text-align: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.stats-section .stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(151, 112, 255, 0.3);
  box-shadow:
    12px 15px 30px rgba(116, 70, 237, 0.24),
    0 22px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stats-section .stat-number {
  margin: 0 0 0.4rem;
  background: none !important;
  color: transparent !important;
  font-size: clamp(3rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1.7px #ffffff;
  text-shadow: 0 8px 22px rgba(7, 9, 30, 0.24);
}

.stats-section .stat-label {
  display: flex;
  min-height: 2.7em;
  align-items: flex-start;
  justify-content: center;
  max-width: 12ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .stats-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-section .stat-card {
    height: 170px;
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr;
  }

  .stats-section .stat-card {
    height: 150px;
    min-height: 0;
    border-radius: 20px;
  }

  .stats-section .stat-number {
    font-size: 3.5rem;
  }
}

/* New styles --> Series Supporting Partners */

.supporting_partners .glass-logo {
  /* background: rgba(255, 255, 255, 0.6); */
  background-color: #fff;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supporting_partners .glass-logo:hover {
  transform: scale(1.05);
}

.supporting_partners img {
  width: 100%;
  object-fit: contain;
}

/* New styles --> Register form */
form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

form .form-control:focus {
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
  box-shadow: none;
}

.form-check-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

#section-register .bg-blur {
  pointer-events: auto;
  /* Ensure child elements can be clicked */
  position: relative;
  z-index: 1;
}

#section-register .gradient-edge-bottom,
#section-register .gradient-edge-top,
#section-register .sw-overlay {
  pointer-events: none;
  /* Prevent them from blocking clicks */
}

/* Scoped to section-speakers to avoid affecting other components */

#section-speakers {
  position: relative;
  overflow: hidden;
}

#section-speakers .row.g-3 {
  --bs-gutter-x: clamp(1rem, 1.8vw, 1.4rem);
  --bs-gutter-y: clamp(1rem, 1.8vw, 1.4rem);
  margin-top: 0.8rem;
}

#section-speakers .row.g-3 > [class*="col-"] {
  display: flex;
}

#section-speakers .speaker-group {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

#section-speakers .speaker-group--keynote {
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
}

#section-speakers .speaker-group__title {
  margin: 0 0 1.25rem;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 1.3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
}

#section-speakers .speaker-card {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(151, 112, 255, 0.22) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(155deg, rgba(35, 39, 91, 0.98), rgba(13, 18, 46, 0.98)) !important;
  box-shadow:
    0 18px 38px rgba(2, 7, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition:
    border-color 420ms ease,
    box-shadow 620ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

#section-speakers .speaker-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, #7146ed, #ad7bff 52%, #7146ed);
  box-shadow: 0 0 20px rgba(151, 112, 255, 0.6);
  pointer-events: none;
}

#section-speakers .speaker-card__linkedin {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(8, 12, 34, 0.7);
  box-shadow: 0 8px 20px rgba(4, 7, 22, 0.28);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 320ms ease,
    border-color 320ms ease,
    box-shadow 360ms ease,
    transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

#section-speakers .speaker-card__linkedin:hover,
#section-speakers .speaker-card__linkedin:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: #0a66c2;
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

#section-speakers .speaker-card__linkedin:focus-visible {
  outline: 3px solid rgba(101, 169, 232, 0.48);
  outline-offset: 3px;
}

#section-speakers .speaker-card__linkedin--disabled {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

#section-speakers .speaker-card__media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(151, 112, 255, 0.18);
  background: #f5f4fb;
}

#section-speakers .speaker-card .card-img-top {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  background: #f5f4fb;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

#section-speakers .speaker-card__company-logo {
  display: flex;
  width: min(44%, 7rem);
  height: 3.15rem;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  justify-content: center;
  margin-top: auto;
  overflow: hidden;
  padding: 0.15rem 0.25rem;
  border: 1px solid rgba(122, 91, 225, 0.28);
  border-radius: 11px;
  background: #ffffff;
  box-shadow:
    0 10px 24px rgba(5, 8, 28, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.42);
  pointer-events: none;
  transition:
    box-shadow 360ms ease,
    transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

#section-speakers .speaker-card__company-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

#section-speakers .speaker-card .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 12.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.05rem 1.1rem 1.15rem !important;
  background:
    linear-gradient(180deg, rgba(39, 35, 91, 0.96), rgba(14, 18, 47, 0.98));
  text-align: center !important;
}

#section-speakers .speaker-card .card-body::before {
  content: none;
  display: none;
}

#section-speakers .speaker-card--keynote {
  border-color: rgba(188, 146, 255, 0.5) !important;
  box-shadow:
    0 22px 48px rgba(2, 7, 24, 0.4),
    0 0 34px rgba(118, 77, 240, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

#section-speakers .speaker-card--keynote::before {
  height: 4px;
  background: linear-gradient(90deg, #9d71ff, #f1d6ff 52%, #9d71ff);
}

#section-speakers .speaker-card--keynote .card-body::before {
  content: "Keynote Speaker";
  color: #e2ccff;
}

#section-speakers .speaker-grid-status {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

#section-speakers .speaker-card h3 {
  width: calc(100% + 2.2rem);
  margin: -1.05rem -1.1rem 0.75rem !important;
  padding: 0.68rem 1rem;
  border-block: 1px solid rgba(204, 182, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(91, 57, 198, 0.96), rgba(118, 77, 240, 0.96), rgba(91, 57, 198, 0.96));
  background-position: 0% 50%;
  background-size: 200% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 7px 18px rgba(6, 8, 28, 0.18);
  color: #ffffff;
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.08rem) !important;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-align: center;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  transition:
    background-position 600ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 360ms ease,
    letter-spacing 360ms ease;
}

#section-speakers .speaker-card small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.48;
  margin-bottom: 0.9rem;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#section-speakers .speaker-card:hover,
#section-speakers .speaker-card:focus-visible {
  border-color: rgba(171, 125, 255, 0.62) !important;
  box-shadow:
    0 24px 48px rgba(2, 7, 24, 0.44),
    0 0 0 1px rgba(151, 112, 255, 0.14),
    0 0 30px rgba(100, 63, 225, 0.16);
  transform: translate3d(0, -4px, 0) scale(1.018);
}

#section-speakers .speaker-card:hover h3,
#section-speakers .speaker-card:focus-visible h3 {
  background-position: 100% 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(55, 31, 145, 0.3);
  letter-spacing: 0;
}

#section-speakers .speaker-card:hover .speaker-card__linkedin,
#section-speakers .speaker-card:focus-visible .speaker-card__linkedin {
  border-color: rgba(255, 255, 255, 0.58);
  background: #0a66c2;
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.32);
  transform: translateY(-2px);
}

#section-speakers .speaker-card:hover .card-img-top,
#section-speakers .speaker-card:focus-visible .card-img-top {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

#section-speakers .speaker-card:hover .speaker-card__company-logo,
#section-speakers .speaker-card:focus-visible .speaker-card__company-logo {
  box-shadow:
    0 13px 28px rgba(5, 8, 28, 0.36),
    0 0 0 1px rgba(166, 129, 255, 0.42);
  transform: translateY(-2px);
}

#section-speakers .speaker-card:focus-visible {
  outline: 3px solid rgba(151, 112, 255, 0.5);
  outline-offset: 4px;
}

@media (max-width: 575px) {
  #section-speakers .row.g-3 {
    max-width: 360px;
    margin-inline: auto;
  }

  #section-speakers .speaker-card .card-body {
    min-height: 12.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #section-speakers .speaker-card,
  #section-speakers .speaker-card__linkedin,
  #section-speakers .speaker-card__company-logo,
  #section-speakers .speaker-card h3,
  #section-speakers .speaker-card .card-img-top {
    transition: none;
  }

  #section-speakers .speaker-card:hover,
  #section-speakers .speaker-card:focus-visible {
    transform: none !important;
  }
}

.series-speakers-heading {
  position: relative;
  z-index: 2;
  padding-top: clamp(2.8rem, 5vw, 4.5rem) !important;
  padding-inline: 1rem;
}

.series-speakers-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  letter-spacing: -0.035em;
  text-shadow: 0 12px 32px rgba(4, 7, 29, 0.38);
}

.series-speakers-heading h2::after {
  content: none;
}

.series-speakers-section {
  overflow: hidden;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  padding: clamp(1.25rem, 2.8vw, 2.2rem) !important;
  border: 1px solid rgba(151, 112, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(116, 72, 237, 0.2), transparent 31%),
    radial-gradient(circle at 88% 100%, rgba(70, 105, 224, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(25, 29, 73, 0.98), rgba(9, 13, 39, 0.99)) !important;
  box-shadow:
    0 24px 65px rgba(2, 5, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.series-speakers-section .sw-overlay {
  background: transparent !important;
}

.series-speakers-section .gradient-edge-bottom {
  display: none;
}

.series-speakers-section > .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0;
}

.series-speakers-section .speaker-swiper,
.series-sponsors-marquee,
.series-bridge-swiper {
  position: relative;
  top: auto;
  left: auto;
  height: auto;
}

.series-speakers-section .speaker-swiper {
  overflow: hidden;
  padding: 0.35rem 0.35rem 1rem;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.series-speakers-section .speaker-swiper .swiper-wrapper {
  align-items: stretch;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.series-speakers-section .speaker-swiper .swiper-slide {
  display: flex;
  height: auto;
  box-sizing: border-box;
  padding-block: 0.75rem !important;
  background: transparent !important;
}

.series-speakers-section .speaker-swiper .card {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  margin-inline: 0 !important;
  border: 1px solid rgba(169, 123, 255, 0.25) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(165deg, rgba(35, 38, 89, 0.98), rgba(13, 17, 45, 0.99)) !important;
  box-shadow:
    0 16px 36px rgba(2, 6, 27, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: translateY(0);
  transition:
    border-color 300ms ease,
    box-shadow 400ms ease,
    transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.series-speakers-section .speaker-swiper .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, #7146ed, #b88cff 50%, #7146ed);
  box-shadow: 0 0 18px rgba(151, 112, 255, 0.62);
  pointer-events: none;
}

.series-speakers-section .speaker-swiper .card::after {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  z-index: -1;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(125, 79, 244, 0.18);
  filter: blur(36px);
  pointer-events: none;
}

.series-speakers-section .speaker-swiper .card > img {
  display: block !important;
  width: 100% !important;
  max-width: none;
  height: auto !important;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  border: 0;
  border-radius: 0 !important;
  background: #e8e7ef;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.02);
  transition:
    filter 350ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.series-speakers-section .speaker-swiper .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 11rem;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 1.15rem !important;
  border-top: 1px solid rgba(177, 142, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(38, 34, 87, 0.96), rgba(13, 17, 45, 0.99));
}

.series-speakers-section .speaker-swiper .card-body::before {
  content: none;
}

.series-speakers-section .speaker-swiper .card h3 {
  display: -webkit-box;
  min-height: 2.45em;
  overflow: hidden;
  margin: 0 0 0.55rem !important;
  color: #ffffff;
  font-size: clamp(0.94rem, 0.32vw + 0.86rem, 1.06rem) !important;
  font-weight: 800 !important;
  line-height: 1.22;
  letter-spacing: -0.018em;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.series-speakers-section .speaker-swiper .card p {
  width: 100%;
  margin: 0 !important;
  color: rgba(236, 234, 247, 0.72) !important;
  font-size: 0.75rem !important;
  line-height: 1.4;
  text-align: center;
}

.series-speakers-section .speaker-swiper .card p:first-of-type {
  display: -webkit-box;
  min-height: 3.15rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.series-speakers-section .speaker-swiper .card p:last-child {
  display: -webkit-box;
  min-height: 2.4rem;
  overflow: hidden;
  margin-top: auto !important;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(177, 142, 255, 0.14);
  color: #cdb9ff !important;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.series-speakers-section .speaker-swiper .card:hover {
  border-color: rgba(179, 139, 255, 0.62) !important;
  box-shadow:
    0 24px 48px rgba(2, 6, 27, 0.46),
    0 0 28px rgba(104, 66, 224, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.series-speakers-section .speaker-swiper .card:hover > img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

@media (max-width: 767px) {
  .series-speakers-section {
    width: min(100% - 28px, 540px);
    padding: 1rem !important;
    border-radius: 22px;
  }

  .series-speakers-section .speaker-swiper {
    width: min(100%, 330px);
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .series-speakers-section .speaker-swiper .card,
  .series-speakers-section .speaker-swiper .card > img {
    transition: none;
  }

  .series-speakers-section .speaker-swiper .card:hover {
    transform: none;
  }
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover if desired */

/* supporting_partners */
.supportive-partners {
  margin-top: 40px;
  animation: fadeInUp 1s ease-in-out;
}

.cta-btn-section {
  height: 0;
  padding: 0;
}

.sponsors-partners-section {
  padding-top: 70px !important;
}

.sponsors-partners-section .supportive-partners {
  margin-top: 0 !important;
}

.partner-logos .partner-logo {
  background-color: #fff;
  width: auto;
  max-width: min(100%, 375px);
  height: clamp(108px, 7vw, 125px);
  max-height: none;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: grayscale(0%);
  opacity: 0.8;
  border-radius: 10px;

}

/* .partner-logos .partner-logo.main-sp{
  max-height: 130px !important;
} */

.partner-logos .partner-logo:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
  opacity: 1;
}

.series-sponsors-grid {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.series-sponsors-grid .swiper-wrapper {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch !important;
  transform: none !important;
}

.series-sponsors-grid .swiper-slide {
  width: 100% !important;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
}

.series-sponsors-grid .swiper-slide:nth-child(n + 9) {
  display: none !important;
}

.series-sponsors-grid .swiper-slide .bg-white {
  min-height: 145px;
  overflow: hidden;
  border-radius: 14px !important;
  transform: none !important;
}

.series-sponsors-grid .swiper-slide img {
  width: auto;
  max-width: 100%;
  height: clamp(80px, 5.5vw, 96px);
  object-fit: contain;
  transform: scale(1.22);
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.series-sponsors-grid .swiper-slide:hover,
.series-sponsors-grid .swiper-slide:hover .bg-white {
  transform: none !important;
}

.series-sponsors-grid .swiper-slide:hover img {
  transform: scale(1.34);
}

.series-sponsors-marquee-block {
  margin-top: clamp(3.25rem, 6vw, 5.5rem);
  padding-top: clamp(2.5rem, 4vw, 3.75rem);
  border-top: 1px solid rgba(151, 112, 255, 0.28);
}

.series-sponsors-marquee-title {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  text-align: center;
}

.series-sponsors-marquee {
  width: min(100%, 1320px);
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.series-sponsors-marquee .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
}

.series-sponsors-marquee .swiper-slide {
  height: auto;
  padding-block: 0.45rem;
}

.series-sponsors-marquee .swiper-slide > div {
  min-height: 126px;
  overflow: hidden;
  border: 1px solid rgba(151, 112, 255, 0.18);
  border-radius: 14px !important;
  box-shadow: 0 14px 32px rgba(4, 8, 28, 0.24);
}

.series-sponsors-marquee .swiper-slide img {
  width: auto;
  max-width: 100%;
  height: clamp(80px, 5.5vw, 96px);
  object-fit: contain;
  transform: scale(1.18);
}

@media (max-width: 991px) {
  .series-sponsors-grid .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .series-sponsors-grid .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .series-sponsors-grid .swiper-slide .bg-white {
    min-height: 112px;
  }
}

/* RegTech + DNFBP Series */
#section-series-bridge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 4vw, 4rem) 0 clamp(4.5rem, 7vw, 7.25rem);
  border-top: 1px solid rgba(151, 112, 255, 0.18);
  border-bottom: 1px solid rgba(151, 112, 255, 0.18);
  background: #101435;
}

#section-series-bridge::after {
  content: "";
  display: none;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

#section-series-bridge::after {
  top: 6%;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(151, 112, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgba(118, 77, 240, 0.025),
    0 0 0 7rem rgba(118, 77, 240, 0.018);
}

.series-bridge-shell {
  position: relative;
  z-index: 2;
}

.series-bridge-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  text-align: center;
}

.series-bridge-copy {
  width: min(100%, 760px);
  text-align: center;
}

#section-series-bridge .series-bridge-copy h2 {
  display: inline-block;
  overflow: visible;
  margin-bottom: 0 !important;
  padding-bottom: 0.12em;
  line-height: 1.25;
}

#section-series-bridge .series-bridge-copy .subtitle {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 2px 10px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.series-bridge-carousel-controls {
  position: absolute;
  top: 50%;
  right: -4rem;
  left: -4rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.series-bridge-nav-btn {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(151, 112, 255, 0.38);
  border-radius: 50%;
  background: rgba(18, 22, 58, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.series-bridge-nav-btn:hover,
.series-bridge-nav-btn:focus-visible {
  border-color: rgba(187, 164, 255, 0.78);
  background: #764df0;
  color: #ffffff;
  transform: translateY(-2px);
}

.series-bridge-nav-btn:focus-visible {
  outline: 3px solid rgba(151, 112, 255, 0.28);
  outline-offset: 3px;
}

.series-bridge-nav-btn.swiper-button-disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}

.series-bridge-carousel {
  position: relative;
  width: min(100%, 1050px);
  margin-inline: auto;
}

.series-bridge-swiper {
  overflow: hidden;
  padding: 0.8rem 0.15rem 1.55rem;
  background: transparent;
}

.series-bridge-swiper .swiper-wrapper {
  align-items: stretch;
}

.series-bridge-swiper .swiper-slide {
  display: flex;
  height: auto;
  background: transparent;
}

.series-event-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(151, 112, 255, 0.25);
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(31, 35, 83, 0.96), rgba(13, 17, 49, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: scale(0.985);
  transform-origin: center;
  will-change: transform;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.series-event-card:hover,
.series-event-card:focus-within {
  z-index: 2;
  border-color: rgba(151, 112, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(151, 112, 255, 0.58);
  transform: scale(1);
}

.series-event-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  min-width: 5rem;
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 13, 40, 0.82);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.series-event-card.is-upcoming .series-event-chip {
  border-color: rgba(190, 169, 255, 0.48);
  background: linear-gradient(135deg, rgba(91, 53, 201, 0.96), rgba(124, 77, 255, 0.96));
  box-shadow: 0 8px 24px rgba(118, 77, 240, 0.28);
}

.series-event-card.is-past .series-event-chip {
  color: rgba(255, 255, 255, 0.68);
}

.series-event-media {
  display: grid;
  min-height: 200px;
  place-items: center;
  overflow: hidden;
  padding: 0.85rem;
  border-bottom: 1px solid rgba(151, 112, 255, 0.16);
  background: #ffffff;
}

.series-event-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  transform: scale(1.32);
  transition: transform 240ms ease;
}

.series-event-card:hover .series-event-media img {
  transform: scale(1.4);
}

.series-event-media img[alt*="RegTech"] {
  transform: scale(1.92);
}

.series-event-card:hover .series-event-media img[alt*="RegTech"] {
  transform: scale(2);
}

.series-event-body {
  display: flex;
  min-height: 176px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem 1.4rem;
}

.series-event-meta {
  display: flex;
  min-height: 1.7rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.series-event-meta > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.series-event-flag {
  display: block;
  width: 1.35rem;
  height: 0.92rem;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

#section-series-bridge .series-event-card h3 {
  min-height: 2.6em;
  margin: 0.75rem 0 1rem;
  color: #ffffff;
  font-size: clamp(1.22rem, 0.35vw + 1.14rem, 1.48rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.series-event-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  color: #c8b9ff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.series-event-link:hover,
.series-event-link:focus-visible {
  color: #ffffff;
}

.series-event-link-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(151, 112, 255, 0.36);
  border-radius: 50%;
  background: rgba(118, 77, 240, 0.12);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.series-event-link:hover .series-event-link-icon,
.series-event-link:focus-visible .series-event-link-icon {
  background: #764df0;
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .series-bridge-head {
    align-items: center;
  }
}

@media (max-width: 1199.98px) {
  .series-bridge-carousel-controls {
    right: 0.55rem;
    left: 0.55rem;
  }
}

@media (max-width: 767.98px) {
  #section-series-bridge {
    padding: 2.75rem 0 4rem;
  }

  .series-bridge-head {
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
  }

}

@media (max-width: 575.98px) {
  #section-series-bridge {
    padding: 2.5rem 0 3.5rem;
  }

  .series-bridge-nav-btn {
    width: 2.9rem;
    height: 2.9rem;
  }

  .series-event-media {
    min-height: 182px;
  }

  .series-event-media img {
    height: 156px;
  }

  .series-event-body {
    min-height: 170px;
    padding: 1rem 1.2rem;
  }

  #section-series-bridge .series-event-card h3 {
    min-height: 0;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* new speaker model */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

#speakerModal {
  z-index: 16000;
  overflow: hidden;
}

.custom-modal-content {
  background-color: #1b1b1b;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  background: linear-gradient(180deg, rgba(var(--bg-dark-1-rgb), 1) 0%, rgba(var(--bg-dark-1-rgb), 0.5) 100%);
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.speaker-modal-content {
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 980px;
  height: 90vh;
  max-height: 90vh;
  margin: 5vh auto;
  overflow: hidden;
  overscroll-behavior: contain;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(151, 112, 255, 0.24);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(3, 5, 22, 0.55);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.speaker-modal-content::-webkit-scrollbar {
  display: none;
}

.speaker-modal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  height: 100%;
  min-height: 0;
}

.speaker-modal-profile {
  position: relative;
  top: auto;
  align-self: center;
  overflow: hidden;
  padding: 1rem 1rem 1.3rem;
  border: 1px solid rgba(164, 124, 255, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(39, 34, 91, 0.97), rgba(12, 16, 43, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 38px rgba(4, 7, 24, 0.28);
  text-align: center;
  transform: none;
}

.speaker-modal-profile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #7146ed, #ad7bff 50%, #7146ed);
  box-shadow: 0 0 18px rgba(151, 112, 255, 0.5);
}

.speaker-modal-profile .modal-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
}

.speaker-modal-profile h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.speaker-modal-profile h5 {
  margin: 0;
  color: #c6b7ed;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.custom-modal-content .speaker-modal-company {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center !important;
}

.speaker-modal-details {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.speaker-modal-details::-webkit-scrollbar {
  display: none;
}

.custom-modal-content p {
  text-align: justify !important;
}

.modal-img {
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 100%;
  border-radius: 8px;
  z-index: 100 !important;
}

.custom-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 30;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(172, 148, 255, 0.48);
  border-radius: 50%;
  background: rgba(12, 15, 43, 0.94);
  box-shadow: 0 10px 24px rgba(3, 5, 22, 0.42);
  color: #ffffff;
  font-family: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.custom-modal-close:hover,
.custom-modal-close:focus-visible {
  border-color: #bca8ff;
  background: #7047e8;
  color: #fff;
  outline: none;
  transform: scale(1.06);
}

.speaker-modal-presentation {
  position: relative;
  overflow: hidden;
  margin-top: 1.6rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(167, 124, 255, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(151, 112, 255, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(39, 30, 92, 0.96), rgba(15, 18, 48, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 38px rgba(4, 7, 24, 0.28);
  text-align: center;
}

.speaker-modal-details .speaker-modal-presentation {
  margin-top: 0;
}

.speaker-modal-presentation::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #7146ed, #ad7bff 50%, #7146ed);
  box-shadow: 0 0 20px rgba(151, 112, 255, 0.5);
}

.speaker-modal-presentation h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
}

.speaker-modal-presentation h4 strong {
  color: #ffffff;
  font-weight: 850;
}

.custom-modal-content .speaker-modal-presentation__label {
  margin: 1.1rem 0 0.45rem;
  color: #c7b4ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center !important;
  text-transform: uppercase;
}

.speaker-modal-presentation__topic {
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(189, 161, 255, 0.22);
  border-radius: 12px;
  background: rgba(9, 12, 34, 0.42);
  color: #ffffff;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
}

.speaker-modal-presentation__divider {
  width: min(100%, 28rem);
  height: 1px;
  margin: 1.15rem auto 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(173, 123, 255, 0.8) 50%,
    transparent
  );
  box-shadow: 0 0 12px rgba(151, 112, 255, 0.3);
  opacity: 1;
}

.custom-modal-content .speaker-modal-presentation__copy {
  margin: 1rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center !important;
}

.speaker-modal-presentation__register {
  min-width: min(100%, 13rem);
  text-decoration: none;
  text-transform: none;
}

.speaker-modal-bio {
  margin-top: 1.6rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(151, 112, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 11, 31, 0.32);
}

.speaker-modal-bio__title {
  margin: 0 0 0.9rem;
  color: #c7b4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.custom-modal-content .speaker-modal-bio p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .speaker-modal-content {
    width: calc(100% - 1rem);
    height: 94vh;
    max-height: 94vh;
    margin: 3vh auto;
    overflow-y: auto;
    padding: 1rem;
  }

  .speaker-modal-content > .custom-modal-close {
    position: sticky;
    top: 0.35rem;
    right: auto;
    margin: 0 0 0.6rem auto;
  }

  .speaker-modal-layout {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
  }

  .speaker-modal-profile {
    position: relative;
    top: auto;
    transform: none;
  }

  .speaker-modal-details {
    overflow: visible;
  }

  .speaker-modal-profile .modal-img {
    max-width: 230px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.speaker-cta-group {
  display: grid;
  width: min(100%, 860px);
  margin-inline: auto;
  padding: 38px 0 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.speaker-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 70px;
  padding: 12px 15px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(151, 112, 255, 0.5);
  border-radius: 15px;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(0.74rem, 0.48vw + 0.62rem, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(4, 8, 28, 0.26);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.speaker-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.22), transparent 45%);
  transition: opacity 300ms ease;
}

.speaker-cta--download {
  background:
    linear-gradient(135deg, rgba(27, 31, 78, 0.96), rgba(16, 20, 56, 0.96));
}

.speaker-cta--stage {
  border-color: rgba(175, 148, 255, 0.78);
  background: linear-gradient(135deg, #5f35d4 0%, #8253f5 55%, #7246ea 100%);
  box-shadow:
    0 16px 36px rgba(82, 42, 185, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.speaker-cta__icon,
.speaker-cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.speaker-cta__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.speaker-cta--download .speaker-cta__icon {
  border-color: rgba(151, 112, 255, 0.38);
  background: rgba(118, 77, 240, 0.17);
  color: #bca8ff;
}

.speaker-cta__arrow {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 300ms ease;
}

.speaker-cta:hover,
.speaker-cta:focus-visible {
  color: #fff;
  border-color: rgba(190, 168, 255, 0.95);
  box-shadow: 0 22px 48px rgba(68, 38, 161, 0.42);
  transform: translateY(-4px);
}

.speaker-cta:hover::before,
.speaker-cta:focus-visible::before {
  opacity: 1;
}

.speaker-cta:hover .speaker-cta__arrow,
.speaker-cta:focus-visible .speaker-cta__arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.speaker-cta:focus-visible {
  outline: 3px solid rgba(188, 168, 255, 0.5);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .speaker-cta-group {
    width: min(100%, 440px);
    padding: 30px 0 8px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .speaker-cta {
    min-height: 64px;
    padding: 10px 13px;
    gap: 10px;
    border-radius: 14px;
  }

  .speaker-cta__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .speaker-cta {
    padding-inline: 13px;
    gap: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.055em;
  }

  .speaker-cta__arrow {
    width: 27px;
    height: 27px;
  }
}

/* ========================================== Blog section start ================================================= */
/* ===== Your existing card styles (retained) ===== */
.dark-news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.dark-news-card {
  background: #141b3a;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* --- Modern polish (subtle, optional) --- */
.dark-news-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: saturate(120%) blur(0.5px);
}
.dark-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  background: radial-gradient(1200px 160px at 20% -10%, rgba(255,255,255,0.06), transparent 40%);
  opacity: 0.6;
}

.dark-news-card:hover {
  transform: translateY(-6px);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.dark-news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: #0f1635;
}

.dark-news-card:hover img { transform: scale(1.05); }

.dark-news-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dark-news-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.5;
}

.dark-news-content p {
  font-size: 0.95rem;
  color: #c7c7c7;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.posted-by {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: auto;
}
.posted-by strong { color: #b67cff; }

@media (max-width: 768px) {
  .dark-news-content h3 { font-size: 1.1rem; }
  .dark-news-card img { height: 180px; }
}

/* ===== New: slider shell ===== */
:root {
  --news-gap: 30px;         /* matches your grid gap */
  --card-peek: 12px;        /* show a bit of next card on mobile */
  --btn-size: 44px;
}

.dark-news-section {
  color: #fff;
  background: #0a0e1f;
  padding: 40px 0 20px;
}

.dark-news-slider {
  position: relative;
}

.dark-news-viewport {
  overflow: hidden;
  padding-inline: var(--card-peek);
}

.dark-news-track {
  display: flex;
  gap: var(--news-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

/* Hide scrollbar but keep scrollability */
.dark-news-track::-webkit-scrollbar { height: 0; }
.dark-news-track { scrollbar-width: none; }

/* Each slide wraps your existing .dark-news-card */
.dark-news-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

/* 2-up on small tablets, 3-up on desktops, 4-up on xl */
@media (min-width: 576px) {
  .dark-news-slide {
    flex-basis: calc(50% - var(--news-gap) / 2);
  }
}

/* Desktop: 3 per row */
@media (min-width: 992px) {
  .dark-news-slide {
    flex-basis: calc(33.333% - (2 * var(--news-gap)) / 3);
  }
}

/* Large desktop: ~3.3 per row (adjust as needed) */
@media (min-width: 1400px) {
  .dark-news-slide {
    flex-basis: calc(30% - (3 * var(--news-gap)) / 4);
  }
}

/* Nav buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: var(--btn-size);
  height: var(--btn-size);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,14,31,0.75);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  backdrop-filter: blur(6px);
}
.slider-btn:hover { background: rgba(16,20,40,0.9); transform: translateY(-1px); }
.slider-btn:disabled { opacity: .45; cursor: default; }

.slider-btn.prev { left: -8px; }
.slider-btn.next { right: -8px; }
@media (min-width: 768px) {
  .slider-btn.prev { left: -14px; }
  .slider-btn.next { right: -14px; }
}

/* Pagination (optional) */
.dark-news-pagination {
  text-align: center;
  margin-top: 12px;
  font-size: .95rem;
  color: #9aa3c0;
}




/* ========================================== Blog section end ================================================= */





/* Social Media Code */

.social-card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 1rem;

}

.social-card:hover {
  animation: ease-out 5s;
  background: rgba(173, 173, 173, 0.05);
}

.social-card ul {
  padding: 1rem;
  display: flex;
  list-style: none;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.social-item {
  cursor: pointer;
  position: relative;
  transition: 0.5s;
}

.social-icon {
  font-size: 25px;
  padding: 1rem;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.164);
  transition: all 0.3s ease;
}

.social-text {
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s;
  color: #764DF0;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
  box-shadow: -5px 0 1px rgba(153, 153, 153, 0.2),
    -10px 0 1px rgba(153, 153, 153, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.082);
}

.social-item span {
  opacity: 0;
  position: absolute;
  border: 2px solid transparent;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.164);
  border-radius: 50%;
  transition: all 0.3s ease;
  height: 60px;
  width: 60px;
}

/* Hover Effects */
.social-item:hover .social-icon {
  transform: translate(40px, 5px);
  /* background: rgba(187, 17, 254, 0.2); */
}

/* .social-item:hover .social-text {
  opacity: 1;
  transform: translate(25px, -2px) skew(-5deg);
} */

.social-item:hover span {
  opacity: 1;
}

.social-item:hover span:nth-child(1) {
  opacity: 0.2;
}

.social-item:hover span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.social-item:hover span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  .social-card {
    max-width: 100%;
    border-radius: 12px;
    gap: 0.8rem;
  }

  .social-card ul {
    padding: 0.8rem;
    gap: 0.5rem;
  }

  .social-icon {
    font-size: 22px;
    height: 55px;
    width: 55px;
  }

  .social-item:hover .social-icon {
    transform: translate(0px, 0px);
  }

  .social-item:hover span {
  opacity: 0;
}

.social-item:hover span:nth-child(1) {
  opacity: 0;
}

.social-item:hover span:nth-child(2) {
  opacity: 0;
  transform: translate(5px, -5px);
}

.social-item:hover span:nth-child(3) {
  opacity: 0;
  transform: translate(10px, -10px);
}

}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .social-card {
    border-radius: 10px;
    gap: 0.6rem;
  }

  .social-card ul {
    padding: 0.6rem;
    flex-direction: row; /* Change to row layout on small screens */
  }

  .social-icon {
    font-size: 20px;
    height: 50px;
    width: 50px;
    padding: 0.8rem;
  }

 .social-item:hover .social-icon {
    transform: translate(0px, 0px);
  }

  .social-text {
    display: none; /* Hide tooltips on very small screens */
  }

  .social-item span {
    height: 50px;
    width: 50px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 400px) {
  .social-card ul {
    flex-direction: row; /* Keep row layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-around; /* Better spacing */
  }

  .social-icon {
    font-size: 18px;
    height: 45px;
    width: 45px;
    padding: 0.7rem;
  }

  .social-item span {
    height: 45px;
    width: 45px;
  }
}




/* ###############################Popup############################# */

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(29, 0, 56, 0.5);
  display: none;
  z-index: 2000;
}

/* Popup Box */
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: linear-gradient(135deg, #3a0066, #1e0033);
  width: 420px;
  padding: 70px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
              inset 0 0 25px rgba(149, 0, 255, 0.4);
  text-align: center;
  display: none;
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.popup-box h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #fff;
}

.popup-box p {
  font-size: 1rem;
  color: #d1c4e9;
  margin-bottom: 20px;
}

.popup-btn {
  background: linear-gradient(45deg, #8e24aa, #ab47bc);
  color: #fff;
  border: none;
  padding: 12px 50px;
  letter-spacing: 1.3px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(171, 71, 188, 0.5);
  transition: all 0.3s ease;
  margin: 10px 0;
}

.popup-btn:hover {
  background: linear-gradient(45deg, #ab47bc, #8e24aa);
  transform: translateY(-2px);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Show popup */
.popup-overlay.active {
  display: block;
}

.popup-box.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Make popup box larger */
.popup-box.large {
  width: 90%;
  max-width: 700px;
  max-height: calc(100vh - 32px);
  padding: 50px 40px;
  overflow-y: auto;
}

/* Video wrapper and frame */
.popup-video-wrapper {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.popup-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(171, 71, 188, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

.popup-video-frame:hover {
  transform: scale(1.015);
}

.popup-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Glowing border animation */
@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(171, 71, 188, 0.4),
                0 0 40px rgba(142, 36, 170, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(171, 71, 188, 0.6),
                0 0 60px rgba(142, 36, 170, 0.6);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .popup-box.large {
    width: 95%;
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .popup-box.large {
    padding: 30px 20px;
  }
}



/* Tablets and small laptops (768px and below) */
@media (max-width: 768px) {
  .popup-box {
    width: 80%; /* More responsive width */
    padding: 50px 40px; /* Adjusted padding */
  }

  .popup-box h2 {
    font-size: 1.4rem;
  }

  .popup-box p {
    font-size: 0.9rem;
  }

  .popup-btn {
    padding: 10px 40px;
    font-size: 0.9rem;
  }
}

/* Large phones (576px and below) */
@media (max-width: 576px) {
  .popup-box {
    width: 90%; /* Even more width for small screens */
    padding: 40px 30px;
    border-radius: 12px;
  }

  .popup-box h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .popup-box p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .popup-btn {
    padding: 8px 30px;
    font-size: 0.85rem;
  }

  .popup-close {
    font-size: 20px;
    top: 8px;
    right: 12px;
  }
}

/* Small phones (400px and below) */
@media (max-width: 400px) {
  .popup-box {
    padding: 30px 20px;
    border-radius: 10px;
  }

  .popup-box h2 {
    font-size: 1.1rem;
  }

  .popup-box p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .popup-btn {
    padding: 8px 25px;
    letter-spacing: 1px;
  }

  .popup-overlay {
    backdrop-filter: blur(5px); /* Reduce blur on low-performance devices */
  }
}

/* Very small phones (orientation changes) */
@media (max-width: 350px) and (orientation: portrait) {
  .popup-box {
    width: 95%;
    padding: 25px 15px;
  }

  .popup-btn {
    width: 100%; /* Full width button */
    padding: 8px 0;
  }
}




/* ======================================================== Common CSS for all Conference ==================================================== */
/* youtube video after about */
.video-container {
    background: rgba(20, 27, 58, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-wrapper-youtube {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(106, 90, 249, 0.3);
}

.video-wrapper-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-wrapper-youtube iframe[hidden] {
    display: none;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(12, 17, 51, 0.6), rgba(68, 36, 144, 0.4));
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    opacity: 0.7;
}

.play-btn {
    background: #6a5af9;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 0 20px rgba(68, 36, 144, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(68, 36, 144, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(68, 36, 144, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(68, 36, 144, 0);
    }
}

/* CTA */
.convince-boss-btn {
    position: fixed;
    top: 20vh;
    left: 20px;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.request-speaker {
    position: fixed;
    top: 20vh;
    right: 20px;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.btn-convince {
    display: flex;
    min-width: 68px;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        radial-gradient(circle at 42% 28%, rgba(124, 142, 255, 0.72), transparent 43%),
        linear-gradient(145deg, #3248ae 0%, #1c246f 52%, #111743 100%);
    color: #fff;
    font-size: 15px;
    padding: 0 21px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(151, 166, 255, 0.6);
    box-shadow:
        0 0 0 4px rgba(104, 120, 245, 0.16),
        inset 0 0 18px rgba(74, 98, 231, 0.5),
        0 12px 30px rgba(0, 0, 0, 0.34);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-convince::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(169, 181, 255, 0.38);
    border-radius: inherit;
    pointer-events: none;
}

.btn-convince:hover {
    background:
        radial-gradient(circle at 42% 28%, rgba(143, 158, 255, 0.82), transparent 45%),
        linear-gradient(145deg, #3a54c4 0%, #252d83 52%, #151c50 100%);
    transform: scale(1.05);
    box-shadow:
        0 0 0 5px rgba(111, 128, 255, 0.2),
        inset 0 0 22px rgba(84, 109, 255, 0.58),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-convince:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.btn-convince .text {
    display: none;
}

.btn-convince:hover .text {
    display: block;
    font-weight: 500;
    transition: opacity 0.4s ease;
}

.btn-convince i {
    color: rgb(1, 129, 245);
    font-size: 24px;
    margin: 10px;
    transition: transform 0.6s ease;
}

.btn-convince:hover i {
    transform: rotate(-10deg);
}

.floating-cta-copy-icon {
    position: relative;
    z-index: 1;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #ffffff;
    transition: transform 350ms ease;
}

.btn-convince:hover .floating-cta-copy-icon {
    transform: scale(1.08);
}

.btn-convince img.svg-icon {
    width: 5rem;
    height: 5rem;
    transition: transform 0.9s ease;
}

.btn-convince:hover img.svg-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .convince-boss-btn,
    .request-speaker {
        top: auto;
        bottom: 20px;
    }
    
    .convince-boss-btn {
        left: 10px;
    }
    
    .request-speaker {
        right: 10px;
    }
    
    .btn-convince {
        min-width: 62px;
        min-height: 62px;
        font-size: 14px;
        padding: 0 18px;
    }
    
    .btn-convince img.svg-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
}

@media (max-width: 768px) {
    .btn-convince {
        min-width: 58px;
        min-height: 58px;
        font-size: 13px;
        padding: 0 16px;
        gap: 6px;
    }
    
    .btn-convince i {
        font-size: 20px;
        margin: 6px;
    }
    
    .btn-convince img.svg-icon {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 576px) {
    .convince-boss-btn,
    .request-speaker {
        bottom: 10px;
    }
    
    .btn-convince {
        min-width: 54px;
        min-height: 54px;
        font-size: 12px;
        padding: 0 14px;
        gap: 4px;
    }
    
    .btn-convince i {
        font-size: 16px;
        margin: 4px;
    }
    
    .btn-convince img.svg-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    /* Hide text on smallest screens and only show icon */
    .btn-convince .text {
        display: none;
    }
    
    /* Optionally show text on hover even on mobile */
    .btn-convince:hover .text {
        display: block;
    }
}

/* Hidden state */
.convince-boss-btn.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    visibility: hidden;
}

.request-speaker.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    visibility: hidden;
}


/* =====================================================
   UNIVERSAL WHY CONFERENCE FLOATING CARD
   - Two-column message box layout
   - Custom color scheme (#3f4bc2)
   - Fully responsive for all screen sizes
   - Copy-paste ready for any project
===================================================== */

.why-conference-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Trigger Button - Message Box Style with 2 Columns */
.why-conference-trigger {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3f4bc2, #2f3891);
  color: white;
  padding: 12px 18px;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(63, 75, 194, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  min-width: fit-content;
}

/* Message Box Tail/Pointer */
.why-conference-trigger::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #2f3891;
  transition: border-top-color 0.3s ease;
}

/* Hover state */
.why-conference-float:hover .why-conference-trigger {
  box-shadow: 0 12px 32px rgba(63, 75, 194, 0.5);
  background: linear-gradient(135deg, #2f3891, #3f4bc2);
}

.why-conference-float:hover .why-conference-trigger::after {
  border-top-color: #3f4bc2;
}

/* Text Column - Stacked */
.why-conference-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}

.line-1 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  white-space: nowrap;
}

.line-2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Icon Column */
.why-conference-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-conference-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.why-conference-float:hover .why-conference-icon svg {
  transform: rotate(-10deg) scale(1.1);
  animation: lightbulb-glow 1.5s ease-in-out infinite;
}

@keyframes lightbulb-glow {

  0%,
  100% {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  }
}

/* Expanded Card (Hidden by default) */
.why-conference-card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 420px;
  max-width: calc(100vw - 40px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(63, 75, 194, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* Show card on hover */
.why-conference-float:hover .why-conference-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Card Title */
.why-conference-titlee {
  font-size: 20px;
  font-weight: 700;
  color: #3f4bc2 !important;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

/* Card Content */
.why-conference-content  {
  font-size: 14px !important; 
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.why-conference-content p {
  margin: 0 0 14px 0 ;
}

.why-conference-content p:last-child {
  margin-bottom: 0;
}

.why-conference-content strong {
  color: #3f4bc2;
  font-weight: 700;
}

/* =====================================================
   TABLET RESPONSIVE (768px - 1024px)
===================================================== */
@media (max-width: 1024px) {
  .why-conference-float {
    bottom: 25px;
    right: 25px;
  }

  .why-conference-card {
    width: 380px;
    padding: 26px;
  }
}

/* =====================================================
   MOBILE LANDSCAPE & LARGE PHONES (768px)
===================================================== */
@media (max-width: 768px) {
  .why-conference-float {
    bottom: calc(90px + env(safe-area-inset-bottom));
    right: 20px;
  }

  .why-conference-trigger {
    padding: 11px 16px;
    gap: 8px;
    border-radius: 16px;
  }

  .why-conference-trigger::after {
    bottom: -7px;
    right: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #2f3891;
  }

  .line-1 {
    font-size: 14px;
  }

  .line-2 {
    font-size: 16px;
  }

  .why-conference-icon svg {
    width: 32px;
    height: 32px;
  }

  .why-conference-card {
    width: calc(100vw - 40px);
    bottom: 65px;
    right: 0;
    padding: 24px;
  }

  .why-conference-titlee {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .why-conference-content {
    font-size: 13px;
    line-height: 1.65;
  }

  .why-conference-content p {
    margin-bottom: 12px;
  }
}

/* =====================================================
   SMALL PHONES (480px - 576px)
===================================================== */
@media (max-width: 576px) {
  .why-conference-float {
    bottom: calc(90px + env(safe-area-inset-bottom));
    right: 15px;
  }

  .why-conference-trigger {
    padding: 10px 14px;
    gap: 7px;
  }

  .line-1 {
    font-size: 13px;
  }

  .line-2 {
    font-size: 15px;
  }

  .why-conference-icon svg {
    width: 28px;
    height: 28px;
  }

  .why-conference-card {
    width: calc(100vw - 30px);
    bottom: 60px;
    padding: 22px;
    border-radius: 18px;
  }

  .why-conference-titlee {
    font-size: 17px;
  }

  .why-conference-content {
    font-size: 13px;
  }
}

/* =====================================================
   VERY SMALL PHONES (320px - 480px)
===================================================== */
@media (max-width: 480px) {
  .why-conference-float {
    bottom: calc(90px + env(safe-area-inset-bottom));
    right: 12px;
  }

  .why-conference-trigger {
    padding: 9px 13px;
    gap: 6px;
    border-radius: 14px;
  }

  .why-conference-trigger::after {
    bottom: -6px;
    right: 14px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #2f3891;
  }

  .line-1 {
    font-size: 12px;
  }

  .line-2 {
    font-size: 14px;
    font-weight: 600;
  }

  .why-conference-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-conference-card {
    width: calc(100vw - 24px);
    bottom: 55px;
    padding: 20px;
    border-radius: 16px;
  }

  .why-conference-titlee {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .why-conference-content {
    font-size: 12px;
    line-height: 1.6;
  }

  .why-conference-content p {
    margin-bottom: 10px;
  }
}

/* =====================================================
   EXTRA SMALL PHONES (< 360px)
===================================================== */
@media (max-width: 360px) {
  .why-conference-float {
    bottom: 140px;
    right: 10px;
  }

  .why-conference-trigger {
    padding: 8px 12px;
    gap: 5px;
  }

  .line-1 {
    font-size: 11px;
  }

  .line-2 {
    font-size: 13px;
  }

  .why-conference-icon svg {
    width: 24px;
    height: 24px;
  }

  .why-conference-card {
    width: calc(100vw - 20px);
    padding: 18px;
  }

  .why-conference-titlee {
    font-size: 15px;
  }

  .why-conference-content {
    font-size: 11px;
    line-height: 1.55;
  }
}

/* =====================================================
   LANDSCAPE MODE FIX
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .why-conference-float {
    bottom: 15px;
    right: 15px;
  }

  .why-conference-trigger {
    padding: 8px 12px;
  }

  .why-conference-card {
    bottom: 50px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* =====================================================
   ACCESSIBILITY & INTERACTIONS
===================================================== */
.why-conference-trigger:focus {
  outline: 2px solid #3f4bc2;
  outline-offset: 2px;
}

/* Prevent text selection on trigger */
.why-conference-trigger * {
  user-select: none;
}

/* Keep card visible when hovering over it */
.why-conference-card:hover {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
  .why-conference-float:active .why-conference-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

/* Prevent animation on low-end devices */
@media (prefers-reduced-motion: reduce) {

  .why-conference-trigger,
  .why-conference-card,
  .why-conference-icon svg {
    transition: none !important;
    animation: none !important;
  }
}

/* =====================================================
   EVENT SITE NAVIGATION
===================================================== */
.site-nav {
  --site-nav-primary: var(--primary-color, #764df0);
  --site-nav-primary-dark: var(--secondary-color, #442490);
  --site-nav-accent: #f4c51d;
  --site-nav-ink: #151a24;
  --site-nav-display-font: var(--heading-font);
  --site-nav-body-font: var(--body-font);
  position: fixed;
  inset: 0 0 auto;
  z-index: 1090;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.site-nav.smaller,
.site-nav.header-mobile,
.dark-scheme .site-nav.header-mobile {
  position: fixed !important;
  top: 0;
  height: auto !important;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.site-nav__top {
  width: 100%;
  min-height: clamp(116px, 10.4vw, 160px);
  display: grid;
  grid-template-columns:
    minmax(240px, 1.03fr)
    minmax(250px, 1.02fr)
    minmax(280px, 1.15fr)
    minmax(150px, 0.7fr);
  align-items: center;
  background: #ffffff;
  color: #061220;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.site-nav__top-cell {
  position: relative;
  min-height: clamp(96px, 8vw, 132px);
  padding: clamp(0.82rem, 1.7vw, 1.32rem) clamp(0.85rem, 1.7vw, 1.7rem);
}

.site-nav__top-cell + .site-nav__top-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 1px;
  height: clamp(82px, 7vw, 132px);
  background: rgba(7, 33, 64, 0.3);
  transform: translateY(-50%);
  pointer-events: none;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}

.site-nav__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(128%, 360px);
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.site-nav__event {
  display: grid;
  align-content: center;
  gap: 0.38rem;
  transform: translateY(-4px);
}

.site-nav__event-date {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--site-nav-display-font);
  font-size: clamp(1.2rem, 0.48vw + 1rem, 1.55rem);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--site-nav-primary-dark);
}

.site-nav__event-name {
  margin: 0;
  max-width: 42ch;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--site-nav-body-font);
  font-size: clamp(0.72rem, 0.16vw + 0.68rem, 0.84rem);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  color: #3d4653;
}

.site-nav__event-date i,
.site-nav__event-name i {
  flex: 0 0 1.05em;
  width: 1.05em;
  font-size: 1rem;
  line-height: 1;
  color: #7446ed;
  text-align: center;
}

.site-nav__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  overflow: hidden;
  padding-inline: clamp(0.45rem, 0.9vw, 0.75rem);
}

.site-nav__partners-viewport {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.site-nav__partners-track {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.52rem, 1vw, 0.9rem);
}

.site-nav__partner {
  flex: 1 1 0;
  min-width: min(118px, 44%);
  max-width: 180px;
  margin: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.38rem;
  text-align: center;
}

.site-nav__partner figcaption {
  font-family: var(--site-nav-body-font);
  font-size: clamp(0.62rem, 0.16vw + 0.58rem, 0.74rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  text-align: center;
  text-transform: uppercase;
}

.site-nav__partner img {
  width: clamp(112px, 8vw, 154px);
  height: clamp(58px, 4.5vw, 80px);
  padding: clamp(0.15rem, 0.3vw, 0.32rem);
  background: #ffffff;
  object-fit: contain;
}

.site-nav__partners[data-partner-count="3"] .site-nav__partners-track {
  gap: clamp(0.38rem, 0.7vw, 0.68rem);
}

.site-nav__partners[data-partner-count="3"] .site-nav__partner {
  min-width: min(108px, 32%);
  max-width: 156px;
}

.site-nav__partners[data-partner-count="3"] .site-nav__partner img {
  width: clamp(108px, 7.5vw, 146px);
  height: clamp(58px, 4.3vw, 76px);
}

.site-nav__partners[data-partner-count="3"] .site-nav__partner figcaption {
  min-height: 2.15em;
  display: grid;
  align-items: end;
}

.site-nav__partners--marquee .site-nav__partners-track {
  width: max-content;
  min-width: 100%;
  justify-content: flex-start;
  animation: site-nav-partners-marquee 26s linear infinite;
}

.site-nav__partners--marquee:hover .site-nav__partners-track,
.site-nav__partners--marquee:focus-within .site-nav__partners-track {
  animation-play-state: paused;
}

.site-nav__partners--marquee .site-nav__partner {
  flex: 0 0 clamp(136px, 9vw, 188px);
}

@keyframes site-nav-partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(0.36rem, 0.68vw, 0.59rem)));
  }
}

.site-nav__actions {
  grid-column: 4;
  display: grid;
  align-content: center;
  gap: 0.64rem;
}

.site-nav__bar {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
  background: #101435;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition:
    min-height 320ms ease,
    padding 320ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.site-nav__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.1vw, 2.1rem);
  margin: 0;
  padding: 0;
  transition:
    gap 320ms ease,
    transform 320ms ease;
}

.site-nav__link {
  margin: 0;
  padding: 0;
  font-family: var(--site-nav-display-font);
  font-size: clamp(0.78rem, 0.17vw + 0.76rem, 0.94rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  transition: color 220ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #bda9ff;
}

.site-nav__cta,
.site-nav__bar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #5b35c9 0%, #7c4dff 100%);
  box-shadow:
    0 8px 18px rgba(68, 36, 144, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-family: var(--site-nav-display-font);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    color 180ms ease;
}

.site-nav__cta {
  min-height: 40px;
  padding: 0.64rem 0.7rem;
  font-size: clamp(0.72rem, 0.14vw + 0.7rem, 0.86rem);
}

.site-nav__bar-cta {
  min-height: 34px;
  padding: 0.55rem 0.82rem;
  font-size: 0.75rem;
}

.site-nav__cta--booth,
.site-nav__bar-cta--booth {
  border-color: rgba(124, 77, 255, 0.38);
  background: linear-gradient(135deg, #11192b 0%, #273656 100%);
  box-shadow:
    0 8px 18px rgba(8, 16, 35, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible,
.site-nav__bar-cta:hover,
.site-nav__bar-cta:focus-visible {
  background: linear-gradient(135deg, #6b43dc 0%, #8b5dff 100%);
  box-shadow:
    0 11px 24px rgba(68, 36, 144, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.site-nav__cta--booth:hover,
.site-nav__cta--booth:focus-visible,
.site-nav__bar-cta--booth:hover,
.site-nav__bar-cta--booth:focus-visible {
  background: linear-gradient(135deg, #1a2540 0%, #354871 100%);
  box-shadow:
    0 11px 24px rgba(8, 16, 35, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.site-nav__cta:focus-visible,
.site-nav__bar-cta:focus-visible {
  outline: 3px solid rgba(124, 77, 255, 0.34);
  outline-offset: 3px;
}

.site-nav__cta--booth:focus-visible,
.site-nav__bar-cta--booth:focus-visible {
  outline-color: rgba(124, 77, 255, 0.42);
}

/* Agenda resource callout */
.agenda-callout {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) 0;
  border-top: 1px solid rgba(151, 112, 255, 0.18);
  border-bottom: 1px solid rgba(151, 112, 255, 0.18);
  background: #0d102b;
}

.agenda-callout__panel {
  position: relative;
  border: 1px solid rgba(174, 139, 255, 0.28);
  border-radius: 24px;
  background: #211548;
  box-shadow:
    0 28px 70px rgba(3, 5, 22, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.agenda-callout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  min-height: 360px;
}

.agenda-callout__copy {
  position: relative;
  z-index: auto;
  padding: 2rem clamp(2.2rem, 4vw, 3.5rem);
}

.agenda-callout__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #bda9ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-callout__copy h2 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 850;
  line-height: 1.05;
}

.agenda-callout__copy p {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.agenda-callout__actions {
  position: relative;
  z-index: 1003;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.site-nav__cta.agenda-callout__button {
  min-height: 48px;
  gap: 0.7rem;
  padding: 0.82rem 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav__cta.agenda-callout__button--secondary {
  border-color: rgba(189, 169, 255, 0.34);
  background: #171334;
  box-shadow:
    0 8px 18px rgba(4, 7, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-nav__cta.agenda-callout__button--secondary:hover,
.site-nav__cta.agenda-callout__button--secondary:focus-visible {
  background: #29204f;
  box-shadow:
    0 11px 24px rgba(4, 7, 24, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.agenda-callout__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin: 0;
  padding: 0;
}

.agenda-callout__visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(100%, 480px);
  height: auto;
  filter: drop-shadow(0 30px 30px rgba(3, 4, 18, 0.5));
  transform: translate(-50%, -50%) scale(0.98);
  transform-origin: center;
}

@media (max-width: 991px) {
  .agenda-callout__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .agenda-callout__copy {
    padding-bottom: 1rem;
    text-align: center;
  }

  .agenda-callout__copy h2,
  .agenda-callout__copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .agenda-callout__actions {
    justify-content: center;
  }

  .agenda-callout__visual {
    display: grid;
    place-items: center;
    padding: 0 1.5rem 2rem;
  }

  .agenda-callout__visual img {
    position: static;
    width: min(100%, 520px);
    transform: none;
  }
}

@media (max-width: 575px) {
  .agenda-callout {
    padding: 2.75rem 0;
  }

  .agenda-callout__panel {
    border-radius: 18px;
  }

  .agenda-callout__copy {
    padding: 2rem 1.2rem 1rem;
  }

  .agenda-callout__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-nav__cta.agenda-callout__button {
    width: 100%;
  }

  .agenda-callout__visual {
    padding: 0 0.7rem 1.2rem;
  }
}

/* Post event report modal */
body.post-event-report-modal-open {
  overflow: hidden;
}

.post-event-report-modal[hidden] {
  display: none;
}

.post-event-report-modal {
  position: fixed;
  inset: 0;
  z-index: 17000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  scrollbar-width: none;
  transition: opacity 220ms ease;
}

.post-event-report-modal::-webkit-scrollbar {
  display: none;
}

.post-event-report-modal.is-open {
  opacity: 1;
}

.post-event-report-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 28, 0.86);
  backdrop-filter: blur(10px);
}

.post-event-report-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 1080px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2rem clamp(2.5rem, 4.5vw, 3.5rem);
  border: 1px solid rgba(126, 87, 255, 0.55);
  border-radius: 34px;
  background: #141638;
  box-shadow:
    0 30px 90px rgba(2, 3, 24, 0.72),
    inset 0 2px 0 rgba(126, 87, 255, 0.58);
  scrollbar-width: none;
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms ease;
}

.post-event-report-modal__dialog::-webkit-scrollbar {
  display: none;
}

.post-event-report-modal.is-open .post-event-report-modal__dialog {
  transform: translateY(0) scale(1);
}

.post-event-report-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #211b27;
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.post-event-report-modal__close:hover,
.post-event-report-modal__close:focus-visible {
  border-color: rgba(205, 185, 255, 0.62);
  background: #5f3ad1;
  transform: rotate(5deg);
}

.post-event-report-modal__header {
  width: 100%;
  max-width: none;
  margin: 0 0 1rem;
  padding: 0;
  text-align: left;
}

.post-event-report-modal__eyebrow {
  display: none;
}

.post-event-report-modal__header h2 {
  margin: 0;
  padding-right: 5rem;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 850;
  line-height: 1.05;
}

.post-event-report-modal__header p {
  margin: 0.65rem 0 0;
  padding-right: 5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.5;
  text-align: left !important;
}

.post-event-report-modal__header::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  background: rgba(139, 99, 255, 0.68);
  content: "";
}

.post-event-report-carousel {
  position: relative;
}

.post-event-report-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(158, 130, 255, 0.34);
  border-radius: 50%;
  background: #202352;
  color: #b9a6ff;
  font-size: 0.9rem;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.post-event-report-carousel__arrow--previous {
  left: 0;
}

.post-event-report-carousel__arrow--next {
  right: 0;
}

.post-event-report-carousel__arrow:not(:disabled):hover,
.post-event-report-carousel__arrow:not(:disabled):focus-visible {
  border-color: #a98bff;
  background: #6f49df;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.post-event-report-carousel__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.post-event-report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 300px));
  gap: 1.35rem;
  justify-content: center;
  margin-top: 1rem;
}

.post-event-report-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 450px;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(137, 107, 240, 0.42);
  border-radius: 24px;
  background: #1b1d49;
  box-shadow:
    0 20px 48px rgba(3, 4, 30, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 360ms ease;
}

.post-event-report-card:hover,
.post-event-report-card:focus-within {
  border-color: rgba(164, 137, 255, 0.76);
  background: linear-gradient(155deg, #23265a 0%, #191b47 100%);
  box-shadow:
    0 32px 70px rgba(3, 4, 30, 0.58),
    0 0 34px rgba(126, 87, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-8px) scale(1.015);
}

.post-event-report-card::before {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: #8b63ff;
  content: "";
  transition:
    left 300ms ease,
    width 300ms ease,
    box-shadow 300ms ease;
}

.post-event-report-card:hover::before,
.post-event-report-card:focus-within::before {
  left: 5%;
  width: 90%;
  box-shadow: 0 0 18px rgba(139, 99, 255, 0.72);
}

.post-event-report-card__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(164, 137, 255, 0.28);
  border-radius: 14px;
  background: rgba(112, 75, 225, 0.16);
  color: #bba7ff;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
}

.post-event-report-card__visual {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 0 0 165px;
  place-items: center;
  margin: 0.1rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.post-event-report-card__visual::after {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  z-index: 0;
  width: 72%;
  height: 1.3rem;
  border-radius: 50%;
  background: rgba(2, 3, 23, 0.74);
  content: "";
  filter: blur(11px);
  opacity: 0.82;
  transform: translateX(-50%) scale(0.9);
  transition:
    opacity 320ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.post-event-report-card__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 225px);
  height: auto;
  filter:
    drop-shadow(0 22px 18px rgba(1, 3, 16, 0.68))
    drop-shadow(0 8px 9px rgba(108, 72, 222, 0.22));
  transform: translateY(-12px);
  transition:
    filter 340ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.post-event-report-card:hover .post-event-report-card__visual::after,
.post-event-report-card:focus-within .post-event-report-card__visual::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.06);
}

.post-event-report-card:hover .post-event-report-card__visual img,
.post-event-report-card:focus-within .post-event-report-card__visual img {
  filter:
    drop-shadow(0 28px 22px rgba(1, 3, 16, 0.72))
    drop-shadow(0 10px 12px rgba(126, 87, 255, 0.3));
  transform: translateY(-17px) scale(1.035);
}

.post-event-report-card__content {
  width: 100%;
  min-width: 0;
  padding-top: 1.5rem;
  padding-right: 0;
  text-align: left;
}

.post-event-report-card__content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 850;
  line-height: 1.3;
}

.post-event-report-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.post-event-report-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.post-event-report-card__meta i {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: rgba(126, 87, 255, 0.16);
  color: #a98bff;
}

.post-event-report-card__meta span:last-child {
  color: #a889ff;
}

.post-event-report-card__footer {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 0.35rem;
}

.post-event-report-card__footer small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-nav__cta.post-event-report-card__download {
  width: 100%;
  min-height: 48px;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(172, 148, 255, 0.52);
  border-radius: 999px;
  background: #6f49df;
  box-shadow: 0 10px 24px rgba(60, 35, 151, 0.34);
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.site-nav__cta.post-event-report-card__download:disabled {
  cursor: not-allowed;
  filter: none;
  opacity: 0.72;
  transform: none;
}

.post-event-report-card__content small {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .post-event-report-modal {
    place-items: start center;
    padding: 0.6rem;
  }

  .post-event-report-modal__dialog {
    width: 100%;
    min-height: auto;
    max-height: calc(100vh - 1.2rem);
    padding: 1rem;
    border-radius: 18px;
  }

  .post-event-report-modal__close {
    top: 0.85rem;
    right: 0.85rem;
    width: 44px;
    height: 44px;
  }

  .post-event-report-modal__header {
    padding: 2.8rem 0.5rem 0;
  }

  .post-event-report-modal__header h2,
  .post-event-report-modal__header p {
    padding-right: 0;
  }

  .post-event-report-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .post-event-report-carousel {
    padding-bottom: 3.25rem;
  }

  .post-event-report-carousel__arrow {
    top: auto;
    bottom: 0;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .post-event-report-carousel__arrow--previous {
    left: calc(50% - 48px);
  }

  .post-event-report-carousel__arrow--next {
    right: calc(50% - 48px);
  }

  .post-event-report-carousel__arrow:not(:disabled):hover,
  .post-event-report-carousel__arrow:not(:disabled):focus-visible {
    transform: scale(1.06);
  }

  .post-event-report-card {
    height: auto;
    min-height: 500px;
  }

  .post-event-report-card__visual {
    min-height: 220px;
  }

  .post-event-report-card__visual img {
    width: min(100%, 230px);
  }

  .post-event-report-card__content {
    text-align: left;
  }
}

.site-nav__bar-actions {
  display: none;
  align-items: center;
  gap: 0.54rem;
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 320ms ease;
}

.site-nav__toggle {
  display: none;
  width: 2.5rem;
  height: 2.18rem;
  padding: 0.32rem 0.4rem;
  border: 1px solid rgba(118, 77, 240, 0.3);
  border-radius: 0;
  background: rgba(118, 77, 240, 0.09);
  align-items: center;
  align-content: center;
  justify-content: center;
  place-items: center;
  place-content: center;
  margin: 0;
  line-height: 0;
  gap: 0.26rem;
  cursor: pointer;
}

.site-nav__bar-toggle {
  display: none;
}

.site-nav__toggle-line {
  display: block;
  width: 1.36rem;
  height: 1px;
  background: var(--site-nav-primary);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

#section-hero.hero {
  --hero-top-space: clamp(9rem, 14vw, 12.4rem);
  box-sizing: border-box;
  height: 100vh;
  height: 100svh;
  min-height: 100vh !important;
  min-height: 100svh !important;
  padding-top: var(--hero-top-space) !important;
}

#section-hero .row {
  min-height: calc(100vh - var(--hero-top-space) - 100px) !important;
  min-height: calc(100svh - var(--hero-top-space) - 100px) !important;
}

#section-overview,
#section-speakers,
#who-should-attend,
#section-why-it-matters,
#section-focused-industries,
#sponsors-partners {
  scroll-margin-top: 5.25rem;
}

@media (min-width: 993px) {
  #section-overview > .container:first-child > .row > .col-lg-7 {
    transform: translateX(20px);
  }

  #section-overview > .container:first-child > .row > .col-lg-5 {
    transform: translateX(-20px);
    align-self: flex-end;
    margin-bottom: 3rem;
  }
}

.event-overview-card {
  position: relative;
  isolation: isolate;
  padding: 1.75rem !important;
  padding-bottom: 1rem !important;
}

.event-overview-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  border: 1px solid rgba(151, 112, 255, 0.38);
  border-left: 4px solid #7446ed;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(116, 70, 237, 0.08), rgba(8, 17, 43, 0.2));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 992px) {
  .event-overview-card::before {
    right: 0;
    left: 0;
  }
}

.event-overview-video-title {
  position: relative;
  top: -18px;
  margin: 0 0 1rem;
}

.section-feature-title {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
}

@media (min-width: 993px) {
  .site-nav__top {
    min-height: 124px;
    max-height: 140px;
    overflow: hidden;
    transform: translateY(0);
    transition:
      max-height 280ms ease,
      min-height 280ms ease,
      opacity 220ms ease,
      transform 280ms ease,
      box-shadow 220ms ease;
  }

  .site-nav__top-cell {
    min-height: 100px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .site-nav__top-cell + .site-nav__top-cell::before {
    height: 78px;
  }

  .site-nav__logo {
    width: min(126%, 390px);
  }

  .site-nav__partner {
    gap: 0.22rem;
  }

  .site-nav__partner img {
    width: clamp(112px, 7vw, 140px);
    height: clamp(50px, 3.7vw, 58px);
  }

  .site-nav__partners--marquee {
    --site-nav-marquee-gutter: clamp(1.5rem, 2vw, 2rem);
    --site-nav-marquee-fade: clamp(0.5rem, 0.75vw, 0.75rem);
    isolation: isolate;
    padding-inline: 0;
  }

  .site-nav__top-cell.site-nav__partners--marquee::before {
    z-index: 4;
    background: rgba(7, 33, 64, 0.42);
  }

  .site-nav__partners--marquee .site-nav__partners-viewport {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      transparent var(--site-nav-marquee-gutter),
      #000
        calc(var(--site-nav-marquee-gutter) + var(--site-nav-marquee-fade)),
      #000
        calc(100% - var(--site-nav-marquee-gutter) - var(--site-nav-marquee-fade)),
      transparent calc(100% - var(--site-nav-marquee-gutter)),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      transparent var(--site-nav-marquee-gutter),
      #000
        calc(var(--site-nav-marquee-gutter) + var(--site-nav-marquee-fade)),
      #000
        calc(100% - var(--site-nav-marquee-gutter) - var(--site-nav-marquee-fade)),
      transparent calc(100% - var(--site-nav-marquee-gutter)),
      transparent 100%
    );
  }

  .site-nav__partners--marquee .site-nav__partner {
    flex-basis: clamp(194px, 11.5vw, 240px);
    transform: translateY(4px);
  }

  .site-nav__partners--marquee .site-nav__partner img {
    width: clamp(180px, 11vw, 225px);
    height: clamp(78px, 5.8vw, 96px);
    padding: 0;
    background: transparent;
  }

  .site-nav__partners--marquee .site-nav__partner figcaption {
    transform: translateY(10px);
  }

  .site-nav__actions {
    gap: 0.44rem;
  }

  .site-nav__cta {
    min-height: 36px;
    padding-top: 0.54rem;
    padding-bottom: 0.54rem;
  }

  .site-nav.is-compact .site-nav__top {
    min-height: 0;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    box-shadow: none;
  }

  .site-nav.is-compact .site-nav__bar {
    min-height: 72px;
    justify-content: flex-start;
    padding-left: clamp(1.3rem, 3.5vw, 3rem);
    padding-right: clamp(17rem, 22vw, 22rem);
    background: #101435;
    box-shadow: 0 14px 34px rgba(5, 12, 22, 0.32);
  }

  .site-nav.is-compact .site-nav__menu {
    gap: clamp(0.7rem, 1.45vw, 1.28rem);
    justify-content: flex-start;
  }

  .site-nav.is-compact .site-nav__link {
    color: rgba(255, 255, 255, 0.96);
  }

  .site-nav.is-compact .site-nav__link:hover,
  .site-nav.is-compact .site-nav__link:focus-visible {
    color: #bda9ff;
  }

  .site-nav.is-compact .site-nav__bar-actions {
    position: absolute;
    top: 50%;
    right: clamp(1rem, 3vw, 2rem);
    display: flex;
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (max-width: 992px) {
  .site-nav__top {
    grid-template-columns: minmax(140px, 0.72fr) minmax(0, 1fr) auto;
    min-height: 0;
    max-height: 360px;
    overflow: hidden;
    transform: translateY(0);
    transition:
      max-height 280ms ease,
      opacity 220ms ease,
      transform 280ms ease,
      box-shadow 220ms ease;
  }

  .site-nav__top-cell {
    min-height: 0;
    padding: 0.64rem clamp(0.75rem, 2.4vw, 1.25rem);
  }

  .site-nav__top-cell + .site-nav__top-cell::before {
    display: none;
  }

  .site-nav__brand {
    grid-row: 1 / 3;
    min-height: 57px;
    align-self: stretch;
    justify-content: flex-start;
  }

  .site-nav__logo {
    width: min(138%, 260px);
    max-height: none;
  }

  .site-nav__event {
    grid-column: 2;
    transform: translateY(4px);
  }

  .site-nav__event-name {
    display: flex;
  }

  .site-nav__actions {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-block: 0.45rem;
  }

  .site-nav__partners {
    display: none;
  }

  .site-nav__partners-track {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .site-nav__partners-viewport {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .site-nav__partners--marquee .site-nav__partners-track {
    width: 100%;
    min-width: 0;
    animation: none;
  }

  .site-nav__partners--marquee .site-nav__partner[aria-hidden="true"] {
    display: none;
  }

  .site-nav__partner {
    flex: 1 1 118px;
    max-width: 180px;
  }

  .site-nav__partner figcaption {
    font-size: 0.6rem;
  }

  .site-nav__partner img {
    width: clamp(112px, 32vw, 148px);
    height: clamp(54px, 15vw, 72px);
    max-width: none;
  }

  .site-nav__bar {
    display: block;
    min-height: 0;
    padding: 0 clamp(1rem, 3vw, 1.4rem);
  }

  .site-nav__toggle {
    grid-column: 3;
    grid-row: 1 / 3;
    display: grid;
    align-self: center;
    justify-self: end;
  }

  .site-nav__bar-toggle {
    display: none;
  }

  .site-nav__menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: start;
    width: min(720px, 100%);
    height: auto;
    margin-inline: auto;
  }

  .js-enabled .site-nav__menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      padding 180ms ease;
    padding: 0;
    border-top: 0;
    margin-top: 0;
  }

  .js-enabled .site-nav.is-open .site-nav__menu {
    max-height: 560px;
    opacity: 1;
    transform: none;
    padding: 0.62rem 0 0.86rem;
  }

  .site-nav__link {
    display: block;
    width: 100%;
    padding: 0.54rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
  }

  .site-nav__cta {
    min-height: 36px;
    padding: 0.52rem 0.7rem;
    font-size: clamp(0.7rem, 0.2vw + 0.68rem, 0.78rem);
  }

  .site-nav.is-open .site-nav__toggle-line:nth-child(1) {
    transform: translateY(0.37rem) rotate(45deg);
  }

  .site-nav.is-open .site-nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open .site-nav__toggle-line:nth-child(3) {
    transform: translateY(-0.37rem) rotate(-45deg);
  }

  .site-nav.is-compact .site-nav__top {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    box-shadow: none;
  }

  .site-nav.is-compact .site-nav__bar {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.58rem clamp(0.82rem, 4vw, 1.1rem);
    background: #101435;
  }

  .site-nav.is-compact .site-nav__bar-actions {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    opacity: 1;
  }

  .site-nav.is-compact .site-nav__bar-cta {
    min-height: 34px;
    flex: 1 1 0;
    padding: 0.52rem 0.5rem;
    font-size: clamp(0.64rem, 2.2vw, 0.74rem);
    text-align: center;
  }

  .site-nav.is-compact .site-nav__bar-toggle {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    display: grid;
    flex: 0 0 auto;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-compact .site-nav__bar-toggle .site-nav__toggle-line {
    background: #ffffff;
  }

  .site-nav.is-compact .site-nav__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding-inline: clamp(0.82rem, 4vw, 1.1rem);
    background: #101435;
    box-shadow: 0 18px 34px rgba(5, 12, 22, 0.28);
  }

  #section-hero.hero {
    --hero-top-space: clamp(13rem, 31vw, 17rem);
    padding-top: var(--hero-top-space) !important;
  }
}

@media (min-width: 641px) and (max-width: 992px) {
  #section-hero .hero-main-title {
    font-size: clamp(4.25rem, 8vw, 5.25rem);
  }

  #section-hero .hero-eyebrow,
  #section-hero .hero-content-group h1,
  #section-hero .hero-slogan {
    position: relative;
    top: -2rem;
  }
}

@media (max-width: 640px) {
  #section-hero .hero-main-title {
    font-size: clamp(2.75rem, 11vw, 3.85rem);
  }

  #section-hero .hero-content-group {
    top: -5rem;
  }

  #section-hero .hero-eyebrow,
  #section-hero .hero-content-group h1,
  #section-hero .hero-slogan,
  #section-hero .hero-calendar {
    position: relative;
    top: -2.5rem;
  }

  #section-hero .hero-eyebrow {
    max-width: min(82vw, 290px);
    padding: 0.3rem 0.58rem;
    font-size: clamp(0.5rem, 2.2vw, 0.6rem);
    letter-spacing: 0.08em;
  }

  .hero-marquee__group {
    gap: 3.2rem;
    padding: 0 1.55rem;
  }

  .hero-marquee__group span {
    font-size: 1.9rem;
    letter-spacing: 0.11em;
  }

  .hero-marquee {
    height: 50px;
  }

  .site-nav__top {
    grid-template-columns: minmax(112px, 0.78fr) minmax(0, 1fr) auto;
  }

  .site-nav__logo {
    width: min(105%, 132px);
  }

  .site-nav__event {
    gap: 0.22rem;
    transform: translateY(8px);
  }

  .site-nav__event-date {
    gap: 0.4rem;
    font-size: clamp(0.72rem, 3vw, 0.84rem);
    line-height: 1.15;
  }

  .site-nav__event-name {
    gap: 0.4rem;
    font-size: clamp(0.58rem, 2.35vw, 0.68rem);
    line-height: 1.25;
  }

  .site-nav__event-date i,
  .site-nav__event-name i {
    font-size: 0.78rem;
  }

  .site-nav__partner {
    flex-basis: 105px;
  }

  .site-nav__partner img {
    width: clamp(100px, 31vw, 124px);
    height: clamp(50px, 14vw, 62px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track {
    animation: none;
  }

  .hero-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .site-nav__partners--marquee .site-nav__partners-viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .site-nav__partners--marquee .site-nav__partners-track {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    animation: none;
  }

  .site-nav__partners--marquee .site-nav__partner[aria-hidden="true"] {
    display: none;
  }
}
