@charset "utf-8";

/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

:root {
	--primary: #ff5757;
	--secondary: #003675;
	--white: #ffffff;
	--black: #212121;
	--fonts: "Poppins", sans-serif !important;
}

body {
	width: 100%;
	font-family: var(--fonts);
	font-size: 16px;
}

.main {
	background-color: var(--white);
}

.container {
	max-width: 1080px;
}

.section {
	width: 100%;
	padding: 40px 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-white {
	background-color: var(--white);
	padding: 60px 0;
}

.bg-gray {
	background-color: #dbdbdb;
}

.logo {
	max-width: 100%;
	margin-bottom: 15px;
	width: auto;
}

.logo img {
	width: 100%;
	max-width: 550px;
}

.designation {
	width: 100%;
	margin-bottom: 0px;
}

.designation ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.designation ul li {
	color: var(--black);
	font-weight: 500;
	font-size: 24px;
	line-height: 40px;
	position: relative;
	padding-left: 15px;
}

.designation ul li:before {
	background-color: var(--primary) !important;
	width: 4px;
	height: 24px;
	position: absolute;
	left: 0;
	content: "";
	top: 50%;
	transform: translateY(-50%);
}

.btn-primary-main {
	padding: 0;
	font-size: 18px;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	background: linear-gradient(0deg, rgba(172, 44, 44, 1) 0%, rgba(255, 87, 87, 1) 100%);
	border: 0;
	border-radius: 5px;
	color: var(--white);
	transition: all 0.3s;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.btn-primary-main:hover {
	color: var(--white);
}

.btn-primary-main::after {
	background: #7d2222;
	position: absolute;
	content: "";
	top: 0;
	z-index: -1;
	width: 0;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	transition: all 0.2s;
}

.btn-primary-main:hover::after {
	width: 100%;
	transition: all 0.2s;
}

.btn-primary-main img{
	width: 29px;
	margin-top: -2px;
}

.btn-linked-in {
	padding: 0;
	font-size: 18px;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	background: #0a66c2;
	border: 0;
	border-radius: 5px;
	color: var(--white);
	transition: all 0.3s;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.btn-linked-in:hover {
	color: var(--white);
}

.btn-linked-in::after {
	background: #353535;
	position: absolute;
	content: "";
	top: 0;
	z-index: -1;
	width: 0;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	transition: all 0.2s;
}

.btn-linked-in:hover::after {
	width: 100%;
	transition: all 0.2s;
}

.btn-contact {
	padding: 0;
	font-size: 18px;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	background: #0b4b8b;
	border: 0;
	border-radius: 5px;
	color: var(--white);
	transition: all 0.3s;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.btn-contact:hover {
	color: var(--white);
}

.btn-contact::after {
	background: #353535;
	position: absolute;
	content: "";
	top: 0;
	z-index: -1;
	width: 0;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	transition: all 0.2s;
}

.btn-contact:hover::after {
	width: 100%;
	transition: all 0.2s;
}

.main-title {
	color: var(--primary);
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
}

/* footer */
.footer {
	background-color: var(--secondary);
	height: var(--secondary);
	padding: 20px 0;
}

.footer p {
	font-size: 14px;
	color: var(--white);
	line-height: 24px;
	margin: 0;
}

.footer p a {
	color: var(--white);

}

.footer p img {
	margin-left: 10px;
}


/* award div */

.award-div {
	width: 98%;
	background-color: var(--white);
	padding: 15px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
}

.award-img-div {
	overflow: hidden;
	width: 100%;
	height: 300px;
	background-color: var(--primary);
	margin-bottom: 20px;
	position: relative;
}

.award-img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.award-div .overlay {
	background-color: rgba(0, 0, 0, 0.3);
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	transition: width 0.3s;
}

.award-div:hover .overlay {
	width: 100%;
	transition: width 0.3s;
}

.award-detail {
	width: 100%;
	height: 100px;
}

.award-detail h4 {
	color: var(--secondary);
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
	margin-bottom: 10px;
}

.award-div:hover h4 {
	color: var(--primary);
	transition: color 0.3s;
}

.award-detail p {
	color: var(--black);
	font-size: 16px;
	font-weight: 500 !important;
}

.award-div h6 {
	color: var(--primary);
	font-weight: 600;
}

.award-div h6 i {
	margin-left: 10px;
}

.award-div:hover h6 {
	color: var(--secondary);
	font-weight: 600;
	transition: color 0.3s;
}




/* news div */

.news-div {
	width: 98%;
	background-color: var(--white);
	padding: 15px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
}

.news-img-div {
	overflow: hidden;
	width: 100%;
	height: 320px;
	background-color: var(--primary);
	margin-bottom: 20px;
	position: relative;
}

.news-img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.news-div .overlay {
	background-color: rgba(0, 0, 0, 0.3);
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	transition: width 0.3s;
}

.news-div:hover .overlay {
	width: 100%;
	transition: width 0.3s;
}

.news-detail {
	width: 100%;
	height: 70px;
	margin-bottom: 10px;
}

.news-detail h4 {
	color: var(--secondary);
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
	margin-bottom: 20px;
}

.news-div:hover h4 {
	color: var(--primary);
	transition: color 0.3s;
}

.news-detail p {
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
}

.news-div h6 {
	color: var(--primary);
	font-weight: 600;
}

.news-div h6 i {
	margin-left: 10px;
}

.news-div:hover h6 {
	color: var(--secondary);
	font-weight: 600;
	transition: color 0.3s;
}








.sd-detail-div {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	height: 770px;
	background-color: #fff;
	/* margin-bottom: 28px; */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
}

.sd-detail-div .sd-detail-img {
	width: 50%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.sd-detail-div:nth-child(odd) .sd-detail-content {
	order: 2;
}

.sd-detail-div:nth-child(odd) .sd-detail-img {
	order: 1;
}

.sd-detail-div:nth-child(even) .sd-detail-content {
	order: 1;
}

.sd-detail-div:nth-child(even) .sd-detail-img {
	order: 2;
}

.sd-detail-div .sd-detail-content {
	width: 50%;
	position: relative;
}

.sd-detail-div .sd-detail-content .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 50px 40px;
	width: 100%;
}

.sd-detail-div .sd-detail-content .text p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	color: var(--black);
	text-align: justify;
	margin-bottom: 0px;
}

.sd-detail-div .sd-detail-content .text p span{
	color: var(--secondary);
	font-weight: 650;
}


.saperator{
	width: 100%;
	background-color: var(--primary);
	height: 1px;
	content: "";
	margin: 30px 0;
}

.edu-text{
	margin-bottom: 20px !important;
}

.edu-text span{
	font-size: 18px;
	color: var(--secondary);
	font-weight: 650;
}




.skill ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.skill ul li {
	color: var(--secondary);
	font-weight: 650;
	font-size: 18px;
	line-height: 26px;
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.skill ul li i{
	color: var(--primary);
	position: absolute;
	left : 0;
	top: 6px;
}