@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --brand-color: #EFC83C;
}

html,
body {
	scroll-behavior: smooth;
}
body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #000000;
	font-size:16px;
}

body, body * {
	direction:rtl;
	text-align:right;
	box-sizing:border-box;
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}
@media(max-width: 1024px) {
	html {
		scroll-padding-top:0;
	}
	body, html {
		min-height:100%;
		height:100%;
	}
	body {
	}
}

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

a {
	color: #ffffff;
}

h1, h2, h3, h4, h5, h6, p {
	margin:0;
}

.mobile_hide {
    display: block;
}

.desktop_hide {
    display: none;
}

.bold {
	font-weight:bold!important;
	color:inherit;
	font-size: inherit;
}
.brand-color {
	color:var(--brand-color);
}

/*=====================================
=============== START =================
=====================================*/

.container {
	position:relative;
	width: 100%;
	display: flex;
	flex-direction:column;
	overflow: hidden;
	z-index: 1;
}

.container .content_wrpr {
	position:relative;
	width: 100%;
	display: flex;
}

.container .content {
	position: relative;
	height:95dvh;
	width: 75dvw;
	display: flex;
	flex-direction: column;
	justify-content:space-between;
	padding:4dvh 2dvw;
	background-image:url(../images/panda/mainBG.webp);
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
}

.container .section {
	position: relative;
	height:95dvh;
	width: 75dvw;
}

.container .content .content-top-masc {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
	z-index:0;
}

.container .content .content-top {
	z-index:1;
}

.container .content .content-top h1 {
	max-width:40%;
	margin:0 auto;
}

.container .content .content-top h2 {
	text-align:center;
	margin:0 auto;
	color:#ffffff;
	font-size:3dvw;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
}

.container .content .content-bottom {
	color:#ffffff;
	font-size:1.5dvw;
	text-align:center;
	z-index:1;
}
.main_wrpr {
	margin-bottom:5dvh;
}

@media(max-width: 1024px) {	
	.main_wrpr {
		display:flex;
		flex-direction: column;
		overflow: hidden;
		height:93dvh;
		margin-bottom:0;
	}
	
	.container {
		flex-direction: column;
		flex-wrap: nowrap;
		height:100%;
		max-height:100%;
		overflow:scroll;
	}

	.container .content_wrpr {
		flex-direction:column;
	}

	.container .content {
		width: 100%;
        height: 55dvh;
		padding: 2dvh 3dvh;
		color:#ffffff;
        background-color: #000000;
		background-size:110%;
		background-image:url(../images/panda/mainBG-mob.webp);
	}

	.container .section {
		position: relative;
		width: 100%;
		height:auto;
	}
	
	.container .content .content-top h1 {
		max-width: 70%;
	}
	
	.container .content .content-top h2 {
		font-size:6dvw;
		font-size: 22px;
	}
	
	.container .content .content-bottom {
		font-size:5dvw;
		font-size: 18px;
		line-height:1;
	}
}


/*======================*/
/*===== mob-header =====*/
/*======================*/
.mob-header {
	display:none;
}

@media(max-width: 1024px) {	
	.mob-header {
		display:flex;
		justify-content:flex-end;
		align-items:center;
		height: 8vh;
		width: 100%;
		padding: 2dvh 5dvw;
		background: #171516;
		flex-shrink: 0;
        flex-grow: 0;
	}
	.mob-header img {
		max-height:100%;
	}
}


/*=========================*/
/*====== grid_layout ======*/
/*=========================*/
.grid_layout {
	display: flex;
	flex-direction: column;
}

.grid_layout .dbl_section {
	display:flex;
	width:100%;
	height:47.5dvh;
	background-color:var(--brand-color);
}

.grid_layout .dbl_section .grid_item_R {
	width:45%;
	flex-shrink:0;
	flex-grow:0;
}

.grid_layout .dbl_section .grid_item_L {
	width:100%;
}

.grid_layout .dbl_section .grid_item_img {
	background-position:center;
	background-size:cover;
}
.grid_layout .dbl_section .grid_item_img.gii-1 {
	background-image:url(../images/panda/img1.webp);
}
.grid_layout .dbl_section .grid_item_img.gii-2 {
	background-image:url(../images/panda/img2.webp);
}

.grid_layout .dbl_section .grid_item_txt {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:flex-start;
	padding:0 5dvw;
}
.grid_layout .dbl_section .grid_item_txt h4 {
	font-size:1.5em;
}

@media(max-width: 1024px) {	
	.grid_layout .dbl_section {
		flex-direction:column;
		height:auto;
	}
	
	.grid_layout .dbl_section .grid_item_R {
		width:100%;
		flex-shrink:1;
		flex-grow:1;
	}

	.grid_layout .dbl_section .grid_item_txt {
		width:100%;
		height:auto;
		padding:5dvh 5dvw;
		order:2;
	}
	
	.grid_layout .dbl_section .grid_item_img {
		height:35dvh;
		order:1;
	}
}


/*=========================*/
/*====== grid_layout ======*/
/*=========================*/
.imgBG {
	background-position:top;
	background-size:cover;
}
.imgBG.imgBG-1 {
	background-image:url(../images/panda/img3.webp);
}

.imgBG .imgBG-top {
	color:#ffffff;
	padding:5dvh 5dvw;
}
.imgBG .imgBG-top h2 {
	color:#ffffff;
	text-align:center;
	font-size:3dvw;
	font-weight:700;
	color:var(--brand-color);
}
.imgBG .imgBG-top h3 {
	color:#ffffff;
	text-align:center;
	font-size:2dvw;
	font-weight:400;
}
.imgBG .imgBG-top h4 {
	color:#ffffff;
	text-align:center;
	font-size:2dvw;
	font-weight:700;
}

@media(max-width: 1024px) {	
	.imgBG {
		height:60dvh;
	}
}


/*==========================*/
/*===== form-container =====*/
/*==========================*/
.form-container {
	height:95dvh;
	width: 25dvw;
    position: fixed;
	top:0;
	left:0;
    background: var(--brand-color);
    display: flex;
    flex-direction: column;
	padding: 3dvh 2dvh;
    padding-bottom: 0;
	border-right:0.5dvw solid #ffffff;
	z-index:2;
}

.form-container .x_close {
	display: none;
	position: absolute;
	justify-content:center;
	color: #ffffff;
	align-items: center;
	left: 2vh;
	top:2vh;
	height: 26px;
	width: 26px;
	background: #d2232a;
	border-radius: 100%;
	font-weight:bold;
	z-index: 5;
}

.form-container ._main_logo {
	max-width: 30%;
    margin: 0 auto;
    padding: 2dvh;
    padding-top: 0;
    border-bottom: 1px solid #000000;
}

.form-container .form-ttl {
	margin: 3dvh 0;
    text-align: center;
    font-size: 1.75dvw;
    font-weight: 500;
    line-height: 1;
}

.form-container .form-sub-ttl {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.form-container .inner-form {
    position: relative;
    z-index: 1;
    transition: .3s all;
}

.form-container .main_form {
	display:flex;
	justify-content:center;
	flex-direction:column;
	gap:3dvh;
	position: relative;
	padding:0 1dvw;
}

.form-container .form-row {
	position:relative;
	width: 100%;
    margin: 0 auto;
	text-align:center;
}

.form-container .form-row input, 
.form-container .form-row select {
    display: block;
    width: 100%;
    height: 35px;
    padding: 0 5px;
    margin-bottom: 0px;
    border: none;
    color: #000000;
	font-size:1rem;
    background-color: #ffffff;
} 
.form-container .form-row input:focus-visible,
.form-container .form-row select:focus-visible {
	outline:none;
}
.form-container .form-row ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #757575;
  opacity: 1; /* Firefox */
}
.form-container .form-row :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #757575;
}
.form-container .form-row ::-ms-input-placeholder { /* Microsoft Edge */
  color: #757575;
}
.form-container .form-row select option {
	color:#000000;
}

/*--- container-checkbox ---*/
.form-container .form-row .container-checkbox,
.form-container .form-row .container-checkbox * {
    font-size: .75rem;
    font-weight: 300;
	line-height:1;
}
.form-container .form-row .container-checkbox {
	position: relative;
    display: block;
    padding-right: 21pt;
    cursor: pointer;
}
.form-container .form-row .container-checkbox .checkmark,
.form-container .form-row .container-checkbox #allowmailing {
	position: absolute;
    top: 0;
    right: 0;
	height: 18px;
	width: 18px;
	border: 1px #ffffff solid;
	cursor: pointer;
	margin:0;
}
.form-container .form-row .container-checkbox #allowmailing {
	opacity: 0;
	z-index:1;
}
.form-container .form-row .container-checkbox:hover input ~ .checkmark {
	box-shadow:0px 0px 3px 2px rgba(255,255,255,.7) inset;
}
.form-container .form-row .container-checkbox input:checked ~ .checkmark {
	background-color: #fff;
	border: 1px #000 solid;
}
.form-container .form-row .container-checkbox .checkmark:after {
	content: "";
	left: 6px;
	top: 3px;
	width: 3px;
	height: 7px;
	border: solid black;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	display: none;
}
.form-container .form-row .container-checkbox input:checked ~ .checkmark:after {
	display: block;
}

.form-container .form-row .areas {
    width: 100%;
	height:45px;
    padding:0;
    text-align: center;
    font-size: 1.5rem;
    color: #000000;
	font-weight:400;
    border: 0;
	background-color: #ffffff;
    cursor: pointer;
}

.form-container .form-row label.error {
	position: absolute;
    top:32px;
	right:0;
    font-size: 0.85rem;
}
.form-container .form-row input.error {
	border-bottom: 1px solid #ff0000!important;
}

.form-container .masqu_tel_wrpr {
    text-align: center;
}
.form-container .call-container {
    display: block;
    margin: 0 auto;
	margin-top:1dvh;
}
.form-container .call-container .samelet {
    position: relative;
    width: 15vw;
    top: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 4;
}
.form-container .call-container .samelet img {
	width: auto;
    max-width: 40%;
    height: auto;
    margin: 0 auto;
}

/*--- feedback ---*/
.form-container .feedback {
	display:none;
    flex-direction: column;
	justify-content: center;
	height:100%;
	max-width: 85%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    font-size: 1.5em;
}
.form-container .feedback h2 {
	font-size: 2rem;
	margin: 0 auto;
}
.form-container .feedback p {
	margin: 0 auto;
	text-align:center;
}

@media(max-width: 1024px) {	

	.form-container {    
		display:none;
		position: fixed;
		top: 0;
		height: calc(100% - 7vh);
		left: 0;
		right: 0;
		width: 100%;
		z-index: 22;
    }
	.form-container .x_close {
		display: flex;
	}
	
	.form-container .form-ttl {
		font-size: 7dvw;
        margin-top: 0;
        font-weight: 700;
	}
	
    .form-container .main_form {
		margin: 0 auto;
    }
	
    .form-container .form-row {
		position: relative;
		width: 100%;
	}
	
	.form-container .call-container {
		margin: 0;
        margin-top: 5vh;
	}
	.form-container .call-container .samelet {
		width:100%;
	}
}
/*===== /form-container =====*/


/*=================*/
/*===== YOMAN =====*/
/*=================*/

/*===== mob_select_yoman =====*/
/*
.mob_select_yoman {
	width:90%;
	margin:3vh auto;
    padding: 2vh 0;
	border-top:1px solid #ffffff;
	border-bottom:1px solid #ffffff;
}
@media(max-width: 1024px) {
	.mob_select_yoman {
		display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
		padding:2vh 0;
		margin-right: -2vh;
        width: calc(100vw);
	}
}
*/
/*===== CUSTOM SELECT =====*/
.custom-select {
	position: relative;
	width:75%;
	margin:0 auto;
	margin-bottom: 1dvh;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  border:2px solid #ffffff;
  border-radius:6px;
}

/* Style the arrow inside the select element: */
.select-selected:before {
	position: absolute;
	content: "";
	left:2px;
	top:2px;
	width:40px;
	height:calc(100% - 4px);
	background: #000000;
	border-radius:4px 0 0 4px;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  translate:0 -3px;
  left: 15px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
  transition: .2s all ease-in-out;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform:rotate(180deg);
  top: 11px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  padding: 5px 16px;
  cursor: pointer;
  background:#000000;
}

.select-items div {
	color: #333333;
	background:#ffffff;
	border-bottom: 1px solid #333333;
}
/* Style items (options): */
.select-items {
	position: absolute;
	width:100%;
	top: 100%;
	z-index: 99;
	border: 1px solid #333333;
	border-radius: 6px;
	overflow: hidden;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
	background: #333333;
	color:#ffffff;
}

@media(max-width: 1024px) {	
	.custom-select {
		width:90%;
	}
	.select-items {
		top:auto;
		bottom:100%;
		z-index:999;
	}  
}

/*===== yomanframe_wrpr =====*/

#yomanframe_wrpr {
    display: none;
    position: absolute;
    top: 5dvh;
	left:0;
	width: 25dvw;
	height:calc(100% - 5dvh);
	border-right:1px solid #000000;
    z-index: 9999;
}
#yomanframe_wrpr .close_iframe {
    position: absolute;
    top: 10px;
    left: 10px;
    margin-top: 0;
    width: 30px;
	aspect-ratio:1;
    text-align: center;
    line-height: 31px;
	color:#ffffff;
    background: #333333;
    border-radius: 100%;
	cursor:pointer;
}
#yomanframe_wrpr #yomanframe {
	height: 100%;
	width:100%;
	border: 0;
	background:#ffffff;
}

@media(max-width: 1024px) {
	#yomanframe_wrpr {
		width: 100%;
		height:calc(100vh - 7vh - 8vh);
		top: 8vh;
		bottom: 7vh;
		border:none;
	}
}

/*===== /YOMAN =====*/


/*=======================//
//===== BLOCKPAGE =======//
//=======================*/
.blockpage {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
	z-index:-1;
}
.blockpage.active {
    visibility: visible;
    opacity: 1;
    z-index: 9999999;
}

/*--- loader ---*/
.blockpage .lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.blockpage .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.blockpage .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1397a0;
  margin: -3px 0 0 -3px;
  box-shadow:0 0 2px 1px rgba(255, 255, 255, 1);
}
.blockpage .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.blockpage .lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.blockpage .lds-roller div:nth-child(2) {
  animation-delay: -0.108s;
}
.blockpage .lds-roller div:nth-child(2):after {
  top: 57px;
  left: 39px;
}
.blockpage .lds-roller div:nth-child(3) {
  animation-delay: -0.18s;
}
.blockpage .lds-roller div:nth-child(3):after {
  top: 57px;
  left: 25px;
}
.blockpage .lds-roller div:nth-child(4) {
  animation-delay: -0.252s;
}
.blockpage .lds-roller div:nth-child(4):after {
  top: 50px;
  left: 14px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*======= /BLOCKPAGE =============
=================================*/


/*===================*/
/*===== _footer =====*/
/*===================*/
._footer {
	width:100%;
	background: #fff;
}

._footer .small-letters {
    padding: 0.5dvw 1dvw;
    margin: 0;
	font-size: 0.8em;
}
._footer .small-letters,
._footer .small-letters * {
    line-height: 1.2;
}
._footer .small-letters * {
	font-size: 1em;
}
._footer .small-letters a {
    color: blue;
}

@media(max-width: 1024px) {
	._footer {
		padding-top:2dvh;
	}	
	._footer .small-letters {
        width: 94%;
        margin: 0 auto;
        text-align: justify;
    }
}
/*===== /_footer =====*/


/*====================*/
/*===== _buttons =====*/
/*====================*/
._buttons {
	display: none;
	height: 8vh;
	width: 100%;
	padding: 0 3dvw;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 3dvw;
	flex-shrink: 0;
    flex-grow: 0;
}
._buttons .btn {
	width: 48%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight:400;
	text-decoration: none;
	border-radius: 2px;
}
._buttons .btn.btn1 {
	background-color: rgb(209,43,52);
	background: linear-gradient(90deg, rgba(130,1,30,1) 0%, rgba(209,43,52,1) 100%);
}
._buttons .btn.btn2 {
	color: #000000;
	background-color:#c3d3d7;
}
@media(max-width: 1024px) {	
	._buttons {
		display: flex;
	}
}
/*===== /_buttons =====*/


/*===================*/
/*===== _thanks =====*/
/*===================*/
._thanks .form-container .feedback {
	display: flex;
}
._thanks .inner-form {
    display:none;
}
/*===== /_thanks =====*/


/*=====================*/
/*===== open_form =====*/
/*=====================*/
.open_form .btn1,
.open_form .btn2,
.open_form ._buttons,
.open_form ._footer {
	display: none;
}

@media(max-width: 1024px) {
	body.open_form {
		overflow:hidden;
	}
	.open_form .form-container {
		display:block;
	}
	
	.open_form .mob_select_yoman {
		display: none!important;
	}
}
/*===== /open_form =====*/


/*============================================================================*/
/*============================== BUTTONS ON TOP ==============================*/
/*============================================================================*/
/*
@media(max-width: 1024px) {
	.container {
		padding-top: 8vh;
		height:auto;
	}
	
	.container .content {
        height: calc(100dvh - 7vh - 8vh);
	}
	
	._footer {
        padding-top: 10px;
        padding-bottom: calc(7vh + 10px);
    }
	._buttons .btn {
		height: 50%;
        width: auto;
        aspect-ratio: 1;
		border-radius: 0px;
		background-size:contain;
		font-size:0;
		text-indent:-10000px;
		background-repeat:no-repeat;
		background-position:center;
	}
	._buttons .btn.btn1 {
		background-color:transparent;
		background-image: url('../images/btn11.png');
		background-size:contain;
	}
	._buttons .btn.btn2 {
		background-color:transparent;
		background-image: url('../images/btn22.png');
		background-size:contain;
	}
	
	._buttons .sep {
		height:3vh;
		width:1px;
		background:#ffffff;
		flex-grow:0;
		flex-shrink:0;
	}
}
*/


/*==================================================================================*/
/*============================== FORM IS ALLWAIS OPEN ==============================*/
/*==================================================================================*/
@media(max-width: 1024px) {	

	.form-container {    
		display:block;
		position: relative;
		height:auto;
		z-index:1;
		padding-bottom: 3dvh;
		margin:0;
		border:0;
	}
	.form-container .x_close {
		display:none;
	}
	
	.form-container .call-container {
		display:none;
	}
}



@media(max-width: 1024px) {	
    .desktop_hide {
        display: block;
    }
	.mobile_hide{
        display: none!important;
    }
}




.hideBRinDesctop {
	display:none;
}
@media(max-width: 1024px) {	
	.hideBRinDesctop {
		display:block;
	}
}