@charset "utf-8";

:root{
  --color-black-text:241,247,251;
  --color-snow:255,255,255;
  --color-owl-always-light: 88,204,2;
}

@font-face{
  src:url(../fonts/din-round.woff);
  font-family:'din-round';
  font-weight: 500;
}
@font-face{
  src:url(../fonts/din-round.woff2);
  font-family:'din-round2';
  font-weight: 700;
}

@font-face{
  src:url(../fonts/din-round2.woff);
  font-family:'din-round3';
  font-weight: 700;
}

@font-face{
  src:url(../fonts/din-round-light.woff2);
  font-family:'din-round-light';
  font-weight: 700;
}

@font-face{
  src:url(../fonts/din-round-regular.woff2);
  font-family:'din-round-regular';
  font-weight: 700;
}
@font-face{
  src:url(../fonts/din-round-bold.woff2);
  font-family:'din-round-bold';
  font-weight: 700;
}

*,button, button:focus, input, textarea {
  -webkit-tap-highlight-color: transparent;
/*  box-sizing: inherit;*/
  font-family: din-round3,sans-serif;
  outline: none;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: rgb(var(--color-snow));
/*  color: rgb(var(--color-black-text));*/
  font: 500 17px/28px sans-serif;
}

.loader {
  display: block;
  cursor: wait;
  position: fixed;
  z-index: 7000;
  background-image: url('../../images/loading.gif');
  background-color: #666 ;
  opacity: 0.4;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}

.mb-10{
  margin-bottom: 6rem;
}

.form-group{
  margin-bottom: 1.3rem;
}

.container{
  max-width: 1200px;
}

hr{
  color:#979292;
}

.form-check-input{
  margin-top: 6px;
}

html[dir="rtl"] .form-floating>label{
  left: unset;
}

.card-hr{
  margin-left: -15px;
  margin-right: -15px;
}

.btn{
  font-family: din-round,sans-serif;
}

.btn-default{

  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  color: #1cb0f6;
}

.btn-default:hover{
  border: 1px solid #e5e5e5;
  color: #1cb0f6;
  background-color: #f7f4f4;
}

h1 {
  font-size: 32px;
  font-family: din-round,sans-serif;
/*  line-height: 40px;
  margin: 0 0 50px;*/
}

.welcome h1{
  color: rgb(75,75,75);
}

.welcome .btn-lg{
  font-size: 16px;
}

/** Features Styles ***/

/*  .features {
    margin-top: 150px;
  }*/

/*  .features p.lead{
    margin-bottom: 120px;
  }*/

  .features .row{
    margin-bottom: 50px;
  }

  .features h2{
    font-family: din-round,sans-serif;
    color: rgb(var(--color-owl-always-light));
    font-size: 40px;
  }

  .features img.rounded{
    border-radius: 1rem !important;
  }

/*** lesson page ***/

.lesson-page .form-check-label{
  margin-left: 0.25rem!important;
  margin-right: 0.25rem!important;
}

html[dir="rtl"] .lesson-page .form-check-label{
/*  font-weight: 600;*/
  font-size: 18px;
}

.lesson-page div[data-correct] .fa{
  position: relative;
  top:1px;
}

.lesson-page .form-check-input:disabled~.form-check-label,
.lesson-page .form-check-input[disabled]~.form-check-label{
  opacity: 1;
}


/** Responsive Styles ***/

@media (max-width:1200px){

  .welcome .btn{
    width: 75% !important;
  }

}

@media (max-width:550px){

  .navbar-brand img,
  .footer img{
    width: 140px;
  }

  .welcome .btn{
    width: 90% !important;
  }

  .features .col-md-6 p.lead {
    margin-bottom: 20px;
  }

  .col-md-6 .box,
  .col-md-6.text-left,
  .col-md-6.text-end{
    text-align: center !important;
  }

  .col-md-6.order-2{
    order: unset !important;
  }

  .lesson-page .col-lg-3.col-md-6 .p-2{
    margin-bottom: 5px;
  }

}