.hero-section {
	position: relative;
    margin-bottom: 75px;
	background-color: var(--primary-blue);
}

.hero-section .hero-content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
	padding: 65px 0;
}

.hero-section .main-content {
	max-width: 642px;
}
.hero-section .main-content .text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
}

.hero-section .bg-img:before {
	content: '';
	mix-blend-mode: multiply;
	background: -o-linear-gradient(bottom, rgba(36, 55, 70, 0.00) 81.43%, #243746 107.96%), -o-linear-gradient(199deg, rgba(36, 55, 70, 0.00) 36.93%, #243746 100%);
	background: linear-gradient(0deg, rgba(36, 55, 70, 0.00) 81.43%, #243746 107.96%), linear-gradient(251deg, rgba(36, 55, 70, 0.00) 36.93%, #243746 100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	z-index: 1;
}

.hero-section .bg-img {
	position: relative;
	min-height: 754px;
	overflow: hidden;
}

.hero-section .bg-img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.hero-section .main-content .text li,
.hero-section .main-content .text ol li::marker,
.hero-section .main-content .text * {
	color: #fff;
}
.hero-section .main-content .text ol li {
    padding: 0;
}

.hero-section .main-content .text ul li:before {
    background-color: #fff;
}

.hero-section .main-content h1 {
	margin-bottom: 45px;
	-webkit-animation: zoomOut 1s ease forwards;
	animation: zoomOut 1s ease forwards;
	opacity: 0;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.hero-section .main-content p {
	-webkit-animation: fadeintext 1s ease forwards;
	animation: fadeintext 1s ease forwards;
	opacity: 0;
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

.hero-section .main-content .hero-btn {
	margin-top: 45px;
	-webkit-animation: fadeintext 1s ease forwards;
	animation: fadeintext 1s ease forwards;
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
	opacity: 0;
}

.past-event-sec {
	padding: 100px 0 75px 0;
}

.past-event-sec .section-title {
	max-width: 630px;
	margin-bottom: 50px;
}

.past-event-main .tab-list ul li {
	padding: 0;
	margin: 0 0 15px 0;
	display: inline-block;
}

.past-event-main .tab-list ul li:before {
	content: none;
}

.past-event-main .tab-list ul li a {
	border-radius: 6px;
	border: 1px solid rgba(222, 202, 164, 0.75);
	padding: 13px 20px;
	font-size: 22px;
	font-weight: 600;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.past-event-main .tab-list ul li:not(:last-child) {
	margin-right: 15px;
}

.past-event-main .tab-list ul {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
}

.past-event-main .tab-list ul li a:hover,
.past-event-main .tab-list ul li a.active {
	background-color: #CADBEB;
	border-color: #CADBEB;
}

.past-event-main .tab-list {
	margin-bottom: 20px;
}
.tab-list-content .tab {
    display: none;
}
.tab-list-content>div:first-child {
	display: block;
}

.tab-list-content .tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
    border-bottom: 1px solid rgba(222, 202, 164, 0.75);
}

.tab-list-content .tab-wrapper .tab-col {
    width: 27.574%;
}

.tab-list-content .tab-wrapper .tab-col .desc_box p{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}

.tab-list-content .tab-wrapper .tab-col:last-child {
    width: 34.927%;
}

.tab-list-content .tab-wrapper .tab-content h3 {
    margin: 0;
    font-size: 22px;
    line-height: 28px;
}

.tab-list-content .tab-wrapper .tab-content ul li:before {
    content: none;
}
.tab-list-content .tab-wrapper .tab-content ul li:not(:last-child) {
    margin-right: 20px;
    width: 40%;
}
.tab-list-content .tab-wrapper .tab-content ul li:last-child {
    width: 60%;
}
.tab-list-content .tab-wrapper .tab-content ul li span.icon img {
    width: 22px;
    height: 22px;
    object-fit: cover;
}
.tab-list-content .tab-wrapper .tab-content ul li {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    color: #243746;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.tab-list-content .tab-wrapper .tab-content ul li span.icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #CADBEB;
    margin-right: 15px;
    flex-shrink: 0;
}
.tab-list-content .tab-wrapper .tab-content ul {
    display: flex;
    width: 100%;
    margin: 0;
}

@-webkit-keyframes zoomOut {
	from {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0;
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoomOut {
	from {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0;
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes fadeintext {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeintext {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (min-width: 768px) {
	.mobile-img {
		display: none;
	}
}
@media (max-width: 1399px) {
	.tab-list-content .tab-wrapper .tab-col {
		width: 25%;
	}
	.tab-list-content .tab-wrapper .tab-col:last-child {
		width: 40%;
	}
}

@media (max-width: 1199px) {
	.hero-section .bg-img {
		min-height: 675px;
	}
	.past-event-sec {
		padding: 70px 0;
	}
	
	.tab-list-content .tab-wrapper .tab-content h3 {
		font-size: 18px;
		line-height: 24px;
	}
	
	.tab-list-content  .tab-content p {
		font-size: 16px;
		line-height: 23px;
	}
	
	.tab-list-content .tab-wrapper .tab-col:nth-child(2) {
		width: 27%;
	}
	
	.tab-list-content .tab-wrapper .tab-content ul li {
		font-size: 16px;
		line-height: normal;
	}
	
	.tab-list-content .tab-wrapper .tab-content ul li span.icon {
		width: 34px;
		height: 34px;
        margin-right: 10px;
	}
	.tab-list-content .tab-wrapper .tab-col {
		width: 20%;
	}
	.tab-list-content .tab-wrapper .tab-col:nth-child(2) {
		width: 27%;
	}
	.tab-list-content .tab-wrapper .tab-col:last-child {
		width: 44%;
	}
	.past-event-main .tab-list ul li a {
		font-size: 18px;
		line-height: 24px; 
	}
}

@media (max-width: 991px) {
	.hero-section .main-content {
		max-width: 600px;
	}

	.hero-section .main-content h1 {
		font-size: 40px;
		line-height: 43px;
		margin-bottom: 15px;
	}

	.hero-section .main-content p {
		font-size: 16px;
		line-height: 23px;
	}

	.hero-section .main-content .hero-btn {
		margin-top: 25px;
	}
	.tab-list-content .tab-wrapper .tab-col {
		width: 100% !important;
	}
	.tab-list-content .tab-wrapper .tab-col:not(:last-child) {
		margin-bottom: 15px;
	}
	.tab-list-content .tab-wrapper .tab-content ul li {
		width: auto !important;
	}
	.past-event-main .tab-list {
		/* margin-bottom: 0; */
	}
	.tab-list-content .tab-wrapper:last-child{
		/* padding-bottom: 0; */
	}
}

@media (max-width: 767px) {
	.hero-section .main-content .hero-btn {
		margin-top: 25px;
	}

	.desktop-img {
		display: none;
	}

	.hero-section .bg-img:before {
		background: -o-linear-gradient(bottom, rgba(36, 55, 70, 0.00) 81.43%, #243746 107.96%), -o-linear-gradient(238deg, rgba(36, 55, 70, 0.00) 29.94%, #243746 61.08%);
		background: linear-gradient(0deg, rgba(36, 55, 70, 0.00) 81.43%, #243746 107.96%), linear-gradient(212deg, rgba(36, 55, 70, 0.00) 29.94%, #243746 61.08%);
	}

	.past-event-main .tab-list ul li:not(:last-child) {
		/* margin-right: 9px; */
	}
    .tab-list-content .tab-wrapper .tab-col .desc_box p {
        font-size: 16px;
        line-height: 23px; /* 143.75% */
    }
	.past-event-main .tab-list ul li a {
		padding: 9px 10px;
	}
	.tab-list-content .tab-wrapper .tab-content ul {
		flex-direction: column;
	}
	
	.tab-list-content .tab-wrapper .tab-content ul li:not(:last-child) {
		margin: 0 0 15px 0;
	}

    .hero-section .main-content .text p {
        font-size: 16px;
        line-height: 23px; /* 143.75% */
    }
    .hero-section .bg-img img {
        object-position: left;
    }
}