/*
*
* ==========================================
* NAVBAR
* ==========================================
*
*/
.navbar .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
  transition: .2s ease all;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  transition: .2s ease all;
}

.dropdown-toggle::after {
  border: none;
  content: '\f078';
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  font-size: 0.65rem;
  vertical-align: middle;
  padding-left: 0.1rem;
}

.navbar {
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.navbar .dropdown-avatar{
 margin-right: 10px;	
 position: relative;
 top: -5px;
}

/*
*
* ==========================================
* Owl
* ==========================================
*
*/
.owl-nav-custom {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.owl-nav-custom .owl-nav {
  position: absolute;
  top: calc(50% - 1.75rem);
  left: 2.5rem;
  width: calc(100% - 5rem);
  height: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .owl-nav-custom .owl-nav {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .owl-nav-custom .owl-nav {
    -ms-flex-pack: end;
    justify-content: flex-end;
    top: auto;
    bottom: 1.75rem;
    -webkit-transform: none;
    transform: none;
  }
}

.owl-nav-custom .owl-nav .owl-prev, .owl-nav-custom .owl-nav .owl-next {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 0, 0, 0.5) !important;
  line-height: 3.5rem !important;
  transition: all 0.3s;
  outline: none;
  text-align: center;
  color: #fff;
  position: relative;
}

.owl-nav-custom .owl-nav .owl-prev.disabled, .owl-nav-custom .owl-nav .owl-next.disabled {
  opacity: 0;
  z-index: -1;
}

.owl-nav-custom .owl-nav .owl-prev span, .owl-nav-custom .owl-nav .owl-next span {
  color: #fff;
  font-size: 2.5rem;
}

.owl-nav-custom .owl-nav .owl-prev:hover, .owl-nav-custom .owl-nav .owl-next:hover {
  background: #ff3f3f !important;
}

@media (min-width: 992px) {
  .owl-nav-custom .owl-nav .owl-prev::before, .owl-nav-custom .owl-nav .owl-next::before {
    content: 'Prev';
    width: 5rem;
    height: 3.5rem;
    position: absolute;
    top: 0;
    right: -5rem;
    background: rgba(0, 0, 0, 0.8);
    line-height: 3.3rem;
    transition: all 0.3s;
    text-align: center;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

.owl-nav-custom .owl-nav .owl-prev:hover::before, .owl-nav-custom .owl-nav .owl-next:hover::before {
  -webkit-transform: none;
  transform: none;
}

@media (min-width: 992px) {
  .owl-nav-custom .owl-nav .owl-next::before {
    content: 'Next';
    right: auto;
    left: -5rem;
    -webkit-transform-origin: top right;
    transform-origin: top right;
  }
}

.owl-theme .owl-dots .owl-dot {
  outline: none;
}

.owl-theme .owl-dots .owl-dot span {
  margin: 3px;
  width: 10px;
  height: 10px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #ff3f3f;
}

.owl-carousel .owl-item img {
  width: unset;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 1.5rem;
}

/*
*
* ==========================================
* Hero Slide
* ==========================================
*
*/
.hero-slide, .hero {
  position: relative;
}

.hero-slide::before, .hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  display: block;
}

.hero-slide {
  position: relative;
  min-height: 300px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .hero-slide {
    min-height: auto;
  }
}



/*
*
* ==========================================
* CATEGORY BLOCK
* ==========================================
*
*/
.categories-item {
  position: relative;
  transition: all 0.2s;
}

.categories-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: linear-gradient(45deg, #4E66F8, #614ef8);
  transition: all 0.3s;
  border-radius: 0.25rem;
  opacity: 0;
  z-index: 1;
}

.categories-item .card-body {
  z-index: 2;
}

.categories-item svg {
  color: #4E66F8;
  transition: all 0.3s;
}

.categories-item:hover {
  color: #fff;
}

.categories-item:hover svg {
  color: white;
}

.categories-item:hover::before {
  opacity: 1;
}

.categories-item:hover .categories-item-number {
  color: white;
}

.categories-item .categories-item-number {
  color: #6c757d;
  transition: all 0.2s;
}


.single-banner {
    padding: 100px 0px 200px;
}

.single-banner::before, .single-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  display: block;
}
.single-banner {
    background: url(../img/hero-banner-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}
.single-content {
    text-align: center;
}
.single-content h2 {
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 13px;
}
.single-content .breadcrumb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    padding: 0px;
    margin: 0px;
}
.single-content .breadcrumb li a {
    color: var(--light-white);
    text-shadow: var(--primary-tshadow);
}





.team-block-one .inner-box {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}
.team-block-one .inner-box .pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.team-block-one .inner-box .social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    text-align: center;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #b6b6c2;
    cursor: pointer;
    z-index: 3;
}
.team-block-one .inner-box .image-box {
    position: relative;
    margin: 39px 0px 0px 59px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
}
.team-block-one .inner-box .image-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    transform: scale(0,0);
    opacity: 0.9;
    z-index: 1;
    transition: all 500ms ease;
}
.team-block-one .inner-box .image-box img {
    width: 100%;
    border-radius: 50%;
}
.team-block-one .inner-box .image-box a {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    font-size: 0px;
    color: #fff;
    z-index: 2;
}
.team-block-one .inner-box .lower-content {
    position: relative;
    padding: 24px 30px 32px 30px;
}
.team-block-one .inner-box .lower-content h4 {
    display: block;
}
.team-block-one .inner-box .lower-content h4 a {
    display: inline-block;
    color: #0a267a;
}
.team-block-one .inner-box .lower-content .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #17ab4b;
}
h3.number {
    font-family: 'Sonsie One', cursive;
    font-size: 2rem;
    color: #ea4c89;
}


@media (max-width: 768px) {
}


/* The customcheck */
.customcheck {
    display: block;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	color: rgba(255,255,255,.4);
	

    position: absolute;
    top: 20px;
    right: 25px;
    width: 26px;
    height: 46px;
    line-height: 46px;
}

/* Hide the browser's default checkbox */
.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    background-color: #ea4c89;
    border-radius: 5px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*** 

====================================================================
	Dashboard Section
====================================================================

***/

.dashboard {
 padding: 140px 0px 100px;
 background: #242426;
 text-align: center;
}
.dashboard .dashboard-title {
 font-family: "Poppins", sans-serif;	
 color: #fff;
 font-weight: 200;
 margin-bottom: 0px;
 font-size: 54px;
}
.dashboard .dashboard-subtitle {
 font-family: "Mada", sans-serif;	
 color: rgba(255, 255, 255, 0.9);
 font-size: 18px;
 font-weight: 200;
 margin-top: 0px;
}
@media (max-width: 767px) {
	.dashboard .dashboard-title {
	 font-size: 34px;
	}
}

/* ------------------------------------------------------------------- */
/* Listing Nav Section
---------------------------------------------------------------------- */
.listing-nav {
 box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
 border-top: none;
 position: relative;
 width: 100%;
}
.listing-nav ul {
 display: block;
 float: left;
 margin: 0px;
 padding: 0px;
}
.listing-nav ul li {
 display: inline-block;
 margin: 0px;
 padding: 0px 12px;
}
.listing-nav ul li:first-of-type {
 padding-left: 0px;
}
.listing-nav ul li {
 padding-right: 20px;
}
.listing-nav ul li a {
 font-family: "Poppins", sans-serif;	
 padding: 18px 0px 20px;
 line-height: 1.4;
 display: block;
 color: #777;
 font-weight: 300;
 font-size: 14px;
 letter-spacing: 1.5px;
}
.listing-nav ul li a.active {
 color: #444444;
 font-weight: 600;
}
.listing-nav ul li a:hover {
 text-decoration: none;	
}
.listing-nav ul.nav-right {
 float: right;
}

@media (max-width: 767px) {
	.listing-nav ul li {
	 width: 100%;
	}	
	.listing-nav ul li {
	 padding-left: 0px;
	}	
	.listing-nav ul.nav-right {
	 float: left;
	}
	.listing-nav ul li a {
	 padding: 10px 0px 10px;
	}	
}


/* ------------------------------------------------------------------- */
/* Top Line Section
---------------------------------------------------------------------- */
.top-line{
 margin-top: 50px;
}

.downloads-table {
    margin-bottom: 50px;
}
.downloads-table h2 {
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 30px;
}
.downloads-table table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid 
    #e9e9e9;
    border-collapse: collapse;
    border-spacing: 0;
}
.downloads-table table thead th {
 padding: 14px 0px;	
 font-family: "Poppins", sans-serif;
 line-height: 1.4;
 color: #777;
 font-weight: 300;
 font-size: 14px;
 letter-spacing: 1.5px;
}
.downloads-table table > thead > tr > th, 
.downloads-table table > tbody > tr > th, 
.downloads-table table > tfoot > tr > th, 
.downloads-table table > thead > tr > td, 
.downloads-table table > tbody > tr > td, 
.downloads-table table > tfoot > tr > td {
    border: 1px solid #e9e9e9;
    line-height: 1.42857;
    padding: 14px 24px;
    vertical-align: middle;
    text-align: center;
}
.downloads-table .download-thumb{
    border: 1px solid #e9e9e9;
	width: 270px;
	height: 230px;
}
.downloads-table .download-thumb img {
    border: 1px solid #e9e9e9;
}
.downloads-table .download-name {
 font-family: "Poppins", sans-serif;	
 line-height: 1.4;
 color: #777;
 font-weight: 300;
 font-size: 15px;
}
.downloads-table .download-name a{
 color: #f35f72 !important;	
}
.downloads-table .download-price .item-price{
 font-family: "Poppins", sans-serif;
 display: inline-block;
 font-size: 14px;
 font-weight: 400;
 color: #333333;
 margin-top: 0px;
}
.downloads-table .download-price .item-price span {
 font-family: "Poppins", sans-serif;
 background: #f9f19a;
 font-size: 17px;
 font-weight: 700;
 color: #333333;
 padding: 3px 10px;
 border-radius: 3px;
 margin-left: 10px;
}
.downloads-table .download-download a{
 color: #fff !important;	
}
.downloads-table .download-download a:hover{
 color: #fff !important;	
}



/* ------------------------------------------------------------------- */
/* Top Line form group Section
---------------------------------------------------------------------- */
.top-line .form-group label{
 padding: 14px 0px;	
 font-family: "Poppins", sans-serif;
 line-height: 1.4;
 color: #333;
 font-weight: 300;
 font-size: 18px;
 letter-spacing: 1.5px;
}
.top-line .form-group input[type="text"],
.top-line .form-group input[type="file"],
.top-line .form-group textarea[type="text"] {
 font-family: "Poppins", sans-serif;
 font-size: 14px;
 background:#FFFFFF;
 color: #333333;
 border: 3px solid #ebedf2;
 border-radius: 3px;
}
.top-line .card{
 padding: 20px;	
 border: none !important;	
}
.top-line .card img{
 width:200px; 
 height: 200px;	
}


/* ------------------------------------------------------------------- */
/* Footer Section
---------------------------------------------------------------------- */

.site-footer {
 background: #0e0e0e;
}	
#footer-menu {
 border-top: 1px solid #e3e3e3;
 background: #0e0e0e;
 text-align: center;
}	
#footer-menu ul {
 list-style: none outside none;
 margin: 0;
 padding: 0;
 text-align: center;
}	
#footer-menu ul li {
 margin: 0 15px;
 display: inline;
 font-size: 16px;
}	
#footer-menu ul li a {
 font-family: "Poppins", sans-serif;
 color: #00C4CF;
 font-size: 16px;
 text-decoration: none;
 font-weight: 700;
 padding-bottom: 4px;
 -webkit-font-smoothing: antialiased !important;
}		
.footer-social-icons .social-icons i {
 margin-top: 15px;
}
.footer-social-icons .social-icons i {
 color: #ccc;
 font-size: 25px !important;
 margin-right: 5px;
 -webkit-font-smoothing: antialiased !important;
}	
.footer-social-icons .social-icons i:hover {
 color: #f35f72;
}
.footer-copyright {
 font-family: "Poppins", sans-serif;
 color: #88898a;
 margin-top: 20px;
 font-size: 15px;
}	

#scrollup {
  background: url("../img/arrowup.png") no-repeat 0px 0px;
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 14px;
  right: 3%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: none;
  text-indent: 100%;
  cursor: pointer;
}


/**wizard form by emmanuel **/

/* Style the form */
#regForm {
  /*background-color: #ffffff;
  margin: 100px auto;
  padding: 40px;
  width: 70%;
  min-width: 300px;*/
}

/* Style the input fields */
input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}