:root { 
    --color-1: #5db8f6;
    --color-2: hotpink;
    --footer-bg: #1c222e;
    --footer-title-color: #8c94a0;
    --color-gradient-1: #5DB8F6;
    --color-gradient-2: #A52F72;

    /*
    --color-bg-3: red;
    --color-prime-3: coral;
    --color-prime-2: coral; 
    --color-prime-1: #aa01fe;
    */
}

* {
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html,body {
    height: 100%;
}

body {
    /*font-family: 'Fira Code', monospace;*/
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: white;
    font-size: 16px;
    padding: 0;
    margin: 0;
    border: 0;
}

a {
    color: white;
}

a:hover {
    text-decoration: none;
    color: var(--color-2);
}

.container {
    width: 960px;
    margin: auto;
}

header .container-fluid {
    padding-left: 25px;
    padding-right: 15px;
}

.row, .clear { clear: both; }
.col { float: left; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333%; }
.col-6 { width: 50%; }

.text_s { font-size: smaller; }

.alert {
    padding: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.alert.-error {
    background-color: tomato;
}

.alert.-success {
    background-color: var(--color-2);
}

.num-open-sans { font-family: "Open Sans", sans-serif; }

header {
    background: rgba(0,0,0,0.1);
    padding: 25px 0;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 99;
}

header .container-fluid {
    display: flex;
    justify-content: space-between;
}

header.compress {
    padding: 10px 0;
    background-color: rgba(0,0,0,0.8);
}

header .logo {
    display: inline-block;
    font-weight: 800;
    font-style: italic;
    font-size: 32px;
    letter-spacing: -1px;
}


header a {
    text-decoration: none;
    font-weight: 600;
}

header .desktop-nav nav {
    
}

header .desktop-nav nav a {
    display: inline-block;
    margin-left: 15px;
}

header .desktop-nav a.pricing {
    margin-right: 25px;
}

header .desktop-nav a.login {
    border: solid 1px var(--color-2);
    padding: 8px 22px 7px 22px;
    font-weight: 600;
    font-size: 18px;

    transition: all 0.3s ease;
}

header a.hamburgesa {
    display: inline-block;
    padding: 10px 25px; 
    font-size: 24px;
    margin-top: -4px;
    margin-bottom: -10px;
}
 
header .desktop-nav  a.login:hover {
    background: var(--color-2);
    color: #000;
}

header .desktop-nav  a.signup { 
    padding: 8px 22px 7px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

header .desktop-nav a.login:hover { 
}


header .mobile-nav {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 67px;
}

header.mobile__menu-open .mobile-nav {
    display: none;
}

header .mobile-nav nav {
    display: block;
    border-top: 1px solid white;
}

header .mobile-nav nav a {
    display: block;
    line-height: 55px;
}

header .mobile-nav nav a {
    border-bottom: 1px solid white;
    padding: 0 25px;
}

main {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#153f8f+0,43d6bb+100 */
    background: var(--color-gradient-1); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  var(--color-gradient-1) 0%, var(--color-gradient-2) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  var(--color-gradient-1) 0%,var(--color-gradient-2) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  var(--color-gradient-1) 0%,var(--color-gradient-2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color-gradient-1)', endColorstr='var(--color-gradient-2)',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: white;
    padding: 160px 0;
}

main .hero {
    margin-bottom: 100px;
}

main .hero h1 {
    font-size: 100px;
    font-weight: 800;
    margin: 0;
}

main .hero h3 {
    font-size: 39px;
    margin: 0;
    font-style: italic;
    font-weight: 400;
    margin-top: -18px;
}

main .box {
    position: relative;
    border: 0px solid white;
}

main .box h2 { 
    margin: 0;
    font-weight: 300;
    font-size: 33px;
    text-transform: uppercase;
}

main .box h2 strong {
    font-size: 39px;
    font-weight: 800;
    font-style: normal;
}

main .box.box-album {
    border-color: #5db8f6;
    margin-right: 50px;
}

main .box.box-artist {
    padding-left: 50px;
    border-color: #49FFD0;
    margin-left: 20px;
}

main .box.box-artist:before {
    position: absolute;
    height: 150px;
    width: 1px;
    background: var(--color-2);
    content: " ";
    left: -25px;
    top: 50px;
}


main .box p {
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 40px;
}

main .box a.action,
.button.block {
    display: block;
    width: 100%;
    border: solid 8px #5db8f6;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    background: transparent;
    border-radius: 0;
    text-align: center;
    padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
    text-decoration: none;
    font-weight: 700;
}

main .box a.action.color-1 { border-color: var(--color-1); }
main .box a.action.color-2 { border-color: var(--color-2); }
main .box a.action.color-1:hover,
.button.block.color-1:hover { background: var(--color-1); color: black; }
main .box a.action.color-2:hover,
.button.block.color-2:hover { background: var(--color-2); color: black; }


.socials-logins .col {
    float: left;
    padding-right: 15px;
}

.login-spotify {
    display: block;
    padding: 10px;
    background: #1DB954;
    margin-bottom: 15px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    max-width: 245px;
}

.login-spotify:hover {
    color: white;
    opacity: 0.8;
}


form .form-box,
form .box {
    display: block;
    position: relative;
}

form .box {
    width: 100%;
    padding: 17px 25px 17px 25px;
    font-size: 14px;
    border: 1px solid #282828;
    background: white;
    color: #282828; 
}

form .box label {
    display: block;
}

form .box a {
    color: #282828;
}

form .form-box label.mini-label {
    position: absolute;
    left: 25px;
    top: 16px;
    font-size: 12.8px;
    color: #282828;
}

form .form-box .input {
    width: 100%;
    padding: 35px 25px 17px 25px;
    font-size: 20px;
    border: 1px solid #282828;
    background: white;
}

form .button.block {
    text-align: left;
    padding-left: 25px;
    background: var(--color-2);
    border: 1px solid #282828;
    color: #282828;
    padding: 25px 25px 25px 25px;
}

form .info {
    margin-top: 10px;
}

form .info > div {
    float: left;
}

form .info > div.span-auto {
    float: right;
}


footer {
    position: relative;
    background: var(--footer-bg);
    color: var(--footer-title-color);
}

footer h6 {
    color: var(--footer-title-color);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 2px;
    text-align: left; 
    text-transform: uppercase;
    border-bottom: 1px solid #3c424d;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
} 

footer ul a:hover {
    color: var(--color-2);
}

footer p {
    line-height: 29px;
}

footer .social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--footer-title-color);
    color: black;
    margin-right: 15px;
    font-size: 20px;
}
footer .social a:hover {
    background: white;
}

footer .links-map {
    line-height: 27px;
}

footer .links-map a {
    display: inline-block;
    padding: 2px 5px 2px 0;
    color: white;
    text-decoration: none;
    line-height: 29px;
}

footer .links-map a:hover {
    color: var(--color-2);
}

footer .about-us a {
    color: var(--footer-title-color);
    text-decoration: none;
}

footer .about-us a:hover {
    color: var(--color-2);
}

footer .col {
    padding-bottom: 30px;
}



.only-desktop { display: inherit; }
.only-mobile { display: none; }

@media (max-width: 980px) {
    .only-desktop {
        display: none;
    }

    .only-mobile {
        display: inherit;
    }

    .container {
        width: 650px;
    }

    main .hero {
        margin-bottom: 0px;
    }

    header {
        padding: 15px 0;
    }

    header.compress {
        padding: 15px 0;
    }

    header.mobile__menu-open {
        background: rgba(0,0,0,0.8);
    }

    header.compress .mobile-nav, 
    header.mobile__menu-open .mobile-nav
    {
        top: 67px;
    }


    header.mobile__menu-open .mobile-nav {
        display: block;
    }

}

@media (max-width: 650px) {
    .container {
        width: 320px;
    }
    .col, .col-3, .col-4, .col-5, .col-6 {
        width: 100%;
    }

    header a.login {
        padding: 8px 10px 7px 10px;
        font-size: 14px;
    }

    header a.signup {
        padding: 8px 5px 7px 5px;
        font-size: 14px;
    }

    main .hero h1 {
        font-size: 60px;
        line-height: 50px;
    }

    main .hero h3 {
        font-size: 19px;
        margin-top: 10px;
    }

    main .box h2 {
        font-size: 24px; 
    }

    main .box h2 strong {
        font-size: 29px;
    }

    .box-album,
    .box-artist {
        margin: 0;
        padding: 0;

        margin: 20px 0px !important;
        padding: 20px !important;
    }  
}

h6{
    margin-top: 25px;
}

h3{
    margin-top: 5px!important;
}


.active{
    color: hotpink!important;
    font-weight: 500;
}
