/* Global Variables */

:root {
    --primary-design-color: #FF7100;
    --secondary-design-color: #00C4F6;
    --tertiary-design-color: #E819FF;
    --primary-text-color: #fff;
    --secondary-text-color: #200A06;
    --primary-bg-color: #fff;
}

/* Basics */

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.6px;
}

ul, li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    user-select: none;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-text-color);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: var(--primary-design-color);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

::-moz-selection {
    background: var(--secondary-text-color);
    color: var(--primary-text-color);
}

::selection {
    background: var(--secondary-text-color);
    color: var(--primary-text-color);
}

.content-box-lg {
    padding: 80px 0;
}

.content-box-md {
    padding: 50px 0;
}

.section-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    color: var(--secondary-text-color);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    z-index: 1;
}

.section-header::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/patterns/section-header-bg.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.vertical-center {
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
}

/* Preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg-color);
}

/* Animations & Transitions */

a, li, .speaker-box, .overlay, .overlay i, .contributor-box, .contributor-box img, .menu-toggle .bar div {
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
}

@keyframes pulse-primary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
    }
    80% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 10px rgba(255, 134, 134, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
    }
}

@keyframes pulse-secondary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
    }
    80% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 20px rgba(255, 134, 134, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
    }
}

@keyframes pulse-orange-primary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.75);
        box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.75);
    }
    80% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 10px rgba(255, 134, 134, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
    }
}

@keyframes pulse-orange-secondary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.75);
        box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.75);
    }
    80% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 15px rgba(255, 134, 134, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
    }
}

@keyframes circle {
    0% {
        transform: rotate(0deg) translate(-170px) rotate(0deg);
        -webkit-transform: rotate(0deg) translate(-170px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-170px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-170px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-170px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(-170px) rotate(-360deg);
        -webkit-transform: rotate(360deg) translate(-170px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-170px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-170px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-170px) rotate(-360deg);
    }
}

@keyframes pendulum {
    0%, 100% {
        transform: rotate(15deg);
        -webkit-transform: rotate(15deg);
        -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        -o-transform: rotate(15deg);
    }
    50% {
        transform: rotate(-15deg);
        -webkit-transform: rotate(-15deg);
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -o-transform: rotate(-15deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes beat {
    to {
        transform: translate(-50%, -50%) scale(1.3);
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        -moz-transform: translate(-50%, -50%) scale(1.3);
        -ms-transform: translate(-50%, -50%) scale(1.3);
        -o-transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Main */

#main {
    background-color: var(--primary-bg-color);
}

/* Header */

#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
}

#header.fixed {
    position: fixed;
    background: var(--primary-bg-color);
    box-shadow: 0 3px 15px 3px rgba(0, 0, 0, 0.1);
}

#header.fixed .primary-header {
    display: none;
}

#header.fixed .logo-text {
    display: none;
}

#header.fixed .menu-list li a {
    color: var(--secondary-text-color);
}

#header.fixed .menu-list li a:hover {
    background: var(--primary-design-color);
    color: var(--primary-text-color);
    animation: pulse-orange-primary 1.2s infinite;
    -webkit-animation: pulse-orange-primary 1.2s infinite;
}

#header.fixed .menu-list li a.active {
    background: var(--primary-design-color);
    color: var(--primary-text-color);
    box-shadow: none;
}

#header.fixed .btn-ticket:hover {
    background: var(--primary-design-color);
    color: var(--primary-text-color);
    animation: pulse-orange-primary 1.2s infinite;
    -webkit-animation: pulse-orange-primary 1.2s infinite;
}

#header.fixed .menu-toggle .bar div {
    background: var(--secondary-text-color);
}

.primary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-list li:not(:last-child) {
    margin-right: 20px;
}

.contact-list a {
    color: var(--primary-text-color);
    font-size: 16px;
}

.contact-list a i {
    margin-right: 8px;
}

.contact-list a:hover {
    color: var(--secondary-text-color);
}

.social-list {
    min-width: 150px;
    justify-content: flex-end;
}

.social-list li {
    background: var(--primary-bg-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.social-list li:not(:last-child) {
    margin-right: 8px;
}

.social-list li a {
    color: var(--secondary-text-color);
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-list li:hover a {
    background: var(--secondary-text-color);
    color: var(--primary-text-color);
}

.secondary-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo {
    display: block;
}

.logo img {
    width: 155px;
}

.logo-text {
    position: absolute;
    width: 155px;
    top: calc(100% - 3px);
    left: 0;
    color: var(--primary-text-color);
    font-size: 22px;
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: right;
}

.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-list li {
    margin-right: 6px;
}

.menu-list li a {
    color: var(--primary-text-color);
    padding: 6px 12px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

.menu-list li a.active {
    color: var(--secondary-text-color);
    background: var(--primary-bg-color);
}

.menu-list li a i {
    margin-right: 8px;
}

.menu-list li a:hover {
    color: var(--secondary-text-color);
    background: var(--primary-bg-color);
    animation: pulse-primary 1.2s infinite;
    -webkit-animation: pulse-primary 1.2s infinite;
}

.btn-ticket {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    background: var(--secondary-text-color);
    color: var(--primary-text-color);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    margin-left: 10px;
}

.btn-ticket:hover {
    color: var(--secondary-text-color);
    background: var(--primary-bg-color);
    animation: pulse-primary 1.2s infinite;
    -webkit-animation: pulse-primary 1.2s infinite;
}

.fixed-footer {
    position: fixed;
    bottom: 12px;
    left: 50%;
    width: calc(100% - 24px);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.fixed-footer a {
    width: 50%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-footer a i {
    margin-right: 8px;
}

.fixed-footer a:last-child {
    background: var(--secondary-text-color);
    color: var(--primary-text-color);
}

.fixed-footer a:first-child {
    background: var(--primary-bg-color);
    color: var(--secondary-text-color);
}

/* Home */

#home {
    background-image: url('../img/patterns/circle-white.svg'), url('../img/patterns/circle-dark.svg');
    background-repeat: no-repeat;
    background-position: top right, bottom left;
    background-size: 400px;
    background-color: var(--primary-design-color);
}

.home-content {
    padding-top: 280px;
    color: var(--secondary-text-color);
    text-transform: uppercase;
}

.home-content .row {
    width: 100%;
}

.home-content .content-left {
    position: relative;
    width: fit-content;
}

.home-content .content-left img {
    position: absolute;
    top: -216px;
    right: -223px;
    width: 320px;
    animation: pendulum 3s ease-in-out infinite;
    -webkit-animation: pendulum 3s ease-in-out infinite;
}

.home-content .content-left h1 {
    position: relative;
    font-size: 92px;
    font-weight: 500;
    letter-spacing: normal;
    margin: 0;
    z-index: 2;
    line-height: 1.2;
}

.home-content .content-left p {
    position: relative;
    width: fit-content;
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 300;
    z-index: 2;
}

.home-content .content-left p.date {
    font-size: 44px;
    padding-top: 10px;
    padding-right: 30px;
    font-weight: 400;
    margin-top: 10px;
}

.home-content .content-left p.date:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-text-color);
}

.home-content .content-left p.time {
    font-size: 34px;
}

.home-content .content-left p.location img {
    background: var(--primary-bg-color);
    padding: 10px;
}

.home-content .content-right {
    width: 100%;
    height: 100%;
    display: flex;
}

.home-content .content-right .location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 180px;
    background: var(--primary-bg-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.home-content .content-right .location .location-left {
    width: 30%;
    height: 100%;
    padding: 30px;
}

.home-content .content-right .location .location-right {
    width: 70%;
    height: 100%;
    padding: 30px;
}

.home-content .content-right .location img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-content .content-right .location span {
    width: 1px;
    height: 80%;
    background: var(--secondary-text-color);
}

/* Partners */

.partners {
    padding-top: 60px;
}

.partner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-box .box-text {
    color: var(--primary-text-color);
    font-weight: 500;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 0;
}

.partner-box .box-img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg-color);
    padding: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: pulse-secondary 1.5s infinite;
    -webkit-animation: pulse-secondary 1.5s infinite;
}

.partner-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Countdown */

#countdown {
    background-image: url('../img/patterns/clock-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: var(--primary-design-color);
    background-attachment: fixed;
}

#countdown .count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg-color);
    padding: 30px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    animation: pulse-secondary 1.6s infinite;
    -webkit-animation: pulse-secondary 1.6s infinite;
}

#countdown .col-lg-3:nth-child(2) .count-box {
    animation-delay: 400ms;
}

#countdown .col-lg-3:nth-child(3) .count-box {
    animation-delay: 800ms;
}

#countdown .col-lg-3:nth-child(4) .count-box {
    animation-delay: 1200ms;
}

#countdown .count-box span.value {
    font-size: 62px;
    font-weight: 700;
    color: var(--secondary-text-color);
    line-height: 1.2;
}

#countdown .count-box span.key {
    font-size: 24px;
    color: var(--secondary-text-color);
    font-weight: 500;
    line-height: 1.2;
}

/* Panels */

#panels {
    background-color: var(--primary-bg-color);
}

.panels-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/patterns/panels-bg.svg');
    background-size: contain;
    padding: 60px 0 40px;
}

.panel-box {
    position: relative;
    width: 300px;
    height: 300px;
    color: var(--primary-text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.panel-box:first-child {
    background: var(--tertiary-design-color);
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
    z-index: 1;
    box-shadow: 0 40px 40px -5px rgba(232, 25, 255, 0.5), 0 0 15px 3px rgba(255, 255, 255, 0.75);
}

.panel-box:nth-child(2) {
    background: var(--secondary-design-color);
    z-index: 2;
    box-shadow: 0 40px 40px -5px rgba(0, 197, 246, 0.5), 0 0 15px 3px rgba(255, 255, 255, 0.75);
}

.panel-box:last-child {
    background: var(--primary-design-color);
    transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    z-index: 3;
    box-shadow: 0 40px 40px -5px rgba(255, 113, 0, 0.5), 0 0 15px 3px rgba(255, 255, 255, 0.75);
}

.panel-box::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    top: -20px;
    left: -20px;
    border: 1px dashed;
    background: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: rotating 30s linear infinite;
    -webkit-animation: rotating 30s linear infinite;
}

.panel-box:first-child:after {
    border-color: var(--tertiary-design-color);
    z-index: 1;
}

.panel-box:nth-child(2):after {
    border-color: var(--secondary-design-color);
    z-index: 2;
    animation-direction: reverse;
}

.panel-box:last-child:after {
    border-color: var(--primary-design-color);
    z-index: 3;
}

.panel-box::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: circle 5s linear infinite;
    -webkit-animation: circle 5s linear infinite;
}

.panel-box:first-child:before {
    background: var(--tertiary-design-color);
    z-index: 1;
    box-shadow: 0 0 30px 5px rgba(232, 25, 255, 0.5);
}

.panel-box:nth-child(2):before {
    background: var(--secondary-design-color);
    z-index: 2;
    box-shadow: 0 0 30px 5px rgba(0, 197, 246, 0.5);
    animation-direction: reverse;
}

.panel-box:last-child:before {
    background: var(--primary-design-color);
    z-index: 3;
    box-shadow: 0 0 30px 5px rgba(255, 113, 0, 0.5);
}

.panel-box h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.panel-box p {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
}

.panels-content {
    margin-top: 20px;
    padding: 40px 40px 15px;
    border: 10px solid;
    border-image: linear-gradient(to right, var(--primary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--secondary-design-color) 80%, var(--secondary-design-color) 100%);
    border-image-slice: 1;
}

.panels-content .table {
    vertical-align: middle;
    border: 1px solid var(--secondary-design-color);
    color: var(--secondary-text-color);
    letter-spacing: normal;
    margin-bottom: 0;
}

.panels-content .table thead tr th {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
}

.panels-content .table tbody tr td {
    font-size: 13px;
    font-weight: 400;
    text-align: left;
}

.panels-content .table tbody tr td:first-child {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.panels-content .table tbody tr td:last-child {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.panels-content .table thead tr, .panels-content .table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--primary-design-color);
}

.panels-content .table td:not(:last-child), .panels-content .table th:not(:last-child) {
    border-right: 1px solid var(--primary-design-color);
}

.panels-content p {
    margin-bottom: 0;
}

.panels-content .footer-note {
    font-size: 14px;
    color: #cdcdcd;
    font-weight: 300;
    margin-top: 4px;
}

/* Mobile panels */

.mobile-panel-box {
    position: relative;
    padding: 15px;
    border: 4px solid;
    border-image: linear-gradient(to right, var(--primary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--secondary-design-color) 80%, var(--secondary-design-color) 100%);
    border-image-slice: 1;
    z-index: 1;
}

.mobile-panel-box:not(:last-child) {
    margin-bottom: 20px;
}

.mobile-panel-box .panel-count {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    color: var(--secondary-text-color);
    opacity: 0.1;
    font-size: 72px;
    font-weight: 800;
    z-index: -1;
}

.mobile-panel-box .box-row {
    border: 1px solid var(--secondary-design-color);
    margin-bottom: 15px;
    text-align: left;
}

.mobile-panel-box .box-row.name {
    text-align: center;
}

.mobile-panel-box .box-row.format {
    text-align: center;
    margin-bottom: 0;
}

.mobile-panel-box .box-row .key {
    text-align: center;
    display: block;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--primary-design-color);
}

.mobile-panel-box .box-row .value {
    margin-bottom: 0;
    padding: 10px;
    font-size: 13px;
}

/* Speakers */

#speakers {
    background-color: var(--primary-bg-color);
}

.speakers-wrapper {
    padding-top: 50px;
}

.speaker-box {
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    background-image: url('../img/patterns/panels-bg.svg');
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.speaker-box .overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    color: var(--primary-text-color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: linear-gradient(45deg, rgba(255, 115, 0, 0.7) 50%, rgba(232, 25, 255, 0.7) 100%);
    opacity: 0;
    visibility: hidden;
}

.speaker-box .overlay i {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.speaker-box:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.speaker-box:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.speaker-box:hover .overlay i {
    top: 50%;
    opacity: 1;
    visibility: visible;
    transition-timing-function: ease;
    transition-duration: 400ms;
    animation: beat 0.5s infinite alternate;
    -webkit-animation: beat 0.5s infinite alternate;
}

.speaker-box .box-img {
    background-image: url('../img/patterns/speaker-hexagon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 250px;
    padding: 15px;
    overflow: hidden;
}

.speaker-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.speaker-box .box-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.speaker-box .box-text .name {
    color: var(--secondary-text-color);
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
}

.speaker-box .box-text .title {
    height: 50px;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 26px;
    background: var(--primary-design-color);
    color: var(--primary-text-color);
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1.3;
    border-radius: 30px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    margin-bottom: 10px;
}

.speaker-box .box-text .desc {
    min-height: 44px;
    font-size: 15px;
    margin-bottom: 0;
    color: #6c757d;
    font-weight: 400;
}

.speaker-box .box-text .desc p {
    margin-bottom: 0;
}

/* Sponsor */

#contributors {
    background: var(--primary-bg-color);
}

.contributors-wrapper {
    padding: 50px 0;
    background: url('../img/patterns/panels-bg.svg');
    background-repeat: repeat;
}

.contributor-box {
    position: relative;
    display: block;
    height: 180px;
    background: var(--primary-bg-color);
    margin: auto;
    padding: 10px;
    border: 2px solid;
    border-image: linear-gradient(to right, var(--primary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--secondary-design-color) 80%, var(--secondary-design-color) 100%);
    border-image-slice: 1;
}

.col:nth-child(2n) .contributor-box {
    border-image: linear-gradient(to right, var(--secondary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--primary-design-color) 80%, var(--primary-design-color) 100%);
    border-image-slice: 1;
}

.contributor-box img {
    width: 100%;
    height: 100%;
    background: var(--primary-bg-color);
    object-fit: contain;
    border: 1px solid;
    padding: 20px;
    border-image: linear-gradient(to right, var(--secondary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--primary-design-color) 80%, var(--primary-design-color) 100%);
    border-image-slice: 1;
}

.col:nth-child(2n) .contributor-box {
    border-image: linear-gradient(to right, var(--primary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--secondary-design-color) 80%, var(--secondary-design-color) 100%);
    border-image-slice: 1;
}

/* .contributor-box, .col:nth-child(2n) .contributor-box img, .contributor-box:hover img, .col:nth-child(2n) .contributor-box:hover {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
}

.contributor-box img, .col:nth-child(2n) .contributor-box, .contributor-box:hover, .col:nth-child(2n) .contributor-box:hover img {
    transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
} */

#footer {
    background-image: url('../img/patterns/circle-white.svg'), url('../img/patterns/circle-dark.svg');
    background-repeat: no-repeat;
    background-position: top right, bottom left;
    background-size: 150px;
    background-color: var(--primary-design-color);
}

.primary-footer {
    padding: 50px 0 10px;
}

.primary-footer .menu-list {
    height: 100%;
    align-items: center;
    justify-content: flex-start;
}

.primary-footer .menu-list li a {
    font-size: 15px;
}

.secondary-footer {
    font-size: 14px;
    color: var(--primary-text-color);
    padding: 20px 12px;
    border-top: 1px solid var(--primary-text-color);
}

.secondary-footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.secondary-footer .copyright p {
    margin-bottom: 0;
    font-style: italic;
    font-weight: 300;
}

.secondary-footer .copyright a {
    font-weight: 600;
    color: var(--secondary-text-color);
}

#footer .contact-list {
    height: 100%;
    align-items: center;
}

#footer .social-list {
    justify-content: flex-end;
    padding-right: 12px;
}

/* Modal */

.modal {
    background: linear-gradient(45deg, rgba(255, 115, 0, 0.5) 50%, rgba(232, 25, 255, 0.5) 100%);
    color: #222;
}

.modal-content {
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.modal-header {
    align-items: flex-start;
    background-image: url('../img/patterns/panels-bg.svg');
    background-color: var(--primary-bg-color);
    background-size: contain;
}

.modal-body p {
    margin-bottom: 0;
    font-size: 16px;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.modal-header .speaker-info {
    display: flex;
}

.modal-header .speaker-info .info-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    flex-shrink: 0;
}

.modal-header .speaker-info .info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header .speaker-info .info-text {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
}

.modal-header .speaker-info .info-text .name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
}

.modal-header .speaker-info .info-text .pos {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 16px;
}

.modal-header .speaker-info .info-text .title {
    width: fit-content;
    background: var(--primary-design-color);
    color: var(--primary-text-color);
    font-size: 14px;
    padding: 2px 10px;
    margin-top: auto;
    margin-bottom: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

#covidModal .modal-header {
    align-items: center;
    border: none;
}

#covidModal .modal-header p {
    font-size: 16px;
    margin-bottom: 0;
}

#covidModal .modal-body {
    padding: 0;
}

#covidModal .modal-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==============================
            Mobile menu
============================== */

.menu-toggle {
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    display: flex;
    width: 35px;
    margin-left: 20px;
}

.menu-toggle .bar {
    display: flex;
    flex-direction: column;
}

.menu-toggle .one, .menu-toggle .three, .menu-toggle .two {
    height: 4px;
    margin: 3px 0;
    width: 35px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.menu-toggle.active .one {
    transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -o-transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .two {
    opacity: 0;
}

.menu-toggle.active .three {
    width: 35px;
    transform: rotate(-45deg) translate(7px, -7px);
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    -moz-transform: rotate(-45deg) translate(7px, -7px);
    -ms-transform: rotate(-45deg) translate(7px, -7px);
    -o-transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle .one, .menu-toggle .three, .menu-toggle .two {
    background: var(--secondary-text-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.menu-wrapper {
    width: 80%;
    background: var(--primary-bg-color);
    min-height: 100vh;
    padding-bottom: 50px;
    margin-left: auto;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, var(--primary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--secondary-design-color) 80%, var(--secondary-design-color) 100%);
    border-image-slice: 1;
    padding: 10px 12px;
}

.menu-body {
    padding: 10px 12px;
}

.mobile-logo img {
    width: 120px;
}

.menu-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 80%;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid;
    border-image: linear-gradient(to right, var(--primary-design-color) 20%, var(--tertiary-design-color) 40%, var(--tertiary-design-color) 60%, var(--secondary-design-color) 80%, var(--secondary-design-color) 100%);
    border-image-slice: 1;
    z-index: 999;
}

.menu-list.mobile {
    flex-direction: column;
}

.menu-list.mobile li {
    margin: 6px 0;
}

.menu-list.mobile li a {
    color: var(--secondary-text-color);
}

.menu-list.mobile li a:hover {
    background: var(--primary-design-color);
    color: var(--primary-bg-color);
    animation: pulse-orange-primary 1.2s;
    -webkit-animation: pulse-orange-primary 1.2s;
}

.menu-list.mobile li a.active {
    background: var(--primary-design-color);
    color: var(--primary-bg-color);
}

.social-list.mobile li {
    box-shadow: none
}

.social-list.mobile li a {
    background: var(--secondary-text-color);
    color: var(--primary-text-color);
}