@charset "utf-8";
/* CSS Document */

#seminer_teacher {
	width: 100%;
    display: flex;
}

#seminer_teacher::after {
	display: block;
	content: "";
	width: 100%;
	height: auto;
}

#seminer_teacher li {
    box-sizing: border-box;
    flex-basis: 32%;
    max-width: 32%;
    padding: 15px 20px;
    margin: 0 0 20px;
    border: 2px solid #145aa0;
}

#seminer_teacher li .teacher_wrap div.img {
    position: relative;
    box-sizing: border-box;
}

#seminer_teacher li .teacher_wrap div.img::before {
    display: block;
    content: "";
}

#seminer_teacher li .teacher_wrap div.img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#seminer_teacher li .teacher_wrap p {
    flex-basis: 50%;
    width: 90%;
    padding: 0 0 0 10%;
}

#seminer_teacher li p.carrer {
    color: #145aa0;
}

@media only screen and (min-width:1041px){

#seminer_teacher{
	flex-flow: row wrap;
    justify-content: space-between;
}
	
#seminer_teacher::after {
	width: 32%;
}
	
#seminer_teacher li .teacher_wrap {
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #145aa0;
    display: flex;
    align-items: center;
	justify-content: space-between;
}

#seminer_teacher li .teacher_wrap div.img {
    flex-basis: 50%;
}
	
#seminer_teacher li .teacher_wrap div.img::before {
    padding: 100% 0 0;
}
	
#seminer_teacher li p.carrer {
    margin: 0 0 8px;
}
	
}

@media only screen and (max-width:1040px){
	
#seminer_teacher {
    flex-flow: row wrap;
	justify-content: space-between;
}	

#seminer_teacher::after {
	display: none;
}
	
#seminer_teacher li {
    box-sizing: border-box;
    flex-basis: 48%;
    width: 100%;
    padding: 15px 20px;
    margin: 0 0 4%;
    border: 2px solid #145aa0;
}
	
#seminer_teacher li .teacher_wrap {
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #145aa0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
	
#seminer_teacher li .teacher_wrap .img {
    position: relative;
    box-sizing: border-box;
    flex-basis: 40%;
    max-width: 40%;
}
	
#seminer_teacher li .teacher_wrap .img::before {
    padding: 100% 0 0;
}
	
#seminer_teacher li .teacher_wrap p {
    flex-basis: 60%;
    max-width: 60%;
    padding: 0 0 0 20px;
}
	
#seminer_teacher li p.carrer {
    margin: 0 0 8px;
}
	
}

@media only screen and (max-width:640px){

#seminer_teacher {
    flex-flow: column wrap;
    justify-content: center;
}

#seminer_teacher li {
    flex-basis: 100%;
    max-width: 450px;
    padding: 15px;
    margin: 0px auto 30px auto;
    border: 2px solid #145aa0;
}
	
}