
/* 
<uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900 
*/


*{
  padding: 0;
  margin: 0;
}
img{
  max-height: 100%;
  max-width: 100%;
  height: auto;
}
a{
  text-decoration: none;
  outline: none;
  color: #472B80;
  transition: all 0.5s ease 0s;
}
a:hover{
  color: #9370DB;
  transition: all 0.5s ease 0s;
}


body{
  padding: 0;
  margin: 0;
  color: #472B80;
  background: #fff;
  font-size: 16px;
  /* text-transform: capitalize; */
  /* background: #131436; */
  font-family: "Alexandria", serif;
  direction: rtl;
}

.container{
  max-width: 1200px;
  width: 100%;
}

/* HEADER */
header{
  position: sticky;
  top: 0;
  padding: 10px 15px;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid #cbcbcb;
}
header .container{
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo{
  padding: 0;
  float: right;
  margin: 0 0 0 auto;
}
header .container .logo img{
  width: auto;
  height: 88px;
}

header .container ul.navbar-header{
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
header .container ul.navbar-header li{
  padding: 0 2px;
  position: relative;
}
header .container ul.navbar-header li a{
  display: block;
  padding: 10px 15px;
  color: #399ed8;
  font-weight: 400;
  font-size: 14px;
  border-bottom: 1px solid #ffffff00;
}
header .container ul.navbar-header li:hover a,
header .container ul.navbar-header li a.actvie
{
  color: #ffffff;
  background: #ea4b60;
  border-radius: 30px;
}

@media (max-width: 769px) {
  header {
    padding: 15px 15px;
  }
  header .container .logo img{
    height: 60px;
    float: right;
  }
header .container ul.navbar-header{
  padding: 60px 30px 30px;
  position: fixed;
  top: 0;
  left: -110vw;
  width: 100vw;
  height: 100vh;
  display: flex;
  background-color: #ffffff;
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  transition: all 0.3s ease 0s;
}

header .container ul.navbar-header.open{
  left: 0 !important;
  transition: all 0.3s ease 0s;
}
header .container ul.navbar-header li{padding: 0;display: block;width: 100%;}
header .container ul.navbar-header li a{text-align: left;padding: 15px 25px;font-size: 16px;border-bottom: 1px solid #ffffff10;margin: 0 0 4px;}
header .container ul.navbar-header li:hover a,
header .container ul.navbar-header li a.actvie
{color: #000000;border-color: #ffffff30;}
}



header .lang-login {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header .lang-login .link{
  color: #fff;
  text-decoration: none;
  outline: none;
  padding: 0 15px;
  border-radius: 6px !important;
  margin: 0 7px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  height: 36px;
  box-shadow: 0px 12.81592082977295px 64.07960510253906px 0px #00AA4F21;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  font-weight: 500;
  position: relative;
  font-size: 14px;
}
header .container .link i{
  margin-inline-end: 5px;
  margin-top: -5px;
}
header .lang-login .lang:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px; /*1*/
  border: 1.6px solid transparent; /*2*/
  background: linear-gradient(90deg,#0E86C6,#191A42) border-box; /*3*/
  -webkit-mask: /*4*/
     linear-gradient(#fff 0 0) padding-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /*5'*/
  mask-composite: exclude; /*5*/
}
header .lang-login .lang:hover::after{
  -webkit-mask: /*4*/
     linear-gradient(#00AA4F 1 1) padding-box, 
     linear-gradient(#00AA4F 1 1);
  -webkit-mask-composite: inherit; /*5'*/
          mask-composite: inherit; /*5*/
          z-index: -5;
}

header .lang-login .login{
  min-width: 110px;
}
.bar{
  display: none;
}
.close{
  display: none;
}
@media (max-width: 769px) {
  header .lang-login .link{
    padding: 0 10px;
    margin: 0 4px;
  }
  header .lang-login .login{
    min-width: 50px;
    font-size: 0;
  } 
  header .lang-login .login i{
    font-size: 14px;
  }

  .bar{
    display: flex;
    width: 36px;
    height: 36px;
    position: relative;
    border-radius: 6px; /*1*/
    background: #fff;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-inline-start: 5px;
  }
  .close{
    display: flex;
    position: fixed;
    top: 26px;
    left: 0;
    z-index: 99999;
    color: #ea4b60;
    font-size: 30px;
    transition: all 0.3s ease 0s;
    margin-left: -47px;
  }
  .close-on{
    left: 100vw !important;
    transition: all 0.3s ease 0s;
  }
}
header .lang-login .login::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px; /*1*/
  border: 1.6px solid transparent; /*2*/
  background: linear-gradient(90deg,#00AA4F,#191A42) border-box; /*3*/
  -webkit-mask: /*4*/
     linear-gradient(#fff 0 0) padding-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /*5'*/
  mask-composite: exclude; /*5*/
  transition: all 0.5s ease 0s;
}
header .lang-login .login:hover::after{
  -webkit-mask: /*4*/
     linear-gradient(#00AA4F 1 1) padding-box, 
     linear-gradient(#00AA4F 1 1);
  -webkit-mask-composite: inherit; /*5'*/
          mask-composite: inherit; /*5*/
          z-index: -5;
}

/*  */
section{
  padding: 60px 15px;
  clear: both;
  position: relative;
}
.hero{
  background-image: url("../img/bg.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-home{}
.slider-home .items{
  position: relative;
  overflow: hidden;
}
.slider-home .items img{
  width: 100%;
  height: auto;
  min-height: 60vh;
  object-fit: cover;
}
.slider-home .items span{
  color: #fff;
  background: #12a99cbd;
  padding: 20px;
  text-align: center;
  z-index: 9;
  position: absolute;
  left: 0;
  transition: all 0.5s ease 0s;
  right: 0;
  bottom: -150px;
}
.slider-home .active .items span{
  transition: all 0.5s ease 0s;
  bottom: 0;
}

.hero-intri{
  display: flex;
  justify-content: flex-start;
  min-height: 50vh;
}
.hero .container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .container h1{
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #ea4b60;
}
@media (max-width: 769px) {
  .hero .container h1{
    font-size: 30px;
  }
}
.hero .container > a{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: flex;
  background: #472B80;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: relative;
  transition: all 0.5s ease 0s;
  transform: scale(1);
  margin: 20px 0 0;
}
.hero .container > a::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #472B80;
}
.hero .container > a:hover{
  background: #9370DB;
}
.hero .container > a:hover::after{
  transition: all 0.5s ease 0s;
  transform: scale(1.1);
  border: 1px solid #9370DB;
}

/*  */
.about{
  padding: 100px 20px;
  background-color: #399ed8;
}
.about .container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px !important;
}
.about .container h1{
  margin: 0 0 30px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
@media (max-width: 769px) {
  .about .container h1{
    font-size: 30px;
  }
}
.about .container p{
  color: #fff;
  margin: 0 0 30px;
  line-height: 2;
}
.about .container a{
  background: #ea4b60;
  color: #fff;
  text-decoration: none;
  outline: none;
  padding: 10px 30px;
  border-radius: 5px;
}
.about .container a:hover{
  background: #472B80;
  color: #fff;
}
/*  */
.serv{
  padding: 100px 0px;
}
.serv .container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px !important;
}
.serv .container h1{
  margin: 0 0 30px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #f8ce28;
}
@media (max-width: 769px) {
  .serv .container h1{
    font-size: 30px;
  }
}
.slider-serv{
  width: 100%;
  max-width: 500px;
  padding: 0 45px;
}
.slider-serv .item{
  background: #12a99c;
  color: #fff;
  display: flex;
  border-radius: 15px;
  flex-direction: column;
  min-height: 200px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 25px;
  padding: 20px;
}
.owl-prev{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #12a99c;
  background-image: url(../img/ll.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -18px;
  font-size: 0;
}
.owl-next{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #12a99c;
  font-size: 0;
  background-image: url(../img/rr.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -18px;
}
/*  */
footer{
  background: #b868a6;
  color: #DCDBF2;
  clear: both;
  padding: 50px 20px;
}
footer .container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .container .social{
  display: flex;
  margin: 0 0 20px;
  flex-direction: row-reverse;
}
footer .container .social a{
  color: #DCDBF2;
  border: 1px solid #DCDBF2;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px;
  text-decoration: none;
  outline: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
footer .container .social a:hover{
  color: #fff;
  transform: scale(0.9);

}
footer .container strong{
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 15px;
}
footer .container p{
  color: #fff;
  font-size: 13px;
  margin: 0;
  font-weight: 300;
}
/*  */
.hero .container .blocks{
  display: flex;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0 0;
}

.hero .container .box{
  background: #399ed8;
  border-radius: 40px 0;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0;
  box-shadow: 0 4px 20px #bfbfbf;
  padding: 25px 25px 35px;
  color: #fff;
}
.hero .container .blocks .box{
  border-radius: 0;
  background: #ea4b60;
  min-height: 200px;
  border: 10px solid #ffffff;
  box-shadow: none;
  color: #fff;
  margin: 0;
}
.hero .container .blocks .box:hover{
  background: #f8ce28;
  color: #fff;
}
.hero .container .box i{
  font-size: 45px;
  margin: 0 0 20px;
  color: #000000;
}
.hero .container .box h3{
  font-size: 26px;
  margin: 0 0 20px;
}
.hero .container .box p{
  color: #000000;
  margin: 0;
}
/*  */
img.stucture{
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 20px auto 0;
}

.users{
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
  position: relative;
  justify-content: center;
}
.users .user{
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 280px;
  border: 10px solid #fff;
}

.users .user .front{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: #12a99c;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease 0s;
  color: #fff;
}

.users .user .front i{
  font-size: 100px;
  margin: 0 0 20px;
  color: #fff;
}
.users .user .front h3{
  font-size: 16px;
  margin: 0 0 15px;
}
.users .user .end{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: #3da0d9;
  display: flex;
  text-align: center;
  flex-direction: column;
  color: #fff;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease 0s;
}
.users .user .end h3{
  font-size: 16px;
  margin: 0 0 15px;
}









/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}
/*  */
.statistics{
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
}
.statistics .boxs{
  padding: 15px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  color: #399ed8;
}
.statistics .boxs i{
  font-size: 50px;
  margin: 0 0 20px;
}
.statistics .boxs h3{
  color: #12a99c;
  margin: 0 0 20px;
  font-size: 18px;
}
.statistics .boxs strong{
  font-size: 28px;
  font-weight: 500;
}
.counter{
  color: #fff;
  background: #f8ce28;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px !important;
  margin: 15px 0 30px !important;
}
ul.ul{
  background: #fefaeb;
  padding: 30px;
  border-radius: 25px;
  margin: 30px 0;
  column-count: 2;
  list-style: none;
  /* border: 1px solid #9370db87; */
  box-shadow: 0 0 30px #f9d853 inset;
  width: 100%;
}
@media (max-width: 769px) {
  ul.ul{

    column-count: 1
  }
}
ul.ul li{
  padding: 4px 15px 4px 0;
  position: relative;
  color: #472b80;
}
ul.ul li:after{
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  background-color: #9370db;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/*  */
.cover{
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  margin: 30px 0;
  /* border: 1px solid #9370db87; */
  box-shadow: 0 0 30px #12a99c inset;
}
.cover a{
  color: #ea4b60;
  text-decoration: none;
  outline: none;
}
.cover i{
  font-size: 25px;
  margin: 0 0 0 10px;
}
.cover img{
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
}

.cover h3{
  text-align: center;
  color: #b25c9f;
  font-size: 20px;
}
/*  */
.programs{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.programs .block-program{
  padding: 10px;
}
.programs .block-program button{
  width: 100%;
  min-height: 80px;
  background: #1eaea2;
  color: #fff;
  border: none;
  outline: none;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px;
}
.programs .block-program h3{
  margin: 0 0 20px;
  color: #472B80;
}
.programs .block-program p{}


.card-body {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  background: #d6f0ee;
  border: none;
  padding: 40px 25px;
}

/*  */
.axes{
  display: flex;
  flex-wrap: wrap;
  /* width: 100%; */
  justify-content: center;
}
.axes-block{
  display: flex;
  padding: 20px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}
.axes-block a{
  text-decoration: none;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.axes-block i{
  font-size: 50px;
  /* text-shadow: 0 0 25px #6a6a6a; */
  margin: 0 0 15px;
  color: #399ed8;
}


.rounded-tab {
  --r: 25px;
  color: #ffffff;
  font-size: 23px;
  padding: 5px 40px;
  line-height: 1.8;
  padding-inline: .5em;
  border-inline: var(--r) solid #12A99C;
  border-radius: calc(2* var(--r)) calc(2* var(--r)) 0 0 / var(--r);
  mask: radial-gradient(var(--r) at var(--r) 0, #00000000 98%, #ea4b60 101%) calc(-1* var(--r)) 100% / 100% var(--r) repeat-x, conic-gradient(#399ed8 0 0) padding-box;
  background: #12A99C;
  width: 220px;
  transition: 0.5s ease;
  text-align: center;
}
.rounded-tab ~ p{
    margin: 2px 0 0;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    background: #ea4b60;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 145px;
}
button.btn2{
    background: #399ed8 !important;
}
button.btn3{
    background: #f8ce28 !important;
}
.card2{
    background: #c8e4f4;
}
.card3{
    background: #fdf0bc;
}
/*  */
.nav-tabs{
  margin: 20px 0 ;
  display: flex;
  border: none;

}
.nav-tabs li{
  border: none;
  padding: 5px;

}
.nav-tabs li button{
  width: 160px;
  height: 80px;
  color: #fff !important;
  border-radius: 5px;
  background: #0E86C6 !important;
  border: none !important;
  outline: none;
}
.nav-tabs li button.active{
  background: #12A99C !important;
  border: none !important;

}
.nav-tabs li button i{
  font-size: 20px;
  margin: 0 0 0 5px;
}

.pdf{
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
.pdf .box{
  padding: 10px;
  background: #ffffff00 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  margin: 0 !important;
}
.pdf .box a,
.pdf .box .a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #12a99c;
  padding: 25px;
    transition: all 0.5s ease 0s;
    border-radius: 15px;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px #12a99c inset;
  color: #000;
  margin: 0 auto;
}
.pdf .box a:hover{
    transition: all 0.5s ease 0s;
    box-shadow: 0 0 50px #12a99c inset;

}
.pdf .box a i{
  font-size: 50px;
  margin: 0 0 15px;
}
.pdf .box p{
  margin: 0;
  font-size: 15px;
  color: #0E86C6;
  line-height: 2 ;
}
.pdf .box h5{
  margin: 0 0 30px;
  color: #EA4B60;
}
/*  */
.container-quiz{
  margin: 0 auto;
}
.question{
  font-size: 23px;
  color: #399ed8;
  margin: 0 0 25px;
  font-weight: 700;
}
label.option{
  width: 100%;
  display: flex;
  color: #12A99C;
  margin: 0 0 10px;
  cursor: pointer;
}
label.option input{
  width: 20px;
  height: 20px;
  margin: 0 0 0 10px;
}
#quiz{
  margin: 0 0 30px;
}

#submit{
  width: auto;
    height: 50px;
    color: #fff !important;
    border-radius: 5px;
    background: #0E86C6 !important;
    border: none !important;
    outline: none;
    padding: 0 20px;
}
#retry{
  width: auto;
    height: 50px;
    color: #fff !important;
    border-radius: 5px;
    background: #F8CE28 !important;
    border: none !important;
    display: none;
    padding: 0 20px;
}

#showAnswer{
  width: auto;
    height: 50px;
    color: #fff !important;
    border-radius: 5px;
    background: #12A99C !important;
    border: none !important;
    outline: none;
    padding: 0 20px;
    display: none;
}
.score-text-2{
  color: #000;
  background: #f9cdd3;
  padding: 20px;
  border-radius: 10px;
  line-height: 2.3;
}
.score-text-2 strong{
  color: #EA4B60;
}
/*  */
.call{}
.call p{
  color: #000000;
  line-height: 2.2;
}

/*  */
.box-all{
  display: flex;
  flex-wrap: wrap;
}

.box-all .box{
  border: 10px solid #fff !important;
  box-shadow: none !important;
  background: #12a99c !important;
  color: #fff !important;
  display: flex;
  justify-content: flex-start !important;!i;!;
}
.box-all .box p{
  color: #fff !important;
}

.box-all .box:nth-child(2){
  background: #EA4B60 !important;
}

.box-all .box:nth-child(3){
  background: #F8CE28 !important;
}

.box-all .box:nth-child(4){
  background: #399ED8 !important;
}












.container form{
    position: relative;
    min-height: 490px;
    margin-top: 16px;
    background-color: none;
}
.container form .details{
    margin-top: 30px;
}
.container form .title-form{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #351e62;
    text-align: right;
}
.container form .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
form .fields .input-field{
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}
.input-field label{
    font-size: 12px;
    font-weight: 500;
    color: #351e62;
}
.input-field input{
    width: 270px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #b397e9;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}
.input-field input:is(:focus, :valid){
    box-shadow: 0 3px 6px rgba(0,0,0,0.19);
}
.input-field input[type="data"]{
    color: #707070;
}
.input-field input[type="data"]:valid{
    color: #333;
}












/* //////////////////////////////////// */

.container form.reg{
  position: relative;
  min-height: 490px;
  margin-top: 16px;
  background-color: none;
  background: #fff;
  background: #fff;
  box-shadow: 0 0 20px #ea4b60 inset;
  margin: 0 auto 20px;
  border-radius: 16px;
  padding: 20px 40px;
  max-width: 900px;
  width: 100%;
}
.container form .details{
  margin-top: 30px;
}
.container form .title-form{
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  margin: 6px 0;
  color: #ea4b60;
  text-align: right;
}
.container form .fields{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
form .fields .input-field{
  display: flex;
  width: calc(100% / 3 - 15px);
  flex-direction: column;
  margin: 4px 0;
}

.input-field input{
  width: 270px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  border-radius: 5px;
  border: 1px solid #399ed8;
  padding: 0 15px;
  height: 42px;
  margin: 8px 0;
  direction: ltr;
  text-align: right;
}

@media (max-width: 769px) {
  .input-field{
    width:  100% !important;
  }
  .input-field input{
   max-width: 100%;
  }
}


.input-field label{
  font-size: 12px;
  font-weight: 500;
  color: #399ed8;
}

.input-field input:is(:focus, :valid){
  box-shadow: 0 3px 6px rgba(0,0,0,0.19);
}
.input-field input[type="data"]{
  color: #707070;
}
.input-field input[type="data"]:valid{
  color: #333;
}

/*-------------------radio---------------*/

.wrapper{
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
}
.wrapper .option{
  background: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 1px solid #399ed8;
  transition: all 0.3s ease;
}
.wrapper .option .dot-log-in{
  height: 15px;
  width: 15px;
  background: #399ed8;
  border-radius: 50%;
  margin: 5px;
  position: relative;
}
.wrapper .option .dot-log-in::before{
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #399ed8;
  border-radius: 50%;
 
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.input-1[type="radio"]{
  display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{border-color: #399ed8;background: #399ed8;}
#option-1:checked:checked ~ .option-1 .dot-log-in,
#option-2:checked:checked ~ .option-2 .dot-log-in{
background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot-log-in::before,
#option-2:checked:checked ~ .option-2 .dot-log-in::before{
opacity: 1;
transform: scale(1);
}
.wrapper .option .log-in-span{font-size: 14px;color: #399ed8;}
#option-1:checked:checked ~ .option-1 .log-in-span,
#option-2:checked:checked ~ .option-2 .log-in-span{
color: #fff;
}
/*--------------radio,2------------*/
.wrapper-2{
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
}
.wrapper-2 .option-2{
  background: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 1px solid #399ed8;
  transition: all 0.3s ease;
}
.wrapper-2 .option-2 .dot-log-in-2{
  height: 15px;
  width: 15px;
  background: #399ed8;
  border-radius: 50%;
  margin: 5px;
  position: relative;
}
.wrapper-2 .option-2 .dot-log-in-2::before{
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #399ed8;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.input-2[type="radio"]{
  display: none;
}
#option-1-2:checked:checked ~ .option-1-2,
#option-2-2:checked:checked ~ .option-2-2{border-color: #399ed8;background: #399ed8;}
#option-1-2:checked:checked ~ .option-1-2 .dot-log-in-2,
#option-2-2:checked:checked ~ .option-2-2 .dot-log-in-2{
background: #fff;
}
#option-1-2:checked:checked ~ .option-1-2 .dot-log-in-2::before,
#option-2-2:checked:checked ~ .option-2-2 .dot-log-in-2::before{
opacity: 1;
transform: scale(1);
}
.wrapper-2 .option-2 .log-in-span-2{font-size: 14px;color: #399ed8;}
#option-1-2:checked:checked ~ .option-1-2 .log-in-span-2,
#option-2-2:checked:checked ~ .option-2-2 .log-in-span-2{
color: #fff;
}


/*----------select-----------*/

.input-field .log-in-select{
  outline: none;
  width: 270px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  border-radius: 5px;
  border: 1px solid #399ed8;
  padding: 0 15px;
  height: 42px;
  margin: 8px;
}

.input-field .account{
  width: 270px;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: #399ed8;
  border-radius: 5px;
  border: 1px solid #399ed8;
  padding: 0 15px;
  height: 42px;
  margin: 8px 0;
}
.log-in-file::file-selector-button {
  margin: 4px;
  font-size: 12px;
  background: #399ed8;
  color: #F5FFFA;
  padding: 0.5em;
  border: thin solid #399ed8;
  border-radius: 3px;
}
.container form .log-in-submet-btn{
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  max-width: 200px;
  width: 100%;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  margin: 25px 0;
  background: none;
  box-shadow: 0 6px 9px #818283;
  transition: all 0.3s linear;
  cursor: pointer;
  background: #ea4b60;
}
form .log-in-submet-btn:hover{
  color: #F5FFFA;
  background-color: #399ed8;
}
form .log-in-submet-btn i{
  margin: 0 6px;
}
/*--------contailner-2------*/
.container-2{
  position: relative;
  max-width: 900px;
  width: 100%;
  border-radius: 6px;
  padding: 30px;
  margin: 0 15px;
  background-color: none;
  box-shadow: 0 5px 10px #351e62;
  text-align: right;
  position: relative;
  margin-top: 16px;
  background-color: none;
  background: #fff;
  background: #fff;
  box-shadow: 0 0 20px #399ed8 inset;
  margin: 0 auto 20px;
  border-radius: 16px;
  padding: 20px 40px;
  max-width: 900px;
  color: #000;
}
.container-2 p{
  color: #000;
}
.call a{
    background: #399ed8;
    color: #fff;
    text-decoration: none;
    outline: none;
    padding: 10px 30px;
    border-radius: 5px;
    margin: 20px 0 0;
    display: inline-block;
}
.call a:hover{
    background: #e94b60;
}










@media (max-width: 769px) {
}

.owl-carousel{
  direction: ltr !important;
  position: relative;
}

/*

    transition: all 0.5s ease 0s;
    transform: scale(1.2);

  display: grid;
  grid-template-columns: auto auto auto auto;


        display: flex;
        flex-direction: column;
        justify-content: center;

 
*/

