*, ::before, ::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Encode Sans Semi Condensed", sans-serif;
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.element--border-b {
    border-bottom: 1px solid #0AA0CC;
}

p,h1,h2 {
    margin: 0;
}

.typography p {
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 32px;
}

.typography h5 {
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin-top: 0;
}

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

.typography h2 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 24px;
}

.typography > *:last-child {
    margin-bottom: 0;
}

.header {
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding-top: 40px;
    transition: all 300ms ease-in-out;
}

.header__scroll {
    background-color: rgba(14, 86, 132, 0.9);
    padding-top: 20px;
    padding-bottom: 20px;
}

.header__logo > a {
    display: inline-block;
    height: 100%;
}

.header__logo img {
    height: 70px;
    transition: height 300ms ease-in-out;


    @media only screen and (min-width: 1024px) {
        height: 162px;

        .header__scroll & {
            height: 100px;
        }
    }
}

.header__scroll .header__logo {
    height: 100px;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media only screen and (min-width: 600px) {
        align-items: flex-start;
    }
}

.header__links {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 -16px;
}


.header__link {
    display: flex;
    align-items: center;
    margin: 0 -4px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 500;
    color : white;
    text-decoration: none;
}

.header__link p {
    padding: 0 4px;;
}

.header__link:hover {
    text-decoration: underline;
}

.header__link svg {
    height: 32px;
    width: 32px;
}

.header__icon {
    padding: 0 4px;
    height: 32px;
}

.header__left{
    display: flex;
    align-items: center;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    max-width: 1600px;
    width: 100%;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: end;
    overflow: hidden;
}

.hero.hero--sm {
    height: 570px;
}

.hero__bg {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero__bg:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;

    @media only screen and (min-width: 600px) {
        display: none;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 300ms ease-in-out;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}


.hero h1 {
    margin-bottom: 24px;
    font-size: 49px;
    line-height: 52px;
    font-weight: 600;
    max-width: 498px;
    font-family: "Encode Sans Semi Condensed", sans-serif;
}

.hero__bg img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.hero__content {
    position: relative;
    color: white;
    bottom: 120px;
    display: flex;
    flex: 1;
}

.btn {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    padding: 20px 47px;
    background-color: #FFDE59;
    color: black;
    line-height: 1;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    text-decoration: unset;
    display: inline-flex;
    min-width: 163px;
}

.btn:hover {
    background-color: #ffde59d8;;
}

.hero__left .hero__tile p {
    font-size: 14px;
    margin-bottom: 0;
}

.hero__tab {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    width: 52px;
    height: 52px;
    background-color: rgba(26, 26, 26, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__left p {
    font-size: 20px;
    margin-bottom: 12px;
}

.hero__time {
    display: flex;
    margin: 24px -6px 0 -6px;
}

.hero__tile {
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__content__wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.hero .container {
    width: 100%;
}

.padding-md {
    padding: 120px 0;
}

.content {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.content__content__wrap {
    display: flex;
    column-gap: 68px;
}

.content__holder {
    position: relative;
    overflow: hidden;
}

.content__spiral {
    position: absolute;
    bottom: -160px;
    left: -50px;
    width:253px;
    height:283px;
    pointer-events: none;
    z-index: -1;
}

.content__spiral svg {
    width: 100%;
    height: 100%;
}

.content__title,
.sponsors__col-left {
    min-width: 260px;
    font-weight: 600;
    font-size: 20px;

    @media only screen and (min-width: 1024px) {
        min-width: 360px;
    }
}

.content__register p {
    min-width: 115px;
}

.content__desc {
    margin-bottom: 32px;
}

.location__slider,
.cards-carousel__carousel {
    width: calc(50vw + 790px)
}

.location__desc,
.detail-list__content,
.content-with-wide-image__content,
.cards-carousel__content {
    max-width: 908px;
    margin-bottom: 40px;
}

.location__item {
    position: relative;
    height: 727px;
    border-radius: 8px;
    display: flex;
    align-items: end;
    width: 506px;
    margin-left: 40px;
    text-decoration: none;
}

.location__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
}

.location__content {
    position: relative;
    color: white;
}

.location__content a {
    color: white;
    text-decoration: none;
}

.location__icon svg {
    margin-left: 0;
    position: absolute;
    top: 32px;
    right: 24px;
}

.location__wrap {
    padding: 32px 24px;
}

.location__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.location__content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}

.location__link {
    display: flex;
    align-items: center;
}

.location__link:hover {
    text-decoration: underline;
}


.location__content svg {
    margin-left: 4px;
}

.footer {
    background-color:  #0E5684;
    color: white;
    position: relative;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.price__btn {
    cursor: default;
}

@media only screen and (max-width: 1200px) {

    .content__price {
        display: block;
    }

    .content__price .content__content {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 800px)  {
    .content__content__wrap {
        display: block;
    }
}

@media only screen and (max-width: 600px) {

    .typography p {
        font-size: 16px;
        margin-bottom: 16px;
        line-height: 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .header__scroll {
        background-color: #0E5684;
        padding-top: 20px !important;
        padding-bottom: 20px;
    }

    .header__scroll .header__logo {
        height: 80px;
    }

    .padding-md {
        padding: 60px 0;
    }

    .header {
        padding-top: 50px;
    }

    .header__logo {
        height: 70px;
    }

    .header__logo img {
        height: 100%;
    }

    .header__link p {
        font-size: 16px;
    }

    .header__links {
        margin: 0 -8px;
        transition: all 0.3s ease-in-out;
        position: absolute;
        background-color: rgba(14, 86, 132, 0.85);
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        height: 100vh;
        z-index: -1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);

        .header__link{
            padding-bottom: 20px;
        }

        &.active{
            transform: translateX(0%);
        }

    }

    .header__link {
        padding: 0 8px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .hero__time {
        display: flex;
        margin-bottom: 24px;
    }

    .hero__content__wrap {
        display: block;
    }

    .content {
        display: block;
    }



    .content__title {
        min-width: 100%;
    }

    .location__desc,
    .detail-list__content,
    .content-with-wide-image__content,
    .cards-carousel__content {
        margin-bottom: 45px;
    }

    .location__slider,
    .cards-carousel__carousel {
        width: 100%;
    }

    .location__item {
        width: 100%;
        height: 520px;
    }

    .footer__wrap {
        flex-direction: column;
    }

    .footer__left{
        margin-bottom: 12px;
    }


}

/* ---- sponsors ------ */
.sponsors {
    background-color: #FBFBFB;
    position: relative;
}

.sponsors__cols {
    display: flex;
    flex-direction: column;
    column-gap: 20px;
}

.sponsors__col-title {
    margin-bottom: 40px;
}

.sponsors__col-right {
    flex: 1;
}

.sponsors__btn {
    margin-top: 50px;
}

.sponsors__col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.sponsors__btn .btn {
    display: inline-block;
    text-decoration: unset;
}

.card-sponsor__inner,
.card-sponsor__inner {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 100%;
    background-color: #D9D9D9;
    max-width: 195px;
}

.card-sponsor__inner:before,
.card-sponsor__inner:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.card-sponsor__inner img,
.card-sponsor__inner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cards-carousel__desc a:not(.btn) {
    color: #0E5684;
    transition: all 300ms;
}

.cards-carousel__desc a:not(.btn):hover {
    color: #FFDE59;
}

.speakers h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px;
}

.speakers .content {
    align-items: center;
}

.speaker__inner {
    width: 195px;
    height: 195px;
    display: block;
}

.speaker__inner img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 480px) {
    .sponsors__col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .sponsors__col-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsors__cols {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .sponsors__col-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1200px) {
    .sponsors__col-grid {
        gap: 50px;
    }
}

/* ---- cards-carousel ----*/
.cards-carousel {
    overflow: hidden;
}

/*.cards-carousel__carousel .location__icon svg {*/
/*    top: calc(50% - 16px);*/
/*}*/

/* ----- detail-list -----*/
.detail-list__list-item {
    border-bottom: 1px solid #0AA0CC;
    padding: 24px 0;
}

.detail-list__list-item.content {
    justify-content: flex-start;
}

.detail-list__list__price {
    margin-bottom: 60px;
}

.detail-list__list-item:first-child {
    padding-top: 0;
}

.detail-list__list:not(.detail-list__list--has-border) .detail-list__list-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-list .content__title {
    margin-bottom: 20px;
}

.detail-list .content__title h4 {
    margin: 0;
    font-weight: 600;
}

.content-with-wide-image__image {
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border-radius: 8px;
}

.content-with-wide-image__image img {
    width: 100%;
    border-radius: 8px;
}

.detail-list h3 {
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 22px;
}

@media (min-width: 601px) {
    .detail-list .content__title {
        margin-bottom: 0;
    }
}

/* ---- register-cta ----- */
.register-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 24px 0;
    background-color: #F0F0F0;
    z-index: 9;
}

.register-cta ul {
    margin: 0;
    padding: 0;
}

.register-cta ul li {
    list-style: none;
    list-style-type: none;
}

.register-cta__cols {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.register-cta__col-btn-holder {
    display: flex;
    align-items: center;
    gap: 20px;
}

.register-cta__btn {
    text-decoration: unset;
    padding: 14px 47px;
}

@media (min-width: 768px) {
    .register-cta__cols {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ---- single-content ---- */
.single-content__inner {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.register-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.register-item p {
    margin: 0;
}

.register-item__btn {
    text-decoration: unset;
    padding: 14px 47px;
}

/* ---- get-in-touch ---- */
.get-in-touch__cols {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.get-in-touch__col-image img {
    width: 100%;
    border-radius: 8px;
}

.get-in-touch__list {
    padding: 0;
    margin: 0;
}

.get-in-touch__typography {
    margin-bottom: 40px;
}

.get-in-touch__list li {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #000000;
    padding: 24px 12px;
    border-bottom: 1px solid #0AA0CC66;
    border-opacity: 0.4;
    font-size: 20px;
}

.get-in-touch__list li a {
    color: #000000;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.get-in-touch__list li .phone-holder a {
    text-decoration: unset;
}

.get-in-touch__list li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.get-in-touch__list li:first-child {
    border-top: 1px solid #0AA0CC66;
}

.get-in-touch__list li span {
    color: #6E5757;
    display: block;
    min-width: 120px;
}

@media (min-width: 768px) {
    .get-in-touch__cols {
        flex-direction: row;
    }

    .get-in-touch__col {
        flex: 1;
        max-width: calc(50% - 22px);
    }

    .get-in-touch__typography {
        margin-bottom: 60px;
    }
}


/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
    position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;


}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
    position: relative;
    background: hsla(0, 0%, 100%, 0.75);
    border: none;
    color: #333;
}

.flickity-button:hover {
    background: white;
    cursor: pointer;
}

.flickity-button:focus {
    outline: none;
}

.flickity-button:active {
    opacity: 0.6;
}

.flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    /* prevent disabled button from capturing pointer up event. #716 */
    pointer-events: none;
}

.flickity-button-icon {
    fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
    top: 100%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    left: 45%;
    /* vertically center */
    transform: translateX(-50%);
    border-style: solid;
    border-width: 2px;
    margin-left: 8px;
    margin-right: 8px;

}

.flickity-prev-next-button.previous {
    left:calc(50% - 42px);
}
.flickity-prev-next-button.next { left:calc(50% - 42px);  }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    list-style: none;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
    height: 92px;
    display:flex ;
    align-items: center;
    justify-content: center;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
    display: inline-block;
    width:16px;
    height: 16px;
    margin: 0 6px;
    background: #3D503C;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
    opacity: 1;
}
