*   { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --brw-clr: rgb(178, 43, 47);
    --red-clr: rgb(255, 0, 0);
    --black-pri-clr: rgb(0, 0, 0);
    --less-black-clr: rgb(25, 23, 23);
    --gold-clr: rgba(255, 196, 0, 0.651);
    --less-light-grey-clr: rgb(128, 128, 128);
    --lesser-light-grey-clr: #848484;
    --font-family: "League Gothic", sans-serif;
    --medium-font-weight: 700;
    --bold-font-weight: 1000;
    --small-font-size: .9rem;
    --medium-font-size: 1.4rem;
    --semi-medium-font-size: 2rem;
    --large-font-size: 3rem;
    --container-width: 1000px;
    --all-basic-transition: all linear .1s;
}

.ln-slider-container    {
    width: 100vw;
    position: relative;
    margin: auto;
}

/* ARROWS */

.arrow  {
    display: flex;
    position: absolute;
    /* bottom: 50%; */
    align-items: center;
    justify-content: center;
    background-color: var(--gold-clr);
    cursor: pointer;
}

.arrow i    {
    color: var(--white-clr);
    font-size: 2rem;
}

.left-arrow {
    left: 0;
    bottom: 50%;
}

.right-arrow {
    right: 1.3%;
    bottom: 50%;
}

.arrow:hover    {
    background-color: var(--white-clr);
}

.picture-info-box   {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.picture-info-box>a {
    display: block;
    max-width: 1300px;
    height: 600px;
    margin: 0 auto;
}

.picture-info-box img    {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    box-shadow: 0px 4px 4px 1px var(--gold-clr);
    
    
}

.info-box   {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.info-box-1     {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Dropdown Button */
.dropbtn {
    background-color: var(--black-pri-clr);
    color: white;
    padding: 0px;
    font-size: 24px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  /* .dropdown:hover .dropbtn {background-color: #f8bf03;} */

.title   {
    font-size: var(--large-font-size);
    width: 50%;
}

.title>a  {
    transition: var(--all-basic-transition);
}

.date   {
    font-size: var(--medium-font-size);
    color: var(--gold-clr);
}


.boxes {
    display: inline-block;
    position: relative;
    left: 90%;
    top: 80%;
}


.box  {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--less-light-grey-clr);
    z-index: 1;
    margin-right: .1rem;
}

/* DISCO SLIDER */


.disco-slide-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.disco-slide-images {
    display: flex;
    transition: transform .5s ease;
    padding-right: 4rem;
    width: calc(100% * 1); /* Assuming you have 12 slides */
}

.slide {
    flex: 0 0 auto;
    width: calc(100% / 6); /* Assuming you have 12 slides */
}

.right-arrows {
    right: -4%;
    bottom: 30%;
}

.left-arrows {
    left: -4%;
    bottom: 30%;
}

.disco-slide-images a{
    border: 2px solid var(--black-pri-clr);
    transition: var(--all-basic-transition);
}

.other-container {
    display: flex;
    width: var(--container-width);
    gap: 3rem;
}

/* Newsletter */

.news-box  {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--gold-clr);
}

.news-box>div:nth-child(1) {
    width: 40%;
}

.news-box>div:nth-child(2) {
    width: 60%;
}


.news-image > a {
    display: inline-block;
    width: 100%;
}

.news-image a>img  {
    width: 100%;
}

.news-info  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

.news-info>div:first-child  {
    align-self: flex-start;
    color: var(--black-pri-clr);
    background-color: var(--less-light-grey-clr);
    font-size: var(--semi-medium-font-size);
}

.news-info>div:first-child a {
    display: inline-block;
    color: var(--black-pri-clr);
    padding: .2rem;
    transition: var(--all-basic-transition);
}

.news-info>div:nth-child(2)  {
    font-size: 1.2rem;
}


#more-info  {
    display: flex;
    justify-content: flex-start;
    width: var(--container-width);
}


/* HOVER EFFECT */

.title>a:hover    {
    color: var(--brown-clr);
}

.disco-slide-images a:hover {
    border: 2px solid var(--gold-clr);
}

.news-info>div:first-child a:hover  {
    color: var(--white-clr);
}

  .active, .box:hover {
    background-color: var(--brown-clr);
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  @media (max-width: 1100px) {

    .ln-slider-container {
        width: 100%;
    }
    .picture-info-box img {
        width: 100%;
    }

    .info-box {
        width: 100%;
    }

    .info-box-1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .title {
        width: 100%;
    }

    .info-box-2, .date, .right-arrow, .left-arrow {
        display: none;
    }

    #disco-slider-container {
        display: none;
    }

    .other-container {
        width: 100%;
    }

    #more-info {
        width: 100%;
    }

    #newsletter-container {
        display: none;
    }

    .news-box>div:nth-child(1) {
        width: 20%;
    }
    
    .news-box>div:nth-child(2) {
        width: 80%;
    }

  }

  @media (max-width: 550px) {
    .title {
        font-size: 2rem;
    }

    .news-box>div:nth-child(1) {
        width: 50%;
    }
    
    .news-box>div:nth-child(2) {
        width: 50%;
    }
  }
