@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap');  /*"Jaro", sans-serif*/
@import url('https://fonts.googleapis.com/css2?family=Jacquard+12&family=Jacquard+24+Charted&family=Nanum+Pen+Script&display=swap');  /*"Nanum Pen Script", cursive*/
@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap'); /*"Jacquard 24", system-ui*/
@import url('https://fonts.googleapis.com/css2?family=Jacquard+12&display=swap'); /*"Jacquard 12", system-ui*/
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap'); /*"Teko", sans-serif*/

*{
    font-family: "Jacquard 12", system-ui;
    text-transform: capitalize;
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection{
    background-color: #a9a9a9;
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

.heading{
    font-size: 5rem;
    color: #d9d9d9;
    font-family: "Jaro", sans-serif;
    text-align: center;
    padding: 0 1rem;
    padding-top: 6rem;
    letter-spacing: .2rem;
    font-weight: 500;
}

.title{
    padding: 0 1rem;
    font-size: 2rem;
    font-family: "Jaro", sans-serif;
    text-align: center;
    font-weight: 400;
    color: #919191;
}

body{
    background-image: linear-gradient(#000000,#333);
    height: 3000px;
}

header{
    width: 96%;
    background: #d9d9d9;
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: .2s;
}

.header-active{
    top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

header .navbar ul li{
    margin: 0 1rem;
}

header .navbar ul li a{
    font-size: 2.5rem;
    color: #333;
}

header .navbar ul li .active,
header .navbar ul li a:hover{
    color: #737373;
}

header .logo{
    width: 60px;
}

header .fa-bars{
    font-size: 3rem;
    color: #333;
    cursor: pointer;
    display: none;
    transition: .2s;
}

header .fa-times{
    transform: rotate(180deg);
    color: #333;
}

.home{
    min-height: 100vh;
    background-image: url(../podveci/piercing\ video.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    overflow: hidden;
    position: relative;
}

.home .content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 14rem;
    padding-bottom: 8rem;
    text-align: center;
}

.logo2{
    width: 100%;
}

.home .content h1{
    font-size: 9rem;
    font-family: "Jaro", sans-serif;
    margin: 16rem;
    color: #000;
    text-shadow: #fff 1px 0 10px;
    letter-spacing: 5px;
}

.home .content h2{
    font-size: 5rem;
    font-family: "Jaro", sans-serif;
    color: #d9d9d9;
    text-shadow: 0 0 1rem rgba(0,0,0,0.3);
    text-transform: uppercase;
    text-shadow: #252525 1px 0 10px;
}

.home .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home .box-container .box{
    height: 25rem;
    width: 25rem;
    background: #d9d9d9;  
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.5);
    margin: 2rem;
    cursor: pointer;
}

#icon{
    height: 7rem;
    width: 7rem;
    line-height: 6rem;
    text-align: center;
    border-radius: 40%;
    color: #fff;
    background: #333;
    font-size: 3rem;
}

.home .box-container .box h3{
    font-size: 3.5rem;
    font-family: "Jacquard 12", system-ui;
    color: #333;
}

.home .box-container .box p{
    font-size: 1.5rem;
    padding: 2rem 2rem;
    color: #737373;
    font-family: "Jaro", sans-serif;
}

.home .box-container .box:hover #icon{
    background: #620000;
}

.home .box-container .box:hover h3{
    background: #620000;
    color: #fff;
}

button{
    height: 4rem;
    width: 20rem;
    border-radius: 5rem;
    background-color: #919191;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 .3rem 1rem rgba(0,0,0,.3);
    font-family: "Teko", sans-serif;
    transition: .15s;
}

button:hover{
    letter-spacing: .1rem;
    background-color: #620000;
}

.about .row{
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .row .image img{
    height: 40%;
    width: 50vw;
    box-shadow:-50px -50px 0 -40px #919191,50px 50px 0 -40px #919191;
    margin: 20px;
    filter: grayscale();
    transition: .2s;
}

.about .row .image img:hover{
    filter: grayscale(0);
}

.about .row .content{
    padding-left: 5rem;
}

.about .row .content h3{
    font-size: 4rem;
    color: #fff;
    font-family: "Jaro", sans-serif;
}

.about .row .content p{
    font-size: 2.2rem;
    color: #a9a9a9;
    font-family: "Teko", sans-serif;
    padding: 1rem 0;
}

.teacher{
    background-color: #000;
}

.teacher .card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.teacher .card-container .card{
    padding: 2rem;
    margin: 2rem;
    background: #333;
    text-align: center;
    width: 28rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
    margin: .1rem;
}

.teacher .card-container .card img{
    height: 30rem;
    width: 100%;
    filter: grayscale();
    transition: .2s;
}

.teacher .card-container .card:hover img{
    filter: grayscale(0);
}

.teacher .card-container .card h3{
    color: #fff;
    font-size: 3rem;
    padding: .5rem 0;
}

.teacher .card-container .card p{
    color: #cbcbcb;
    font-size: 2rem;
    font-family: "Teko", sans-serif;
}

.teacher .card-container .card a{
    font-size: 1.9rem;
    padding: 1.5rem .5rem;
    color: #d9d9d9;
}

.teacher .card-container .card a:hover{
    color: #620000;
}

.gallery{
    background-image: url(../sracky/wall.png);
}

.gallery .pictures{
    
    margin: 5rem;
}

.gallery .pictures img{
    width: 30rem;
    margin: 1rem;
    opacity: 0.7;
    filter: grayscale();
    transition: .2s;
}

.gallery .pictures img:hover{
    width: 40rem;
    opacity: 1;
    filter: grayscale(0);
}

.footer{
    text-align: center;
    background: #252525;
}    

.footer .icons{
    padding: 3rem 0;
    color: #cbcbcb;
    font-size: 3rem;
    letter-spacing: 2rem; 
}

.credit{
    font-size: 2rem;
    font-family: "Teko", sans-serif;
    word-spacing: 1rem;
}

.credit span{
    font-size: 3rem;
    font-family: "Teko", sans-serif;
}

@media (max-width:769px){
    html{
        font-size: 55%;
    }

    header .fa-bars{
        display: block;
    }

    header .navbar{
        position: fixed;    
        top: -100rem;
        left: 0;
        width: 100%;
        background-color: #cbcbcb;
        border-radius: 1rem;
        opacity: 0;
        transition: .2s linear;

    }

    header .navbar ul{
        flex-flow: column;
        padding: 2rem 0;
    }
    
    header .navbar ul li{
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    header .navbar ul li a{
        display: block;
        font-size: 3rem;
    }

    header .nav-toggle{
        top: 9rem;
        opacity: 1;
    }

    .about .row{
        flex-flow: column-reverse;
    }

    .about .row .image img{
        height: 40%;
        width: 80vw;
    }

    .about .row .content{
        padding: 0 2.5rem;
    }

    #h1_custom{
        font-size: 7rem;
        letter-spacing: 0;
    }
}