html, body {
	width: 100%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
}

.main-container {
	width: 100%;
	padding: 0 5%;
	max-width: 1440px;
	margin: auto;
	position: relative;
}

.pc_layout {
	display: none;
}

.mb_layout {
	display: block;
}

.non-select {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.flex-left {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.flex-right {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

@media all and (min-width:992px) {

	.main-container {
		padding: 0 30px;
	}

	.pc_layout {
		display: block;
	}

	.mb_layout {
		display: none;
	}
}

/*--------------------------------------------------*/
/* banner container									*/
/*--------------------------------------------------*/

.banner-container {
	width: 100%;
	padding: 66px 0px 110px 0px;
    position: relative;
    color: #FFFFFF;
    background: transparent no-repeat 62% center;
	background-size: cover;
    background-image: url(../../Images/industry-pm/banner-bg.jpg);
}

.banner-container .main-container {
	max-width: 1275px;
}

.banner-content {
	max-width: 100%;
}

.banner-label {
	font-size: 22px;
	line-height: 27px;
}

.banner-line {
	width: 50px;
	height: 6px;
	background-color: #81F6F9;
	margin: 22px 0;
}

.banner-container h1 {
	font-size: 34px;
	font-weight: bold;
	line-height: 50px;
	margin: 0;
}

.banner-desc {
	font-size: 16px;
	line-height: 28px;
	margin-top: 20px;
	max-width: 580px;
}

.banner-btn-block {
	display: inline-flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 47px;
}

.banner-btn {
	display: block;
	text-align: center;
	padding: 13px 24px;
	min-width: 170px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 6px;
	border: 1px solid transparent;
	-webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}

/* Talk to an Expert — filled teal */
.btn-talk-expert {
	background-color: #81F6F9;
	border-color: #81F6F9;
	color: #000000;
}

.btn-talk-expert:hover {
	background-color: #DBFEFF;
	border-color: #DBFEFF;
}

.btn-talk-expert:active {
	background-color: #00DDE3;
	border-color: #00DDE3;
}

/* Place an Order — outline */
.btn-place-order {
	background-color: transparent;
	border-color: #81F6F9;
	color: #81F6F9;
}

.btn-place-order:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

.btn-place-order:active {
	background-color: rgba(255, 255, 255, 0.25);
}

@media all and (min-width:992px) {

	.banner-container {
		padding: 122px 0px 155px 0px;
	}

	.banner-content {
		max-width: 592px;
	}

	.banner-container h1 {
		font-size: clamp(34px, 3.33vw, 48px);
		line-height: clamp(50px, 4.44vw, 64px);
	}

	.banner-desc {
		margin-top: 30px;
	}

	.banner-btn-block {
		display: flex;
		flex-direction: row;
		margin-top: 47px;
	}

	.banner-btn {
		text-align: center;
	}
}

/*--------------------------------------------------*/
/* rental-turn-container							*/
/*--------------------------------------------------*/

.rental-turn-container {
	padding: 58px 0 50px 0;
	background-color: #FFFFFF;
	text-align: center;
}

.rental-turn-container .main-container {
	max-width: 1500px;
}

.rental-turn-container .title {
	font-size: 30px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
}

.rental-turn-subtitle {
	font-size: 16px;
	line-height: 23px;
	margin-top: 20px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	color: #000000;
}

.rental-turn-cards {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 24px;
	text-align: left;
}

.rental-card {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	background-color: #F1F1F2;
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
	max-width: 600px;
	margin: auto;
}

.rental-card:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.rental-card.animate {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.rental-card-image {
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.rental-card-image img {
	width: 100%;
	height: 182px;
	object-fit: cover;
	display: block;
}

.rental-card-content {
	padding: 35px 30px;
	display: flex;
	flex-direction: column;
}

.rental-card-title {
	font-size: 25px;
	font-weight: bold;
	line-height: 34px;
	color: #000000;
}

.rental-check-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 22px;
}

.rental-check-item {
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	gap: 12px;
}

.rental-check-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	margin-top: 3px;
}

.rental-item-title {
	font-size: 18px;
	line-height: 26px;
	color: #000000;
}

.rental-item-desc {
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	margin-top: 8px;
}

.rental-card-link {
	display: inline-flex;
	-webkit-align-items: center;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 32px;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.rental-card-link:hover {
	color: #062A9E;
}

.rental-card-link:hover svg circle {
	fill: #062A9E;
}

@media all and (min-width:992px) {

	.rental-turn-container {
		padding: 110px 0;
	}

	.rental-turn-container .title {
		font-size: clamp(30px, 3.33vw, 48px);
		line-height: clamp(42px, 4.58vw, 66px);
	}

	.rental-turn-subtitle {
		margin-top: 26px;
		max-width: 560px;
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(22px, 1.81vw, 26px);
	}

	.rental-turn-cards {
		-webkit-flex-direction: row;
		flex-direction: row;
		gap: 33px;
		margin-top: 56px;
	}

	.rental-card {
		flex: 1;
		max-width: 100%;
		-webkit-flex-direction: row;
		flex-direction: row;
	}

	.rental-card-image {
		width: 33%;
	}

	.rental-card-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.rental-card-content {
		flex: 1;
		padding: clamp(32px, 3.19vw, 46px) clamp(24px, 2.5vw, 36px);
	}

	.rental-card-title {
		font-size: clamp(18px, 1.74vw, 25px);
		line-height: clamp(26px, 2.36vw, 34px);
	}

	.rental-item-title {
		font-size: clamp(14px, 1.25vw, 18px);
		line-height: clamp(20px, 1.81vw, 26px);
	}

	.rental-item-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(18px, 1.53vw, 22px);
		margin-top: 10px;
	}

	.rental-card-link {
		font-size: clamp(14px, 1.25vw, 18px);
	}
}


/*--------------------------------------------------*/
/* why-amp-container								*/
/*--------------------------------------------------*/

.why-amp-container {
	position: relative;
	color: #000000;
	background-color: #F8F9FA;
	text-align: center;
	padding: 68px 0 14px 0;
}

.why-amp-container .main-container {
	max-width: 1420px;
}

.why-amp-container .title {
	font-size: 30px;
	line-height: 40x;
	font-weight: bold;
	color: #000000;
	max-width: 670px;
	margin: auto;
}

.why-amp-container .item-block {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 34px auto 0 auto;
	max-width: 600px;
	gap: 14px;
}

.why-amp-container .item {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	text-align: left;
	background: #FFFFFF;
	border-radius: 13px;
	padding: 23px;
	width: 100%;
}

.why-amp-container .item img {
	width: auto;
	height: auto;
	max-width: 63px;
}

.why-amp-container .item-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 27px;
	margin-top: 14px;
}

.why-amp-container .item-desc {
	font-size: 16px;
	line-height: 22px;
	margin-top: 12px;
}

@media all and (min-width:992px) {

	.why-amp-container {
		padding: 100x 0 28px 0;
	}

	.why-amp-container .title {
		font-size: clamp(30px, 3.33vw, 48px);
		line-height: clamp(44px, 4.58vw, 66px);
	}

	.why-amp-container .item-block {
		flex-direction: row;
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-justify-content: center;
		justify-content: center;
		margin: 38px auto 0 auto;
		max-width: 100%;
		gap: 10px;
	}

	.why-amp-container .item {
		flex: 1;
	}

	.why-amp-container .item img {
		max-width: clamp(40px, 4.38vw, 63px);
	}

	.why-amp-container .item-title {
		font-size: clamp(16px, 1.53vw, 22px);
		line-height: clamp(22px, 1.88vw, 27px);
	}

	.why-amp-container .item-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(20px, 1.53vw, 22px);
	}
}

.why-amp-container .item {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-amp-container .item:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.why-amp-container .item:nth-child(3) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.why-amp-container .item.animate {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/*--------------------------------------------------*/
/* dollhouse-container								*/
/*--------------------------------------------------*/

.dollhouse-container {
	position: relative;
	padding: 0 0 42px 0;
	background-color: #F8F9FA;
}

.dollhouse-container .main-container {
	max-width: 1420px;
}

.dollhouse-content {
	position: relative;
	padding-bottom: 560px;
	overflow: hidden;
}

.dollhouse-content iframe,
.dollhouse-content object,
.dollhouse-content embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media all and (min-width:992px) {
	.dollhouse-container {
		padding: 0 0 100px 0;
	}

	.dollhouse-content {
		padding-bottom: 56.25%;
	}
}

/*--------------------------------------------------*/
/* pm-leaders-container								*/
/*--------------------------------------------------*/

.pm-leaders-container {
	padding: 60px 0 52px;
	background-color: #FFFFFF;
}

.pm-leaders-container .main-container {
	max-width: 1380px;
}

.pm-leaders-inner {
	display: flex;
	flex-direction: column;
	gap: 36px;
	margin: auto;
	max-width: 600px;
}

.pm-leaders-title {
	font-size: 30px;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	color: #000000;
	margin-bottom: 28px;
}

.pm-leaders-image {
	width: 100%;
	overflow: hidden;
}

.pm-leaders-image img {
	width: 100%;
	height: auto;
	display: block;
}

.pm-leaders-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.pm-leaders-item {
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	gap: 11px;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.pm-leaders-item:nth-child(2) { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; }
.pm-leaders-item:nth-child(3) { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; }
.pm-leaders-item:nth-child(4) { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; }

.pm-leaders-item.animate {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.pm-leaders-item img {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}

.pm-leaders-item-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 26px;
	color: #000000;
}

.pm-leaders-item-desc {
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	margin-top: 4px;
}

@media all and (min-width:992px) {

	.pm-leaders-container {
		padding: 100px 0;
	}

	.pm-leaders-title {
		font-size: clamp(30px, 3.33vw, 48px);
		line-height: clamp(40px, 4.31vw, 62px);
		margin-bottom: 58px;
	}

	.pm-leaders-inner {
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-align-items: center;
		align-items: center;
		justify-content: space-around;
		max-width: 100%;
		gap: clamp(40px, 4.17vw, 60px);
	}

	.pm-leaders-image {
		flex: 1;
		max-width: 639px;
	}

	.pm-leaders-list {
		flex: 1;
		gap: clamp(20px, 1.94vw, 28px);
		max-width: 490px;
	}

	.pm-leaders-item img {
		width: clamp(16px, 1.53vw, 22px);
		height: clamp(16px, 1.53vw, 22px);
	}

	.pm-leaders-item-title {
		font-size: clamp(16px, 1.53vw, 22px);
		line-height: clamp(20px, 1.81vw, 26px);
	}

	.pm-leaders-item-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(19px, 1.53vw, 22px);
	}
}

/*--------------------------------------------------*/
/* cta-container									*/
/*--------------------------------------------------*/

.cta-text {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-image {
	opacity: 0;
	-webkit-transform: translateX(40px);
	transform: translateX(40px);
	-webkit-transition: opacity 0.6s ease 0.2s, -webkit-transform 0.6s ease 0.2s;
	transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.cta-text.animate {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.cta-image.animate {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.cta-container {
	position: relative;
	width: 100%;
	padding: 60px 0 74px;
	overflow: hidden;
	background-color: #EEF1F6;
}

.cta-container .main-container {
	position: relative;
	z-index: 1;
	max-width: 1380px;
}

.cta-content {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}

.cta-text {
	text-align: center;
	max-width: 600px;
	width: 100%;
}

.cta-container .title {
	font-size: 30px;
	font-weight: bold;
	line-height: 40px;
}

.cta-container .desc {
	font-size: 18px;
	line-height: 30px;
	margin-top: 18px;
	text-align: left;
}

.cta-btn-block {
	display: inline-flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 36px;
}

.cta-btn-desktop {
	display: none;
}

.cta-btn {
	display: block;
	text-align: center;
	padding: 13px 24px;
	min-width: 170px;
	background-color: #000F41;
	color: #FEFEFF;
	font-size: 16px;
	font-weight: bold;
	border-radius: 6px;
	border: 1px solid transparent;
	-webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}

/* Talk to an Expert — filled teal */
.cta-container .btn-talk-expert {
	background-color: #000F41;
	border-color: #000F41;
}

.cta-container .btn-talk-expert:hover {
	background-color: #0B40D1;
	border-color: #0B40D1;
}

.cta-container .btn-talk-expert:active {
	background-color: #000E3A;
	border-color: #000E3A;
}

/* Place an Order — outline */
.cta-container .btn-place-order {
	background-color: transparent;
	border-color: #000F41;
	color: #000F41;
}

.cta-container .btn-place-order:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

.cta-container .btn-place-order:active {
	background-color: rgba(255, 255, 255, 0.25);
}

.cta-image {
	width: 100%;
	max-width: 600px;
	margin-top: 18px;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.cta-image img {
	width: 100%;
	height: auto;
	display: block;
}

@media all and (min-width:576px) {
	.cta-container .title {
		text-align: center;
	}
}

@media all and (min-width:992px) {

	.cta-container {
		padding: 85px 0;
		background-position-x: center;
	}

	.cta-content {
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-align-items: center;
		align-items: center;
		justify-content: space-between;
		gap: 45px;
	}

	.cta-text {
		flex: 1;
		width: 50%;
		text-align: left;
	}

	.cta-container .title {
		font-size: clamp(26px, 2.64vw, 38px);
		line-height: clamp(46px, 4.72vw, 68px);
		text-align: left;
	}

	.cta-container .desc {
		font-size: clamp(14px, 1.25vw, 18px);
		line-height: clamp(22px, 2.08vw, 30px);
		text-align: left;
	}

	.cta-btn-desktop {
		display: inline-flex;
		flex-direction: row;
		margin-top: 28px;
	}

	.cta-btn-mobile {
		display: none;
	}

	.cta-image {
		-webkit-flex: 1;
		flex: 1;
		max-width: 616px;
		margin-top: 0;
		-webkit-align-self: stretch;
		align-self: stretch;
	}
}
