* {
  margin: 0;
  padding: 0;
  scroll-padding: 61px;
  scroll-behavior: smooth;
  line-height: 1.5;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

@font-face {
  font-family: nightmachine;
  src: url(fonts/Night-Machine.otf);
}

a {
  color: #000000b7;
}
a:hover {
  color: #000000b7;
}
/*theme*/

.bg-blue {
  background-color: #111963 !important;
}
.bg-red {
  background-color: #c23030 !important;
}

.bg-lightred {
  background-color: #e96161 !important;
}

.bg-black {
  background-color: #000000b7 !important;
}
.btn-white {
  background-color: white !important;
}
.btn-blue {
  background-color: #111963 !important;
}
.btn-red {
  background-color: #c23030 !important;
}
.border-red {
  border-color: #c23030 !important;
}
.border-gold {
  border-color: gold !important;
}
.border-blue {
  border-color: #111963 !important;
}
.bg-lightgrey {
  background-color: rgb(202, 202, 202);
}
.bg-darkgrey {
  background-color: rgb(59, 59, 59) !important;
}
.text-grey {
  color: rgb(179, 179, 179);
}
.text-blue {
  color: #111963 !important;
}
.text-white {
  color: white !important;
}
.text-red {
  color: #c23030 !important;
}

/*nav*/

a:link {
  text-decoration: none;
}

.nav-link {
  font-weight: 600;
  color: #ffffff;
}

.nav-link:hover {
  color: #c23030;
}

.nav-blue {
  background-color: #111963 !important;
}

.nav-animation {
  animation: slide-in-down 1s;
}

.nav-red { 
  background-color: #111963 !important;
}

/*página parcerios e coordenadores*/
.grey-section {
  padding-top: 62px;
  background-color: rgb(26, 26, 26);
  min-height: 100vh;
}

.coord-card {
  background-color: #c23030;
  height: 150px;
}

.partner-card {
  background-color: #c23030;
  height: 200px;
}

.left-icon {
    height: 80%;
}

/*first-section*/

#logo {
  width: 380px;
  animation: slide-in-right 2s;
  z-index: 10;
}

#right-first-section {
  padding-left: 60px;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.92);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
} 

.h2-first {
  font-size: 50px;
}

.h2-first-t {
  font-size: 50px;
  padding: 15px;
}

.h2-first-n {
  font-size: 50px;
}

#div-bg-clip {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

#first-section {
  background-image: url(./assets/bg-lb-joia.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode:soft-light;
  background-color: #111963;
  background-position: -400px;
}

#first-section h2 {
  margin-top: 0;
  animation: slide-in-left 1s;
}

#first-section h6 {
  animation: slide-in-left 2.5s;
}

#conteudo {
  min-height: 100vh;
  background-image: url(./assets/party2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: darken;
}

.eletro-1-img {
  width: 75%;
}

#content-left {
  background-color: rgba(0, 0, 0, 0.9);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

#content-left h1{
  font-size: 60px;
  font-family: nightmachine;
}

.font-eletro{
  font-family: nightmachine;
}

#content-left h2{
  font-size: 20px;
}

#content-right{
  margin-top: 0px;
}

.video {
  height: 384px;
  width: 576px;
}

/*associados*/

#associados {
  background-image: url(./assets/bar.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-blend-mode: darken;
}

.card-parcerias {
  background-color: rgba(255, 255, 255, 0.945);
  border-bottom: 5px solid #c23030;
}

.card-parcerias:hover {
  background-color: rgba(255, 255, 255, 0.945);
  border-bottom: 5px solid #111963;
}

.hover-parcerias {

}

.btn-more {
  border: 2px solid #c23030;
} 

.btn-more-a {
  border: 2px solid #c23030;
} 

.btn-more-a:hover {
  transform: scale(1.1);
} 

/*diretoria*/

#quem-somos {
  background-image: url(./assets/tourada.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-blend-mode: soft-light;
}

.card-dir:hover {
  transition: 2ms;
  transform-style: preserve-3d;
}

.card-dir:hover img {
  transition-duration: 0.8s;
  transform: scale(1.3);
}

.card-dir:hover h5 {
  transition-duration: 0.5s;
  transform: translateY(-10px);
 }

 .card-dir:hover h6 {
  transition-duration: 0.5s;
  transform: translateY(10px);
 }

 .row-cards {
  opacity: 0;
}

.row-cards-100 {
  opacity: 1;
}

.cards-fade-in {
  animation: fade-in 1s;
}

/*seja los bravos*/

.btn-width-100 {
  width: 400px;
  color: white;
}

.btn-width-100:hover {
  transform: scale(1.05);
  color: #c23030;
}

/*footer*/

.footer-icon {
  color:#000000b7;
}

.footer-icon:hover {
  color: #c23030;
}

/*animations*/

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(-600px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    transform: translateX(600px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slide-in-down {
  0% {
    background-color: none;
  }
  100% {
    background-color: #c23030;
  }
}

/*media query*/

@media (max-width: 998px) {
  .video {
    height: 336px;
    width: 504px;
  }
  .eletro-1-img {
    width: 50%;
  }
  #content-right{
    margin-top: 0px;
  }
  #content-left {
    background-color: rgba(0, 0, 0, 0);
  }
  #content-left h1{
    font-size: 35px;
  }
  #content-left h2{
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .video {
    height: 384px;
    width: 576px;
  }
  #first-section {
    padding-top: 100px;
  }
  #right-first-section {
    padding-left: 0px;
    min-height: 40vh;
    background-color: rgba(255, 255, 255, 0.795);
    padding-bottom: 24px;
    transform: scale(0.8);
  } 
  #first-section h2 {
    margin-top: 25px;
  }
  #associados {
    background-image: none;
  }
  #quem-somos {
    background-image: none;
  }
  .h2-first {
    font-size: 30px;
  }
  .h2-first-t {
    font-size: 30px;
  }
  .h2-first-n {
    font-size: 30px;
  }
  #bottom-line-title {
    margin-top: -25px;
  }
}

@media (max-width: 656px) {
  .video {
    height: 240px;
    width: 360px;
  }
}

@media (max-width: 480px) {
  #logo {
    width: 200px;
  }
  .btn-width-100 {
    width: 250px;
  }
  .video {
    height: 192px;
    width: 288px;
  }
}
