@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	outline: none;
	border: none;
	text-decoration: none;
	text-transform: uppercase;
}

html,
body {
  font-family: "poppins, kanit, sans-serif";
  background: white;
  scroll-behavior: smooth;
	overflow-x: hidden;
}


/* add a thumb */
body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
}

body::-webkit-scrollbar-thumb {
	background: rgba(250, 250, 250, 0.5);
	z-index: 100;
}

section {
	position: relative;
	overflow: hidden;
}

header {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.6S;
	letter-spacing: 0.5px;
	padding: 30px 12px;
	margin-bottom: 0;
	z-index: 100000;
}

header.sticky {
	padding: 5px 10px;
	background: #fff;
	border-bottom: 2px solid rgba(0,0,0,0.2);
}

header .logo {
	position: relative;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2rem;
	text-transform: uppercase;
	padding-left: 15px;
	letter-spacing: 0.5px;
	transition: 0.6s;
	text-shadow: 0px 5px 15px #333;
}

header .logo p {
	position: relative;
	display: inline-block;
	font-weight: 500;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	margin: 0;
	padding: 1rem 0 0 1rem;
	transition: 0.6s;
}

header ul {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

header ul li {
	position: relative;
	list-style: none;
}

header ul li a {
	position: relative;
	margin: 0 15px;
	padding: 0;
	text-decoration: none;
	color: #fff;
	letter-spacing: 0.5px;
	font-weight: 500px;
	transition: 0.3s;
	text-shadow: 0px 5px 15px #333;
}

header a span {
	color: rgb(228, 59, 250);
}

header ul li a:hover {
	color: rgb(228, 59, 250);
	text-shadow: 0px 5px 15px rgb(31, 16, 33);
	text-decoration: none;
}

header.sticky .logo,
header.sticky .logo p,
header.sticky ul li a {
	color: #000;
}

header.sticky ul li a {
	display: flex;
	align-items: center;
	padding-top: 1rem;
}

header.sticky ul li a:hover {
	color: rgb(228, 59, 250);
	text-decoration: none;
}

header nav {
	display: none;
}

#drawer_toggle {
	display: none;
}

.banner {
	min-height: 100vh;
	width: 100%;
	/*background: url(bg/png);*/
	margin-bottom: 0;
	padding-bottom: 0;
	position: relative;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-flow: column;
	background-size: cover;
	background-position: center;
	object-fit: cover;
	padding-top: 5em;
}

.banner img {
	position: absolute;
	bottom: 0; left: 0;
	transform: translate(-50% -50%);
	object-fit: cover;
	width: auto;
	height: auto;
}

.home h1 {
	font-size: 100px;
	color: #fff;
	position: relative;
	text-shadow: 0px 5px 15px #333;
}

.home h1 span {
	color: rgb(228, 59, 250);
	text-shadow: 0px 5px 15px #333;
}

.home .text-1 {
	opacity: 0;
	margin-bottom: 0;
	padding-bottom: 0;
	animation: anim1 3s forwards 1s ease-out;
}

.home .text-2 {
	opacity: 0;
	margin-top: 0;
	padding-top: 0;
	animation: anim1 3s forwards 1.5s ease-out;
}

.home .text-3 {
	opacity: 0;
	margin-bottom: 0;
	padding-bottom: 0;
	animation: anim1 3s forwards 2s ease-out;
}

@keyframes anim1 {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/* occupation section */
.occupation {
	width: 100%;
	max-height: 100vh;
	min-height: 630px;
}

.title {
	width: 100%;
}

section .title {
	width: 100%;
	height: 7.5rem;
	color: #4e4e4e;
	background: #f7f7f7;
}

.title h2 {
	font-family: "Poppins";
	text-align: center;
	margin: 0;
	padding-top: 4.25rem;
	font-size: 48px;
	font-weight: 500;
	background-color: #666;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: rgba(245, 245, 245, 0.5) 4px 6px 2px;
}

.slide {
	display: flex;
}

.slide .view {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	object-fit: cover;
}

.view ul {
	padding: 0;
	margin: 0;
}

.view ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	background: #fff;
}

.view ul li img {
	max-width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	object-fit: cover;
	animation: slide 3s ease-in;
	opacity: 1;
}

@keyframes slide {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
}

.view .mask, .view .content {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}

.view h2 {
	position: relative;
	top: 35%;
	color: #fff;
	font-size: 1.8rem;
	padding: 1.2rem;
	letter-spacing: 2px;
	text-align: center;
	border-bottom: 1px solid rgba(199, 198, 198, 0.911);
	margin: 20px 80px 0px 80px;
	transform: translate(800px, -800px);
	transition: all 0.5s ease-in-out;
}

.view p {
	position: relative;
	top: 37%;
	color: #fff;
	font-size: 1.2rem;
	padding: 0 1.8rem;
	letter-spacing: 1px;
	text-align: center;
	transform: translate(-800px, 800px);
	transition: all 0.5s ease-in-out;
}

.view a.info {
	position: relative;
	top: 37%;
	display: inline-block;
	text-decoration: none;
	padding: 8px 16px;
	background: transparent;
	color: #fff;
	text-transform: uppercase;
	box-shadow: 0 0 1px #000;
	border-radius: 4px;
	border: 1px solid #fff;
	transform: translate(0px, 800px);
	transition: transform 0.8s 0.1s ease-in-out;
}

.view a.info:hover {
	color: rgb(228, 59, 250);
	border: 1px solid rgb(228, 59, 250);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
	transition: 0.1s;
}

.view .mask {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100vh;
	object-fit: cover;
	background-position: center;
	opacity: 0;
	transform: translate(top 200%);
	transition: all 0.8s ease-in-out;
	overflow: hidden;
}

.view:hover .mask {
	object-fit: cover;
	opacity:1;
	transform: translate(0);
}

.view a.info:hover {
	background: #fff;
	border: none;
}

.view:hover h2 {
	object-fit: cover;
	transform: translate(0px, 0px);
	transition-delay: 0.1s;
}

.view:hover p {
	object-fit: cover;
	transform: translate(0px, 0px);
	transition-delay: 0.2s;
}

.view:hover a.info {
	object-fit: cover;
	transform: translate(0px, 0px);
}

.container .slide-container {
	display: none;
}

.container .slide-container.active {
	display: block;
}

.container #next,
.container #prev {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	z-index: 100;
	background: right;
	color: #fff;
	font-weight: bold;
	width: 60px;
	height: 80px;
	line-height: 80px;
	font-size: 80px;
	cursor: pointer;
	text-align: center;
}

.container #next {
	right: 0;
}

.container #prev {
	left: 0;
}


/* person section */
.person {
	min-width: 100%;
	height: 100%;
}

.job h3 {
	font-size: 1.8rem;
	padding-top: 40px;
	font-family: "Poppins";
	text-align: center;
	margin: 0;
	font-weight: 700;
	background-color: #666;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: rgba(245, 245, 245, 0.5) 4px 6px 2px;
}

.container {
	position: relative;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.container .card {
	position: relative;
	width: 300px;
	height: 400px;
	margin: 20px;
	overflow: hidden;
	box-shadow: 0px 5px 15px #333;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container .card .content {
	position: absolute;
	bottom : -100%;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	flex-direction: column;
	backdrop-filter: blur(15px);
	box-shadow: 0 -10px 10px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	transition: bottom 0.5s;
	transition-delay: 0.8s;
}

.container .card:hover .content {
	bottom: 0px;
	transition-delay: 0s;
}

.container .card .content .contentBx h3 {
	color: #777;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 15px;
	line-height: 1.1em;
	transition: 0.5s;
	opacity: 0;
	transform: translateY(-20px);
	transition-delay: 0.6s;
}

.container .card:hover .content .contentBx h3 {
	opacity: 1;
	transform: translateY(0px);
}

.container .card .content .contentBx h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;
}

.container .card .content .sci {
	position: relative;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 36px;
}

.container .card .content .sci li {
	list-style: none;
	margin: 2rem 0 0 2rem;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
	transition-delay: calc(0.2s * var(--i));
}

.container .card:hover .content .sci li {
	transform: translateY(0px);
	opacity: 1;
}

.container .card .content .sci li a {
	color: #999;
	font-size: 24px;
}

.container .card .content .sci li:hover {
	transform: scale(1.2);
	text-decoration: none;
	transition: 0.1s;
}

.container .card .content .sci li a:hover .fa-facebook {
	color: #0866ff;
}

.container .card .content .sci li a:hover .fa-x-twitter {
	color: #111;
}

.container .card .content .sci li a:hover .fa-instagram {
	color: #ff66ee;
}

.container .card .content .btn a.info {
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	background:transparent;
	color: #777;
	text-transform: uppercase;
	box-shadow: 0px 5px 15px rgba( 0.2, 0.2, 0.2, 0.3);
	border: 1px solid #333;
	border-radius: 4px;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
}

.container .card:hover .content .btn a.info {
	transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.1s;
}

.container .card .content .btn a.info:hover {
	background: #fff;
	color: rgb(228, 59, 250);
	border: 1px solid rgb(228, 59, 250);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
	transition: 0.1s;
	transition-delay: 0.1s;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2rem;
}

.btn a.info {
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	background: transparent;
	color: #000;
	text-transform: uppercase;
	border: 1px solid #000;
	box-shadow: 0px 5px 15px #333;
	border-radius: 4px;
}

.btn a,
.btn a.info:hover {
	color: rgb(228, 59, 250);
	border: 1px solid rgb(228, 59, 250);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
	transition: 0.1s;
}


/* about section */
.about {
	min-width: 100%;
	height: 100%;
}

.container2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 100%;
	flex-wrap: wrap;
	z-index: 1;
}

.container2::before {
	content: '';
	position: absolute;
	top: 20%; right: 0;
	width: 25%;
	height: 60%;
	background: linear-gradient(rgb(226, 105, 226), rgb(246, 38, 38));
	clip-path: square;
	box-shadow: 0px 5px 15px #333;
	border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
	animation: change 5s ease-in-out infinite, animate 5s ease-in-out infinite;
}

.container2::after {
	content: '';
	position: absolute;
	top: 0; left: -1%;
	width: 15%;
	height: 32%;
	background: linear-gradient(rgb(226, 105, 226), rgb(246, 38, 38));
	/*clip-path: circle(10% at 5% 30%);*/
	clip-path: square;
	box-shadow: 0px 5px 15px #333;
	border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
	animation: change 5s ease-in-out infinite, animate 5s ease-in-out infinite;
	animation-delay: -2.5s;
}

@keyframes animate {
	0%,100% {
		transform: translateY(150px);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes change {
  0% {
    border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
  }

  25% {
    border-radius: 30% 70% 45% 55% / 78% 30% 70% 22%;
  }

  50% {
    border-radius: 11% 89% 22% 78% / 44% 33% 67% 56%;
  }

  75% {
    border-radius: 38% 62% 70% 30% / 78% 74% 26% 22%;
  }

  100% {
    border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
  }
}

.container2 .card2 {
	position: relative;
	width: 77%;
	height: 420px;
	margin: 80px 10px;
	box-shadow:  20px 30px 50px rgba(0, 0, 0, 0.6);
	border-radius: 15px;
	background: rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(5px);
}

.container2 .card2 .content2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
}

.container2 .card2 .content2 .about-h2 {
	padding: 20px;
	text-align: center;
	transform: translateY(100px);
	opacity: 0;
	transition: 1s;
	transition-delay: 0.01s;
}

.container2 .card2 .content2 .about-btn {
	padding: 20px;
	text-align: center;
	transform: translateY(100px);
	opacity: 0;
	transition: 2s;
	transition-delay: 0.01s;
}

.container2 .card2:hover .content2 .about-h2,
.container2 .card2:hover .content2 .about-btn {
	transform: translateY(0px);
	opacity: 1;
}

.container2 .card2 .content2 h2 {
	position: absolute;
	top: -20%;
	font-size: 6rem;
	color: rgba(255, 255, 255, 0.7);
	pointer-events: none;
	text-align: center;
	text-shadow: 0px 5px 15px #333;
}

.container2 .card2 .content2 h3 {
	position: relative;
	font-size: 1.8rem;
	color: #000;
	text-transform: uppercase;
	text-align: center;
	z-index: 1;
}

.container2 .card2 .content2 p {
	position: relative;
	font-size: 1rem;
	color: #000;
	font-weight: 300;
	text-transform: none;
}

.container2 .card2 .content2 a {
	position: relative;
	display: inline-block;
	margin-top: 15px;
	text-decoration: none;
	padding: 7px 14px;
	background: #fff;
	color: #000;
	text-transform: uppercase;
	box-shadow: 0px 5px 15px #333;
	border-radius: 4px;
	font-weight: 500;
}

.container2 .card2 .content2 a:hover {
	color: rgb(228, 59, 250);
	border: 1px solid rgb(228, 59, 250);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
	transition: 0.1s;
}

.about-p {
	text-align: center;
}

.about-btn {
	position: absolute;
	bottom: -20%;
}


/* map section */
.map {
	min-width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
}

.map p {
	font-size: 1.5rem;
	padding: 1rem;
	text-transform: none;
	font-family: "Poppins";
	text-align: center;
	margin: 0;
	font-weight: 600;
	background-color: #666;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: rgba(245, 245, 245, 0.5) 4px 6px 2px;
}

.location {
	width: 95%;
	height: 70vh;
	margin: 0 2.5%;
	box-shadow: 0px 5px 15px #333;
}

.location iframe {
	width: 100%;
	height: 100%;
}

.location:hover {
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.map .text p {
	color: #000;
	font-size: 1rem;
	font-weight: 300;
	padding: 3rem 1rem;
	transition-delay: 0s;
}


/* footer */
.footer {
	min-width: 100%;
	background: #eee;
}

.footer_container {
	position: relative;
	min-width: 100%;
	background: #f7f7f7;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 1rem;
}

.footer_container,
.footer_container .footer_content .footer_title1,
.footer_container .footer_content .footer_title2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer_logo {
	color: #000;
	font-size: 1.125rem;
	line-height: 1rem;
	font-weight: 700;
	text-shadow: 0px 5px 15px #333;
	margin: 0;
	padding: 0;
}

.footer_logo:hover {
	color: rgb(228, 59, 250);
	text-decoration: none;
}

.footer_logo span {
	color: rgb(228, 59, 250);
}

.footer_title1,
.footer_title2 {
	color: #000;
	font-size: 1.125rem;
	line-height: 1rem;
	letter-spacing: none;
	text-transform: uppercase;
	text-shadow: 0px 5px 15px #666;
	padding: 0 0 0 0.5rem;
}

.footer_links1,
.footer_links2 {
	display: flex;
	flex-direction: column;
	list-style: none;
	color: #333;
	row-gap: 0.1rem;
	margin-bottom: 5rem;
	padding: 0 0.5rem;
	transition-delay: 0.5s;
	text-shadow: 0px 5px 15px #999;
}

.footer_links2 li a {
	text-transform: uppercase;
}

.footer_link {
	line-height: 1rem;
	color: #000;
	text-transform: none;
}

.footer_link:hover {
	color: rgb(228, 59, 250);
	text-shadow: 0px 5px 15px rgb(228, 59, 250);
	text-decoration: none;
}


/* SNS link */
.footer_social {
	display: flex;
	column-gap: 1.2rem;
	padding: 0 0 0.5rem;
}

.footer_social-link img {
	display: inline-flex;
	max-width: 36px;
	max-height: 36px;
	color: #fff;
	background-color: #000;
	padding: 0.5rem;
	border-radius: 0.25rem;
	font-size: 1.2rem;
	box-shadow: 0px 5px 15px #333;
}

.footer_social-link:hover .line {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(10, 254, 82);
}

.footer_social-link:hover .x {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(67, 247, 238);
}

.footer_social-link:hover .threads {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(254, 243, 255);
}

.footer_social-link:hover .instagram {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.foot {
	width: 100%;
	height: 8rem;
	margin:0;
	padding: 0;
	background: #fff;
}

.foot .text p {
	font-size: 0.75rem;
	line-height: 0.5rem;
	color: #000;
	font-weight: 300;
	padding: 0.5rem 0 5rem;
	text-align: center;
	text-transform: none;
	text-shadow: 0px 5px 15px #999;
}


/* scrollup */
.scrollup {
	position: fixed;
	right: 1rem; bottom: 8%;
	display: flex;
	background-color: #f7f7f7;
	border-radius: 0.25rem;
	padding: 0.25rem;
	opacity: 0.9;
	z-index: 10;
	transition: 0.4s;
	transition-delay: 2s;
	box-shadow: 0px 5px 15px #333;
}

.scrollup_icon {
	color: #000;
	font-size: 1.2rem;
}

.scrollup:hover {
	text-decoration: none;
	opacity: 1;
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.scrollup_icon:hover {
	color: rgb(228, 59, 250);
}


/* media queries */
@media screen and (max-width: 999px) {
	body::-webkit-scrollbar {
		display: none;
	}

	header {
		width: 100%;
		height: 4rem;
	}

	header ul li {
		display: none;
	}

	header,
	header.sticky {
		padding: 10px 12px;
		z-index: 1000;
	}

	.toggle {
		position: absolute;
		top: 0.8rem; right: 1rem;
		width: 40px;
		height: 40px;
		background: url(images/menu.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 30px;
		cursor: pointer;
	}

	.toggle.active {
		width: 40px;
		height: 40px;
		background: url(images/close.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 30px;
		cursor: pointer;
	}

	header.sticky .toggle {
		filter: invert(1);
	}

	header nav {
		display: block;
		box-sizing: border-box;
		position: fixed;
		top: 55px;
		width: 100%;
		height: calc(105vh - 60px);
		background: #fff;
		opacity: 1;
		right: -100%;
		transition: right 0.5s;
	}

	header nav.sp_open {
		right: 0;
	}

	header nav ul {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	header nav.sp_open ul li {
		display: inline-block;
		height: 2rem;
		margin: 0.8rem;
		border-radius: 2px;
		line-height: 2rem;
		text-align: center;
	}

	header nav ul li a {
		display: inline-block;
		padding: 0.5rem;
		border-radius: 5px;
		color: #000;
		font-size: 1.8rem;
		text-align: center;
		text-decoration: none;
		text-shadow: 0px 5px 15px #333;
	}

	header nav.sp_open ul li a:hover {
		color: rgb(228, 59, 250);
		text-align: center;
		text-decoration: none;
	}

	.navbar a {
		font-size: 1.6rem;
		padding-bottom: 2rem;
		color: #000;
		animation: none;
		text-shadow: 0px 5px 15px #333;
	}

	.navbar a::before {
		content: attr(data-text);
		position: absolute;
		top: 35%; left: 50%;
		transform: translate(-50%, -50%);
		font-size: 1.5em;
		color: rgb(228, 59, 250);
		pointer-events: none;
		font-weight: bold;
		line-height: 1em;
		text-align: center;
		letter-spacing: 2.5rem;
		opacity: 0;
		z-index: -1;
	}

	.navbar a:hover::before {
		letter-spacing: 0rem;
		opacity: 0.5;
		transition: 0.3s ease-out;
	}

	.view h2 {
		top: 37.5%;
		font-size: 1rem;
		padding: 1.25rem;
	}

	.view p {
		top: 40%;
		font-size: 0.75rem;
		padding: 0.5rem 2rem;
	}

	.view a.info {
		top: 42.5%;
	}

	.container2 .card2 .content2 h2 {
		position: absolute;
		top: -30%;
		font-size: 6rem;
		pointer-events: none;
	}

	.container2 .card2 .content2 p {
		font-size: 0.8rem;
	}

	.scrollup {
		display: none;
	}
}


@media screen and (max-width: 768px) {
	.home h1 {
		font-size: 50px;
		font-weight: 500;
	}

	.view h2 {
		top: 35%;
		font-size: 1rem;
		padding: 1.25rem;
	}

	.view p {
		top: 37.5%;
		font-size: 0.75rem;
		padding: 0.5rem 2rem;
	}

	.view a.info {
		top: 40%;
	}

	.container2 .card2 .content2 h2 {
		position: absolute;
		font-size: 4rem;
		padding-top: 2.5rem;
	}

	.container2 .card2 .content2 h3 {
		font-size: 1.5rem;
	}
}


@media screen and (max-width: 600px) {
	header .logo,
	header .logo p {
		font-size: 80%;
	}

	header.sticky .logo,
	header.sticky .logo p {
		font-size: 80%;
	}

	.navbar a {
		font-size: 1.2rem;
		line-height: 1rem;
	}

	.view h2 {
		top: 32.5%;
		font-size: 0.75rem;
		padding: 1rem;
	}

	.view p {
		top: 35%;
		font-size: 0.5rem;
		padding: 0.25rem 2rem;
	}

	.view a.info {
		top: 37.5%;
	}

	.container2 .card2 .content2 p {
		text-align: start;
	}

	.about-btn {
		margin: 0.5rem 0;
	}

	.footer_logo {
		font-size: 0.75rem;
		line-height: 0.6rem;
	}

	.footer_title1,
	.footer_title2 {
		font-size: 0.75rem;
		line-height: 0.6rem;
	}

	.footer_links1,
	.footer_links2 {
		font-size: 0.5rem;
		line-height: 1rem;
		row-gap: 0.05rem;
	}

	.footer_social {
		display: flex;
		flex-direction: column;
		row-gap: 1rem;
	}

	.foot .text p {
		font-size: 0.25rem;
		line-height: 0.2rem;
	}
}


@media screen and (max-width: 500px) {
	.view h2 {
		top: 25%;
		font-size: 0.3rem;
		padding: 0.5rem 0.25rem;
	}

	.view p {
		top: 27.5%;
		font-size: 0.2rem;
		letter-spacing: 0.1px;
		padding: 0.25rem 0.5rem;
	}

	.view a.info {
		top: 23%;
		font-size: 0.2rem;
		padding: 4px 8px;
	}

	.container2 .card2 .content2 h2 {
		position: absolute;
		font-size: 2.5rem;
		padding-top: 3.5rem;
	}

	.container2 .card2 .content2 h3 {
		font-size: 1.5rem;
	}

	.map p,
	.map .text p {
		font-size: 1rem;
	}
}


@media screen and (max-width: 450px) {
	section .title {
		height: 4rem;
	}

	.title h2 {
		font-size: 1.8rem;
		padding-top: 2rem;
	}

	.job h3 {
		font-size: 1.2rem;
		padding-top: 15px;
	}

	.container #next,
	.container #prev {
		top: 40%;
		width: 40px;
		height: 40px;
		line-height: 80px;
		font-size: 40px;
	}

	.container .card {
		margin: 15px;
	}

	.container2 .card2 {
		margin: 70px 10px;
	}

	.container2 .card2 .content2 h2 {
		top: -8%;
		font-size: 3rem;
		padding-top: 6.5rem;
	}

	.container2 .card2 .content2 .about-p,
	.container2 .card2 .content2 .about-p2 {
		font-size: 0.5rem;
	}

	.about-btn {
		margin: 0;
	}

	.about-btn a {
		font-size: 0.8rem;
	}

	.map p,
	.map .text p {
		font-size: 0.8rem;
	}

	.container2 .card2 .content2 h3 {
		font-size: 1rem;
	}

	.container2 .card2 .content2 .about-p {
		font-size: 0.6rem;
	}

	.footer_social {
		display: flex;
		flex-direction: row;
		row-gap: 1.2rem;
	}
}


@media screen and (max-width: 350px) {
	.container2 .card2 .content2 {
		padding: 10px;
	}
}


@media screen and (max-width: 300px) {
	.container2 .card2 .content2 h2 {
		position: absolute;
		top: -10%;
		right: 0;
		font-size: 2.5rem;
		padding-top: 6.5rem;
	}

	.container2 .card2 .content2 .about-p {
		font-size: 0.5rem;
	}

	.footer_social {
		display: flex;
		flex-direction: row;
		row-gap: 1rem;
		margin-bottom: 1rem;
	}
}