@font-face {
    font-family: 'Helvetica-Light';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Helvetica-Light'), url('../fonts/Helvetica-Light.ttf') format('ttf');
}
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Helvetica'), url('../fonts/Helvetica.ttf') format('ttf');
}
@font-face {
    font-family: 'Helvetica Bold';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Helvetica-Bold'), url('../fonts/Helvetica-Bold.ttf') format('ttf');
}
html {
    scroll-behavior: smooth !important;
}
body {
    font-family: 'Helvetica';
    color: black;

}
.page {
    margin: 0 !important;
}
h1, h2 {
    margin-top: 55px;
    margin-bottom: 55px;
    font-family: 'Helvetica-Light';
    font-weight: 300;
    font-size: 100px;
    line-height: 115px;
    text-align: center;
}
h3 {
    font-family: 'Helvetica Bold';
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: .55rem;
}
.f-20 {
    font-size: 20px;
    line-height: 26px;
}
p {
    font-size: 16px;
    margin: 0;
    line-height: 18px;
}
.text-center {
    text-align: center;
}
a {
    text-decoration: none;
    color: black;
}
a:visited {
    color: black;
}
a:hover {
    color: #C8C8C8;
}
.flex {
    display: flex;
}
b {
    font-family: 'Helvetica Bold';
}
.w-15 {
    width: 15%;
}
.w-25 {
    width: 25%;
}
.w-60 {
    width: 60%;
}
.w-20 {
    width: 20%;
}
.w-30 {
    width: 30%;
}
.w-40 {
    width: 40%;
}
.w-50 {
    width: 50%;
}
.pb-0 {
    padding-bottom: 0px;
}
.mb-25 {
    margin-bottom: 25px;
}
.separate-p p {
    margin-bottom: 15px;
}
.btn-light {
    text-decoration: none;
    cursor: pointer;
    padding: 15px 19px 16px 18px;
    border: 2px solid black;
    color: black;
    background-color: white;
    font-size: 18px;
    letter-spacing: .15rem;
    line-height: 21px;
    display: inline;
}
.btn-light:visited {
    color: black;
}
.btn-light:hover {
    color: white;
    background-color: black;
}
.btn-dark {
    text-decoration: none;
    cursor: pointer;
    padding: 15px 19px 16px 18px;
    border: 2px solid black;
    color: white;
    background-color: black;
    font-size: 18px;
    letter-spacing: .15rem;
    line-height: 21px;
    border-radius: 0px;
}
.btn-dark:visited {
    color: white;
}
.btn-dark:hover {
    color: black;
    background-color: white;
}
.btn-gray {
    text-decoration: none;
    /* cursor: pointer; */
    padding: 15px 19px 16px 18px;
    border: 2px solid rgb(121, 118, 118);
    color: white;
    background-color: rgb(121, 118, 118);
    font-size: 18px;
    letter-spacing: .15rem;
    line-height: 21px;
    border-radius: 0px;
}
/* HEADER */
.site-branding {
    padding: 40px;
    display: flex;
    justify-content: center;
}
.main-navigation {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}
.main-navigation li {
    padding-left: 20px;
    padding-right: 20px;
}
.main-navigation li a {
    color: black;
    font-size: 16px;
}
.main-navigation li a:hover {
    color: #C8C8C8;
}
/* HEADER END */
/* MAIN */
.top-banner {
    background-color: black;
    padding-top: 10px;
    padding-bottom: 13px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.top-banner p {
    font-family: 'Helvetica Bold';
    font-size: 28px;
    color: white;
    padding: 0px;
    line-height: 32px;
    display: inline-block;
    font-weight: bold;
    color: white;
    will-change: transform;
    animation: scrollText 100s linear infinite;
}
@keyframes scrollText {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}
.hero-banner {
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.hero-banner video {
    max-width: 100%;
}
.clock-wrapper {
    background-color: black;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 22px;
    padding-bottom: 23px;
    color: white;
    font-family: 'Helvetica Bold';
    display: flex;
    justify-content: center;
}
.countdown {
    font-size: 60px;
    display: flex;
    align-items: center;
    text-align: center;
}
.countdown .time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}
.countdown .label {
    font-size: 16px;
    line-height: 18px;
    min-height: 18px;
}
.countdown .number {
    line-height: 69px;
    display: flex;
    align-items: center;
}
/* conference */
.conference {
    display: flex;
    justify-content: center;
}
.conference h2 {
    margin-top: 0px;
    margin-bottom: 40px;
}
.conference h3  {
    margin-bottom: 0px;
}
.conference .text-box {
    max-width: 600px;
}
.conference .text-box p {
    line-height: 26px;
}
/* conference end */
/* speakers */
.speaker-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.speaker-block {
    display: block;
    position: relative;
    width: 33.33%;
    overflow: hidden;
    transition: all ease .4s;
}
.speaker-block img {
    height: 100%;
    width: 100%;
    transition: all ease .4s;
}
.speaker-block:hover .speaker-cover {
    /* display: none; */
}
.speaker-block:hover img {
    display: block;
    transform: scale(1.05);
}
.speaker-cover {
    position: absolute;
    top: 0px;
    left: 0px;
}
.speaker-footer {
    position: absolute;
    height: 180px;
    left: 0px;
    bottom: -220px;
    background-color: black;
    width: 100%;
    text-align: center;
    padding-top: 28px;
    transition: all 500ms ease-out;
}
.speaker-block:hover .speaker-footer {
    bottom: 0px;
}
.speaker-footer p {
    font-size: 25px;
    line-height: 30px;
    color: white;
    text-align: left;
}
.speaker-footer-title {
    padding-left: 50px;
    padding-right: 50px;
}
.speaker-footer img {
    height: auto;
    width: 34px;
    margin-top: 15px;
    cursor: pointer;
}
.speaker-footer .read-more-text .text-block {
    text-align: left;
    padding: 50px;
}
.speaker-footer .read-more-text p {
    color: white;
    font-size: 14px;
    font-family: 'Helvetica';
    line-height: 18px;
}
.speaker-footer-active {
    background-color: rgba(0, 0, 0, 0.75) !important;
    height: 100% !important;
}
.more-speakers {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 20px;
}
.more-speakers h2 {
    font-weight: bold;
    font-size: 55px;
    line-height: 1;
    padding: 20px 20px 0px;
    margin: 0px;
    font-family: 'Helvetica Bold';
}
/* spekaers end */
/* agenda */
.agenda-wrapper {
    justify-content: center;
    display: flex;
    background-color: #F6F6F6;
}
.agenda-block {
    width: 100%;
    max-width: 1080px;
    padding: 50px 0px;
}
.agenda-row {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-between;
    display: flex;
    border-top: solid rgb(0, 0, 0, 25%) 1px;
}
.agenda-row:last-of-type {
    border-bottom: solid rgb(0, 0, 0, 25%) 1px;
}
.agenda-subtitle {
    letter-spacing: 0;
    font-weight: 700;
    font-size: 26px;
    text-align: left;
}
/* agenda end */
/* tickets */
.tickets {
    margin-top: 75px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-image: url("../assets/tickets-bg.png");
    padding-top: 10px;
    padding-bottom: 105px;
}
.tickets h2 {
    color: white;
}
.tickets-wrapper {
    display: flex;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
}
.tickets-contaier {
    padding: 25px;
    width: 33%;
}
.tickets-block {
    background-color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 25px;
}
.tickets-block h3 {
    color: black;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}
.tickets-block  .date-to {
    color: black;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 17px;
}
.tickets-block .text  {
    margin-bottom: 30px;
}
.tickets-block .text ul {
    margin: 0;
    padding: 0;
    list-style-position: inside;
    /* padding-right: 30px; */
}
.tickets-block .text ul li::marker {
    color: white;
}
.tickets-block .price {
    color: black;
    font-size: 80px;
    letter-spacing: -.1rem;
    line-height: 60px;
    margin-bottom: 10px;
}
.tickets-block .curency {
    font-size: 30px;
    line-height: 40px;
    color: black;
    margin-bottom: 10px;
}
.tickets-block .btn-dark {
    display: inline-block;
}
.tickets-block .btn-dark:hover {
    background-color: transparent !important;
}
/* tickets end */
/* packages */
.packages {
    margin-top: 75px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-image: url("../assets/packages-bg.png");
    padding-top: 10px;
    padding-bottom: 105px;
}
.packages h2 {
    color: black;
}
.packages-wrapper {
    display: flex;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
}
.packages-contaier {
    padding: 25px;
    width: 33%;
}
.packages-block {
    background-color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 25px;
}
.packages-block h3 {
    color: black;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}
.packages-block  .date-to {
    color: black;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 17px;
    margin-top: 10px;
}
.packagess-block .text  {
    margin-bottom: 30px;
}
.packages-block .text ul {
    margin: 0;
    padding: 0;
    list-style-position: inside;
    /* padding-right: 30px; */
}
.packages-block .text ul li::marker {
    color: black;
}
.packages-block .price {
    color: black;
    font-size: 80px;
    letter-spacing: -.1rem;
    line-height: 60px;
    margin-bottom: 10px;
}
.packages-block .curency {
    font-size: 30px;
    line-height: 40px;
    color: white;
    margin-bottom: 10px;
}
.packages-block .btn-dark {
    display: inline-block;
}
.packages-block .btn-dark:hover {
    background-color: transparent !important;
}
/* packages end */
/* sponors */
.sponsors-wrapper {
    max-width: 1230px;
    display: flex;
    flex-flow: wrap;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
}
.sponsors-wrapper a {
    max-width: 20%;
    padding: 15px;
}
/* sponors end */
/* contact */
.conatact-wrappper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.conatact-wrappper .contact-form input, .conatact-wrappper .contact-form textarea {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 0;
    border: 1px solid rgb(0, 0, 0, 15%);
    padding: 12px 19px 12px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.01rem;
    color: black;
    font-family: "Helvetica";
}
.contact-name {
    display: flex;
}
.contact-name p:first-of-type {
    margin-right: 30px;
}
.contact-email input {
    width: 100%;
}
.conatact-wrappper .btn-dark {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 16px 40px;
}
.conatact-details {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgb(0, 0, 0, 15%);
    border-bottom: 1px solid rgb(0, 0, 0, 15%);
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 14px;
    padding-bottom: 30px;
}
.conatact-details h3 {
    font-family: "Helvetica";
}
.conatact-details-icons {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conatact-details-icon-block {
    display: flex;
    align-items: center;
}
.conatact-details-icon-block img {
    margin-right: 10px;
}
.conatact-details-icon-block a {
    font-size: 14px;
}
/* contact end */
/* MAIN END */
/* FOOTER */
footer {
    margin-top: 50px;
    background-color: black;
    padding-top: 64px;
    padding-bottom: 35px;
}
.footer-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    display: flex;
    /* justify-content: space-between; */
}
.footer-wrapper .footer-tickets {
    margin-top: 35px;
    display: block;
    color: white;
    letter-spacing: .33rem;
}
.footer-wrapper h4 {
    margin-bottom: 35px;
    color: white;
    font-size: 16px;
    letter-spacing: .22rem;
}
.footer-wrapper p {
    color: white;
}
.footer-nav a {
    color: white;
    font-size: 14px;
    line-height: 26px;
}
.footer-nav .menu {
    padding: 0;
    margin: 0;
}
footer .conatact-details-icon-block {
    margin-bottom: 20px;
}
footer .conatact-details-icon-block img {
    color: white;
}
footer .conatact-details-icon-block a {
    color: white;
}
.footer-contact p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 15px;
}
/* Bottom */
.footer-bottom {
    background-color: rgba(202, 202, 202, 0.5);
    padding-top: 13px;
    padding-bottom: 13px;
}
.footer-bottom-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
}
.footer-bottom-wrapper p {
    font-size: 14px;
    line-height: 26px;
}
.footer-bottom-wrapper a {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    text-decoration: none;
}
.footer-bottom-wrapper a:hover {
    color: #C8C8C8;
}
.organization {
    margin-top: 50px !important;
}
.logo-thehive {
    margin-top: 30px;
    display: block;
    width: 200px;
}
/* FOOTER END */
/* READ MORE */
.read-more-container {
    overflow: hidden;
}
.read-more-text {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 1s ease-in-out;
    transition: ease-in-out .4s;
}
.read-more-text.expanded {
    max-height: 3000px;
}
.toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
}
.icon {
    width: 24px;
    height: 24px;
}
.toggle-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.25);
    padding-top: 10px;
}
/* READ MORE END*/

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}

.line {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1600px) {
    .read-more-text.expanded {
        height: 70%;
        position: relative;
    }
    .read-more-text.expanded .text-block {
        max-height: 90%;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .read-more-text.expanded .text-block::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 1400px) {
    .speaker-footer .read-more-text .text-block {
        padding: 10px 50px 10px;
    }
}

@media (max-width: 1200px) {
    .speaker-block {
        width: 50%;
    }
    .tickets-contaier {
        width: 50%;
    }
    .sponsors-wrapper {
        justify-content: center;
    }
    .sponsors-wrapper a {
        max-width: 33%;
    }
    .footer-bottom-wrapper , .footer-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }
    .px-m-15 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .px-m-30 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .hamburger {
        display: flex;
    }
    .active-mobile-menu ul {
        display: block;
        text-align: center;
        padding-top: 10px;
    }
    .active-mobile-menu ul li{
        padding: 15px;
    }
        /* Hamburger to Cross animation */
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
        top: 0;
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
        bottom: 17px;
    }

    .countdown {
        font-size: 30px;
    }

    h1,h2 {
        margin-top: 15px;
        margin-bottom: 15px;
        font-family: 'Helvetica-Light';
        font-weight: 300;
        font-size: 60px;
        line-height: 75px;
        text-align: center;
    }

    h3 {
        line-height: 28px;
    }

    .speaker-block {
        width: 100%;
    }

    .tickets-contaier {
        width: 100%;
    }

    .agenda-row {
        display: block;
        text-align: center;
    }

    .agenda-row img {
        margin-top: 20px;
    }

    .sponsors-wrapper a{
        padding: 15px;
        max-width: 100%;
    }

    .contact-name {
        display: block;
    }

    .contact-name p:first-of-type {
        margin: 0;
    }

    .conatact-wrappper .btn-dark {
        width: 100%;
    }

    .conatact-details-icons {
        padding-top: 0px;
        flex-flow: column;
    }

    .conatact-details .conatact-details-icon-block {
        padding: 20px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
        text-align: center;
    }
    footer .conatact-details-icon-block {
        justify-content: center;
    }
    .w-40 , .w-20 , .w-50, .w-30 {
        width: 100%;
    }
    .first-agent-row {
        display: none;
    }
    .agenda-subtitle {
        text-align: center;
    }
    .footer-bottom-wrapper {
        display: block;
    }
    .speaker-footer .read-more-text .text-block {
        padding: 5px 15px 5px;
    }
    .read-more-text.expanded {
        height: 60%;
        position: relative;
    }
    .read-more-text .text-block {
        max-height: 80%;
        overflow-y: auto;
    }
    .more-speakers h2 {
        font-size: 32px;
    }
    .more-speakers h2 br {
        display: none;
    }
}

.custom-pages {

    h1,h2 {
        margin-top: 15px;
        margin-bottom: 15px;
        font-family: 'Helvetica-Light';
        font-weight: 300;
        font-size: 60px;
        line-height: 60px;
        text-align: center;
    }
    p {
        padding-top: 20px;
        padding-bottom: 30px;
        line-height: 22px;
        padding-left: 20%;
        padding-right: 20%;
    }

}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop img {
    width: 50px;
    height: 50px;
}