body {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 26px;
    padding: 0;
    margin: 0;
    color: #4A4A4A;
}


h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 60px;
    color: #111111;
}

h2 {
    font-size: 32px;
    line-height: 44px;
    color: #111111;
}

h3 {
    font-size: 24px;
    line-height: 36px;
    color: #111111;
}

a {
    color: #293276;
    text-decoration: none;
}

.btn {
    padding: 8px 22px;
    background: #fff;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.5s ease;
    border: none;
}

.btn-primary {
    background: #C7C703;
    color: #111111;
}

.btn-block {
    display: block;
}

.btn:hover {
    padding: 8px 22px;
    background: #C7C703;
}

.btn-primary:hover {
    background: #ffffff;
    color: #111111;
}

.border-radius {
    border-radius: 12px;
}

.section-space {
    padding: 80px 0;
}

.bg-light {
    background: #F6F7FF;
}

.bg-dark {
    background: #293276 !important;
}

.section-title {
    margin-bottom: 30px;
    font-weight: 400;
}

.section-title .sub-title {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    display: inline-block;
    color: #293276;
    font-size: 20px;
    font-weight: 500;
}

.section-title .sub-title:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 10px;
    height: 10px;
    background: #293276;
    transform: translateY(-50%);
}

.section-title h2 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
}

.bg-dark .section-title .sub-title:before {
    background: #ffffff;
}

.bg-dark .section-title .sub-title {
    color: #ffffff;
}

.bg-dark .section-title h2 {
    color: #ffffff;
}

.bg-dark .section-title p {
    color: #ffffff;
}

.map iframe {
    width: 100%;
    height: 293px;
}

/********** Radio Button **********/
.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

/* On mouse-over, add a grey background color */
.customradio:hover input~.checkmark {
    background-color: transparent;
}

/* When the radio button is checked, add a blue background */
.customradio input:checked~.checkmark {
    background-color: transparent;
    border: 1px solid #ffffff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.customradio input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.customradio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
}

/* Custom Radio Button End*/


/***** Header *****/
.header {
    font-family: "DM Sans", sans-serif;
    background: color(a98-rgb 0.34 0.34 0.34 / 0.28);
    padding: 12px 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    backdrop-filter: blur(8px);
    transition: all 0.5s ease;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 16px;
    padding: 8px 14px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #C7C703;
}

.navbar-brand img.logo {
    width: 170px;
    position: relative;
}

.navbar-brand img.logo-sticky {
    display: none;
}

.header.is-sticky {
    position: fixed;
    background: #fff;
    border-bottom: 1px solid #010101;
}

.header.is-sticky .navbar-nav .nav-item .nav-link {
    color: #000000;
}

.header.is-sticky .btn {
    background: #293276;
    color: #fff;
}

.header.is-sticky .navbar-brand img.logo {
    display: none;
}

.header.is-sticky .navbar-brand img.logo-sticky {
    display: block;
}


/***** Banner *****/
.banner {
    position: relative;
    color: #fff;
    padding: 90px 0px 50px 0px;
}

.banner:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0.4) 100%);
}

.banner-content {
    position: relative;
    height: 50%;
}

.banner-content h1 {
    color: #ffffff;
}

.banner-content p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 30px;
}

.banner-form {
    border: 1px solid rgb(255 255 255 / 40%);
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
    background: rgb(255 255 255 / 5%);
}

.banner-form h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}

.banner-form .form-group {
    margin-bottom: 20px;
}

.banner-form .form-group .form-control {
    border-radius: 8px;
    padding: 5px 10px;
    height: 40px;
    border: none;
    background: #fff;
}

.banner-form .form-group .form-check-inline .customradio {
    display: inline-block;
    margin-right: 20px;
}

.banner-content-bottom {
    display: flex;
    position: absolute;
}

.banner-content-bottom .calendar-location {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 7px 16px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    background: rgb(255 255 255 / 15%);
}

.banner-content-bottom .calendar-location .icon {
    padding-right: 15px;
}

video#myVideo {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    bottom: 0;
    object-fit: cover;
}

/***** Key theme *****/

.key-theme-feature {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    position: relative;
    transition: all .5s ease-in-out;
    height: 100%;
}

.key-theme-feature:before {
    background: #293276;
    border-radius: 5px;
    top: 0;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .5s ease-in-out;
    width: 100%;
}

.key-theme-feature:hover:before {
    top: 0;
    height: 100%;
}

.key-theme-feature .feature-icon {
    padding-bottom: 20px;
    position: relative;
    transition: all .5s ease;
}

.key-theme-feature .feature-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
    position: relative;
    transition: all .5s ease;
}

.key-theme-feature p {
    position: relative;
    transition: all .5s ease;
}

.key-theme-feature:hover .feature-icon svg path {
    fill: #ffffff;
}

.key-theme-feature:hover .feature-title {
    color: #ffffff;
}

.key-theme-feature:hover p {
    color: #ffffff;
}


.agenda-timeline {
    position: relative;
}

/*.progress {
  background: #ffffff;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
  position: absolute;
  top: 50%;

}

.progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background: #293276;
  height: 30px;
  width: 0;
}*/

.progress {
    width: 100%;
    height: 10px;
}

.progress-wrap {
    background: #293276;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.progress-bar {
    background: #ddd;
    left: 0;
    position: absolute;
    top: 0;
}

/*@keyframes load {
  0% { width: 0; }
  100% { width: 80%; }
}*/

.agenda-timeline-list {
    display: flex;
    text-align: center;
    max-width: 1320px;
    margin: 0 auto;
}

.agenda-timeline-list>div:nth-child(2n+2) {
    padding-top: 160px;
}

/***** team *****/

.team {
    padding: 12px;
    border: 1px solid #ffffff94;
    border-radius: 8px;
    background: #FFFFFF1A;
    transition: all 0.5s ease;
}

.team-img {
    margin-bottom: 10px;
}

.team-img img {
    border-radius: 4px;
    filter: grayscale(1);
}

.team-detail {
    color: #fff;
}

.team-detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team-detail-top .team-designtion {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 300;
}

.team-detail-top span {
    color: #fff;
    font-size: 20px;
}

.team-social a img {
    width: 24px;
}

.team-social a {
    display: inline-block;
    margin-left: 10px;
}

.team:hover .team-img img {
    filter: grayscale(0);
}

.team:hover {
    border: 1px solid #ffffff;
}

/* ===== Read More / Read Less (for <button.read-more>) ===== */
.team p {
    overflow-wrap: anywhere;
}

.more-text {
    display: none !important;
}

.more-text.show {
    display: inline !important;
}

.read-more {
    /* button styled as link */
    background: none;
    border: 0;
    padding: 0;
    margin-left: 4px;
    color: #C7C703;
    /* theme accent on dark background */
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    display: inline-block;
    /* better tap target */
}

.read-more:focus-visible {
    outline: 2px dashed #C7C703;
    outline-offset: 2px;
}

@media (hover: hover) {
    .read-more:hover {
        opacity: 0.85;
        text-decoration: none;
    }
}

/* ===== End Read More block ===== */

.accordion-inner {
    display: flex;
    gap: 100px;
}

.accordion-content {
    flex: 0 0 50%;
}

.workspaces-images {
    flex: auto;
    position: relative;
}

.workspaces-img {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transform: scale(0.8);
    border-radius: 12px;
    overflow: hidden;
}

.image-active .workspaces-img {
    position: relative;
    opacity: 1;
    left: 0;
    transform: scale(1);
}

/* The Magic */
.accordion:hover .accordion-item:hover .accordion-item-content,
.accordion .accordion-item--default .accordion-item-content {
    height: auto;
}

.accordion-item-content,
.accordion:hover .accordion-item-content {
    height: 0;
    overflow: hidden;
    transition: height .25s;
}

/* Aesthetic */

.accordion .accordion-item {
    padding: 15px;
    color: #eee;
    border: none;
    border-bottom: 1px solid #00000029;
    border-radius: 0;
    position: relative;
}

.accordion h1 {
    margin: 0;
}

.accordion__bl {
    position: absolute;
    top: 20px;
    right: 0;
    pointer-events: none;
    ;
    transition: .4s;
}

.accordion__bl::before,
.accordion__bl::after {
    position: absolute;
    content: '';
    width: 13.33px;
    height: 0.67px;
    top: 50%;
    left: 50%;
    background: #899193;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    transition: .4s;
}

.accordion__bl::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.active .accordion__bl {
    border-color: #000;
}

.accordion__item.accordion-item--default .accordion__bl::before,
.accordion__item.accordion-item--default .accordion__bl::after {
    background: #000;
}

.accordion-item--default .accordion__bl::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-item-content p {
    color: #111111;
    margin-bottom: 0;
}

.venue-content {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

@media (min-width: 992px) {
    #venue .row.align-items-stretch {
        align-items: stretch;
        /* ensure equal column heights */
    }

    /* Make inner wrappers stretch */
    #venue .venue-pane {
        min-height: 100%;
        /* let it match the tallest column */
    }

    /* Map fills available height */
    #venue .map {
        min-height: 0;
        /* important inside flex */
    }

    #venue .map .map-frame {
        width: 100%;
        height: 100%;
        display: block;
    }

    /* Carousel fills column height */
    #venue #carouselExampleControls,
    #venue #carouselExampleControls .carousel-inner,
    #venue #carouselExampleControls .carousel-item {
        height: 100%;
    }

    #venue #carouselExampleControls img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        /* or 'contain' if you prefer no crop */
        display: block;
        max-height: 450px;
    }

    #venue .venue-pane,
    #venue #carouselExampleControls {
        min-height: 420px;
    }
}



/***** footer *****/
.footer {
    background: #293276;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 20px;
}

.footer-link {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.footer-link li a {
    color: #fff;
    text-decoration: none;
    padding-right: 40px;
}

.footer-bottom p {
    color: #ffffff;
    text-align: center;
    margin: 0;
}




@media only screen and (max-width: 1199px) {


    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background: #fff;
        width: 30px;
        height: 1px;
        position: relative;
    }

    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        position: absolute;
        content: "";
        background: #ffffff;
        width: 30px;
        height: 1px;
        right: 0;
    }

    .navbar-toggler-icon:before {
        top: -10px;
    }

    .navbar-toggler-icon:After {
        top: 10px;
        width: 20px;
    }

    .is-sticky .navbar-toggler-icon {
        background: #293276;
    }

    .is-sticky .navbar-toggler-icon:before,
    .is-sticky .navbar-toggler-icon:after {
        background: #293276;
    }

    .navbar-nav {
        padding-top: 20px;
    }

    .navbar-nav .nav-item .nav-link {
        padding-left: 0;
    }

    @keyframes load {
        0% {
            width: 0;
        }

        100% {
            width: 95%;
        }
    }

}


@media only screen and (max-width: 991px) {

    .section-space {
        padding: 60px 0;
    }

    .banner-content-bottom {
        position: relative;
        margin-bottom: 20px;
    }

    .banner-content {
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .team {
        margin-bottom: 30px;
    }

    .accordion-inner {
        display: block;
    }

    .accordion-content {
        margin-bottom: 30px;
    }

    .agenda-timeline {
        position: relative;
        overflow: hidden;
    }

    .agenda-timeline-list {
        display: block;
    }

    .agenda-timeline-list-item:nth-child(2n+1) {
        position: relative;
        text-align: right;
        left: 0;
        word-wrap: break-word;
        width: 50%;
        padding-right: 20px;
    }

    .agenda-timeline-list-item:nth-child(2n+2) {
        text-align: left;
        position: relative;
        right: -50%;
        padding-top: 60px !important;
        width: 50%;
        padding-left: 30px;
    }

    .progress {
        width: 5px;
        height: 100%;
        transform: rotate(180deg);
        top: 0;
    }

    .progress-wrap {
        left: 50%;
    }

    .agenda-timeline-list-item h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .agenda-timeline-list-item span {
        font-size: 14px;
        line-height: 24px;
    }

    .key-theme-feature {
        text-align: center;
        margin-bottom: 30px;
        height: auto;
    }

    .venue-content {
        justify-content: center;
        font-size: 14px;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-right {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

}

@media only screen and (max-width: 767px) {

    .banner-content h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .banner-content-bottom {
        display: block;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .venue-content .icon img {
        width: 22px;
    }

    .banner-content-bottom .calendar-location {
        margin-right: 0px;
    }

    .footer {
        font-size: 12px;
    }

    .footer-link {
        padding-left: 40px;
    }
}

.step-progress {
    position: relative;
    width: 100%;
    /*margin: 50px 0;*/
    min-height: 320px;
    overflow: hidden;
    --gap: 80px;
    /* vertical offset for step labels on desktop */
    --m-gap: 140px;
    /* horizontal offset for step labels on mobile */
    position: relative;
    z-index: 0;
}

/* Track */
.sp-track {
    position: absolute;
    background: #ddd;
    border-radius: 6px;
    z-index: 1;
}

.sp-fill {
    position: absolute;
    background: #293276;
    border-radius: 6px;
    z-index: 2;
}

/* Indicator (pie) */
.sp-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #293276;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.sp-indicator::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(transparent 0deg var(--blue-deg, 0deg),
            #fff var(--blue-deg, 0deg) 360deg);
}

/* Steps */
.timeline-step {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 6;
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
}

.timeline-step.show {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.timeline-step h3 {
    font-size: 20px;
    margin: 0 0 6px;
}

.timeline-step span {
    font-size: 14px;
    color: #555;
}

.step-progress .sp-track,
.step-progress .sp-fill,
.step-progress .sp-indicator,
.step-progress .timeline-step {
    z-index: 0;
}


/* Mobile: vertical, two fixed columns */
@media (max-width: 767px) {
    .step-progress {
        padding: 16px 12px;
        /* safe padding */
        min-height: 560px;
        /* will be increased by JS as needed */
        /* let content extend; we compute min-height in JS anyway */
        overflow: visible;
    }

    .sp-track,
    .sp-fill {
        left: 50%;
        width: 8px;
        transform: translateX(-50%);
    }

    .timeline-step {
        /* On mobile we only center vertically, not horizontally */
        transform: translateY(-50%);
        text-align: left;
        max-width: 42vw;
        /* clamp width so it stays on-screen */
        overflow-wrap: anywhere;
        /* robust wrapping */
        word-break: break-word;
        line-height: 1.25;
    }

    .timeline-step.left {
        text-align: right;
    }

    .timeline-step.right {
        text-align: left;
    }

    .timeline-step h3 {
        font-size: 18px;
        margin: 0 0 4px;
    }

    .timeline-step span {
        font-size: 15px;
    }
}