/* Google Fonts */

/*.heading-link {
	position: relative;
    top: 5.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
	background: url(../images/2.jpg) no-repeat;
	text-align: center;  
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	padding:3rem 5%;
}
.heading-link p {
	text-align: center;
	color: #00bf8e;
}*/
.about {
	position: relative;
    top: 1rem;
    /*overflow: hidden;
    height: 3vh;
    margin-bottom: 2rem;	
	text-align: center;  
	background-size: cover;
	background-position: center;
	color: var(--color-white);*/
}
.abt-section{
	display: flex;
	align-items: center;
	/* flex-wrap: wrap; */
}
@media screen and (max-width: 1024px) {
	.abt-section{
		display: block
	}
	.about_lef img{
		width: 60%;
	
	}
}
.about_container {
    
	/*text-align: center;
	
	position: relative;
    /*top: 3.2rem;*/
	padding: 30px 0;
	display: grid;
    grid-template-columns: 45% 50%;	
	
}

.about_lef {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

/* .about_left {
	margin-right: 1rem;
	background: url(../images/about-img.svg);
	position: relative;
	text-align: center;  
	background-size: cover;
	background-position: center;
	padding:12rem 1%;
} */

.about_right{
	display: inline-block;
    text-align: left;
	padding: 6px;
	/*background-color: var(--color-white);*/
	background-color:#fdfffd;
	border-radius: 3px;
	margin: 5px;
	color: #071162; 
	margin-bottom: 4rem;  
}
.about_header{
	overflow: hidden;
	width:100%;
	text-align: center;
	font-size: 1.5em!important;
	border-bottom: 2px solid #eaeaea;
	margin-bottom: 0.5rem;
	padding: 5px 5px;
}
.about p {
   margin: 0rem 0 0.5rem;
   font-size: 1.1rem;
   line-height:1.2;
 }
/* ****************Courses**************** */
.courses__container {
	position: relative;
    top: 1rem;
    overflow: hidden;
    color: var(--color-white);
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:1rem;
	
}
.course__image {
	display: flex;
	justify-content: center;
}
.course__image img {
	height: 150px;
    object-fit: contain;
}
.course{
    /*background: var(--color-bg1);*/
	background:#afb0bb;
    /* text-align: center; */
    border: 1px solid transparent;
    transition: var(--transition);
	/* display: flex; */
}
.course:hover {
    background: transparent;
    border-color: var(--color-primary);
	color: #000;
	
}
.course__info {
   padding: 2rem; 
}
.course__info p {
   margin: 1.2rem 0 2rem; 
   font-size: 0.9rem;
}
/*img {
    width: 100%;
    display: block;
    object-fit: cover;
}*/
/* ****************FOOTER**************** */
/*
footer {
	position: relative;
    background: var(--color-bg1);
    padding-top: 5rem;
    font-size: 00.9rem;
	top:1.7rem;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
}

.footer__container > div h4 {
    margin-bottom: 1.2rem;
}

.footer__1 p {
   margin: 0 0 2rem; 
}

footer ul li {
    margin-bottom: 0.7rem;
}

footer ul li a:hover {
    text-decoration: underline;
}

.footer__socials {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.footer__copyright {
    text-align: center;
    margin-top: 4rem;
    padding: 1.2rem 0;
    border-top: 1px solid  var(--color-bg2);
}
*/

/* ************* MEDIA QUERIES (TABLET) ***************** */
@media screen and (max-width: 1024px) {
	.about {
		height: auto;
	}
	
	.about_container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}	
	.about_left {
		margin-right: 0;
		position: relative;
		/*top:5.8rem;*/
	}
	.courses {
		margin-top: 0;
	}
	.courses__container {
		grid-template-columns: 1fr 1fr;
	}
	
}

/* ************* MEDIA QUERIES (MOBILE) ***************** */
@media screen and (max-width: 600px) {

	.about_container{
		display: flex;
		justify-content: center;
		flex-direction: column;	
	}
	
	.about_right {
		grid-template-columns: 1fr 1fr;  
		gap: 0.7rem;
	}
	.about_left, .about_right{
		width: 100%;
	}
	.courses__container {
		grid-template-columns: 1fr;
		top: 2.5rem;
	}
} 

