/*
	Theme Name: ما هو اسم القالب؟
	Theme URI: https://www.elnooronline.com/
	Author: تم تصميم وتطوير بواسطة شركة النور أون لاين
	Author URI: https://www.elnooronline.com/
*/
/* start part basic */
@import url(assets/css/helper\ v0.2.css);
@import url(assets/css/all.min.css);
@import url(assets/css/bootstrap.css);
@import url(assets/css/aos.css);
@import url(assets/css/slick-theme.css);
@import url(assets/css/slick.css);
@import url(assets/css/animate.min.css);
@import url(assets/css/splide.min.css);
@import url(assets/css/magnific-popup.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: var(--text);
  text-decoration: none !important;.test .tab-content .tab-pane > h4:first-of-type:after
  transition: 1s;
}

a.text-primary:hover,
a.text-primary:focus {
  color: var(--second) !important;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
  -webkit-box-sizing: 0;
  box-sizing: 0;
  padding: 0;
  margin: 0;
  direction: ltr;
}

:root {
  --title: rgb(172, 172, 172);
  --prime: rgba(52, 189, 197, 1);
  --second: rgba(250, 122, 0, 1);
  --third: rgb(48, 149, 155);
  --four: rgb(194, 108, 27);
  --sodark: #0d217a;
  --border: transparent;
  --bg: rgb(20, 20, 20);
  --text-p: rgba(76, 87, 87, 1);
  --text: white;
}

.backgroun {
  background-color: var(--bg);
  color: var(--text);
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

.title {
  font-size: 18px;
}

p {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p::selection,
h1::selection,
h2::selection,
h4::selection,
h5::selection,
h6::selection {
  background-color: var(--prime);
  color: white;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bolder;
  margin: 0px;
  padding: 0px;
}

p {
  font-weight: 500;
  margin: 0px;
  padding: 0px;
}

.text-color {
  color: var(--second);
}

a {
  font-weight: 600;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px
}

input:focus {
  outline: none;
}

.load {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.load img {
  width: 20%;
  height: 20%;
}




.loaderlodging {
  height: 100vh;
  z-index: 10000;
  transition: .8s;
}

.loaderlodging img {
  width: 200px !important;
  height: 70px !important;
  object-fit: cover;
}

.loaderlodging__body {
  overflow: hidden;
}

.loaderlodging__body.afterloading {
  overflow: inherit;
}

.loaderlodging.remove {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #cecece;
  border-bottom-color: var(--prime);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loaderlodging img {
  width: 100px;
  height: 100px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* end basic */
/* start header  */
header {
  background-color: rgba(0, 0, 0, 0.185);
  position: absolute;
  left: 0px;
  top: 0px;
  height: 80px;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .head {
  width: 100%;
}

header .head-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .head-left .logo {
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .head-left .logo img {
  width: 100px;
}

header .head-left ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0px;
}

header .head-left ul li {
  margin: auto 15px;
  position: relative;
  text-wrap: nowrap;
}

header .language .dropdown-menu {
  min-width: 5rem;
  background-color: var(--prime);
  border-radius: 20px;
}

header .language .dropdown-menu a {
  margin: 0px;
  color: white;
  padding: 5px;
  transition: 1s;
}

header .language .dropdown-menu a:hover {
  background-color: white;
  border-radius: 10px;
  color: var(--prime);
}

/* start hover links  */
header .head-left ul li a {
  transition: 1s;
}

header .head-left ul li::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 0%;
  background-color: var(--second);
  height: 2px;
  transition: 1s;
}

header .head-left ul li::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -5px;
  width: 0%;
  background-color: var(--second);
  height: 2px;
  transition: 1s;
}

header .head-left ul li:hover:after,
header .head-left ul li:hover:before {
  width: 100%;
}

header .head-left ul li a:hover {
  color: var(--second);
}

header .head-left ul li.active a {
  color: var(--second);
}

header .head-left ul:hover li.active a {
  color: white;
}

header .head-left ul li.active:hover a {
  color: var(--second);
}

header .head-left ul li.active:before {
  width: 100%;
}

header .head-left ul li.active::after {
  width: 100%;
}

header .head-left ul:hover li.active::after,
header .head-left ul:hover li.active::before {
  width: 0%;
}

header .head-left ul li.active:hover:after,
header .head-left ul li.active:hover:before {
  width: 100%;
}

/* end hover links  */
.sidenav ul li a {
  transition: 1s;
}

.sidenav ul li {
  position: relative;
}

.sidenav ul li::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 0%;
  background-color: var(--second);
  height: 2px;
  transition: 1s;
}

.sidenav ul li::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -5px;
  width: 0%;
  background-color: var(--second);
  height: 2px;
  transition: 1s;
}

.sidenav ul li:hover:after,
.sidenav ul li:hover:before {
  width: 100%;
}

.sidenav ul li a:hover {
  color: var(--second);
}

.sidenav ul li.active a {
  color: var(--second);
}

.sidenav ul:hover li.active a {
  color: white;
}

.sidenav ul li.active:hover a {
  color: var(--second);
}

.sidenav ul li.active:before {
  width: 100%;
}

.sidenav ul li.active::after {
  width: 100%;
}

.sidenav ul:hover li.active::after,
.sidenav ul:hover li.active::before {
  width: 0%;
}

.sidenav ul li.active:hover:after,
.sidenav ul li.active:hover:before {
  width: 100%;
}

header .head-right a {
  display: flex;
  align-items: center;
  margin: 0px 20px;
  justify-content: center;
}

header .head-right a i {
  margin-right: 10px;
  font-size: 15px;
}

header .head-right .dropdown a:first-of-type p {
  border-bottom: 1px white solid;
}

header .head-right .dropdown>a:hover {
  color: white;
}

header .head-right a p {
  font-weight: 400;
  font-size: 13px;
}

.header2 {
  background-color: white;
}

.header2 li a {
  color: black;
}

.header2 .head-left ul:hover li.active a {
  color: black;
}

.header2 ul li.active:hover a {
  color: var(--second) !important;
}

.header2 .head-right .dropdown>a {
  color: black;
  transition: 1s;
}

.header2 .head-right .dropdown>a:hover {
  color: var(--second);
}

.header2 #main span {
  color: black !important;

}

/* start nav  */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: var(--prime);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

/* end header  */
/* //////////////////////////////////////*/
/* start landing  */
.landing {
  position: relative;
  height: 100vh;

}

.landing .bg-landing {
  width: 100%;
  height: 100%;
  z-index: -1;
}

.landing2 .text-landing2 h3 {
  position: relative;
}

.landing2 .text-landing2 h3::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--prime);
}

.landing .bg-landing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing .text-landing {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  width: 60%;
  transform: translate(-50%, -50%);
}

.landing .text-landing .color {
  color: var(--second);
}

.landing .text-landing .txt-float {
  position: relative;
}

.landing .text-landing .txt-float::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 0%;
  background-color: rgba(48, 150, 155, 0.473);
  width: 68%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
}

.landing .text-landing>* {
  margin: 35px auto;
  color: white;
}

.landing .text-landing h5 {
  font-weight: 400;
}

.landing .text-landing a {
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing .text-landing a i {
  margin-left: 7px;
  margin-top: 2px;
}

/* end landing  */
/* //////////////////////////////////// */
/* strt counter  */

.count {
  position: relative;
  height: 100%;
}

.count .counte {
  position: relative;
}

.count .counte::after {
  content: "";
  background-image: url(assets/image/left-arrow.png);
  position: absolute;
  left: -55px;
  top: 60%;
  /* transform: translate(-35px , -65%); */
  /* transform: translateY(-50%); */
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
}

.count .counte::before {
  content: "";
  background-image: url(assets/image/right-arrow.png);
  position: absolute;
  right: -85px;
  top: 60%;
  /* transform: translate(-35px , -65%); */
  /* transform: translateY(-50%); */
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
}

.count .row {
  position: relative;
  bottom: 75px;
  width: 100%;
  margin: auto;
}

.count .col {
  border-radius: 15px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: auto;
}

.count .col .count-content {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: white; */
  padding: 35px;
  border-radius: 15px;
  transition: 1s;
}

.count .col .bg-count {
  width: 100%;
  height: 100%;
}

.count .col .bg-count img {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}

.count .col .count-content .count-float {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-36%);
  width: 20%;
  height: 100%;
  z-index: -1;
}

.count .col .text-count {
  margin-left: 40px;
}

/* end counter  */
/* /////////////////////////////////////////////////// */
/* start about us  */
.about-us {
  position: relative;
}

.about-us .bg-about {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-us .bg-about img {
  width: 100%;
  height: 100%;
}

.about-us .text-about h2 {
  font-size: 15px;
}

.about-us .text-about>* {
  margin-bottom: 20px;
}

.about-us .text-about p {
  font-weight: 400;
}

.about-us .text-about .btns-about {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-us .text-about .btns-about a {
  width: 100%;
  margin: 0px 10px;
  padding: 10px;
  font-weight: bold;
}

.about-us .row .videoplay img {
  width: 100%;
}

.about-us .row .videoplay {
  position: relative;
}

.about-us .row .videoplay {
  filter: brightness(.7);
  border-radius: 15px;
}

.about-us .row .videoplay::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 35px;
  color: var(--second);
  width: 100%;
  height: 100%;
}

.about-us .row .card {
  margin: auto;
  background-image: linear-gradient(1100deg, rgba(20, 74, 77, 1), rgba(199, 97, 0, 1));
  padding: 15px 0px;
  width: 250px;
  border-radius: 10px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  color: white;
  transition: 1s;
  cursor: pointer;
}

.about-us .row .card:hover {
  scale: 1.1;
}

.about-us .row .card:hover {
  background-image: linear-gradient(1100deg, rgba(20, 74, 77, 1), rgba(199, 97, 0, 1));
}

.about-us .row .card>* {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* end about us */
/* /////////////////////////////////////////////////// */
/* start courses  */
.courses {
  position: relative;
  margin: auto;
  text-align: center;
}

.courses .bg-courses {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.courses .bg-courses img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses .card {
  position: relative;
  border-radius: 30px;
  margin: 0px 20px;
  z-index: -1;
  cursor: pointer;
  overflow: hidden;
  transition: 1s;
}

/* .courses .card.lock .card-img-top::after{
  content: "\f023   l o c k e d";
  font-family: "Font Awesome 6 Free";
  font-weight: bolder;
  font-size: 14px;
  position: absolute;
  right: 30px;
  top: 30px;
  background-color: var(--second);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
} */
.courses .card.lock {
  position: relative;
}

.courses .card.lock::after {
  content: "Coming Soon";
  letter-spacing: 2px;
  font-weight: bolder;
  font-family: "Font Awesome 6 Free";
  font-weight: bolder;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: rotate(0deg);
  color: var(--second);
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.918);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.courses .card a {
  transition: 1s;
}

.courses .card:hover .btn {
  background-color: var(--second);
}

.courses .card::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  border-radius: 30px;
  width: 100%;
  height: 0%;
  scale: 2.5;
  border-radius: 50%;
  background-color: var(--prime);
  z-index: -1;
  transform: rotate(40deg);
  transition: 1s;
}

.courses .card:hover:after {
  height: 100%;
}

.courses .card img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: 1s;
}

.courses .card:hover img {
  filter: brightness(0.8);
}

.courses .text-courses>* {
  margin: 20px;
  color: white;
}

.courses .card .card-img-top {
  padding: 15px;
}

.courses .card .card-body {
  padding: 0px 20px;
  padding-bottom: 10px;
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.courses .card .card-body h4 {
  color: var(--second);
}

.courses .card .card-body p {
  font-weight: 500;
  transition: 1s;
  overflow: hidden;
}

/* .courses .card.lock */
.courses .card:hover .card-body p {
  color: white;
}

.courses .card.lock:hover .des-cour h4 {
  color: black !important;
}

.courses .card.lock:hover .teacher span>* {
  color: black !important;
}

.courses .card .card-body>* {
  margin: 8px 5px;
  text-align: left;
}

.courses .card .card-body a {
  text-align: center;
  font-weight: bold;
}

.courses .slick-dots {
  display: none !important;
}

.courses .slick-prev,
.slick-next {
  top: 105%;
}

.courses .slick-next {
  right: 45%;
}

.courses .slick-prev {
  left: 45%;
}

.slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  background-color: rgb(170, 170, 170);
  border-radius: 50%;
  padding: 10px;
  transition: 1s;
}

.slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  background-color: rgb(170, 170, 170);
  border-radius: 50%;
  padding: 10px;
  transition: 1s;
}

.slick-next:hover:before,
.slick-prev:hover:before {
  background-color: var(--prime);
}

/* end courses  */
/* ///////////////////////////////////////////////////////// */
/* start company  */
.company {
  position: relative;
}

.company .text-company {
  margin-bottom: 75px;
}

.company .bg-company {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.company .bg-company img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company .text-company h4 {
  position: relative;
  width: 100%;
}

.company .text-company h4::after {
  content: "";
  position: absolute;
  left: 130px;
  top: 50%;
  width: 100px;
  height: 2px;
  background-color: var(--prime);
}

.splide:not(.is-overflow) .splide__pagination {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.splide__pagination__page {
  background-color: rgb(100, 100, 100);
  opacity: 1;
  width: 17px;
  height: 17px;
  background-color: white;
  border: solid 1px var(--prime);
}

.splide__slide img {
  width: 80%;
  object-fit: contain;
}

.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company .splide__arrow {
  display: none;
}

.splide__pagination__page.is-active {
  background-color: var(--prime);
}

.splide__pagination {
  position: relative;
  bottom: 275px;
  left: 80%;
  width: 230px;
}

.splide__pagination li {
  margin: 0px 1px;
}

/* .is-active{
background-color: var(--prime);
} */
/* end company */
/* /////////////////////////////////////////////// */
/* start library  */
.library {
  height: 90vh !important;
}

.library .library-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.library .library-content .passcode {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 30%;
  border-radius: 15px;
  padding: 30px 45px;
  box-shadow: 0px 0px 5px 5px rgb(206, 206, 206);
}

.library .library-content .passcode>* {
  margin: 10px 0px;
}

.library .library-content .passcode .col {
  padding: 0px;
}

.library .library-content .passcode form>* {
  margin: 10px 0px;
}

.library .library-content .passcode input {
  width: 100%;
}

/* start another pages  */
.landing2 {
  position: relative;
  height: 50vh;
  margin-bottom: 20px;
}

.landing2 .bg-landing2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.landing2 .bg-landing2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.landing2 .container-90 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing2 .text-landing2 {
  color: white;
  text-align: center;
  position: relative;
  top: 40px;
}

.landing2 .text-landing2>* {
  margin: 5px 0px;
}

/* start media page  */
.media .image-media .col>.row {
  height: 100%;
}

.media .image-media .col>.row .row {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin-left: 0px;
  overflow: hidden;
}

.media .image-media .col>.row .row div {
  padding: 5px;
  margin: 0px;

}

.media .image-media .col>.row .row div img {
  padding: 0px;
  margin: 0px;
}

.media .image-media .blocks {
  height: 300px;
  padding: 0px;
}

.media .image-media .blocks img {
  padding: 10px;
}

.media .image-media .blocks2 {
  height: 600px;
}

.media .image-media .blocks3 {
  height: 140px;
}

img.mfp-img {
  object-fit: cover;
  object-position: top;
  width: 100% !important;
  height: 400px !important;
}

.media .image-media .col {
  /* margin: 30px 0.5%; */
  /* padding: 0px; */
  height: 100%;
}

.media .image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* .media .image-media  .row  > div {
  margin-bottom: 30px;
  padding: 0px;
} */
/* ///////////////////////////////////////////////// */
/* start login  */
.login {
  margin-top: 85px;
  height: 100vh;
  position: relative;
}

.login2 {
  height: 110vh;
}

.login .bg-login {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.login .bg-login img {
  height: 100%;
  object-fit: contain;
}

.login .login-content {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%, -2%);
  width: 80%;
  height: 80vh;
}

.login .login-content div {
  padding: 0px;
}

.login .login-content .col {
  padding: 20px 30px;
}

.login .left-logoin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 5;
}

.login .right-login {
  background-color: white;
  box-shadow: 0px 0px 5px 5px rgb(206, 206, 206);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px !important;
  z-index: -1;
}

.login .right-login .row {
  width: 90%;
}

.login form .col {
  margin: auto;
}

.login form label {
  font-weight: bold;
}

.login form .col>input {
  padding: 25px;
  background-color: rgb(250, 249, 249);
  border: none;
}

.login form .col>input::placeholder {
  color: rgb(121, 120, 120);
}

.login .col a {
  transition: .5s;
}

.login .col a:hover {
  color: var(--second) !important;
}

/* start courses */
.courses .card {
  z-index: 10;
  margin: 20px 0.5%;
}

.courses .autoplay2 .card img {
  height: 320px;
}

.courses .card .card-body a span p {
  height: 47px;
}

.courses .card .card-body p {
  height: 45px;
}

.courses .card a {
  color: black;
  text-align: left !important;
}

.courses .card .card-img-top {
  position: relative;
  height: 300px;
}

.courses .card .card-img-top .float-stars {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}

.courses .card .card-img-top .float-stars ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}

.courses .card .card-img-top .float-stars ul li {
  margin: 0px 2px;
}

.courses .card .card-img-top .float-stars ul li i {
  color: rgba(253, 176, 34, 1);
}

.courses .card .card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses .card .card-body .teacher>* {
  margin: 20px 0px;
}

.courses .card .card-body .teacher {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courses .card .card-body .teacher div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.courses .card .card-body .teacher div span>* {
  margin: 5px 0px;
  transition: 1s;
}

.courses .card:hover .card-body .teacher div span>* {
  color: white;
}

.courses .card .card-body .teacher div span img {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  /*object-fit: cover;*/
}

.courses .card .card-body .teacher div i {
  font-size: 30px;
  color: rgb(182, 180, 180);
}

.courses .card .card-body .des-cour h4 {
  color: black;
  margin-bottom: 30px;
  transition: 1s;
}

.courses .card:hover .card-body .des-cour h4 {
  color: white;
}

.courses .card .card-body .info-cour {
  position: relative;
}

.courses .card .card-body .info-cour::after {
  content: "";
  position: absolute;
  left: 0%;
  top: -5px;
  background-color: var(--prime);
  width: 100%;
  height: 1px;
}

.courses .card .card-body .info-cour::before {
  content: "";
  position: absolute;
  left: 0%;
  top: -5px;
  background-color: var(--second);
  width: 0%;
  height: 1px;
  z-index: 1;
  transition: 2s;
}

.courses .card:hover .card-body .info-cour::before {
  width: 100%;
}

.courses .card .card-body .info-cour ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
  flex-wrap: wrap;
}

.courses .card .card-body .info-cour ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.courses .card .card-body .info-cour ul li img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}
.courses .card .card-body .info-cour ul li p{
    height:20px;
}
.courses1 .card a {
  text-align: center !important;
  color: white !important;
}

.gold {
  color: rgba(250, 122, 0, 1) !important;
}

.stars i {
  font-size: 35px;
}

.about-us .row div {
  margin: 20px 0px;
}

.about-us .col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  margin: 20px 0px;
}

.about-us .col img {
  width: 100%;
}

.about-us .card img {
  width: 90%;
  height: 210px;
  object-fit: contain;
}

.about-us .col:last-of-type {
  align-items: center;
}

.about-us .col .title {
  color: var(--prime);
}

.about-us .col p {
  margin: 15px 0px;
}

.about-us .col span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us .col span h3 {
  color: var(--prime);
  font-size: 25px;
}

.about-us .col span img {
  margin-left: 5px;
  width: 25px;
}

.about-us-content .card {
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  border: none;
}

.about-us-content .card img {}

.about-us-content .card::after {
  display: none;
}

.about-us-content .card .float-btn {
  position: absolute;
  left: 50%;
  top: -50%;
  transform: translate(-50%, -50%);
  transition: 1s;
}

.about-us-content .card:hover img {
  filter: brightness(0.7);
}

.about-us-content .card:hover .float-btn a {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
}

.about-us-content .card:hover .float-btn {
  top: 50%;
}

.about-us-content .btn2:hover .float-btn a {
  background-color: var(--prime);
}

/* start .contact-us  */
.contact-us .map {
  position: relative;
}

/* #refreshButton {
  background-color: var(--prime);
  color: white;
  border-radius: 10px;
  padding: 10px 15px;
  border: none;
  margin-top: 20px;
} */

.contact-us .map iframe {
  width: 100%;
  border-radius: 20px;
}

.contact-us form .row {
  width: 100%;
  margin: auto;
}

.contact-us form .col {
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 20px 0.5%;
}

.contact-us form .col label {
  margin-bottom: 10px;
  font-weight: 600;

}

.contact-us form h3 {
  position: relative;
  color: var(--prime);
  margin-bottom: 20px;
}

.contact-us form h3::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 20%;
  height: 3px;
  background-color: var(--second);
}

.contact-us form .col input {
  padding: 10px;
  width: 95%;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 1px rgba(80, 79, 79, 0.212);
  background-color: rgba(246, 248, 248, 1);
}

.contact-us form .col textarea {
  padding: 15px;
  width: 98%;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 1px rgba(80, 79, 79, 0.212);
  background-color: rgba(246, 248, 248, 1);
}

.contact-us form .btn {
  width: 98% !important;
}

.contact-us form {
  position: relative;
  top: -150px;
  padding: 30px;
  z-index: 1;
}

.contact-us form>* {
  position: relative;
  left: 10px;
}

.contact-us form .bg-contact-us {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-us form .bg-contact-us img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.contact-us form {}

.contact-us h3 {
  color: var(--prime);

}

.contact-us p {
  margin: 20px 0px;
}

.contact-us .right-contact .col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
  box-shadow: 0px 0px 5px 5px rgba(68, 68, 68, 0.301);
  margin: 10px 0px;
  border-radius: 10px;
}

.contact-us .right-contact .col h6 {
  font-weight: 600;
}

.contact-us .right-contact a {
  color: black;
  overflow: hidden;
}

.contact-us .col i {
  padding: 15px;
  font-size: 25px;
  background-color: rgba(15, 80, 87, 1);
  color: white;
  margin-right: 15px;
  border-radius: 10px;
}

.contact-us .col:nth-of-type(2) i {
  background-color: rgba(0, 150, 255, 1);
}

.contact-us .col:nth-of-type(3) i {
  background-color: rgba(22, 195, 91, 1);
}

/* start lesson  */
.lesson .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0.5%;
  box-shadow: 0px 0px 5px 5px rgba(66, 66, 66, 0.185);
  border-radius: 20px;
}

.lesson svg {
  background-color: var(--prime);
  height: 128px;
  width: 128px;
  border-radius: 30px;
  padding: 15px;
}

.lesson .col>* {
  margin: 15px auto;
}

.lesson .col h5 {
  height: 50px !important;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lesson .col a {
  width: 100%;
}

/* //////////////////////// */
/* start course  */
.course {
  margin-top: 100px;
}

.course .image-course>img {
  width: 100%;
  height: 500px;
  /*object-fit: cover;*/
  border-radius: 25px;
}

.course .image-course ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0px;
}

.course .image-course ul li p {
  text-wrap: wrap;
}

.course .image-course ul::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -15px;
  width: 100%;
  height: 2px;
  background-color: var(--prime);
}

.course .image-course ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px;
  margin-right: 30px;
}

.course .image-course ul img {
  margin-right: 10px;
}

.course .image-course ul li:first-of-type img {
  width: 130px;
  height: 140px;
  object-fit: contain;
}

.course .image-course ul li i {
  color: rgba(250, 122, 0, 1);
  margin: 0px 1px;
}

.course .nav {
  border: none;
}

.course .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0px;
}

.course .nav li {
  padding: 0px 30px;
  position: relative;
}

.course .nav li::after {
  content: "";
  position: absolute;
  right: -5px;
  width: 1px;
  height: 100%;
  background-color: gray;
}

.course .nav li:last-of-type:after {
  display: none;
}

.course .nav li a svg {
  margin-right: 5px;
}

.course .nav li a {
  color: gray;
}

.course .nav li a svg path {
  fill: gray;
}

.course .nav li a rect {
  fill: gainsboro;
}

.course .nav li .active {
  color: var(--second);
}

.course .nav li .active svg path {
  fill: white !important;
}

.course .nav li .active rect {
  fill: var(--second);
}

.course .tab-content {
  margin: 25px 0px;
}

.course .box-text {
  background-color: rgba(236, 236, 236, 0.747);
  padding: 25px;
  box-shadow: 0px 0px 5px 5px rgba(94, 94, 94, 0.281);
  border-radius: 20px;
}

.course .box-text p {
  margin-bottom: 15px;
}

.course .review {
  padding: 30px 10px;
}

.course .review .row {
  margin: 50px 0px;
  width: 100%;
}

.course .progs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.course .prog {
  position: relative;
  margin: 15px 0px;
  width: 80%;
}

.course .prog .progress {
  height: 8px;
  border-radius: 50px;
}

.course .prog .float-star-num {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-57%);
  z-index: 12;
}

.course .prog .float-star-num p {
  font-size: 16px;
  color: grey;
}

.course .review-star {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.course .review-star .review-content {
  box-shadow: 0px 0px 5px 5px rgba(54, 54, 54, 0.281);
  padding: 40px;
  border-radius: 15px;
  position: relative;
}

.course .review-star .review-content::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 0%;
  transition: 1s;
  background-color: var(--prime);
  border-radius: 50%;
}

.course .review-star .review-content:hover:after {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  z-index: -1;
}

.course .review-star .review-content>* {
  transition: 1.5s;
}

.course .review-star .review-content:hover>* {
  color: white;
}

.course .review-star .review-content>* {
  margin: 10px 0px;
  text-align: center;
}

.course .review-star .fa-star {
  color: goldenrod;
}

.course .review-star h5 {
  color: gray;
}

.course .coments .coment .info-coment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.course .coments .coment {
  position: relative;
  margin: 50px 0px;
}

.course .coments .coment::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -25px;
  width: 100%;
  height: 2px;
  background: var(--prime);
}

.course .coments .coment .info-coment span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.course .coments .coment .info-coment span:last-of-type {
  color: var(--text-p);
}

.course .coments .coment .info-coment span i {
  margin-right: 10px;
  margin-bottom: 1px;
}

.course .coments .coment .info-coment span img {
  margin-right: 20px;
}

.course .coments .coment .body-coment>* {
  margin: 20px 0px;
  width: 80%;
  color: var(--text-p);
}

.course .coments .coment .body-coment .fa-star {
  color: goldenrod;
}

.course .review .add-review a {
  text-decoration: underline;
  cursor: pointer;
}

.course .review .add-review a:hover {
  color: var(--second) !important;
}

.lessons {
  background-color: rgba(231, 231, 231, 0.336);
  border-radius: 25px;
  padding: 20px;

}

.lessons .less {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.lessons .less::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: gray;
}

.lessons .less:last-of-type:after {
  display: none;
}

.lessons .less>div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

}

.lessons .less>div:first-of-type {
  height: 100%;
  position: relative;
}

.lessons .less>div:first-of-type p {
  width: 200px;
  overflow-x: hidden;
}

.lessons .less>div:first-of-type:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0%;
  height: 110%;
  width: 2px;
  background-color: rgb(161, 160, 160);
  display:none;
}

.lessons .less>div span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lessons .less>div img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.lessons .less .info-lesson-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.lessons .less .stuts-course {
  width: 150px;
}

.lessons .less .info-lesson>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.lessons .less .info-lesson-content div {
  margin: 10px 0px;
}

.lessons .less .info-lesson-content .less-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.lessons .less .info-lesson-content .less-content p {
  margin-right: 10px;
}

.lessons .less .info-lesson-content .less-content p:first-of-type {
  background-color: var(--prime);
  padding: 10px;
  border-radius: 5px;
  color: white;
  opacity: .7;
}

.lessons .less .info-lesson-content .less-content p:last-of-type {
  background-color: var(--second);
  padding: 10px;
  border-radius: 5px;
  color: white;
  opacity: .7;
}

.lessons .less:last-of-type {
  padding: 20px;
}

.lessons .exam {
  padding: 20px;
  background-color: rgba(52, 190, 197, 0.432);
  margin: 20px;
  border-radius: 15px;
  width: 100%;
  color: black;
  cursor: pointer;
}

.lessons .less:last-of-type div:first-of-type::after {
  display: none;
}

.course .instructors .row {
  background-color: rgba(247, 248, 248, 1);
  padding: 20px;
  border-radius: 40px;
}

.course .instructors .card {
  padding: 0px;
  border: none;
  margin: 20px .5%;
  position: relative;
  border-radius: 10px;
  border-top-left-radius: 75px;
  border-bottom-right-radius: 75px;
  cursor: pointer;
}

.course .instructors .card img {
  border-radius: 10px;
  border-top-left-radius: 75px;
  border-bottom-right-radius: 75px;
  border: solid var(--prime) 1px;
}

.course .instructors .card .float-instr {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: white;
  width: 100%;
  border-radius: 5px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  text-align: center;
  color: var(--prime);
  padding: 10px;
  transition: 1s;
  z-index: 1;
}

.course .instructors .card .float-instr::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  background-color: var(--prime);
  transition: 1s;
  border-radius: 5px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: -1;
}

.course .instructors .card:hover .float-instr::after {
  width: 100%;
}

.course .instructors .card:hover .float-instr {
  color: white;
}

.course .instructors .card .float-instr p {
  padding: 10px;
}

/* start test page  */
.test .info-test {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 0px 5px 5px rgba(51, 51, 51, 0.219);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.test .info-test div {
  padding: 5px 15px;
  position: relative;
}

.test .info-test div::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 0px;
  width: 2px;
  height: 100%;
  background-color: gray;
  display:none;
}

.test .info-test div:last-of-type:after {
  display: none;
}

.test .info-test h5 {
  color: var(--second);
  margin-bottom: 5px;
}

.test .fix-scrol {
  height: 70vh;
  overflow-y: scroll;
}

.test .fix-scrol::-webkit-scrollbar {
  display: none;
}

.test .question .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;

}

.test .question .nav-tabs li {}

.test .question .nav-tabs li a {
  border-radius: 50%;
  border: solid 1px var(--prime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0px;
  width: 30px !important;
  height: 30px !important;
  color: var(--prime);
  font-size: 13px;
  padding: 0px;
}

.test .question .nav-tabs .active {
  background-color: var(--prime);
  color: white;
}

.test .question .nav-tabs li:first-of-type a,
.test .question .nav-tabs li:last-of-type a {
  background-color: var(--second);
  border: 1px var(--second);
  color: white;
}

.test .question .nav-tabs li:first-of-type button,
.test .question .nav-tabs li:last-of-type button {
  background-color: var(--second);
  border-radius: 50%;
  color: white;
  width: 30px !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0px;
}

.test .tab-content {}

.test .tab-content .tab-pane {
  background-color: rgb(238, 238, 238);
  width: 100%;
  height: 100%;
  border-radius: 15px;
  padding: 20px;
  /* overflow-y: scroll; */
}

.test .tab-content .tab-pane::-webkit-scrollbar {
  display: none;
}

.test .tab-content .tab-pane>* {
  margin-bottom: 15px;
}

.test .tab-content .tab-pane h6 {
  font-weight: 500;
  color: #716e6e;
  border-bottom: solid 1px #716e6e;
  padding-bottom: 10px;
}

.test .tab-content .tab-pane > h4 {
  font-size: 20px;
  /*color: var(--second);*/
  /*font-style: italic;*/
  font-weight: 700;
  position: relative;
  left: 30px;
}

.test .tab-content .tab-pane > h4 span,
.test .tab-content .tab-pane > h4 p{
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom:5px;
}
.test .tab-content .tab-pane > h4 img{
        position: absolute;
    left: -35px;
    top: 3px;
    width: 25px;
    height: 25px;
}

/*.test .tab-content .tab-pane > h4:first-of-type:after {*/
/*  content: "";*/
/*  background-image: url(assets/image/title-about.png);*/
/*  position: absolute;*/
/*  left: -35px;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  width: 25px;*/
/*  height: 25px;*/
/*  display: flex;*/
/*  justify-content: flex-start;*/
/*  align-items: center;*/
/*  background-repeat: no-repeat;*/
/*}*/

/*.test .tab-content .tab-pane ul {*/
/*        border-bottom: solid 1px var(--second);*/
/*    padding: 20px 0px;*/
/*}*/
/*.test .tab-content .tab-pane ul:last-of-type {*/
/*        border-bottom: none;*/
/*}*/
.test .tab-content ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.test .tab-content ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
}

.test .tab-content ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.test .tab-content ul li img {
  margin-right: 10px;
}

.test .tab-content .qution-box .que {
  margin: 20px .5%;
  height: 200px;
  position: relative;
}

.test .calc {
  cursor: pointer;
}

.test .tab-content .qution-box .que p {
  margin-bottom: 15px;
}

.test .tab-content .question-content {
  position: relative;
  margin: 60px 0px;
}

.test .tab-content .question-content>* {
  margin: 20px 0px;
  display:flex;
}

.test .tab-content .question-content::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -30px;
  width: 100%;
  height: 2px;
  background-color: var(--prime);
}

.test .tab-content .qution-box .que .ans-box {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow-y: scroll;
}

.test .tab-content .qution-box .que .ans-box p {
  margin: 5px 10px;
  background-color: var(--prime);
  color: white;
  padding: 15px;
  border-radius: 10px;
}

/* width */
.test .tab-content .qution-box .que .ans-box::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.test .tab-content .qution-box .que .ans-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(223, 222, 222);
  border-radius: 4px;
}

/* Handle */
.test .tab-content .qution-box .que .ans-box::-webkit-scrollbar-thumb {
  background: var(--prime);
  border-radius: 4px;
}

.test .tab-content .tab-pane .answers {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.test .tab-content .tab-pane .answers li {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  padding: 5px 0px;
  font-size: 20px;
  font-weight: 600;
}

.test .tab-content .tab-pane .answers li label {
  margin-top: 9px;
  margin-left: 10px;
}

.test .tab-content .tab-pane .corect-ans {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.test .tab-content .tab-pane .corect-ans p {
  background-color: gainsboro;
  padding: 10px;
  display: flex;
  align-items: center;
  border-radius: 5px;
}

.test .tab-content .tab-pane .image-queition {
  width: 100%;
  height: 100%;
}

.test .tab-content .tab-pane .image-queition img {
  width: 70%;
  height: 350px;
  background-size: cover;
  border-radius: 15px;
}

.test .tab-content .tab-pane .corect-ans-check {
  color: green;
}

.test .tab-content .tab-pane .false-ans-check {
  color: red;
}

/* start match ask  */
.match-ask {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-around;*/
  position: sticky;
  top: 0px;
  left: 0px;
}

.match-ask .column {
  width: 100%;
}
.match-ask .column-left {
  align-items:start;
}
.match-ask .column-right {
  align-items:end;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item {
  cursor: pointer;
  height:100%;
}

.test .tab-content .match {
  min-height: 70vh;
  overflow-y: auto;
  height: 100%;
}

.match-ask .column img {
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  background-color: var(--second);
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.5s;
  width: 70px;
  height: 50px;
  object-fit: contain;
}

.item input {
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  background-color: var(--second);
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.5s;
  border: none;
  font-size: 25px;
  width:100%;
  text-wrap:wrap;
  min-height:130px;
}

.item input:hover {
  background-color: var(--prime);
}

.item input:focus {
  background-color: var(--prime) !important;
}

.item img:checked {
  background-color: var(--prime) !important;
}

/* start profile page  */
.profile .profile-content {
  position: relative;
  background-color: white;
  top: -95px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 40px;
}

.profile .info-profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.profile .info-profile .text-info-profile {
  margin-left: 30px;
}

.profile .info-profile .text-info-profile>* {
  margin: 10px 0px;
}

.profile .nav {
  border: none;
}

.profile .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0px;
  position: relative;
  z-index: 1;
}

.profile .nav::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0px;
  width: 100%;
  height: 2px;
  background-color: gainsboro;
  z-index: -1;
}

.profile .nav li {
  padding: 0px 30px;
  position: relative;
}

.profile .nav .nav-link {
  border: none !important;
}

.profile .nav .active {
  position: relative;
}

.profile .nav .active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--prime);
}

.profile .nav li:last-of-type:after {
  display: none;
}

.profile .nav li button {
  color: gray;
  font-weight: bolder;
}

.profile .nav .active {
  color: var(--second);
}

.profile .tab-content {
  margin: 25px 0px;
}

.profile .tab-content .col {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.profile form .col {
  margin: 15px .5%;
}

.profile form .col>input {
  padding: 15px;
  background-color: rgb(250, 249, 249);
  border: none;
  width: 100%;
  border-radius: 10px;
}

.profile .col {
  margin: 20px .5%;
  display: flex;
  justify-content: center;
}

.profile .col .num-cours {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--prime);
  padding: 20px;
  border-radius: 15px;
  color: white;
  transition: 1s all;
  cursor: pointer;
}

.profile .col .num-cours:hover {
  scale: 1.1;
}

.profile .col .num-cours img {
  margin-right: 20px;
}

.profile .col:nth-of-type(1) .num-cours {
  background-color: #ffe0d7;
}

.profile .col:nth-of-type(2) .num-cours {
  background-color: #dddcff;
}

.profile .col:nth-of-type(3) .num-cours {
  background-color: #d3f2d6;
}


/* end another pages  */



/* start modal  */
.login .show {
  display: flex !important;
}

.modal-backdrop {
  display: none;
}

/* .modal{
  position: relative;
} */
.modal::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.295);
  z-index: -1;
}

.test .modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
}

.modal.show {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.course .modal .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 100%;
}

.course .modal .modal-body {
  padding: 0px 50px;
}

.course .modal .modal-body div {
  margin: 20px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.course .modal .modal-body .input input,
.course .modal .modal-body textarea {
  width: 100%;
  padding: 15px;
  background-color: rgb(238, 238, 238);
  border: solid 1px rgb(207, 207, 207);
  border-radius: 10px;
}

.course .modal .modal-body .info-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.course .modal .modal-body .info-modal>* {
  margin: 5px 0px;
}

.course .modal .modal-body .info-modal h5 {
  color: var(--prime);
}

.course .modal .modal-body .info-modal ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.course .modal .modal-body .info-modal ul li {
  margin: 0px 3px;
}

.course .modal .modal-body .info-modal ul li .fa-star {
  color: goldenrod;
}

.modal {
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.modal .modal-dialog {
  width: 50%;
  /* padding: ; */
}

.modal .modal-content {
  border-radius: 30px;
}

.modal .modal-body {
  padding: 30px 50px;
}

.modal .modal-body>* {
  margin: 20px 0px;
}

.modal form .col {
  padding: 0px;
  margin: 15px 0px;
}




/* /////////////////////////////////////////////// */
/* start footer  */
footer {
  position: relative;
  color: white;
}

footer .bg-footer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

footer .bg-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
}

footer .col .logo>* {
  margin-bottom: 25px;
}

footer .col .logo .social {
  display: flex;
  align-items: center;
}

footer .col .logo .social li {
  margin: 0px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--prime);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  transition: 1s;
  cursor: pointer;
}

footer .facebock-acount {
  position: relative;
  left: 15px;
  width: 250px;
}

footer .facebock-acount li {
  margin: 0px .5%;
  padding: 0px;
}

footer .facebock-acount li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 13px;
  margin: 10px 2px;
  width: 100%;
  padding: 10px 0px;
  background-color: #0866ff;
  border: none;
}

footer .facebock-acount li a:hover {
  background-color: var(--second);
}

footer .facebock-acount li a i {
  margin: 0px 5px;
  margin-bottom: 3px;
}

footer .col .logo .social li:hover {
  background-color: var(--second);
}

footer .col .logo .social li:hover a {
  color: white;
}

footer .links li {
  margin: 20px 0px;
  margin-right: 80px;
}

footer .contact-us span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;
}

footer .contact-us span i {
  margin-right: 5px;
}

footer .end-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  color: white;
  border-top: solid 1px white;
}

footer .facebock-acount {
  /* display: none; */
}

.end-footer a {
  display: flex !important;
  align-items: center;
  width: 250px;
}

.end {
  display: none;
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 60;
}

.end-whats {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 60;
  width: 150px;
  padding: 10px;
  border-radius: 30px;
}

.end-whats i {
  margin: 0px 5px;
  font-size: 20px;
}

.modal-dialog-calc {
  width: 70%;
}

/* end footer  */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }

  #captcha {
    text-align: center !important;
    margin: -74px 0px 2px -120px !important;
  }

  #textBox {
    width: 203px !important;
  }
}

/* end header   */
/*--------- Responsive ----- */
@media (min-width: 992px) {}

@media (max-width: 992px) {
  .splide__pagination {
    position: relative;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }

  .splide:not(.is-overflow) .splide__pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  footer .col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
    margin: 20px 0px;
  }

  .courses .slick-next {
    right: 40%;
  }

  .courses .slick-prev {
    left: 40%;
  }

  .media .image-media .edit-blocks {
    height: 600px;
  }

  .library .library-content .passcode {
    width: 50%;
  }

  .lessons .less .info-lesson-content {
    width: 40%;
  }

  .test .info-test div::after {
    right: 3%;
  }

  .profile .nav .active::after {
    display: none;
  }

  .login .right-login .row {
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* start header  */
  .sidenav ul li a {
    color: white;
  }

  header .login-phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0px;
  }

  .sidenav ul li a {
    font-size: 19px;
  }

  header .login-phone a {
    background-color: var(--second);
    font-size: 18px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  header .login-phone a i {
    margin-right: 10px;
  }

  /* end header  */
  /* start landing  */
  .landing .text-landing {
    width: 90%;
  }

  .landing .text-landing>* {
    margin: 20px auto;
  }

  .landing h1 {
    font-size: 30px;
  }

  .landing h5 {
    font-size: 15px;
  }

  /* end landign  */
  /* start count  */
  .count .row {
    bottom: 0px;
  }

  .count .col {
    padding: 0px;
  }

  .count .col .text-count {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px;
    margin: auto;
    text-align: center;
  }

  .count .col .text-count h5 {
    font-size: 16px;
  }

  .count .col .text-count p {
    font-size: 13px;
  }

  .count .counte::after {
    display: none;
  }

  .count .counte::before {
    display: none;
  }

  /* end count  */
  /* start media  */
  .media .image-media .blocks,
  .media .image-media .blocks2,
  .media .image-media .blocks3 {
    height: 300px;
    width: 100%;
  }

  .media .image-media img {
    padding: 0px !important;
  }

  .media .image-media .row>div {
    margin-bottom: 30px;
  }

  .login .bg-login img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* start login  */
  .login .right-login>h3 {
    font-size: 20px;
  }

  .login .right-login>p {
    font-size: 13px;
  }

  .modal .modal-dialog {
    width: 97%;
  }

  .modal .modal-body {
    padding: 30px 35px;
  }

  .login2 {
    height: 150vh;
  }

  .login2 .login-content {
    position: absolute;
    left: 50%;
    top: 35%;
  }

  .library {
    height: 80vh !important;
  }

  .library .library-content .passcode {
    width: 98%;
    padding: 15px 30px;
  }

  .courses .text-courses>* {
    margin: 15px 0px;
  }

  .courses .text-courses h3 {
    font-size: 20px;
  }

  .courses .text-courses h2 {
    font-size: 25px;
  }

  .courses .text-courses p {
    font-size: 10px;
  }

  .contact-us form {
    top: 10px;
    padding: 30px 10px;
  }

  /* start review  */
  .course .nav li {
    padding: 10px 14px;
    position: relative;
    width: 50%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }

  .course .image-course ul {
    display: flex;
    flex-wrap: wrap;
  }

  .course .image-course ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
    margin-right: 0px;
    width: 50%;
    text-wrap: nowrap;
  }

  .course .image-course ul li:last-of-type {
    width: 100%;
  }

  .course .nav li::after {
    right: 10px;
  }

  .course .progs {
    margin: 30px 0px;
  }

  .course .prog .float-star-num {
    left: -50px;
  }

  .course .coments .coment .body-coment>* {
    width: 100%;
  }

  .course .review .add-review a {
    text-wrap: nowrap;
    font-size: 25px;
  }

  .lessons .less {
    flex-wrap: wrap;
  }

  .match-ask {
    /*justify-content: space-between;*/
  }

  .item input {
    word-break: break-all;
    text-wrap: wrap;
    font-size: 12px;
  }

  .test .fix-scrol {
    height: 100%;
  }

  .lessons .less>div {
    margin: 10px 0px;
  }

  .lessons .less>div:first-of-type p {
    font-size: 25px;
    font-weight: bold;
    text-wrap: wrap;
    word-break: normal;
  }

  .lessons .less>div:first-of-type:after {
    display: none;
  }

  .lessons .less .info-lesson-content {
    width: 100% !important;
  }

  .test .question .nav-tabs {
    display: flex;
    flex-direction: row;
    margin: 20px 0px;

  }

  .test .tab-content ul {
    flex-wrap: wrap;
  }

  .test .tab-content ul li {
    margin: 10px;
  }

  .test .info-test {
    flex-wrap: wrap;
  }

  .test .info-test div {
    margin: 15px 0px;
  }

  .test .info-test div::after {
    display: none;
  }

  .test .question .nav-tabs li {
    margin: 0px 5px;
  }

  .test .question .nav-tabs li i {
    transform: rotate(-90deg);
  }

  .test .tab-content .tab-pane .image-queition img {
    width: 100%;
  }

  .bg-login {
    display: none;
  }

  .calculator .button {
    font-size: .8em !important;
  }

  .course .coments .coment .info-coment span img {
    margin-right: 5px;
    width: 50px;
  }

  .modal .modal-body>* {
    font-size: 27px;
  }

  .test .info-test {
    padding: 7px;
  }

  .course .image-course ul li:first-of-type img {
    width: 30px;
  }

  .content-course .nav-tabs a {
    text-wrap: nowrap;
  }

  .modal .d-flex {
    width: 100% !important;
  }

  .lessons .less>div:first-of-type {
    height: 0%;
    word-break: break-all;
    overflow-x: visible;
  }

  .lessons .less::after {
    bottom: 20px;
  }

  .test .draggable {
    width: 42% !important;
  }
}

@media (max-width: 500px) {

  #captcha {
    text-align: center !important;
    margin: -74px 0px 2px -86px !important;
  }

  #textBox {
    width: 203px !important;
  }
  
  .courses .slick-next {
    right: 40%;
  }

  .courses .slick-prev {
    left: 32%;
  }

  .login {
    height: 130vh;
  }

  .login2 {
    height: 175vh;
  }

  .login2 .login-content {
    position: absolute;
    left: 50%;
    top: 30%;
  }

  .modal-dialog-calc {
    width: 100% !important;
  }

  .calculator .button {
    font-size: .8em !important;
    padding: 10px;
  }
}

@media (max-width: 385px) {

  /* start header  */
  /* end header  */
  .login .login-content {
    left: 50%;
    top: 5%;
    transform: translate(-50%, 12%);

  }

  #captcha {
    text-align: center !important;
    margin: -74px 0px 2px -120px !important;
  }

  #textBox {
    width: 203px !important;
  }
}

@media (max-width: 430px) {

  /* start header  */
  /* end header  */
  .login .login-content {
    left: 50%;
    top: 5%;
    transform: translate(-50%, 12%);

  }

  #captcha {
    text-align: center !important;
    margin: -74px 0px 2px -86px !important;
  }

  #textBox {
    width: 203px !important;
  }
}

.block {
  display: block !important;
}

.header-fixed {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  transition: 1s;
  z-index: 50;
  transition: 1s all;
  animation-name: down;
  animation-duration: 0.7s;
  transition-delay: 0s;
  background-color: black;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.header-fixed li a {
  color: white;
}

.header-fixed .head-left ul:hover li.active a {
  color: white;
}

.header-fixed ul li.active:hover a {
  color: var(--second) !important;
}

.header-fixed .head-right .dropdown>a {
  color: white;
  transition: 1s;
}

.header-fixed .head-right .dropdown>a:hover {
  color: var(--second);
}

.header-fixed #main span {
  color: white !important;
}

@keyframes down {
  from {
    position: fixed;
    top: -100%;
  }

  to {
    position: fixed;
    top: 0%;
  }
}

/* add calc  */
/* .modal .header {
  border-bottom: 1px solid #ccc;
}

.calc-modal .modal-body{
  padding: 0px;
}
.modal .header p:first-child {
  font-family: 'Cinzel', sans-serif;
  font-size: 30px;
}

.modal .header p:nth-child(2) {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.3px;
}

.modal .calculator {
  height: 350px;
  width: 280px;
  border: none;
  /* margin: 20px auto; */
/* border-radius: 15px; */
/* padding-right: 10px; */
/* box-shadow: 0px 0px 5px 5px #49494959; */
/* } */
/*.calculator {*/
/*    position: relative;*/
/*    top: 110px ;*/
/*  background-color: #fff;*/
/*  padding: 20px;*/
/*  border-radius: 10px;*/
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
/*}*/
.display {
  font-size: 1em !important;
}

/*.buttons {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  gap: 10px;*/

/*}*/
/*.button {*/
/*  width: 100%;*/
/*  padding: 20px;*/
/*  font-size: 1.5em;*/
/*  border: none;*/
/*  border-radius: 5px;*/
/*  cursor: pointer;*/
/*}*/
/*.button.operator {*/
/*  background-color: #f9a825;*/
/*  color: #fff;*/
/*}*/
/*.button.number {*/
/*  background-color: #e0e0e0;*/
/*}*/
/*.button.equal {*/
/*  background-color: #4caf50;*/
/*  color: #fff;*/
/*}*/
/*.button.clear {*/
/*  background-color: #f44336;*/
/*  color: #fff;*/
/*  grid-column: span 2;*/
/*}*/
.modal-body-calc {
  padding: 0px 50px !important;
  overflow: scroll;
  height: 500px;
  padding-top: 0px !important;
}

.modal-body-calc::-webkit-scrollbar {
  display: none;
}

/* end calc  */
.modal .screen {
  padding-top: 15px;
  padding-left: 10px;
}

.modal .screen input {
  height: 25px;
  width: 245px;
  border: none;
  background-color: rgba(216, 214, 214, 0.651);
  color: black;
  padding: 15px 5px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.2em;
}

.modal .buttons {
  margin-top: 35px;
  /* height: 250px; */
  padding-left: 5px;
}

.calc-modal .modal .row {
  height: 60px;
}

.modal .col {
  display: inline-block;
  height: 60px;
  width: 49px;
}

.modal .buttons a {
  position: absolute;
  margin-top: 13px;
  /* margin-left: 8px; */
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 3px;
  color: rgb(254, 254, 254);
  background-color: var(--prime);
}

.modal .buttons a:hover {
  background-color: rgba(0, 0, 0, 0.75);
}


/* .main {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: transform 0.2s;
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
} */



/* body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
} */

.test .draggable {
  width: 25%;
  padding: 10px;
  background-color: #f2f2f2;
  border: 2px solid #ccc;
  text-align: center;
  cursor: grab;
  transition: transform 0.2s;
  position: relative;
}

.test .draggable:active {
  transform: scale(1.1);
}

.test .droppable {
  width: 100%;
  min-height: 200px;
  padding: 10px;
  background-color: #e0e0e0;
  border: 2px dashed #999;
  text-align: center;
  position: relative;
}

.test .draggable,
.test .droppable {
  margin: 10px;
  font-size: 1rem;
}

h1 {
  color: green;
}

.main .col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

}

.drag-ans {
  display: flex;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex-direction: column;
  margin: 0px 10px;
}

.drag-ans h5 {
  margin: 10px 0px;
  color: green;
  background-color: rgba(48, 207, 48, 0.26);
  padding: 20px;
  border-radius: 5px;
}

.drag-ans .drag-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drag-ans .drag-right li {
  margin: 10px 35px;
}

.false-ans {
  border: solid 3px rgb(219, 22, 22);
}

.true-ans {
  border: solid 3px rgb(26, 187, 26);
}

.calculator .button {
  padding: 8px;
}

#captcha {
  text-align: center;
  margin: -74px 0px 2px 272px;
}

#textBox {
  width: 207px;
  margin: auto;
  display: inline-block;
}

#refreshButton {
  display: inline-block;
}

#refreshButton>i {
  font-size: 15px;
}

#buttons {
  display: inline-block;
  text-align: center;
  margin: auto;
}

span#output {
  text-align: center;
  margin-bottom: 6px;
  color: red;
}

.error-valid {
  color: red;
}