body {
	font-family: "Open Sans", sans-serif;
}

.big-heading {
	font-weight: 600;
	font-size: clamp(30px, 8vw, 60px);
	color: #45505b;
}

.card-hover {
    position: relative;
    transition: transform 0.3s;
}

/* card for certificates */
.card-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
} 

.card-hover:hover .card-overlay {
    opacity: 1;
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;  
}

.card-link:hover {
    text-decoration: none;
}

.sub-heading-1 {
	font-size: clamp(24px, 8vw, 50px);
	color: #45505b;
}

.sub-heading-2 {
	font-size: clamp(24px, 8vw, 50px);
	color: #0563bb;
}

.paragraph {
	color: #272829;
	font-size: 18px;
	line-height: 1.8;
}

.circle-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f2f3f5;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Desktops and laptops */
@media (min-width: 1024px) {
	#hero,
	#about {
		height: 100vh;
		display: flex;
		align-items: center;
	}
}

/* Tablets and smaller laptops */
@media (min-width: 768px) and (max-width: 1023px) {
	/* #hero {
		margin-left: 60px;
	}
	#portfolios {
		margin-left: 60px;
	} */
}

/* Mobile phones and small tablets */
@media (max-width: 767px) {
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
  }
  
  .section-title {
	text-align: center;
	padding-bottom: 30px;
  }
  
  .section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #45505b;
  }
  
  .section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
  }
  
  .section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #0563bb;
	bottom: 0;
	left: calc(50% - 20px);
  }
  
  .section-title p {
	margin-bottom: 0;
  }
  
/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}
