body {
  font-family: 'Fira Sans', sans-serif;
}

.navbar .nav-item .nav-link {
  color: #7a7a7a;
  font-weight: 400;
}

.navbar .nav-item .nav-link.active, .navbar .nav-item .nav-link:hover {
  color: #000000;
}

.btnCustom {
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
  background-color: #ffa5a1;
  background-image: linear-gradient(315deg, #ffa5a1 0%, #ed261d 74%);
  border: none;
  z-index: 1;
  text-decoration: none;
}

.btnCustom:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  background-color: #ed261d;
  background-image: linear-gradient(315deg, #ed261d 0%, #ffa5a1 74%);
  box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}

.btnCustom:hover {
  color: #fff;
}

.btnCustom:hover:after {
  top: 0;
  height: 100%;
}

.btnCustom:active {
  top: 2px;
}


/*title*/
.title {
  font-size:26px;
  font-family: "Protest Revolution", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:1px;
  text-transform:uppercase;
  width:fit-content;
  position: relative;
  white-space:nowrap;
  color: #ed261d;
}
.title:before {
    background-color: #000000;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-bottom: 3px;
}
.title:after{
    background-color: #000000;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-left: auto;
	margin-top: 3px;
}
/*title*/

/*hero - homepage*/
section.hero {
    position: relative;
}
section.hero video {
    width: 100%;
    height: calc(100vh - 100px);
    object-fit: cover;
	position: relative;
	z-index: -2;
}
section.hero .contentWrapper {
    position: relative;
    color: #fff;
	background: linear-gradient(to right, #008ad000 , #008ad09c)
}
section.hero .content {
    position: absolute;
    bottom: 100px;
    right: 100px;
}
section.hero .content p{
	font-size: 16px;
    font-weight: 400;
    text-shadow: 2px 0 5px black;
	margin-bottom: 0px;
}

section.hero .facts {
    display: flex;
    font-size: 15px;
}
.certification {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    align-content: center;
    padding: 0.06em 4px 0.15em 4px !important;
    border: 1px solid #fff;
    color: #fff;
    line-height: 1;
    border-radius: 2px;
    margin-right: 7px;
}
.facts span.certification+span {
    padding-left: 0;
}
.facts span+span {
    padding-left: 20px;
    position: relative;
    top: 0;
    left: 0;
}
.facts a {
    color: #fff;
	text-decoration: none;
}
/*hero - homepage*/
/*videos - homepage*/
section.videos {
  overflow: hidden;
  position: relative;
}

.videos video {
  /*height: calc(100vh - 100px) !important;*/
}

.btnHideDoc {
  position: absolute;
  bottom: 121px;
  right: 0px;
  background: #000000b8;
  padding: 8px 12px 16px;
  border-radius: 5px 5px 0px 0px;
}

.btnHideDoc:hover, .btnHideDoc:active, .btnHideDoc:focus {
  background: #000000b8;
  border-color: transparent !important;
}

.btnHideDoc svg {
  transition: transform 0.5s ease-in-out;
}

.btnHideDoc svg.rotate {
  transform: rotate(180deg);
}

/*videos - homepage*/

#dock-container {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  background: #000000b8;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  padding: 15px 0px;
  z-index: 2;
}

#dock-container li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding: 0px 2px;
}

#dock-container li img {
  width: 100px;
  background: #a5a5a5;
  -webkit-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.7, transparent), to(rgba(255, 255, 255, .5)));
  /* reflection is supported by webkit only */
  transition: all 0.4s;
  -webkit-transform-origin: 50% 100%;
  cursor: pointer;
}

#dock-container li span {
  display: none;
  position: absolute;
  bottom: 140px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 4px 0;
  border-radius: 12px;
}

#dock-container li:hover span {
  display: block;
  color: #fff;
}

@media only screen and (max-width:1300px) {
  #dock-container li img {
    width: 80px;
  }
}

@media only screen and (max-width:1024px) {
  #dock-container li img {
    width: 60px;
  }
}

@media only screen and (max-width: 800px) {
  #dock-container li img {
    width: 90px;
  }
}

@media only screen and (max-width: 768px) {
  #dock-container li img {
    width: 70px;
    margin-bottom: 20px !important;
  }

  #dock-container ul {
    padding: 0px;
  }

  #dock-container {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 414px) {
  #dock-container li img {
    width: 90px;
  }

  #dock-container li {
    margin-bottom: 15px;
  }

  #dock-container {
    bottom: 0px;
    top: auto;
  }
}

/*plyr.io css*/
.plyr__controls__item.plyr__control[data-plyr="fullscreen"]{
	opacity: 0;
}
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  background: none;
}

.plyr__control--overlaid svg {
  width: 40px;
  height: 40px;
}

.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #ed261d;
}

.plyr--full-ui input[type=range] {
  color: #ed261d;
}
/*plyr.io css*/

/*Cast & Crew*/
section.castnCrew .wrapper {
    box-shadow: 3px 3px 10px #cccccc96;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

section.castnCrew .image {
	position: relative;
    justify-content: center;
    display: flex;
}

section.castnCrew .image .content {
    position: absolute;
    bottom: 20px;
    width: 90%;
    background: #00000080;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
/*Cast & Crew*/

.error404 {
  font-size: 150px;
  color: #ed261d;
  text-shadow: 1px 1px 1px #a90700, 2px 2px 1px #a90700, 3px 3px 1px #a90700, 4px 4px 1px #a90700, 5px 5px 1px #a90700, 6px 6px 1px #a90700, 7px 7px 1px #a90700, 8px 8px 1px #a90700, 25px 25px 8px rgba(0,0,0, 0.2);
}

/* CSS for Toast */
.toast {
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  padding: 15px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  animation: slideIn 0.3s ease forwards, fadeOut 2s ease forwards 1.5s;
}

.toast.hide {
  display: none;
  opacity: 0;
}

.page-2-line2 {
  margin: 0.25rem;
  opacity: 1;
}

/* Animation Keyframes */
@keyframes slideIn {
from {
  transform: translateX(100%);
}
to {
  transform: translateX(0);
}
}

@keyframes fadeOut {
from {
  opacity: 1;
}
to {
  opacity: 0;
}
}