@import url("https://fonts.googleapis.com/css2?family=Alata&family=Anonymous+Pro&family=Nunito&family=Oswald&family=Poppins&display=swap");
html {
	overflow-x: hidden;
}
body {
	background: #f1f1f1;
	margin-top: 2em;
	margin-bottom: 2em;
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 5em;
	margin-right: 5em;
	margin-bottom: 5em;
}
nav .logo {
	display: flex;
	gap: 1em;
	font-family: "Oswald", sans-serif;
	align-items: center;
}
nav .logo img {
	width: 25px;
	height: 25px;
	border-radius: 100%;
	-webkit-animation: flip-scale-2-hor-top 0.5s linear both;
	animation: flip-scale-2-hor-top 0.5s linear both;
}
@-webkit-keyframes flip-scale-2-hor-top {
	0% {
		-webkit-transform: translateY(0) rotateX(0) scale(1);
		transform: translateY(0) rotateX(0) scale(1);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}
	50% {
		-webkit-transform: translateY(-50%) rotateX(-90deg) scale(2);
		transform: translateY(-50%) rotateX(-90deg) scale(2);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100% {
		-webkit-transform: translateY(-100%) rotateX(0) scale(1);
		transform: translateY(-100%) rotateX(0) scale(1);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}
}
@keyframes flip-scale-2-hor-top {
	0% {
		-webkit-transform: translateY(0) rotateX(0) scale(1);
		transform: translateY(0) rotateX(0) scale(1);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}
	50% {
		-webkit-transform: translateY(-50%) rotateX(-90deg) scale(2);
		transform: translateY(-50%) rotateX(-90deg) scale(2);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100% {
		-webkit-transform: translateY(-100%) rotateX(0) scale(1);
		transform: translateY(-100%) rotateX(0) scale(1);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}
}

nav .action {
	display: flex;
	align-items: center;
	gap: 1em;
}
nav .action a {
	display: flex;
	gap: 0.3em;
	font-family: "Alata", sans-serif;
	align-items: center;
	transition: 0.3s;
}
nav .action a:hover {
	opacity: 50%;
}
nav .action a:last-child {
	background: #08a0f7;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	padding: 0.5em 1em;
	border-radius: 25px;
}
.live {
	background: #d0d3d4;
	display: inline;
	padding: 1em 0.5em;
	border-radius: 20px;
	padding-right: 1em;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	letter-spacing: 0.5px;
	margin-left: 6em;
}
.live span {
	background: #ff0404;
	color: #fff;
	padding: 0.5em;
	letter-spacing: 1.5px;
	border-radius: 20px;
	font-size: 10px;
	font-weight: semibold;
	margin-right: 0.5em;
}
.carousel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1em;
	margin-left: 5em;
	margin-right: 5em;
}
.carousel .img {
	background: url(https://sd-scm-index.vercel.app/img1.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 399px;
	width: 310px;
	display: flex;
	justify-content: flex-end;
	-webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53)
		both;
	animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
	align-items: flex-end;
	border-radius: 500px 500px 500px 0px;
}
@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

.carousel .img .container-arrow {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	border: 1px solid;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.carousel .img .arrow {
	background: #000;
	padding: 1em;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
}
.carousel .text {
	width: 865px;
	padding-right: 2em;
}
.carousel .text .title {
	font-family: "Anonymous Pro", monospace;
	font-weight: bold;
	font-size: 72px;
}
.carousel .text .desc {
	font-family: "Nunito", sans-serif;
	margin-top: 0.5em;
	font-size: 18px;
	margin-bottom: 0.5em;
}
.link {
	display: flex;
	align-items: center;
	gap: 0.2em;
	font-weight: bold;
	color: #000;
	font-family: "Anonymous Pro", monospace;
	transition: 0.3s;
}
.link:hover {
	gap: 0.7em;
}
a {
	text-decoration: none;
	color: #000;
}
.about {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 5em;
	margin-right: 5em;
	gap: 2em;
}
.about .text .title {
	text-align: right;
	font-family: "Oswald", sans-serif;
	font-size: 18px;
}
.about .text .desc {
	text-align: justify;
	font-size: 18px;
	font-family: "Nunito", sans-serif;
}
.visi {
	font-family: "Anonymous Pro", monospace;
	font-size: 60px;
	font-weight: bold;
	text-align: center;
	margin-left: 1em;
	margin-right: 1em;
}
.visi span {
	opacity: 20%;
}
.list-misi {
	display: flex;
	align-items: center;
	gap: 2em;
	justify-content: space-between;
}
.misi {
	padding-left: 5em;
	padding-right: 5em;
	border-top: 1px dashed;
	border-bottom: 1px dashed;
	padding-top: 2em;
	padding-bottom: 2em;
	color: #000;
	font-family: "Anonymous Pro", monospace;
}
.list-misi .item {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	display: flex;
	align-items: center;
	grid-gap: 1em;
}
.misi .title {
	font-size: 18px;
}
.list-misi span {
	font-size: 36px;
	font-family: "Nunito", sans-serif;
	color: rgba(0, 0, 0, 0.2);
	font-weight: bold;
}
.bg1 {
	background: url(bg1.png);
	background-repeat: no-repeat;
	background-position: center;
}
.bg2 {
	background-size: cover;
	background: url(bg2.png);
	background-repeat: no-repeat;
	background-position: right;
}
.sambutan {
	display: flex;
	align-items: center;
	margin-left: 5em;
	margin-right: 5em;
	gap: 2em;
	justify-content: space-between;
}
.sambutan .img img {
	width: 282px;
	height: 282px;
	border-radius: 200px;
}
.sambutan .text .title {
	font-size: 64px;
	font-weight: bold;
	font-family: "Anonymous Pro", monospace;
}
.sambutan .text .title span {
	font-size: 36px;
}
.sambutan .text .desc {
	font-family: "Nunito", sans-serif;
	font-size: 18px;
}
.news {
	margin-left: 5em;
	margin-right: 5em;
}
.news .title {
	display: flex;
	justify-content: space-between;
}
.news .title .title-big {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.35px;
	font-family: "Anonymous Pro", monospace;
}
.news .title span {
	font-size: 12px;
	letter-spacing: 1.5px;
	font-family: "Nunito", sans-serif;
}
.news .title span:hover {
	text-decoration: underline;
}
.news-list {
	display: flex;
	justify-content: space-between;
	gap: 2em;
}
.news-item {
	border-radius: 20px;
}
.news-item:hover {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.news-item .img {
	background: url(img-pengajar.png);
	height: 198px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 371px;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}
.news-item .text {
	background: #fff;
	width: 371px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}
.news-item .text .title {
	font-family: "Anonymous Pro", monospace;
	font-size: 20px;
	letter-spacing: 0.5px;
	font-weight: bold;
	padding: 1em 1em 0em;
}
.news-item .text .desc {
	font-family: "Nunito", sans-serif;
	padding: 1.5em;
	font-size: 13px;
}
.pengajar .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1em;
	margin-left: 5em;
	margin-right: 5em;
}
.pengajar .title-big {
	font-family: "Anonymous Pro", monospace;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.3px;
	line-height: 45px;
}
.pengajar .text {
	width: 520px;
	font-family: "Nunito", sans-serif;
	letter-spacing: 1.5px;
}
.pengajar .arrow {
	display: flex;
	gap: 2em;
}
.pengajar .arrow img:hover {
	opacity: 50%;
}
.pengajar .title .text a:hover {
	text-decoration: underline;
}
.pengajar .title .text a {
	font-size: 15px;
	letter-spacing: 0.35px;
	color: #1ea59a;
	font-weight: bold;
}
.pengajar-list {
	display: flex;
	align-items: center;
	overflow-x: hidden;
	gap: 2em;
}
.pengajar-list img {
	width: 320px;
	height: 470px;
	border-radius: 10px;
}
.footer {
	margin-left: 5em;
	margin-right: 5em;
}
.footer .bawah {
	display: flex;
}
.footer .bawah .wallpaper {
	position: absolute;
	right: 0;
	margin-top: -13em;
}
.footer .logo img {
	width: 44px;
	height: 44px;
	border-radius: 100%;
	margin-bottom: 0.5em;
}
.footer .logo {
	font-family: "Oswald", sans-serif;
}
.footer .detail {
	display: flex;
	justify-content: space-between;
	width: 753px;
	gap: 2em;
}
.footer .detail .title {
	font-family: "Oswald", sans-serif;
	font-size: 40px;
	font-weight: bold;
}
.footer .detail .desc {
	font-family: "Alata", sans-serif;
	font-size: 14px;
}
@media (min-width: 1024px) and (max-width: 1319px) {
	.news-item .img,
	.news-item .text {
		width: auto;
	}
	.map iframe {
		width: 300px;
	}
	.carousel .text .title {
		font-size: 52px;
	}
	.sambutan .text .title {
		font-size: 36px;
	}
	.sambutan {
		gap: 1em;
	}
	.sambutan .text .title span {
		font-size: 20px;
	}
	.sambutan .text {
		width: 700px;
	}
	.news-list {
		justify-content: space-around;
	}
	.pengajar .arrow {
		display: none;
	}
}
@media (max-width: 1023px) and (min-width: 1000px) {
	.news-list a:last-child {
		display: none;
	}
	.sambutan .text .title {
		font-size: 36px;
	}
	.sambutan .text .title span {
		font-size: 20px;
	}
	.pengajar .arrow {
		display: none;
	}
	.sambutan .text .desc,
	.about .text .desc,
	.carousel .text .desc {
		font-size: 14px;
	}
	.visi,
	.carousel .text .title {
		font-size: 48px;
	}
	.map iframe {
		width: 500px;
	}
	.live {
		font-size: 10px;
		margin-left: 7em;
	}
	.live span {
		font-size: 8px;
	}
}
@media (max-width: 999px) and (min-width: 700px) {
	.news-list a:last-child {
		display: none;
	}
	.pengajar .text {
		display: none;
	}
	nav,
	.about,
	.carousel,
	.footer,
	.pengajar .title,
	.sambutan,
	.news,
	.live {
		margin-left: 2em;
		margin-right: 2em;
	}
	.bg1,
	.bg2 {
		background-position: center;
	}
	.misi {
		padding-right: 2em;
		padding-left: 2em;
	}
	.sambutan .text .title {
		font-size: 36px;
	}
	.carousel .img {
		height: 280px;
	}
	.carousel .img .container-arrow {
		width: 60px;
		height: 60px;
	}
	.news-item .text {
		width: auto;
	}
	.live {
		font-size: 9px;
		margin-left: 3em;
	}
	.live span {
		font-size: 8px;
	}
	.footer .detail .title {
		font-size: 25px;
	}
	.footer .detail {
		width: 500px;
	}
	.carousel .img .arrow {
		width: 20px;
		height: 20px;
	}
	.bg1 {
		background-size: cover;
	}
	.sambutan .img img {
		width: 200px;
		height: 200px;
	}
	.sambutan .text .title span {
		font-size: 20px;
	}
	.news-item .img {
		width: auto;
	}
	.map iframe {
		width: auto;
	}
	.carousel .text .title,
	.visi {
		font-size: 36px;
	}
	.carousel .text .desc,
	.about .text .desc,
	.sambutan .text .desc {
		font-size: 14px;
	}
	.pengajar-list img {
		height: 300px;
		width: auto;
	}
	.footer .bawah img {
		height: 500px;
	}
}
@media (max-width: 700px) and (min-width: 320px) {
	.about {
		flex-direction: column;
	}
	.carousel .text {
		padding-right: 0;
	}
	.list-misi {
		flex-direction: column;
		gap: 0;
	}
	.sambutan {
		flex-direction: column;
		align-items: flex-start;
	}
	.news-item {
		gap: 2em;
	}
	.news-list a:last-child {
		display: none;
	}
	.news-item .img,
	.news-item .text {
		width: auto;
		height: 130px;
	}
	.carousel .text .desc,
	.about .text .desc,
	.sambutan .text .desc {
		font-size: 14px;
	}
	.news-item .text .title {
		font-size: 15px;
	}
	.sambutan .text .title,
	.visi,
	.carousel .text .title {
		font-size: 36px;
	}
	.sambutan .text .title span {
		font-size: 20px;
	}
	.news-item .text .desc {
		font-size: 12px;
	}
	.about .text .title {
		text-align: left;
	}
	.carousel {
		margin-top: 2em;
	}
	.pengajar .title .text {
		display: none;
	}
	.footer .detail {
		width: 500px;
	}
	.footer .detail .title {
		font-size: 24px;
	}
	.footer .bawah img {
		width: auto;
	}
	.pengajar-list img {
		width: auto;
		height: 270px;
	}
	.pengajar-list {
		gap: 1em;
	}
	nav,
	.about,
	.carousel,
	.footer,
	.pengajar .title,
	.sambutan,
	.news,
	.live {
		margin-left: 1em;
		margin-right: 1em;
	}
	.misi {
		padding-left: 1em;
		padding-right: 1em;
	}
	.sambutan .img img {
		width: 250px;
		height: 250px;
	}
	.carousel .img {
		height: 270px;
	}
	.carousel .img .arrow {
		width: 15px;
		height: 15px;
	}
	.carousel .img .container-arrow {
		width: 60px;
		height: 60px;
	}
	.live {
		font-size: 10px;
	}
}
@media (max-width: 630px) {
	.map iframe {
		display: none;
	}
	.sambutan .text .title,
	.visi,
	.carousel .text .title {
		font-size: 27px;
	}
	.bg1 {
		background-size: cover;
	}
	.link {
		font-size: 14px;
	}
	.carousel .img {
		height: 240px;
	}
	.link img {
		width: 14px;
		height: 14px;
	}
}
@media (max-width: 600px) {
	.sambutan {
		align-items: center;
	}
	nav .action {
		display: none;
	}
	.live {
		font-size: 8px;
	}
	.live span {
		font-size: 7px;
	}
	.visi,
	.carousel .text .title {
		font-size: 36px;
	}
	.carousel .text .desc,
	.about .text .desc,
	.sambutan .text .desc {
		font-size: 14px;
	}
	.carousel .img {
		display: none;
	}
	.visi {
		font-size: 30px;
		line-height: 45px;
	}
	.sambutan .text .title {
		font-size: 27px;
	}
	.news .title .title-big,
	.pengajar .title-big {
		font-size: 20px;
	}
	.pengajar .title {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.pengajar .title .text {
		display: inline;
	}
	.pengajar .text {
		width: auto;
		font-size: 14px;
		letter-spacing: normal;
	}
	.pengajar .arrow {
		display: none;
	}
	.news-list {
		flex-direction: column;
	}
	.news .title {
		flex-direction: column;
		gap: 1em;
	}
}
@media (max-width: 359px) {
	.footer .detail {
		flex-direction: column;
	}
	.live {
		font-size: 7px;
	}
	.live span {
		font-size: 6px;
	}
}

.page-numbers{
  margin-right: 0.2rem;
  margin-left: 0.2rem
}
.page-numbers.current{
  background: #198989;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* Team Section
===========================*/

.team-member-bg {
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 300px;
	border-radius: 5px;
}

.team-member-bg {
	background-image: url(../img/team/1.jpg);
}

.team-bg-2 {
	background-image: url(../img/team/2.jpg);
}

.team-bg-3 {
	background-image: url(../img/team/3.jpg);
}

.team-bg-4 {
	background-image: url(../img/team/4.jpg);
}

.team-bg-5 {
	background-image: url(../img/team/5.jpg);
}

.team-bg-6 {
	background-image: url(../img/team/6.jpg);
}

.team-bg-7 {
	background-image: url(../img/team/7.jpg);
}

.team-bg-8 {
	background-image: url(../img/team/8.jpg);
}

.single-team-member {
	position: relative;
}

.single-team-member .team-content {
	position: absolute;
	bottom: -75px;
	background: #fff;
	text-align: center;
	width: 100%;
}

.team-content .team-title {
	font-weight: 500;
}

.team-content .team-title a {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #191919;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	margin: 16px 0 5px;
}

.team-content .team-subtitle {
	font-size: 14px;
	color: #7c7c7c;
	margin-bottom: 10px;
}

.team-content .team-subtitle p {
	margin: 0;
	color: #333E38;
}

.team-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social ul li {
	display: inline-block;
}

.team-social ul li a {
	font-size: 18px;
	padding: 10px;
	transition: all .3s ease-out;
}

.team-social {
	position: absolute;
	top: 0;
	left: -35px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-2px);
	transition: all .4s;
}

.team-social ul li {
	display: block;
}

.team-social i {
	color: #FCC741;
}

.single-team-member:hover .team-social {
	visibility: visible;
	opacity: 1;
	left: 0;
	transform: translateY(0);
}

/* Breadcrumb
============== */

.breadcroumb-area {
	background-image: url(../img/back.jpg);
}

.breadcroumb-area {
	height: 300px;
	background-size: cover;
	background-position: center;
	background-color: #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.breadcroumb-area:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #092c3e;
	opacity: .9;
	z-index: -1;
}

.breadcroumb-area .breadcroumb-title h1 {
	font-size: 50px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	margin-top: 40px;
	position: relative;
	padding-left: 30px;
}

.breadcroumb-area .breadcroumb-title h1:before {
	position: absolute;
	content: " ";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-left: 5px solid#FCC741;
}

.breadcroumb-area h6 a {
	color: #fff;
}

.breadcroumb-area h6 {
	color: #aeb1b3;
	font-size: 16px;
	margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.breadcroumb-area .breadcroumb-title h1 {
		font-size: 50px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.breadcroumb-area .breadcroumb-title h1 {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.breadcroumb-area .breadcroumb-title h1 {
		font-size: 35px;
	}
}

/* About Section
============== */

.about-area .section-title {
	margin-bottom: 30px;
}

.info-content-area .section-title h2 {
	position: relative;
	padding-left: 35px;
}

.info-content-area .section-title h2:before {
	position: absolute;
	content: " ";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-left: 5px solid#FCC741;
}

.info-content-area p.highlight {
	position: relative;
	padding-left: 35px;
	margin: 20px 0;
}

.info-content-area p.highlight:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	top: 5px;
	left: 0;
	background: #FCC741;
}

.founded {
	border-top: 4px solid #eee;
	border-bottom: 4px solid #eee;
	padding: 15px;
}

.founded img {
	border-radius: 5px;
}

.founded-text p {
	font-size: 20px;
	line-height: 25px;
	color: #1A3759;
	font-weight: 500;
  padding: 25px 25px 10px 15px;
}

.info-content-area .main-btn {
	background: transparent;
	color: #FCC741;
	border: 2px solid;
	margin: 40px 0;
}

.info-content-area .main-btn:hover {
	background: #FCC741;
	color: #fff;
	border-color: #FCC741;
}

.info-img img {
	border-radius: 5px;
}

