/*
Theme name: Rise of Olympus
Description:
Author: Olympus
Version: 987.00
*/


:root {
	--white: #fff;
	--black: #000;
	--blue: #104478;
	--blue-d: #031526;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.8rem/1.5 Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1020px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, 
textarea, 
select,
button {
	font-family: Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h1 {
	margin-bottom: 25px;
	font-size: 1.8rem;
	line-height: 1.2;
}
.text h2, 
.text h3, 
.text h4, 
.text h5 {
	margin-bottom: 1.2rem;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.3;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
	padding-bottom: 10px;
	margin-bottom: 16px;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto 25px;text-align: center;}
.aligncenter img {
	display: inline-block;
}


.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 4px 20px;
	border-radius: 8px;
	border: none;
	background: var(--blue);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
.button:hover {
	background: var(--blue-d);
}






/* Header ----------------------------------------------------------------------------- */
.header {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	background: var(--white);
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}
.header .container {
	align-items: center;
	max-width: 1400px;
}
.header__logo {
	display: block;
	width: 140px;
	height: 64px;
	background: url('i/logo-jogoriseolympus.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.header__nav {
	margin-left: auto;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.header__nav ul li {
	position: relative;
	z-index: 5;
}
.header__nav ul li a {
	display: block;
	color: #0b1026;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
}
.header__nav ul li a:hover {
	color: #131d43;
	text-decoration: underline;
}

.header__nav-btn {
	display: none;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: #717171;
	margin: 7px 0 0;
	position: relative;
}
.header__nav-btn span::before, 
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: #717171;
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -7px;
}
.header__nav-btn span::after {
	bottom: -7px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}

.header__nav {
	flex: 1;
	margin-left: auto;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	list-style: none;
}
.header__nav ul li {
	position: relative;
}
.header__nav ul li a {
	display: block;
	color: var(--black);
	font-size: 18px;
	line-height: 1.3;
	text-decoration: none;
}
.header__nav ul li a:hover {
	text-decoration: underline;
}

.header__button {
	margin-left: 1.5rem;
}





/* Middle ----------------------------------------------------------------------------- */
.content {
	padding-top: 0.5rem;
	padding-bottom: 2rem;
}






.demo {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 30px;
	background: #ccc;
}
.demo__ins {
	display: block;
	width: 100%;
	padding-top: 64%;
	position: relative;
}
.demo__ins iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.demo__button-list {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	height: 100%;
}





.review__head {
	padding-top: 20px;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
}
.review__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% + 20px);
	margin-left: -10px;
	padding-top: 25px;
	padding-bottom: 10px;
}
.review-item {
	width: calc(33.3% - 20px);
	margin: 0 10px 20px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	border-radius: 10px;
	padding: 20px;
}
.review-item__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.review-item__name {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
}
.review-item__number {
	color: #777;
	font-size: 18px;
}
.review-item__number span {
	color: #000;
	font-weight: bold;
}
.review-item__text {
	font-size: 14px;
	line-height: 1.3;
}





.review-form {
	background: #fff;
	padding: 24px;
	border-radius: 20px;
	margin-bottom: 24px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}
.review-form__head {
	margin-bottom: 24px;
	font-size: 20px;
	line-height: 1.3;
}
.review-form__col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.review-form__label {
	width: 100%;
	margin-bottom: 12px;
}
.review-form__label label {
	display: block;
	margin-bottom: 2px;
	color: #777;
	font-size: 14px;
}
.review-form__label input,
.review-form__label textarea {
	display: block;
	width: 100%;
	height: 44px;
	padding-left: 16px;
	padding-right: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}
.review-form__label textarea {
	height: 88px;
	resize: none;
	padding-top: 4px;
}
.review-form__submit {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}
.review-form__submit input {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 4px 20px;
	border-radius: 8px;
	border: none;
	background: var(--blue);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
.review-form__submit input:hover {
	background: #185387;
}





.top-metrik__wrap {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 25px;
}
.top-metrik__list {

}
.top-metrik-item {

}
.top-metrik-item__icon {

}
.top-metrik-item__label {

}
.top-metrik-item__value {

}

.top-metrik__bg {

}
.top-metrik__bg img {

}










/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 1rem;
	padding-bottom: 5rem;
	background: var(--black);
	color: var(--white);
}
.footer-top {
	padding-bottom: 1rem;
}
.footer-top .container {
	align-items: center;
}
.footer__logo {
	display: block;
	width: 90px;
	height: 40px;
	background: url('i/logo-jogoriseolympus.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.footer__nav {
	max-width: calc(100% - 240px);
}
.footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
	gap: 1rem;
}
.footer__nav ul li {
	position: relative;
}
.footer__nav ul li a {
	display: block;
	color: var(--white);
	font-size: 18px;
	line-height: 1.3;
	text-decoration: none;
}
.footer__nav ul li a:hover {
	text-decoration: underline;
}


.footer-middle {
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}


.footer-bottom {
	padding-top: 20px;
}
.footer__copyright {
	font-size: 13px;
	line-height: 1.2;
	text-align: center;
}





.bottom-popup {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	max-width: 560px;
	margin: 0 auto;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 16px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.bottom-popup.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.bottom-popup__close {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	border: none;
	background: transparent;
	color: #777;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}
.bottom-popup__close:hover {
	color: #000;
}
.bottom-popup__icon {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border-radius: 5px;
	overflow: hidden;
	font-size: 24px;
}
.bottom-popup__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bottom-popup__text {
	flex: 1;
	padding-right: 12px;
	padding-left: 8px;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	color: #222;
}
.bottom-popup__button {
	flex: 0 0 auto;
	padding: 10px 18px;
	background: #111827;
	color: #ffffff;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}
.bottom-popup__button:hover {
	background: #374151;
}

@media (max-width: 575px) {
	.bottom-popup {
		left: 12px;
		right: 12px;
		bottom: 12px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 20px 16px 16px;
	}
	.bottom-popup__text {
		padding-right: 20px;
	}
	.bottom-popup__button {
		width: 100%;
		text-align: center;
	}
}







/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	

}











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

	.review-item {
		width: calc(50% - 20px);
	}

}












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

	.header__nav-btn {
		display: flex;
		margin-top: 16px;
	}
	.header__nav {
		position: absolute;
		top: 20px;
		right: 1rem;
		background: #fff;
		box-shadow: 0 0 8px rgba(0, 0, 0, .2);
		padding: 10px 10px 5px;
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
		z-index: 20;
	}
	.nav-active .header__nav {
		top: 64px;
		opacity: 1;
		pointer-events: auto;
	}
	.header__nav ul {
		display: block;
	}
	.header__nav ul li {
		margin-bottom: 5px;
	}

}












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

	.footer__logo {
		margin: 0 auto 16px;
	}
	.footer__nav {
		max-width: 100%;
	}
	.footer__nav ul {
		width: 100%;
		justify-content: center;
		gap: 0.8rem;
	}

}












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

	.review-item {
		width: calc(100% - 20px);
	}


	.wp-block-table {
		width: 100%;
		margin-bottom: 16px;
		overflow: hidden;
		overflow-x: visible;
	}
	.wp-block-table table {
		min-width: 600px;
	}

}












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

	.header__logo {
		width: 120px;
		height: 56px;
	}
	.header__button {
		padding: 4px 15px;
		margin-left: 0.4rem;
		font-size: 16px;
	}


	.review-form {
		padding: 16px;
		border-radius: 16px;
	}

}












/* END ============================================================= */

