
/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Apply Montserrat font to the entire website */
body {
    font-family: 'Montserrat', sans-serif;
}

  /*---------------------
  Conter
-----------------------*/
.bg-gradient {
    background-image: -o-linear-gradient(90deg, #3343A7 0%, #8C3C8C 50%, #E54343 100%), -o-linear-gradient(90deg, #3343A7 0%, #8C3C8C 50%, #E54343 100%);
    background-image: linear-gradient(90deg, #3343A7 0%, #8C3C8C 50%, #E54343 100%), linear-gradient(90deg, #3343A7 0%, #8C3C8C 50%, #E54343 100%);
}

.counter-section {
    padding: 40px 0;
}

.counter-section .counter-text span {
    font-size: 16px;
    color: #ffffff;
}

.counter-section .counter-text h3 {
    color: #ffffff;
    font-weight: 700;
    line-height: 38px;
    margin-top: 10px;
}

.counter-section .cd-timer {
    text-align: right;
}

.counter-section .cd-timer .cd-item {
    display: inline-block;
    text-align: center;
    margin-left: 35px;
    height: 120px;
    width: 120px;
    padding-top: 32px;
    position: relative;
}

.counter-section .cd-timer .cd-item:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffffff;
    content: "";
    opacity: 0.1;
    border-radius: 4px;
}

.counter-section .cd-timer .cd-item:first-child {
    margin-left: 0;
}

.counter-section .cd-timer .cd-item span {
    font-size: 60px;
    color: #ffffff;
    font-weight: 600;
    line-height: 30px;
}

.counter-section .cd-timer .cd-item p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 30px;
}

/*venue */

.event-location-section {
    padding: 60px 0;
    background-color: #fff;
}

.event-location-section h4 {
    text-transform: uppercase;
    color: #004a80;
}

.event-location-section h2 {
    color: #004a80;
    font-weight: 700;
}

.event-location-section p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

.event-location-section a {
    color: #007bff;
    text-decoration: none;
}

.event-location-section a:hover {
    text-decoration: underline;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.speaker-wrap {
    background-color: transparent;
    padding: 0px;
    column-gap: 10px;

}

.speaker-wrap:hover {
    box-shadow: none;
}

.speaker-wrap .time-box {
    color: #1F324F;
    width: 180px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FADBD3;
    padding: 15px;
    box-shadow: 1px 2px 2px #ddd;
}

.speaker-wrap .text h2 {
    margin-bottom: 0px;
}

.speaker-wrap .text {
    color: #1F324F;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background: #FADBD3;
    padding: 15px;
    box-shadow: 1px 2px 2px #ddd;
}

.ftco-search .nav-pills .nav-link:hover {
    background: #FADBD3;
    color: #1F324F;
}

.ftco-search .nav-pills .nav-link.active {
    background: var(--red);
    color: #fff;
}