/*================================================ OET Instructor Area CSS =================================================*/
.oet-instructor-area {
	position: relative;
	z-index: 2;
  }

  .oet-instructor-area .oet-shape1 {
	bottom: -280px;
  }

  .oet-instructor-content {
	padding-top: 100px;
	padding-right: 15px;
	padding-bottom: 100px;
  }

  .oet-instructor-content .sub-title {
	display: block;
	margin-bottom: 7px;
	color: var(--OETmainColor);
	font-size: 14px;
	font-weight: 500;
  }

  .oet-instructor-content h2 {
	margin-bottom: 15px;
	line-height: 1.3;
	font-size: 37px;
  }

  .oet-instructor-content .oet-default-btn {
	margin-top: 10px;
  }

.instructor-list {
	position: relative;
	text-align: center;
	margin-left: 150px;
	height: 100%;
  }

  .instructor-list ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
  }

  .instructor-list ul li {
	position: absolute;
  }

  .instructor-list ul li img {
	border-radius: 50%;
	border: 4px solid var(--OETwhiteColor);
  }

  .instructor-list ul li .content {
	left: 50%;
	top: 100%;
	opacity: 0;
	width: 200px;
	padding: 15px;
	margin-top: -30px;
	visibility: hidden;
	position: absolute;
	border-radius: 5px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: var(--OETtransition);
	transition: var(--OETtransition);
	background-color: var(--OETwhiteColor);
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  }

  .instructor-list ul li .content h3 {
	font-size: 22px;
	margin-bottom: 7px;
  }

  .instructor-list ul li .content span {
	display: block;
	font-size: 14px;
	color: var(--OETmainColor);
  }

  .instructor-list ul li:hover .content {
	opacity: 1;
	visibility: visible;
  }

  .instructor-list ul li:nth-child(1) {
	top: 0;
	left: 0;
  }

  .instructor-list ul li:nth-child(1) img {
	width: 130px;
	bottom: 130px;
  }

  .instructor-list ul li:nth-child(2) {
	left: 0;
	bottom: 0;
  }

  .instructor-list ul li:nth-child(2) img {
	width: 148px;
	height: 148px;
  }

  .instructor-list ul li:nth-child(3) {
	right: 0;
	bottom: 0;
  }

  .instructor-list ul li:nth-child(3) img {
	width: 119px;
	height: 119px;
  }

  .instructor-list ul li:nth-child(4) {
	top: 0;
	right: 0;
  }

  .instructor-list ul li:nth-child(4) img {
	width: 130px;
	height: 130px;
  }

  .instructor-list ul li:nth-child(5) {
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-left: auto;
	margin-right: auto;
  }

  .instructor-list ul li:nth-child(5) img {
	width: 180px;
	height: 180px;
	border-width: 8px;
  }

  /* Max width 767px */
@media only screen and (max-width: 767px) {
    .oet-instructor-content {
		margin-bottom: 10px;
		text-align: center;
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 0;
	}
	.oet-instructor-content .sub-title {
		font-size: 13px;
		margin-bottom: 8px;
	}
	.oet-instructor-content h2 {
		font-size: 25px;
	}
	.oet-instructor-content .oet-default-btn {
		margin-top: 0;
	}
	.instructor-list {
		margin-left: 0;
		height: auto;
	}
	.instructor-list ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-left: -10px;
		margin-right: -10px;
	}
	.instructor-list ul li {
		position: relative;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
		bottom: 0 !important;
		-webkit-transform: unset !important;
		transform: unset !important;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 30px;
		margin-right: 0;
		margin-left: 0;
	}
	.instructor-list ul li:last-child {
		margin-bottom: 0;
	}
	.instructor-list ul li img {
		width: auto !important;
		height: auto !important;
		border: none !important;
	}
	.instructor-list ul li .content {
		position: relative;
		opacity: 1;
		visibility: visible;
		top: 0;
		width: auto;
		padding: 0;
		margin-top: 20px;
		left: 0;
		-webkit-transform: unset;
		transform: unset;
		-webkit-box-shadow: unset;
		box-shadow: unset;
	}
	.instructor-list ul li .content h3 {
		font-size: 18px;
		margin-bottom: 8px;
	}
	.instructor-list ul li .content span {
		font-size: 13px;
	}
   
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .oet-instructor-content {
		margin-bottom: 20px;
		text-align: center;
		padding-top: 0;
		padding-right: 0;
		padding-bottom: 0;
	}
	.oet-instructor-content .sub-title {
		margin-bottom: 7px;
		font-size: 13px;
	}
	.oet-instructor-content h2 {
		font-size: 30px;
	}
	.instructor-list {
		margin-left: 0;
		height: auto;
	}
	.instructor-list ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-left: -15px;
		margin-right: -15px;
	}
	.instructor-list ul li {
		position: relative;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
		bottom: 0 !important;
		-webkit-transform: unset !important;
		transform: unset !important;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
		padding-left: 15px;
		padding-right: 15px;
		margin-top: 30px;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.instructor-list ul li:last-child {
		margin-bottom: 0;
	}
	.instructor-list ul li img {
		width: auto !important;
		height: auto !important;
		border: none !important;
	}
	.instructor-list ul li .content {
		position: relative;
		opacity: 1;
		visibility: visible;
		top: 0;
		width: auto;
		padding: 0;
		margin-top: 20px;
		left: 0;
		-webkit-transform: unset;
		transform: unset;
		-webkit-box-shadow: unset;
		box-shadow: unset;
	}
	.instructor-list ul li .content h3 {
		font-size: 20px;
		margin-bottom: 8px;
	}
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .instructor-list {
		margin-left: 15px;
	}
	.instructor-list ul li .content {
		margin-left: -20px;
	}
	.oet-instructor-content {
		padding-right: 0;
	}
	.oet-instructor-content h2 {
		font-size: 34px;
	}
}