:root{
  --bc_main: #ffc451; /*b51c1c*/
  --bc_main_hover: #ffd584; /*cf2020*/
  --bc_main_active: #bc903c; /*851414*/
  --bc_border_active: #654d1e; /*6e1212*/
  --bc_secondary: #151515;
  --bc_accent: #fff;
  --bc_third: #444444;
  --bc_header_text: #eee;
  --bc_header: #000000cc;
  /*--bc_modal: #3b3b3b;*/
  --bc_grayed_out: #888;
  --bc_contrast_header: #109558;

  /*#e3334a*/
  /*#cdcbc3 -potential background (papyrus)*/
  
  /*--bc_main: #765341;
  --bc_main_hover: #a26f55;
  --bc_main_active: #704833;
  --bc_border_active: #4f3122;*/

  /*--isotope_bakground: #fbfbfa;
  --isotope_border: #f0f0f0;
  --isotope_shadow: #ccc; */

  --isotope_bakground: #2b2b2b;
  --isotope_border: #202020;
  --isotope_shadow: #101010;
  /*#3b3b3f*/

  --panel_border: #151515;
  --panel_background: #3d3d3d;
  --panel_heading: #2b2b2b;

  --navmenubackground: #171717de;

  --errorcolor: #ee0000;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--bc_header_text);
  /*background-color: var(--isotope_bakground);*/
  /*background: radial-gradient(#2b2b2b, #3b3b3f);*/
  background: radial-gradient(#1d1d1d, #3b3b3f);
}

a.bc_link {
  color: var(--bc_main);
  text-decoration: none;
}

a.bc_link:hover{
  color: var(--bc_main_hover);
}

a:hover {
  /*color: var(--bc_main_hover);*/
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Raleway", sans-serif;*/
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--bc_main);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--bc_secondary);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--bc_secondary);
}

.back-to-top:hover i {
  color: var(--bc_main);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bc_secondary);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid var(--bc_main);
  border-top-color: var(--bc_secondary);
  border-bottom-color: var(--bc_secondary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  user-select: none;
  min-height: 70px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--bc_header);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--bc_accent);
}

#header .logo a span {
  color: var(--bc_main);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: var(--bc_accent);
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--bc_main);
  cursor: pointer;
}

.get-started-btn:hover {
  background: var(--bc_main);
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: unset;
  margin-bottom: 0px;
}

.navbar ul.navlist {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  align-items: flex-start;
  justify-content: flex-start;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.navbar li {
  /*position: relative;*/
}

.navbar a.nav-link,
.navbar a.nav-link:focus,
.navbar a.nav-link:not([href]):not([class]) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bc_accent);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a.nav-link i,
.navbar a.nav-link:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a.nav-link:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.navbar a.nav-link:not([href]):not([class]):hover {
  color: var(--bc_main);
  cursor: pointer;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--bc_accent);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: var(--bc_secondary);
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: var(--bc_main);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--bc_accent);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  #navbar {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  display: flex !important;
  top: 70px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 15px;
  left: 0;
  padding: 10px 0;
  background-color: var(--navmenubackground);
  overflow-y: auto;
  transition: 0.3s;
  justify-content: space-around;
  flex-direction: column;
}
.navbar-mobile ul .navdropdown{
  position: relative;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--bc_secondary);
}

/*.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--bc_secondary);
  background-color: var(--bc_main);
}*/

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--bc_accent);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: var(--bc_secondary);
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: var(--bc_main);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: var(--bc_accent);
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--bc_main);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--bc_main);
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: var(--bc_accent);
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: var(--bc_main);
}

#hero .icon-box:hover {
  border-color: var(--bc_main);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--bc_main_hover);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--bc_secondary);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--bc_main);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bc_accent);
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bc_main);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--bc_main);
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--bc_accent);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--bc_main);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: var(--bc_secondary);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: var(--bc_secondary);
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: var(--bc_main);
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: var(--bc_accent);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: var(--bc_accent);
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: var(--bc_accent);
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid var(--bc_accent);
  color: var(--bc_accent);
}

.cta .cta-btn:hover {
  background: var(--bc_main);
  border-color: var(--bc_main);
  color: var(--bc_secondary);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--bc_third);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--bc_secondary);
  background: var(--bc_main);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--bc_accent);
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--bc_accent);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--bc_main);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bc_accent);
  opacity: 1;
  border: 1px solid var(--bc_main);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bc_main);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--bc_secondary);
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: var(--bc_main);
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: var(--bc_secondary);
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--bc_accent);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--bc_accent);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bc_main);
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: var(--bc_accent);
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bc_accent);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: var(--bc_secondary);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: var(--bc_secondary);
  background: var(--bc_main);
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--bc_secondary);
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  /*background: var(--isotope_border);*/
}

.contact .info i {
  font-size: 20px;
  background: var(--bc_main);
  color: var(--bc_secondary);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--bc_secondary);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: var(--bc_accent);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--bc_accent);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--bc_accent);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--bc_accent);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--bc_main);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--bc_main);
  border: 0;
  padding: 10px 24px;
  color: var(--bc_secondary);
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--bc_main_hover);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: var(--bc_accent);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--bc_secondary);
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: var(--bc_main);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--bc_accent);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: var(--bc_accent);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--bc_main);
  color: var(--bc_secondary);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--bc_accent);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--bc_main);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--bc_accent);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--bc_main);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--bc_accent);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--bc_main);
  color: var(--bc_secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--bc_main_hover);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--bc_accent);
}

.modalbackground{
    position: fixed;
    top:0;
    bottom:0;
    width:100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1001;
    cursor: pointer;
    overflow: auto;
    color: var(--bc_header);
}
.sidemodalbackground{
  top: 80px;
  z-index: 101;
}
.hidden{
    display: none;
}
.skbmodal{
    background:white;
    border-radius: 5px;
    width: 50%;
    min-width: 300px;
    max-width: 715px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 5%;
    padding: 30px;
    cursor: auto;
}
.skbButton{
    color:white;
    background-color: #337ab7;
    border-color: #2e6da4;
    padding:5px;
    border-radius:5px;
    font-weight: normal;
}
.skbButton:hover{
    background-color: #286090;
    border-color: #204d74;
}
.skbButton:active:hover{
    color: var(--bc_accent);
    background-color: #204d74;
    border-color: #122b40;
}
.modal-content {
  color: var(--bc_header);
}
#modalcontainer{
  padding-bottom: 10px;
}
.modalclosebutton{
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}
.modalclosebutton:focus, .modalclosebutton:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

.sidebutton{
  position: fixed;
  left: 0;
  top: 49%;
  height: 50px;
  width: 25px;
  background: var(--bc_third);
  color: var(--bc_secondary);
  border-radius: 0 5px 5px 0;
  border: 1px solid var(--bc_grayed_out);
  border-left: none;
  font-size: x-large;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebutton:hover{
  background-color: var(--panel_background);
  color: var(--bc_secondary);
  cursor: pointer;
}

.sidemenu{
  background-color: var(--bc_third);
  width: 300px;
  height: calc(100% - 80px);
  transition: 0.5s ease-in-out;
  cursor: auto;
  position: fixed;
  top: 80px;
  /*padding: 10px;*/
  color: var(--bc_header_text);
  overflow: hidden;
}
.closedsidemenu{
  width: 0;
  padding: 0;
}
.sidemenu-inner{
  width: 300px;
  padding: 10px;
}

.menuclosebtn{
  float: right;
  padding: 5px;
  font-size: 25px;
  cursor: pointer;
  color: var(--panel_heading);
}
.menuclosebtn:hover{
  color: var(--bc_main);
}
.menuclosebtn:active{
  color: var(--bc_main_active);
}
label{
  font-weight: 500;
  user-select: none;
  cursor: pointer;
}

.logincontainer{
    min-height: 250px;
    padding: 20px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.logingui{
    width: 330px;
    min-width: 280px;
    border-radius: 5px;
    background-color: var(--bc_third);
    border: 1px solid #222;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    color: var(--bc_accent);
}
.logingui input{
    width: 240px;
    color: var(--bc_header);
}
.logingui h4{
    color: var(--bc_main);
}
.loginguisub{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
.btn-login{
    padding: 8px 8px;
    font-size: 13px;
    letter-spacing: 2px;
}
.btn-blue{
    color: var(--bc_accent);
    background-color: var(--bc_main);
    border-color: var(--bc_main_hover);
}
.btn-blue:hover, .btn-blue:focus {
    color: var(--bc_accent);
    background-color: var(--bc_main_hover);
    border-color: var(--bc_main_active);
}
.btn-blue:active, .btn-blue:active:hover, .btn-blue:active:focus {
    color: var(--bc_accent);
    background-color: var(--bc_main_active);
    border-color: var(--bc_border_active);
}

.btn-not-main{
    background-color: #e2e2e2;
    border-color: #e2e2e2;
    padding: 8px 8px;
    font-size: 13px;
    letter-spacing: 2px;
}
.btn-not-main:hover, .btn-not-main:focus, .btn-skb:hover, .btn-skb:focus {
    filter: brightness(90%);
}
.btn-not-main:active, .btn-not-main:active:hover, .btn-not-main:active:focus, .btn-skb:active, .btn-skb:active:hover, .btn-skb:active:focus {
    filter: brightness(80%);
}
.btn-red{
    background-color: #e3334a;
    /*color:white;*/
}

#errordiv p{
    color: red;
}
input[type=checkbox], input[type=radio]{
    accent-color: #337ab7;
}

.sessionrow{
    border-top: #dfdfdf 1px solid;
}
.sessionrow td{
    padding: 4px;
}
.sessionrow td i{
    color: gray;
}
.grayed{
    color: #c5c5c5;
}
.dark-grayed{
    color: #999999;
}
.bold{
    font-weight: bold;
}
.clickable{
    user-select: none;
    cursor: pointer;
}
.right{
    float:right;
}
.flexright{
  text-align: right;
  /*padding-left: 30px;*/
}
.flexright.leftmost{
  margin-left: auto;
}

#searchresults{
  padding: 20px 5%;
}
.searchresult {
    border-bottom: 1px solid var(--panel_border); /*#ccc;*/
    border-radius: 5px;
    background-color: var(--panel_background); /*#f1f1f1*/
    padding: 10px;
    margin-bottom: 3px;
    overflow: hidden;
}
.searchresultheader{
  font-weight: 600;
}
.searchresulticon{
  width: 10%;
  float: left;
  padding: 0.2em;
  font-size: 3em;
}
.searchresultdescription{
  width: 90%;
  float: left;
  padding: 0.2em;
}
.searchField{
  color: var(--bc_secondary);
}
#bookselectordropdown{
  width:100%;
  /*width: 60em;
  margin-left: -30em;*/
}
.fullwidthdropdown{
    width: 100%;
    left:0;
    /*overflow: hidden;*/
    transition: all .5s ease-in-out;
}
.type-torah{
    background: #204020;
}
.type-history-gt, .type-history-nt{
    background: #402020;
}
.type-poetic{
    background: #404020;
}
.type-prophets-greater, .type-prophets-minor, .type-prophets-nt{
    background: #202040;
}
.type-epistles-paul, .type-epistles-common{
    background: #204040;
}

.navmenuitemselector-item.SV{
  background: #202040;
}
.navmenuitemselector-item.NO{
  background: #402020;
}
.navmenuitemselector-item.EN{
  background: #868789;
}
.navmenuitemselector-item.GR{
  background: #395776;
}

.navmenuitemselector{
    padding: 15px;
}
.navmenuitemselector-item.selected{
  outline: 1px solid red;
}
.navmenuitemselector-book,.navmenuitemselector-item{
    display: inline-block;
    width: 60px;
    height:50px;
    border: 1px solid rgba(77, 74, 74, 0.53);
    border-radius: 4px;
    padding: 4px;
    margin-right:10px;
    margin-bottom:10px;
    cursor:pointer;
    /*overflow: hidden;*/
    opacity: 1;
    transition: all .5s ease-in-out;
    text-align: center;
}
.navmenuitemselector-book:hover,.navmenuitemselector-item:hover{
    background-color: rgba(77, 74, 74, 0.53);
    transition: all .5s;
}

.navmenuitemselector-chapter, .navmenuitemselector-commentary{
    display: inline-block;
    border: 1px solid rgba(77, 74, 74, 0.53);
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.navmenuitemselector-chapter a, .navmenuitemselector-commentary a{
    display:block;
    width:100%;
    height:100%;
    padding:auto;
    color: var(--bc_header_text);
    padding: 4px;
    text-align: center;
    cursor: pointer;
}

.navmenuitemselector-chapter a{
    width: 36px;
    height: 36px;
}
.navmenuitemselector-commentary{
  width: fit-content;
  /*padding: 8px;*/
}

.navmenuitemselector-commentary a{
  padding: 8px;
}
.navmenuitemselector-chapter a:hover, .navmenuitemselector-commentary a:hover{
    background-color: rgba(77, 74, 74, 0.53);
    transition: all .5s;
    color: var(--bc_header_text);
}
.navmenuitemselector-chapter a:visited, .navmenuitemselector-commentary a:visited{
    color: var(--bc_header_text);
}
.navmenuselector-hidden{
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
    border: none;
}
.navmenuselector-chosen, .navmenuselector-chosen:hover{
    /*cursor:default;*/
    background-color: #202020;
}
.navdropdown{
    z-index: 3000;
    position: absolute;
    color: #eee;
    background-color: #202020;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 0 10px 15px;
    margin-top: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: block;
    min-width: 180px;
    top: 70px;
    float: left;
    margin: 0px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    border-radius: 0px 0px 4px 4px;
    transition: all .5s;
}
.navdropdown.dropdown-closed{
    display:none;
    height:0;
}
.navdropdown .divider {
    height: 1px;
    margin: 9px 5px;
    overflow: hidden;
    background-color: rgba(77, 74, 74, 0.53);
}

.chapterlist{
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    display: inline-block;
    transition: all .5s ease-in-out;
}
.verselist{
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    display: inline-block;
    transition: all .5s ease-in-out;
}
.navmenuselector-extended{
    width: auto;
    height: auto;
    display: block;
}
.extended-full{
    opacity: 1;
}
#resetbutton{
    
}
#resetbutton:hover{
    cursor: pointer;
    color: #fff;
}

.mobilenavextender{
    padding: 6px 10px;
    margin-top: 8px;
    margin-left: 10px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #333;
}
.mobilenavextender, .mobilenavextender > *{
    transition: all ease-in-out .5s;
}
.show-midscreen{
    display:none;
}

.portfolio-items,
.portfolio-filter {
    list-style: none;
    padding: 0;
    margin: 0 -20px 20px 0;
}

.portfolio-filter > li {
    display: inline-block;
}

.portfolio-filter > li a.active {
    color: #FFF;
    background: var(--bc_main_hover);
    border: 2px solid var(--bc_main_hover);
}

.portfolio-items > li {
    float: left;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portfolio-items.col-2 > li {
    width: 50%;
}

.portfolio-items.col-3 > li {
    width: 33%;
}

.portfolio-items.col-4 > li {
    width: 25%;
}

.portfolio-items.col-5 > li {
    width: 20%;
}

.portfolio-items.col-6 > li {
    width: 16%;
}

.portfolio-item {
    padding: 0;
    margin: 0;
	width: 230px;
}

.portfolio-item .item-inner {
    /*background: #fff;*/
    padding: 0;
    margin: 0 20px 20px 0;
    position: relative;
    box-shadow: 0px 0px 3px var(--isotope_shadow);
}

.portfolio-image {
    width: 100%;
	height: 130px;
}

.portfolio-item .underImage {
	height: 120px;
    background: var(--isotope_bakground);
    margin: 0;
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    /*white-space: nowrap; */
    text-overflow: ellipsis;
    position: relative;
    border-bottom: 4px solid var(--isotope_border);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


.portfolio-item:hover .underImage,
.team-member:hover .team-content,
.post:hover .content {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-bottom: 4px solid var(--bc_main);
}

.portfolio-item .underImage:after {
    bottom: 99%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: var(--isotope_bakground);
    border-width: 15px;
    margin-left: -15px;
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    vertical-align: middle;
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

.portfolio-item .overlay .preview {
    position: relative;
    top: 50%;
    display: inline-block;
    margin-top: -20px;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-filter.right li{
  margin: 0 0 4px 4px;
}
.portfolio-filter.left li{
  margin: 0 4px 4px 0;
}

.portfolio-link, .portfolio-link:visited{
  color: var(--bc_main);
}
.portfolio-link:hover, .item-inner:hover .portfolio-link{
  color: var(--bc_main);
}

.portfolio-description{
    height: 95px;
    overflow: hidden;
}

/* Start: Recommended Isotope styles */


/**** Isotope Filtering ****/

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}


/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: .8s;
    -moz-transition-duration: .8s;
    -ms-transition-duration: .8s;
    -o-transition-duration: .8s;
    transition-duration: .8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: 0 opacity;
    -moz-transition-property: 0 opacity;
    -ms-transition-property: 0 opacity;
    -o-transition-property: 0 opacity;
    transition-property: transform, opacity;
}


/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
}

.isotope.infinite-scrolling {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.project-controls {
    position: absolute;
    bottom: 0;
    left: 0;
}

.project-controls span {
    position: relative;
    bottom: 70px;
    font-size: 60px;
    display: block;
}

.project-controls span:hover {
    cursor: pointer;
}

div.pp_overlay {
    z-index: 9999 !important;
}

.btn-outlined {
    border-radius: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none !important;
}

.btn-outlined.btn-primary {
    background: none;
    border: 2px solid var(--bc_main);
    color: var(--bc_main);
}

.btn-outlined.btn-primary:hover,
.btn-outlined.btn-primary:active,
.btn-outlined.btn-primary.active.focus, 
.btn-outlined.btn-primary.active:focus, 
.btn-outlined.btn-primary.active:hover, 
.btn-outlined.btn-primary:active.focus, 
.btn-outlined.btn-primary:active:focus, 
.btn-outlined.btn-primary:active:hover {
    color: #FFF;
    background: var(--bc_main_hover);
    border-color: var(--bc_main_hover);
    outline: none;
}

a:focus{
  outline: none;
  text-decoration: none;
}

#daily-events{
  margin-top: 100px;
  color: var(--bc_header_text);
}

.panel{
  color: var(--bc_header_text);
  background-color: var(--panel_background);
}

.panel-default>.panel-heading {
  background-color: var(--panel_heading);
  border-color: var(--panel_border);
  color: var(--bc_header_text);
}

.panel-default {
  border-color: var(--panel_border);
}

.portfolio-icon{
  /*color: var(bc-main);*/
  position: absolute;
  top: 3px;
  left: 5px;
  text-shadow: 0px 0px 4px black;
}
.portfolio-icon-img{
  height: 20px;
  filter: drop-shadow(0px 0px 2px #222);
}

/* search */
#topSearchInput {
	background-color: white;
	width: 100%;
	font-size: 16px; /* Increase font-size */
	border: 1px solid #ddd; /* Add a grey border */
	margin-top: 3px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding-left: 10px;
	/*border-radius: 3px;*/
  height: 30px;
	/*border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;*/
	border-radius: 8px;
    transition: all 0.25s ease-out;
}
#topSearchInput:focus-visible {
    outline:none;
}
#topSearchInput.has-autocomplete{
    border-radius: 8px 8px 0 0;
    transition: all 0s;
}

#searchclear {
    position: absolute;
    right: 33px;
    top: 4px;
    bottom: 0;
    height: 16px;
    margin: auto;
    font-size: 14px;
    cursor: pointer;
    color: #c0c0c0;
}

.ui-autocomplete { 
	position: absolute; 
	cursor: default;
	z-index:10000 !important; 
	width:400px;
	padding: 5px;
    overflow-y: scroll;
    max-height: calc(100% - 41px);
    max-width: calc(100% - 10px);
}

#skbSearch {
    background-position: 10px 12px; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    width: 100%;
    max-width: 400px; /* Full-width */
    font-size: 16px; /* Increase font-size */
    padding: 12px 20px 12px 40px; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    margin-bottom: 12px; /* Add some space below the input */
}

.submitbtn-in-input{
    background-color: transparent;
    border: none;
    position:absolute;
    right: 5px;
    top: 4px;
    padding-block: 1px;
    padding-inline: 6px;
    height: 30px;
}

#autocomplete-list{
    z-index: 10000;
    position: absolute;
    background-color: #f8f8f8;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin-top: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: block;
    min-width: 180px;
    top: 100%;
    float: left;
    margin: 0px 0 0;
    font-size: 17px;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    border-radius: 0px 0px 4px 4px;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 380px;
    /*scrollbar-width: thin;
    scrollbar-color: darkgrey;*/
    text-shadow: none;
}
#autocomplete-list.dropdown-closed{
    display:none;
    height:0;
}
#autocomplete-list::-webkit-scrollbar {
    width: 5px;
    border-radius: 0px 0px 4px 0px;
}
#autocomplete-list::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: #eee;
    border-radius: 0px 0px 4px 0px;
}
#autocomplete-list::-webkit-scrollbar-thumb {
    background-color: darkgrey;
}

#autocomplete-list li a{
    display: block;
    width:100%;
    height:100%;
    padding-left: 5px;
}
#autocomplete-list li a:hover, #autocomplete-list li a:focus{
    color: #222;
    background-color: rgba(0, 0, 0, 0.1);
}
#autocomplete-list li a:focus{
    box-shadow: 5px 0px 0px -2px #cf8931 inset;
}

/*header menu - mobile*/


@media (min-width: 769px) {
  .show-tablet{
    display: none;
  }
}
@media (max-width: 768px) {
  .non-tablet{
    display: none;
  }
}
@media (max-width: 425px) {
  .non-mobile{
    display: none;
  }
}

/*
position: absolute;
display: block;
left: 0;
top: 70px;
flex-direction: column;

background: #000;
bottom: 0;
right: 0;
*/
.navbar {
  border: none;
}

.chevron-link{
    position:absolute;
    top: 120px;
    z-index: 100;
    font-size: 40px;
    color: #ffc451;
    padding: 10px;
}
.left-chevron-link{
    left:10px;
}
.right-chevron-link{
    right:10px;
}
/*@media all and (max-width: 1919px) {
    .chevron-link{
        display:none;
    }
}*/

.page-content{
    min-height:100%;
}

.cookie{
	width: 460px;
    height: 75px;
    background-color: var(--color-Main-Opaque);
    position: fixed;
    bottom: 88px;
    border-radius: 10px;
	left: 5%;
	padding: 10px 20px;
    font-size: 1rem;
    z-index: 1010;
}
.cookieshort{
    display:none;
}
.cookielong{
    display:inline;
}
.modal-cell{
    width:25%;
    float: left;
    padding: 10px;
}

@media only screen and (max-width: 499px) {
    .cookie{
        width: 280px;
        height: 90px;
    }
    .cookielong{
        display:none;
    }
    .cookieshort{
        display:inline;
    }
    .cookie .txt{
        width: 40% !important;
    }
    .filler{
        width:100px;
    }
    .footer-info h3{
        font-size: 20px !important;
    }
    
    /**{
        font-size: 1em !important;
    }*/
    .modal-content {
        width:80% !important;
    }
    .modal-cell{
        width:100%;
        float:none;
    }
}

.cookie .txt{
	float: left;
    width: 65%;
}
.txt p{
	color:var(--color-Text);
}
.cookie .accept {
    background-color: var(--color-Accent);
    color: var(--color-Text) !important;
    border-radius: 32px;
    padding: 3px 23px;
    /* align-self: center; */
    font-size: 19px;
    margin-top: 2.5%;	
    margin-left: 2.5%;

}
.cookie .accept:hover {
	background-color: var(--color-Accent);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
    z-index: 1002;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width:fit-content;
    margin-left: auto;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modalbutton{
    background-color: var(--color-Accent);
    padding: 5px 20px;
    border-radius: 4px;
    color: var(--color-Text);
    border: 2px solid var(--color-Main);
    font-weight: 600;
    font-size: 14px;
}
.rightbutton{
    float:right;
}
.modalcheckbox{
    margin-left:10px;
}
#checkboxescontainer{
    display:none;
    padding-top:20px;
}

.navmenuitem{
    display:inline-block;
}

:root{

    --color-Main: #151515;
    --color-Main-Opaque: rgba(21, 21, 21, 0.9);
    /*accent is for bright accents*/
    --color-Accent: #ffc451;
    /*accent2 is for pale accents*/
    --color-Accent2: #222222;
    --color-Text: #fff;
}
