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

html,
body {
	scroll-behavior: smooth;
}
body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #000000;
	scroll-behavior: smooth;
}

body, body * {
	direction:rtl;
	text-align:right;
	box-sizing:border-box;
    font-family: 'Heebo', sans-serif;
	font-size: 16px;
}

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

a {
	color: #ffffff;
}

.mobile_hide {
    display: block;
}

.desktop_hide {
    display: none;
}

.bold {
	font-weight:bold!important;
	color:inherit;
	font-size: inherit;
}

/*=========================================
=============== YZ !!! YZ =================
=========================================*/

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

.container .content {
	position: relative;
	width: 75vw;
	display: flex;
	flex-direction: column;
	justify-content:space-between;
	align-items: center;
    background-image: url('../images/bg.jpg');
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}

.container .content nav {
	position:fixed;
	top:0;
	right:0;
	z-index: 9999;
	transition: all .3s ease-in-out;
}
#nav.open {
	background:#ffffff;
	border-radius: 0 0 0 75px;
}

.burger {
	width: 60px;
    height: 30px;
	margin:5vh;
	margin-bottom:2vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.burger span {
	display:block;
	height:5px;
	background:#000000;
}
.bmenu {
	height:0;
	overflow:hidden;
	transition: height .3s ease-in-out;
}
#nav.open .bmenu {
	height:fit-content;
	border-radius: 0 0 0 75px;
}
.bmenu .item {
	display: block;
    padding: 1vw 2vw;
    margin: 0 2vw;
    border-bottom: 1px solid #000000;
}
.bmenu .item:last-child {
	border:none;
}

.bmenu .item img {
	max-width:170px;
}
.bmenu .item, .bmenu .item * {
    color: #000000;
    font-size: 1.25em;
    text-decoration: none;
    text-align: center;
}

.bmenu .item .item_txt {
	display:block;
}


.top_content {
	width:100%;
}
h1 {
	width:fit-content;
    margin: 0 auto;
    padding: 45px 40px;
    border-left: 16px solid #d2232a;
    border-right: 16px solid #d2232a;
    display: flex;
    justify-content: center;
	background-image: url(../images/ttl_bg.png);
    background-size: cover;
}
h1 .logo {
	padding: 10px;
    padding-left: 45px;
    margin-left: 45px;
    border-left: 1px solid #ffffff;
    width: 12vw;
}
h1 .logo img { 
	max-height:100%;
	width:auto;
}
.h1_txt {
	color: #ffffff;
    font-size: 5vw;
    font-weight: bold;
    line-height: 0.75;
    width: min-content;
}

.bot_content {
	width:100%;
	padding-bottom:5vh;
}
.models_links_wrpr {
	width:80%;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
}
.model_link {
	text-align:center;
}
.model_logo {
	margin-bottom:20px;
}
.model_a {
	display:block;
	text-decoration:none;
	width:fit-content;
	margin:0 auto;
	padding:5px 60px;
	border:1px solid #ffffff;
	border-radius:16px;
}


.form-container,
#yomanframe_wrpr {
	width: 25vw;
}
.form-container {
	position: relative;
	background: #ffffff;
	transition: all .3s ease-in-out;
}
.form-container, .form-container * {
	color:#000000;
}
.form-container.fix{
    position: absolute;
    top: 2852px;
}

.logos {
	width:25%;
	margin:0 auto;
	padding: 5vh 0;
}

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

.inner-form {
	position: relative;
	visibility: visible;
	opacity: 1;
	z-index: 1;
	transition: .3s all;
	width:75%;
	margin:0 auto;
}

#formTop h2,
.mob_select_yoman h2 {
	margin: 0 auto;
    margin-bottom: 2.5vh;
    padding-bottom: 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
	line-height:1;
}
#formTop h2 *,
.mob_select_yoman h2 * {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
	line-height:1;
}
#formTop h2 .h2_bold,
.mob_select_yoman h2 .h2_bold {
	font-weight:bold;
    font-size: 1.75rem;
}
.form-container form {
	position: relative;
	top: 0;
}
.mandatory {
	display:none
}
.form-container .form-row {
    margin-bottom: 2.5vh;
}
.form-container .form-row input, 
.form-container .form-row select {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 5px;
    border: none;
	border-radius:10px;
    color: #000000;
	text-align:center;
    background-color: #dbdbdb;
} 
.form-container .form-row input:focus-visible {outline:none;}
.form-container .form-row ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}
.form-container .form-row :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000000;
}
.form-container .form-row ::-ms-input-placeholder { /* Microsoft Edge */
  color: #000000;
}

.areas {
    width: 100%;
    padding:0;
	margin-top:2.5vh;
    text-align: center;
    font-size: 1.8em;
    color: #fff;
	font-weight:500;
    border: 0;
	border-radius:16px;
	background: radial-gradient(circle, rgba(237,28,36,1) 0%, rgba(191,30,45,1) 100%);
    cursor: pointer;
}

.masqu_tel_wrpr {
	margin-top: 2vh;
    text-align: center;
}

.call-container {
    display: block;
    margin: 0 auto;
	margin-top:2vh;
}

.container-checkbox {
	position: relative;
    display: block;
    margin-bottom: 2vh;
    padding-right: 21pt;
    font-size: .75rem;
    font-weight: 300;
    cursor: pointer;
}
.container-checkbox, .container-checkbox * {
	line-height:1;
}
.container-checkbox * {
	font-size: inherit;
}

/* Hide the browser's default checkbox */
.checkmark,
.form-container .container-checkbox input,
#allowmailing {
	position: absolute;
    top: 0;
    right: 0;
	height: 18px;
	width: 18px;
	border: 1px #4e4c4c solid;
	cursor: pointer;
	margin:0;
}
.form-container .container-checkbox input,
#allowmailing {
	opacity: 0;
	z-index:1;
}

/*===== Create a custom checkbox =====*/

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
	box-shadow:0px 0px 3px 2px rgba(255,255,255,.7) inset;
}
/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
	background-color: #fff;
	border: 1px #000 solid;
}
/* Create the checkmark/indicator (hidden when not checked) */
.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;
}
/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
	display: block;
}

label.error {
    font-size: .8vw;
	position: relative;
    top: -25px;
	float:right;
}
input.error {
	border-bottom: 1px solid #ff0000!important;
}
select.error{
    background-color: pink !important;
}

.samelet {
    position: relative;
    width: 15vw;
    top: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 4;
}
.samelet img {
	width: auto;
    max-width: 50%;
    height: auto;
    margin: 0 auto;
}

.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);
    z-index: 999;
}
.blockpage.active {
    visibility: visible;
    opacity: 1;
}
.blockpage i {
    position: absolute;
    left: 0;
    right: 0;
    top: 44%;
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0 auto;
    font-size: 73pt;
    color: #fff;
}

._thanks #formTop h2,
._thanks .form-container .form-row,
._thanks .custom-select,
._thanks .call,
._thanks .form-container .samelet {
    opacity: 0;
    visibility: hidden;
}
.feedback {
	display:none;
}
._thanks .feedback {
    position: absolute;
	display: flex;
    flex-direction: column;
    justify-content: center;
	max-width: 85%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    font-size: 1.5em;
}
._thanks .feedback h2 {
  font-size: 300%;
  margin: 0 auto;
}
._thanks .feedback p {
  margin: 0 auto;
  font-size: 100%;
  text-align:center;
}

._footer {
	background: #fff;
	padding-bottom:5vh;	/* -> height of polution bar */
}

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

._buttons {
	display: none;
	position: static;
    bottom: 0;
    width: 100%;
    height: calc(40px + 3vh);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 1.5vh 2.5vh;
    background: #000000;
    z-index: 9;
}
._buttons a {
	width: 48%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight:400;
	text-decoration: none;
	border-radius: 2px;
}
.btn1 {
	background: rgb(209,43,52);
	background: linear-gradient(90deg, rgba(130,1,30,1) 0%, rgba(209,43,52,1) 100%);
}
.btn2 {
	color: #000000;
	background:#c3d3d7;
}
.open_form .btn1,
.open_form .btn2,
.open_form ._buttons,
.open_form ._footer,
.open_form .bmenu {
	display: none;
}
.open_form .bmenu {
	display: none!important;
}

/*===============================//
//======= CUSTOM SELECT =========//
//===============================*/
.custom-select {
	position: relative;
	width:75%;
	margin:0 auto;
	margin-bottom: 2vh;
}

.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: rgb(209,43,52);
	background: linear-gradient(90deg, rgba(209,43,52,1) 0%, rgba(130,1,30,1) 100%);
	border-radius:4px 0 0 4px;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 18px;
  left: 15px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 11px;
}

/* style the items (options), including the selected item: */
.select-items div:not(.close_btn_YZ),.select-selected {
  color: #10a5b7;
  padding: 8px 16px;
  cursor: pointer;
}

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

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

.select-items div:not(.close_btn_YZ):hover, .same-as-selected {
	background: #10a5b7;
	color:#ffffff;
}
.call {
	display: none;
}
.click2call{
    display: none;
}

.sameletbiz_logo {
    padding: 10px;
    text-align: center;
    height: min-content;
    line-height: 0;
}

/*===============================//
//========= MODEL PAGE ==========//
//===============================*/

@media(max-width: 1024px) {
	html {
		scroll-padding-top:8vh; 
	}
	body, html {
		min-height:100%;
		height:100%;
	}
	body {
		background:#000000;
	}
	body.open_form {
		overflow:hidden;
	}
	
    .desktop_hide{
        display: block;
    }
	
	.container {
		flex-direction: column;
		justify-content:flex-end;
		color:#ffffff;
		overflow: visible;
		height:/*calc(100vh - ((40px + 3vh)));*/	calc(70vh + 40px + 3vh);
		max-height: -webkit-fill-available;
		background:#000000;
	}

	.container .content {
		height:100%;
		width:100%;
		background-position: bottom center;
		background-image: url('../images/bg_mob.png');
	}
	
	.container .content nav {
		width: 65vw;
		right: 0;
		top: 0;
		height: 8vh;
		padding: 1vh 5%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	#nav.open {
		height:8vh;
		border-radius:0;
	}
	
	.burger {
		height: 4vh;
		width: 6vh;
		margin: 0;
	}
	.burger span {
		background:#ffffff;
	}
	#nav.open .burger span {
		background:#000000;
	}
	
	.bmenu {
		position: absolute;
		top: 100%;
		width: 65vw;
		right: 0;
		background: #ffffff;
	}
	
	.bmenu .item {
		height: 20vh;
		width: 80%;
		padding: 2vw;
		margin: 2vw auto;
	}
	.bmenu .item, .bmenu .item * {
		font-size:1.2em;
	}
	.bmenu .item img {
		max-height: 60%;
		height: auto;
	}
	
	h1 {
		width: 100%;
		padding: 3vh 4vw;
		flex-direction: column;
		align-items: center;
	}
	h1 .logo {
		padding: 0;
		padding-left: 0px;
		margin-left: 0px;
		border-left: none;
		width: 20vw;
		margin-bottom: 2vh;
	}
	.h1_txt {
		color: #ffffff;
		font-size: 36px;
		font-weight: bold;
		line-height: 0.75;
		width: max-content;
		text-align:center;
	}
	
	.bot_content {
		padding-bottom:3vh;
	}
	
	.models_links_wrpr {
		gap:20px;
	}
	.model_logo {
		margin-bottom:10px;
	}
	.model_a {
		padding:5px 20px;
		font-size: 0.85em;
	}
	
	.mob_select_yoman {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		background: #000000;
		padding-top: 3vh;
	}
	
	#yomanframe_wrpr {
		width: 100%;
		height:calc(100vh - 7vh - 8vh);
		top: 8vh;
		bottom: 7vh;
		border:none;
	}

	#formTop h2,
	.mob_select_yoman h2 {
		font-size: 200%;
	}
	
	.form-container {    
		display:none;
		position: fixed;
		top:0;
		padding-top: 2vh;
		height: 100vh;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 99999;
    }
	.logos {
		padding: 2vh 0 0 0;
	}
	.open_form .form-container {
		display:block;
	}
	
	.open_form .mob_select_yoman {
		display: none!important;
	}
	.x {
		position: absolute;
		display: flex;
		justify-content:center;
		color: #ffffff;
		align-items: center;
		left: 5%;
		height: 26px;
		width: 26px;
		background: #d2232a;
		border-radius: 100%;
		font-family: 'Comic Neue', cursive;
		font-weight:bold;
		z-index: 5;
    }
    .inner-form {
		width: 90%;
		margin: 0 auto;
		margin-top: 30px;
		margin-bottom: calc(7vh + 15px);	/* -> MCA_strip height */
	}
    .form-container form {
        max-width: 80%;
		margin: 0 auto;
    }
    .form-container .form-row {
		position: relative;
	}
	
	.form-container .form-row ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	  color: #000000;
	  opacity: 1; /* Firefox */
	}
	.form-container .form-row :-ms-input-placeholder { /* Internet Explorer 10-11 */
	  color: #000000;
	}
	.form-container .form-row ::-ms-input-placeholder { /* Microsoft Edge */
	  color: #000000;
	}

	.container-checkbox {
		margin-bottom:9pt;
	}
    .container-checkbox input ~ .checkmark {
        transform: scale(.7);
    }
	
	label.error {
		font-size: 3vw;
		top:-5px;
	}
	
	.call-container {
		margin: 5vw 0;
		margin-top:5vw;
		margin-bottom: 3vw;
	}
	
	.samelet {
		width:100%;
	}
		
	
	.select-items {
		top:auto;
		bottom:100%;
		z-index:999;
	}  
	
	.small-letters {
        width: 94%;
        margin: 0 auto;
        text-align: justify;
    }
	._buttons {
		display: flex;
	}


	/*===============================//
	//========= MODEL PAGE ==========//
	//===============================*/
	
	
	.sameletbiz_logo {
		padding:7px 20vw;
		display:block;
	}
	
	._footer {
		padding-top:15px;
		padding-bottom:15px;/*calc(40px + 3vh)	/*calc(7vh + 75px);	/* -> height of MCA_strip + buttons + mob_select_yoman */
	}
	
	.mobile_hide{
        display: none!important;
    }
	
}