*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.svg-top{
    margin-top: -2px;
}


.content{
    position: relative;   
}

/* home-section start */

.content .home-section{
    width: 100%;
    height: 100vh;

    /* background-color: #8039f1; */
    background-color: #f17639;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: flex-end; */
    align-items: center;

    position: relative;
}

.content .home-section .heading{
    font-size: 60px;
    color: #fff;
    text-shadow: 5px 15px 14px #000000;
    user-select: none;
    z-index: 2;
    margin-top: 50px;

    position: relative;

    /* border: 1px solid red; */
}

.content .home-section .contact-image{

    /*width: 300px;*/
    /*height: 300px;*/
    
    width: 220px;
    height: 220px;
    
    margin-top: 50px;

    /* width: 20%;
    height: 20vw; */

    position: relative;
    
    /* border: 1px solid red; */
    
}

.content .home-section .contact-image img{

    width: 100%;
    height: 100%;

    position: absolute;

    object-fit: cover;
    /* object-position: center 30%; */

    border-radius: 50%;
    /* box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.5); */

    
    border: 1px solid green;
    
}

/* home-section end */

/* contact-cards-section start */

.content .teachers-cards-section{
    width: 100%;
    /* height: 100vh; */
    
    background: linear-gradient(to bottom, #8039f1, #740099);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;


    position: relative;

    /* border: 1px solid red; */
}

.content .teachers-cards-section .heading{
    width: 100%;
    /* height: 100vh; */
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    margin-top: 100px;
    margin-bottom: 100px;

    position: relative;

    /* border: 1px solid red; */
}

.content .teachers-cards-section .heading h1{
    color: #fff;
    font-size: 40px;
    text-align: center;

    text-shadow: 5px 15px 14px #000000;
}










.content .teachers-cards-section .teach-cards{
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    flex-wrap: wrap;

    padding: 50px;

    /* margin-bottom: 100px; */
}

.content .teachers-cards-section .teach-cards .fetch-loading-tut-cards{
    width: 50px;
    display: block;
}

.content .teachers-cards-section .teach-cards .card{
    width: 300px;
    height: 420px;

    background-color: #fff;

    padding: 20px;

    /* margin-top: 25px;
    margin-bottom: 25px; */

    
    margin-top: 40px;
    margin-bottom: 40px;

    border-radius: 10px;
    /* box-shadow: 0px 0px 10px 1px #00C24F; */
    box-shadow: 0px 0px 10px 1px #8039f1;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    
    /* border: 1px solid #00C24F; */
    border: 1px solid #8039f1;

    /* position: relative; */
}

.content .teachers-cards-section .teach-cards .card:hover{
    cursor: pointer;
}

.content .teachers-cards-section .teach-cards .card .pic{
    width: 110px;
    height: 110px;

    position: relative;
    top: -70px;

    /* border: 1px solid red; */
}

.content .teachers-cards-section .teach-cards .card .pic img{
    width: 100%;
    height: 100%;

    position: absolute;

    object-fit: cover;
    object-position: center 25%;

    /* border-radius: 50%; */
    border-radius: 20%;
}


.content .teachers-cards-section .teach-cards .card .name{
    font-size: 15px;
    word-spacing: 3px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 25px;

    position: relative;
    top: -70px;
    /* border: 1px solid red; */
}

.content .teachers-cards-section .teach-cards .card .desc{
    color: #aeaeae;
    
    font-size: 14px;
    font-weight: 300;
    text-align: center;

    height: 159px;
    /* white-space: inherit; */
    
    
    line-height: 22px;
    letter-spacing: 2px;

    /* white-space: nowrap; */
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;

    position: relative;
    top: -40px;

    /* border: 1px solid red; */
}

.content .teachers-cards-section .teach-cards .card .qualification{
    font-size: 15px;
    word-spacing: 3px;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 25px;

    color: #00C24F;

    position: relative;
    top: -30px;
    /* border: 1px solid red; */
}

.content .teachers-cards-section .teach-cards .card .stars{
    
    position: relative;
    /* top: -70px; */
    /* border: 1px solid red; */
}

.content .teachers-cards-section .teach-cards .card .stars .checked{
    color: orange;

    /* border: 1px solid red; */
}

.content .teachers-cards-section .teach-cards .card .stars .unchecked{
    color: rgb(42, 42, 42);    

    /* border: 1px solid red; */
}





/* Search section start */

.searchForm{
	width: 90%;

    margin-bottom: 100px;
}

.searchForm input{
	width: 100%;

	color: #00C24F;

	padding: 25px;

	border-radius: 50px;
	border: none;
}

.searchForm input:focus{
	outline: none;
	border: 1px solid #00C24F;
}

.searchForm i{
	position: absolute;

	font-size: 2em;
	color: #717171;

	margin-top: 15px;
	margin-left: -60px;
}

.searchForm i:hover{
	cursor: pointer;
	color: #00C24F;
}

/* Search section end */














@media only screen and (max-width: 800px) 
{
    .content .home-section .contact-image {
        width: 200px;
        height: 200px;
    }

    .content .home-section .heading {
        font-size: 40px;
    }


}