/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

html,
body,
.view {
  height: 100%;
  --bs-green: rgb(0,211,79);
  --bs-yellow: rgb(248,195,37);
  --bs-red: rgb(225,30,38);
  --bs-blue: rgb(0,102,255);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Navigation
--bs-navbar-brand-margin-end
--bs-nav-link-padding-x
--------------------------------------------------------------*/
#navbar4 .nav-link {
 --bs-nav-link-color: var(--bs-secondary-text-emphasis); /* normal */
--bs-nav-link-font-size: var(--bs-navbar-brand-font-size);
--bs-nav-link-padding-y: var(--bs-navbar-brand-padding-y);
}
.navbar-brand:hover, #navbar4 .nav-link:hover{
	color: var(--bs-yellow);
}
.navbar-brand:active, #navbar4 .nav-link:active {
	color: var(--bs-red);
}

@media (min-width: 768px) {
.navbar-brand.abs
    {
        position: absolute;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about {
	padding-top: 60px;
	overflow: hidden;
}
#about h1 i {
	font-weight: bold;
	color: var(--bs-red);
	font-size: larger;
}

#about .nav {
  --bs-nav-link-hover-color: var(--bs-yellow);
  --bs-nav-tabs-link-active-color: var(--bs-blue);
  --bs-link-color: var(--bs-secondary-text-emphasis);
	font-size: larger;
	line-height: 0.9;
}

#about .nav-link:hover{
	font-style: italic;
	font-weight: 600;
	font-variant-caps:small-caps;
}
#about .nav-link.active{
	font-weight: 600;
	font-variant-caps:small-caps;
}

@media (max-width: 768px) {
#logo {
	margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
#about header {
    flex-direction: column;
	justify-content: center;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.bline{
	border-bottom: 1px solid black;
}
@media (max-width: 1400px) {
.bline
    {
        width: 90%;
    }
}
@media (max-width: 1200px) {
.bline
    {
        width: 98%;
    }
}


/*--------------------------------------------------------------
# Box-Shadows
--------------------------------------------------------------*/
.bxshw-1-2{
	box-shadow: -1px 1px 2px var(--bs-tertiary-color);
}
.bxshw-2-5{
	box-shadow: -2px 2px 5px var(--bs-tertiary-color);
}
.fv-sc{
	font-variant:small-caps;
}

/*--------------------------------------------------------------
# Books & Faces
--------------------------------------------------------------*/
.covers img {
	scale: 96%;
	box-shadow: -2px 2px 2px var(--bs-tertiary-color);
}
.faces .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.faces .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq_bg_wrapper{
	background-image: url(../images/vo_booths.jpg);
	height: 200px;
	background-position: center;	/*	center 0	*/
	background-size: cover;
	position: relative;
}

#accordion-1 {
  margin-bottom: 40px;
  --bs-border-radius: 0;
  --bs-border-width: 0;
  --bs-border-style: none;
  --bs-accordion-bg: none;
  --bs-accordion-body-padding-y: none;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: none;
  --bs-accordion-active-color: var(--bs-blue);
}

.accordion-item {
  margin-bottom: 10px;
  box-shadow: -2px 2px 5px var(--bs-tertiary-color);
}

#accordion-1 .accordion-body p {
  padding: 0 1rem 1.25rem 3rem;
  font-size: 1.2rem;
}

.accordion-button:focus {
  font-style: italic;
}

.accordion-button {
  color: var(--bs-secondary-text-emphasis);
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-style: normal;
}

.aro {
  float: right;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out;
}

.collapsed i {
  transform: rotate(0deg);
}

button.accordion-button.collapsed {
  font-style: normal;
}

button.accordion-button.collapsed:hover {
  font-style: italic;
  color: var(--bs-yellow);
}

.accordion-button i {
  line-height: 1.5rem;
}


/*--------------------------------------------------------------
# Credit
--------------------------------------------------------------*/
.credit-1 {
	position: absolute;
	bottom: 0;
	right: 36px;
  	color: var( --bs-body-color);
	font-style: italic;
	font-size: smaller;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  	height: 110px;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 40px;
  z-index: 995;
  background: white;
  color: var(--bs-blue);
  border: 2px solid var(--bs-blue);
  width: 36px;
  height: 36px;
  transition: all 0.4s;
}

.scroll-top:hover {
  background: var(--bs-blue);
  color: var(--bs-yellow);
  border: 2px solid var(--bs-yellow);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

