*{
	padding: 0;
	margin: 0;
}
body{
  scroll-behavior: smooth;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}
input[type="submit"],input[type="file"],input[type="datetime-local"], button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* -- dashboard -- */
.dashboard-header #nav{
    height: 80px;
  font-family: 'Poppins',sans-serif;
  font-weight: 400;
  margin:0 0 0 0;
  padding: auto 20px auto 20px;
  box-shadow:0px 0px 10px 0px rgb(0 0 0 / 20%);
  display: flex;
  align-items: center;
  background-color: rgba(255,255,255,1);
  z-index: 1;

  background-color: #2a82d4;
}
.dashboard_page_container{

  display:flex;
  flex-direction: row;
}
.dashboard_page_container .sidebar{
width:20%;
display: flex;
flex-direction: column;
background-color: #f0f0f0;

}
.dashboard_page_container .sidebar .sidebar_links{
  display: flex;
flex-direction: column;
margin: 15px auto auto 22px;
padding:5px;
position:fixed;

}
.dashboard_page_container .sidebar .sidebar_links a{
  margin:10px auto 10px 0px;
  font-size:16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  color:#526484;
  border-radius:6px;
  padding:15px;
  width:200px;
  width: 100%;
}

.dashboard_page_container .sidebar .sidebar_links a.active{
background-color: #ddd;
color:#2a82d4;
border-radius:5px;
}
.dashboard_page_container .sidebar .sidebar_links a i{
  margin-right: 5px;
}
.dashboard_page_container .sidebar .sidebar_links a:hover{
  text-decoration: underline;
  background-color:#EBEEF2;
}
.dashboard_page_container .sidebar .sidebar_links a:active{
background-color:#EBEEF2;
}
.dashboard_page_container .divider{
  border-top: 1px solid #d9d9d9;
  margin-top: 5px;
  margin-bottom: 20px;
}
.dashboard_page_container .body{
  width:100%;
  background-color: #f0f0f0;
  margin:0px auto 0px auto;
  padding:20px 20px 50px 10px;
  overflow-y: auto;
  min-height: 100vh;
}
.dashboard_page_container .body h2{
  font-family: 'Open Sans', 'Poppins', sans-serif;
    color: #1c1c1c;
  /*margin:0px auto 10px 20px; */
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 800;
}
.dashboard_page_container .body h4{
  font-family: 'Open Sans','Helvetica',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #545454;
  font-size: 18px;
  font-weight: 600;
}
.dashboard_page_container .body p.text{
  font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin:10px auto 10px auto;
  color:#5e5e5e
}
.dashboard_page_container .body h3{
  font-family: 'Poppins', sans-serif;
  color: #2a82d4;
  font-size: 18px;
  font-weight: 500;

}
.dashboard_page_container .body form{
padding: 20px;
display: flex;
flex-direction: column;
}
.dashboard_page_container .body form label{
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-weight: 600;
  margin:30px auto 5px 0;
  font-size: 15px;
}
.dashboard_page_container .body form span{
  font-family: 'Helvetica','Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 15px;
  width: 100%;
  display: flex;
  color: #212121;
  line-height: 1.8;
  margin:15px auto 5px 5px;
  word-wrap: break-word;
  display: block;
}
.dashboard_page_container .body form span ul, .dashboard_page_container .body form span ol{
  margin:10px auto 15px 15px;
  line-height: 1.8;
}
.dashboard_page_container .body form span b{
  font-weight: 500;
  color:#2a82d4;
}
.dashboard_page_container .body form span li{
  line-height: 2.2;
}
.dashboard_page_container .body .radio_container{

  align-items: center;
  justify-content: left;
  margin: 25px auto 30px 0;
}
.dashboard_page_container .body .radio_container label{
  margin: auto 20px auto 0;
}

.dashboard_page_container .body form input, .dashboard_page_container .body form select{
  width: 100%;
  margin:10px auto 40px auto;
  outline: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  padding:15px;
  border-width: 0 0 1px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
}
.dashboard_page_container .body form input[type="checkbox"]{
  width: auto;
  margin:auto;
  padding:auto;
}


.dashboard_page_container .body .add_button{
  padding:14px 30px;
  background-color: #ff6f3c;
  border:none;
  width: auto;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  -webkit-appearance: none;
  font-weight: 500;
  margin:0 auto 20px 0;
  font-family: 'Poppins', sans-serif;
}

.dashboard_page_container .body .add_button:hover{
  background-color:#ffc93c;
}

.dashboard_page_container .body form button[type="submit"]{
  padding:12px 30px;
  background-color: #2a82d4;
  border:none;
  width: auto;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  -webkit-appearance: none;
  font-weight: 500;
  margin:40px auto 20px 0;
  font-family: 'Poppins', sans-serif;
  }
  .dashboard_page_container .body form button[type="submit"]:hover{
    opacity: 0.7;
  }
.dashboard_page_container .body table .edit, .dashboard_page_container .body table .delete, .dashboard_page_container .body table .report, .dashboard_page_container .body table .checkout,  .dashboard_page_container .body table .link{
  background: none;
  padding:0 5px;
  margin:0;
  border: none;
  cursor: pointer;
  font-size: 14px;
  -webkit-appearance: none;
  color: #2a82d4;
  margin-right: 3px;
  margin-left: 3px;
  }

  .dashboard_page_container .body table .delete:hover{
    color: #911021;
  }
  .dashboard_page_container .body table .edit:hover{
    color:#ff6f3c;
  }
  .dashboard_page_container .body table .report:hover, .dashboard_page_container .body table .link:hover{
    color:#3e039c;
  }
  .dashboard_page_container .body table .checkout:hover{
    color:#0fa958;
  }

  

.dashboard_page_container .body table button:hover{
 color: #3e039c;
  background-color: transparent;
}
.dashboard_page_container .body #form{
  display: none;
}


.dashboard_page_container .body table{
  width:100%;
  max-width: 100%;

  margin:20px 20px 50px 0px;
  text-align: left;

  font-family: 'Open Sans', sans-serif;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  border-collapse: collapse;
  background-color: rgba(255, 255, 255,0.5);
  overflow-y: auto;
}
 .dashboard_page_container .body table .th_container{
  background-color: #e8e8e8;
  color:#000;
}
.dashboard_page_container .body table .th_container th{
padding: 16px 14px;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
font-size: 13px;
}
.dashboard_page_container .body table .th_container th:first-child{
  border-top-left-radius:6px;
}
.dashboard_page_container .body table .th_container th:last-child{
  border-top-right-radius:6px;
}
.dashboard_page_container .body table td{
  padding: 14px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}
.dashboard_page_container .body table td.actions{
  white-space: nowrap;
}
.dashboard_page_container .body table td.red{
color:red;
}
.dashboard_page_container .body table td.green{
  color:green;
}
.dashboard_page_container .body table img{
max-width: 100%;
height: auto;
}

.dashboard_page_container .body table .pending  span{
  background-color:#ffdbc7;
 color: #b43403;
  padding: 4px 7px;
  border-radius: 8px;
  font-weight: 500;
  
  }
  .dashboard_page_container .body table .pending i{
    margin-right: 9px;
    font-size:10px;
    color:#db8400;
  }
.dashboard_page_container .body table .delivered,.dashboard_page_container .body table .pending{
  text-align: center;
}
.dashboard_page_container .body table .delivered span, .dashboard_page_container .body table .delivered div{
background-color:#daffd4;
color:#1a660b;
padding: 4px 7px;
border-radius: 8px;
font-weight: 500;
}
.dashboard_page_container .body table .red div{
  background-color:#fce4e3;
  color:red;
  padding: 4px 7px;
  border-radius: 8px;
  font-weight: 500;
  }
.dashboard_page_container .body table .delivered i{
  margin-right: 9px;
  font-size:10px;
  color:#1a660b;
}
.dashboard_page_container .body table tr:nth-child(even){
 background-color: #f2f2f2;
}

.dashboard_page_container .body .squares{
display: flex;
flex-wrap: wrap;
}
.dashboard_page_container .body .square{
display: flex;
height: 130px;
width: 250px;
background-color: #ff9a3c;
color: #fff;
align-items: center;
justify-content: center;
text-align: center;
margin:30px auto 30px auto;
cursor: pointer;

border-radius: 5px;
}
.dashboard_page_container .body .squares.client .square, .dashboard_page_container .body .squares.candidate .square{
  width: 400px;
}
.dashboard_page_container .body .square:hover{
  opacity: 0.8;
}
.dashboard_page_container .body .square:first-child{
background-color: #ff9a3c;
}
.dashboard_page_container .body .square:nth-child(3){
background-color: #ff6f3c;
}
.dashboard_page_container .body .square:nth-child(2){
background-color: #fc5404;
}
.dashboard_page_container .body .square:nth-child(5){
background-color: #155263;
}
.dashboard_page_container .body .square:nth-child(4){
background-color: #00adb5;
}
.dashboard_page_container .body .square:nth-child(6){
background-color: #6639a6;
}
.dashboard_page_container .body .square:nth-child(7){
background-color: #8c82fc;
}
.dashboard_page_container .body .square:nth-child(8){
background-color: #17b978;
}

.dashboard_page_container .body .square i{
font-size: 35px;
margin-right:30px;
}
.dashboard_page_container .body .square .column{
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;


}
.dashboard_page_container .body .square .column h3{
font-family: 'Poppins', sans-serif;
font-size: 20px;
color: #fff;
}
.dashboard_page_container .body .square .column i{
    font-size: 20px;
}
.dashboard_page_container .body .square .column h4{
    font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color:#F0F0F0;
  text-align: right;
}
.dashboard_page_container .body .square .column h4 i{
  font-size: 14px;
}
.dashboard_page_container .body .square .column .number{
  font-size: 14px;
  background: #ff0000;
  color: #fff;
  padding: 0 5px;
  vertical-align: top;
}
.dashboard_page_container .body .section{
  margin:20px auto 60px auto;
}
.dashboard_page_container .body .section h3{
  font-weight: 500;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #545454;
  font-size: 20px;
  margin-bottom: 10px;
}


.dashboard_page_container .section .divider {
margin-bottom: 50px;
}
.dashboard_page_container .body .section .chart{
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin:auto;
}

/* -- dashboard END -- */


/* ------ Topnav ------ */
.topnav{
  height:40px;
  background-color: #5551ff;
  font-family: 'Open Sans',sans-serif;
  font-weight: 600;
  display: flex;
	flex-direction: row;
  display: none;

}

.topnav .contact_links{
margin-left: 200px;
display: flex;
flex-direction: row;
}
.topnav .social_links{
	display: flex;
	flex-direction: row;
  align-items: center;
  justify-content: center;
margin: auto 220px auto auto;
}
.topnav .social_links a{
  margin:auto 7px auto 7px;
}
.topnav .social_links a:hover{
  color:white;
}
.topnav a{
text-align: right;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
color:white;
text-decoration: none;
margin:auto 20px auto 20px;
}

.topnav a:hover{
text-decoration: underline;
}

.topnav i{
	padding: 5px;
}
/* -------- Topnav end ---------*/

/* -------- Footer --------*/

footer {
      width: 100%;
      background-color: #002037;
      overflow:hidden;
      color:#bababa;
      font-family: 'Lato',sans-serif;
      height: auto;
      min-height: 400px;
      padding:80px auto 80px auto;
      margin:0;
      position: relative;
      min-height: 450px;
  }
  footer .columns{
    display: flex;
    flex-direction: row;
    margin: 90px auto 50px 50px;
    max-width: 80%;
    align-items: flex-start;
  }
  footer .bottom{
    position: absolute;
    bottom: 20px;
    left:50px;

    color: #bababa;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin:auto;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
  }
  
  footer .bottom a, footer .bottom a:visited{
    text-decoration: none;
    color: inherit;
  }
  footer .bottom a.editfast{
    color:#FC5800;
    font-weight: 500;
  }
  footer .bottom span.editingtests{

    font-weight: 500;
  }
  footer .logo:hover .greyLogo{
    transform: scale(1.1);
    transition: 300ms;
  }
 /* footer .logo:hover .greyLogo{
    display: none;
  }
  footer .logo .coloredLogo{
    display: none;
  }

  footer .logo:hover .coloredLogo{
    display: block;
  }
    */
  footer .column{
    display: flex;
    flex-direction: column;
    margin:0 auto auto auto;
    line-height: 2.2;
    
  }
  footer .column h3{
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color:#ededed;
  }
  footer .column .logo {
    cursor:pointer;
    margin:auto auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  footer .column .logo img{
    height: 47px;
    width: auto;
    margin-bottom: 17px;
    
  }
  footer .column b{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color:#ededed;
    margin-bottom: 5px;
  }
  footer .column a{
    font-size: 15px;
    font-weight: 500;
    color: #bababa;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  footer .column a:hover{
    text-decoration: underline;
  }
  footer .column a i{
    margin-right: 12px;
  }
  footer .column a.twitter:hover i{
    color:#1DA1F2;
  }
  footer .column a.facebook:hover i{
    color:#4267B2;
  }
  footer .column a.linkedin:hover i{
    color:#0072b1;
  }
  /* -------- End of Footer --------*/

/* -------- Landing --------*/
.landing{
  margin:0;
  display: flex;
  flex-direction: row;
  height: auto;
  background: url("/img/Profiling-amico.svg");
  background-size: 40%;
  color:white;
  min-height: 500px;
  background-repeat: no-repeat;
  background-position:right 10% top;
}

.landing .landing_text{
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: center;
  justify-content: left;
  margin: 0 auto auto 0;
}
.landing .landing_text h1{
  margin: 50px 20px 20px 80px;
  font-size: 45px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #FF7600;
}
.landing h2{
  margin: 10px 20px 20px 100px;
  font-family: 'Open Sans', sans-serif;
  color: #282828;
  font-family:'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
}
.landing h3{
  text-align: center;
  margin: 10px 20px 40px 100px;
  font-family: 'Poppins', sans-serif;
  color:#282828;
  font-size: 18px;
  font-weight: 500;
  display: none;
}
/* -------- End of Landing --------*/

/* -------- Why Us AND Pricing --------*/

.why_us{
min-height: 500px;
margin:40px 0 auto 0;
padding:50px auto 50px auto;
display: flex;
flex-direction: row;
background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEX////19fXn5+fo6Ojl5eU/mVj3AAAAHElEQVR4AWMYkUDIEE3AxAlNQMUZTUBYcUSGFABtQAFVBCjxewAAAABJRU5ErkJggg==);
}
.why_us .right{
max-width: 50%;
}
.why_us .right h1{
  margin: 100px 20px 20px 0;
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  color: #282828;
  text-align: left;
  position: relative;
}

.why_us .right p {
  margin: 10px 70px 20px 0;
  font-family: 'Open Sans', sans-serif;
  color: #282828;
  font-size: 22px;
  line-height: 2;
  display: none;
}
.why_us .right button{
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  padding: 14px 24px 16px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
  color: #282828;
  box-shadow: 0 0 0 3px #000000 inset;
  margin-top: 8px;

  display: none;
}
.why_us .right button:hover{
  transform: translateY(-5px);
  background-color: #000000;
  color:#fff;
}
.why_us .left{
z-index:1;
height: 100%;
width: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.why_us .left img{
width: 55%;
width:0%;
height: auto;
margin:50px 20px auto 20px;
pointer-events: none;
}
.pricing{
  padding: 20px 10px;
  background: #FFC700;
  color: #000000;
  min-height: 700px;
}
.pricing h2{
font-size: 42px;
margin:30px auto 10px auto;
font-family: 'Poppins', sans-serif;
display: flex;
align-self:center;
justify-content: center;
}
.pricing .plans{
  display: flex;
  flex-direction: row;
  padding: 98px 28px 40px 28px;
  display: none;
}
.pricing .secure_payment{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 50px;

  display: none;
}
.pricing .secure_payment img{
  max-width: 50%;
  height: auto;
  cursor: pointer;
}
.pricing .plan{
display:flex;
flex-direction: column;
margin:20px auto;
text-align: center;
border-width: 0px 1px 1px;
border-style: solid;
border-color: rgb(214, 214, 214);
border-image: initial;
border-radius: 0px 0px 6px 6px;
padding: 30px 70px 70px 70px;
line-height: 1.5;
color: rgb(106, 106, 106);
position: relative;
background-color: #f9f9f9;
color:#002037;
border-radius: 8px;
position: relative;
width: 18.5%;
}
.pricing .plan.comming_soon{
opacity: 1;
opacity: 0.8;
opacity: 1;
opacity: 0.5;
display: none;
}
.pricing .plan.comming_soon button:disabled{
  cursor: not-allowed;
}
.pricing .plan h5{
  font-size:24px;
}
.pricing .plan button{
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    padding: 10px 16px;
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #0fa958;
    background: #0fa958;
    color: #fff;
    cursor: pointer;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    margin:80px auto 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.pricing .plan:first-child button{
  border: 1px solid #0fa958;
  background: none;
  color: #0fa958;
}
.pricing .plan.one button{
  border: 1px solid #0fa958;
  background-color: #0fa958;
  color: #fff;
}

.pricing .plan:first-child button:hover{
  border:1px solid #ff6f3c;
  background: #ff6f3c;
  color: white;
}

.pricing .plan:nth-child(2) button{
  border: 1px solid #0fa958;
  background-color : #0fa958;
  color:#fff;
}


.pricing .plan:nth-child(3) button{
  border: 1px solid #5551ff;
  background-color: #5551ff;
  color:#fff;
}
.pricing .plan:nth-child(3) button:hover, .pricing .plan:nth-child(2) button:hover{
  opacity:0.8;
}
.pricing .plan .plan_color{
  width: 100%;
  height:10px;
  position: absolute;
  top:0;
  margin: 0;
  left: 0;
  right: 0;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.plan:first-child .plan_color{
  background-color: #d6d6d6;
}
.plan:nth-child(2) .plan_color{
  background-color: #0fa958;
}
.plan.one .plan_color{
background-color: #0fa958;
}
.plan:nth-child(3) .plan_color{
  background-color: #5551ff;
}

.pricing .plan:first-child h3{
  color:#ff6f3c;
}
.pricing .plan.one h3{
  color: #0fa958;
}
.pricing .plan:nth-child(2) h3{
  color:#0FA958;
}
.pricing .plan:nth-child(3) h3{
  color:#5551ff;
}

.pricing .plan h3{
margin-bottom: 30px;

font-size: 20px;
/*font-weight: 500;*/
}
.pricing .plan h4{
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: 500;
  }
  .pricing .plan ul {
    margin-top: 25px;
    line-height: 2;
  }
  .pricing .plan p{
    margin-top:10px;
    margin-bottom: 8px;
    text-align: left;
    
  }
.pricing .plan p{
  font-size:18px;
}
.pricing .plan ul{
  font-size:16px;
}
.pricing .plan p, .pricing .plan ul li{
  text-align: left;
  color:#6A6A6A;

}
/* -------- End of Why Us  AND Pricing--------*/
/* ------------ our Features section ------------------*/
.our_features{
  display: flex;
  flex-direction: column;
  padding:80px 30px 80px 30px;
  background-color: #f5f5f5;
  padding:80px 20% 80px 20%;
  min-height: 550px;
}
.our_features h2{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 70px;
  color:#0068bd;
}
.our_features .features{
  display: flex;
  flex-wrap: wrap;
}
.our_features .features_container{
  display: none;
}
.our_features .feature{
display: flex;
flex-direction: column;
height: auto;
max-width: 50%;
align-items: center;
justify-content: center;
text-align: center;
color:#000;
flex-direction: row;
align-items: flex-start;
justify-content: center;
margin: 50px auto;
width: 50%;
}
.our_features .feature:hover{
  transform: translateX(7px);
  animation-delay: 100ms;
}
.our_features .feature:hover .picture img{
  width: 80px;
}
.our_features .feature .text{
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  justify-content: left;
  min-width: 240px;
}
.our_features .feature .text h3{
  font-size:18px;
  margin-bottom: 20px;
  color:#0fa958;
}
.our_features .feature .text p{
  max-width: 240px;
  display: none;
}
.our_features .feature .picture{
margin-right: 20px;
}
.our_features .feature .picture img{
width: 70px;
height: auto;
pointer-events: none;
}

/*---------------- END of  our features ----------------*/


/* -------- Checkout page --------*/

.checkout_page_heading{
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  margin-top: 0;
  background: url('/img/Plain credit card-amico.svg');
  background-size: 60%;
  background-repeat: no-repeat;
  height: 320px;
  background-position: top -200px right;
}

.checkout_page_heading h1{
font-family: 'Poppins', sans-serif;
color: #071942;
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto 0px 0px;
font-weight: 700;
margin-left: calc(12% + 30px);
font-size: 35px;
}
.checkout_page_heading h2{
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
margin: 0px auto 30px 0px;
font-weight: 400;
font-size: 22px;
margin-left: calc(12% + 30px);
color: #FC5800;
}
.checkout_form_container{
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:30px auto 30px auto;
}
.checkout_form_container h2{
  display: flex;
  margin: 40px auto auto auto;
  font-size: 32px;
}
.checkout_form_container h3{
  display: flex;
  margin: 10px auto auto auto;
  font-size: 20px;
  color:#15ad45;
  align-items: center;
}
.checkout_form_container h2 span{
  color: #15ad45;
}
.checkout_form {
  margin:5px auto 5px auto;
  display: flex;
  flex-direction: column;
}
.checkout_form form{
display: flex;
flex-direction: column;
  justify-content: center;
  align-items: center;
  margin:auto;
  padding:50px auto 50px auto;
  margin:25px auto 50px auto;
font-family: 'Poppins', sans-serif;
width:100%;
}
.checkout_form input{
  padding:14px 20px 14px 20px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  margin-left: 0;
  border-radius: 10px;
  min-width: 500px;
  width: auto;
  border:none;
  background-color: #f3f3f4;
}

.checkout_form input:focus, .checkout_form input:disabled{
  background-color: #e0e0e0;
}
.checkout_form label{
  margin: 30px auto 12px 0;
  display: flex;
  justify-content: left;
  align-self: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
}
.checkout_form label .required{
  color:red;
}
.checkout_form button[type="submit"]{
  margin:50px auto 20px 0;
padding:15px 60px 15px 60px;
border:none;
background-color:#FF6F3C;
color:white;
font-weight: 500;
font-family: 'Poppins', sans-serif;
cursor: pointer;
-webkit-appearance: none;
border-radius: 8px;
}
.checkout_form button[type="submit"]:hover{
   opacity:0.8;
}
.checkout_form .recaptcha_container{
  margin:30px auto 0 auto;
}
.checkout_form .secure_payment img{
  width: 75%;
    height: auto;
    margin: 40px auto 0 auto;
  display: flex;
  cursor: pointer;
}
/* -------- End of checkout page --------*/

/* -------- Activate page --------*/
.activate_page_container{
  display: flex;
  flex-direction: row;
  margin:20px 120px 20px 120px;
  padding:30px;
  }
  .activate_page_details{
    background-color: #f3f3f4;
    margin:auto;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:auto auto 200px auto;
    padding:20px 35px 20px 25px;
    width:60%;
    height: auto;
    line-height: 1.8;
  }

.activate_page_heading{
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  margin-top: 0;
  height: 320px;

  /*background-position: top 62% right;*/
}

.activate_page_heading h1{
font-family: 'Poppins', sans-serif;
color: #071942;
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto 0px 0px;
font-weight: 700;
margin-left: calc(12% + 30px);
font-size: 35px;
}
.activate_page_heading h2{
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
margin: 0px auto 30px 0px;
font-weight: 400;
font-size: 22px;
margin-left: calc(12% + 30px);
color: #FC5800;
}
/* -------- End of Activate page --------*/

/* forms validations AND Pagination */
.success{
  color:#44a10e;
    font-family: 'Lato', sans-serif;
  font-weight: bold;
  padding:12px;
  border-radius: 8px;
background-color: rgba(51, 168, 0,0.1);
margin: 5px auto 10px auto;
line-height: 1.8;
}

.info{
  color:#007bbd;
    font-family: 'Lato', sans-serif;
  font-weight: bold;
  padding:12px;
  border-radius: 8px;
background-color: rgba(0, 178, 232,0.1);
margin: 5px auto 10px auto;
line-height: 1.8;
}
.error{
  color:red;
 font-weight: bold;
 font-family: 'Lato', sans-serif;
padding:12px;
border-radius: 8px;
  background-color: rgba(186, 0, 0,0.1);
  margin: 5px auto 10px auto;
  line-height: 1.8;
}
.contact_us .error{
  margin: 0px auto 35px auto;
}
.error b {
    text-decoration: underline;
    font-size: 15px;
    margin-top: -5px;
    font-weight: 700;
}
.error a{
color:red;
text-decoration: underline;
}
.error a:hover{
color:#0000EE;
}

.pagination {
  display: inline-block;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 50px auto 50px auto;
}
.pagination a {
  color: black;
  float: left;
  padding: 3px 9px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
  margin: 0 4px;
  font-family: 'Open Sans',sans-serif;
  font-weight: 600;
  border-radius: 4px;
  font-size: 14px;
  background-color:#eee;
}
.pagination a.active {
  background-color: #2a82d4;
  color: white;

  border: 1px solid #2a82d4 ;
}
.pagination a:hover:not(.active) {
  background-color: #ddd;
}
/* End of forms validations AND Pagination */



/* ---- Test page ------- */
.question_page{
display: flex;
background-color: #f7f7f7;
}
.question_page .question_section{
display: flex;
padding:50px 35px;
margin:50px auto 150px auto;
width: 60%;
background-color: white;
min-height: 500px;
flex-direction: column;
box-shadow: 0px 4px 15px rgb(0 0 0 / 5%);
border-radius: 20px;
}
.question_page .score{
display: flex;
padding:70px 50px;
margin:10px auto 150px auto;
width: 60%;
flex-direction: column;
align-items:center;
}
.question_page .score table{
  margin:25px 20px 50px 0px;
  text-align: left;
  border-spacing: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-collapse: collapse;
  font-weight: 500;
  width: 100%;
  order: 2;
  text-align: center;
}
.question_page .score .detailled_score{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
padding:50px 35px;
margin:0 auto 100px auto;
width: 100%; 
background-color: white;
min-height: 250px;
flex-direction: column;
box-shadow: 0px 4px 15px rgb(0 0 0 / 5%);
border-radius: 20px;
font-family: 'Helvetica',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Poppins', sans-serif; 

}
.question_page .score .detailled_score h1{
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}
.question_page .score .detailled_score .categories{
display: flex;
flex-wrap: wrap;
margin-top:30px;
margin-bottom: 20px;
}
.question_page .score .detailled_score .category{
margin:20px auto 20px auto;
min-width: 200px;
min-height: 200px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.question_page .score .detailled_score .category .category_circle{
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px solid;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
border-color:#0068bd;
}
.question_page .score .detailled_score h5{
  margin-top: 10px;
}
.question_page .score .detailled_score .category:nth-child(1) .category_circle{
  border-color:#0068bd;
}
.question_page .score .detailled_score .category:nth-child(2) .category_circle{
  border-color: #FF9800;
}
.question_page .score .detailled_score .category:nth-child(3) .category_circle{

  border-color: #D500F9;
}
.question_page .score .detailled_score  .category:nth-child(4) .category_circle{
  border-color: #00838F;
}
.question_page .score .detailled_score  .category:nth-child(5) .category_circle{
  border-color: #F50057;
}
.question_page .score .detailled_score .category:nth-child(6) .category_circle{
  border-color: #0068bd;
}
.question_page .score .detailled_score  .category:nth-child(7) .category_circle{
  border-color: #5E35B1;
}
.question_page .score .detailled_score  .category:nth-child(8) .category_circle{
  border-color: #0068bd;
}
.question_page .score .detailled_score  .category:nth-child(9) .category_circle{
  border-color: #AEEA00;
}
.question_page .score .detailled_score  .category:nth-child(10) .category_circle{
  border-color: #1A237E;
}
.question_page .score .detailled_score .category .category_circle h3{
font-size: 18px;
}
.question_page .score .detailled_score .category h2{
    font-size: 15px;
      font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-weight: 600;
      display: flex;
      padding: 10px 5px 15px 5px;
      color: #5e5e5e;
}
.question_page .score .detailled_score .divider{
  border-top:none;
  border-bottom: 1px solid #d9D9D9;
  width: 100%;
  margin:20px 0 40px 0;
}
.skillsBreakdownChart-container {
  width: 100%;
  margin: 40px auto;
  position: relative;
  min-width: 700px;
}
.question_page .score .score_mark_2{
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  margin:0 auto 50px auto;
  width: 100%; 
  min-height: 250px;
  flex-direction: column;
}
.question_page .score .score_mark_2 h1{
font-size: 35px;
font-family: 'Helvetica',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Poppins', sans-serif; 
margin-bottom: 15px;
font-weight: 600;
}
.question_page .score .score_mark_2 h2{
font-family: 'Helvetica',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Poppins', sans-serif; 
font-size: 18px;
margin-top: 5px;
align-items: center;
justify-content: center;
display: flex;
}


.question_page .score .score_mark{
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
padding:50px 35px;
margin:0 auto 100px auto;
width: 100%; 
background-color: white;
min-height: 250px;
flex-direction: column;
box-shadow: 0px 4px 15px rgb(0 0 0 / 5%);
border-radius: 20px;
}
.question_page .score .score_mark h1{
font-size: 40px;
font-family: 'Helvetica',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Poppins', sans-serif; 
margin-bottom: 15px;
font-weight: 600;
}
.question_page .score .score_mark h2{
font-family: 'Helvetica',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Poppins', sans-serif; 
font-size: 22px;
margin-top: 5px;
align-items: center;
justify-content: center;
display: flex;
}

.question_page .score table tr{
  border-bottom:1px solid #e3e3e3;
}
.question_page .score table .correct i{
  color:#228a03;
}
.question_page .score table .false i{
  color:#d60000;
}
.question_page .score  td,.question_page .score th{
  padding:15px;
}
.question_page .question_section:not(:first-child){
display: none;
}
.question_page .question_section h1{
display: flex;
align-items: center;
justify-content: center;
font-family: 'Open Sans', sans-serif;
color:#155263;
font-size: 25px;
}
.question_page .question_section .timer{
  display: flex;
align-items: center;
justify-content: right;
margin: 20px 5% 20px auto;
font-size: 18px;
font-family: 'Open Sans', sans-serif;
color:#12a63a;

}
.question_page .question_section form{
display: flex;
flex-direction: column;
margin:20px 30px 20px 20px;
font-family: 'Open Sans', sans-serif;
}
.question_page .question_section form input{
margin:auto 2px 15px 0;
}
.question_page .question_section form label{
margin:auto auto auto 5px;
font-weight: bold;
}
.question_page .question_section form label .alphabet{
  color: #5e5e5e;
  margin-right: 5px;
}

.question_page .question_section form button{
  background-color:#ff6f3c;
  color: white;
  border: none;
  margin:50px auto 50px auto;
  padding:15px 30px;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.question_page .question_section form button:hover{
  background-color: #ff9a3c;
}
.question_page .question_section .question{
  margin:30px auto 10px 20px;
  background-repeat: no-repeat !important;
  height: auto;
}
.image_preview{
  max-width: 100%;
  height: auto;
}

 .question_page .question_section h2{
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    display: flex;
    padding: 10px 5% 15px 5px;
    color: #5e5e5e;
}

.question_page .detailled_score h2{
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    display: flex;
    color: #000;
}

/* --------- test page End ----------- */


/* -------------- register page ---------------*/
.register_form h1{
  display: flex;
    font-size: 35px;
    color: #153A5B;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin:60px auto 20px auto;
  }

  .register_form {
    margin:5px auto 5px auto;
    display: flex;
    flex-direction: column;
  }
  .register_form form{
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:50px auto 50px auto;
    margin:25px auto 50px auto;
  font-family: 'Poppins', sans-serif;
  width:100%;
  }
  .register_form form .inline{
    display:flex;
    flex-direction: row;
    width: 100%;
  }
  .register_form form .inline div{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .register_form form .inline div:nth-child(2){
    margin-left: 30px;
  }


  .register_form .input_span{
    display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .register_form .error_span{
      display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .register_form input{
    padding:14px 20px 14px 20px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    border-radius: 10px;
  }
  .register_form .inline input{
    width: auto;
    border:none;
    margin:auto auto auto 15px;
    min-width: 350px;
    background-color: #f3f3f4;
  }
  .register_form .inline input:focus{
    background-color: #e3e3e3;
  }
  .register_form label{
    margin: 30px auto 12px 3%;
    display: flex;
    justify-content: left;
    align-self: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
  }
  .register_form label .required{
    color:red;
  }

  .register_form .not_required_span{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0px 35px 5px auto;
  font-size:14px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  }
  .register_form .remember_me{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin: 15px auto 15px 5px;
  
  }
  .register_form .remember_me_span{
    display: flex;
  text-align: left;
  align-items: left;
  padding-right:10px;
  color: #3b3b3b;
  }
  
  .register_form button[type="submit"]{
  margin:50px auto 20px 3%;
  padding:15px 60px 15px 60px;
  border:none;
  background-color:#FF6F3C;
  color:white;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 8px;
  }
  .register_form button[type="submit"]:hover{
     opacity:0.8;
  }
  .register_form .inline{
    display: flex;
    flex-direction: row;
    width: 600px;
    margin:auto auto auto 15px;
  }
  .register_form_container{
  display: flex;
  flex-direction: row;
  margin:20px 120px 20px 120px;
  padding:30px;
  }
  .register_form .recaptcha_container{
    margin:40px auto auto 3%;
  }
  .register_page_heading{
      margin-bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 35px;
      margin-top: 0;
    background: url('/img/At the office-pana.svg');
    background-size: 70%;
    background-repeat: no-repeat;
    height: 320px;
    background-position: top -160px right;
    background-position: top 62% right;
  }
  .register_page_heading h1{
    font-family: 'Poppins', sans-serif;
    color: #071942;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0px 0px;
    font-weight: 700;
    margin-left: calc(12% + 30px);
    font-size: 35px;
  }
  .register_page_heading h2{
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 30px 0px;
    font-weight: 400;
    font-size: 22px;
    margin-left: calc(12% + 30px);
    color: #FC5800;
  }

  .register_page_details{
    background-color: #f3f3f4;
    margin:auto;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:auto auto 200px auto;
    padding:35px 55px 35px 55px;
    width:50%;
    height: auto;
    line-height: 2.2;
    border-radius: 5px;
  }
  .register_page_details h3{
    padding:2px 15px 15px 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color:#153A5B;
  }
  .register_page_details p{

  padding:5px 15px 15px 2px;
  }
  .register_page_details ul{
  padding:5px 15px 15px 25px;
  line-height: 1.8;
  }
  .register_page_details ul li{
    margin-bottom: 5px;
  }
  .register_page_details button{
    margin:15px auto 15px auto;
  padding:5px 40px 5px 40px;
  border:none;
  background-color:#153A5B;
  color:white;
  font-weight: 500;
  cursor: pointer;
  }
/* ------------register page end--------------- */

/* -------------- login page ---------------*/


.login_form h1{
  display: flex;
    font-size: 35px;
    color: #153A5B;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin:60px auto 20px auto;
  }

  .login_form {
    margin:5px auto 5px auto;
    display: flex;
    flex-direction: column;
  }
  .login_form form{
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:50px auto 50px auto;
    margin:25px auto 50px auto;
  font-family: 'Poppins', sans-serif;
  width:100%;
  }
  .login_form form .inline{
    display:flex;
    flex-direction: row;
    width: 100%;
  }
  .login_form form .inline div{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .login_form form .inline div:nth-child(2){
    margin-left: 30px;
  }


  .login_form .input_span{
    display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .login_form .error_span{
      display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .login_form input{
    padding:14px 20px 14px 20px;
    width: 100%;
    text-align: left;
   /* border:1px solid #c9c9c9; */
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    border-radius: 10px;
    min-width: 450px;
  }
  .login_form input{
    width: auto;
    border:none;
    background-color: #f3f3f4;
  }
  .login_form input:focus{
    background-color: #E0F0FE;
  }
  .login_form label{
    margin: 30px auto 12px 0;
    display: flex;
    justify-content: left;
    align-self: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
  }
  .login_form label .required{
    color:red;
  }
  .login_form .forgot_password,.login_form .forgot_password:visited{
    margin: 20px auto 5px 0;
    text-decoration: none;
    color:#0068bd;
    font-family: 'Lato', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif; 
  }
  .login_form a:hover{
    text-decoration: underline;
  }

  .login_form .horizontal_divider{
    align-items: center;
    border-top: none;
    border-bottom: 1px solid #dadde1;
    display: flex;
    margin: 20px 16px 5px 16px;
    text-align: center;
    width: 100%;
  }

  .login_form .not_required_span{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0px 35px 5px auto;
  font-size:14px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  }

  .login_form .remember_me{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin: 15px auto 15px 5px;
  }
  .login_form .remember_me_span{
    display: flex;
  text-align: left;
  align-items: left;
  padding-right:10px;
  color: #3b3b3b;
  
  }
  
  .login_form button[type="submit"]{
  margin:50px auto 20px 0;
  padding:15px 60px 15px 60px;
  border:none;
  background-color:#FF6F3C;
  color:white;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 8px;
  }
  .login_form button[type="submit"]:hover{
     opacity:0.8;
  }
  .login_form .sign_up_button{
    margin:30px auto 20px 0;
    padding:13px 30px 13px 30px;
    border:none;
    background-color:#f1F1F1;
    color:rgb(0, 0, 0);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 8px;
  }
  .login_form .sign_up_button:hover{
    opacity:0.9;
    background-color: #d9D9D9;
  }
  .login_form .inline{
    display: flex;
    flex-direction: row;
    width: 600px;
    margin:auto auto auto 15px;
  }
  .login_form_container{
  display: flex;
  flex-direction: row;
  margin:20px 120px 20px 120px;
  padding:30px;
  }
  .login_form .recaptcha_container{
    margin:40px auto auto 3%;
  }
  .login_page_heading{
      margin-bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 35px;
      margin-top: 0;
      background: url('/img/Annotation-bro.svg');
      background-size: 70%;
      background-repeat: no-repeat;
      height: 320px;
      background-position: top -160px right;
  }

  .login_page_heading h1{
    font-family: 'Poppins', sans-serif;
    color: #071942;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0px 0px;
    font-weight: 700;
    margin-left: calc(12% + 30px);
    font-size: 35px;
  }
  .login_page_heading h2{
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 30px 0px;
    font-weight: 400;
    font-size: 22px;
    margin-left: calc(12% + 30px);
    color: #FC5800;
  }

  .login_page_details{
    background-color: #f3f3f4;
    margin:auto;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:auto auto 200px auto;
    padding:20px 35px 20px 25px;
    width:60%;
    height: auto;
  }
  .login_page_details h3{
    padding:2px 15px 15px 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color:#153A5B;
  }
  .login_page_details p{
  font-family: 'Open Sans', sans-serif;
  padding:5px 15px 15px 2px;
  }
  .login_page_details ul{
  font-family: 'Open Sans', sans-serif;
  padding:5px 15px 15px 25px;
  }
  .login_page_details button{
    margin:0px auto 25px auto;
    padding: 10px 10px 10px 10px;
    border-radius: 4px;
    border:none;
    background-color:#2a82d4;
    color:white;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    cursor: pointer;
  }
  .login_page_details button:nth-child(2){
    background-color: #01937C;
  }
/* ------- End of login Page -------*/

/* -------- Forgot_password ------------ */
.forgot_password_page_heading{
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  margin-top: 0;

  background: url('/img/Secure Server-amico.svg');
  background-size: 60%;
  background-repeat: no-repeat;
  height: 320px;
  background-position: top -200px right;
}

.forgot_password_page_heading h1{
font-family: 'Poppins', sans-serif;
color: #071942;
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto 0px 0px;
font-weight: 700;
margin-left: calc(12% + 30px);
font-size: 35px;
}
.forgot_password_page_heading h2{
font-family: 'Poppins', sans-serif;
color: white;
display: flex;
align-items: center;
justify-content: center;
margin: 0px auto 30px 0px;
font-weight: 400;
font-size: 22px;
margin-left: calc(12% + 30px);
color: #FC5800;
}
/* ---------- End of fotgot password -------------- */

/* -------------- Schedule page ---------------*/
.schedule_form h1{
  display: flex;
    font-size: 35px;
    color: #153A5B;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin:60px auto 20px auto;
  }

  .schedule_form {
    margin:5px auto 5px auto;
   /* display: flex; */
    flex-direction: column;
  }
  .schedule_form form{
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin:auto;
    padding:50px auto 50px auto;
    margin:25px auto 50px auto;

  width:100%;
  }
  .schedule_form #settings{
    display: none;
  }
  .schedule_form .field{
    margin-top:50px;
  }
  .schedule_form form .inline{
    display:flex;
    flex-direction: row;
    width: 100%;
  }
  .schedule_form form .inline div{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .schedule_form form .inline div:nth-child(2){
    margin-left: 30px;
  }


  .schedule_form .input_span{
    display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .schedule_form .error_span{
      display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .schedule_form input, .schedule_form select{
    padding:16px 20px 16px 20px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    border-radius: 10px;
    min-width: 550px;

    width: auto;
    border:none;
    background-color: #f3f3f4;
  }
  .schedule_form input[type="file"]{
    padding:0;
    border-radius: 2px;
    background:rgba(243, 243, 244, 0.4);
  }
  .schedule_form input[type="file"]::-webkit-file-upload-button {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: none;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 500;
    margin-left: 0;
    margin-right: 15px;
    cursor: pointer;
    background-color: #e8e8e8;
    transition: transform .2s;
  }
  .schedule_form input[type="file"]::-webkit-file-upload-button:hover{
    background-color: #d9D9D9;
  }

  .schedule_form select#category{
    min-height: 200px;
  }
  .schedule_form .input_info_span{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
    margin: 8px auto 10px 0;
    font-size: 15px;
    width: 100%;
    display: flex;
    color:#6b6b6b;
  }

  .schedule_form input:focus{
    background-color: #f0f0f0;
  }
  .schedule_form input[type="radio"], .schedule_form input[type="checkbox"]{
    margin-left: auto;
    padding:auto;
    width: inherit;
    text-align: inherit;
    display: inherit;
    justify-content: flex-start;
    margin-left: inherit;
    border-radius: inherit;
    min-width: inherit;

    width: auto;
    border:none;
    background-color: inherit;
    min-width: auto;
  }
  .schedule_form label{
    margin: 30px auto 8px 0;
    display: flex;
    justify-content: left;
    align-self: flex-start;
    font-weight: 600;
    font-family: 'Open Sans', 'Poppins', sans-serif;
    font-size: 15px;
  }
  .schedule_form .radio_container{
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 50px auto 0 0;
  }
  .schedule_form .radio_container label{
    margin:auto auto auto 0;
    margin: auto 20px auto 0;
  }

  .schedule_form label.radio{
    display: flex;
    padding:auto;
    margin: auto 20px auto 0;
  }
  .schedule_form label .required{
    color:red;

  }
  .schedule_form a,.schedule_form a:visited{
    text-decoration: none;
    color:#0068bd;
  }
  .schedule_form a:hover{
    text-decoration: underline;
  }
 

  .schedule_form .horizontal_divider{
    align-items: center;
    border-top: none;
    border-bottom: 1px solid #dadde1;
    display: flex;
    margin: 20px 16px 5px 16px;
    text-align: center;
    width: 100%;
  }

  .schedule_form .not_required_span{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0px 35px 5px auto;
  font-size:14px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  }
  .schedule_form .remember_me{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin: 15px auto 15px 5px;
  
  }
  .schedule_form .remember_me_span{
    display: flex;
  text-align: left;
  align-items: left;
  padding-right:10px;
  color: #3b3b3b;
  
  }
  
  .schedule_form button[type="submit"]{
    margin:50px auto 20px 0;
  padding:15px 60px 15px 60px;
  border:none;
  background-color:#FF6F3C;
  color:white;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 8px;
  }
  .schedule_form button[type="submit"]:hover{
     opacity:0.8;
  }

  .schedule_form .inline{
    display: flex;
    flex-direction: row;
    width: 600px;
    margin:auto auto auto 15px;
  }
  .schedule_form_container{
  display: flex;
  flex-direction: row;
  padding: 30px;
  width: 80%;
  margin-bottom:60px;
}
  
  .schedule_form .recaptcha_container{
    margin:40px auto auto 3%;
  }
  .schedule_page_heading{
      margin-bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 35px;
      margin-top: 0;

      background: url('/img/Schedule-amico.svg');
      background-size: 60%;
      background-repeat: no-repeat;
      height: 320px;
      background-position: top -180px right 10%;
      /*background-position: top 62% right;*/
  }

  .schedule_page_heading h1{
    font-family: 'Poppins', sans-serif;
    color: #071942;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0px 0px;
    font-weight: 700;
    margin-left: calc(12% + 30px);
    font-size: 35px;
  }
  .schedule_page_heading h2{
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 30px 0px;
    font-weight: 400;
    font-size: 22px;
    margin-left: calc(12% + 30px);
    color: #FC5800;
  }

  .schedule_page_details{
    background-color: #f3f3f4;
    margin:auto;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:auto auto 200px auto;
    padding:20px 35px 20px 25px;
    width:60%;
    height: auto;
    
  }
  .schedule_page_details h3{
    padding:2px 15px 15px 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color:#153A5B;
  }
  .schedule_page_details p{
  font-family: 'Open Sans', sans-serif;
  padding:5px 15px 15px 2px;
  }
  .schedule_page_details ul{
  font-family: 'Open Sans', sans-serif;
  padding:5px 15px 15px 25px;
  }
  .schedule_page_details button{
    margin:0px auto 25px auto;
    padding: 10px 10px 10px 10px;
    border-radius: 4px;
    border:none;
    background-color:#2a82d4;
    color:white;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    cursor: pointer;
  }
  .schedule_page_details button:nth-child(2){
    background-color: #01937C;
  }
/* ------------ Schedule page end--------------- */

/* ---------------- new header ---------------------*/
.header #nav{
  height: 80px;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 500;
margin:0 0 0 0;
padding: auto 20px auto 20px;
box-shadow:0px 0px 10px 0px rgb(0 0 0 / 20%);
display: flex;
align-items: center;
background-color: rgba(255,255,255,1);
z-index: 1;
position: relative;
}
.header #nav .icon{
display: none;
}
.header #nav .logo {
  cursor:pointer;
  margin:auto auto auto 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header #nav .logo img{
  height: 50px;
  width: auto;
}
.header #nav .logo h1{
color:#ff6f3c;
font-family: 'Poppins', sans-serif;
font-size: 20px;
padding-left: 30px;
}
.header #nav a {
font-size: 15px;
color:#1c1c1c;
text-align: center;
text-decoration: none;
padding: 0 15px;
display: inline-block;
list-style-type: none;
font-weight: 500;
}
.header #nav a.current{
  font-weight: bold;
}
.header #nav a:hover,.header #nav .dropdown:hover .dropbtn,.header #nav .navbar .selected a{
  color:#F98404;
  border-bottom: none;
}

.header #nav .nav_links{
margin-left: auto;
margin-right: 10%;
}
.header #nav .login, .header #nav .signup, .header #nav .logout,  .header #nav .dashboard{
  padding:14px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
}
.header #nav .login, .header #nav .dashboard{
  margin-left: 20px;
}
.header #nav .login, .header #nav .logout{
  background-color: #f1f1f1;
}
.header #nav .signup{
  background-color: #5551ff;
  margin-left: 15px;
  color:#fff;
  position: fixed;
  z-index: 1;
}
.header #nav .dashboard{
  background-color: #5551ff;
 
  color:#fff;
}
.header #nav .logout{
  margin-left: 15px;
  position: fixed;
  z-index: 1;
}

.header #nav .login:hover{
  background-color: #e9e9e9;
}
.header #nav .logout:hover{
  background-color: #ff3838;
  color:white;
  
}


.header #nav .signup:hover, .header #nav .dashboard:hover{
  opacity: 0.8;
}

/* ---------------- end new header ------------ */
/* ---------------- dashboard header ---------------------*/
.dashboard-header #nav{
  height: 80px;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 500;
margin:0 0 0 0;
padding: auto 20px auto 20px;
box-shadow:0px 0px 10px 0px rgb(0 0 0 / 20%);
display: flex;
align-items: center;
z-index: 1;
background-color: #2a82d4;
color:#fff;
position: relative;
}

.dashboard-header #nav .icon{
display: none;
}
.dashboard-header #nav .logo {
  cursor:pointer;
  margin:auto auto auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dashboard-header #nav .logo img{
  height: 50px;
  width: auto;
}
.dashboard-header #nav img.avatar{
  width: 32px;
  height: auto;
  border-radius: 0;
  margin: auto;
}
.dashboard-header #nav img.rounded{
  width: 28px;
  border-radius: 100%;
}


.dashboard-header #nav .logo h1{
color:#ff6f3c;
font-family: 'Poppins', sans-serif;
font-size: 20px;
padding-left: 30px;
}
.dashboard-header #nav a {
font-size: 15px;
color:#fff;
text-align: center;
text-decoration: none;
padding: 0 15px;
display: inline-block;
list-style-type: none;
font-weight: 500;
}
.dashboard-header #nav .dropdown .dropbtn{
  font-size: 16px;
border: none;
outline: none;
color:#fff;
padding: 0 15px;
background-color: transparent;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 500;
text-align: center;
display: inline-block;
text-decoration: none;
height: 100%;

}

.dashboard-header #nav .dropdown .dropdown-content {
  display: none;
    position: absolute;
    background-color: #ffff;
    color: #252525;
    min-width: 140px;
    z-index: 1;
    border-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    margin-left:-20px;
  
}
.dashboard-header #nav .dropdown:hover .dropdown-content{
display: block;
}


.dashboard-header #nav .dropdown .dropdown-content a {

  padding: 11px 14px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}



.dashboard-header #nav a:hover,.dashboard-header #nav .dropdown:hover .dropbtn,.dashboard-header #nav .navbar .selected a{
  opacity: 0.7;
  border-bottom: none;
}

.dashboard-header #nav .nav_links{
margin-left: auto;
margin-right: 10%;
display: flex;
}
.dashboard-header #nav .login, .dashboard-header #nav .signup, .dashboard-header #nav .logout,  .dashboard-header #nav .dashboard{
  padding:14px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
 /* transition-duration: 200ms;*/
}
.dashboard-header #nav .login, .dashboard-header #nav .logout{
  background-color: #f1f1f1;
}
.dashboard-header #nav .signup{

  background-color: #5551ff;
  margin-left: 15px;
  color:#fff;
  position: fixed;
  z-index: 1;
}
.dashboard-header #nav .dashboard{
  background-color: #5551ff;
  color:#fff;
}
.dashboard-header #nav .logout{
  margin-left: 15px;
  position: fixed;
}

.dashboard-header #nav .login:hover{
  background-color: #e9e9e9;
}
.dashboard-header #nav .logout:hover{
  background-color: #ff3838;
  color:white;
  
}


.dashboard-header #nav .signup:hover, .dashboard-header #nav .dashboard:hover{
  opacity: 0.8;
}
/* ---------------- end dashboard header ------------ */

/* --------------- About us page ------------- */
.aboutus .banner{
  height:200px;
  background: url('/img/floriane-vita-FyD3OWBuXnY-unsplash.jpg');
  background-size: cover;
}
.aboutus section{
  display: flex;
  flex-direction: column;
}
.aboutus section h1{
  font-family: 'Poppins','Open Sans',  sans-serif;
  font-size: 35px;
  color:#002037;
  margin: 60px auto 50px auto;
}
.aboutus section h1 span.orange{
  color:#F98404;
}
.aboutus section:first-of-type{
  background: url('/img/white_abstract.jpg');
  background-size: cover;
}

.aboutus section:first-of-type p{
  max-width: 80%;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  margin: auto auto 80px auto;
  line-height: 2;
  letter-spacing: 1.1px;

}
.aboutus section:nth-of-type(3){
  background: url('/img/white_abstract_2.jpg');
  background-size: cover;
}
.aboutus section:nth-of-type(3) p.description{
  max-width: 80%;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  margin: 60px auto 20px auto;
  line-height: 2;
  letter-spacing: 1.1px;
}
.aboutus section:nth-of-type(3) div.description{
  max-width: 65%;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  margin: 20px auto 40px auto;
  line-height: 2;
  letter-spacing: 1.1px;
}
.aboutus section div.description a{
  color:#0068bd;
  text-decoration: none;
  font-weight: bold;
}
.aboutus section div.description a:visited{
  color:#0068bd;
}
.aboutus section div.description a:hover{
  text-decoration: underline;
}
.aboutus section:nth-of-type(3) ul{
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  margin: 20px auto 20px auto;
  line-height: 2.2;
  letter-spacing: auto;
}
.aboutus section:nth-of-type(3) li{
  margin:20px auto;
}
.aboutus section:nth-of-type(3) h2{
  color:#002037;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  margin:60px auto auto auto;
}
.aboutus section:nth-of-type(3) h3{
  color:#f85811;
  font-size: 30px;
  display: flex;
  justify-content: left;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  margin:60px auto 60px 0;

}
.aboutus section:nth-of-type(3) h4{
  color:#002037;
  font-size: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  margin:20px auto 20px 0;
  text-align: left;
}
.aboutus section:nth-of-type(4) h2{
  color:#002037;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  margin:60px auto auto auto;
}
.aboutus section:nth-of-type(4) h2 span.orange{
 color:#F98404;
}

.aboutus .our_features .features_container{
  display: block;
}
.aboutus .our_features .feature .text p{
  display: flex;
}
.aboutus .our_features h2{
  display: flex;
  font-size: 35px;
  color:#002037;
}
.aboutus .our_features h2 span.orange{
  color: #F98404;
}
.aboutus section:nth-of-type(4) div.description{
  max-width: 65%;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  margin: 60px auto 100px auto;
  line-height: 2;
font-size: 18px;
}
.aboutus section:nth-of-type(4) div.description img{
  max-width: 150px;
  height: auto;
  margin:20px;
  text-align: right;
  float: right;
  
}
.aboutus section:nth-of-type(4) div.description img.center{
  text-align: center;
  float: center;
}
.aboutus .our_features {
    padding: 60px 12% 120px 12%;
    background-color: #fff;
}
.aboutus .our_features .feature .text p {
  max-width: 320px;
  line-height: 1.5;
  letter-spacing: 0.7px;
}
.contact_us {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  padding: 50px 8% 50px 8%;
}
.contact_us .row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 40px auto;
  flex-direction: row;
}
.contact_us h1 {
  font-family: 'Poppins', sans-serif;
  color: #FC5800;
  font-size: 42px;
  font-weight: 700;
}
.contact_us h1 span {
  color: #002037;
  font-weight: 600;
}
.contact_us button {
  background-color: #FC5800;
  padding: 12px 40px 12px 40px;
  border: none;
  border-radius: 5px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin: auto auto auto 30px;
  cursor: pointer;
}
.contact_us button:hover {
opacity: 0.7;
}
.contact_us form {
  display: none;
  font-family: 'Lato', sans-serif;
  width: 50%;
  border-radius: 20px;
  margin: 20px auto 20px auto;
  padding: 30px 50px 30px 50px;
  background: rgba(255,255,255,1);
}
.contact_page_heading{
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  margin-top: 0;
  background: url('/img/Mail-amico.svg');
  background-size: 50%;
  background-repeat: no-repeat;
  height: 320px;
  background-position: top -140px right 30%;
}

.contact_page_heading h1{
font-family: 'Poppins', sans-serif;
color: #071942;
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto 30px 0px;
font-weight: 700;
margin-left: calc(12% + 30px);
font-size: 40px;
}
.contact_page_heading h1 span{
  color:#fc5404;
}
.contact_page .contact_form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px 10% 120px 10%;
  width: 50vw;
}
.contact_page .contact_form .success, .contact_page .contact_form .info, .contact_page .contact_form .error{
  margin-bottom:30px;
}
.contact_page .contact_form .field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto auto 20px auto;
}
.contact_page .contact_form label {
  margin: auto auto 5px 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-weight: 600;
  color: #363636;
  font-size: 14px;
}




.contact_page .contact_form input, .contact_form textarea {

    padding: 12px 20px;
    margin: 5px auto 20px 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    border-radius: 3px;
    font-size: 15px;
    outline: none;
    border: none;
    background-color: #f3f3f4;
    border-radius:10px;
    width: 450px;
    
}
.contact_form textarea{
  min-height: 150px;
  resize: vertical;
}
.contact_page .contact_form button {
  margin: 25px auto auto 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border: none;
  color: #fff;
  transition: transform .2s;

  padding: 15px 60px 15px 60px;
  background-color: #FF6F3C;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 8px;
}
.contact_page .contact_form button:hover {
transform: translateY(-3px);
}
.contact_page .contact_informations{
  display: flex;
  flex-direction: column;
  margin:80px auto 120px 0;
  align-items: left;
  justify-content: left;
  font-family: 'Open Sans', sans-serif;
  width: 50vw;

}
.contact_page .row{
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
}

.contact_page h2{
  font-size: 32px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
margin-bottom: 50px;
}
.contact_page h2 span.orange{
  color: #FF6F3C;
}
.contact_page .contact_informations .address b{
  min-width: 100px;
  color: #5C5C5C;
  font-weight: 600;
}
.contact_page .contact_informations .address{
  line-height: 2.2;
}

article .heading{
margin: 0;
background-color: #f0f0f0;
background:url('/img/white_abstract.jpg');
background-size: cover;
padding: 30px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
article .heading.purple{
  background:url('/img/5139395.jpg');
  background-size: cover;
}
article .heading.purple h1{
color:#fff;
}
article .heading h1{
color : #071942;
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
margin: auto auto 20px auto;
font-weight: 700;
margin-left: calc(12% + 30px);
font-size: 40px;
}
article .heading h1 span.orange{
  color:#FF6F3C;

}
article .heading h2{
  color:#FF6F3C;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-weight: 500;
  margin-left: calc(12% + 30px);
  font-size: 26px;
}
article section{
  margin:80px auto 100px auto;
}
article section h2{
  color : #071942;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  margin: 60px auto auto auto;
}
article section p{
  margin: 60px auto 60px auto;
  line-height: 2;
  max-width: 80%;
}
article section .description{
  margin:30px auto 30px auto;
  max-width: 80%;
  line-height: 2;
}
article section ul,article section ol {
  margin:15px auto 15px auto;
}
article section ul li{
  margin:10px auto 10px auto;
}
article section h3{
  margin: 40px auto 40px 0;
  color: #f85811;
  font-size: 30px;
  display: flex;
  justify-content: left;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
}
article section h4{
  color: #002037;
    font-size: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    margin: 20px auto 20px 0;
    text-align: left;
    letter-spacing: 1.1px;
}
article section div.description a {
  color: #0068bd;
  text-decoration: none;
  font-weight: bold;
}
article section div.description p{
  max-width: 100%;
}
article section div.description a:hover{
  text-decoration: underline;
}

article section img.center{
  max-width: 100%;
  height: auto;
  margin: 40px auto 40px auto;
  text-align: center;
 display: flex;
}
article section img.left{
  max-width: 400px;
  height: auto;
  margin:25px 25px 25px 0;
  text-align: left;
  float: left;
}
article section img.right{
  max-width: 400px;
  height: auto;
  margin:25px 0 25px 25px;
  text-align: right;
  float: right;
}
article section img.small{
  max-width:200px;
}
article section img.top{
  margin-top: 0;
}
.snackbar{
  width: 500px;
  padding: 20px 5px;
  background-color: rgba(16, 224, 120, 0.9);
  color: #fff;
  display: none;
  position: fixed;
  bottom: 40%;
  z-index: 2;
  border-radius: 4px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 870px){
  .snackbar {
    width:80%;
}
  .contact_page .contact_form input, .contact_form textarea {
     width: 80%;
     margin-left: auto;
 }
 .contact_page .contact_form{
   margin:100px auto 10px auto;
   width: 100%;
 }
 .contact_page  .contact_form .field{
   width:  90%;
 }
 .contact_page  .contact_form label{
   margin-left: 4%;
 }
 .contact_page .contact_form button{
   margin-left: auto;
 }
 .contact_page_heading{
   height: 100px;
   padding: 15px;
   background: none;
 }
 .contact_page_heading h1{
   margin-left: auto;
   font-size: 36px;
   margin-top: 100px;
   margin-bottom: auto;
 }
 .contact_page .row{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.contact_page .contact_informations{
  width: 80%;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 120px;
}

.contact_page h2{
  max-width: 90%;
}
article .heading {
  padding:50px 0 50px 0;
}
article .heading h1 {
  margin: auto;
  max-width: 95%;
  font-size: 32px;
}
article .heading h2 {
  margin: auto;
  max-width: 95%;
  font-size: 20px;
}
article section h2 {
  font-size: 28px;
}
article section h3{
  font-size: 25px;
  margin:auto;
}
article section h4{
  font-size: 20px;
}
article section img, article section img.right,article section  img.center,article section  img.left{
  max-width: 95%;
}
article section img.right{
  margin:10px 0 10px 10px;
}
article section img.left{
  margin:10px 10px 10px 0;
}
.contact_us{
  padding: 40px 8% 40px 8%;
}
.contact_us .row{
  flex-direction: column;
  margin:auto;
}
.contact_us h1{
  font-size: 32px;
}
.contact_us button{
  margin:30px auto auto auto;
}

.aboutus .banner {
  height: 120px;
}
.aboutus section h1 {
  font-size: 32px;
  margin: 50px auto 50px auto;
  max-width: 95%;
  text-align: center;
}
.aboutus section:first-of-type p {
  max-width: 90%;
}
.aboutus section:nth-of-type(3) h2{
  font-size: 30px;
}
.aboutus section:nth-of-type(3) div.description{
  max-width: 90%;
}
.aboutus section:nth-of-type(3) h3{
  font-size: 26px;
  margin:30px auto 30px 0;
}
.aboutus section:nth-of-type(3) h4 {
  font-size: 18px;
}
.aboutus section:nth-of-type(3) ul{
  margin: 20px 8% 20px 8%;
}
.aboutus section:nth-of-type(4) h2{
  font-size: 32px;
}
.aboutus section:nth-of-type(4) div.description {
  max-width: 90%;
}

.forgot_password_page_heading{
  height: auto;
  background: none;
  padding:35px 10px 35px 10px;
}
.forgot_password_page_heading h1{
  font-size: 32px;
  margin: 30px auto 20px auto;
}
.forgot_password_page_heading h2{
  margin: auto;
  font-size: 20px;
}


}
/* --------------- END of About us page ------------- */

.question_page .detailled_score h2{
  font-size: 18px;
  text-align: center;
  margin: 15px auto 20px auto;

}

@media screen and (max-width:870px) {
  .wrapper{
     overflow-x: hidden;
     position: relative;
  }
  /* ----- top nav --- */
  .topnav{
    flex-direction: column;
    height: auto;
  }
  .topnav .contact_links{
    margin:10px auto 20px auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .topnav .social_links{
    margin:10px auto 20px auto;
  }
   /* ----- end of top nav --- */
   /* -------- Footer --------*/


footer .columns{
flex-direction:column;
margin: 40px auto 50px auto;
max-width: 100%;
align-items: center;
justify-content: center;
}
footer .bottom{
bottom: 10px;
left:10px;
}



footer .column{
margin:20px auto 20px auto;
text-align: center;
}
footer .column:last-of-type{
margin-bottom: 70px;
}

footer .column .logo {
margin:auto auto 35px auto;
}
/* -------- End of Footer --------*/

/* -------- Landing --------*/
.landing{
  flex-direction: column;
  background-size: 70%;
  background-position:top 20px right 50%;
  background-image: url("/img/Profiling-amico.png");

}

.landing .landing_text{
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.landing .landing_text h1{
  margin: 280px 20px 20px 20px;
  font-size: 32px;
}
.landing h2{
  margin: 10px 15px 10px 15px;
  font-size: 18px;
  text-align: center;
}
.landing h3{
  text-align: center;
  margin: 10px 15px 30px 15px;
  font-size: 16px;

}
/* -------- End of Landing --------*/

/* -------- Why Us AND Pricing --------*/

.why_us{
  margin:40px 0 auto 0;
  padding:50px auto 50px auto;
  flex-direction: column;
  }
  .why_us .right{
  max-width: 100%;
  }
  .why_us .right h1{
    margin: 50px 15px 20px 15px;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    color: #282828;
    text-align: center;
    position: relative;
  }
  
  .why_us .right p {
    margin: 10px 15px 20px 15px;
    font-family: 'Open Sans', sans-serif;
    color: #282828;
    font-size: 18px;
    line-height: 2;
    display: none;
    text-align: center;
  }

  .why_us .right button{
    padding: 12px 22px 14px;
    font-size: 16px;
    margin: 35px auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    text-align: center;
  }
  .why_us .right button:hover{
    transform: translateY(-5px);
    background-color: #000000;
    color:#fff;
  }
  .why_us .left{
  z-index:1;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .why_us .left img{
  width: 55%;
  width:0%;
  height: auto;
  margin:50px 20px auto 20px;
  }
  .pricing{
    padding: 20px auto;
    background: #FFC700;
    color: #000000;
    min-height: 700px;
  }
  .pricing h2{
  font-size: 32px;
  margin:30px auto 10px auto;
  }
  .pricing .plans{
    display: flex;
    flex-direction: column;
    padding: 25px 5px 20px 5px;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .pricing .secure_payment{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  
    display: none;
  }
  .pricing .secure_payment img{
    max-width: 100%;
    height: auto;
    cursor: pointer;
  }
  .pricing .plan{
  margin:20px auto 20px auto;
  padding: 40px 15px 40px 15px;
  line-height: 1.5;
  position: relative;
  background-color: #f9f9f9;
  color:#002037;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  width: 80%;
  max-width: 330px;
  text-align: center;
  }
  .pricing .plan button{
    max-width: 80%;
  }
  
  .pricing .plan h3{
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  }
  .pricing .plan h4{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 500;
    }
    .pricing .plan ul {
      margin-left: 20px;
    }
    .pricing .plan p{
      margin-top:10px;
      text-align: center;
    }
  .pricing .plan p, .pricing .plan ul{
    font-size:16px;
    text-align: center;
  }
  .pricing .plan p, .pricing .plan ul li{
    text-align: center;
  }
  /* -------- End of Why Us  AND Pricing--------*/

  /* ------------ our Features section ------------------*/
.our_features{
  padding:60px 10% 60px 10%;
}
.our_features h2{
  font-size: 26px;
  white-space: nowrap;
  margin-bottom:50px;
}
.our_features .features{
  flex-direction: column;
}
.our_features .features_container{
  display: none;
}
.our_features .feature{
display: flex;
flex-direction: column;
height: auto;
max-width: 80%;
align-items: center;
justify-content: center;
text-align: center;
color:#000;
flex-direction: row;
align-items: flex-start;
justify-content: center;
margin: 50px auto;
}

.our_features .feature:hover{
  transform: translateX(7px);
  animation-delay: 100ms;

}
.our_features .feature:hover .picture img{
  width: 80px;
}
.our_features .feature .text{
  min-width: 160px;
}
/*---------------- END of  our features ----------------*/


/* -------------- register page ---------------*/


  .register_form {
    margin:5px auto 5px auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .register_form form{
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:auto;
    padding:50px auto 50px auto;
    margin:25px auto 50px auto;
  font-family: 'Poppins', sans-serif;
  width:80%;
  }
  .register_form form .inline{
    display:flex;
    flex-direction: column;
    width: 100%;
  }
  .register_form form .inline div{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .register_form form .inline div:nth-child(2){
    margin-left: 0;
  }


  .register_form .input_span{
    display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .register_form .error_span{
      display: flex;
  text-align: left;
  align-items: left;
  margin: 10px auto 10px 5px;
  color: red;
  }
  .register_form input{
    padding:14px 20px 14px 20px;
    width: 100%;
    text-align: left;
   /* border:1px solid #c9c9c9; */
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    border-radius: 10px;
  }
  .register_form .inline input{

    width: 80%;
    border:none;
    margin:auto auto auto auto;
    min-width: auto;
    background-color: #f3f3f4;
  }
  .register_form .inline input:focus{
    background-color: #e3e3e3;
  }
  .register_form label{
    margin: 30px auto 12px 3%;
    display: flex;
    justify-content: left;
    align-self: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
  }
  .register_form label .required{
    color:red;

  }

  .register_form .not_required_span{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0px 35px 5px auto;
  font-size:14px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  }

  .register_form button[type="submit"]{
    margin:50px auto 20px 3%;
  padding:15px 60px 15px 60px;
  border:none;
  background-color:#FF6F3C;
  color:white;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 8px;
  }
  .register_form button[type="submit"]:hover{
     opacity:0.8;
 
  }
  .register_form .inline{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin:auto auto auto auto;
  }
  .register_form_container{
  display: flex;
  flex-direction: column;
  margin:0 5px;
  width: auto;
  padding: 0px 5px 35px 0px;
  }
  .register_form .recaptcha_container{
    margin:30px auto auto 0;
    width: 80% !important;
    height: auto !important;
  }
  .register_page_heading{
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 35px 20px 0px 20px;
    margin-top: 0;
    height: 320px;
    background-position: top 0 right 50%;
  }
  .register_page_heading h1{

    margin: 50% auto 0px auto;
    font-weight: 700;
    margin-left: auto;
    font-size: 35px;
    text-align: center;
  }
  .register_page_heading h2{
    margin: 0px auto 30px auto;
    font-weight: 400;
    font-size: 22px;
    margin-left: auto;
  }

  .register_page_details{
    margin:auto auto 200px auto;
    padding:20px 25px 20px 25px;
    height: auto;
    width:75%;
  }
/* ------------register page end--------------- */
/* -------------- login page ---------------*/


.login_form_container{
display: flex;
flex-direction: column;
margin:0 5px;
padding: 35px 5px 100px 5px;
align-items: center;
justify-content: center;
width: auto;
}
.login_form{
  margin:auto;
  width: 100%;

}
.login_form form {

  padding: 50px auto 50px auto;
  margin: auto;
  width: 90%;
}
.login_form form label{
margin-left:3%;
}

.login_form form div{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
}

  .login_page_heading{
    margin-bottom: 0;
    padding: 35px 20px 0px 20px;
    background-position: top 0 right 50%;
    background-size: 60%;
  }
  .login_page_heading h1{
    margin: 65% auto 0px auto;
  }
  .login_page_heading h2{
    margin: 0px auto 30px auto;
    margin-left: auto;
  }
  .login_form_container input{
    min-width: auto;
    width: 80%;
    margin:auto;

  }


/* ------- End of login Page -------*/
/* ---------------- new header ---------------------*/
.header #nav{
  height: 80px;
margin:0 0 0 0;
padding: auto 20px auto 20px;
display: flex;
align-items: center;
z-index: 1;
position: relative;
}
.dashboard-header #nav{
  height: 80px;
margin:0 0 0 0;
padding: auto 20px auto 20px;
display: flex;
align-items: center;
z-index: 1;
}
.header #nav .icon, .dashboard-header #nav .icon{
display: flex;
padding:15px;
font-size:16px;
}
.dashboard-header #nav .icon{
color:#fff;
}
.header #nav .icon:hover{
  color:#2a82d4;
}

.header #nav.responsive,  .dashboard-header #nav.responsive{
  flex-direction: column;
  height: auto;
}
.header #nav.responsive .nav_links,  .dashboard-header #nav.responsive .nav_links{
  position: relative;
  height: 100%;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header #nav.responsive .nav_links a , .dashboard-header #nav.responsive .nav_links a{
  padding:20px;
}
.header #nav.responsive .nav_links button, .header #nav.responsive .nav_links .signup,.header #nav.responsive .nav_links .login,.header #nav.responsive .nav_links .logout, .header #nav.responsive .nav_links .dashboard{
text-align: center;
text-decoration: none;
font-weight: 500;
position: relative;
margin:15px auto;
}  

.dashboard-header #nav.responsive .nav_links button, .dashboard-header #nav.responsive .nav_links .signup,.dashboard-header #nav.responsive .nav_links .login,.dashboard-header #nav.responsive .nav_links .logout, .dashboard-header #nav.responsive .nav_links .dashboard{
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  margin:15px auto;
  } 
.header #nav.responsive .logo, .header #nav.responsive .logo{
  display: none;
}
.header #nav .logo, .dashboard-header #nav .logo{
  margin:auto;
}
.header #nav .logo img, .dashboard-header #nav .logo img{
  height: 45px;
}

.header #nav a{
font-size: 15px;
color:#1c1c1c;
text-align: center;
text-decoration: none;
padding: 0 15px;
display: inline-block;
list-style-type: none;
font-weight: 500;
}
.dashboard-header #nav a{
  font-size: 15px;
  color:#fff;
  text-align: center;
  text-decoration: none;
  padding: 0 15px;
  display: inline-block;
  list-style-type: none;
  font-weight: 500;
  }
.header #nav a:hover,.header #nav .dropdown:hover .dropbtn,.header #nav .navbar .selected a{
  color:#F98404;
  border-bottom: none;
}

.header #nav .nav_links, .dashboard-header #nav .nav_links{
margin-right: auto;
display: none;
}
.header #nav .login, .header #nav .signup, .header #nav .logout,  .header #nav .dashboard{
  padding:14px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
 /* transition-duration: 200ms;*/
}
.header #nav .login, .header #nav .logout{
  background-color: #f1f1f1;
}
.header #nav .signup{
  background-color: #2a82d4;
  background-color: #5551ff;
  margin-left: 15px;
  color:#fff;
  position: fixed;
  z-index: 1;
}
.header #nav .dashboard{
  background-color: #2a82d4;
  background-color: #5551ff;
 
  color:#fff;
}
.header #nav .logout{
  margin-left: 15px;
  position: fixed;
  z-index: 1;
}

.header #nav .login:hover{
  background-color: #e9e9e9;
}
.header #nav .logout:hover{
  background-color: #ff3838;
  color:white;
  
}


.header #nav .signup:hover, .header #nav .dashboard:hover{
  opacity: 0.8;
}

/* ---------------- end new header ------------ */


/* --------------- Schedule Page ----------------- */
.schedule_page_heading{
  padding: 35px 20px 0px 20px;
  margin-bottom: 0;
  background-position: top 0 right 50%;
  background-size: 60%;
}
.schedule_page_heading h1 {
  margin: 65% auto 0px auto;
  font-size: 30px;
}
.schedule_page_heading h2 {
  margin: 0px auto 30px auto;
  margin-left: auto;
}
.schedule_form_container{
  flex-direction: column;
  margin: 0 5px;
  padding: 0px 5px 35px 5px;
  align-items: center;
  justify-content: center;
  width: auto;
}
.schedule_form{
  margin: auto;
  width: 90%;
}
.schedule_form .field{
  width: 100%;
  display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    margin-top: 25px;
    
}


.schedule_form input, .schedule_form select {
  min-width: auto;
  margin: auto auto auto auto;
  min-width: auto;
}
.schedule_form input{
  width: 80%;
}
.schedule_form select{
  width: 90%;
}
.schedule_form label{
  margin:30px auto 12px 3%;
}
.schedule_form span.input_info_span {
  max-width: 100%;
  width: auto;
  white-space: normal;
  flex-wrap: wrap;
  word-wrap: break-word;
  display: block;
}

/* ---------------- end of Schedule Page  ------------ */
/* ----------------- Dashboard  -------------- */
.dashboard_page_container{
  flex-direction: column;
}
.dashboard_page_container .sidebar{
  width: 100%;
}
.dashboard_page_container .sidebar .sidebar_links{
  margin-left:auto;
  position: relative;
  opacity: 0.8;
}

.dashboard_page_container .body{
 padding-right: 8px;
 padding-left: 8px;
}
.dashboard_page_container .body .squares{
  flex-direction: column;
}
.dashboard_page_container .body .square, .dashboard_page_container .body .squares.candidate .square,  .dashboard_page_container .body .squares.client .square{
  width: 80%;
}

.dashboard_page_container .body .section .chart {
  width: auto;
  max-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
}
/* ------ End of Dashboard ------- */
/* -------- Question page --------- */
.question_page .score, .question_page{
    display: flex;
    padding: 20px 0 70px 0;
    width: 100%;
}
.question_page .score .detailled_score, .question_page .question_section{
  padding: 50px 5px;
  width: 85%;
}
.question_page .score .detailled_score h1 {
  font-size: 28px;
}
.question_page .question_section h1{
font-size: 24px;
}
.question_page .question_section img{
  max-width: 100%;
}
.skillsBreakdownChart-container {
  width: 100%; 
  margin: 40px auto; 
  position: relative;
  min-width: 100%;

}

/* -------- End of Question page --------- */

}

@media screen and (min-width:800px) and (max-width:1100px) {
  .skillsBreakdownChart-container {
    width: 100%; 
    margin: 40px auto; 
    position: relative;
    min-width: 100%;
  }
  .header #nav .logo {
    cursor: pointer;
    margin: auto auto auto 2%;
  }
.header #nav .nav_links {
    margin-right: 12%;
    margin-left: auto;
}
.landing{
  background-size: 50%;
}
.landing h2 {
  margin: 10px 20px 20px 50px;
  font-size: 20px;
}
.landing .landing_text h1 {
  margin: 50px 20px 20px 50px;
  font-size: 36px;
}
.landing h3 {
  text-align: center;
  margin: 10px 20px 40px 40px;
}
.why_us .right h1 {
  font-size: 40px;
}
.why_us .right p{
  font-size: 19px;
}
.why_us .right button{
  font-size: 15px;
}
.our_features{
  padding:80px 8% 80px 8%;
}
.pricing .plans{
  padding:98px 5px 40px 5px;
}
.pricing .plan{
  width: 15%;
}
.dashboard_page_container {
  flex-direction: column;
}
.dashboard_page_container .sidebar {
  
width: auto;
}


.pricing .plan h4{
  font-size: 20px;
}
.pricing .plan p, .pricing .plan ul {
    font-size: 16px;
}

.question_page .score,  .question_page .question_section {
  width: 80%;
  padding: 50px 5px;

}


}
@media screen and (min-width:800px) and (max-width:900px) {
  .pricing .plan{
    width: 13%;
  }
  .pricing .plan.one{
width: 22%;
  }
  }

  @media screen and (min-width:587px) and (max-width:800px) {
  .login_page_heading h1 {
    margin: 50% auto 0px auto;
  }
  .schedule_page_heading h1 {
    margin: 40% auto 0px auto;
  }
}

