/* oswald-regular - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../webfonts/oswald-v40-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/oswald-v40-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-700 - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../webfonts/oswald-v40-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/oswald-v40-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* inter-regular - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/inter-v3-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/inter-v3-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* inter-700 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/inter-v3-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/inter-v3-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* .modal-body p,
.modal-body h2,
.modal-body h3,
.modal-body h4 {
  margin-bottom: 20px;
} */

h1 {
  font-family: Oswald, Inter, Helvetica, Arial, sans-serif;
  font-size: 36px;
}

h2 {
  font-family: Oswald, Inter, Helvetica, Arial, sans-serif;
  font-size: 28px;
}

h3 {
  font-family: Oswald, Inter, Helvetica, Arial, sans-serif;
  font-size: 24px;
}

h4 {
  font-family: Oswald, Inter, Helvetica, Arial, sans-serif;
  font-size: 20px;
}

p,
h1,
h2,
h3,
h4 {
  margin-bottom: 20px;
}

a.nav-social {
  font-size: 3em;
}

#footer-nav a.footer-link {
  margin: 0 10px;
  cursor: pointer;
}

#footer-nav a.footer-link:first-child {
  margin-left: 0px;
}

#footer-nav a.footer-link:last-child {
  margin-right: 0px;
}

a.footer-link {
  color: #fff;
  text-decoration: underline;
}

a.footer-link:hover{
  color: #d3d3d3;
  text-decoration: none;
}

.navbar-brand img{
  max-height: 64px;
  width: auto;
}

header,
section.section-video {
  position: relative;
  background-color: black;
  width: 100%;
  overflow: hidden;
}

header {
  height: 45vh;
  min-height: 25rem;
}

section.section-video {
  /* height: 55vh;
  min-height: 25rem; */
}

header video,
section.section-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-45%);
  -moz-transform: translateX(-50%) translateY(-45%);
  -webkit-transform: translateX(-50%) translateY(-45%);
  transform: translateX(-50%) translateY(-45%);
}

header .container,
section.section-video .container {
  position: relative;
  z-index: 2;
}

header .overlay,
section.section-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 1;
}

/* Media Query for devices with coarse pointers and no hover functionality */
/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  header {
    background: url("../video/waves_fallback.jpg") black no-repeat center center scroll;
  }
  
  section.section-video {
    background: url("../video/concert_fallback.jpg") black no-repeat center center scroll;
  }

  header video,
  section.section-video video{
    display: none;
  }
}

.icon-big {
  font-size: 32px;
  padding: 5px;
  background: #036;
  color: #fff;
  border-radius: 120px;
  margin-right: 10px;
}

.zoom {
  transition: transform .2s;
}

.zoom:hover {
  -ms-transform: scale(1.05); /* IE 9 */
  -webkit-transform: scale(1.05); /* Safari 3-8 */
  transform: scale(1.05); 
}

img.img-card {
  text-align: center;
  max-height: 164px;
  object-fit: contain;
  /* max-width: fit-content; */
}

.card {
  transition: all .5s;
}

.card:hover {
  border: 2px solid #036;
  background: #e0ecff !important;
}

.card-brand {
  height: 175px !important;
}

#btn-back-to-top {
  z-index: 100;
  transition: all .5s;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;  
}

.fade-in {
  animation: fadeIn .5s;
  -webkit-animation: fadeIn .5s;
  -moz-animation: fadeIn .5s;
  -o-animation: fadeIn .5s;
  -ms-animation: fadeIn .5s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}