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

Project:	Rency HTML Template
Version:	1.0
Primary use:	Rency HTML Template
----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Colors
2. Fonts
3. Common styles
4. Header
5. Hero
6. Section
7. About
8. Features
9. Step
10. Statistics
11. Speaker
12. Program
13. Gallery
14. Resources
15. Pass
16. Venue
17. Video
18. Sponsors
19. Accordion
20. Contact
21. Social
22. Form
23. Footer
24. Modal
25. Scrollbar-track
26. Blueimp
----------------------------------------*/
/*==============================
	Colors
==============================*/
/*==============================
	Fonts
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
  cursor: pointer;
}
button:focus {
  outline: none;
}
a {
  transition: 0.5s ease;
  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: 0.5s ease;
  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: #fff;
  color: #232122;
  text-shadow: none;
}
::selection {
  background: #fff;
  color: #232122;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #c2c2c2;
  opacity: 1;
}
::-moz-placeholder {
  color: #c2c2c2;
  opacity: 1;
}
:-moz-placeholder {
  color: #c2c2c2;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #c2c2c2;
  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: 99;
  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: 0.5s ease;
  pointer-events: none;
  border-bottom: 1px solid transparent;
}
.header--active .header__btn span {
  background-color: #232122;
}
.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: 80px;
  background-color: #fff;
  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: 40px;
  pointer-events: none;
}
.header__logo img {
  height: 50px;
  width: auto;
}
.header__logo-white {
  position: relative;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.header__logo-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.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: #fff;
  border-radius: 3px;
  transition: 0.5s ease;
  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: #cc0000;
}
.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: linear-gradient(65deg, #e60000 0%, #cc0000 100%);
  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: linear-gradient(65deg, #e60000 0%, #cc0000 100%);
  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: #fff;
  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: #cc0000;
  }
  .header__dropdown-menu.show {
    margin-top: 0;
  }
  .header--active .header__nav a {
    color: #232122;
  }
  .header--active .header__nav a:hover {
    color: #cc0000;
  }
  .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: #cc0000;
  }
  .header--active .header__dropdown .dropdown-toggle:hover svg,
  .header--active .header__dropdown .dropdown-toggle[aria-expanded="true"] svg {
    fill: #cc0000;
  }
}
/*==============================
	Hero
==============================*/
.hero {
  position: relative;
  width: 100%;
  padding: 140px 0 60px;
  background: url("../img/hatterek/eklekta-01.jpg") no-repeat center/cover;
}
.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: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.hero__title b {
  font-weight: 700;
  background: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__tagline {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding-left: 30px;
  font-weight: 400;
  margin-bottom: 35px;
  position: relative;
}
.hero__tagline:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: auto;
  border-radius: 4px;
  background: linear-gradient(0deg, #e60000 0%, #cc0000 100%);
  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: 35px;
}
.hero__when {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 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-right: 26px;
}
.hero__when p {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  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, #cc0000 0%, #e60000 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: linear-gradient(65deg, #cc0000 0%, #e60000 100%);
  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: linear-gradient(65deg, #e60000 0%, #cc0000 100%);
  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: #fff;
  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: linear-gradient(65deg, #cc0000 0%, #e60000 100%);
  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, #cc0000 0%, #e60000 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, #e60000 0%, #cc0000 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, #cc0000, #e60000);
  -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: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -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, #e60000 0%, #cc0000 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: linear-gradient(230deg, #e60000 0%, #cc0000 100%);
  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: linear-gradient(65deg, #cc0000 0%, #e60000 100%);
  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: linear-gradient(65deg, #e60000 0%, #cc0000 100%);
  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: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, #cc0000 0%, #e60000 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, #cc0000, #e60000);
  -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, #e60000 0%, #cc0000 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;
}
.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, #cc0000 0%, #e60000 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, #cc0000, #e60000);
  -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, #cc0000, #e60000);
  -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, #cc0000 0%, #e60000 100%);
}
.statistics__icon svg {
  width: 32px;
  height: auto;
  fill: #fff;
}
.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: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -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;
  width: 100%;
  z-index: 1;
}
.speaker__img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(66,59,170,0.85) 0%, rgba(37,104,176,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 svg {
  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 svg {
  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: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -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-start;
  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: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -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__speaker2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.program__speaker2-img {
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.program__speaker2-img img {
  width: 100%;
}
.program__speaker2-img2 {
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.program__speaker2-img2 img {
  width: 100%;
}
.program__speaker2-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__speaker2-about p {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 7px;
}
.program__speaker2-about span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  background: -webkit-linear-gradient(60deg, #2c6be6, #6fafe4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.program__speaker-img3 {
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 auto; /* Opcionális: A tartalom középre igazítása a konténeren belül */
}

.program__speaker-img3 img {
  width: 100%;
  /* Opcionális: Ha a képet középre szeretnéd igazítani a flex konténeren belül */
  align-self: center;
}
.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: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.program__speaker2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.program__speaker2-img {
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.program__speaker2-img img {
  width: 100%;
}
.program__speaker2-img2 {
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.program__speaker2-img2 img {
  width: 100%;
}
.program__speaker2-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__speaker2-about p {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 7px;
}
.program__speaker2-about span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  background: -webkit-linear-gradient(60deg, #cc0000, #e60000);
  -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__speaker2 {
    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, #cc0000 0%, #e60000 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__speaker2 {
    flex-direction: column;
    width: 280px;
    margin-bottom: 0;
  }
  .program__speaker2-img2 {
    width: 280px;
    margin-bottom: 15px;
  }
  .program__speaker-about {
    position: relative;
    justify-content: flex-start;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    padding: 0;
  }
  .program__speaker2-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, #cc0000 0%, #e60000 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, #e60000 0%, #cc0000 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, #cc0000, #e60000);
  -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, #cc0000, #e60000);
  -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, #e60000 0%, #cc0000 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, #cc0000, #e60000);
  -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, #cc0000, #e60000);
  -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, #cc0000 0%, #e60000 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, #cc0000 0%, #e60000 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, #e60000 0%, #cc0000 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, #cc0000, #e60000);
  -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, #e60000 0%, #cc0000 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, #cc0000, #e60000);
  -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, #e60000 0%, #cc0000 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: linear-gradient(65deg, #cc0000 0%, #e60000 100%);
  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: linear-gradient(65deg, #e60000 0%, #cc0000 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}
.accordion__card button span svg {
  width: 24px;
  height: auto;
  fill: #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, #cc0000 0%, #e60000 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, #e60000 0%, #cc0000 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}
.contact__icon svg {
  width: 24px;
  height: auto;
  fill: #fff;
  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, #cc0000 0%, #e60000 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, #e60000 0%, #cc0000 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 12px;
}
.social__list a svg {
  width: 20px;
  height: auto;
  fill: #fff;
  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: #cc0000;
}
.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: #cc0000;
}
.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, #cc0000 0%, #e60000 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, #e60000 0%, #cc0000 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: #fff;
  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: #cc0000;
  text-decoration: underline;
}
.modal__article p a:hover,
.modal__article p a:focus {
  color: #cc0000;
  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, #e60000 0%, #cc0000 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: #cc0000;
}
.modal__article ol li a:hover {
  color: #cc0000;
  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: linear-gradient(0deg, #e60000 0%, #cc0000 100%) !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, #cc0000 0%, #e60000 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;
  }
}






/*==============================
	Releases
==============================*/
.release {
  margin-top: 20px;
  border: 2px solid #e6eaf2;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: release;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.release__cover {
  display: block;
  position: release;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.release__cover img {
  width: 100%;
}
.release__list {
  position: relative;
  height: 330px;
  width: 100%;
  overflow: hidden;
  padding-right: 14px;
  margin-top: 20px;
}
.release__stat {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #626f83;
  font-size: 14px;
  transition: 0.5s ease;
  width: 100%;
  margin-top: 15px;
}
.release__stat span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
}
.release__stat span:last-child {
  margin-right: 0;
}
.release__stat svg {
  width: 20px;
  height: auto;
  fill: #0e2d49;
  margin-right: 5px;
}
.release__buy {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: #f65656;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 25px;
  margin-top: 15px;
}
.release__buy svg {
  fill: #0e2d49;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.release__buy:hover {
  background-color: #0e2d49;
  color: #fff;
}
@media (min-width: 768px) {
  .release {
    flex-direction: row;
    margin-bottom: 10px;
  }
  .release__list {
    margin-top: 0;
    width: calc(100% - 250px);
  }
  .release__content {
    width: 230px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .release__list {
    width: calc(100% - 310px);
    height: 388px;
  }
  .release__content {
    width: 290px;
  }
}


/*==============================
	Store-item
==============================*/
.store-item {
  margin-top: 20px;
  border: 2px solid #e6eaf2;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: release;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.store-item__cover {
  display: block;
  position: release;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.store-item__cover img {
  width: 100%;
}
.store-item__description {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.store-item__buy {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: #f65656;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 25px;
  margin-top: 15px;
}
.store-item__buy svg {
  fill: #0e2d49;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.store-item__buy:hover {
  background-color: #0e2d49;
  color: #fff;
}
.store-item__content {
  width: 100%;
  display: block;
}
.store-item__carousel {
  position: relative;
  width: 100%;
}
.store-item__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.store-item__carousel .owl-dot {
  margin-right: 10px;
}
.store-item__carousel .owl-dot:last-child {
  margin-right: 0;
}
.store-item__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: #626f83;
  transition: 0.5s ease;
}
.store-item__carousel .owl-dot.active span {
  width: 20px;
  background-color: #0e2d49;
}
@media (min-width: 768px) {
  .store-item {
    flex-direction: row;
  }
  .store-item__description {
    margin-top: 0;
    width: calc(100% - 250px);
  }
  .store-item__content {
    width: 230px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .store-item__description {
    width: calc(100% - 310px);
  }
  .store-item__content {
    width: 290px;
  }
}

/*==============================
	Store-item2
==============================*/
.store-item2 {
  margin-top: 20px;
  border: 2px solid #2e2c2d;
  background-color: #2e2c2d;
  padding: 20px;
  border-radius: 20px;
  position: release;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.store-item2__cover {
  display: block;
  position: release;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.store-item2__cover img {
  width: 100%;
}
.store-item2__description {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.store-item2__buy {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: #f65656;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 25px;
  margin-top: 15px;
}
.store-item2__buy svg {
  fill: #0e2d49;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.store-item2__buy:hover {
  background-color: #0e2d49;
  color: #000;
}
.store-item2__content {
  width: 100%;
  display: block;
}
.store-item2__carousel {
  position: relative;
  width: 100%;
}
.store-item2__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.store-item2__carousel .owl-dot {
  margin-right: 10px;
}
.store-item2__carousel .owl-dot:last-child {
  margin-right: 0;
}
.store-item2__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: #626f83;
  transition: 0.5s ease;
}
.store-item2__carousel .owl-dot.active span {
  width: 20px;
  background-color: #0e2d49;
}
@media (min-width: 768px) {
  .store-item2 {
    flex-direction: row;
  }
  .store-item2__description {
    margin-top: 0;
    width: calc(100% - 250px);
  }
  .store-item2__content {
    width: 230px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .store-item2__description {
    width: calc(100% - 310px);
  }
  .store-item2__content {
    width: 290px;
  }
}

/*==============================
	Article
==============================*/
.article {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.article--page {
  margin-top: 0;
}
.article__category {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 30px;
  min-width: 70px;
  width: auto;
  color: #fff;
  font-size: 13px;
  background-color: #626f83;
  border-radius: 15px;
  padding: 0 15px;
}
.article__category:hover {
  color: #fff;
  background-color: #0e2d49;
}
.article__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: #626f83;
  height: 30px;
}
.article__date svg {
  fill: #0e2d49;
  width: 16px;
  height: auto;
  margin-right: 5px;
}
.article__place {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #626f83;
  min-height: 30px;
  width: 100%;
  margin-bottom: 10px;
}
.article__place svg {
  fill: #0e2d49;
  width: 18px;
  height: auto;
  margin-right: 5px;
}
.article__place:hover {
  color: #f65656;
}
.article__content {
  position: relative;
}
.article__content img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
}
.article__content iframe {
  display: block;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: none;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0e2d49;
  margin-bottom: 15px;
  line-height: 140%;
}
.article__content h1:last-child,
.article__content h2:last-child,
.article__content h3:last-child,
.article__content h4:last-child,
.article__content h5:last-child,
.article__content h6:last-child {
  margin-bottom: 0;
}
.article__content h1 {
  font-size: 30px;
}
.article__content h2 {
  font-size: 28px;
}
.article__content h3 {
  font-size: 24px;
}
.article__content h4 {
  font-size: 22px;
}
.article__content h5 {
  font-size: 18px;
}
.article__content h6 {
  font-size: 16px;
}
.article__content p {
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #626f83;
  margin-bottom: 20px;
}
.article__content p b {
  font-weight: 600;
}
.article__content p a {
  color: #f65656;
  text-decoration: underline;
}
.article__content p a:hover,
.article__content p a:focus {
  color: #f65656;
  text-decoration: none;
}
.article__content p:last-child {
  margin-bottom: 0;
}
.article__content blockquote {
  display: block;
  position: relative;
  font-family: 'Roboto', sans-serif;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 28px;
  color: #0e2d49;
  font-weight: 400;
  margin-bottom: 20px;
}
.article__content blockquote:before {
  content: '';
  position: absolute;
  display: block;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background-color: #f65656;
  border-radius: 3px;
}
.article__content blockquote:last-child {
  margin-bottom: 0;
}
.article__content ul {
  margin-bottom: 20px;
  display: block;
}
.article__content ul li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #626f83;
  padding-left: 20px;
  position: relative;
}
.article__content ul li:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #f65656;
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.article__content ul:last-child {
  margin-bottom: 0;
}
.article__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.article__price {
  font-size: 30px;
  line-height: 100%;
  color: #0e2d49;
  display: block;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}
.article__amount {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #e6eaf2;
  height: 40px;
  border-radius: 20px;
  padding: 0 10px;
  margin-bottom: 20px;
}
.article__amount input {
  width: 30px;
  height: 40px;
  border: none;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  color: #0e2d49;
  font-family: 'Roboto', sans-serif;
  pointer-events: none;
}
.article__amount button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 40px;
}
.article__amount button svg {
  width: 18px;
  height: auto;
  fill: #626f83;
  transition: fill 0.5s ease;
}
.article__amount button:hover svg {
  fill: #f65656;
}
.article__buy {
  width: 180px;
  height: 50px;
  border-radius: 25px;
  background-color: #f65656;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 25px;
  margin-bottom: 20px;
}
.article__buy svg {
  fill: #0e2d49;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.article__buy:hover {
  background-color: #0e2d49;
  color: #fff;
}
.article__artist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.article__artist img {
  height: auto;
  width: 200px !important;
  margin-right: 20px;
  border-radius: 20px;
}
.article__artist div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.article__artist div h1 {
  margin-bottom: 0;
}
.article__artist div span {
  font-size: 14px;
  color: #626f83;
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .article__content iframe {
    height: 280px;
  }
}
@media (min-width: 768px) {
  .article {
    margin-top: 30px;
  }
  .article--page {
    margin-top: 0;
  }
  .article__content h1 {
    font-size: 36px;
  }
  .article__content h2 {
    font-size: 32px;
  }
  .article__content h3 {
    font-size: 28px;
  }
  .article__content h4 {
    font-size: 24px;
  }
  .article__content h5 {
    font-size: 20px;
  }
  .article__content h6 {
    font-size: 18px;
  }
  .article__content iframe {
    height: 400px;
  }
  .article__meta {
    margin-bottom: 25px;
  }
  .article__place {
    margin-bottom: 0;
    width: auto;
  }
  .article__artist {
    flex-direction: row;
  }
  .article__artist img {
    margin-bottom: 0 !important;
  }
  .article__artist div {
    width: calc(100% - 220px);
  }
  .article__artist div span {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .article--page {
    margin-top: 30px;
  }
  .article__content iframe {
    height: 460px;
  }
}
/*==============================
	Share
==============================*/
.share {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.share__link {
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 15px;
  height: 30px;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  background-color: #f65656;
}
.share__link svg {
  fill: #fff;
  margin-right: 10px;
  margin-top: 1px;
}
.share__link:last-child {
  margin-right: 0;
}
.share__link--fb {
  background-color: #3b5998;
}
.share__link--tw {
  background-color: #55acee;
}
.share__link--vk {
  background-color: #4c6c91;
}
.share__link--other {
  background-color: #414a4c;
}
.share__link:hover {
  background-color: #f65656;
  color: #fff;
}


/*==============================
	Main
==============================*/
.main {
  position: relative;
  margin-top: 70px;
  padding: 20px 0 60px;
}
.main__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 60px;
}
.main__title h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0e2d49;
  font-size: 30px;
  line-height: 140%;
  margin-bottom: 0;
  position: relative;
}
.main__title h1 b {
  font-weight: 500;
}
.main__title h1 a {
  color: #0e2d49;
}
.main__title h1 a:hover {
  color: #f65656;
}
.main__title h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0e2d49;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 0;
  position: relative;
}
.main__title h2 svg {
  width: 26px;
  height: auto;
  fill: #f65656;
  margin-right: 10px;
}
.main__title h2 b {
  font-weight: 500;
}
.main__title h2 a {
  color: #0e2d49;
}
.main__title h2 a:hover {
  color: #f65656;
}
.main__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #0e2d49;
  margin-bottom: 0;
  line-height: 100%;
  position: relative;
}
.main__title p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #626f83;
  margin-top: 20px;
  margin-bottom: 0;
}
.main__title p b {
  font-weight: 600;
}
.main__title p a {
  color: #f65656;
  text-decoration: underline;
}
.main__title p a:hover {
  text-decoration: none;
}
.main__title ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 0;
}
.main__title ol ol {
  padding-left: 15px;
  margin-top: 10px;
}
.main__title ol ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.main__title ol ol ol li {
  margin-top: 5px;
}
.main__title ol h4 {
  font-size: 16px;
  color: #0e2d49;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
.main__title ol li {
  font-size: 16px;
  line-height: 24px;
  color: #626f83;
  position: relative;
}
.main__title ol li b {
  font-weight: 600;
  color: #626f83;
}
.main__title ol li a {
  color: #f65656;
}
.main__title ol li a:hover {
  color: #f65656;
  text-decoration: underline;
}
.main__title ol li:last-child {
  margin-bottom: 0;
}
.main__title ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}
.main__title--page {
  margin-bottom: 0;
  margin-top: 50px;
}
.main__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #626f83;
  font-weight: 600;
}
.main__link svg {
  width: 22px;
  height: auto;
  fill: #626f83;
  margin-left: 5px;
  transition: fill 0.5s ease;
}
.main__link:hover {
  color: #0e2d49;
}
.main__link:hover svg {
  fill: #f65656;
}
.main__carousel-wrap {
  position: relative;
}
.main__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.main__carousel .owl-dot {
  margin-right: 10px;
}
.main__carousel .owl-dot:last-child {
  margin-right: 0;
}
.main__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: #626f83;
  transition: 0.5s ease;
}
.main__carousel .owl-dot.active span {
  width: 20px;
  background-color: #0e2d49;
}
.main__nav {
  display: none;
}
.main__list {
  margin-top: 20px;
}
.main__list--dashbox {
  margin-top: 0;
}
.main__list--dashbox .single-item__title {
  max-width: 80px;
}
.main__list--dashbox .single-item__time {
  font-size: 12px;
}
.main__filter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: #fff;
  position: relative;
}
.main__filter:before {
  content: '';
  position: absolute;
  display: block;
  left: -15px;
  right: -15px;
  width: auto;
  top: 0;
  border-top: 2px solid #e6eaf2;
  border-bottom: 2px solid #e6eaf2;
  bottom: 0;
  background-color: #fff;
}
.main__filter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.main__filter-search {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.main__filter-search input {
  width: 100%;
  height: 40px;
  background-color: #e6eaf2;
  color: #0e2d49;
  font-size: 16px;
  border-radius: 20px;
  border: none;
  padding: 0 60px 0 20px;
  font-family: 'Roboto', sans-serif;
}
.main__filter-search input:focus {
  border-color: #0e2d49;
}
.main__filter-search button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main__filter-search button svg {
  width: 20px;
  height: auto;
  fill: #626f83;
  transition: 0.5s ease;
}
.main__filter-search button:hover svg {
  fill: #0e2d49;
}
.main__load {
  width: 140px;
  height: 50px;
  border-radius: 25px;
  background-color: #0e2d49;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin: 30px auto 0;
}
.main__load:hover {
  color: #fff;
  background-color: #f65656;
}
.main__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}
.main__tabs li {
  margin-top: 15px;
  margin-right: 15px;
}
.main__tabs li:last-child {
  margin-right: 0;
}
.main__tabs a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 70px;
  width: auto;
  color: #fff;
  font-size: 14px;
  background-color: #626f83;
  border-radius: 20px;
  padding: 0 20px;
}
.main__tabs a span {
  font-size: 12px;
  font-weight: 600;
  margin-right: 3px;
  margin-top: 3px;
}
.main__tabs a:hover {
  color: #fff;
  background-color: #0e2d49;
}
.main__tabs a.active {
  background-color: #f65656;
  color: #fff;
}
.main__table {
  width: 100%;
  min-width: 520px;
  border-spacing: 0;
}
.main__table thead {
  border-bottom: 2px solid #e6eaf2;
}
.main__table thead th {
  font-size: 14px;
  color: #626f83;
  font-weight: 400;
  padding: 0 10px 20px 0;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}
.main__table thead th a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #626f83;
}
.main__table thead th a svg {
  width: 20px;
  height: auto;
  fill: #626f83;
  transition: fill 0.5s ease;
}
.main__table thead th a:hover {
  color: #0e2d49;
}
.main__table thead th a:hover svg {
  fill: #f65656;
}
.main__table thead th a.active {
  color: #0e2d49;
}
.main__table thead th a.active svg {
  width: 16px;
  fill: #f65656;
}
.main__table tbody tr {
  border-bottom: none;
  background-color: transparent;
  border-top: 2px solid #e6eaf2;
}
.main__table tbody td {
  padding: 0;
  background-color: transparent;
  border: 0px solid transparent;
}
.main__table tbody td:first-child .main__table-text {
  border-radius: 20px 0 0 20px;
}
.main__table tbody td:last-child .main__table-text,
.main__table tbody td:last-child .main__table-btns {
  border-radius: 0 20px 20px 0;
}
.main__table tbody td .main__table-text {
  background-color: transparent;
  padding: 15px 20px 15px 0;
}
.main__table-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #626f83;
  font-weight: 400;
  line-height: 30px;
  padding: 20px;
  white-space: nowrap;
}
.main__table-text svg {
  width: 18px;
  height: auto;
  transition: fill 0.5s ease;
  fill: #626f83;
  margin-right: 5px;
}
.main__table-text a {
  font-size: 16px;
  color: #0e2d49;
}
.main__table-text a:hover {
  color: #f65656;
}
.main__table-text--number a {
  font-size: 14px;
  line-height: 22px;
  border-bottom: 2px dashed #f65656;
}
.main__table-text--price {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #626f83;
  font-size: 16px;
}
.main__table-text--red {
  color: #f65656;
}
.main__table-text--red svg {
  fill: #f65656;
}
.main__table-text--green {
  color: #29b474;
}
.main__table-text--green svg {
  fill: #29b474;
}
.main__table-text--grey {
  color: #626f83;
}
.main__table-img {
  width: 100px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px 20px 15px 0;
}
.main__table-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (min-width: 400px) {
  .main__list--dashbox .single-item__title {
    max-width: 110px;
  }
}
@media (min-width: 576px) {
  .main {
    padding: 20px 15px 60px;
  }
  .main__list--dashbox .single-item__title {
    max-width: 150px;
  }
  .main__list--dashbox .single-item__time {
    font-size: 14px;
  }
  .main__filter:before {
    left: -30px;
    right: -30px;
  }
}
@media (min-width: 768px) {
  .main {
    padding: 30px 15px 70px;
  }
  .main__title {
    margin-top: 70px;
    margin-bottom: 0;
  }
  .main__title h1 {
    font-size: 36px;
  }
  .main__title h2 {
    font-size: 30px;
  }
  .main__title h2 svg {
    width: 30px;
  }
  .main__title p:last-child {
    margin-bottom: 10px;
  }
  .main__title--sidebar {
    margin-bottom: 10px;
  }
  .main__carousel .owl-dots {
    margin-top: 30px;
  }
  .main__list {
    margin-top: 30px;
  }
  .main__list--dashbox {
    margin-top: 0;
  }
  .main__filter {
    padding: 0;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    height: 70px;
  }
  .main__filter-wrap {
    padding: 0;
  }
  .main__load {
    margin: 40px auto 0;
  }
  .main__tabs li {
    margin-top: 20px;
    margin-right: 20px;
  }
  .main__tabs li:last-child {
    margin-right: 0;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 180px;
    margin-right: 30px;
  }
  .main__filter-search input {
    width: 180px;
  }
}
@media (min-width: 992px) {
  .main__filter-search {
    margin-bottom: 0;
    width: 250px;
  }
  .main__filter-search input {
    width: 250px;
  }
  .main__title--sidebar {
    margin-top: 30px;
  }
  .main__list--dashbox .single-item__title {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .main {
    padding: 0 15px 70px 295px;
    margin-top: 0;
  }
  .main__carousel .owl-dots {
    justify-content: flex-end;
    padding-right: 68px;
  }
  .main__nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    right: 0;
    bottom: -14px;
    z-index: 2;
  }
  .main__nav svg {
    width: 30px;
    height: auto;
    fill: #626f83;
    transition: fill 0.5s ease;
  }
  .main__nav:hover svg {
    fill: #0e2d49;
  }
  .main__nav--prev {
    right: 25px;
  }
  .main__nav--next {
    right: -5px;
  }
  .main__nav--hero {
    bottom: 15px;
  }
  .main__nav--hero svg {
    fill: #fff;
  }
  .main__nav--hero.main__nav--prev {
    right: 95px;
  }
  .main__nav--hero.main__nav--next {
    right: 65px;
  }
  .main__nav--hero:hover svg {
    fill: #f65656;
  }
  .main__filter {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #fff;
    border: none;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 220px;
  }
  .main__filter-search input {
    width: 220px;
  }
}

.owl-carousel .owl-item {
  -webkit-transform: none;
}

/*==============================
	Artist
==============================*/
.artist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
  position: relative;
}
.artist__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.artist__cover:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #000 0%, rgba(0,0,0,0) 100%);
  opacity: 0.4;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.artist__cover img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.artist__title {
  z-index: 3;
  color: #0e2d49;
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  transition: color 0.5s ease;
  margin-top: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.artist:hover .artist__cover:before {
  opacity: 0.8;
}
.artist:hover .artist__title {
  color: #f65656;
}
@media (min-width: 768px) {
  .artist {
    margin-top: 30px;
  }
}

/*==============================
	Slider radio
==============================*/
.slider-radio {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #e6eaf2;
  padding: 5px 0;
  border-radius: 20px;
  margin-top: 10px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.slider-radio label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 15px;
  font-size: 16px;
  color: #0e2d49;
  margin-bottom: 0;
  cursor: pointer;
  border-radius: 18px;
  margin: 0 5px;
  position: relative;
  z-index: 100;
  transition: color 0.5s;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.slider-radio label:hover {
  color: #f65656;
}
.slider-radio .sliding-piece {
  border-radius: 18px;
  background-color: #f65656;
  z-index: 99;
}
.slider-radio input[type=radio]:checked + label {
  color: #fff;
  background-color: #f65656;
}
@media (min-width: 768px) {
  .slider-radio {
    margin-left: auto;
    margin-top: 0;
    width: auto;
  }
}
/*==============================
	Select2
==============================*/
.select2-container {
  width: auto !important;
  margin-right: 30px;
}
.select2-container .select2-selection--single {
  height: 40px;
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  color: #0e2d49;
  padding: 0 18px 0 0;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  transition: 0.5s ease;
}
.select2-container .select2-selection--single[aria-expanded="true"] {
  background-color: transparent;
}
.select2-container .select2-selection--single:hover .select2-selection__rendered {
  color: #f65656;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  width: 18px;
  top: 10px;
  right: 0;
  background: url("../img/arrow.svg") no-repeat center right;
  background-size: 18px auto;
  margin-top: 1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #0e2d49;
  color: #0e2d49;
  white-space: nowrap;
}
.select2-container--default .select2-results__option--selected {
  color: #0e2d49;
  background-color: #0e2d49;
  cursor: default;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: transparent;
  color: #f65656;
  cursor: default;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: #f65656;
}
.select2-results__option {
  padding: 0 0;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0e2d49;
  height: 40px;
  line-height: 40px;
  transition: 0.5s ease;
}
.select2-dropdown {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: none;
  border-radius: 20px !important;
  min-width: 180px;
  padding: 10px 0 10px 15px;
  background-color: #e6eaf2;
}
.select2-container--open .select2-dropdown--below {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.select2-container--open .select2-dropdown--above {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
  background: #e6eaf2 !important;
  top: 0px !important;
  bottom: 0px !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right: 0px !important;
  overflow: hidden;
}
.scrollbar-thumb-y {
  background: #626f83 !important;
  width: 4px !important;
  border-radius: 4px !important;
}
.scrollbar-track-x {
  background: #e6eaf2 !important;
  left: 0px !important;
  right: 0px !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0px !important;
  overflow: hidden;
}
.scrollbar-thumb-x {
  background: #0e2d49 !important;
  height: 4px !important;
  border-radius: 4px !important;
}


/* Képek elrendezése */
.image-container {
    text-align: center;
    margin-top: 20px;
}

.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* Médiakérdezések */
@media screen and (max-width: 200px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }
}
.icon-text {
  margin-left: 5px; /* Adjon 5 pixel teret az ikon és a szöveg között */
}