:root{
    --bg-gradient:linear-gradient(90deg, rgb(42, 57, 79) 35%, rgb(61, 80, 107) 100%);
    --bg-dark-gradient:linear-gradient(-45deg, rgba(166,164,237,1) 20%, rgb(65, 114, 239) 100%);
    --green:rgb(46,181,131);
    --h-color: #261f55;
    --fair-color:#4172ed;
    --light-bg:rgb(237,239,251);
    --bg-gradient-bottom:linear-gradient(45deg, rgba(243,233,242,1) 35%, rgba(166,164,237,1) 100%);

}
.pink{
    background: #ede4f5!important;
}
.cream{
    background: #fff7ee!important;
}
.blue{
    background: #eef6ff!important;
}
.green{
    background: #e8ffda!important;
}
/* ------ desktop ---- */
body{
    margin: 0px;
    padding: 0px;
}
.vertical-center {
    position: relative;
    margin: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
a{
    color: var(--fair-color) !important;
}
a:hover{
    text-decoration: none;
}
h1{
    color: var(--h-color);
    font-weight: 600;
    font-size: 45px !important;
}
h3{
    color: var(--h-color);
    font-weight: 600;
    font-size: 30px;
}
h4{
    color: var(--h-color);
    font-weight: 500;
}
.logo{
    height: 45px;
    display: inline-block;
}
.logo img{
    height: 100%;
}

.selectionbox-language{
    float: right;
    line-height: 50px;
    margin-right: 15px;
    font-weight: 500;
    color: var(--h-color);
}

/*====================countdown===================*/
.countdown{
    text-align: center;
    padding-top: 20px;
}
.countdown-item{
    display: inline-block;
    width: 90px;
    height: 90px;
    background: #ffffff47;
    margin: 5px;
    padding: 6px;
    border-radius: 8px;
}
.countdown-item span{
    font-size: 2.5rem;
}
.countdown-item .number{
    display: inline-block;
    width: 100%;
    font-size: 39px;
    font-weight: 500;
    color: #261f55;
}
.countdown ul{
    color: #e9eef2;
}
.section-registration-form{
    background: #e9eef2;
    padding-bottom: 90px;
}
li {
    display: inline-block;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

li span {
    display: block;
    font-size: 4.5rem;
}
.select2-selection__choice span{
    font-size: 1.5rem;

}
/*=====================*/
.section-info .description{
    text-align: center;
}
.description{
    color: #e9eef2;
    margin-top: 30px;
}
.description h3{
    color: #e9eef2;
}
.form-header h2{
    color: #326789;
}
.form-header span{
    color: #adb5bb;
}
.form-content{
    width: 100%;
    background: white;
    position: relative;
    border-radius: 18px;
    box-shadow: 0 27px 44px -13px rgb(0 0 0 / 40%);
    padding: 30px;
    z-index: 9999;
}
.form-item-content{
    display: inline-block;
    margin: 0px 10px;
    margin-bottom: 20px;
}
.form-item-content textarea{
    resize: vertical;
}
.form-item-content textarea,
.form-item-content input,
.form-item-content select{
    border-radius: 8px;
    border: 0px;
    background: #d8dcdf47;
    height: 50px;
    width: 100%;
    padding: 0px 28px;
}
.form-item-content textarea:focus,
.form-item-content input:focus,
.form-item-content select:focus{
    outline: 0px;
}
/* The combo-item */
.combo-item {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.combo-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 1px;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.combo-item:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.combo-item input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.combo-item input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.combo-item .checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

/* selection box */
    /* The container */
    .selection-item {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 5px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Hide the browser's default checkbox */
    .selection-item input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        /*height: 0;*/
        /*width: 0;*/
    }

    /* Create a custom checkbox */
    .selectbox {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background-color: #eee;
    }

    /* On mouse-over, add a grey background color */
    .selection-item:hover input ~ .selectbox {
        background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .selection-item input:checked ~ .selectbox {
        background-color: #2196F3;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .selectbox:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .selection-item input:checked ~ .selectbox:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .selection-item .selectbox:after {
        left: 7px;
        top: 3px;
        width: 7px;
        height: 12px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
/* END selection box*/

.form-button{
    min-width: 30%;
    background: #E65C4F;
    height: 47px;
    border-radius: 8px;
    border: 0px;
    font-size: 18px;
    color: #e9eef2;
}
.part-2{
    width: calc(50% - 23px);
}
.part-1{
    width: calc(100% - 23px);
}
.part-3{
    width: calc(33.3% - 23px);
}
.button{
    width: 140px;
    height: 45px;
    border: 0px;
    border-radius: 7px;
    background: var(--green);
    text-align: center;
    color: white;
    font-weight: 500;
    padding: 9px;
    display: inline-block;
    margin-right: 5px;
}
.border-button{
    width: 140px;
    height: 45px;
    border: 1px solid var(--h-color);
    border-radius: 7px;
    text-align: center;
    color: var(--h-color);
    font-weight: 500;
    padding: 9px;
    display: inline-block;
}
.button:hover,
.border-button:hover{
    cursor: pointer;
}
.nav-tabs{
    display: flex;
    justify-content: center;
}
.tab .nav-tabs li a{
    transition: all 0.3s ease 0s;
    height: 50px;
    padding: 15px 25px;
    border: none;
    background: #e9eef2;
    color: #326789 !important;
    border-bottom: 2px solid #326789;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li a.active,
.tab .nav-tabs li a.active:hover {

    color: #E65C4F !important;
    border-color: #E65C4F;
}
.nav-tabs li:hover a{
    color: #e65c4f !important;
    border-color: #e65c4f;
}
/* ----- FIRST SECTION ---- */
.navbar{
    /*background:transparent !important;*/
    /*background-color: transparent !important;*/
    position: relative;
    width: 100%;
    height: 55px;
    background: var(--bg-gradient);
    z-index: 9999;
}
.navbar .navbar-btn{
    font-weight: 500;
    color: var(--h-color);
    float: right;
    margin-left: 15px;
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    min-width: 60px;
}
footer{
    background: var(--bg-gradient);
    min-height: 70px;
    color: #e9eef2;
}
.navbar .navbar-btn:hover{
    cursor: pointer;
}
.navbar .container{
    height: 55px;
    border-bottom: 2px solid #bfbfbf59;
    display: inline-block;
}
section .col{
    display: inline-block;
}
section .container{
    height: 100%;
}
.countdown{
    margin-top: 35px;
}
.section-info{
    width: 100%;
    height: 450px;
    background: var(--bg-gradient);
}
.section-info .container{
    position: relative;
}
.asxd{
    fill: #e9eef2 !important;
}
.selected-lng{
    color: #e9eef2 !important;
}
.section-info .row{
    width: 100%;
}
.section-seminars img,
.section-info img{
    width: 100%;
}
.card-img{
    width: 35%;
}
.section-seminars{
    position: relative;
    width: 100%;
    height: 690px;
}
.section-cards {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 90px;
    background-color: #e9eef2;
}
.section-cards .row{
    width: 100%;
    margin: 0;
}
.started{
    background: white;
    border-radius: 20px;
    height: 40px !important;
    line-height: 40px !important;
    margin-top: 5px;
    padding: 0px 15px 0px 15px;
}
.section-cards .card{
    height: 345px;
    width: 100%;
    border: 0px;
    border-radius: 0px;
    text-align: center;
}
.card .container{
    bottom: 0px;
    width: calc(100% - 15px);
    position: absolute;
    height: auto;
    padding: 0px 90px 35px 90px;
}
.pink{
    background: #ede4f5;
}
.cream{
    background: #fff7ee;
}
.blue{
    background: #eef6ff;
}
.green{
    background: #e8ffda;
}

.section-packets{
    position: relative;
    width: 100%;

}
.section-packets .container{
    text-align: center;
    height: 100%;
    position: relative;
}
.section-packets .row{
    width: 100%;
    margin-top: 45px;
}
.section-packets .packet-card{
    box-shadow: 0px 5px 20px #ededed;
    border-radius: 10px;
    margin: 10px;
    max-width: 31% !important;
}
.packet-card-content{
    width: 100%;
    height: 400px;
    border-radius: 10px;
}
 .packet-card:hover{
    box-shadow: 0px 12px 20px #e4e4e4;
    cursor: pointer;
}
.speaker-desc{
    display: grid;
    flex: 1;
    max-height: 100%;
}
 .section-cards .container-desc p{
     margin-bottom: 0px;
     overflow: hidden;
     font-weight: 400;
     display: grid;
 }
 ::-webkit-scrollbar{
     width: 0px;
 }
.section-packets .header-content{
    width: 47%;
    margin: auto;
    margin-top: 45px;
    margin-bottom: 10px;
}
.header-content{
    text-align: center;
    margin-bottom: 50px;
    color: #326789;
}
.header-content span{
    color: #6c757d;
}
.section-packets .dsc-content{
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: calc(100% - 30px);
    height: 100%;
}
.dsc-content .button{
    width: 122px;
    height: 34px;
    border: 0px;
    border-radius: 7px;
    background-image: var(--bg-dark-gradient);
    text-align: center;
    color: white;
    font-weight: 500;
    padding: 5px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    transition: 0.5s;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.button:hover{
    background-position: right center;
}

.dsc-content p{
    line-height: 2 !important;
    margin-top: 25px;
}

/*----------------------------------------*/


/*speakers div*/
.speakers-header{
    text-align: center;
}
.speakers{
    margin-top: 5rem;
    width: 100%;
    min-height: 600px;
    margin: auto;
    margin-bottom: 10rem;
    background: #ede4f5;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 210px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.speakers-col{
    background-color: #ffffff;
    margin: 25px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
    border-radius: 8px;
    color: #3a3a3a !important;
    border-radius: 30px;
    height: 386px;
    display: inline-block;
    padding: 0px;
    margin: 5px;
}
.container-desc{
    border-radius: 0px 0px 30px 30px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.container-desc h4{
    font-size: 16px;
    color: #326789;
}
.container-desc p, .container-desc a{
    color: #6c757d !important;
    font-size: 13px;
}
.container-desc a:hover{
    cursor: pointer;
    color:#E65C4F !important;
}
.speakers-col img{
    border-radius: 30px 30px 0px 0px;
}
.speakers .col-md-3{
    padding-left: 0!important;
    padding-right: 0!important;
    margin: 25px;
    height: 100%;
}
.sep-card-list{
    width:100%;
}
.speakers-col{
    height: 410px;
    position: relative;
}
.social-btn {
    width: 24px;
    display: inline-block;
}
.speakers-grid{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    width: calc(100% - 60px);
    margin-top: 20px;
    grid-gap: 20px;
}
.speakers-item{
    display: grid;
    grid-template-rows: 200px auto;
    background-color: #f8f8f9;
    margin: 18px 0;
    border-radius: 14px;
    color: #3a3a3a !important;
    padding: 0px;
    box-shadow: 0 20px 60px rgb(0 0 0 / 7%);

}
.speakers-img{
    height: 200px;
    overflow: hidden;
    border-radius: 14px 14px 0px 0px;
    overflow: hidden;
    border-radius: 14px 14px 0px 0px;
}
.speakers-item:hover{
    cursor: pointer;
}
.speakers-item img{
    transition: transform 2s ease-out;
}
.speakers-item:hover img{

    filter: brightness(100%);
    transform: scale(1.1);
    transition: transform 2s, -webkit-transform 2s;
}

.speakers-img > img {
    border-radius: 14px 14px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.social-icon {
    width: 25px;
    height: 25px;
}
.social-icon:hover{
    background-color: #E65C4F !important;
}
/*=====================calendar div ===============*/
.section-packets{
    min-height: 580px;
    margin: auto;
    background: transparent;

}
.container {
    width: 100%!important;
}

.calendar-header{
    text-align: center;
    padding-top: 3rem;
}
.calendar-header h2{
    color: #326789;
}
.snippets .col-md-9{
    width: 100%;
}
.timeline-centered {
    position: relative;
    margin-top: 30px;
}

.timeline-centered.timeline-sm .timeline-entry .timeline-entry-inner .timeline-label {
    padding: 1em 2em;
    width: 100%;
    border-radius: 8px;
}
.timeline-label{
    text-align: left;
}
.timeline-label span{
    display: inline-block;
    color: #e65c4f;
    font-weight: 400;
    float: right;
    margin-bottom: 10px;
}
.timeline-centered:before,
.timeline-centered:after {
    content: " ";
    display: table;
}
.timeline-centered:after {
    clear: both;
}
.timeline-centered:before {
    content: '';
    position: absolute;
    display: block;
    width: 7px;
    background: #ffffff;
    left: 5%;
    top: 30px;
    bottom: 0px;
    height: 135%;
    margin-left: -4px;
}
.timeline-centered .timeline-entry {
    position: relative;
    width: 85%;
    float: left;
    left: 5%;
    /* margin-bottom: 70px; */
    clear: both;
}
.timeline-centered .timeline-entry:before,
.timeline-centered .timeline-entry:after {
    content: " ";
    display: table;
}
.timeline-centered .timeline-entry:after {
    clear: both;
}
.timeline-centered .timeline-entry.begin {
    margin-bottom: 0;
}
.timeline-centered .timeline-entry.left-aligned {
    float: left;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
    margin-left: 0;
    margin-right: -28px;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
    left: auto;
    right: -115px;
    text-align: left;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
    float: right;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
    margin-left: 0;
    margin-right: 85px;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -9px;
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.timeline-centered .timeline-entry .timeline-entry-inner {
    position: relative;
    margin-left: -31px;
}
.timeline-centered .timeline-entry .timeline-entry-inner:before,
.timeline-centered .timeline-entry .timeline-entry-inner:after {
    content: " ";
    display: table;
}
.timeline-centered .timeline-entry .timeline-entry-inner:after {
    clear: both;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
    position: absolute;
    left: -115px;
    text-align: right;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--h-color);
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
    display: block;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child {
    font-size: 18px;
    font-weight: bold;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child {
    font-size: 12px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
    background: #fff;
    color: #326789;
    display: block;
    width: 65px;
    height: 65px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 50%;
    text-align: center;
    border: 7px solid #ffffff;
    line-height: 49px;
    font-size: 14px;
    float: left;
    box-shadow: 0px 9px 20px #6565652e;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
    background-color: #dc6767;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
    background-color: #5cb85c;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
    background-color: #5bc0de;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
    background-color: #f0ad4e;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
    background-color: #d9534f;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-red {
    background-color: #bf4346;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-green {
    background-color: #488c6c;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-blue {
    background-color: #0a819c;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-yellow {
    background-color: #f2994b;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-orange {
    background-color: #e9662c;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-pink {
    background-color: #bf3773;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-violet {
    background-color: #9351ad;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-grey {
    background-color: #4b5d67;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-dark {
    background-color: #594857;
    color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
    position: relative;
    background: #ffffff;
    padding: 1.7em;
    margin-left: 85px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red {
    background: #bf4346;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red:after {
    border-color: transparent #bf4346 transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green {
    background: #488c6c;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green:after {
    border-color: transparent #488c6c transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange {
    background: #e9662c;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange:after {
    border-color: transparent #e9662c transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow {
    background: #f2994b;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow:after {
    border-color: transparent #f2994b transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue {
    background: #0a819c;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue:after {
    border-color: transparent #0a819c transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink {
    background: #bf3773;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink:after {
    border-color: transparent #bf3773 transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet {
    background: #9351ad;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet:after {
    border-color: transparent #9351ad transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey {
    background: #4b5d67;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey:after {
    border-color: transparent #4b5d67 transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark {
    background: #594857;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark:after {
    border-color: transparent #594857 transparent transparent;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark p {
    color: #ffffff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 9px 0;
    border-color: transparent #ffffff transparent transparent;
    left: 0;
    top: 20px;
    margin-left: -9px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
    margin: 0;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
    margin-top: 15px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-title {
    margin-bottom: 10px;
    font-weight: bold;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-title span {
    -webkit-opacity: .6;
    -moz-opacity: .6;
    opacity: .6;
    -ms-filter: alpha(opacity=60);
    filter: alpha(opacity=60);
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p .timeline-img {
    margin: 5px 10px 0 0;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p .timeline-img.pull-right {
    margin: 5px 0 0 10px;
}
.timeline-centered:nth-last-child(1):before{
    display: none;
}
.timeline-label p{
    overflow: hidden;
    letter-spacing: .01rem;
}
.timeline-label .title{
    color: #326789;
}
/*################################################################*/
.section-events{
    background: #e9eef2;
    padding-bottom: 90px;
    padding-top: 50px;
}
.speaker-img{
    width: 45px;
    height: 45px;
    border-radius: 50px;
    object-fit: cover;
    margin-right: 4px;
    box-shadow: 0px 9px 20px #6565655c !important;
}
.speakers-title{
    font-size: 17px;
    margin-bottom: 8px;
    letter-spacing: .04rem;
    font-weight: 300;
    margin-top: 20px;
}
.speaker-plus {
    text-align: center;
    line-height: 50px;
    background: #f3f3f3;
    color: #376b8c;
    font-size: 17px;
    width: 50px;
    border-radius: 50%;
    display: inline-block;
}

.img-text-section{
    padding: 40px 0px;
    background: #e9eef2;
}
.img-text-section .media-content img{
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 11px 14px #0000002b;
}
.img-text-section .grid-content{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    width: calc(100% - 20px);
}
.img-text-section h2{
    color: #326789;
}
.img-text-section p{
    color: #6c757d;
}
.add-to-calendar-content{
    margin: 0px !important;
}
.calendar-button{
    background: transparent !important;
    box-shadow: 0px 0px 0px transparent !important;
    height: fit-content !important;
    padding: 0px !important;
    margin: 0px !important;
    margin-right: 15px !important;
    color: #e9eef2 !important
}
.calendar-button img{
    width: 20px !important;
}
.add-to-calendar-content .dropdown-menu{
    text-align: left;
}
textarea.form-control{
    max-height: 150px;
}
.file-button button{
    background-color: #f4f5f6 !important;
    border-radius: 5px;
    padding: 10px;
    border: 0px !important;
    color: #2a394f !important;
}
.speaker-events{
    margin-top: 11px !important;
    font-size: 10px !important;
    display: inline-block !important;
}
@media (max-width: 425px) {
    .img-text-section .grid-content{
        display: grid;
        grid-template-columns: 100%;
        gap: 20px;
        width:100%;
    }
    .img-text-section .grid-content .text-content{
        text-align: center;
    }
    .dropdown-text{
        display: none;
    }
    .form-content{
        padding: 20px 15px !important;
    }
    .part-2 ,
    .part-1{
        width: calc(100% - 20px);
    }
    .form-button{
        min-width: calc(100% - 20px) !important;
    }
    .section-registration-form{
        padding-bottom: 80px;
    }
    .container-desc{
        padding: 15px;
    }
    .container-desc h4{
        font-size: 17px;
    }
    .section-cards .container-desc p{
        font-size: 13px;
    }
    .section-cards{
        padding-bottom: 50px;
    }
    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon{
        width: 40px;
        height: 40px;
    }
    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label{
        margin-left: 55px;
    }
    .tab .tab-content{
        padding: 30px 0px !important;
    }
    .timeline-icon span{
        display: none !important;
    }
    .speakers-grid{
        grid-template-columns: 50% 50%;
        grid-gap: 15px;
        width: calc(100% - 15px);
    }
    .tab .nav-tabs li{
        width: auto !important;
    }
    .description{
        margin-top: 15px;
    }
    .countdown-item{
        width: 67px;
        height: 85px;
        font-size: 11px;
    }
}