/* GLOBAL ##################################### */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}
html {
    scroll-behavior: smooth;
}

/* FONTS ##################################### */
/*
h1 = banner name
h2 = banner info
h3 = dates, records, sheet music, contact, passion, bandoneon
h4 = press, photos
h5 = projects-heading
h6 = dates   
*/
h3, h4, h5, h6, p, a {
    color: #333333;
}
h3 {
    font-size: 30px;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 60px;
}
h4 {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 0 0 20px 0;
}
h4 span {
    font-size: 16px;
    font-weight: 400;
}
h5 {
    font-size: 18px;
    padding: 40px 0 1px 0;
    letter-spacing: 2px;
}
h6 {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 400;
}
p { 
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ################ MAIN BOX ################ */

.main-box {
    width: 70%;
    max-width: 1200px;
    margin: auto;
}
@media screen and (max-width: 1680px) {
    .main-box {
        width: 80%;
    }
}
@media screen and (max-width: 1280px) {
    .main-box {
        width: 90%;
    }
}


/* MAIN LAYOUT ##################################### */

section {
    padding: 60px 0;
}
.downloads {
    font-size: 30px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 2px;
    padding-bottom: 10px;
}
.project-name {
    font-size: 25px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 2px;
    padding-bottom: 5px;
}
.link {
    border-bottom: 1px dotted;
}
.link:hover {
    color: #ff8a26;
    transition: color 0.2s linear;
}
.border {
    border-bottom: 1px solid;
    color: #cccccc; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.center {
    text-align: center;
}
.main-photo img {
    width: 100%;
}


/* HEADER ##################################### */

.index {
    height: 100vh;
    width: 100%;
    background: #000000; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.index video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 5;
    opacity: 0.4;
}
.banner {
    position: relative;
    text-align: center;
    color: #fafafa;
    animation: fadeIn 10s;
    z-index: 20;
}
.banner h1 {
    font-size: 40px;
    color: #fafafa;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.5;
    padding-bottom: 20px;
}
.banner h2 {
    font-size: 20px;
    color: #fafafa;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.5;
    padding-bottom: 20px;
}
.banner-icon i {
    font-size: 50px;
    color: #fafafa;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
#volume-icon {
    float: right;
    margin-right: 30px;
    padding-top: 23px;
    font-size: 15px;
    color: #ff970a;
    cursor: pointer;
}
.logo-paier {
    float: left;
    margin-left: 50px;
    padding-top: 1px;
}
.logo-paier img {
    width: 120px;
}
.menu-bar {
    top: 0;
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 30;
}
.menu-button div {
    width: 25px;
    height: 3px;
    background-color: #ff970a;
    margin: 5px;
}
.menu-button {
    float: right;
    margin-right: 50px;
    padding-top: 17px;
    cursor: pointer;
}
nav {
    position: fixed;
    right: 0;
    top: 60px;
    background-color: #383838;
    height: calc(100% - 60px);
    max-width: 80%;
    padding: 10px 0;
    overflow-y: auto;
    display: none;
}
nav li {
    color:  #ff970a;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 40px;
    border-bottom: 1px solid;
    border-color: #989898;
}
nav li:hover {
    background-color: #fff;
}


/* BUTTONS ##################################### */

.info-button {
    text-align: center;
    padding-bottom: 60px;
}
.info-button button {
    background-color: #e3e3e3;
    border: 1px solid;
    border-color: #eaeaea;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1px;
    padding: 5px 10px;
    cursor: pointer;
}
.info-button button:hover {
    background-color: #cccccc;
    transition: background-color 0.2s linear;
}
.filter-button {
    text-align: center;
    padding-bottom: 60px;
}
.filter-button li {
    display: inline-block;
    margin-right: 20px;
}
.filter-button li:last-child {
    margin-right: 0;
}
.filter-button li span {
    background-color: #fff;
    border: 1px solid;
    border-color: #eaeaea;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1px;
    padding: 5px 10px;
    cursor: pointer;
}
.filter-button li span:hover {
    background-color: #cccccc;
    transition: background-color 0.2s linear;
}
.filter-button li.active span {
    background-color: #cccccc;
}


/* DATES ##################################### */

.dates {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid;
    border-color: #eaeaea;
    text-align: left;
    padding: 10px 10px 0 10px;
    cursor: pointer;
}
.dates:hover {
    background-color: #ebebeb;
    transition: background-color 0.2s linear;
}
.dates-button {
    text-align: center;
    padding-bottom: 50px;
}
.dates-button a {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}
.dates-button a:last-child {
    margin-right: 0;
}
.dates-button a span {
    display: block;
    background-color: #fff;
    border: 1px solid;
    border-color: #eaeaea;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1px;
    padding: 5px 10px;
    cursor: pointer;
}
.dates-button a span:hover {
    background-color: #cccccc;
    transition: background-color 0.2s linear;
}
.dates-button a.active span {
    background-color: #cccccc;
}


/* DOWNLOADS ##################################### */

.download-press {
    padding-bottom: 10px;
    padding-left: 10px;
}
.download-press div {
    padding-bottom: 10px;
}
.download-press button {
    width: 240px;
    height: auto;
    background-color: #eaeaea;
    border: 1px solid;
    border-color: #eaeaea;
    border-radius: 10px;
    padding: 5px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
}
.download-press button:hover {
    background-color: #cccccc;
    transition: background-color 0.2s linear;
}

/* VIDEO ##################################### */

.video {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
}
.video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* FOOTER ##################################### */

footer {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}
.copyright {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.icons {
    font-size: 20px;
    margin: 0 10px;
}
.icons:hover {
    opacity: .5;
    transition: .9s;
    cursor: pointer;
}
.supported {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.logos1 img {
    height: 20px;
    margin: 0 10px;
}
.logos1 img:hover {
    opacity: .5;
    transition: .9s;
    cursor: pointer;
}
.logos2 img {
    height: 20px;
    margin: 0 10px;
}
.logos2 img:hover {
    opacity: .5;
    transition: .9s;
    cursor: pointer;
}
.logos3 img {
    height: 40px;
    margin: 0 10px;
}
.logos3 img:hover {
    opacity: .5;
    transition: .9s;
    cursor: pointer;
}

/* FOOTER DIGISTORE##################################### */

#legal_links ul{
    padding: 0 0 0 0;
    border: 0;
    margin-top: 10px;
}

#legal_links li {
    display: inline;
    padding: 0 10px 0 0;
    margin:  0 10px 0 0;
    border-right: solid gray 2px;
}

#legal_links li:last-child {
    border: none;
}

#legal_links, #legal_links *, #legal_links a:link {
    color: #ffffff;
    text-decoration: none;
}

#footer-digistore {
    color: #ffffff;
    background-color: #333333;
    font-size: 12px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

/* MEDIA QUERIES ##################################### */

@media screen and (max-width: 980px) {
    section {
        padding: 30px 0;
        }
    nav li {
        font-size: 13px;
        padding: 15px 20px;
        }
    p { 
        font-size: 15px;
        }
    h3 {
        font-size: 25px;
        padding-bottom: 30px;
        }
    h4 {
        font-size: 15px;
        }
    h4 span {
        font-size: 13px;
        }
    h5 {
        font-size: 15px;
        }
    h6 {
        font-size: 13px;
        }
    .downloads {
        font-size: 25px;
    }
    .project-name {
        font-size: 20px;
    }
    .filter-button {
        padding-bottom: 30px;
    }
    .filter-button li {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
        }
    .filter-button li span {
        font-size: 13px;
    }
    .info-button {
        padding-bottom: 30px;
    }
    .info-button button {
        font-size: 13px;
    }
    .download-press button {
        width: 220px;
        font-size: 13px;
    }
    .dates-button {
        padding-bottom: 30px;
    }
    .dates-button a span {
        font-size: 13px;
    }
}

@media screen and (max-width: 650px) {
    .banner h1 {
        font-size: 30px;
    }
    .banner h2 {
        font-size: 15px;
    }
    .menu-button {
        margin-right: 20px;
    }
    .logo-paier {
        margin-left: 20px;
    }
    #footer-digistore {
    font-size: 10px;
    }
}

