/*==========================================================
            GOOGLE FONT
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
}

body {
	background: #f5f8fc;
	color: #222;
}

/*==========================================================
                SECTION
==========================================================*/

.sponsor-section {
	padding: 40px 0 90px;
	background: #f8fbff;
}

/*==========================================================
                HEADING
==========================================================*/

.sponsor-title {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 0;
}

	/* Green Line */

	.sponsor-title::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 63px;
		transform: translateX(-50%);
		width: 150px;
		height: 5px;
		background: #28a745;
		border-radius: 30px;
	}

	/* Moving White Dot */

	.sponsor-title::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 63px;
		width: 8px;
		height: 5px;
		background: #fff;
		border-radius: 20px;
		transform: translateX(-75px);
		animation: sponsor-line-run 5s linear infinite;
	}

@keyframes sponsor-line-run {

	0% {
		transform: translateX(-75px);
	}

	50% {
		transform: translateX(70px);
	}

	100% {
		transform: translateX(-75px);
	}
}

/* Main Heading */

.sponsor-main-title {
	font-size: 46px;
	font-weight: 800;
	color: #0c2d57;
	margin-bottom: 32px;
	line-height: 1.2;
}

/* Sub Heading */

.sponsor-sub-heading {
	display: block;
	margin-bottom: 18px;
	color: #0057c8;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Paragraph */

.sponsor-title p {
	max-width: 700px;
	margin: 0 auto;
	color: #666;
	font-size: 17px;
	line-height: 28px;
}
/*==========================================================
                    CARD
==========================================================*/

.sponsor-card {
	position: relative;
	background: #fff;
	border-radius: 25px;
	overflow: hidden;
	transition: .4s;
	box-shadow: 0 20px 50px rgba(0,0,0,.08);
	height: 100%;
}

	.sponsor-card:hover {
		transform: translateY(-12px);
		box-shadow: 0 30px 60px rgba(0,0,0,.18);
	}

/*==========================================================
                TOP AREA
==========================================================*/

.card-top {
	text-align: center;
	padding: 35px 25px 20px;
}

/*==========================================================
                    ICON
==========================================================*/

.circle-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 38px;
	color: #fff;
	margin-bottom: 20px;
}

/*==========================================================
                COLORS
==========================================================*/

.gold .circle-icon {
	background: linear-gradient(135deg,#ffb100,#ff7b00);
}

.diamond .circle-icon {
	background: linear-gradient(135deg,#0a72ff,#00d4ff);
}

.platinum .circle-icon {
	background: linear-gradient(135deg,#5c6bc0,#3f51b5);
}

.titanium .circle-icon {
	background: linear-gradient(135deg,#7b1fa2,#ba68c8);
}

/*==========================================================
                TITLE
==========================================================*/

.card-top h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
}

.card-top span {
	color: #888;
	font-size: 16px;
}

/*==========================================================
                PRICE
==========================================================*/

.price-box {
	text-align: center;
	padding: 25px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

	.price-box small {
		color: #999;
		display: block;
		margin-bottom: 8px;
	}

	.price-box h1 {
		color: #0c2d57;
		font-size: 40px;
		font-weight: 800;
	}

/*==========================================================
                FEATURES
==========================================================*/

.feature-list {
	list-style: none;
	padding: 30px;
}

	.feature-list li {
		display: flex;
		align-items: center;
		margin-bottom: 18px;
		color: #555;
		font-size: 15px;
	}

		.feature-list li i {
			color: #12b76a;
			margin-right: 12px;
			font-size: 18px;
		}

/*==========================================================
                BUTTON
==========================================================*/

.download-btn {
	width: calc(100% - 50px);
	margin: 0 auto 30px;
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	border-radius: 50px;
	font-weight: 600;
	color: #fff;
	transition: .4s;
}

/*==========================================================
            BUTTON COLORS
==========================================================*/

.gold .download-btn {
	background: #ff9800;
}

	.gold .download-btn:hover {
		background: #e68900;
	}

.diamond .download-btn {
	background: #0a72ff;
}

	.diamond .download-btn:hover {
		background: #005ce0;
	}

.platinum .download-btn {
	background: #3f51b5;
}

	.platinum .download-btn:hover {
		background: #32408f;
	}

.titanium .download-btn {
	background: #8e24aa;
}

	.titanium .download-btn:hover {
		background: #6d1b8c;
	}

/*==========================================================
                RIBBON
==========================================================*/

.popular-tag {
	position: absolute;
	top: 18px;
	right: -45px;
	width: 180px;
	text-align: center;
	background: #ff1744;
	color: #fff;
	padding: 8px 0;
	transform: rotate(45deg);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
}
/*==========================================================
                RESPONSIVE
==========================================================*/

@media (max-width:1200px) {

	.sponsor-main-title {
		font-size: 40px;
	}

	.sponsor-title::before {
		width: 140px;
		top: 58px;
	}

	.sponsor-title::after {
		top: 58px;
	}
}

@media (max-width:992px) {

	.sponsor-card {
		margin-bottom: 25px;
	}

	.sponsor-main-title {
		font-size: 38px;
		margin-bottom: 28px;
	}

	.sponsor-title::before {
		width: 130px;
		top: 56px;
	}

	.sponsor-title::after {
		top: 56px;
	}
}

@media (max-width:768px) {

	.sponsor-section {
		padding: 50px 15px 70px;
	}

	.sponsor-main-title {
		font-size: 34px;
		margin-bottom: 25px;
		line-height: 42px;
	}

	.sponsor-sub-heading {
		font-size: 14px;
		letter-spacing: 1px;
		margin-bottom: 15px;
	}

	.sponsor-title p {
		font-size: 15px;
		line-height: 26px;
		padding: 0 15px;
	}

	.price-box h1 {
		font-size: 34px;
	}

	.circle-icon {
		width: 80px;
		height: 80px;
		font-size: 32px;
	}

	/* Green Line */

	.sponsor-title::before {
		width: 120px;
		height: 4px;
		top: 50px;
	}

	.sponsor-title::after {
		width: 6px;
		height: 4px;
		top: 50px;
		transform: translateX(-60px);
	}
}

@media (max-width:576px) {

	.sponsor-section {
		padding: 50px 15px;
	}

	.sponsor-main-title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 22px;
	}

	.sponsor-sub-heading {
		font-size: 13px;
		letter-spacing: 1px;
		margin-bottom: 12px;
	}

	.sponsor-title p {
		font-size: 14px;
		line-height: 24px;
		padding: 0 10px;
	}

	.card-top h3 {
		font-size: 26px;
	}

	.price-box h1 {
		font-size: 28px;
	}

	.feature-list {
		padding: 25px;
	}

	.download-btn {
		width: 90%;
	}

	/* Green Line */

	.sponsor-title::before {
		width: 90px;
		height: 4px;
		top: 42px;
	}

	.sponsor-title::after {
		width: 6px;
		height: 4px;
		top: 42px;
		transform: translateX(-45px);
	}
}
/*=================================
            SILVER
=================================*/

.silver .circle-icon {
	background: linear-gradient(135deg, #d9d9d9, #9c9c9c);
}

.silver .download-btn {
	background: linear-gradient(135deg, #c0c0c0, #8f8f8f);
	color: #fff;
}

	.silver .download-btn:hover {
		background: linear-gradient(135deg, #a9a9a9, #7a7a7a);
	}
/*==========================
        PARTNER
==========================*/

.partner .circle-icon {
	background: linear-gradient(135deg,#00b894,#009688);
}

.partner .download-btn {
	background: linear-gradient(135deg,#00b894,#009688);
}

	.partner .download-btn:hover {
		background: linear-gradient(135deg,#009688,#00796b);
	}