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

:root {
  --brand-col: #10a5b7;	/* tourquize */
  --dark-blue: #161e37; /* dark blue */
}

html {
	font-size: 16px;
}

html,
body {
	direction: rtl;
	text-align:right;
	min-height: 100%;
	width: 100%;
	scroll-behavior: smooth;
}

* {
	padding: 0;
	margin: 0;
	box-sizing:border-box;
	font-weight: 300;
	font-family: 'heebo', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.fa {
	font-family: FontAwesome !important;
}

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

.brand-col {
	color: var(--brand-col);
}

.close_btn {
	position: absolute;
    top: 2.5vh;
    left: 2.5vh;
    width: 30px;
    height: 30px;
    font-family: cursive;
    text-align: center;
    color: #ffffff;
    line-height: 28px;
    border: 2px solid #00aabc;
    border-radius: 100%;
    background: #2b2e44;
    z-index: 99999999;
    cursor: pointer;
    transition: all .2s;
}

.container {
	position:relative;
	width: 100%;
	height:max-content;
	height:95vh;
	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-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../assets/img/BGdesc-main.png");
}
.container.index .content {
	background:none;
}

.container ._video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
	z-index:-1;
}

.container ._video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_desktop{
  display: block;
}
.video_mobile{
  display: none;
}


/*=====================//
//======= NAV =========//
//=====================*/
.container .content nav {
	position:fixed;
	top:0;
	right:0;
	z-index: 9999;
}

.container .content nav ._hamburger{
	position: fixed;
	right: 0;
	display: flex;
	width: 65px;
	height: 65px;
	background: #fff;
	align-items:center;
	justify-content:center;
	z-index: 10;
}

.container .content nav .hamburger {
	display: flex;
	flex-direction:column;
	justify-content:space-between;
	width: 50%;
	height: 30%;
	transform: rotate(0deg);
	z-index: 10;
	cursor: pointer;
	transition: .5s ease-in-out;
}

.container .content nav .hamburger > div {
	height: 2.5px;
	background-color: var(--dark-blue);
	opacity: 1;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}
.container .content nav .hamburger.on > div:nth-of-type(1) {
	transform: rotate(135deg) translate(12px, -11px);
}
.container .content nav .hamburger.on > div:nth-of-type(2) {
	opacity: 0;
}
.container .content nav .hamburger.on > div:nth-of-type(3) {
	transform: rotate(-135deg);
}

#nav-logo{
	display: none;
	height:100%;
}

.container .content nav ul {
	list-style-type: none;
	line-height: 1;
	background-color: #fff;
	width: 25rem;
	transition: .3s all;
	opacity: 0;
	visibility: hidden;
	right: -100%;
	position: fixed;
	display: block;
	margin: 0 auto;
	padding-top: 2rem;
	height: 100vh;
	top:0;
	z-index:9;
}

.container .content nav ul li {
  width: 65%;
  margin: 1rem auto;
}

.container .content nav ul li a {
	display: flex;
	align-items: center;
	font-size: 0.9rem;	
	font-weight: 400;
	color: #000;
	text-decoration: none;
	flex-direction: row-reverse;
	justify-content: space-between;
	border-bottom: 1px solid black;
	padding: 0.5rem 0;
}
.container .content nav ul li a div._text{
	width: 50%;
	font-weight: bold;
	font-size: 155%;
	text-align: left;
	direction: ltr;
	line-height: 1.2;
	position: relative;
}
.container .content nav ul li a div._img {
	width: 45%;
}
.container .content nav ul li a div._img img {
	width:100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.container .content nav ul li a .new {
	width: 1.35417rem;
	height: 0.67708rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.41667rem;		
	color: white;
	background: #00b0ff;
	margin-left: 0.2rem;
}
.container .content nav.on ul {
	right: 0;
	opacity: 1;
	visibility: visible;
}
/*=== /nav ===*/


/*=============================//
//======= TOP CONTENT =========//
//=============================*/
.top-content {
	width:100%;
}
.top-content .jeep-title {
	text-align: center;
    margin-top: 2.5vh;
    margin-right: 2.5vh;
}
.top-content .jeep-title img {
	width:35vw;
}
/*=== /top-content ===*/


/*=============================//
//======= BOT CONTENT =========//
//=============================*/
.bot-content {
	width:100%;
	background:#000000;
	display:flex;
	justify-content:center;
	align-items:center;
}
.bot-content .logo-div-wrpr {
	max-width:80%;
	display:flex;
	justify-content:center;
	justify-content:center;
	gap:2vw;
	padding:5vh 0;
}
.bot-content .logo-div {
	display:flex;
	justify-content:center;
	justify-content:center;
	padding:2vw;
}
/*=== /bot-content ===*/


/*======================//
//======= FORM =========//
//======================*/
.modelogos {
    display: flex;
    justify-content: center;
    height: 15vh;
    padding: 3vh 0;
}
.modelogos a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.modelogos a:after {
  content: '';
  display: block;
  height: 100%;
  width: 1px;
  background:#ffffff;
  margin-left:0;
  margin-right:auto;
}
.modelogos a:last-child:after {
	display:none;
}
.modelogos a .logo_item {
	width:100%;
	height:100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.modelogos a .logo_item img {
	max-height:100%;
	max-width:none;
	width:auto;
	margin:0 2vw;
}

.container #form {
	width: 25vw;
	padding:0 2.5%;
	padding-top:2.5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #01a4ad;
	background-image:url("../assets/img/form-bg.png");
	background-size:100% auto;
	background-repeat:no-repeat;
	background-origin:top center;
	color: #fff;
	z-index:1;
}
.container #form > div {
	width:100%;
}
._logo {
	margin-bottom:5vh;
}
._logo img {
	width:100%;
}
.form-title {
	font-size: 1.5rem;
    margin-bottom: 2.5vh;
    line-height: 1;
    color: #ffffff;
    font-weight: 400;
	text-align:center;
}

.mob_select_yoman {
	margin-bottom:2.5vh;
	padding-bottom:2.5vh;
	text-align:center;
	border-bottom:1px solid #ffffff;
}

.container #form .input-field {
	position: relative;
}
.container #form .input-field input::placeholder {
	color: #0b233a;
}
.container #form .input-field input.on + label {
	display: initial;
}
.container #form .input-field label {
	display: none;
	position: absolute;
	bottom: 0;
	right: 0;
	color: red;
	font-size: 0.65rem;
	font-weight: 400;
}
.container #form .input-field input {
	height: 35px;
	width: 100%;
	margin-bottom: 15px;
	padding-right: 5px;
	padding-left:3px;
	color: #000000;
	border: none;
	border-radius:2px;
	background-color: #ffffff;
	direction:rtl;
}
.container #form .checkbox-container {
	position: relative;
	display: flex;
	align-items: flex-start;
}
.container #form .checkbox-container label input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  top: -1rem;
  right: -2rem;
}
.container #form .checkbox-container label input:checked + .box {
  background-image: url("../assets/img/v.svg");
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.container #form .checkbox-container label .box {
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  flex-shrink: 0;
  border: 0.05208rem solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  outline: 0.05208rem solid black;
}
.container #form .checkbox-container label .box:hover {
  background: white;
  border: 0.05208rem solid black;
}
.container #form .checkbox-container label .box:focus {
  border: 0.05208rem solid black;
}
.container #form .checkbox-container p {
  font-size: 0.625rem;
  font-weight: 400;
  margin-right: 0.6rem;
  position: relative;
  bottom: 0.25rem;
}
.container #form .checkbox-container label .box {
  outline: 0;
}
.container #form .checkbox-container label input:focus ~ #box {
  border: 0.05208rem solid black;
}

.container #form #submit {
	height: 50px;
	width:100%;
	margin-top:2.5vh;
	background-color:var(--brand-col);
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: 700;
	border: none;
	border-radius: 2px;
	cursor: pointer;
}

.container #form #thanks {
  display: none;
  text-align: center;
  margin-top: 10%;
  margin-bottom: 3rem;
}
.container #form #thanks h2 {
  font-size: 5rem;
}
.container #form #thanks h4 {
  font-size: 1.2rem;
}

#yomanframe_wrpr {
	width: 25vw;
    display: none;
    position: absolute;
    top: 155px;
	left:0;
	height:calc(100% - 125px);
	border-right:1px solid #000000;
    z-index: 9999;
}
#yomanframe {
	height: 100%;
	width:100%;
	border: 0;
	background:#ffffff;
}

#btns {
	display: none;
	/*position: fixed;*/
    bottom: 7vh;
    width: 100%;
    height: calc(40px + 3vh);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 1.5vh 2.5vh;
    background: var(--dark-blue);
    z-index: 9;
}
#btns a {
	width: 48%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight:400;
	text-decoration: none;
}
#btns a:first-of-type {
	background-color: #ffffff;
	color:var(--dark-blue);
	
}
#btns a:last-of-type {
	background-color: var(--brand-col);
	color:#ffffff;
}

.call-container {
    display: block;
    margin: 0 auto;
	margin-top:35px;
}
.samelet {
    position: relative;
    width: 15vw;
    top: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 4;
}
.samelet img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/*=== /form ===*/


/*========================//
//======= FOOTER =========//
//========================*/
footer {
	position: relative;
	width: 100%;
	padding:0 2%;
	padding-bottom:5vh;
}
footer #footer-content p {
	font-size: 0.8rem;
}
/*=== /footer ===*/

/*====== 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);
	z-index: 999;
}
.blockpage.active {
	visibility: visible;
	opacity: 1;
}
.blockpage i {
	display:block;
	position: relative;
	top:50%;
	width: 8px;
	height: 8px;
	margin: 40px auto;
	opacity: 0.5;
	border-radius: 50%;
	box-shadow:0 -11.2px 0 rgba(255,255,255,1), 8px -8px 0 rgba(255,255,255,0.9), 11.2px 0px 1px rgba(255,255,255,0.75), 8px 8px 1px rgba(255,255,255,0.6), 0px 11.2px 2px rgba(255,255,255,0.45), -8px 8px 2px rgba(255,255,255,0.3), -11.2px 0px 3px rgba(255,255,255,0.15), -8px -8px 3px rgba(255,255,255,0);
	animation: load 1.5s steps(8, end) infinite;
	scale:3;
}
@keyframes load {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*===============================//
//======= CUSTOM SELECT =========//
//===============================*/
.mobile_hide{
    display: block;
}
.desktop_hide{
    display: none;
}

.custom-select {
	position: relative;
	width:100%;
	margin:0 auto;
}

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

.select-selected {
  border:2px solid var(--brand-col);
  border-radius:6px;
}

/* Style the arrow inside the select element: */
.select-selected:before {
	position: absolute;
	content: "";
	left:1px;
	top:1px;
	width:40px;
	height:calc(100% - 2px);
	background: var(--brand-col);
	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,.select-selected {
	color: #ffffff;
	padding: 6px 16px;
	cursor: pointer;
	font-size:18px;
	background: rgb(64,71,92);
	background: linear-gradient(180deg, rgba(64,71,92,1) 0%, rgba(19,27,53,1) 100%);
}

.select-items div {
	color: var(--brand-col);
	background:#ffffff;
	border-bottom: 1px solid var(--brand-col);
}
/* Style items (options): */
.select-items {
	position: absolute;
	width:100%;
	top: 100%;
	z-index: 99;
	border: 1px solid var(--brand-col);
	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: var(--brand-col);
	color:#ffffff;
}
/*=== /custom select ===*/

.desktop_hide {
  display: none;
}
.mobile_hide {
  display: block;
}

#MCA_strip {
	position: fixed; 
	bottom: 0px; 
	left: 0px; 
	height: 12px; 
	width: 100%; 
	text-align: center; 
	background-color: rgb(255, 255, 255); 
	z-index: 999; 
	cursor: pointer;
}
#MCA_strip img {
	max-height: 100%; 
	max-width: 100%; 
	width: auto; 
	margin: 0px auto -4px;
}
#MCA_img {
	display:none;
	position: absolute;
    top: 12px;
    z-index: 9;
    left: 0;
    right: 0;
    margin: 0 auto;
	text-align:center;
	background:rgba(0,0,0,0.5);
}
#MCA_img_inner {
	padding-top:45px;
    width: 90%;
	max-width:1200px;
    margin: 0 auto;
}
#MCA_strip_close {
	display:block;
	position:absolute;
	width:24px;
	height:24px;
	line-height:24px;
	border:1px solid #666666;
	border-radius:100%;
	background:rgba(255,255,255,.35);
	left:2%;
	margin-top:7px;
	font-weight:bold;
	text-align:center;
	font-size:12px;
	cursor:pointer;
	
}
#header_div {
	position:fixed;
	top:12px;
	height:45px;
    width: 90%;
	max-width:1200px;
	background:#dadad9;
	border-bottom:2px solid #babab9;
}
#header_div h6 {
	text-align:center;
	font-size:16px;
	font-weight:bold;
	padding:10px 0;
	margin:0;
}

@media(max-width: 1024px) {
	.container {
		flex-direction: column;
		background: var(--dark-blue);
		color:#ffffff;
		padding-top: 0;	
		height:max-content;
	}
	.container.on {
		height:95vh;
	}
	
	.container ._video video {
	  width: auto;
	}

	.container .content {
		width: 100%;
		height: 60vh;
	}
	
	.container .mob_bot_content {
		border-top:4px solid var(--brand-col);
		padding-top:6px;
	}
	

	/*=====================//
	//======= NAV =========//
	//=====================*/
	.container .content nav {
		width: 100%;
		height: 20px;
		padding: 3px 5%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		background: var(--dark-blue);
	}
	.container .content nav ._hamburger {
		position:static;
		background: transparent;
		width: 30px;
		height:100%;
	}
	.container .content nav .hamburger {
		height:7px;
		width: 100%;
	}

	.container .content nav .hamburger > div {
		background-color: #ffffff;
	}
	.container .content nav .hamburger.on > div {
		background-color: var(--dark-blue);
	}
	#nav-logo {    
		display: block;
	}
	#nav-logo img {
		height:100%;
		width:auto;
	}
	
	.container .content nav ul {
		width: 75%;
		right: -50rem;
	}
	.container .content nav ul li {
		width:80%;
	}
	.container .content nav ul li a div._text {
		font-size:1.25rem;
	}
	.container .content nav ul li a div._img {
		width:40%;
	}
	.container .content nav ul li a .new {
		width: 5rem;
		height: 3rem;
		font-size: 2rem;		
		margin-left: 2rem;
	}
	/*=== /nav ===*/
	
		
	/*=============================//
	//======= TOP CONTENT =========//
	//=============================*/
	.top-content .jeep-title {
		text-align: center;
		margin: 15px auto;
	}
	.top-content .jeep-title img {
		max-height:20vh;
		width:70vw;
	}
	/*=== /top-content ===*/


	/*=============================//
	//======= BOT CONTENT =========//
	//=============================*/
	.bot-content .model-title {
		width:65vw;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 3px;
	}
	/*=== /bot-content ===*/


	/*======================//
	//======= FORM =========//
	//======================*/
	.modelogos { 
		padding: 2%;
        margin-bottom: 0;
        height: auto;
	}
	.modelogos a {
		width:20%;
	}
	.modelogos a .logo_item {
		padding:0 2vw;
	}
	.modelogos a .logo_item img {
		max-width: 100%;
	}
	
	.container #form {
		position: absolute;
		top:0;
		width: 100%;
		min-height: 100vh;
		padding:2.5vh;
		padding-top:calc(2.5vh + 50px);
		color: white;
		z-index: 999;
		left: 100%;
		transition: 500ms ease-in-out;
	}
	.container #form.on {
		left: 0;
	}
	
	._logo img {
		width: 40%;
		margin: 0 auto;
		display: block;
	}
	
	.form-title {
		margin-bottom: 5vh;
	}
	
	.mob_select_yoman {
		border-bottom:none;
	}
	
	
	.container #form .input-field {
		width:100%;
	}
	
	#yomanframe_wrpr {
		top: 8vh;
		height: calc(100% - 7vh - 8vh);
		z-index: 999;
		width: 100%;
		border: none;
	}

	#btns {
		display:flex;
	}
	
	.call-container {
		margin: 5vw 0;
		margin-top:5vw;
		margin-bottom: 3vw;
	}
	.samelet {
		width:100%;
	}
	/*=== /form ===*/
	

	/*========================//
	//======= FOOTER =========//
	//========================*/	
	footer {
		padding-bottom: 0;
	}
	/*=== /footer ===*/
	
	.blockpage.active i {
		top: 50vw;
		font-size: 30vw
	}

	/*===============================//
	//======= CUSTOM SELECT =========//
	//===============================*/
	.custom-select {
		width:90%;
	}
	.select-items {
		bottom:100%;
		top:auto;
	}
	/*=== /custom select ===*/
	
	
    .desktop_hide {
        display: block;
    }
	.mobile_hide {
        display: none!important;
    }
	
	#MCA_strip { 
		bottom:0;
		height:7vh;
	}
}

.days2025head {
	background:#000000;
	padding:1vh 10vw;
}