/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
:root{
    ---primary-color: #63a2cb;
    --secondary-color: #5ce1e6;
}

/*basic reset*/
* {margin: 0; padding: 0;}
video {
  max-width: 100%;
  height: auto;
}
html {
	height: 100%;
	background: #0e0e0e;
}
.hidden {
  display: none;
}
/* ========header======== */
header{
  position: fixed;
  width: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: 1524;
  transition: box-shadow .3s , background .4s;
}
ul {
  list-style: none;
}

a {
  
  text-decoration: none;
}
h3{
  color: #000;
}
/* .nav{
  position: relative;
  height:3.5rem ;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo,
.nav__toggle,
.nav__close
{
display: flex ;
color: #0077ff;
}
.nav__logo{
  align-items: center;
  column-gap: .5rem;
  font-family: 'Teko', serif;
  font-size:  1rem;
  font-weight:  600;
  transition: color .3s;
}
.nav__logo img{
  width: 25px;
}
.nav__logo:hover{
  color: #000;
}
.nav__toggle{
font-size: 1.25rem;
cursor: pointer;
}
@media screen and (min-width: 767px) {
  .nav{
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__link{
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__menu{
    margin-left: auto;
  }
  .nav__menu{
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
    .nav__menu{
      position: fixed;
      top:-100%;
      left: 0;
      background-color: #000000;
      width: 100%;
      box-shadow: 0 8px 20px hsla(19, 64% , 24% ,.1);
      padding-block: 3.5rem;
      transition: top .4s;
    }
}
.nav__list{
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
}
.nav__link{
  color: #ffffff;
  font-weight:  500;
transition: color .4s;
}
.nav__link:hover{
  color: #4070f4;
}
.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.containere {
  max-width: 1024px;
  margin-inline: 1.5rem;
}
.show-menu{
  top: 0;
}
@media screen and (max-width: 340px) {
  .containere{
    margin-inline: 1rem;
  }
}
@media screen and (min-width: 767px) {
  .nav{
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__link{
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__menu{
    margin-left: auto;
  }
  .nav__menu{
    box-shadow: none;
  }
}
@media screen and (min-width:1024px) {
    .nav{
      height: calc(3.5rem +1.5rem);
    }
}



 */








/*===============BUTTONS===============*/
.button{
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  height: 50px;
  width: 180px;
  text-align: center;
  background-color:var(--secondary-color);
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 11px;
  cursor: pointer;
}

.button:hover{
 
    box-shadow: 0 12px 24px hsla(210, 97%, 54%, 0.2);
  
  }
.button__icon{
  font-size: 1.25rem;
}
.button--link{
  color: var(--title-color);
}
.button--flex{
  display: none;
  /* display: inline-flex; */
  align-items: center;
  column-gap: .5rem;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0, 0, 0.7)), url(../image/whitelogo.webp) no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
	font-family: "Open Sans", arial, verdana;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f0faff; */
}
 .signup{
  width: 100%;
  height: 100vh;
}

/* .wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
} */
.wrapper {
  position: relative;
  max-width: 470px;
  width: 100%;
  border-radius: 12px;
  padding: 20px 30px 120px;
  margin-top: 1rem;
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0, 0, 0.7)), url(../from/my\ logo.png) no-repeat center center fixed; */
  /* background-size: contain;
  background-position: center;
  background-attachment: fixed; */
  /* background: #4070f4; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.container{
    position: relative;
    max-width: 320px;
    width: 100%;
    margin: 80px auto 30px;
}
.select-btn{
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.select-btn .btn-text{
    font-size: 17px;
    font-weight: 400;
    color: #333;
}
.select-btn .arrow-dwn{
    display: flex;
    height: 21px;
    width: 21px;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    background: #6e93f7;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.select-btn.open .arrow-dwn{
    transform: rotate(-180deg);
}
.list-items{
    position: relative;
    margin-top: 15px;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.select-btn.open ~ .list-items{
    display: block;
}
form input  {
  height: 60px;
  outline: none;
  border: none;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  border-radius: 8px;
  background: #cec7c7;
}
form textarea{
  height: 60px;
  outline: none;
  width: 80%;
  border: none;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  border-radius: 8px;
  background: #cec7c7;
}
.list-items .item{
    display: flex;
    align-items: center;
    list-style: none;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 15px;
    border-radius: 8px;
}
.list-items .item:hover{
    background-color: #e7edfe;
}
.item .item-text{
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.item .checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    margin-right: 12px;
    border: 1.5px solid #c0c0c0;
    transition: all 0.3s ease-in-out;
}
.item.checked .checkbox{
    background-color: #4070f4;
    border-color: #4070f4;
}
.checkbox .check-icon{
    color: #fff;
    font-size: 11px;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
}
.item.checked .check-icon{
    transform: scale(1);
}
/*form styles*/
#msform {
	width: 85%;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: #ffffff;
	border: 0 none;
	border-radius: 2rem;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	
	box-sizing: border-box;
	width: 100%;
	/* margin: 0 10%; */
	
	/*stacking fieldsets above each other*/
	position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
/* #msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
} */
/*buttons*/
#msform .action-button {
  width: 43%;
  background: var(--secondary-color);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 2rem;
  cursor: pointer;
  padding: 10px 5px;
  /* position: absolute; */
  bottom: 20px;
  right: 35px;
  border-radius: 14px;
  /* width: 120px; */
  height: 40px;
  z-index: 999;
  /* background-color: #0077ff; */
  color: white;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px var(--secondary-color);
}
/*headings*/
.fs-title {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--secondary-color);
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 14px;
	color: #000000;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 4.75%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 55px;
	line-height: 20px;
	display: block;
	font-size: 0;
	color: #333;
	background: #cecece;
	border-radius: 2rem;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background:#5ce1e6;
	color: white;
}

.help-block {
  font-size: .8em;
  color: #7c7c7c;
  text-align: left;
  margin-bottom: .5em;
}
.checkbox-container {
    display: flex;
    flex-direction: column; /* تغيير الاتجاه إلى أفقي */
}

.checkbox-container label {
    display: flex;
    align-items: center;
    margin-right: 15px; /* تباعد بين الخيارات الجنبية */
}

.checkbox-container input[type="checkbox"] {
    margin-right: 5px;
}
.lab{
  margin-bottom: 0.5rem;
  text-align: initial;
  margin-top: 0.5rem;
}



/* Custom input range */
.range {
  margin-top: 6rem;
  margin-bottom: 3rem;
  height: 64px;
  width: 70%;
  max-width: 332px;
  background-color: hsl(256, 64%, 88%);
  border-radius: 4rem;
  box-shadow: 0 6px 16px hsla(256, 72%, 24%, .15);
  padding-inline: 2.5rem;
  display: grid;
  }
  
  .range__content {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
  }
  
  .range__slider {
    width: 100%;
    height: 16px;
    background-color: hsl(256, 58%, 94%);
    border-radius: 4rem;
    box-shadow: 0 4px 12px hsla(256, 72%, 24%, .2);
    overflow: hidden;
  }
  
  .range__slider-line {
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    width: 0;
  }
  
  .range__thumb {
    width: 32px;
    height: 32px;
    background-color: hsl(256, 58%, 94%);
    border-radius: 50%;
    box-shadow: 0 0 12px hsla(256, 72%, 24%, .2);
    position: absolute;
  }
  
  /* Value input range */
  .range__value {
    width: 64px;
    height: 64px;
    background: linear-gradient(95deg, hsl(182.17deg 73.4% 63.14%) -7%, hsl(181.23deg 94.32% 14.44%) 112%);
    position: absolute;
    top: -82px;
    left: -16px;
    border-radius: 2rem 2rem 2rem .25rem;
    transform: rotate(-45deg);
    display: grid;
    place-items: center;
  }
  
  .range__value-number {
    transform: rotate(45deg);
    color: var(--white-color);
    font-size: var(--h1-font-size);
  }
  
  /* Default input range */
  .range__input {
    appearance: none;
    width: 100%;
    height: 16px;
    position: absolute;
    opacity: 0;
  }
  
  .range__input::-webkit-slider-thumb {
    appearance: none;
    width: 32px;
    height: 32px;
  }
  
  .range__input::-webkit-slider-thumb:hover {
    cursor: pointer;
  }
  .form.login input {
    border: 1px solid #aaa;
  }
  
  .form.login input:focus {
    box-shadow: 0 1px 0 #ddd;
  }
  
  form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .checkbox input[type="checkbox"] {
    height: 16px;
    width: 16px;
    accent-color: #fff;
    cursor: pointer;
  }
  
  form .checkbox label {
    cursor: pointer;
    color: #fff;
  }
  
  form a {
    color: #333;
    text-decoration: none;
  }
  
form input[type="submit"] {
  margin-top: 15px;
  padding: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.form.login input[type="submit"] {
  background: #4070f4;
  color: #fff;
  border: none;
}

form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input[type="checkbox"] {
  height: 16px;
  width: 16px;
  accent-color: #fff;
  cursor: pointer;
}

form .checkbox label {
  cursor: pointer;
  color: #fff;
}
.f{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}
.fy{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.fn{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;

}
.ff{
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  justify-content: center;
}
.f1,
.f2,
.f3{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.fi{
  display: grid;
}
@media screen and (max-width:300px) {
  .wrapper{
    padding: 0;
  }
  #msform fieldset{
    padding: 16px 12px;
  }
  .range{
    width: 65%;
  }
  .signup{
    height: 112vh;
  }
}
@media screen and (max-width:350px) {
  .wrapper{
    padding: 0;
  }
  #progressbar li{
    width: 4.8%;
  }
  
}

/*=============== whatsapp  ===============*/
.whatsapp{
  position: fixed;
  background-color: #35dd54;
  right: 1rem;
  bottom: 5rem;
  padding: .5rem;
  display: inline-flex;
  border-radius: 50%;
  opacity: .8;
  z-index: 1515151565656;
  transition: .4s;
}
.wahtsapp-icon{
  font-size: 2rem;
  color: #fff;
}

