/*----------------------------------------
[Master Stylesheet]

Project:	Lurv HTML Template
Version:	1.0

----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Variables
2. Colors
3. Fonts
4. Common styles
5. Header
6. Hero
7. Section
8. About
9. Features
10. Step
11. Statistics
12. Speaker
13. Program
14. Gallery
15. Resources
16. Pass
17. Venue
18. Video
19. Sponsors
20. Accordion
21. Contact
22. Social
23. Form
24. Footer
25. Modal
26. Scrollbar-track
27. Blueimp
----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");



/*==============================
	Variables
==============================*/
:root {
  /* Colors */
  --color-primary: #FED620;
  --color-secondary: #2568b0;
  --color-dark: #232122;
  --color-light: #fff;
  --color-text: #535051;
  --color-text-light: #c2c2c2;
  --color-success: #24ad6e;
  --color-yellow: #FED620;

  /* Gradients */
  --gradient-primary: linear-gradient(65deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-secondary: linear-gradient(230deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  --gradient-glass: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);

  /* Fonts */
  --font-family-primary: 'Quicksand', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 36px;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-xxl: 800;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-base: 0.5s ease;
  --transition-fast: 0.4s ease;

  /* Borders */
  --border-light: 1px solid rgba(255, 255, 255, 0.06);
  --border-dark: 1px solid rgba(37, 104, 176, 0.1);

  /* Shadows */
  --backdrop-blur: blur(12px);

  /* Z-index */
  --z-index-header: 99;
  --z-index-modal: 1050;
}

/*==============================
	Colors
==============================*/
/*==============================
	Fonts
==============================*/
/* @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&amp;display=swap"); */



/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: var(--transition-base);
  transition-property: color, background-color, border-color, box-shadow;
  cursor: pointer;
}

button:focus {
  outline: none;
}

a {
  transition: var(--transition-base);
  transition-property: color, background-color, border-color, box-shadow;
}

a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

input,
textarea,
select {
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: var(--transition-base);
  transition-property: background-color, border-color;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::-moz-selection {
  background: var(--color-light);
  color: var(--color-dark);
  text-shadow: none;
}

::selection {
  background: var(--color-light);
  color: var(--color-dark);
  text-shadow: none;
}

::-webkit-input-placeholder {
  color: var(--color-text-light);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--color-text-light);
  opacity: 1;
}

:-moz-placeholder {
  color: var(--color-text-light);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color-text-light);
  opacity: 1;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

:focus-visible {
  outline: 0px dotted;
}

.tab-content {
  width: 100%;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.fade {
  transition: opacity 0.4s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.row--grid {
  margin-right: -10px;
  margin-left: -10px;
}

.row--grid .col-6,
.row--grid .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .row--grid {
    margin-right: -15px;
    margin-left: -15px;
  }

  .row--grid .col-6,
  .row--grid .col-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*==============================
	Header
==============================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  background-color: transparent;
}

.header:before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  height: 0;
  background-color: transparent;
  transition: var(--transition-base);
  pointer-events: none;
  border-bottom: var(--border-dark);
}

.header--active .header__btn span {
  background-color: var(--color-dark);
}

.header--active .header__logo-white {
  opacity: 0;
}

.header--active .header__logo-dark {
  opacity: 1;
}

.header--active .header__logo {
  pointer-events: auto;
}

.header--active:before {
  height: 90px;
  background-color: var(--color-light);
  border-color: rgba(37, 104, 176, 0.12);
}

.header--active .announcement-bar {
  height: 1px;
  background-color: var(--color-light);
  border-color: rgba(37, 104, 176, 0.12);
}

.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 80px;
  width: 100%;
}

.header__logo {
  z-index: 1;
  width: auto;
  height: 50px;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-left: var(--spacing-xl);
  pointer-events: none;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__logo-white {
  position: relative;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.header__logo-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.header__btn {
  position: absolute;
  width: 24px;
  height: 22px;
  display: block;
  left: 0;
}

.header__btn span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-light);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-base);
  opacity: 1;
}

.header__btn span:first-child {
  top: 0;
}

.header__btn span:nth-child(2) {
  top: 10px;
  width: 16px;
}

.header__btn span:last-child {
  top: 20px;
  width: 8px;
}

.header__btn--active span:first-child {
  transform: rotate(45deg);
  top: 10px;
}

.header__btn--active span:nth-child(2) {
  opacity: 0;
}

.header__btn--active span:last-child {
  width: 24px;
  transform: rotate(-45deg);
  top: 10px;
}

.header__tagline {
  display: none;
}

.header__nav {
  position: fixed;
  width: 250px;
  top: 80px;
  bottom: 0;
  left: 0;
  background-color: #232122;
  padding: 30px 15px 0;
  transition: transform 0.5s ease;
  transform: translate3d(-250px, 0, 0);
}

.header__nav--active {
  transform: translate3d(0, 0, 0);
}

.header__nav li {
  display: block;
  margin-bottom: 25px;
}

.header__nav li:last-child {
  margin-bottom: 0;
}

.header__nav li.active a {
  color: #c2c2c2;
}

.header__nav a {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.header__nav a:hover {
  color: #c2c2c2;
}

.header__dropdown {
  position: relative;
  display: block;
  width: auto;
}

.header__dropdown .dropdown-toggle {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header__dropdown .dropdown-toggle svg {
  width: 14px;
  height: auto;
  fill: #fff;
  margin-left: 3px;
  margin-top: 1px;
  transition: fill 0.5s ease;
}

.header__dropdown .dropdown-toggle:hover,
.header__dropdown .dropdown-toggle[aria-expanded="true"] {
  color: #c2c2c2;
}

.header__dropdown .dropdown-toggle:hover svg,
.header__dropdown .dropdown-toggle[aria-expanded="true"] svg {
  fill: #c2c2c2;
}

.header__dropdown-menu {
  position: absolute;
  background-color: #fff;
  padding: 15px 20px;
  display: block;
  width: 180px;
  text-align: left;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  border-radius: 16px;
  transition: 0.5s ease;
  transition-property: opacity, margin-top, transform;
  margin-top: 0;
  top: 0;
  border: 1px solid rgba(37, 104, 176, 0.12);
  transform: translate3d(0px, 24px, 0px);
}

.header__dropdown-menu li {
  padding: 0;
  margin-bottom: 10px;
}

.header__dropdown-menu li:last-child {
  margin-bottom: 0;
}

.header__dropdown-menu a {
  font-size: 16px;
  line-height: 26px;
  color: #232122;
  text-transform: none;
  font-weight: 400;
}

.header__dropdown-menu a:hover {
  color: #423baa;
}

.header__dropdown-menu.show {
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
  margin-top: 10px;
}

.header__cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  background: #FED620;
  border-radius: 14px;
  padding: 0 26px;
  overflow: hidden;
}

.header__cta:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: #4d4a39;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 14px;
}

.header__cta:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 12px;
}

.header__cta span {
  position: relative;
  z-index: 2;
  color: #232122;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.header__cta:hover {
  color: #fff;
}

.header__cta:hover:before {
  opacity: 1;
}

@media (min-width: 576px) {
  .header__logo {
    margin-left: 45px;
  }

  .header__tagline {
    display: block;
    line-height: 24px;
    color: #fff;
    font-size: 14px;
    transition: color 0.5s ease;
    margin-right: auto;
    margin-left: 20px;
    font-weight: 400;
  }

  .header__nav {
    padding-left: calc((100vw - 510px) / 2);
  }

  .header--active .header__tagline {
    color: #232122;
  }
}

@media (min-width: 768px) {
  .header__nav {
    padding-left: calc((100vw - 690px) / 2);
    width: 280px;
    transform: translate3d(-280px, 0, 0);
  }

  .header__nav--active {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  .header__nav {
    padding-left: calc((100vw - 930px) / 2);
  }
}

@media (min-width: 1200px) {
  .header__btn {
    display: none;
  }

  .header__logo {
    margin: 0;
  }

  .header__nav {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    transform: translate3d(0, 0, 0);
    padding: 0;
    margin-right: auto;
  }

  .header__nav li {
    display: block;
    margin-right: 45px;
    margin-bottom: 0;
  }

  .header__nav li:last-child {
    margin-right: 0;
  }

  .header__nav a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
  }

  .header__nav a:hover {
    color: #c2c2c2;
  }

  .header__dropdown-menu {
    transform: translate3d(0px, 40px, 0px);
    margin-top: -10px;
  }

  .header__dropdown-menu li {
    margin-right: 0;
  }

  .header__dropdown-menu a {
    color: #232122;
    justify-content: flex-start;
  }

  .header__dropdown-menu a:hover {
    color: #423baa;
  }

  .header__dropdown-menu.show {
    margin-top: 0;
  }

  .header--active .header__nav a {
    color: #232122;
  }

  .header--active .header__nav a:hover {
    color: #423baa;
  }

  .header--active .header__dropdown .dropdown-toggle svg {
    fill: #232122;
  }

  .header--active .header__dropdown .dropdown-toggle:hover,
  .header--active .header__dropdown .dropdown-toggle[aria-expanded="true"] {
    color: #423baa;
  }

  .header--active .header__dropdown .dropdown-toggle:hover svg,
  .header--active .header__dropdown .dropdown-toggle[aria-expanded="true"] svg {
    fill: #423baa;
  }
}

/*==============================
	Hero
==============================*/
.hero {
  position: relative;
  width: 100%;
  padding: 140px 0 60px;
  background: url("../img/hero/hero.jpg") no-repeat center/cover;
  background-attachment: fixed;
  overlay: white;
}

/* Adding black overlay with 50% opacity */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-dark);
  opacity: 0.95;
  z-index: 1;
  /* Makes sure the overlay is above the background image */
}

.hero>* {
  position: relative;
  z-index: 2;
  /* Ensures that content inside .hero (like text) appears above the overlay */
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.hero__title {
  font-size: 46px;
  line-height: 62px;
  color: var(--color-light);
  font-weight: var(--font-weight-normal);
  /* text-transform: uppercase; */
  margin-bottom: var(--spacing-md);
}

.hero__title b {
  font-weight: var(--font-weight-xxl);
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__tagline {
  font-size: var(--font-size-base);
  line-height: 26px;
  color: var(--color-light);
  padding-left: var(--spacing-lg);
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.hero__tagline:before {
  content: '';
  position: absolute;
  display: block;
  width: var(--border-radius-sm);
  height: auto;
  border-radius: var(--border-radius-sm);
  background: var(--color-yellow);
  top: 0;
  bottom: 0;
  left: 0;
}

.hero__tagline:last-child {
  margin-bottom: 0;
}

.hero__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: var(--spacing-lg);
}

.hero__when {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  background: var(--gradient-glass);
  border: var(--border-light);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  margin-right: 26px;
}

.hero__when p {
  font-size: var(--font-size-xxl);
  line-height: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: var(--color-light);
  margin-bottom: 0;
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  border-top: var(--border-light);
  width: 100%;
  text-align: center;
}

.hero__when p:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.hero__when span {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  margin-top: 15px;
  padding-top: 15px;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__coupon {
  border-radius: 16px;
  padding: 15px 20px;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 34px;
  color: #fff;
  font-weight: 600;
}

.hero__coupon b {
  text-transform: uppercase;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 8px;
  margin: 0 2px;
}

.hero__coupon span {
  color: #e23353;
  font-weight: 700;
}

.hero__btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.hero__btn {
  position: relative;
  width: calc(50% - 10px);
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #FED620;
  border-radius: 16px;
}

.hero__btn:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: #333333;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 16px;
}

.hero__btn:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 14px;
  transition: border-color 0.5s ease;
}

.hero__btn span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 100%;
  transition: color 0.5s ease;
}

.hero__btn:hover:before {
  opacity: 1;
}

.hero__btn--white {
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0.02) 100%);
}

.hero__btn--white:before {
  display: none;
}

.hero__btn--white:hover {
  background-color: #232122;
}

.hero__dates {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.hero__date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% + 40px);
  border-radius: 16px;
  padding: 40px;
}

.hero__date--color {
  background: var(--color-dark);
  z-index: 1;
  left: 0 !important;
  margin-bottom: 220px;
}

.hero__date--glass {
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 2;
  position: absolute;
  left: calc(50% - 40px) !important;
  top: calc(100% - 240px) !important;
}

.hero__date-day {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.hero__date-day span {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.hero__date-text {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  text-align: center;
}

.hero__about {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.hero__about-cover {
  border-radius: 16px;
  width: calc(100% - 20px);
  margin-bottom: 20px;
  background-color: #fff;
  height: 300px;
  position: relative;
  z-index: 2;
}

.hero__about-bg {
  position: absolute;
  z-index: 1;
  border-radius: 16px;
  width: calc(100% - 20px);
  height: 300px;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
  top: 20px !important;
  left: 20px !important;
}

.hero__about-btn {
  width: 70px;
  height: 70px;
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(230deg, rgba(37, 104, 176, 0.7) 0%, rgba(66, 59, 170, 0.2) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 3;
  top: 50% !important;
  left: 50% !important;
  margin: -15px 0 0 -45px;
}

.hero__about-btn:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  transition: border-color 0.5s ease;
}

.hero__about-btn svg {
  position: relative;
  z-index: 3;
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 2px;
}

.hero__about-btn:hover {
  background-color: #232122;
}

.hero__about-btn--moz:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background-color: rgba(35, 33, 34, 0.7);
}

.hero__pass {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.hero__parallax {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  display: block;
  background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
  border-radius: 16px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 20px !important;
  left: 20px !important;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 576px) {
  .hero__btns {
    justify-content: flex-start;
  }

  .hero__btn {
    width: 200px;
    margin-right: 30px;
  }

  .hero__btn:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 70px 0;
  }

  .hero__content {
    height: auto;
    min-height: calc(50vh - 105px);
  }

  .hero__content--first {
    justify-content: flex-end;
    padding-top: 70px;
  }

  .hero__content--second {
    justify-content: flex-start;
    margin-top: 70px;
  }

  .hero__title {
    font-size: 56px;
    line-height: 72px;
    margin-bottom: 35px;
  }

  .hero__title:last-child {
    margin-bottom: 0;
  }

  .hero__tagline {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 50px;
  }

  .hero__tagline:last-child {
    margin-bottom: 0;
  }

  .hero__info {
    margin-bottom: 50px;
  }

  .hero__btn {
    margin-right: 40px;
  }

  .hero__btn:last-child {
    margin-right: 0;
  }

  .hero__dates {
    margin-top: 0;
  }

  .hero__date--color {
    margin-bottom: 200px;
  }

  .hero__date--glass {
    top: calc(100% - 240px) !important;
  }

  .hero__about {
    margin-top: 0;
    height: calc(50vh - 105px);
  }

  .hero__about-cover {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin-bottom: 40px;
  }

  .hero__about-bg {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 40px !important;
    left: 40px !important;
  }

  .hero__about-btn {
    margin: -20px 0 0 -55px;
  }

  .hero__pass {
    margin-top: 0;
  }

  .hero__bg {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 40px !important;
    left: 40px !important;
  }
}

@media (min-width: 992px) {
  .hero {
    padding: 65px 0 0;
  }

  .hero__dates {
    margin-top: 10px;
  }

  .hero__content {
    height: calc(60vh);
  }

  .hero__content--first {
    padding-right: 30px;
    padding-top: 0;
  }

  .hero__content--first,
  .hero__content--second {
    justify-content: center;
    margin-top: 0;
  }

  .hero__about {
    height: auto;
    margin-top: 10px;
  }

  .hero__about-cover {
    height: 430px;
  }

  .hero__about-bg {
    height: 430px;
  }

  .hero__about-btn {
    margin: -50px 0 0 -55px;
  }

  .hero__pass {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .hero__content {
    padding: 70px 0;
    min-height: calc(100vh - 65px);
    height: auto;
  }

  .hero__title {
    font-size: 64px;
    line-height: 80px;
  }

  .hero__tagline {
    margin-bottom: 60px;
  }

  .hero__tagline:last-child {
    margin-bottom: 0;
  }

  .hero__info {
    margin-bottom: 60px;
  }

  .hero__dates {
    margin-top: 15px;
  }

  .hero__date {
    width: calc(50% + 20px);
  }

  .hero__date--color {
    margin-bottom: 180px;
  }

  .hero__date--glass {
    left: calc(50% - 20px) !important;
    top: calc(100% - 250px) !important;
  }

  .hero__date-day {
    font-size: 40px;
    line-height: 40px;
  }

  .hero__about {
    margin-top: 15px;
  }

  .hero__pass {
    margin-top: 15px;
    width: calc(100% - 55px);
    margin-left: 55px;
  }
}

/*==============================
	Section
==============================*/
.section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.section .container {
  position: relative;
  z-index: 3;
}

.section__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}

.section__title strong {
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  margin-bottom: 15px;
}

.section__title h2 {
  font-size: 30px;
  color: #232122;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  line-height: 40px;
}

.section__title p {
  font-size: 16px;
  line-height: 26px;
  color: #535051;
  margin-bottom: 10px;
  margin-top: 5px;
  text-align: center;
}

.section__title p a {
  background: var(--color-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-weight: 600;
}

.section__title p a:before {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 2px;
  border-radius: 4px;
  background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
  opacity: 0;
  transition: 0.5s ease;
  transition-property: opacity, bottom;
}

.section__title p a:hover:before {
  opacity: 1;
}

.section__title--white h2 {
  color: #fff;
}

.section__title--white p {
  color: #c2c2c2;
}

.section__title--left {
  align-items: flex-start;
}

.section__title--left h2 {
  text-align: left;
}

.section__title--left p {
  text-align: left;
}

.section__title--border {
  padding-top: 19px;
}

.section__title--border:before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: var(--color-primary);
  top: 0;
}

.section__btn {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
  border-radius: 16px;
  margin: 40px auto 0;
}

.section__btn:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 16px;
}

.section__btn:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 14px;
}

.section__btn span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 100%;
  transition: color 0.5s ease;
}

.section__btn span:hover {

  color: #000000;

}

.section__btn:hover:before {
  opacity: 1;
}

.section__btn--more span:before {
  content: 'Show less';
  position: absolute;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.section__btn--more[aria-expanded="true"] span {
  color: transparent;
}

.section__btn--more[aria-expanded="true"] span:before {
  opacity: 1;
}

.section__btn--more[aria-expanded="true"]:before {
  opacity: 1;
}

.section__btn--more[aria-expanded="true"]:hover:before {
  opacity: 0;
}

.section__btn--grid {
  margin: 20px 0 25px;
}

.section--dark {
  background-color: #232122;
}

.section--blue {
  background-color: #eef0fe;
}

.section--gradiend-top:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  pointer-events: none;
  height: 300px;
  z-index: 1;
  top: 0;
  background: linear-gradient(180deg, rgba(66, 59, 170, 0.06) 0%, rgba(37, 104, 176, 0) 100%);
}

.section--gradiend-bot:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  pointer-events: none;
  height: 300px;
  z-index: 1;
  bottom: 0;
  background: linear-gradient(0deg, rgba(66, 59, 170, 0.06) 0%, rgba(37, 104, 176, 0) 100%);
}

.section--about {
  padding-bottom: 0;
}

.section--about-up {
  background: url("../img/about/up.svg") no-repeat top center;
}

.section--about-wave {
  background: url("../img/about/wave.svg") no-repeat top center;
}

.section--about-angle {
  background: url("../img/about/angle.svg") no-repeat top center;
}

@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section__title strong {
    font-size: 16px;
  }

  .section__title h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .section__title p {
    margin-top: 10px;
  }

  .section__title--border {
    padding-top: 24px;
  }

  .section__title--between {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .section__title--between h2 {
    text-align: left;
    width: 50%;
    padding-right: 30px;
  }

  .section__title--between p {
    text-align: left;
    width: 50%;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .section__btn {
    margin: 50px auto 0;
  }

  .section__btn--grid {
    margin: 20px 0 15px;
  }

  .section--about {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .section__title--grid-left {
    margin-bottom: 0;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    padding-left: 55px;
  }

  .section__title--grid-left h2 {
    text-align: left;
  }

  .section__title--grid-left p {
    text-align: left;
  }

  .section__title--grid-right {
    margin-bottom: 0;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    padding-right: 55px;
  }

  .section__title--grid-right h2 {
    text-align: left;
  }

  .section__title--grid-right p {
    text-align: left;
  }

  .section__btn--grid {
    margin: 30px 0 0;
  }
}

@media (min-width: 1200px) {
  .section--about {
    background-size: 100% auto;
  }
}

/*==============================
	About
==============================*/
.about {
  width: 100%;
  position: relative;
  background-color: #eef0fe;
  border: 1px solid rgba(37, 104, 176, 0.1);
  border-radius: 16px;
  padding: 20px;
}

.about__cover {
  width: calc(100% + 42px);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: -21px;
  margin-left: -21px;
  position: relative;
}

.about__cover img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.about__cover:before {
  content: '';
  position: absolute;
  border-radius: 16px;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(35, 33, 34, 0.2);
}

.about__cover a {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(230deg, rgba(37, 104, 176, 0.7) 0%, rgba(66, 59, 170, 0.2) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 3;
  top: 50%;
  left: 50%;
  margin: -35px 0 0 -35px;
}

.about__cover a:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  transition: border-color 0.5s ease;
}

.about__cover a svg {
  position: relative;
  z-index: 3;
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 2px;
}

.about__cover a:hover {
  background-color: #232122;
}

.about__cover--moz a:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background-color: rgba(35, 33, 34, 0.7);
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.about__content h2 {
  font-size: 30px;
  color: #232122;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 40px;
}

.about__content p {
  font-size: 16px;
  line-height: 26px;
  color: #535051;
  margin-bottom: 15px;
}

.about__content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .about {
    padding: 40px;
  }

  .about__cover {
    width: calc(100% + 40px);
    margin-top: -20px;
    margin-left: -20px;
    margin-bottom: 30px;
  }

  .about__content h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .about__cover {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .about__content h2 {
    margin-top: -5px;
  }
}

/*==============================
	Features
==============================*/
.features {
  background-color: #232122;
  padding: 30px 20px;
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.features--first {
  margin-top: 0;
}

.features--second:after {
  transform: rotate(35deg);
}

.features--third:after {
  transform: rotate(60deg);
}

.features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.features:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 16px;
  width: 100px;
  height: 100px;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
  z-index: 1;
  opacity: 0.12;
  left: -40px;
  top: -50px;
  -webkit-animation: spin 40s linear infinite;
  animation: spin 40s linear infinite;
}

.features__title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 3;
  padding-top: 19px;
  margin-bottom: 10px;
}

.features__title b {
  font-weight: 700;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features__title:before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(230deg, var(--color-primary) 0%, var(--color-primary) 100%);
  top: 0;
  left: 0;
}

.features__text {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 26px;
  color: #c2c2c2;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .features {
    padding: 40px;
    margin-top: 30px;
  }

  .features:after {
    left: -40px;
    top: -40px;
  }

  .features--first {
    margin-top: 0;
  }

  .features__title {
    padding-top: 24px;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .features {
    margin-top: 0;
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

/*==============================
	Step
==============================*/
.step {
  background-color: #232122;
  padding: 30px 20px;
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.step--first {
  margin-top: 0;
}

.step--second:after {
  transform: rotate(35deg);
}

.step--third:after {
  transform: rotate(60deg);
}

.step:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.step:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 16px;
  width: 100px;
  height: 100px;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
  z-index: 1;
  opacity: 0.12;
  left: -40px;
  top: -50px;
  -webkit-animation: spin 40s linear infinite;
  animation: spin 40s linear infinite;
}

.step__number {
  margin-top: -4px;
  margin-left: -1px;
  font-size: 50px;
  line-height: 100%;
  font-weight: 700;
  background: -webkit-linear-gradient(60deg, var(--color-primary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step__title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 3;
  padding-top: 15px;
  margin-bottom: 10px;
}

.step__title b {
  font-weight: 700;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step__text {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 26px;
  color: #c2c2c2;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .step {
    padding: 40px;
    margin-top: 30px;
  }

  .step:after {
    left: -40px;
    top: -40px;
  }

  .step--first {
    margin-top: 0;
  }

  .step__title {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .step {
    margin-top: 0;
  }
}

/*==============================
	Statistics
==============================*/
.statistics {
  width: 100%;
  position: relative;
}

.statistics__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
  padding-left: 80px;
  position: relative;
}

.statistics__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: linear-gradient(65deg, #454545 0%, #FED620 100%);
}

.statistics__icon i {
  color: #f1f1f1;
}

.statistics__number {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 32px;
  line-height: 34px;
  height: 34px;
  color: #232122;
  font-weight: 600;
  margin-bottom: 2px;
}

.statistics__number b {
  line-height: 30px;
  font-weight: 600;
  background: var(--color-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  margin-left: 4px;
}

.statistics__text {
  font-size: 16px;
  color: #535051;
}

@media (min-width: 768px) {
  .statistics__item {
    margin-top: 40px;
  }
}

/*==============================
	Speaker
==============================*/
.speaker {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.speaker:hover .speaker__social a {
  opacity: 1;
  margin-top: 0;
}

.speaker:hover .speaker__img:before {
  opacity: 1;
}

.speaker__img {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.speaker__img img {
  position: relative;
  object-fit: cover;
  object-position: top center;
  height: 300px;
  width: 100%;
  z-index: 1;
}

.speaker__img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(254, 234, 13, 0.45) 0%, rgba(254, 234, 13, 0.05) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.speaker__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 20px;
  height: 20px;
  z-index: 3;
}

.speaker__social a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  opacity: 0;
  margin-top: 20px;
  transition: 0.5s ease;
  transition-property: opacity, margin-top;
}

.speaker__social a:first-child {
  transition-delay: 50ms;
}

.speaker__social a:nth-child(2) {
  transition-delay: 100ms;
}

.speaker__social a:nth-child(3) {
  transition-delay: 150ms;
}

.speaker__social a:nth-child(4) {
  transition-delay: 200ms;
}

.speaker__social a:nth-child(5) {
  transition-delay: 250ms;
}

.speaker__social a:nth-child(6) {
  transition-delay: 300ms;
}

.speaker__social a:nth-child(7) {
  transition-delay: 350ms;
}

.speaker__social a i {
  /* width: 20px;
  height: auto; */
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.5s ease;
}

.speaker__social a:last-child {
  margin-right: 0;
}

.speaker__social a:hover i {
  fill: #fff;
}

.speaker__about {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 15px;
}

.speaker__about h3 {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  color: #232122;
  font-weight: 600;
  margin-bottom: 3px;
}

.speaker__about span {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  background: var(--color-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 576px) {
  .speaker__about {
    padding: 40px 20px 20px;
    border-radius: 0 0 16px 16px;
    margin-top: -20px;
    background-color: #eef0fe;
    border: 1px solid rgba(37, 104, 176, 0.1);
    border-top: none;
  }

  .speaker__about h3 {
    margin-bottom: 10px;
  }

  .speaker__about span {
    line-height: 100%;
  }

  .speaker__social {
    left: 20px;
    right: 20px;
  }

  .speaker__social a {
    margin-right: 15px;
  }

  .speaker__social a:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .speaker {
    margin-top: 30px;
  }
}

/*==============================
	Program
==============================*/
.program {
  position: relative;
  width: 100%;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  z-index: 2;
  padding: 25px 20px 20px;
}

.program__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
  overflow: auto;
}

.program__tabs li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 20px;
}

.program__tabs li:last-child {
  margin-right: 0;
}

.program__tabs a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 18px;
  color: #fff;
  word-wrap: normal;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.program__tabs a span {
  font-weight: 600;
  font-size: 12px;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.program__tabs a.active,
.program__tabs a:hover {
  opacity: 1;
}

.program__content {
  width: 100%;
  height: 410px;
  margin-top: 30px;
  position: relative;
}

.program__speech {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-right: 24px;
}

.program__speech:last-child .program__agenda {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.program__speaker {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.program__speaker-img {
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.program__speaker-img img {
  width: 100%;
}

.program__speaker-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  left: 60px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 0 0 15px;
}

.program__speaker-about p {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 7px;
}

.program__speaker-about span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  background: var(--color-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.program__agenda {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.program__agenda h3 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.program__agenda span {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 28px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.program__agenda p {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #c2c2c2;
  margin-bottom: 15px;
}

.program__agenda p:last-child {
  margin-bottom: 0;
}

@media (min-width: 400px) {
  .program__tabs li {
    margin-right: 25px;
  }

  .program__tabs li:last-child {
    margin-right: 0;
  }

  .program__tabs a {
    font-size: 20px;
    line-height: 30px;
  }

  .program__tabs a span {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (min-width: 576px) {
  .program__tabs li {
    margin-right: 30px;
  }

  .program__tabs li:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .program {
    padding: 40px;
  }

  .program__tabs {
    margin-top: 20px;
  }

  .program__tabs li {
    margin-right: 40px;
  }

  .program__tabs li:last-child {
    margin-right: 0;
  }

  .program__tabs a {
    font-size: 22px;
    line-height: 30px;
  }

  .program__tabs a span {
    font-size: 14px;
    line-height: 20px;
  }

  .program__content {
    margin-top: 40px;
  }

  .program__speech {
    padding-right: 34px;
  }

  .program__speech:last-child .program__agenda {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .program__speaker {
    margin-bottom: 20px;
  }

  .program__agenda {
    padding-bottom: 30px;
    margin-bottom: 35px;
  }

  .program__agenda h3 {
    margin-bottom: 17px;
    font-size: 26px;
    line-height: 36px;
  }

  .program__agenda span {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .program__tabs {
    margin-top: 0;
  }

  .program__content {
    margin-top: 35px;
  }
}

@media (min-width: 1200px) {
  .program__tabs li {
    margin-right: 45px;
  }

  .program__tabs li:last-child {
    margin-right: 0;
  }

  .program__tabs a {
    padding-left: 20px;
    position: relative;
  }

  .program__tabs a:before {
    content: '';
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transition: background-color 0.5s ease;
    margin-top: -2.5px;
  }

  .program__speech {
    flex-direction: row;
  }

  .program__speaker {
    flex-direction: column;
    width: 140px;
    margin-bottom: 0;
  }

  .program__speaker-img {
    width: 140px;
    margin-bottom: 15px;
  }

  .program__speaker-about {
    position: relative;
    justify-content: flex-start;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    padding: 0;
  }

  .program__agenda {
    width: calc(100% - 160px);
    margin-left: 20px;
  }
}

/*==============================
	Gallery
==============================*/
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(10, 10vw);
  grid-gap: 20px;
  margin-top: 20px;
}

.gallery__item {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery__item img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 5;
}

.gallery__item--2 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 5;
  grid-row-end: 8;
}

.gallery__item--3 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 5;
  grid-row-end: 8;
}

.gallery__item--4 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 8;
  grid-row-end: 11;
}

.gallery__item--5 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 5;
  grid-row-end: 8;
}

.gallery__item--6 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 5;
  grid-row-end: 8;
}

.gallery__item--7 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 5;
}

.gallery__item--8 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 8;
  grid-row-end: 11;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 12vw);
    grid-gap: 30px;
    margin-top: 30px;
  }

  .gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 5;
  }

  .gallery__item--2 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .gallery__item--3 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .gallery__item--4 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
  }

  .gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .gallery__item--6 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .gallery__item--7 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 5;
  }

  .gallery__item--8 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}

@media (min-width: 1200px) {
  .gallery {
    grid-template-rows: repeat(4, 7vw);
  }
}

/*==============================
	Resources
==============================*/
.resources {
  background-color: #232122;
  padding: 105px 20px 30px;
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.resources:hover .resources__icon:before {
  opacity: 1;
}

.resources:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.resources__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  left: 20px;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
}

.resources__icon:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(65deg, #2568b0 0%, #423baa 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}

.resources__icon svg {
  width: 32px;
  height: auto;
  fill: #fff;
  position: relative;
  z-index: 2;
}

.resources__title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
}

.resources__title b {
  font-weight: 700;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resources__text {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 26px;
  color: #c2c2c2;
  margin-bottom: 0;
}

.resources__link {
  font-size: 16px;
  line-height: 26px;
  margin-top: 16px;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.resources__link:before {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 2px;
  border-radius: 4px;
  background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
  opacity: 0;
  transition: 0.5s ease;
  transition-property: opacity, bottom;
  pointer-events: none;
}

.resources__link:hover:before {
  opacity: 1;
}

@media (min-width: 768px) {
  .resources {
    padding: 120px 40px 40px;
    margin-top: 30px;
  }

  .resources__title {
    margin-bottom: 15px;
  }

  .resources__icon {
    top: 40px;
    left: 40px;
  }

  .resources__link {
    margin-top: 25px;
  }
}

@media (min-width: 992px) {
  .resources {
    padding: 120px 30px 40px 40px;
  }
}

@media (min-width: 1200px) {
  .resources {
    padding: 120px 35px 40px 40px;
  }
}

/*==============================
	Pass
==============================*/
.pass {
  background-color: #eef0fe;
  border: 1px solid rgba(37, 104, 176, 0.1);
  border-radius: 16px;
  margin-top: 20px;
  padding: 30px 20px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

.pass--dark {
  background-color: #232122;
  border: none;
}

.pass--dark:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.pass--dark .pass__title {
  color: #fff;
}

.pass--dark .pass__list li {
  color: #fff;
}

.pass--dark .pass__list li.not-included {
  opacity: 0.5;
}

.pass--dark .pass__list li.not-included svg {
  fill: #fff;
}

.pass--dark .pass__counter {
  color: #fff;
}

.pass--dark .pass__counter span {
  color: #c2c2c2;
}

.pass--dark .pass__progress {
  border-color: rgba(255, 255, 255, 0.06);
}

.pass--hero {
  background-color: #fff;
  margin-top: 0;
  z-index: 2;
  width: calc(100% - 20px);
  margin-bottom: 20px;
}

.pass__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 24px;
  color: #232122;
  font-weight: 600;
  line-height: 100%;
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}

.pass__price {
  position: relative;
  z-index: 3;
  font-size: 42px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pass__price span {
  font-size: 16px;
  line-height: 16px;
  margin-top: 4px;
  margin-left: 5px;
  position: absolute;
  z-index: 1;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0;
  left: 100%;
}

.pass__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}

.pass__list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #232122;
  font-weight: 400;
  margin-bottom: 12px;
}

.pass__list li:last-child {
  margin-bottom: 0;
}

.pass__list li.not-included {
  opacity: 0.65;
}

.pass__list li.not-included svg {
  fill: #535051;
}

.pass__list li svg {
  width: 20px;
  height: auto;
  fill: #24ad6e;
  margin-right: 10px;
}

.pass__progress {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 22px;
  background-color: rgba(37, 104, 176, 0.2);
  border-radius: 6px;
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
  border: 1px solid rgba(37, 104, 176, 0.1);
  overflow: hidden;
}

.pass__progress .progress-bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
}

.pass__progress .progress-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: transparent;
  transition: width 0.6s ease;
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent);
  background-size: 60px 60px;
  -webkit-animation: progress-bar-stripes 4s linear infinite;
  animation: progress-bar-stripes 4s linear infinite;
}

.pass__counter {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  color: #232122;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  position: relative;
  z-index: 3;
}

.pass__counter span {
  color: #535051;
}

.pass__btn {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(65deg, #423baa 0%, #2568b0 100%);
  border-radius: 16px;
}

.pass__btn:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(65deg, #2568b0 0%, #423baa 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 16px;
}

.pass__btn:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 14px;
}

.pass__btn span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 100%;
  transition: color 0.5s ease;
}

.pass__btn:hover:before {
  opacity: 1;
}

@media (min-width: 768px) {
  .pass {
    margin-top: 30px;
    padding: 40px;
  }

  .pass--hero {
    margin-top: 0;
    width: calc(100% - 40px);
    margin-bottom: 40px;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}

/*==============================
	Venue
==============================*/
.venue {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 16px;
}

.venue:before {
  content: '';
  position: absolute;
  border-radius: 16px;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(35, 33, 34, 0.2);
}

.venue__img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.venue__content {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  right: 20px;
  left: 20px;
  bottom: 20px;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 16px;
}

.venue__content h3 {
  font-size: 24px;
  color: #232122;
  font-weight: 600;
  margin-bottom: 10px;
}

.venue__content p {
  font-size: 16px;
  line-height: 26px;
  color: #535051;
  margin-bottom: 0;
}

.venue__content a {
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.venue__content a:before {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 2px;
  border-radius: 4px;
  background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
  opacity: 0;
  transition: 0.5s ease;
  transition-property: opacity, bottom;
  pointer-events: none;
}

.venue__content a:hover:before {
  opacity: 1;
}

@media (min-width: 768px) {
  .venue {
    margin-top: 30px;
  }

  .venue__content {
    left: 40px;
    bottom: 40px;
    right: 40px;
    padding: 30px;
  }

  .venue__content h3 {
    margin-bottom: 15px;
  }

  .venue__content a {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .venue {
    margin-top: 0;
  }

  .venue__content {
    right: 60px;
  }
}

/*==============================
	Video
==============================*/
.video {
  margin-top: 30px;
}

.video--first {
  margin-top: 20px;
}

.video__cover {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.video__cover img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.video__cover:before {
  content: '';
  position: absolute;
  border-radius: 16px;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(35, 33, 34, 0.2);
}

.video__cover a {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(230deg, rgba(37, 104, 176, 0.7) 0%, rgba(66, 59, 170, 0.2) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 3;
  top: 50%;
  left: 50%;
  margin: -35px 0 0 -35px;
}

.video__cover a:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  transition: border-color 0.5s ease;
}

.video__cover a svg {
  position: relative;
  z-index: 3;
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 2px;
}

.video__cover a:hover {
  background-color: #232122;
}

.video__cover--moz a:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background-color: rgba(35, 33, 34, 0.7);
}

.video__title p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  background: -webkit-linear-gradient(60deg, #423baa, #2568b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  padding-left: 40px;
  position: relative;
}

.video__title p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  height: 2px;
  width: 24px;
  display: block;
  border-radius: 4px;
  background: linear-gradient(230deg, #2568b0 0%, #423baa 100%);
}

.video__title h3 {
  font-size: 24px;
  font-weight: 600;
  color: #232122;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .video {
    margin-top: 30px;
  }

  .video__cover {
    margin-bottom: 25px;
  }

  .video__title h3 {
    padding-left: 40px;
  }
}

/*==============================
	Sponsors
==============================*/
.sponsors {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(37, 104, 176, 0.15);
  border-left: none;
  border-right: none;
  overflow: hidden;
}

.sponsors li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 90px;
  border-top: 1px solid rgba(37, 104, 176, 0.15);
  border-right: 1px solid rgba(37, 104, 176, 0.15);
}

.sponsors li:nth-child(2n) {
  border-right: none;
}

.sponsors li:nth-child(2n) a {
  padding-right: 0;
  padding-left: 20px;
}

.sponsors li:nth-child(1),
.sponsors li:nth-child(2) {
  border-top: none;
}

.sponsors a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 20px;
}

.sponsors a img {
  max-width: 100%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.75;
  transition: 0.5s ease;
  transition-property: filter, opacity;
}

.sponsors a:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

@media (min-width: 400px) {
  .sponsors li {
    height: 100px;
  }

  .sponsors li:nth-child(2n) a {
    padding: 0 20px;
  }

  .sponsors li a {
    padding: 0 20px;
  }
}

@media (min-width: 576px) {
  .sponsors li:nth-child(2n) a {
    padding: 0 40px;
  }

  .sponsors li a {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .sponsors {
    margin-top: 30px;
    border-radius: 16px;
    border-left: 1px solid rgba(37, 104, 176, 0.15);
    border-right: 1px solid rgba(37, 104, 176, 0.15);
  }

  .sponsors li {
    width: 33.333333%;
    height: 120px;
    background-color: #fff;
  }

  .sponsors li:nth-child(2n) {
    border-right: 1px solid rgba(37, 104, 176, 0.15);
  }

  .sponsors li:nth-child(2n) a {
    padding: 0 30px;
  }

  .sponsors li:nth-child(3n) {
    border-right: none;
  }

  .sponsors li:nth-child(3) {
    border-top: none;
  }

  .sponsors li a {
    padding: 0 30px;
  }

  .sponsors--small li {
    width: 25%;
  }

  .sponsors--small li:nth-child(3n) {
    border-right: 1px solid rgba(37, 104, 176, 0.15);
  }

  .sponsors--small li:nth-child(4n) {
    border-right: none;
  }

  .sponsors--small li:nth-child(4) {
    border-top: none;
  }

  .sponsors--small li:nth-child(2n) a {
    padding: 0 20px;
  }

  .sponsors--small li a {
    padding: 0 20px;
  }
}

@media (min-width: 992px) {
  .sponsors li {
    width: 25%;
  }

  .sponsors li:nth-child(3n) {
    border-right: 1px solid rgba(37, 104, 176, 0.15);
  }

  .sponsors li:nth-child(4n) {
    border-right: none;
  }

  .sponsors li:nth-child(4) {
    border-top: none;
  }

  .sponsors--small {
    margin-top: 0;
  }

  .sponsors--small li {
    width: 50%;
  }

  .sponsors--small li:nth-child(3),
  .sponsors--small li:nth-child(4) {
    border-top: 1px solid rgba(37, 104, 176, 0.15);
  }

  .sponsors--small li:nth-child(2n) {
    border-right: none;
  }

  .sponsors--small li:nth-child(2n) a {
    padding: 0 30px;
  }

  .sponsors--small li a {
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .sponsors li:nth-child(2n) a {
    padding: 0 45px;
  }

  .sponsors li a {
    padding: 0 45px;
  }
}

/*==============================
	Accordion
==============================*/
.accordion__card {
  background-color: #eef0fe;
  border: 1px solid rgba(37, 104, 176, 0.1);
  border-radius: 16px;
  margin-top: 20px;
}

.accordion__card button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  padding-right: 60px;
  min-height: 80px;
  padding: 20px 80px 20px 20px;
  color: #232122;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.accordion__card button span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-dark);
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
}

.accordion__card button span:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}

.accordion__card button span i {
  color: #fff;
  position: absolute;
  z-index: 2;
  transition: transform 0.5s ease;
}

.accordion__card button span svg:last-child {
  transform: rotate(-90deg);
}

.accordion__card button:hover span:before {
  opacity: 1;
}

.accordion__card button[aria-expanded="true"] span svg:last-child {
  transform: rotate(0deg);
}

.accordion__card button[aria-expanded="true"] span:before {
  opacity: 1;
}

.accordion__card p {
  padding: 0 20px;
  color: #535051;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.accordion__card p b {
  font-weight: 600;
}

.accordion__card p:first-child {
  border-top: 1px solid rgba(37, 104, 176, 0.1);
  padding: 20px 20px 0;
}

@media (min-width: 768px) {
  .accordion__card {
    margin-top: 30px;
  }
}

/*==============================
	Contact
==============================*/
.contact {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 60px;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 10px 20px;
  margin-top: 20px;
}

.contact:hover .contact__icon:before {
  opacity: 1;
}

.contact:hover .contact__text {
  color: #fff;
}

.contact__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(65deg, #FED620 0%, #fbf663 100%);
  position: relative;
  overflow: hidden;
}

.contact__icon:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(65deg, #2568b016 0%, #70706c 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}

.contact__icon i {
  color: var(--color-dark);
  position: relative;
  z-index: 2;
}

.contact__text {
  padding-left: 20px;
  color: #c2c2c2;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.5s ease;
}

@media (min-width: 992px) {
  .contact {
    max-width: 360px;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media (min-width: 768px) {
  .contacts {
    flex-direction: row;
    justify-content: space-between;
  }

  .contacts__list {
    margin-top: 10px;
    width: calc(50% - 15px);
  }
}

@media (min-width: 992px) {
  .contacts {
    flex-direction: column;
    justify-content: flex-start;
  }

  .contacts__list {
    width: 100%;
  }
}

/*==============================
	Social
==============================*/
.social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 50px;
}

.social__title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.social__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.social__list a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(65deg, #FED620 0%, #fbf663 100%);
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  margin-top: 15px;
}

.social__list a:last-child {
  margin-right: 0;
}

.social__list a:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(65deg, #2568b016 0%, #70706c 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}

.social__list a i {
  color: var(--color-dark);
  position: relative;
  z-index: 2;
}

.social__list a:hover:before {
  opacity: 1;
}

@media (min-width: 768px) {
  .social {
    width: calc(50% - 15px);
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .social {
    width: 100%;
    margin-top: 50px;
  }
}

/*==============================
	Form
==============================*/
.form {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.form__wrap {
  height: 100%;
  width: 100%;
  position: absolute;
}

.form__content {
  position: relative;
  width: 100%;
  background: linear-gradient(230deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 248, 248, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  z-index: 2;
  padding: 20px;
}

.form__bg {
  position: absolute;
  display: block;
  background: linear-gradient(230deg, rgba(37, 104, 176, 0.2) 0%, rgba(66, 59, 170, 0.2) 100%);
  border-radius: 16px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  top: 25px !important;
  left: 25px !important;
  z-index: 1;
  pointer-events: none;
}

.form__bg--moz {
  filter: blur(12px);
}

.form__title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 20px;
  padding-top: 5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.form__group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form__group--dark ::-webkit-input-placeholder {
  color: #535051;
  opacity: 1;
}

.form__group--dark ::-moz-placeholder {
  color: #535051;
  opacity: 1;
}

.form__group--dark :-moz-placeholder {
  color: #535051;
  opacity: 1;
}

.form__group--dark :-ms-input-placeholder {
  color: #535051;
  opacity: 1;
}

.form__group--dark .form__label {
  color: #535051;
}

.form__group--dark .form__input {
  color: #232122;
  border-color: rgba(35, 33, 34, 0.26);
}

.form__group--dark .form__input:hover,
.form__group--dark .form__input:focus {
  border-color: rgba(35, 33, 34, 0.76);
}

.form__group--dark .form__select {
  color: #232122;
  border-color: rgba(35, 33, 34, 0.26);
  background: url("../img/select--dark.svg") no-repeat center right 20px transparent;
  background-size: 20px auto;
}

.form__group--dark .form__select:hover,
.form__group--dark .form__select:focus {
  border-color: rgba(35, 33, 34, 0.76);
}

.form__group--dark .form__text {
  color: #535051;
}

.form__group--dark .form__radio label {
  color: #535051;
}

.form__group--dark .form__radio label:before {
  border-color: rgba(83, 80, 81, 0.35);
}

.form__group--dark .form__radio label:hover {
  color: #232122;
}

.form__group--dark .form__radio input:checked+label {
  color: #232122;
}

.form__group--dark .form__radio input:checked+label:before {
  border-color: #423baa;
}

.form__label {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  width: 100%;
  line-height: 100%;
  margin-bottom: 15px;
}

.form__input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background-color: transparent;
  border-radius: 16px;
  font-size: 16px;
  color: #fff;
  cursor: default;
  font-weight: 400;
}

.form__input:hover,
.form__input:focus {
  border-color: rgba(255, 255, 255, 0.56);
}

.form__select {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: url("../img/select.svg") no-repeat center right 20px transparent;
  background-size: 20px auto;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  position: relative;
}

.form__select:hover,
.form__select:focus {
  border-color: rgba(255, 255, 255, 0.56);
}

.form__textarea {
  width: 100%;
  height: 130px;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background-color: transparent;
  border-radius: 16px;
  font-size: 16px;
  color: #fff;
  cursor: default;
  resize: none;
  font-weight: 400;
}

.form__textarea:hover,
.form__textarea:focus {
  border-color: rgba(255, 255, 255, 0.56);
}

.form__radio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 2px;
}

.form__radio li {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.form__radio li:last-child {
  margin-bottom: 0;
}

.form__radio input:not(:checked),
.form__radio input:checked {
  position: absolute;
  left: -9999px;
}

.form__radio label {
  display: block;
  margin: 0;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  color: #c2c2c2;
  line-height: 26px;
  padding-left: 31px;
  transition: 0.5s ease;
}

.form__radio label:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 6px solid rgba(255, 255, 255, 0.35);
  background-color: transparent;
  border-radius: 50%;
  left: 0;
  top: 3px;
  transition: 0.5s ease;
}

.form__radio label:hover {
  color: #fff;
}

.form__radio input:checked+label {
  color: #fff;
}

.form__radio input:checked+label:before {
  border-color: #423baa;
}

.form__text {
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  margin-top: 15px;
  color: #c2c2c2;
}

.form__btn {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(65deg, var(--color-primary) 0%, #fff700 100%);
  border-radius: 16px;

}

.form__btn:before {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(65deg, #fff700 0%, #1d1c1c 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 16px;
}

.form__btn:after {
  content: '';
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 14px;
}

.form__btn span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 100%;
}

.form__btn:hover:before {
  opacity: 1;
}

@media (min-width: 576px) {
  .form__btn {
    max-width: 200px;
  }

  .form__btn--center {
    width: 200px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .form {
    margin-top: 70px;
  }

  .form__group {
    margin-bottom: 30px;
  }

  .form__content {
    padding: 40px;
  }

  .form__title {
    margin-bottom: 40px;
    padding-bottom: 35px;
    padding-top: 0;
  }

  .form__btn {
    margin-top: 10px;
  }
}

@media (min-width: 992px) {
  .form {
    margin-top: 0;
  }

  .form__title {
    display: none;
  }
}

/*==============================
	Footer
==============================*/
.footer {
  background-color: #232122;
}

.footer__content {
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.footer__nav {
  order: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.footer__nav a {
  font-size: 14px;
  color: #c2c2c2;
  font-weight: 400;
  margin-right: 20px;
}

.footer__nav a:last-child {
  margin-right: 0;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__copyright {
  font-size: 14px;
  color: #c2c2c2;
  font-weight: 400;
  order: 2;
  margin-top: 20px;
}

.footer__copyright a {
  color: #c2c2c2;
}

.footer__copyright a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 80px;
  }

  .footer__nav {
    order: 2;
    width: auto;
  }

  .footer__nav a {
    margin-right: 30px;
  }

  .footer__nav a:last-child {
    margin-right: 0;
  }

  .footer__copyright {
    order: 1;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .footer__content {
    height: 90px;
  }

  .footer__nav a {
    margin-right: 40px;
  }

  .footer__nav a:last-child {
    margin-right: 0;
  }
}

/*==============================
	Modal
==============================*/
.modal {
  position: relative;
  display: block;
  background-color: #fff;
  margin: 40px auto;
  width: 100%;
  max-width: 460px;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.modal--article {
  max-width: 900px;
}

.modal .mfp-close {
  display: none;
}

.modal__title {
  color: #232122;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.modal__close svg {
  fill: #535051;
  transition: 0.5s ease;
  height: auto;
  width: 24px;
}

.modal__close:hover svg {
  fill: #232122;
}

.modal__article h1,
.modal__article h2,
.modal__article h3,
.modal__article h4,
.modal__article h5,
.modal__article h6 {
  color: #232122;
  font-weight: 600;
  margin-bottom: 15px;
}

.modal__article h1:last-child,
.modal__article h2:last-child,
.modal__article h3:last-child,
.modal__article h4:last-child,
.modal__article h5:last-child,
.modal__article h6:last-child {
  margin-bottom: 0;
}

.modal__article h1 {
  font-size: 30px;
}

.modal__article h2 {
  font-size: 26px;
}

.modal__article h3 {
  font-size: 22px;
}

.modal__article h4 {
  font-size: 20px;
}

.modal__article h5 {
  font-size: 18px;
}

.modal__article h6 {
  font-size: 16px;
}

.modal__article img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 16px;
}

.modal__article img:last-child {
  margin-bottom: 0;
}

.modal__article p {
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #535051;
  margin-bottom: 20px;
}

.modal__article p b {
  font-weight: 600;
}

.modal__article p a {
  color: #423baa;
  text-decoration: underline;
}

.modal__article p a:hover,
.modal__article p a:focus {
  color: #423baa;
  text-decoration: none;
}

.modal__article p:last-child {
  margin-bottom: 0;
}

.modal__article blockquote {
  display: block;
  position: relative;
  padding: 0 0 0 30px;
  font-size: 16px;
  line-height: 26px;
  color: #232122;
  font-weight: 400;
  margin-bottom: 20px;
}

.modal__article blockquote:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: auto;
  border-radius: 4px;
  background: linear-gradient(0deg, #2568b0 0%, #423baa 100%);
  top: 0;
  bottom: 0;
  left: 0;
}

.modal__article blockquote:last-child {
  margin-bottom: 0;
}

.modal__article ul {
  margin-bottom: 20px;
  padding-left: 20px;
  display: block;
  list-style: disc;
}

.modal__article ul li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #535051;
  padding-left: 5px;
}

.modal__article ul:last-child {
  margin-bottom: 0;
}

.modal__article ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 20px;
}

.modal__article ol ol {
  padding-left: 15px;
  margin-bottom: 0;
  margin-top: 20px;
}

.modal__article ol ol li {
  margin-top: 0;
}

.modal__article ol ol ol {
  margin-top: 20px;
  margin-bottom: 0;
}

.modal__article ol li {
  font-size: 16px;
  line-height: 26px;
  color: #535051;
  position: relative;
  margin-top: 20px;
}

.modal__article ol li b {
  font-weight: 600;
  color: #535051;
}

.modal__article ol li a {
  color: #423baa;
}

.modal__article ol li a:hover {
  color: #423baa;
  text-decoration: underline;
}

.modal__article ol li:last-child {
  margin-bottom: 0;
}

.modal__article ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}

.modal__article ol:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .modal {
    padding: 40px;
  }

  .modal__title {
    margin-bottom: 30px;
  }

  .modal__close {
    top: 36px;
    right: 36px;
  }
}

.mfp-bg {
  background: rgba(35, 33, 34, 0.7);
}

.mfp-container {
  padding: 0 15px !important;
}

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.mfp-iframe-scaler iframe {
  border-radius: 16px;
  box-shadow: none;
  background-color: #232122;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  transition: opacity 0.4s ease;
}

.mfp-iframe-holder .mfp-close:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 44px;
  background: url("../img/close.svg") no-repeat center;
  background-size: 24px auto;
}

.mfp-iframe-holder .mfp-content {
  max-width: 900px;
}

.mfp-figure::after {
  box-shadow: none;
  background-color: #232122;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-bg.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
  background: rgba(255, 255, 255, 0.06) !important;
  top: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right: 0 !important;
  overflow: hidden;
  cursor: pointer;
}

.scrollbar-thumb-y {
  background: var(--color-primary) !important;
  width: 4px !important;
  border-radius: 4px !important;
  cursor: pointer;
  cursor: pointer;
}

.scrollbar-track-x {
  background: rgba(255, 255, 255, 0.06) !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0 !important;
  overflow: hidden;
}

.scrollbar-thumb-x {
  background: linear-gradient(90deg, #423baa 0%, #2568b0 100%) !important;
  height: 4px !important;
  border-radius: 4px !important;
  cursor: pointer;
}

/*==============================
	Blueimp
==============================*/
.blueimp-gallery {
  background-color: #232122;
}

.blueimp-gallery-svgasimg>.play-pause {
  background-image: url("../img/play.svg");
}

.blueimp-gallery-playing>.play-pause {
  background-position: 0 0;
  background-image: url("../img/pause.svg");
}

.blueimp-gallery>.title {
  top: 20px;
  left: 20px;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.blueimp-gallery-display>.close {
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.blueimp-gallery-display>.play-pause {
  right: 20px;
  bottom: 20px;
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.blueimp-gallery>.indicator {
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.blueimp-gallery-display>.next,
.blueimp-gallery-display>.prev {
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  opacity: 0.7;
  width: 30px;
  height: 30px;
  padding: 0;
  margin-top: -15px;
  border-radius: 10px;
  background-size: 24px auto;
  transition: opacity 0.5s ease;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

.blueimp-gallery-display>.next:before,
.blueimp-gallery-display>.prev:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 2px solid #fff;
  border-radius: 10px;
  display: block;
}

@media (min-width: 1200px) {

  .blueimp-gallery-display>.next,
  .blueimp-gallery-display>.prev {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .blueimp-gallery-display>.next:before,
  .blueimp-gallery-display>.prev:before {
    border-radius: 12px;
  }
}

.blueimp-gallery-display>.next {
  right: 20px;
  background-position: center right 2px;
}

@media (min-width: 1200px) {
  .blueimp-gallery-display>.next {
    background-position: center right 5px;
  }
}

.blueimp-gallery-display>.prev {
  left: 20px;
  background-position: center left 2px;
}

@media (min-width: 1200px) {
  .blueimp-gallery-display>.prev {
    background-position: center left 5px;
  }
}

@-moz-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}


.spantex {
  color: black;
}

.spantex:hover {
  color: #eef0fe;
}

.small_clist {
  display: flex;
  column-gap: 5%;
  list-style-type: disc;
  width: 100%;
  font-weight: 600;
  font-size: 0.9rem;
}

.pro_card {
  width: 40%;
  margin-top: 50px;
}

.step__centre {
  background-color: #232122;
  padding: 30px 20px;
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 50%;
}

.pro_card_single {
  width: 40%;
  height: 100%;
  margin-top: 50px;
  background-color: #232122;
  padding: 30px 40px;
  border-radius: 16px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

/* Mobile responsive styles for process section */
@media (max-width: 767px) {
  #process .pro_card {
    width: 90%;
    margin: 15px 0;
  }

  #process .row[style*="justify-content: center"] {
    display: flex;
    flex-direction: column;
  }

  #process .pro_card_single {
    width: 90%;
    margin: 30px auto;
  }
}

.program__agenda__dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.program__agenda__dark p {
  font-size: var(--font-weight-normal);
  font-weight: 400;
  color: var(--color-light);
  margin-bottom: 12px;
}

.cta-sec {
  position: relative;
  width: 100%;
  padding: 140px 0 60px;
  background: url("../img/hero/hero.jpg") no-repeat center/cover;
  background-attachment: fixed;
}

/* Adding black overlay with 50% opacity */
.cta-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-dark);
  opacity: 0.95;
  z-index: 1;
  /* Makes sure the overlay is above the background image */
}

.cta-sec>* {
  position: relative;
  z-index: 2;
  /* Ensures that content inside .hero (like text) appears above the overlay */
}

.countdown {
  position: relative;
  text-align: center;
  padding: 20px 20px 40px 20px;
  z-index: 2;
  background-color: var(--color-light);
  overflow: hidden;
  /* Ensures the sliding effect stays inside */
}

.countdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  transition: left 1.5s ease;
  z-index: 1;
}

.countdown:hover::before {
  left: 0;
}

.countdown:hover .tyred {
  color: var(--color-light);
}

.countdown * {
  position: relative;
  z-index: 2;
}

