/* ===================================
    Crafto - Product showcase
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
/* variable */
:root {     
    --alt-font: 'Manrope', sans-serif; 
    --primary-font: 'Manrope', sans-serif;
    --base-color: #61a5c2;
    --dark-gray: #02307e;
    --medium-gray:#ffcad4;
} 
/* reset */
body {
    font-size: 18px; font-weight: 600;
    line-height: 32px;
}
/* header */

#home {
  position: relative;
  background: linear-gradient(to top, #ffe5d9, #f1f1f1);
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./slider-bg.png?v=4') center center / cover no-repeat;
  opacity: 0.4; /* adjust opacity here */
  z-index: 0;
}

.bg-1{
  background: #d3f2fa;
}
.bg-2{
  background: #c6e7ff;
}
.agenda-card{
  padding:1rem 1.5rem;
  border-left: 5px solid #6ebfeb;
  border-radius: 8px;
  /*    
  border-top: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  box-shadow:0 0px 12px rgba(0,0,0,0.05);
  */    
  animation: fadeInUp 0.6s ease;
  margin-bottom: 10px;    
}
.agenda-card h5{ font-size: 1.2rem;}
.agenda-card p{ font-size: 1rem; font-weight: 500;}
.agenda-block {
  padding: .5rem 1.5rem; border: 0px solid #cfcfcf;
  border-radius: 0px; /*box-shadow: 0 4px 4px rgba(0,0,0,0.05);*/
  /*box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);*/
  animation: fadeInUp 0.4s ease; margin-bottom: 10px !important;
}
.agenda-card .time{ font-size: 14px; font-weight: 600;}
.bg-faq{ background: #c4f1fc !important; color: #333;}
.bg-break{ background: #6ebfeb !important; color: #FFF;}
.bg-session{ background: #176bb5 !important; color: #FFF;}
.bg-sessions{ background: #1c4596 !important; color: #FFF;}

@media (max-width:900px){
 .agenda-card h6{ font-size: 17px; margin-top: 5px;} 
    .agenda-card p, .agenda-card p strong{ font-size: 1rem !important; text-align: left !important;}    
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.agenda-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
  border-bottom: 2px solid #eee;    
}
.agenda-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}


.agenda-tabs .nav-link {
  position: relative;
  color: #999;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  background: #eee;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease; text-align: center;
}
@media (max-width:900px){
    
    .agenda-tabs .nav-link { padding: 0.75rem .6rem !important; font-size: 1rem !important; text-align: center;}
    .agenda-tabs .nav-link span { font-size: 11px !important;}
}
.agenda-tabs .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 6px;
  background: #66c;
  transition: width 0.3s ease;
}



.agenda-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}

.agenda-entry:hover {
  transform: translateY(-3px);
}

.agenda-card .time {
  font-size: 1.1rem !important; color: #336;
}
.agenda-block .time {font-size: 1.1rem !important; color: #336;
}
.agenda-block p, .agenda-card p{ font-size: 1rem !important; margin: 0; color: #666;}
.agenda-entry .lecture {
  flex: 1;
}
.agenda-entry .lecture h5 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.agenda-entry .speaker {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-entry .speaker img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Colors */
.agenda-entry.session {
  background: #f8f9fa;
  border-left: 5px solid #007bff;
}
.agenda-entry.break {
  background: #eaf7ff;
  border-left: 5px solid #17a2b8;
}
.agenda-entry.faq {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
}

.agenda-block h6{ font-size: 1.1rem !important; color: #336; margin: 0;}
.agenda-card h6{ color: #333; font-size: 1.1rem !important; margin: 0;}
.bg-session h6{ color: #FFF !important;}
/* Responsive */
@media (max-width: 768px) {
  .agenda-entry {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .agenda-entry .time {
    width: 100%;
    margin-bottom: 8px;
  }
  .agenda-entry .speaker {
    flex-direction: row;
  }
}

.agenda-tabs .nav-link:hover::after,
.agenda-tabs .nav-link.active::after {
  width: 100%;
}

.agenda-tabs .nav-link:hover,
.agenda-tabs .nav-link.active {
  color: #fff; background: #176bb5;
}

.nav-link img{ width:54px; display: block; margin:0 auto 3px auto;}
.nav-link span { font-size: .8rem; display: block; color: #dadada; font-weight: 500;}
.text-gray { color: #999;}



#speakers {
  position: relative;
  background:#a1bad6;
  overflow: hidden;
}

#speakers::before{
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url('./images/sp-bg.jpg') center center / cover no-repeat;*/
  z-index: 0;
}
#home > * , #speakers > * {
  position: relative;
  z-index: 1; /* make content visible above overlay */
}

header .navbar-brand img {
    max-height: 125px;
}
.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 10px;
}
header .btn.btn-switch-text.btn-very-small > span {
    padding: 10px 30px;
}
h1 b, h2 b,h3 b,h4 b,h5 b{ color: #02307e;}
h1,h2,h3,h4,h5{ color: #02307e !important;}
/* text gradient color */
.text-gradient-dark-purple-watermelon {
    background: linear-gradient(to right top, rgb(255, 30, 128) 15.923566878980886%, rgb(156, 50, 176) 50.63694267515923%, rgb(96,0,255) 99.68152866242038%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ls-minus-20px {
    letter-spacing: -20px !important;
}
.bg-dark-gray-01 {
    background: #232323;
}
/* btn */
.btn {
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0px;
}
.btn.btn-extra-large {
    font-size: 17px;
}
.btn.btn-large {
    font-size:16px;
}
.btn.btn-medium {
    font-size: 15px;
}
.btn.btn-small {
    font-size: 14px;
}
.btn.btn-very-small {
    font-size: 13px;
}
.btn-gradient-purple-pink {
    background-image: linear-gradient(to right, #ff1e80, #ab2fa8, #7d18d8);
}
.review-star-icon i {
    letter-spacing: 1px;
}
/* slider revolution settings */
.play-video-botton {color: #2c3038;}
.wave-animation {
    display: inline-block;
}
.wave-animation span {
    animation: animate 3s linear infinite;
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 100%;
    position: absolute;
    transform: scale(0);
}
.wave-animation span:nth-child(1) {
    animation-delay: 1s;
}
.wave-animation span:nth-child(2) {
    animation-delay: 2s;
}
.wave-animation span:nth-child(3) {
    animation-delay: 3s;
}
.wave-animation span:nth-child(4) {
    animation-delay: 4s;
}
@keyframes animate {
    0% {
        opacity: 0;
        transform: scale(0) translateX(0);
    }
    50% {
        opacity: 0.4;
        transform: scale(1) translateX(-25px);
    }
    100% {
        opacity: 0;
        transform: scale(1.5) translateX(-50px);
    }
}
/* media query responsive */
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 16px;
        padding-right: 16px;
    }
    header .btn.btn-switch-text.btn-very-small > span {
        padding: 8px 25px;
    }
    .large-icon a {
        font-size: 22px;
        width: 45px;
        height: 45px;
    }
    .large-icon li {
        margin: 0 5px;
    }
    .ls-minus-20px {
        letter-spacing: -10px !important;
    }
    footer .nav-link {
        padding: 10px 10px;
    }
}

.patron{ font-weight: 500; font-size:1.8rem; color: #666;}
.patron b{ font-weight: 700; color: #02307e; font-size: 2.3rem;}
.flag img{width: 42px;}
.flg{ min-height: 34px; width: 48px; height: 40px; padding: 2px; border: 1px solid #02307e; position: absolute; right: 8%; bottom: 10%;}

.magic-drag-cursor #ball-cursor {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  box-shadow: none;
}

label{ font-weight: 600 !important; color: #fff !important; margin-bottom: 0;}
.form-control{ background: transparent; font-weight: 600 !important; padding: 12px; margin-bottom: 0px; color: #fff !important;}
::placeholder { color: #bbb !important; font-weight: 300 !important;}
select{ color: #fff !important;}
select option, select option:checked{ background:#6e7e93; color: #FFF;}
.form-control:focus, .form-control:hover{
    background: rgba(0,0,0, 0.1);
} 

.countdownn{
  display: flex;
  justify-content: center;
  gap: 4px; color: #02307e;
  font-size:12px; z-index: 9;
}

.countdownn div {
  border: 2px solid #02307e;    
  padding:10px 15px; text-align: center;
  border-radius: 10px;
}

.countdownn span {
  display: block;
  font-size:24px;
  margin-bottom: 0px;
  color: #02307e; text-align: center;
}
p{ font-size: 18px; font-weight: 600; text-align: justify;  word-wrap: normal;}
@media (max-width: 991px) {
    .patron{ font-weight: 600; font-size: 1.1rem; color: #222;}
.patron b{ font-weight: 700; color: #000; font-size:1.5rem;}
    p{ font-size: 1.2rem; font-weight: 600; line-height: 1.7rem; text-align: justify; word-wrap: normal;}
    .large-icon li {
        margin: 0 10px;
    }
    .large-icon a {
        font-size: 24px;
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 767px) {
    .elements-social ul li {
        margin-bottom: 0;
    }
    .large-icon a {
        font-size: 21px;
        width: 45px;
        height: 45px;
    }
}