/*
*@colors
*/
:root{
  --primary-color:rgba(192,192,192,0.9);
  --secondary-color:#1e1d1d;
  --third-color:#ffffff;
  --fourth-color:#193BAA;
}

/*
  ####  ###### #    # ###### #####    ##   #
 #    # #      ##   # #      #    #  #  #  #
 #      #####  # #  # #####  #    # #    # #
 #  ### #      #  # # #      #####  ###### #
 #    # #      #   ## #      #   #  #    # #
  ####  ###### #    # ###### #    # #    # ######
*/

body{
  color:var(--secondary-color);
  background-color: var(--secondary-color);
  font-family: "caveat" , serif;
}
.btn-custom {
  font-size: 1.5rem;
}
.btn-custom, .btn-articles {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--fourth-color);
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.4s;
}
.btn-custom:hover, .btn-articles:hover {
  background-color: #005A34;
  color: var(--secondary-color);
}

/*
 #    # ###### #    # #    #
 ##  ## #      ##   # #    #
 # ## # #####  # #  # #    #
 #    # #      #  # # #    #
 #    # #      #   ## #    #
 #    # ###### #    #  ####
*/

#navbarSupportedContent ul {
  width: 100%;
  align-items: end;
  justify-content: end;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  margin-top: -94px;
}
.navbar .navbar-toggler {
  color: var(--primary-color);
}
.navbar ul li a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 700;
  display: inline;
  position: relative;
  text-decoration: none;
}
.navbar ul li a:hover {
  color: var(--third-color);
}
.navbar a:not(.navbar-brand)::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 2px;
  width: 0%;
  left: 0px;
  height: 2px;
  transition: 0.7s cubic-bezier(0.72,-0.01, 0.19, 0.92);
  background: var(--third-color);
}
.navbar a:hover:after {
  width: 100%;
}

/*
  ####   ####  #    # ##### ###### #    # #    #
 #    # #    # ##   #   #   #      ##   # #    #
 #      #    # # #  #   #   #####  # #  # #    #
 #      #    # #  # #   #   #      #  # # #    #
 #    # #    # #   ##   #   #      #   ## #    #
  ####   ####  #    #   #   ###### #    #  ####
*/
h1 {
  font-size: 4.5rem;
}
/*------------------------------------- TESTE ---------------------------------------*/

h1 {
  font-size: 4.5rem;
  line-height: 1;
  animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow:
    0 0 2px gray,
    0 0 4px gray,
    0 0 8px gray;
    /* 0 0 16px var(--primary-color); */
    /* 0 0 32px var(--primary-color); */
    /* 0 0 64px var(--primary-color); */
    /* 0 0 128px var(--primary-color); */
  }
  to {
    text-shadow:
    0 0 4px gray,
    0 0 8px gray,
    0 0 16px gray;
    /* 0 0 32px var(--primary-color); */
    /* 0 0 64px var(--primary-color); */
    /* 0 0 128px var(--primary-color); */
    /* 0 0 256px var(--primary-color); */
  }
}
/*------------------------------------- FIN TESTE ---------------------------------------*/

h1, h2 {
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-color);
}

h2 {
  padding: 20px 0 40px 0;
  font-size: 2.7rem;
}
/* 
.section-1, .section-2, .section-3 {
  padding: 50px 0 50px 0;
} */

/*------------------------------------- Section 1 ---------------------------------------*/
.section-1 iframe {
  max-width: 100%;
}

/*------------------------------------- Section 2 ---------------------------------------*/


/*------------------------------------- Section 3 ---------------------------------------*/
.slick-items ul li button::before {
  color: var(--primary-color);
  font-size: 20px;
}
/* ---------------------------------Page Discographie----------------------------------- */
.discographie iframe {
  max-width: 100%;
  height: 100%;
}
/*
 ######  ####   ####  ##### ###### #####
 #      #    # #    #   #   #      #    #
 #####  #    # #    #   #   #####  #    #
 #      #    # #    #   #   #      #####
 #      #    # #    #   #   #      #   #
 #       ####   ####    #   ###### #    #
*/
.footer {
  background-color: black;
  color: var(--primary-color);
}
.footer p {
  font-size: 1.4rem;
}
.footer a svg {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: all 0.5s;
}
.footer a svg:hover {
  color: var(--third-color);
}
/*
 #####  ######  ####  #####   ####  #    #  ####  # #    # ######
 #    # #      #      #    # #    # ##   # #      # #    # #
 #    # #####   ####  #    # #    # # #  #  ####  # #    # #####
 #####  #           # #####  #    # #  # #      # # #    # #
 #   #  #      #    # #      #    # #   ## #    # #  #  #  #
 #    # ######  ####  #       ####  #    #  ####  #   ##   ######
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}
