/*============ Google fonts ============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*======= CSS variables =======*/
:root{
  --white-color: #fff;
  --dark-color: #222;
  --body-bg-color: #fff;
  --section-bg-color: #202834;
  --navigation-item-hover-color: #3b5378;

  --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);

  --scroll-bar-color: #fff;
  --scroll-thumb-color: #282f4e;
  --scroll-thumb-hover-color: #454f6b;
}

/*======= Scroll bar =======*/
::-webkit-scrollbar{
  width: 1px;
  background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb{
  width: 100%;
  background: var(--scroll-thumb-color);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover{
  background: var(--scroll-thumb-hover-color);
}

/*======= Main CSS =======*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: var(--body-bg-color);
}

section{
  position: relative;
}

.section{
  color: var(--white-color);
  background: var(--section-bg-color);
  padding: 35px 200px;
  transition: 0.3s ease;
}

/*======= Header =======*/
header{
  z-index: 999;
  position: fixed;
  width: 100%;
  height: calc(5rem + 1rem);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: 0.5s ease;
  transition-property: height, background;
}
header.sticky{
  height: calc(2.5rem + 1rem);
  background: rgb(0, 0, 0);
  /*backdrop-filter: blur(20px);*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*header.sticky{*/
/*  height: calc(2.5rem + 1rem);*/
/*  background: rgba(0, 0, 0, 0.1);*/
/*  backdrop-filter: blur(20px);*/
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

header.sticky .navigation .nav-items a, .page-header.sticky .navigation .nav-items a{
  color: var(--white-color);
}

header .nav-bar{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  transition: 0.3s ease;
}

.nav-close-btn, .nav-menu-btn{
  display: none;
}

.page-header{
    position: relative !important;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    position: fixed !important;
    height: calc(2.5rem + 1rem);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*.page-header.sticky{*/
/*    position: fixed !important;*/
/*    height: calc(2.5rem + 1rem);*/
/*  background: rgba(0, 0, 0, 0.1);*/
/*  backdrop-filter: blur(20px);*/
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

.page-header.sticky{
    position: fixed !important;
    height: calc(2.5rem + 1rem);
  background: rgb(0, 0, 0);
  /*backdrop-filter: blur(20px);*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header .navigation .nav-items a{
  color: var(--dark-color);
}

header .navigation .nav-items a, .navbar a{
  color: var(--white-color);
  font-size: 1em;
  text-decoration: none;
  text-shadow: var(--text-shadow);
  padding: 0 .8rem;
}

.navigation .nav-items a i{
  display: inline-block;
}

/*======= Home =======*/
.home{
  min-height: 100vh;
}

/*======= Background slider =======*/
.bg-slider{
  z-index: 777;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.bg-slider .swiper-slide{
  position: relative;
  width: 100%;
  height: 100vh;
  display:inline-block;
  background: -moz-linear-gradient(top, rgba(0,0,0,0.3) 100%, rgba(0,0,0,0) 0%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.3))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.3) 100%, rgba(0,0,0,0) 0%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0,0,0,0.3) 100%, rgba(0,0,0,0) 0%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0,0,0,0.3) 100%, rgba(0,0,0,0) 0%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 100%, rgba(0,0,0,0) 0%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}

.bg-slider .swiper-slide img{
  width: 100%;
    height: 100vh;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    position: relative;
}

.swiper-slide .text-content{
  position: absolute;
  top: 25%;
  color: var(--white-color);
  margin: 0 200px;
  transition: 0.3s ease;
  z-index: 3 !important;
}

.swiper-slide .text-content .title{
  position: relative;
  font-size: 4em;
  font-weight: 700;
  text-shadow: var(--text-shadow);
  margin-bottom: 20px;
  transform: translateY(-50px);
  opacity: 0;
  color: #fff !important;
  z-index: 3 !important;
}

.swiper-slide-active .text-content .title{
  transform: translateY(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
  z-index: 3 !important;
}

.swiper-slide .text-content .title span{
  font-size: 0.3em;
  font-weight: 300;
  z-index: 3 !important;
}

.swiper-slide .text-content p{
  max-width: 700px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-shadow: var(--text-shadow);
  padding: 20px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
  transform: translateX(-80px);
  opacity: 0;
}

.sj-welcomegreeting{
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 4px;
}

.swiper-slide-active .text-content p{
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn{
  border: none;
  outline: none;
  background: var(--white-color);
  color: var(--dark-color);
  font-size: 1em;
  font-weight: 500;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  border-radius: 10px;
  cursor: pointer;
  transform: translateX(50px);
  opacity: 0;
}

.swiper-slide-active .text-content .read-btn{
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i{
  font-size: 1.6em;
  transition: 0.3s ease;
}

.swiper-slide .text-content .read-btn:hover i{
  transform: translateX(5px);
}

.dark-layer:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.bg-slider-thumbs{
  z-index: 777;
  position: absolute;
  bottom: 5em;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.thumbs-container{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 3px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
}

.thumbs-container img{
  width: 50px;
  height: 35px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.swiper-slide-thumb-active{
  border: 1px solid var(--white-color);
}

/*======= Media icons =======*/
.media-icons{
  z-index: 999;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 90px;
}

.media-icons a{
  color: var(--white-color);
  font-size: 1.7em;
  margin: 10px 0;
}

/*======= About section =======*/
.about h2{
  font-size: 3em;
  font-weight: 600;
}

.about p{
  margin: 25px 0;
}

/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px){
  header .nav-bar{
    padding: 0 50px;
  }

  .section{
    padding: 25px 50px;
  }

  .media-icons{
    right: 0;
    margin-right: 50px;
  }

  .swiper-slide .text-content{
    margin: 0 120px 0 50px;
    top: 15% !important;
  }
}

/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width: 785px){
  header .nav-bar{
    padding: 25px 20px;
  }

  .section{
    padding: 25px 20px;
  }

  .media-icons{
    margin-right: 20px;
  }

  .media-icons a{
    font-size: 1.5em;
  }

  .swiper-slide .text-content{
    margin: 0 70px 0 20px;
  }

  .swiper-slide .text-content .title{
    font-size: 2.6em;
  }

  .swiper-slide .text-content .title span{
    font-size: 0.35em;
  }

  .swiper-slide .text-content p{
    font-size: 0.9em;
  }

  /*======= Navigation menu =======*/
  .nav-menu-btn{
    display: block;
    /*color: var(--dark-color);*/
    color: var(--white-color);
    font-size: 1.5em;
    cursor: pointer;
  }

  .nav-close-btn{
    display: block;
    color: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3em;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 999999999;
  }

  .navigation{
    z-index: 999999999999999999999999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
  }

  .navigation.active{
    visibility: visible;
    opacity: 1;
  }

  .navigation .nav-items{
    position: relative;
    background: var(--white-color);
    width: 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow);
    transform: translateY(-200px);
    transition: 0.3s ease;
    height: 100%;
    overflow-y: scroll;
  }
  
  .nestlist{
      position: relative !important;
      top: 0 !important;
  }
  
  .nav-items .navbar{
      flex-direction: column !important;
      justify-content: flex-start !important;
      align-items: flex-start !important;
  }

  .navigation.active .nav-items{
    transform: translateY(0);
  }

  .navigation .nav-items a{
    color: var(--dark-color) !important;
    font-size: 1em;
    margin: 7px 0px;
    transition: 0.3s ease;
  }
  
  .navbar > li:first-child > a{
      padding-top: 3rem !important;
      padding-bottom: 0 !important;
  }
  
  .nav-items .navbar > li:last-child{
      margin-left: 0 !important;
  }

  .navigation .nav-items a:hover{
    color: var(--navigation-item-hover-color);
  }

  .navigation .nav-items > a > i{
    display: inline-block;
    font-size: 1.3em;
    margin-right: 5px;
  }

  .swiper-slide .text-content .read-btn{
    font-size: 0.9em;
    padding: 5px 15px;
  }

  /*======= About section =======*/
  .about h2{
    font-size: 2.5em;
  }

  .about p{
    font-size: 0.9em;
  }
}

footer p{
    padding:0;
    font-size: 0.8em;
    margin: 1em 0;
    font-size: 0.76rem;
}
footer ul{
    list-style: none;
    display: flex;
    margin: 1em 0; 
}
footer ul li a{
    padding: 1em; 
    text-decoration: none;
    transition: 100ms;
}
footer ul li a:hover{
    color: var(--primary);
}

footer{
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
    padding: 2em; 
    font-size: 1rem;
    background: rgb(0,0,0);
}

footer .row{
    width: 90% !important;
    margin: auto;
}

.sj-footercolumns{
    padding: 30px 0 !important;
}

.sj-fcol .sj-logo{
    margin: 0 !important;
}
#tothetop {
	 position: fixed;
	 right: 50px;
	 bottom: 50px;
	 z-index: 999;
}

#tothetop i {
	 position: relative;
	 left: 18px;
	 top: 17px;
	 color: #ccc;
	 transition: 100ms all linear;
}
 canvas {
	 display: block;
	 position: absolute;
	 top: 0;
	 left: 0;
}
 .rotate90 {
	 color: #22BC22 !important;
	 -webkit-transform: rotate(180deg);
	 transform: rotate(180deg);
}


/*Tabs*/
 .tab__container {
	 background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
	 margin: 10rem auto;
	 border-radius: 5px;
	 padding: 30px 30px 0px;
	 max-width: 1200px;
	 width: 40%;
	 box-shadow: var(--box-shadow);
}

@media screen and (max-width: 800px){
    .tab__container {
        width: 90% !important;
    }
}
 .tab__title {
	 margin: 25px 0 0;
	 width: 100%;
}
 .tab__title .tab__button:first-of-type {
	 margin: 0;
}
 .tab__title .tab__button {
	 padding: 15px;
	 outline: none;
	 margin: 0 -5px;
	 cursor: pointer;
	 width: 50%;
	 background: transparent !important;
}
 .tab__title .tab__button img {
	 height: 25px;
	 display: block;
	 margin: 0px auto 5px;
	 -webkit-filter: grayscale(100%);
	 filter: grayscale(100%);
	 transition: filter 0.3s ease;
}
 .tab__title .tab_button-active {
	 border-bottom: none;
	 background: rgba(0, 0, 0, 0.1) !important;
     backdrop-filter: blur(40px);
}
 .tab__title .tab_button-active img {
	 filter: none;
}
 .tab__inside {
	 display: grid;
	 grid-template-columns: repeat(1, 1fr);
	 row-gap: 4rem;
	 visibility: hidden;
	 opacity: 0;
	 height: 0;
	 transform: translateY(10px);
	 transition: transform 0.3s ease-in;
	 padding: 10px 0;
}
 .tab__inside .tab__inside-img {
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-content: center;
}
 .tab__inside .tab__inside-img img {
	 height: 150px;
	 display: block;
	 margin: 0 auto;
}
 .tab__inside .tab__inside-text {
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-content: center;
}
 .tab__inside .tab__inside-text p {
	 color: #545454;
	 font-size: 14px;
	 font-weight: 100;
}
 
 .tab__inside-active {
	 visibility: visible;
	 opacity: 1;
	 height: 100%;
	 transform: translateY(0);
	 transition: transform 0.3s ease-out 0.1s, opacity 0.3s ease-out 0.1s;
	 padding: 40px 0;
}

.sj-widgetheading{
    background: #0af01514 !important;
}
.sj-btnview, .sj-copyrights span, .sj-forgorpass, .sj-radio input[type=radio]:checked + label, .sj-checkbox a{
    color: #22BC22 !important;
}
.sj-btn, .sj-btn:before{
    background-color: #22BC22 !important;
}

.sj-widgetcontent ul li a{
    line-height: 24px;
}
.courses-container{
    margin: 6rem 0;
}

.course-container-2{
    margin: 0 !important;
}

.sj-borderheading-2{
    margin: 0 !important;
}
/*.course {*/
/*	background-color: #fff;*/
/*	border-radius: 10px;*/
/*	box-shadow: 0 5px 25px rgba(0,0,0,0.05);*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	max-width: 100%;*/
/*	overflow: hidden;*/
/*	width: 100%;*/
/*	margin: 2rem 0;*/
/*}*/

.course{
    background-color: #fff;
    box-shadow: 0 5px 25px rgb(0 0 0 / 2%);
    display: flex;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    margin: 2rem 0;
    height: 250px;
}

.course-2{
    height: auto !important;
    margin: 0 !important;
}

.btn-outlined{
    padding: 0.5em 0.75rem;
    border: 1px solid green;
    border-radius: 5px;
    transition: .2s ease-in-out;
    position: absolute;
    bottom: 1em !important;
}

.course-2 .btn-outlined{
    position: unset !important;
}

@media screen and (max-width: 600px){
    .course{
        flex-direction: column !important;
    }
    
    .course-preview{
        width: 100% !important;
        height: 100px;
    }
    
    .course-info{
        padding: 5px 2px !important;
    }
    
    .btn-outlined{
        position: unset !important;
    }
}

.course-info-2{
    padding: 12px 2px !important;
}
.course-preview img{
    height: 100% !important;
    width: 100%;
}

.course h6 {
	opacity: 0.6;
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.course h2 {
	letter-spacing: 1px;
	margin: 10px 0;
}

.course-preview {
	color: #fff;
	width: 60%;
}

.course-preview a {
	color: #fff;
	display: inline-block;
	font-size: 12px;
	opacity: 0.6;
	margin-top: 30px;
	text-decoration: none;
}


.courseBorderLine:nth-child(even) {
    border-left: 1px solid rgba(0,0,0,0.2);
}

.courseBorderLine{
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 1em;
}

.btn-outlined:hover{
    color: #fff;
    background: green;
}

.course-info {
	padding: 30px;
	position: relative;
	width: 100%;
}

.progress-container {
	position: absolute;
	top: 30px;
	right: 30px;
	text-align: right;
	width: 150px;
}

.progress {
	background-color: #ddd;
	border-radius: 3px;
	height: 5px;
	width: 100%;
}

.progress::after {
	border-radius: 3px;
	background-color: #2A265F;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 66%;
}

.progress-text {
	font-size: 10px;
	opacity: 0.6;
	letter-spacing: 1px;
}

.content {
	 dispay: grid;
	 width: 100%;
	 margin: 0 auto;
	 font-size: 16px;
	 font-weight: 300;
	 line-height: 1.8em;
}
 .content .poster {
	 width: 100%;
	 height: 350px;
	 display: grid;
	 border-radius: 10px;
	 margin-top: 40px;
	 overflow: hidden;
	 position: relative;
	 box-shadow: 0px 4px 100px -3px #000597 33;
}
 .content .poster .poster-title {
	 position: absolute;
	 bottom: 40px;
	 left: 40px;
	 width: 40%;
}
 .content .poster .poster-title h1 {
	 font-size: 40px;
	 color: white;
	 font-weight: 300;
	 margin: 20px 0;
}
 .content .poster .poster-title .line {
	 background-color: #b4c4c5;
	 width: 100%;
	 height: 1px;
}
 .content .poster .poster-title p {
	 color: #b4c4c5;
	 font-size: 12px;
	 line-height: 1.8em;
}
 .content .poster .poster-buttons {
	 position: absolute;
	 bottom: 20px;
	 right: 20px;
	 width: 100px;
	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 color: white;
	 text-align: center;
}
 .content .poster .poster-buttons div {
	 cursor: pointer;
}
 .content .poster .poster-buttons div:hover {
	 color: #ccc;
}
 
 .info {
	 border-radius: 10px;
	 border: 1px solid #e9e9f6;
	 padding: 20px;
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 margin: 40px auto;
	 background-color: #fdfdfd;
	 overflow: hidden;
	 height: 60px;
}
 .info .block {
	 text-align: center;
	 font-size: 22px;
	 font-weight: 300;
	 color: #242e47;
}
 .info .block .mini-title {
	 font-size: 12px;
	 color: #999;
	 font-weight: 700;
}
 .words {
	 position: relative;
	 text-align: justify;
	 padding-top: 2rem;
}
 .words p {
	 margin: 20px auto;
	 position: relative;
	 color: #777;
	 line-height: 34px;
}
 .words p .buttons {
	 position: absolute;
	 right: 10px;
	 width: 40px;
	 height: 100px;
	 background-color: #777;
}
 .words p .letter {
	 font-size: 100px;
	 position: absolute;
	 top: 15px;
	 left: -45px;
	 color: #8787870f;
	 font-weight: 700;
}
 .words .buttons {
	 position: absolute;
	 opacity: 0;
	 top: 0px;
	 right: -30px;
	 font-size: 20px;
	 transition: all 0.3s linear;
	 cursor: pointer;
}
 .words:hover .buttons {
	 opacity: 1;
}
 .quote {
	 position: relative;
	 padding: 40px 40px 40px 45px;
	 background-color: #fdfdfd;
	 border-radius: 10px;
	 min-height: 140px;
	 font-size: 22px;
	 line-height: 1.5em;
	 font-family: "Times New Roman", Times, serif;
	 color: #777;
}
 .quote .letter {
	 font-size: 150px;
	 position: absolute;
	 top: 50px;
	 color: #ebebeb;
}
 .quote .author {
	 font-size: 12px;
}
 .quote .author::before {
	 content: '';
	 width: 40px;
	 height: 1px;
}
 @media (max-width: 700px) {
	 .content {
		 width: 90%;
	}
	 .info {
		 grid-template-columns: repeat(2, 1fr);
		 height: 120px;
	}
	 .content .poster {
		 height: 250px;
	}
	 .content .poster .poster-title h1 {
		 font-size: 25px;
	}
	 .content .poster .poster-title p, .content .poster .poster-title .line {
		 display: none;
	}
	 .quote {
		 font-size: 16px;
	}
	 .quote .letter {
		 left: 0px;
	}
}

.navbar li a i{
    display: inline-block !important;
}

.nestlist span{
    padding-left: 1rem;
}

.navbar > li:first-child > a {
    padding-top: 18px;
    padding-bottom: 17px;
}

.navbar > li:last-child  {
    margin-right: 0;
    margin-left: auto;
}

.navbar li:hover,
.nestlist li:hover {
    background: var(--hover-color);
    color: #22BC22;
}

/**:focus-within > .nestlist {*/
/*    display: flex;*/
/*}*/

.nestlist {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    text-align: left;
    padding-left: 0;
     min-width: 20rem;
     display:none;
     top: 75%;
     box-shadow: var(--box-shadow);
     right: 0.5em;
}

li {
    float: left;
    list-style-type: none;
    color: darkslategrey;
    
}

li i.fa-caret-right {
    position: absolute;
    right: 5%;
}


li a {
    display: block;
    font-size: 1em;
    padding: 14px 16px;
    text-decoration: none !important;
}

.nestlist li a{
    padding: 5px 16px !important;
}

.nestlist li a {
    text-align: left;
    color: var(--dark-color) !important;
}

.nestlist li {

    border-bottom: rgba(0,0,0,0.05) 1px solid;
    position:relative;

}

.nestlist.inner{
    left: 103%;
    top:0;
}

/*.nestlist::before{*/
/*    content: "";*/
/*    display: block;*/
/*    width:0;*/
/*    height: 0;*/
/*    left: 10%;*/
/*    right:0;*/
/*    position: absolute;*/
/*    border-left: 5px solid transparent;*/
/*    border-right: 5px solid transparent;*/
/*    border-bottom: 5px solid var(--bg-color);*/
/*}*/

.nestlist.inner::before {
    top: 8%;
    left: -2%;
    border-left: none;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid var(--bg-color);
}

#toast-container > div{
    width: 100% !important;
}

.sj-dashboardnav > ul > li{
    border-bottom: 0 !important;
}

.sj-widgetbox {
    border-radius: 6px;
    -webkit-box-shadow: none !important; 
    box-shadow: none !important;
    margin: 4rem 0 !important;
}

.sj-widgetprofile{
    border-bottom: 0 !important;
}

.sj-content{
    margin: 2.5rem 0 !important;
}

.sj-content .sj-addarticleholdcontent{
    margin: 5px 0 !important;
}

.sj-addarticleholdcontent{
    margin: 2.5rem 0 !important;
}

.sj-addarticleholdcontent{
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.sj-addarticleholdcontent .sj-dashboardboxtitle{
    padding: 15px 30px !important;
     background: transparent !important; 
     border-bottom: none !important;
}

.jf-addcourse .jf-bannercontent .jf-description p{
    font: inherit !important;
}

.sj-allcategorys{
    border-radius: 5px;
}

.sj-allcategorys > li{
    padding: 10px 30px !important;
}

.sj-allcategorys > li a{
    padding: 3px !important;
}

.sj-updatebtns{
    background: transparent !important;
}

.sj-popupbtn{
    background: transparent !important;
    border-top: 0 !important;
}

.sj-categorysrightarea .sj-btn{
    font-size: 10px !important;
    background-color: transparent !important;
    color: #5e9cea !important;
}

.sj-categorysrightarea .sj-btn:before{
    background: transparent !important;
    background-color: transparent !important;
}

.sj-detailstime h4{
    line-height: 30px !important;
}

.sj-dashboardnav > ul > li > a:before, .sj-articledetails li:before, .sj-btnsearch{
    background-color: #22BC22 !important;
}

.sj-nameandmail{
    background-color: #22BC22 !important;
}

.sj-nameandmail span, .sj-nameandmail h4{
    color: #fff !important;
}

.sj-allcategorys > li{
    border-top: 1px solid rgba(0,0,0,0.05) !important;
}

.sj-allcategorys li.sj-addcategorys{
    background: transparent !important;
}

.sj-collapsehold{
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.sj-navdashboard-footer span{
    font-size: 10px !important;
}

.sj-allcategorys{
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.sj-logo a img {
    width: 50px !important;
    height: auto;
}

.sj-allcategorys > li .sj-title h3, .sj-addarticleholdcontent .sj-dashboardboxtitle h2{
    font-size: 14px !important;
}

.sj-pagination ul li a{
    padding: 0 !important;
}

.sj-fcol .sj-logo{
    padding: 0 !important;
}

.sj-fcol.sj-footeraboutus ul{
    margin: 0 !important;
}

.btn-secondary {
    color: #fff;
    background-color: #22BC22 !important;
    border-color: #22BC22 !important;
}

.article__user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  position: relative;
  margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.user__info {
  display: flex;
}

.user__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user__img {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.user__name{
    line-height: 1 !important;
    margin: 0 !important;
}

.user__date {
  margin-top: 0.2em;
  color: var(--Grayish-Blue);
}

.share-icon {
  cursor: pointer;
  display: grid;
  place-items: center;
  background-color: var(--Light-Grayish-Blue);
  color: var(--Desaturated-Dark-Blue);
  font-size: 1rem;
}

.share-icon:hover {
  opacity: 0.75;
}

.course p{
    /*padding-top: 1rem;*/
    margin: 7px 2px !important;
}


.sj-sectionspace{
    padding: 40px 0 !important;
}

.sj-btn{
    line-height: 30px;
    font-size: .8rem !important;
}

#public_publish_articles .sj-content{
    margin: 0 !important;
}

#public_publish_articles .sj-content .sj-articles.sj-formsortitems{
    padding: 0 !important;
}

.sj-welcomeimg img{
    width: 100% !important;
}

.active-nestlist{
    display: flex;
}

@media screen and (min-width: 990px){
    .sj-asidebar-close-btn{
        display: none;
    }
    
    .sj-asidebar-btn{
        display: none;
    }
}
@media screen and (max-width: 990px){
    .sj-asidebar-btn{
        display: block;
        margin-top: 5rem !important;
    }
    
    .sj-asidebar.sj-widgetbox{
        position: fixed;
        top: -2.5rem;
        left: -100%;
        z-index: 9999;
        max-height: 100%;
        overflow: scroll;
        background: #fff;
        transition: .2s ease-in;
    }
    
    .sj-asidebar-active{
        left: 0 !important;
    }
    
    .sj-asidebar-close-btn{
        display: block;
        position: absolute;
        right: 5px;
        top: 5px;
        font-size: 12px;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 5px;
        color: #000;
        padding: 0 5px;
    }
}

#article, .sj-sidebar{
    margin: 5em 0;
}

.sj-profilecomplete li{
    border: none !important;
}

.sj-profilestrenght{
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.sj-content-2{
    margin: 1em 0 !important;
}

@media screen and (max-width: 770px){
    .sj-widgetcontent{
        margin-bottom: 4rem !important;
    }
}

.sj-footeraboutus {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media screen and (max-width: 770px){
    .sj-footeraboutus {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
    }
    
    .sj-logo a, .sj-logo a img {
        display: block;
        margin: auto;
    }
}

.sj-footeraboutus .sj-socialiconssimple {
     padding: 0 !important; 
    text-align: center;
}

[class^=uil-]:before, [class*=" uil-"]:before{
    font-weight: 800 !important;
}

.show-on-mobile{
    display: none !important;   
}

@media screen and (max-width: 770px){
    .show-on-mobile{
        display: block !important;   
    }
    
    .show-on-mobile-grid{
        /*display: grid;*/
        display: inline-block;
        /*grid-template-columns: repeat(2, 2fr);*/
    }
    
    .show-on-mobile-grid a{
        /*color: #fff !important;*/
        /*font-size: 0.7rem !important;*/
        /*text-align: right;*/
        /*gap: 1.4rem;*/
        /*padding-right: 0.3rem;*/
        color: #fff !important;
        font-size: 0.8rem !important;
        padding-right: 0.3rem;
        font-weight: bold;
    }
}
