html {
    scroll-padding: 100px;
}

#scrollUp {
    background-color: #FCBA03 !important;
}

p {
    color: #212529;
}

button.search-icon {
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container {
    max-width: 100%;
    padding: 0 100px;
}

.events-container {
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-old {
    max-width: 1320px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.height-100 {
    height: 100px;
}

.height-50 {
    height: 50px;
}

.blob {
    background: #FCBA03;
    border-radius: 50%;
    margin: 10px;
    height: 14px;
    width: 14px;
    box-shadow: 0 0 0 0 rgba(252, 186, 3, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(252, 186, 3, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(252, 186, 3, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(252, 186, 3, 0);
    }
}


/* Header */

.main-header {
    height: 105px;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-style-2 .search-button {
    position: relative;
    right: 0;
}

.main-header .main-nav ul li a {
    font-size: 16px;
    font-weight: 600;
}

.logo-img {
    width: 135px;
}

.header-style-1 .header-bottom, .header-style-2 .header-bottom, .header-style-2.header-style-3 .header-bottom {
    height: unset;
}

.slicknav_nav {
    margin-top: 56px;
}

.slicknav_btn {
    top: 28px;
}

.main-header .main-nav ul li a {
    padding: 8px 0;
    margin: 27px 12px;
    transition: all ease-in-out .5s;
    position: relative;
    transform: translateY(0px);
}

.main-header .main-nav ul li a:after {
    content: '';
    background: #FEC708;
    background: 0 0;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all ease-in-out .5s;
}

.main-header .main-nav ul li a:hover {
    transition: all ease-in-out .5s;
    cursor: pointer;
}

.main-header .main-nav ul li a:hover:after {
    background: #FEC708;
    width: 100%;
    transition: all ease-in-out .5s;
}

.header-wrap .logo-tablet {
    padding: 10px 0;
}

.header-wrap .logo-tablet a:last-child {
    margin-left: 15px;
}

/* End Header */


/* Page Title */

.page-title-wrapper .pt-text {
    display: block;
}

.page-title-wrapper .pt-text .pt-text-first-section .text-title span {
    color: #FEC708;
}

.page-title-wrapper .pt-text .pt-text-subtitle {
    display: inline-block;
    margin-bottom: 20px;
}

.page-title-wrapper .pt-text .pt-text-subtitle h6 {
    margin-bottom: 0;
    clear: both;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    color: #171616;
    font-family: "Inter Tight", sans-serif;
    border-bottom: 2px solid #171616;
}

.page-title-wrapper .pt-text .text-title {
    font-weight: 600;
    font-size: 120px;
    color: #171616;
    font-family: 'BerlinProcessSerif', serif !important;
}

.page-title-wrapper .pt-text .text-subtitle {
    font-size: 68px;
}

.page-title-wrapper .pt-text .pt-text-second-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 140px;
}

.pt-mp-0 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-title-wrapper .pt-text .pt-text-second-section .text-detailed {
    max-width: 560px;
    font-weight: 400;
    font-size: 18px;
}

@keyframes typing {
    0.0000%, 27.3488% {
        content: "";
    }
    1.1395%, 26.2093% {
        content: "2";
    }
    2.2791%, 25.0698% {
        content: "20";
    }
    3.4186%, 23.9302% {
        content: "202";
    }
    4.5581%, 22.7907% {
        content: "2025";
    }

    30.7674%, 51.2791% {
        content: "";
    }
    31.9070%, 50.1395% {
        content: "2";
    }
    33.0465%, 49.0000% {
        content: "20";
    }
    34.1860%, 47.8605% {
        content: "202";
    }
    35.3256%, 46.7209% {
        content: "2025";
    }

    54.6977%, 75.2093% {
        content: "";
    }
    55.8372%, 74.0698% {
        content: "2";
    }
    56.9767%, 72.9302% {
        content: "20";
    }
    58.1163%, 71.7907% {
        content: "202";
    }
    59.2558%, 70.6512% {
        content: "2025";
    }

    78.6279%, 96.8605% {
        content: "";
    }
    79.7674%, 95.7209% {
        content: "2";
    }
    80.9070%, 94.5814% {
        content: "20";
    }
    82.0465%, 93.4419% {
        content: "202";
    }
    83.1860%, 92.3023% {
        content: "2025";
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.typewriter {
    --caret: #FEC708;
}

.typewriter::before {
    content: "";
    animation: typing 20s infinite;
}

.typewriter::after {
    content: "";
    border-right: 1px solid var(--caret);
    animation: blink 0.5s linear infinite;
}

.typewriter.thick::after {
    border-right: 1ch solid var(--caret);
}

.typewriter.nocaret::after {
    border-right: 0;
}

@media only screen and (min-width: 1418px) and (max-width: 1661px) {
    .page-title-wrapper .pt-text .text-title {
        font-size: 100px;
    }

    .page-title-wrapper .pt-text .text-subtitle {
        font-size: 55px;
    }
}

@media only screen and (min-width: 1175px) and (max-width: 1417px) {
    .page-title-wrapper .pt-text .text-title {
        font-size: 80px;
    }

    .page-title-wrapper .pt-text .text-subtitle {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1175px) {
    .page-title-wrapper .pt-text .text-title {
        font-size: 60px;
    }

    .page-title-wrapper .pt-text .text-subtitle {
        font-size: 35px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1240px) {

    .logo-img {
        width: 95px;
    }
}

@media screen and (max-width: 991px) {
    .page-title-wrapper .pt-text .text-title {
        font-size: 48px;
    }

    .page-title-wrapper .pt-text .text-subtitle {
        font-size: 48px;
    }

    .search-icon .ti-search:before {
        content: "\e610" !important;
    }
}

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

    .page-title-wrapper .pt-text .pt-text-second-section {
        gap: 40px;
    }

    .page-title-wrapper .pt-text .pt-text-subtitle h6 {
        font-size: 18px;
    }

    .logo-img {
        width: 95px;
    }
}

@media screen and (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }

    .main-header {
        height: 85px;
    }
}

@media screen and (max-width: 614px) {
    .page-title-wrapper .pt-text .text-title {
        font-size: 36px;
    }

    .page-title-wrapper .pt-text .text-subtitle {
        font-size: 28px;
    }
}

.section-padding {
    padding: 75px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* End Page Title */


/* Page Thumb */

.page-thumb {
    position: relative;
}

/*.page-thumb::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    opacity: 0;*/
/*    background-color: rgba(0, 0, 0, 0.4);*/
/*    transition: all 0.4s ease;*/
/*}*/

/*.page-thumb:hover::before {*/
/*    opacity: 1;*/
/*}*/

.page-thumb {
    position: relative;
}

.video-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    align-items: center;
    justify-content: center;
    display: none;
}

.page-thumb:hover .video-btn {
    display: flex;
}

.video-btn:before, .video-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
}

.video-btn:before {
    z-index: 0;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 24px solid currentColor;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.video-btn:after {
    z-index: 1;
    transition: all 200ms;
}

.video-btn-color {
    color: #FEC708;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* End Page Thumb */


/* About Berlin Process */

.ap-block-title .subtitle {
    color: #101010;
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 36px;
    margin-bottom: 0;
}

.ap-block-title .title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.content-item-inner {
    display: flex;
    position: relative;
    align-items: center;
}

.ap-content-item {
    padding: 15px 0;
    border-bottom: 1px solid #171616;
}

.ap-content-item .content-item-inner .item-inner-side {
    flex: 1;
    padding: 0;
}

.content-item-inner .item-inner-side-title-wrap {
    max-width: 510px;
}

.ap-content-item .content-item-inner .item-inner-side .item-inner-side-title-wrap .title {
    color: #171616;
    margin: 0;
    font-size: 28px;
}

.ap-content-item .content-item-inner .item-inner-side .item-inner-side-title-wrap .title a > span {
    font-size: 16px;
}

.content-item-inner .item-inner-link {
    position: absolute;
    right: 0;
    top: 20px;
    transform: translateY(-50%);
    color: #171616;
}


.content-item-inner .item-link {
    position: relative;
    height: 30px;
    width: 30px;
    display: block;
    overflow: hidden;
}

.ap-content-item .content-item-inner .item-inner-link .item-link {
    transform: rotate(45deg);
}

.content-item-inner .item-link span {
    display: block;
    height: inherit;
    width: inherit;
    transition: all 0.6s;
}

.content-item-inner .item-link span:first-child {
    position: relative;
}


.content-item-inner .item-link span:last-child {
    position: absolute;
    left: -50px;
    bottom: -50px;
    transform: scale(0.1);
}

.ap-content-item .content-item-inner:hover > .item-inner-link .item-link {
    color: #FEC708;
    transform: rotate(0deg);
}

a:hover {
    color: #FEC708;
}

/* End About Berlin Process */


/* Highlighted */

.trending {
    background-color: #F4F5F9;
}

.trending-wrapper .title h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.trending-wrapper {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.trending-wrapper .title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 60px;
}

.trending-wrapper .events {
    overflow: hidden;
    width: 100%;
}

.trending-wrapper .events .js-marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.trending-wrapper .events .js-marquee-wrapper .js-marquee {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-right: 0 !important;
}

.trending-wrapper .events .js-marquee-wrapper .js-marquee a {
    font-size: 24px;
    transition: all ease-in-out .5s;
    overflow: hidden;
    position: relative;
    transform: translateY(0px);
}

.trending-wrapper .events .js-marquee-wrapper .js-marquee a:after {
    content: '';
    background: #1F4A8E;
    background: 0 0;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all ease-in-out .5s;
}

.trending-wrapper .events .js-marquee-wrapper .js-marquee img {
    width: 100px;
}

.marquee_text2 a:hover {
    color: #171616;
}

.marquee_text2 a span {
    transition: all ease-in-out .5s;
    font-weight: 600;
}

.marquee_text2 a:hover span {
    color: #FEC708;
}

@media (max-width: 991px) {

    .trending-wrapper {
        padding: 5px 0;
    }

    .trending-wrapper .events .js-marquee-wrapper .js-marquee a {
        font-size: 18px;
    }
}

/* End Highlighted */

/* Events Section */

.event-item {
    display: flex;
    position: relative;
    align-items: center;
    padding: 30px 25px;
    background-color: #ffffff;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.event-item .date {
    display: inline-block;
    text-align: center;
}

.event-item .date span {
    display: block;
    font-size: 40px;
    font-weight: 600;
}

.event-item .title {
    font-size: 18px;
    margin-top: 20px;
    border-bottom: 1px solid #FEC708;
}

.event-item .subtitle {
    margin-bottom: 5px;
}

.event-item .event-time {
    font-size: 13px;
    background-color: rgba(243, 244, 248, 0.6);
    padding: 4px 16px 4px 7px;
    border-radius: 13px;
    display: none;
}

.event-item .event-button {
    margin-top: 20px;
    background-color: rgba(243, 244, 248, 0.6);
    color: #171616;
    padding: 5px 10px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    transition: all .2s ease-out 0s;
}

.event-item .event-button a:hover {
    color: #171616;
}

.event-item .item-left {
    flex: none;
    width: 26%;
    padding-right: 25px;
}

.event-item .links {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.flip-box {
    background-color: transparent;
    height: 275px;
    border-radius: 10px;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front {
    border-bottom: 3px solid #171616;
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.flip-box .flip-box-back .event-info img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(42%) saturate(3067%) hue-rotate(357deg) brightness(99%) contrast(101%);
    margin-bottom: 15px;
    width: 35px;
}

.flip-box .flip-box-back .event-info {
    display: none;
}

.upcoming-event .flip-box-back .event-info {
    display: block !important;
}

.flip-box.flip-disabled {
    pointer-events: none;
}

.flip-box.flip-disabled .flip-box-inner {
    transform: none;
    box-shadow: none;
}

.flip-box-front {
    background-color: #fff;
    color: #171616;
    padding: 30px 25px;
}

.flip-box-front img {
    height: 50px;
    width: 50px;
}

.flip-box-back {
    position: relative;
    background-color: #ffffff;
    color: #000;
    transform: rotateY(180deg);
    padding: 30px 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.flip-box-back .event-button {
    width: 100%;
    transition: all ease-in-out .5s;
    overflow: hidden;
    position: relative;
    transform: translateY(0px);
}

.flip-box-back .event-button:hover {
    transform: translateY(-5px);
    transition: all ease-in-out .5s;
    cursor: pointer;
}

.flip-box-back .event-button:after {
    content: '';
    background: #FCBA03;
    background: 0 0;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all ease-in-out .5s;
}

.flip-box-back .event-button:hover:after {
    background: #FCBA03;
    width: 100%;
    transition: all ease-in-out .5s;
}

.flip-box-back .event-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    background-color: #ffffff;
    color: #171616;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    transition: all .2s ease-out 0s;
}

.flip-box-back .event-button a i {
    transition: all .2s ease-out 0s;
}

.flip-box-back .event-button a:hover i {
    padding-left: 3px;
    color: #FCBA03;
}

.flip-box-back::after {
    content: '\A';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: all 1s;
    -webkit-transition: all 1s;
    z-index: -1;
}

.upcoming-event .flip-box-back {
    background-image: url('/fe/images/event-bg.jpg') !important;
}

.upcoming-event .flip-box-back::after {
    background: rgba(0, 0, 0, 0.7);
}

.flip-box .flip-box-front .date {
    display: inline-block;
}

.flip-box .flip-box-front .date span {
    display: block;
    font-size: 40px;
    font-weight: 600;
}

.flip-box .flip-box-front .title {
    font-size: 18px;
    margin-top: 20px;
}

.flip-box .flip-box-front .subtitle {
    margin-bottom: 5px;
    font-size: 16px;
}

.flip-box .flip-box-front .event-time {
    display: inline-block;
    font-size: 13px;
    background-color: rgba(243, 244, 248, 0.6);
    padding: 4px 16px 4px 7px;
    border-radius: 13px;
}

.flip-box .flip-box-front .event-button {
    margin-top: 20px;
    background-color: rgba(243, 244, 248, 0.6);
    color: #171616;
    padding: 5px 10px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    transition: all .2s ease-out 0s;
}

.flip-box .flip-box-front .event-button a:hover {
    color: #171616;
}

.upcoming-event .flip-box-back {
    background-color: #3B4046;
    color: #ffffff;
    transform: rotateY(180deg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 3px solid #F8B703;
}

.upcoming-event .flip-box-back h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.upcoming-event .flip-box-back .event-button {
    display: none;
}

.custom-gutter-row {
    margin-right: -15px;
    margin-left: -15px;
}

.custom-gutter-row > [class*='col-'] {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 15px;
}

.custom-gutter-row::after {
    content: '';
    flex: auto;
}

@media (min-width: 992px) {
    .custom-gutter-row > [class*='col-']:nth-last-child(1) {
        margin-bottom: 0; /* Remove bottom margin */
    }

    .custom-gutter-row > [class*='col-']:nth-last-child(2) {
        margin-bottom: 0; /* Remove bottom margin */
    }

    .custom-gutter-row > [class*='col-']:nth-last-child(3) {
        margin-bottom: 0; /* Remove bottom margin */
    }

    .custom-gutter-row > [class*='col-']:nth-last-child(4) {
        margin-bottom: 0; /* Remove bottom margin */
    }
}

/* End Events Section */


/* Results Section */

.results-wrapper .nav-tabs {
    border: unset;
}

.results-wrapper .nav-tabs .nav-item {
    margin-bottom: 15px;
}

.results-wrapper .nav-tabs-vertical .nav-link {
    padding: 15px;
    border: none;
    background-color: #F3F4F8;
    color: #171616;
    border-radius: 0;
    font-size: 16px;
    font-family: 'BerlinProcessSerif', serif;
    font-weight: 400;
}

.nav-tabs .nav-item.show .nav-link {
    background-color: #F3F4F8;
}

.results-wrapper .nav-tabs-vertical .nav-link.active {
    background-color: #171616;
    color: #ffffff;
    padding: 15px;
    font-weight: 600;
}

.results-wrapper .tab-content {
    padding: 0 20px;
    border-left: none;
    border-radius: 0 4px 4px 0;
}


.results-wrapper .tab-content ul li {
    list-style: disc;
    padding: 5px 0;
}

.results-wrapper .tab-content p {
    list-style: disc;
    padding: 5px 0;
}

.results-section .ap-block-title .title-wrapper .subtitle {
    margin-bottom: 0;
}

.col-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

@media (min-width: 576px) {
    .col-sm-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 768px) {
    .col-md-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 992px) {
    .col-lg-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-xl-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 767px) {
    .ap-content-wrapper {
        margin-top: 50px;
    }

    .ap-block-title .title {
        font-size: 32px;
    }

    .ap-block-title .subtitle {
        padding-left: 0;
    }

    .blob {
        display: none;
    }

    .ap-block-title .title {
        border-left: 2px solid #FCBA03;
        padding-left: 10px;
    }

    .ap-content-item .content-item-inner .item-inner-side .item-inner-side-title-wrap .title {
        font-size: 18px;
    }

    .timeline h3 {
        font-size: 18px;
    }

    .page-wrap h2 {
        font-size: 32px;
    }

}

.background-yellow {
    background-color: #FCBA03;
}

.widget-taber-content {
    box-shadow: none;
}

/*.results-wrapper .tab-content ul li {*/
/*    list-style: none;*/
/*}*/

.post-module-1 .list-post .post-thumb img {
    height: 100%;
    object-fit: cover;
}

.text-limit-2-row {
    -webkit-line-clamp: 3 !important;
}

/*.post-content {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

@media (max-width: 991px) {
    .widget-taber {
        margin-top: 50px;
    }
}

.post-thumb.position-relative:hover h6 a {
    color: #ffffff !important;
}

.slick-dots li.slick-active button {
    background: #FCBA03;
    border-color: #FCBA03;
}

.results-wrapper .post-block-list .post-content h4 {
    font-size: 16px;
}

.post-module-1 .post-content-overlay .post-title {
    font-size: 16px;
}

/* End Results */

/* Summits */

.timeline {
    line-height: 1.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.timeline h1, .timeline h2, .timeline h3, .timeline h4, .timeline h5, .timeline h6 {
    line-height: inherit;
}

.timeline-item {
    padding-left: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-info {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 0.5em 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.timeline-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
}

.timeline-marker:before {
    background: transparent;
    border: 3px solid #FCBA03;
    border-radius: 100%;
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
    content: "";
    width: 3px;
    background: #ccd5db;
    display: block;
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 6px;
}

.timeline-item:last-child .timeline-marker:after {
    content: none;
}

.timeline-item:hover .timeline-marker:before {
    background: #FCBA03;
    border: 3px solid #FCBA03;
}

.timeline-content {
    padding-bottom: 40px;
}

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

.timeline-title {
    margin: 0;
}

@media (min-width: 768px) {
    .timeline-split .timeline, .timeline-centered .timeline {
        display: table;
    }

    .timeline-split .timeline-item, .timeline-centered .timeline-item {
        display: table-row;
        padding: 0;
    }

    .timeline-split .timeline-info, .timeline-centered .timeline-info, .timeline-split .timeline-marker, .timeline-centered .timeline-marker, .timeline-split .timeline-content, .timeline-centered .timeline-content {
        display: table-cell;
        vertical-align: top;
    }

    .timeline-split .timeline-marker, .timeline-centered .timeline-marker {
        position: relative;
    }

    .timeline-split .timeline-content, .timeline-centered .timeline-content {
        padding-left: 30px;
    }

    .timeline-split .timeline-info, .timeline-centered .timeline-info {
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .timeline-centered, .timeline-centered .timeline-item, .timeline-centered .timeline-info, .timeline-centered .timeline-marker, .timeline-centered .timeline-content {
        display: block;
        margin: 0;
        padding: 0;
    }

    .timeline-centered .timeline-item {
        padding-bottom: 60px;
        overflow: hidden;
    }

    .timeline-centered .timeline-item:last-child {
        padding-bottom: 0;
    }

    .timeline-centered .timeline-marker {
        position: absolute;
        left: 50%;
        margin-left: -7.5px;
    }

    .timeline-centered .timeline-info, .timeline-centered .timeline-content {
        width: 50%;
    }

    .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered > .timeline-item.period .timeline-content {
        float: none;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .timeline-centered .timeline-item.period {
        padding: 50px 0 90px;
    }

    .timeline-centered .period .timeline-marker:after {
        height: 30px;
        bottom: 0;
        top: auto;
    }

    .timeline-centered .period .timeline-title {
        left: auto;
    }
}

.marker-outline .timeline-marker:before {
    background: transparent;
    border-color: #FCBA03;
}

.marker-outline .timeline-item:hover .timeline-marker:before {
    background: #FCBA03;
}

.timeline-content-right .timeline-thumb img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 3px;
}

.timeline-content-left .timeline-thumb img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    margin-left: 15px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .timeline-content .timeline-thumb img {
        display: none;
    }
}

@media (min-width: 992px) {

    .timeline-content {
        display: flex !important;
        align-items: center !important;
    }

    .timeline-content-left {
        flex-direction: row-reverse;
    }

    .custom-ul {
        padding-left: 30px;
    }
}

.summit-article-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* End Summits */


/* Featured News Section */

.featured-news-section .post-carausel-custom .post-thumb .thumb-overlay {
    min-height: 360px;
}

/* End Featured News Section */


/* Documents Section */

.documents-section .table-alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem !important;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.documents-section table {
    border-spacing: 0 10px !important;
    border: unset !important;
}

.documents-section .table tbody tr {
    margin-bottom: 10px !important;
    -webkit-box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
    box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
}

.documents-section .table tbody th, .documents-section .table tbody td {
    border: none;
    padding: 15px;
    font-size: 14px;
    background: #fff;
}

.documents-page .table-documents {
    padding: 0 15px;
}

.documents-page .button-documents {
    width: 100%;
    padding: 22px 15px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #171616;
    border: unset;
}

@media (max-width: 576px) {
    .documents-page .button-documents {
        margin-top: 20px;
    }
}

.documents-page .button-documents:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #212529;
}

@media (min-width: 992px) {
    .documents-page .button-documents:hover {
        background-color: #171616;
        border: 1px solid #171616;
        color: #ffffff;
    }
}

.documents-page .form-group {
    margin-bottom: 0;
}

/*.documents-section div.table-documents > div.dataTables_wrapper > div.row:first-child {*/
/*    background-color: #ffffff;*/
/*    align-items: center;*/
/*    padding: 15px;*/
/*    box-shadow: 0 5px 12px -12px rgba(0, 0, 0, 0.29);*/
/*    margin: 0;*/
/*}*/

.documents-section div.table-documents > div.dataTables_wrapper > div.row:first-child .dataTables_length label {
    margin: 0;
}

.documents-section div.table-documents > div.dataTables_wrapper > div.row:first-child .dataTables_filter label {
    margin: 0;
}

.documents-section .form-control {
    height: 35px;
    padding: 0 15px;
}

.documents-section tr {
    transition: all ease-in-out .3s;
}

.documents-section tr:hover {
    background-color: #F4F5F9 !important;

}

.documents-section tr:hover td a {
    color: #212529;
    border-bottom: 2px solid #FCBA03;
}

.documents-section tr {
    transition: all ease-in-out .5s;
    position: relative;
    transform: translateY(0px);
}

.documents-section tr:after {
    content: '';
    background: #212529;
    background: 0 0;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all ease-in-out .5s;
}

.documents-section tr:hover {
    transition: all ease-in-out .5s;
}

.documents-section tr:hover:after {
    background: #212529;
    width: 100%;
    transition: all ease-in-out .5s;
}

.documents-section .page-item.active .page-link {
    background-color: #212529;
    border-color: #212529;
}

.documents-section .page-link {
    color: #212529;
}

.documents-section .page-link:hover {
    color: #212529;
    background-color: #ffffff;
}

.documents-section .page-item.active .page-link:hover {
    color: #ffffff;
}

.documents-section .page-link:focus {
    box-shadow: none;
}

@media (max-width: 767px) {
    .documents-section div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center !important;
        margin-top: 20px !important;
    }

    .documents-section div.table-documents > div.dataTables_wrapper > div.row:first-child .dataTables_filter {
        margin-top: 20px;
    }
}

.see-all-documents {
    margin-top: 50px;
    text-align: center;
}

/* End Documents Section */


/* Blog Modal */

body.modal-open {
    padding-right: 0 !important;
}

.berlin-process-modal {
    border-radius: 15px;
}

.modal-open .modal .modal-dialog {
    max-width: 800px;
    width: 100%;
}

.modal-open .modal .modal-dialog .bg-dark-alpha-30:before {
    border-radius: 15px;
}

.custom-berlin-process-modal {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.custom-modal .modal-dialog h2 {
    text-align: center;
    margin-bottom: 35px;
}

.custom-modal .modal-dialog img {
    border-radius: 5px;
}

.custom-modal .item {
    background-color: transparent;
    padding: 75px;
    border: unset;
    height: 100%;
    position: relative;
}

.custom-modal .item .custom-modal-description {
    overflow: unset !important;
    display: block;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    text-align: justify;
}

.custom-modal .item:hover {
    background-color: transparent;
    border: unset;
    height: 100%;
    position: relative;
}

.custom-modal .item:hover::before {
    transform: none;
}

.modal-open .modal .modal-dialog .modal-content button.close {
    background: #171616;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    opacity: 1;
    text-align: center;
    line-height: .4;
    font-size: 20px;
    padding: 0;
    z-index: 9;
    transition: all ease-in-out .5s;
    border: unset;
    text-shadow: none;
}

.modal-open .modal .modal-dialog .modal-content button.close:hover {
    background: #FEC708;
}

.berlin-process-modal .content-section .card {
    background: transparent;
}


.berlin-process-modal .content-section .card .card-header h5 button {
    color: #ffffff;
}

@media (max-width: 991px) {
    .modal-open .modal .modal-dialog {
        max-width: 100% !important;
        margin: 0;
    }

    .berlin-process-modal {
        border-radius: unset !important;
    }

    .berlin-process-modal .slider-button {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .berlin-process-modal .slider-button a {
        margin: 10px 0;
        width: 330px;
        text-align: center;
        font-size: 14px;
    }

    .modal-open .modal .modal-dialog {
        top: unset;
    }

    .modal-open .modal .modal-dialog .modal-content button.close {
        top: 15px !important;
        right: 20px !important;
        position: relative;
    }

    .hs-title-7 {
        line-height: 1;
    }

}

@media (max-width: 674px) {

    .berlin-process-modal .slider-button a {
        margin-right: 0 !important;
    }

    .custom-modal .item {
        padding: 25px;
    }

}

.accordion > dt > a {
    color: #ffffff;
}

.berlin-process-modal .new-gallery-thumbs {
    display: none !important;
}

/* End Modal */

.breadcrumb {
    text-align: center;
    margin-bottom: 20px;
}

.button-documents {
    padding: 15px 50px;
    border-radius: unset;
    background-color: #171616;
    border: 1px solid #171616;
}

.button-documents:hover {
    background-color: #FCBA03;
    border: 1px solid #FCBA03;
    color: #ffffff;
}
