/*-- Body Reset --*/
body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #616971;
}



.slideshow 
{
	position: relative;
	width: 400px;
	height: 600px;
	transform-style: preserve-3d;
	perspective: 1000px;
}
.slideshow .slide 
{
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: start;
	align-items: start;
	transform: rotateY(270deg);
	transform-style: preserve-3d;
	animation: animate 20s linear infinite;
	animation-delay: calc(var(--i) * 2s);
}
@keyframes animate 
{
	0% 
	{
		transform: rotateY(270deg);
	}
	10%,100% 
	{
		transform: rotateY(90deg);
	}
}
.slideshow .slide img 
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.slideshow .slide h2 
{
	position: relative;
	z-index: 1000;
	color: #ff0000;
	font-size: 10em;
	transform: rotateY(180deg) translateY(100px) translateZ(50px);
	transform-style: preserve-3d;
	backface-visibility: hidden;
	font-weight: 300;
	-webkit-text-stroke: 1px #ff0000;
}
.slideshow .slide h2 span 
{
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 0.5em;
	font-weight: 50;
	transform: translate(0,50%) translateZ(50px);
	backface-visibility: hidden;
}






















.text-justify { /*-- Class Dropped in Bootstrap 5 --*/
  text-align: justify;
}

p {
  font-size: larger;
}

/*-- Jumbotron Class Dropped in Bootstrap 5 --*/
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #731313;
  border-radius: 0;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

/*============= TOP BAR HEADER =============*/

.top-bar {
  background: #731313;
  height: 2.8rem;
  padding: .5rem 0;

}
.top-bar a {

  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

/*============= NAVIGATION =============*/

.navbar-brand img {

   height: 3rem;
}
.navbar {
   
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .1rem;
  box-shadow: 0 .5rem .5rem rgba(0, 0, 0, .1);
  z-index: 1;
}
.nav-item {
  padding: .5rem;
}
.nav-link {
  color: #5b5555!important;
}
.nav-link.active,
.nav-link:hover {
  color: #b02334!important;
}

/*============= CAROUSEL =============*/

#carousel {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, .1);
}
.carousel-inner {
  max-height: 38rem!important;
}

/*---Change Carousel Transition Speed --*/
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: transform 1.2s ease;
}

/*-- Carousel Content --*/
.carousel-caption {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  text-transform: uppercase;
}
.bg-custom {
  background-color: rgba(0, 0, 0, .4);
  color: white;
  border-radius: 1rem;
}
.carousel-caption h1 {
  font-size: 3.8rem;
  text-shadow: .1rem .1rem .3rem rgba(0, 0, 0, 1);
}
.border-primary {
  border-top: .2rem solid #414141!important;
}
.carousel-caption h3 {
  font-size: 2.2rem;
  text-shadow: .1rem .1rem .2rem rgba(0, 0, 0, 1);
}
.btn-lg {
  border-radius: 0;
  text-transform:;
  font-size: 1.5rem;
  border-width: medium;
}
.btn-lgg {
	background-color: #731313;
	border: .05rem solid #414141;
    border-radius: 0;
  
    font-size: 1.5rem;
    border-width: medium;
}
.btn-danger {
  background-color: #731313;
  border: .05rem solid #ffffff;
}
.btn-primary {
  background-color: #731313;
  border: .05rem solid #ffffff;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #731313!important;
  border: .05rem solid #414141!important;
}
.btn-primary.disabled, .btn-primary:disabled { /*-- Contact Form --*/
  color: #ffffff;
  background-color: #731313!important;
  border-color: #414141!important;
}

/*-- Emoji Navbar --*/
.emoji {
  background-image: linear-gradient(to right, #ffffff, #731313);
  min-height: 0!important;
  padding: .4rem 0!important;
}
.emoji .svg-inline--fa {
  margin: 0 auto;
  color: white;
  font-size: 2rem;
}

a {
  color: #616971;
  text-decoration: none;
}
a:hover {
  color: #616971;
}
b {
  color: #b02334;
  text-decoration: none;
}
b:hover {
  color: #414141;
}

.btn-close { /*-- Resize "X" space in success/failure form message --*/
  width: .5em!important;
  height: .7em!important;
  padding: .5em .9em!important;
}

/*============= FOOTER =============*/

footer {
  background-color: #888888;
  padding: 1rem 2rem 3rem;
}
footer img {
  height: 3.5rem;
  margin: 1.5rem auto;
}
footer p, footer a,
.socket a {
  color: white;
  text-decoration: none;
}
ul.social {
  list-style-type: none;
  display: flex;
  max-width: 16rem;
  margin: 0 auto;
  padding: 0;
}
ul.social li {
  margin: 0 auto;
}
footer .svg-inline--fa {
  font-size: 2.3rem;
}
footer .svg-inline--fa:hover {
  color: #414141;
}


/*============= SOCKET =============*/

.socket {
  background-color: #414141;
  border-top: .3rem solid #b02334;
}

/*============= MEDIA QUERIES =============*/

/* Devices under 1199px (xl) */
@media (max-width: 1199.98px) {
  .carousel-caption h1 {
    font-size: 2.8rem;
  }
  .carousel-caption h3 {
    font-size: 1.8rem;
  }
}
/* Devices under 768px (md) */
@media (max-width: 767.98px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption h3 {
    font-size: 1rem;
  }
  .btn-lg {
    font-size: .95rem;
  }
}


/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

/*-- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/*============= UNIVERSAL PARALLAX PLUGIN CSS =============*/
.parallax-container {
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 15px;
  position: relative;
  width: 100%
}
.parallax-container .parallax-content {
  margin: 0 auto;
  width: 100%;
}
.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100
}
.parallax__container .parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%
}