.bsc-agenda-section{
    padding:60px 20px;
    text-align:center;
}

.bsc-agenda-container{
    max-width:1280px;
    margin:0 auto;
}

.bsc-agenda-heading {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 60px;
	font-family: ProximaNova-semibold;
}

/* WRAPPER */
.bsc-agenda-wrapper{
    position:relative;
}

/* MAIN LINE */
.bsc-agenda-line{
    position:absolute;
    top:30px;
    left:10%;
    right:10%;
    height:2px;
    background:#7A7A7A;
}
/* GRID */
.bsc-agenda-grid{
    display:flex;
    justify-content:space-between;
    position:relative;
    z-index:2;
    gap: 60px;
}

/* ITEM */
.bsc-agenda-item{
    text-align:center;
    position:relative;
    flex:1;
}

/* CIRCLE */
.bsc-agenda-circle {
	width: 50px;
	height: 50px;
	background: #2D94ED;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin: 0 auto;
	position: relative;
	font-weight: 600;
	font-style: Semibold;
	font-size: 22px;
	leading-trim: NONE;
	line-height: 128%;
	letter-spacing: 0%;
	text-align: center;
	vertical-align: middle;
	font-family: ProximaNova-bold;
}

/* ARROWS */
.bsc-agenda-item:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 22px;
    right: -30px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M13.1523 8.64921C13.1527 8.97696 13.0339 9.27506 12.7958 9.5137L5.05762 16.9717C4.58142 17.4192 3.83652 17.4201 3.35923 16.9439C2.91174 16.4677 2.91086 15.7228 3.38704 15.2455L10.2323 8.65263L3.37159 2.07582C2.89434 1.62944 2.89343 0.854756 3.3398 0.3775C3.78618 -0.0997546 4.56087 -0.100663 5.03812 0.345713L12.7937 7.78555C13.0324 8.02364 13.1519 8.32146 13.1523 8.64921Z' fill='%237A7A7A'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
/* VERTICAL LINE */
.bsc-agenda-vertical{
    width:2px;
    height:23px;
    background:#7A7A7A;
    margin:0 auto;
}

/* CARD */
.bsc-agenda-card {
	background: #2D94ED;
	color: #fff !important;
	padding: 12px;
	border-radius: 20px;
	box-shadow: 0px 0px 8.4px 0px #2D94ED;
	font-size: 20px;
	line-height: 128%;
	letter-spacing: 0%;
	text-align: center;
	font-family: ProximaNova-semibold;
	height: 133px;
	display: flex;
	align-items: center;
}

/* CARD HOVER */
.bsc-agenda-card{
    transition: all 0.3s ease;
}

.bsc-agenda-item:hover .bsc-agenda-card{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CIRCLE HOVER */
.bsc-agenda-circle{
    transition: 0.3s ease;
}

.bsc-agenda-item:hover .bsc-agenda-circle{
    background:#1f6ec2;
    transform: scale(1.1);
}
/* RESPONSIVE */
@media(max-width:768px){
    .bsc-agenda-grid{
        flex-direction:column;
        gap:30px;
    }

    .bsc-agenda-line{
        display:none;
    }

    .bsc-agenda-item::after{
        display:none;
    }
        .bsc-agenda-heading {
    	font-size: 30px;
    }
}

@media(max-width:768px){
     .bsc-agenda-heading {
    	font-size: 24px;
    }
    
}


