@charset "UTF-8";

/*
Theme Name: Sportopia
Theme URI: https://sportopia.io/
Author: Jump
Author URI: https://www.jump.com.hk/
Description: Sportopia 2021.
Requires at least: 5.3
Tested up to: 5.8
Requires PHP: 5.6
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sportopia
*/

@font-face {
	font-family: 'Jost Medium';
	src: url('/wp-content/themes/sportopia/static/fonts/main/Jost-Medium.woff2') format('woff2'), url('/wp-content/themes/sportopia/static/fonts/main/Jost-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans SemiBold';
	src: url('/wp-content/themes/sportopia/static/fonts/main/OpenSans-SemiBold.woff2') format('woff2'), url('/wp-content/themes/sportopia/static/fonts/main/OpenSans-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans Bold';
	src: url('/wp-content/themes/sportopia/static/fonts/main/OpenSans-Bold.woff2') format('woff2'), url('/wp-content/themes/sportopia/static/fonts/main/OpenSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans Regular';
	src: url('/wp-content/themes/sportopia/static/fonts/main/OpenSans-Regular.woff2') format('woff2'), url('/wp-content/themes/sportopia/static/fonts/main/OpenSans-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Icon';
	src: url('/wp-content/themes/sportopia/static/fonts/icons/Icon-Font.eot');
	src: url('/wp-content/themes/sportopia/static/fonts/icons/Icon-Font.eot') format('embedded-opentype'), url('/wp-content/themes/sportopia/static/fonts/icons/Icon-Font.ttf') format('truetype'), url('/wp-content/themes/sportopia/static/fonts/icons/Icon-Font.woff') format('woff'), url('/wp-content/themes/sportopia/static/fonts/icons/Icon-Font.svg') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

/* VARIABLES */
:root {
	/* FONT FAMILY */
	--jost-medium: 'Jost Medium';
	--open-sans-semi-bold: 'Open Sans SemiBold';
	--open-sans-bold: 'Open Sans Bold';
	--open-sans-regular: 'Open Sans Regular';
	--icon: 'Icon';

	/* FONT SIZES */
	--heading-one: 61px;
	--heading-two: 41px;
	--heading-three: 22px;
	--heading-four: 20px;

	--body-text: 15px;
	--navigation-text: 17px;
	--footer-text: 14px;

	--heading-one-responsive: 39px;
	--heading-two-responsive: 25px;
	--heading-three-responsive: 18px;
	--heading-four-responsive: 16px;

	--navigation-text-responsive: 15px;
	--footer-text-responsive: 12px;

	/* COLOUR */
	--black: #181818;
	--white: #ffffff;
	--transparent: transparent;
	--dark-grey: #8a8a8a;
	--light-grey: #c4c4c4;
	--lighter-grey: #f3f3f3;
	--blue: #2d8c9e;
	--orange: #ffb549;
	--yellow: #f9e547;
	--black-opacity: rgba(0, 0, 0, 0.6);
	--black-opacity-dark: rgba(0, 0, 0, 0.9);
	--blue-opacity: rgba(45, 140, 158, 0.3);
	--yellow-opacity: rgba(249, 233, 71, 0.3);
	--white-opacity: rgba(255, 255, 255, 0.8);
	--white-opacity-light: rgba(255, 255, 255, 0.3);
	--linear-gradient: linear-gradient(0deg, #2d8c9e 0%, rgba(45, 140, 158, 0) 100%);

	/* TRANSITION */
	--transition: all 0.3s ease-in-out;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--open-sans-regular);
	font-size: var(--body-text);
	font-weight: normal;
	color: var(--black);
	text-align: left;
	background-color: var(--white);
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body.is-active {
	position: fixed;
	overflow: hidden;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
}

main {
	display: block;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
	padding: 0;
	margin: 0;
}

button {
	cursor: pointer;
}

input[type='email'] {
	/*rtl:ignore*/
	direction: ltr;
}

textarea {
	width: 100%;
	overflow: auto;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

embed,
iframe,
object,
video {
	max-width: 100%;
}

b,
strong {
	font-weight: 700;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

pre {
	white-space: pre;
	overflow-x: auto;
}

a {
	cursor: pointer;
	text-decoration: none;
}

h1,
h2,
h3 {
	font-weight: normal;
}

h1 {
	font-family: var(--jost-medium);
	font-size: var(--heading-one);
	position: relative;
	height: 70px;
	margin-bottom: 30px;
	line-height: 50px;
}

h1:after {
	content: '';
	background: var(--yellow);
	width: 90px;
	height: 7px;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 10px;
}

h2 {
	font-family: var(--jost-medium);
	font-size: var(--heading-two);
	line-height: 50px;
}

h3 {
	font-family: var(--open-sans-semi-bold);
	font-size: var(--heading-three);
	line-height: 28px;
}

h4 {
	font-family: var(--open-sans-regular);
	font-size: var(--heading-four);
	line-height: 26px;
}

h5 {
	font-family: var(--open-sans-bold);
	text-transform: uppercase;
	color: var(--blue);
	font-size: var(--navigation-text);
}

p {
	font-family: var(--open-sans-regular);
	font-size: var(--body-text);
	line-height: 25px;
}

@media (max-width: 991px) {
	h1 {
		font-size: var(--heading-one-responsive);
		margin-bottom: 15px;
	}

	h1:after {
		height: 3px;
		width: 40px;
	}

	h2 {
		font-size: var(--heading-two-responsive);
		line-height: 31px;
	}

	h3 {
		font-size: var(--heading-three-responsive);
		line-height: 24px;
	}

	h4 {
		font-size: var(--heading-four-responsive);
		line-height: 26px;
	}

	h5 {
		font-size: var(--navigation-text-responsive);
	}
}

/* BUTTONS */
.btn {
	font-family: var(--open-sans-bold);
	transition: var(--transition);
	display: inline-flex;
	appearance: none;
	align-items: center;
	justify-content: center;
	user-select: none;
	touch-action: manipulation;
	position: relative;
	white-space: nowrap;
	vertical-align: middle;
	line-height: 1.2;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 3px;
	cursor: pointer;
	z-index: 1;
	text-transform: uppercase;
}

.btn--send {
	font-family: var(--open-sans-bold);
	font-size: var(--body-text);
	color: var(--white);
	background: transparent;
	outline: none;
	text-transform: uppercase;
	border: 0;
	position: relative;
	margin-right: 10px;
	cursor: pointer;
}

.btn--video {
	background: var(--white-opacity-light);
	color: var(--white);
	font-size: var(--navigation-text);
	border: 0;
	border-radius: 10px;
	padding: 6px 14px;
}

.arrow-right:before {
	content: '\e900';
	font-family: var(--icon);
	color: var(--orange);
	font-size: 12px;
}

.btn--arrow-right {
	padding-left: 0;
	padding-right: 45px;
}

.btn--arrow-right:hover:after {
	right: -10px;
}

.btn--arrow-right:after {
	transition: var(--transition);
	font-family: var(--icon);
	content: '\e900';
	color: var(--orange);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0%, -7px);
}

.btn--lang {
	padding: 0;
	border-radius: 0;
	background: var(--transparent);
	border: 0;
}

.btn--lang:before {
	transition: var(--transition);
	font-family: var(--icon);
	content: '\e903';
	font-size: 30px;
	color: var(--white);
}

.btn--lang.is-active:before {
	color: var(--blue) !important;
}

/* BUTTON RESPONSIVE */
@media (max-width: 991px) {
	.btn--arrow-right:hover:after {
		right: 0;
	}
}

/* LAYOUT HEADER */
.l-header {
	position: relative;
}

.l-header--home {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
}

.l-header--home:before {
	content: '';
	background: url('/wp-content/themes/sportopia/static/images/pattern/pattern-hero-banner.png');
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: -215px;
	left: 0;
	right: 0;
	z-index: 2;
}

.l-header--image {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: calc(500px + 130px);
}

.l-header--image:before {
	content: '';
	background: url('/wp-content/themes/sportopia/static/images/pattern/pattern-hero-about.png');
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 2;
}

.l-header--image:after {
	content: '';
	background: var(--blue);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 500px;
}

.l-header--image .message {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
	color: var(--white);
	position: relative;
	z-index: 2;
}

.l-header--image .message h1 {
	font-size: var(--heading-two);
	line-height: 50px;
	margin-bottom: 50px;
	height: auto;
}

.l-header--image .message h1:after {
	bottom: -20px;
}

.l-header--image .message img {
	border-radius: 20px;
	position: absolute;
	max-width: 668px;
}

.l-header--image .message__left,
.l-header--image .message__right {
	width: 50%;
}

.l-header--image .message__left {
	padding-right: 115px;
}

.l-header--image .message__right {
	position: relative;
}

.l-header--services {
	height: calc(580px + 130px);
}

.l-header--services:after {
	height: 420px;
}

.l-header--services .message {
	flex-direction: column;
}

.l-header--services .message__bottom {
	display: flex;
	flex-direction: row;
}

.l-header--overlap {
	height: 500px;
}

.l-header--overlap .message {
	width: 100%;
	max-width: 1340px;
	justify-content: space-between;
	align-items: flex-end;
}

.l-header--overlap .message__left {
	padding-right: 0;
}

.l-header--overlap .message__left h1 {
	margin-bottom: 20px;
}

.l-header--overlap .message__left,
.l-header--overlap .message__right {
	width: auto;
}

.l-header--overlap .message__right {
	display: flex;
	flex-direction: row;
}

.l-header--full {
	background: url('/wp-content/themes/sportopia/static/images/portfolio/portfolio-hero-banner.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 650px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
	margin-bottom: 70px;
}

.l-header--full:before {
	content: '';
	background: var(--linear-gradient);
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
}

.l-header--full .message {
	width: 100%;
	margin-bottom: 50px;
	padding: 0 15px;
}

.l-header--full .message h1 {
	max-width: 1140px;
	margin: 0 auto;
	color: var(--white);
	font-size: var(--heading-two);
	line-height: 50px;
}

.l-header--contact .navigation--contact.is-sticky {
	background: var(--transparent);
}

/* LAYOUT HEADER RESPONSIVE */
@media (max-width: 1340px) {
	.l-header--image .message img {
		transform: translate(-50px, 0px);
	}
}

@media (max-width: 1241px) {
	.l-header--image .message img {
		transform: translate(-100px, 0px);
	}
}

@media (max-width: 1200px) {
	.l-header--full {
		height: 460px;
		margin-bottom: 35px;
	}

	.l-header--full .message {
		margin-bottom: 25px;
	}

	.l-header--full .message h1 {
		font-size: var(--heading-two-responsive);
		line-height: 31px;
		height: 46px;
	}

	.l-header--image {
		margin-bottom: 35px;
	}

	.l-header--image,
	.l-header--image:after {
		height: calc(100% - 20%);
	}

	.l-header--image .message {
		flex-direction: column;
		position: relative;
		padding-top: 92px;
	}

	.l-header--image .message img {
		position: relative;
		max-width: 100%;
		padding-right: 0;
		transform: none;
	}

	.l-header--image .message__left,
	.l-header--image .message__right {
		width: 100%;
	}

	.l-header--image .message__left {
		padding-right: 0;
		margin-bottom: 35px;
	}

	.l-header--image .message__right {
		display: flex;
		justify-content: center;
	}

	.l-header--image .message h1 {
		font-size: var(--heading-two-responsive);
		line-height: 31px;
		margin-bottom: 30px;
	}

	.l-header--image .message h1:after {
		bottom: -15px;
	}

	.l-header--services:after {
		height: calc(100% - 60%);
	}

	.l-header--services .message__bottom {
		flex-direction: column;
	}

	.l-header--overlap,
	.l-header--overlap:after {
		height: 500px;
	}
}

@media (max-width: 991px) {
	.l-header--overlap {
		height: 315px;
		margin-bottom: 0;
	}

	.l-header--overlap:after {
		height: 395px;
	}
}

/* LAYOUT MAIN */
.l-main {
	position: relative;
	flex: 1;
}

/* LAYOUT SECTION */
.l-section {
	max-width: 1115px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
	z-index: 2;
}

.l-section--full,
.l-section--full img {
	max-height: 450px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.l-section--full {
	margin-bottom: 70px;
}

.l-section--wide {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
}

.l-section--services-single {
	max-width: 1140px;
}

@media (max-width: 991px) {
	.l-section--full {
		margin-bottom: 35px;
		height: 390px;
	}

	.l-section--full img {
		max-height: 390px;
	}
}

/* LAYOUT FOOTER */
.l-footer {
	padding: 40px 0;
	background: var(--white);
}

.l-footer__container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1340px;
}

.l-footer .social {
	display: flex;
	flex-direction: column;
}

.l-footer .social p {
	font-family: var(--open-sans-bold);
	margin-bottom: 10px;
}

.l-footer .social ul {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.l-footer .social ul li {
	margin-right: 18px;
}

.l-footer .social ul li:last-child {
	margin-right: 0;
}

.l-footer .social a {
	display: inline-block;
	text-decoration: none;
}

.l-footer .social a:before {
	font-family: var(--icon);
	color: var(--blue);
	font-size: 30px;
}

.l-footer .social__linkedin:before {
	content: '\e907';
}

.l-footer .social__facebook:before {
	content: '\e901';
}

.l-footer .social__youtube:before {
	content: '\e906';
}

.l-footer .social__instagram:before {
	content: '\e902';
}

.l-footer .social__weibo:before {
	content: '\e905';
}

.l-footer .social__wechat:before {
	content: '\e904';
}

/* LAYOUT FOOTER RESPONSIVE */
@media (max-width: 991px) {
	.l-footer {
		padding: 30px 15px;
	}

	.l-footer__container {
		flex-direction: column;
	}
}

/* LOGO */
.logo {
	display: inline-block;
}

.logo path {
	transition: var(--transition);
}

.logo--mobile {
	display: none;
}

/* LOGO RESPONSIVE */
@media (max-width: 991px) {
	.logo {
		display: none;
	}

	.logo--mobile {
		display: inline-block;
	}
}

/* COPYRIGHT */
.copyright {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.copyright p,
.copyright a {
	color: var(--black);
	font-size: var(--footer-text);
}

.copyright p {
	margin-bottom: 0;
	text-transform: uppercase;
	line-height: 20px;
}

.copyright a {
	text-decoration: none;
}

/* NAVIGATION */
.navigation {
	transition: var(--transition);
	background: var(--transparent);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	padding: 40px 0;
}

.navigation--projects {
	background: var(--white-opacity);
	padding: 20px 0;
}

.navigation--projects .nav a,
.navigation--projects .btn--lang:before {
	color: var(--black);
}

.navigation--projects .hamburger-inner,
.navigation--projects .hamburger-inner::before,
.navigation--projects .hamburger-inner::after {
	background: var(--black);
}

.navigation--projects .nav a:nth-child(5) {
	color: var(--blue) !important;
	background: var(--blue-opacity);
}

.navigation--projects .logo path,
.navigation--projects .logo--mobile path {
	fill: var(--black);
}

.navigation--contact .nav a,
.navigation--contact .nav .btn--lang:before {
	color: var(--white);
}

.navigation--contact .logo path {
	fill: var(--white);
}

.navigation.is-sticky {
	background: var(--white);
	padding: 20px 0;
}

.navigation.is-sticky .nav a,
.navigation.is-sticky .navigation__tools .btn--lang:before {
	color: var(--black);
}

.navigation.is-sticky .nav a.nav__highlight {
	color: var(--blue);
	background: var(--black-opacity);
}

.navigation.is-sticky path {
	fill: var(--black);
}

.navigation__container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}

.nav,
.navigation__tools {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.navigation.is-sticky .navigation__tools--about .hamburger-inner,
.navigation.is-sticky .navigation__tools--about .hamburger-inner::before,
.navigation.is-sticky .navigation__tools--about .hamburger-inner::after {
	background-color: var(--black);
}

.nav a {
	transition: var(--transition);
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	text-transform: uppercase;
	color: var(--white);
	margin-right: 40px;
}

.nav a:nth-child(5) {
	color: var(--yellow) !important;
	background: var(--yellow-opacity);
	padding: 6px 14px;
	border-radius: 10px;
}

.nav [aria-current='page'] {
	color: var(--yellow) !important;
}

.navigation.is-sticky [aria-current='page'] {
	color: var(--blue) !important;
}

.navigation.is-sticky .nav a:nth-child(5) {
	color: var(--blue) !important;
	background: var(--blue-opacity);
}

.select__wrapper.js-select__wrapper.is-active {
	position: relative;
}

.select__options {
	display: none;
	color: var(--white);
	position: absolute;
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	text-transform: uppercase;
	left: -50%;
}

.select__options ul {
	display: flex;
	flex-direction: column;
	background: var(--white);
}

.wpml-ls-legacy-list-horizontal a {
	color: var(--black) !important;
	padding: 10px !important;
}

.select__option {
	padding: 5px;
	cursor: pointer;
}

.select__option.is-active {
	text-decoration: underline;
}

.select__wrapper.is-active .select__options {
	display: flex;
	flex-direction: column;
}

/* NAVIGATION RESPONSIVE */
@media (max-width: 991px) {
	.nav [aria-current='page'] {
		color: var(--blue) !important;
	}

	.navigation,
	.navigation.is-sticky {
		padding: 20px 0;
	}

	.nav {
		transition: var(--transition);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		background: var(--white);
		top: 0;
		bottom: 0;
		position: fixed;
		right: -100%;
		width: 320px;
	}

	.nav.is-active {
		right: 0;
	}

	.nav a {
		font-size: var(--navigation-text-responsive);
		color: var(--black);
		margin-bottom: 30px;
		margin-left: 50px;
	}

	.nav a:last-child {
		color: var(--blue) !important;
		background: var(--blue-opacity);
		padding: 6px 14px;
		border-radius: 10px;
		margin-bottom: 0;
		margin-left: 34px;
	}

	.navigation__container {
		align-items: center;
	}
}

/* HAMBURGER */
.hamburger {
	padding: 0;
	margin-right: 10px;
	display: none;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: var(--blue);
}

.hamburger-box {
	width: 33px;
	height: 22px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 30px;
	height: 3px;
	background-color: var(--white);
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.navigation--home.is-sticky .hamburger-inner,
.navigation--home.is-sticky .hamburger-inner::before,
.navigation--home.is-sticky .hamburger-inner::after {
	background-color: var(--black);
}

.navigation--home.is-sticky .hamburger.is-active .hamburger-inner,
.navigation--home.is-sticky .hamburger.is-active .hamburger-inner::before,
.navigation--home.is-sticky .hamburger.is-active .hamburger-inner::after {
	background-color: var(--blue);
}

.navigation--home.is-sticky .select__options {
	color: var(--black);
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: '';
	display: block;
}

.hamburger-inner::before {
	top: -8px;
}

.hamburger-inner::after {
	bottom: -8px;
}

.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* HAMBURGER RESPONSIVE */
@media (max-width: 991px) {
	.hamburger {
		display: inline-block;
		height: 20px;
	}
}

/* COPYRIGHT RESPONSIVE */
@media (max-width: 991px) {
	.copyright {
		align-items: center;
		margin-top: 20px;
	}

	.copyright p,
	.copyright a {
		font-size: var(--footer-text-responsive);
	}
}

/* FORM */
.form__input {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.form__input label {
	font-family: var(--open-sans-bold);
	line-height: 25px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: var(--body-text);
}

.form__input label,
.form__input select {
	cursor: pointer;
}

.form__input input,
.form__input textarea,
.form__input select {
	font-family: var(--open-sans-regular);
	background: transparent;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 2px solid var(--white);
	border-bottom-left-radius: 1px;
	border-bottom-right-radius: 1px;
	font-size: 15px;
	color: var(--white);
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 10px;
	width: 100%;
	margin: 0;
}

.form__input input::placeholder,
.form__input textarea::placeholder {
	font-size: var(--body-text);
	color: var(--white-opacity);
}

.form__input input:focus,
.form__input textarea:focus,
.form__input select:focus {
	outline: none;
}

.form__input textarea {
	height: 175px;
}

.form__wrap {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.wpcf7 .ajax-loader {
	position: absolute;
	left: 0;
	margin: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: var(--transparent);
	color: var(--yellow);
	padding: 0;
	border: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin-top: 20px;
}

.wpcf7-not-valid-tip {
	color: var(--yellow);
	font-size: var(--body-text);
	position: absolute;
	top: 0;
	right: 0;
}

/* INTRO SECTION */
.intro {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding: 70px 0;
}

.intro h2 {
	color: var(--blue);
	max-width: 550px;
	margin-bottom: 0;
	font-weight: normal;
}

.intro__body {
	max-width: 550px;
}

.intro__body p:first-child {
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom: 30px;
}

.intro__body p {
	margin-bottom: 30px;
}

.intro__body p:last-child {
	margin-bottom: 0;
}

/* INTRO RESPONSIVE */
@media (max-width: 991px) {
	.intro {
		padding: 35px 15px;
		flex-direction: column;
	}

	.intro h2,
	.intro__body {
		max-width: 100%;
	}

	.intro h2 {
		margin-bottom: 30px;
	}

	.intro__body p:first-child {
		margin-bottom: 15px;
	}
}

/* FACTS SECTION */
.facts {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 142px;
}

.fact__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 205px;
}

.fact__item img {
	margin-bottom: 27px;
}

.fact__item h2 {
	margin-bottom: 15px;
}

.fact__item p {
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	margin-bottom: 0;
	text-transform: uppercase;
	text-align: center;
}

/* FACTS RESPONSIVE */
@media (max-width: 991px) {
	.facts {
		padding-left: 15px;
		padding-right: 15px;
		margin: 0 auto 60px;
	}
}

@media (max-width: 680px) {
	.facts {
		justify-content: center;
	}

	.fact__item {
		margin-bottom: 30px;
	}

	.fact__item:last-child {
		margin-bottom: 0;
	}
}

/* SERVICES SECTION */
.services {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 120px;
}

.services h3 {
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	text-transform: uppercase;
	color: var(--blue);
	width: 100%;
	margin-bottom: 15px;
}

.service__item {
	border-radius: 20px;
	width: calc(50% - 10px);
	margin-right: 20px;
	position: relative;
	padding: 147px 40px 40px;
	margin-bottom: 20px;
}

.service__item h3,
.service__item p,
.service__item a {
	color: var(--white);
	position: relative;
	z-index: 2;
}

.service__item h3 {
	text-transform: none;
	margin-bottom: 15px;
	font-size: var(--heading-three);
}

.service__item p {
	margin-bottom: 30px;
}

.service__item:nth-of-type(even) {
	margin-right: 0;
}

.service__item:after {
	content: '';
	border-radius: 20px;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.service__item:after {
	background: var(--black-opacity);
}

/* SERVICES RESPONSIVE */
@media (max-width: 991px) {
	.services {
		flex-direction: column;
		padding: 0 15px;
		margin-bottom: 60px;
	}

	.service__item {
		width: 100%;
		margin-right: 0;
		padding: 114px 20px 20px;
		margin-bottom: 20px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		min-height: 365px;
	}

	.service__item:last-child {
		margin-bottom: 0;
	}

	.service__item h3 {
		margin-bottom: 7px;
		font-size: var(--heading-three-responsive);
	}

	.service__item p {
		margin-bottom: 15px;
	}
}

/*EVENTS SECTION*/
.event {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 120px;
}

.event h3 {
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	text-transform: uppercase;
	color: var(--blue);
	width: 100%;
	margin-bottom: 15px;
}

.event__item {
	border-radius: 20px;
	width: calc(50% - 10px);
	margin-right: 20px;
	position: relative;
	padding: 147px 40px 40px;
	margin-bottom: 20px;
}

.event__item h3,
.event__item p,
.event__item a {
	color: var(--white);
	position: relative;
	z-index: 2;
}

.event__item h3 {
	text-transform: none;
	margin-bottom: 15px;
	font-size: var(--heading-three);
}

.event__item p {
	margin-bottom: 30px;
}

.event__item:nth-of-type(even) {
	margin-right: 0;
}

.event__item:after {
	content: '';
	border-radius: 20px;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.event__item:after {
	background: var(--black-opacity);
}

/* event RESPONSIVE */
@media (max-width: 991px) {
	.event {
		flex-direction: column;
		padding: 0 15px;
		margin-bottom: 60px;
	}

	.event__item {
		width: 100%;
		margin-right: 0;
		padding: 114px 20px 20px;
		margin-bottom: 20px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
		min-height: 365px;
	}

	.event__item:last-child {
		margin-bottom: 0;
	}

	.event__item h3 {
		margin-bottom: 7px;
		font-size: var(--heading-three-responsive);
	}

	.event__item p {
		margin-bottom: 15px;
	}
}
/*EVENTS SECTION END*/




/* PROJECTS SECTION */
.projects {
	margin-bottom: 120px;
	position: relative;
}

.projects__title {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
	max-width: 1115px;
	width: 100%;
	margin: 0 auto;
	z-index: 3;
	position: absolute;
	left: 0;
	right: 0;
	top: 110px;
	padding: 0 15px;
}

.projects__title p,
.projects__title a,
.projects__link a,
.projects__link p {
	color: var(--white);
}

.projects__title p {
	margin-bottom: 0;
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	text-transform: uppercase;
}

.projects__link a,
.projects__link .link {
	transition: var(--transition);
	font-family: var(--jost-medium);
	font-size: var(--heading-two);
	color: var(--white);
	margin-bottom: 30px;
	display: block;
	opacity: 0.5;
}

.projects__link p {
	transition: var(--transition);
	height: 0;
	opacity: 0;
	width: 800px;
}

.projects__link.swiper-pagination-bullet-active a,
.projects__link.swiper-pagination-bullet-active .link {
	opacity: 1;
}

.projects__link.swiper-pagination-bullet-active p {
	height: 50px;
	opacity: 1;
	margin-bottom: 30px;
}

.projects__captions {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.projects__display {
	max-width: 1115px;
	position: relative;
	margin: 0 auto;
	padding: 0 15px;
}

/* 2. Projects responsive */
@media (max-width: 991px) {
	.projects {
		margin-bottom: 60px;
	}

	.projects__title {
		max-width: 100%;
		padding: 0 15px;
		top: 70px;
	}

	.projects__link p,
	.projects__link.swiper-pagination-bullet-active p {
		display: none;
	}

	.projects__link a {
		font-size: var(--heading-two-responsive);
	}

	.projects__captions {
		align-items: flex-start;
	}

	.projects__display {
		max-width: 100%;
		padding: 0 15px;
		margin: 0;
	}
}

/* SWIPER SECTION */
.swiper-container--projects {
	height: calc(100vh - 76px);
}

.swiper-container--projects .swiper-slide:after {
	content: '';
	background: var(--black-opacity);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.swiper-container--projects .swiper-slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition-duration: 0.7s !important;
}

.swiper-container--projects .swiper-slide-active {
	opacity: 1 !important;
}

.swiper-container--projects .swiper-pagination-bullet {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
	background: var(--transparent);
	box-sizing: border-box;
	text-align: left;
	opacity: 1;
	bottom: 0;
}

/* PARTNERS SECTION */
.partners {
	display: flex;
	flex-direction: column;
	max-width: 890px;
	margin: 0 auto;
	border-bottom: 1px solid var(--black);
}

.partners__title p {
	font-family: var(--open-sans-bold);
	font-size: var(--navigation-text);
	text-transform: uppercase;
	color: var(--blue);
}

.partners__logo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.partners__logo img {
	margin-bottom: 30px;
}

/* PARTNERS RESPONSIVE */
@media (max-width: 991px) {
	.partners {
		max-width: 100%;
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.partners__logo img {
		width: calc(50% - 15px);
		margin-right: 30px;
	}

	.partners__logo img:nth-child(even) {
		margin-right: 0;
	}
}

/* HOME SECTION */
.l-main--home:before {
	content: '';
	background: url('/wp-content/themes/sportopia/static/images/pattern/pattern-home-body.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top right;
	height: 100%;
	width: 100%;
	position: absolute;
}

.l-main--home > div {
	position: relative;
	z-index: 2;
}

/* ABOUT SECTION */
.l-main--about {
	position: relative;
}

.l-main--about:before {
	content: '';
	background: url('/wp-content/themes/sportopia/static/images/pattern/pattern-about.png');
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	height: 100%;
	width: 100%;
	top: -130px;
}

.about {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 70px;
	position: relative;
}

.about img {
	border-radius: 20px;
}

.about h5 {
	margin-bottom: 20px;
}

.about__left,
.about__right {
	width: 50%;
}

.about--one {
	margin-top: 30px;
}

.about--one h3 {
	color: var(--blue);
	padding-left: 20%;
}

.about--two .about__left {
	padding-right: 12%;
}

.about--three {
	flex-direction: column;
	align-items: flex-start;
}

.core {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.about__industry ul {
	display: flex;
	flex-direction: column;
	padding-left: 1.5em;
	line-height: 25px;
}

.about__industry ul:first-of-type {
	margin-right: 20px;
}

.about--four {
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 50px;
}

.about__industry {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.about--four p {
	margin-bottom: 30px;
}

.about--four .about__left {
	margin-right: 20px;
}

.about--cta {
	background: url('/wp-content/themes/sportopia/static/images/about/about-cta.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	border-radius: 20px;
	position: relative;
	height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about--cta:before {
	border-radius: 20px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black-opacity);
	z-index: 1;
}

.about--cta h2,
.about--cta a {
	z-index: 2;
	color: var(--white);
}

.about--cta h2 {
	margin-bottom: 30px;
}

/* ABOUT RESPONSIVE */
@media (max-width: 991px) {
	.l-main--about:before {
		display: none;
	}

	.about {
		flex-direction: column;
		margin-bottom: 35px;
	}

	.about__left,
	.about__right {
		width: 100%;
	}

	.about img {
		width: 100%;
	}

	.about--one h3 {
		padding-left: 0;
	}

	.about--one .about__left {
		margin-bottom: 35px;
	}

	.about--two .about__left {
		padding-right: 0;
		margin-bottom: 35px;
	}

	.about h5 {
		margin-bottom: 15px;
	}

	.core {
		flex-direction: column;
	}

	.core__list {
		width: 100%;
	}

	.core__list:first-of-type {
		margin-right: 0;
	}

	.about__industry {
		flex-direction: column;
	}

	.about--four {
		margin-bottom: 20px;
	}

	.about--four .about__left {
		margin-right: 0;
	}

	.about--four p {
		margin-bottom: 15px;
	}

	.about--cta h2 {
		margin-bottom: 15px;
	}
}

/* SERVICE SECTION */
.service {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	border-bottom: 1px solid var(--blue);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.service:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.service h5 {
	width: 40%;
}

.service p {
	width: 60%;
}

/* SERVICE RESPONSIVE */
@media (max-width: 991px) {
	.service {
		flex-direction: column;
	}

	.service h5 {
		margin-bottom: 15px;
	}

	.service h5,
	.service p {
		width: 100%;
	}
}

/* CONTACT SECTION */
.l-main--contact {
	background: var(--blue);
	padding-top: 136px;
}

.l-main--contact:before {
	content: '';
	background: url('/wp-content/themes/sportopia/static/images/pattern/pattern-contact.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top right;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
}

.l-main--contact h1 {
	color: var(--white);
	font-size: var(--heading-two);
	line-height: 50px;
}

.contact {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	color: var(--white);
	margin-bottom: 40px;
}

.contact__left-container {
	display: flex;
	flex-direction: row;
	margin-bottom: 30px;
}

.contact__text {
	width: 207px;
}

.contact__text:first-child {
	margin-right: 20px;
}

.contact__text p,
.contact__text span {
	line-height: 25px;
	font-size: var(--body-text);
}

.contact__text p span {
	font-family: var(--open-sans-bold);
}

.contact__left,
.contact__right {
	width: 50%;
}

.contact__right h3 {
	font-family: var(--open-sans-semi-bold);
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 30px;
}

.contact .social {
	display: flex;
	flex-direction: column;
}

.contact .social p {
	font-family: var(--open-sans-bold);
	margin-bottom: 10px;
}

.contact .social ul {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.contact .social ul li {
	margin-right: 18px;
}

.contact .social ul li:last-child {
	margin-right: 0;
}

.contact .social a {
	display: inline-block;
	text-decoration: none;
}

.contact .social a:before {
	font-family: var(--icon);
	color: var(--white);
	font-size: 30px;
}

.contact .social__linkedin:before {
	content: '\e907';
}

.contact .social__facebook:before {
	content: '\e901';
}

.contact .social__youtube:before {
	content: '\e906';
}

.contact .social__instagram:before {
	content: '\e902';
}

.contact .social__weibo:before {
	content: '\e905';
}

.contact .social__wechat:before {
	content: '\e904';
}

/* CONTACT RESPONSIVE */
@media (max-width: 991px) {
	.l-main--contact {
		padding-top: 96px;
	}

	.l-main--contact:before {
		background-size: cover;
	}

	.l-main--contact h1 {
		font-size: var(--heading-two-responsive);
		height: 46px;
		line-height: 31px;
	}

	.contact {
		flex-direction: column;
	}

	.contact__left,
	.contact__right {
		width: 100%;
	}

	.contact__left {
		margin-bottom: 35px;
	}

	.contact__left-container {
		justify-content: space-between;
		margin-bottom: 10px;
	}

	.contact__text {
		width: 100%;
	}

	.contact__text:first-child {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.contact__right h3 {
		margin-bottom: 15px;
		font-size: var(--heading-three-responsive);
		line-height: 24px;
	}

	.form__input {
		margin-bottom: 10px;
	}
}

@media (max-width: 550px) {
	.contact__left-container {
		flex-direction: column;
	}
}

/* ENQUIRIES */
.enquiries {
	padding: 120px 0;
	position: relative;
}

.enquiries::before {
	content: '';
	background: url('/wp-content/themes/sportopia/static/images/pattern/pattern-footer-banner.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 40%;
	transform: translate(-50%, 0%);
	bottom: 0;
	max-width: 960px;
}

.enquiries__body {
	display: flex;
	flex-direction: column;
	max-width: 350px;
	margin: 0 auto;
}

.enquiries__body h2 {
	color: var(--blue);
	font-weight: normal;
	z-index: 1;
	margin-bottom: 30px;
}

.enquiries__body .btn {
	justify-content: flex-end;
	color: var(--black);
}

/* ENQUIRIES RESPONSIVE */
@media (max-width: 991px) {
	.enquiries {
		padding: 60px 0;
	}

	.enquiries::before {
		left: auto;
		transform: none;
		max-width: 100%;
	}

	.enquiries__body {
		max-width: 210px;
		align-items: center;
	}

	.enquiries__body h2 {
		font-size: var(--heading-two-responsive);
		margin-bottom: 15px;
	}
}

/* PROJECTS SINGLE */
.detail,
.location {
	padding-left: 10%;
	padding-right: 10%;
}

.detail {
	border-bottom: 1px solid var(--blue);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.detail h5 {
	margin-bottom: 20px;
}

.location {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 75px;
}

.location span {
	font-family: var(--open-sans-bold);
}

.location__left,
.location__right {
	font-size: var(--heading-four);
	line-height: 26px;
	list-style: none;
	width: 50%;
}

.gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.gallery__item {
	width: calc(33.3% - 20px);
	margin-right: 20px;
	margin-bottom: 70px;
}

.gallery__item:nth-child(3n) {
	margin-right: 0;
}

.gallery__item:nth-last-child(-n + 3) {
	margin-bottom: 0;
}

.gallery__item img {
	border-radius: 20px;
	height: 433px;
	width: 100%;
	object-fit: cover;
}

/* PROJECTS SINGLE RESPONSIVE */
@media (max-width: 991px) {
	.detail,
	.location {
		padding-left: 0;
		padding-right: 0;
	}

	.detail {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.detail h5 {
		margin-bottom: 10px;
	}

	.location {
		margin-bottom: 35px;
		flex-direction: column;
	}

	.location__left,
	.location__right {
		font-size: var(--heading-four-responsive);
		width: 100%;
		line-height: 26px;
	}

	.gallery {
		flex-direction: column;
	}

	.gallery__item {
		width: 100%;
		margin-right: 0;
	}

	.gallery__item,
	.gallery__item:nth-last-child(-n + 3) {
		margin-bottom: 20px;
	}

	.gallery__item:last-child {
		margin-bottom: 0;
	}

	.gallery__item img {
		width: 100%;
		height: 280px;
	}
}

/* PROJECTS LANDING */
.l-section--projects {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 1340px;
	width: 100%;
	margin-top: -165px;
}

.project {
	margin-right: 20px;
	width: calc(33.3% - 13px);
	margin-bottom: 50px;
}

.project:nth-child(3n) {
	margin-right: 0;
}

.project:nth-last-child(-n + 3) {
	margin-bottom: 0;
}

.project img {
	height: 290px;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 8px rgba(45, 140, 158, 0.22);
}

.project h3 {
	color: var(--blue);
	margin-bottom: 10px;
}

.project p {
	text-transform: uppercase;
	font-size: var(--footer-text);
}

/* PROJECTS LANDING RESPONSIVE */
@media (max-width: 1015px) {
	.project {
		width: calc(31% + 9px);
	}
}

@media (max-width: 991px) {
	.l-section--projects {
		flex-direction: column;
		margin-top: 0;
	}

	.l-header--overlap .navigation.is-sticky .hamburger-inner,
	.l-header--overlap .navigation.is-sticky .hamburger-inner::before,
	.l-header--overlap .navigation.is-sticky .hamburger-inner::after {
		background-color: var(--black);
	}

	.l-header--overlap .message {
		align-items: flex-start;
	}

	.l-header--overlap .message__right,
	.l-header--overlap .message__left {
		width: auto;
	}

	.l-header--overlap .message__right {
		flex-direction: column;
		align-items: flex-start;
	}

	.l-header--overlap .message__left {
		margin-bottom: 5px;
	}

	.project {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.project:nth-last-child(-n + 3) {
		margin-bottom: 20px;
	}

	.project:last-child {
		margin-bottom: 0;
	}

	.project img {
		margin-bottom: 15px;
		height: 195px;
	}
}

/* FILTERS */
.filter {
	flex-basis: calc(50%);
	flex-direction: row;
	align-items: center;
	position: relative;
}

.filter:nth-child(odd) {
	margin-right: 15px;
}

.filter:nth-child(even) {
	margin-left: 0;
}

.filter::after {
	font-family: var(--icon);
	color: var(--orange);
	position: absolute;
	right: 0;
	transform: rotate(90deg);
	content: '\e900';
	pointer-events: none;
	font-size: 10px;
}

.filter select {
	font-family: var(--open-sans-bold);
	background: var(--transparent);
	color: var(--white);
	border: 0;
	text-transform: uppercase;
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	padding-right: 25px;
}

.filter select:focus {
	outline: none;
}

.filter select option {
	color: var(--black);
}

/* FILTERS RESPONSIVE */
@media (max-width: 991px) {
	.filter:nth-child(odd) {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

/* HERO SECTION */
.hero {
	z-index: 2;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
	width: 100%;
}

.hero h1,
.hero h3 {
	color: var(--white);
}

.hero h1 {
	max-width: 700px;
	height: auto;
	position: relative;
	line-height: 69px;
}

.hero h1:after {
	content: '';
	background: var(--yellow);
	width: 90px;
	height: 7px;
	position: absolute;
	bottom: -40px;
	left: 0;
	border-radius: 10px;
}

.hero h3 {
	max-width: 565px;
	margin-top: 60px;
	margin-bottom: 40px;
}

/* HERO SECTION RESPONSIVE */
@media (max-width: 991px) {
	.hero {
		left: 15px;
		right: 15px;
		z-index: 3;
	}

	.hero h1,
	.hero h3 {
		max-width: 100%;
	}

	.hero h1 {
		line-height: 41px;
		margin-bottom: 0;
	}

	.hero h1:after {
		bottom: -30px;
		height: 3px;
	}
}

/* VIDEO SECTION */
.video {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.video:before {
	content: '';
	background: var(--linear-gradient);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.video-js {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.vjs-tech {
	object-fit: cover !important;
}

.video img {
	display: block;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

/* VIDEO SECTION RESPONSIVE */
@media (max-width: 991px) {
	.video img {
		display: block;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
	}

	.video:before {
		z-index: 2;
	}
}

/* 1. Modal play video */
.remodal-overlay {
	background: var(--black-opacity-dark) !important;
}

.remodal-wrapper {
	padding: 0 !important;
}

#play-hero-video {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.play-video {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
	max-width: 100% !important;
	width: calc(100% - 80px) !important;
	height: calc(100% - 80px) !important;
	padding: 0 !important;
	background: var(--transparent) !important;
}

.play-video .remodal-close {
	height: 30px;
	width: 30px;
	font-size: 30px;
	cursor: pointer;
	top: -30px;
	right: 0;
	left: auto;
}

.play-video .remodal-close:before {
	font-family: var(--icon) !important;
	content: '\e905';
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

ul.page-numbers {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	list-style: none;
	max-width: 1340px;
	padding: 0 15px;
	justify-content: center;
	margin-top: 70px;
}

ul.page-numbers li {
	font-family: var(--open-sans-bold);
	font-size: 17px;
	margin-right: 30px;
}

ul.page-numbers li a {
	color: var(--black);
}

ul.page-numbers li:last-child {
	margin-right: 0;
}

ul.page-numbers li span.page-numbers.current {
	border-bottom: 3px solid var(--blue);
}
