.home-slide{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(5, 59, 125, 0.9), rgba(5, 59, 125, 0.9)), url('../images/bg_image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px;
}
.home-slide .homeslide-text{
    width: 60%;
    overflow: hidden;
    color: #fff;
    padding: 0 20px 0 0;
}
.homeslide-text p {
    font-size: 1.5em;
}
.home-slide .homeslide-btn {
    width: 100%;
    padding: 10px 0;
}
.homeslide-btn a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 10px;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}
.home-slide a:hover {
    color: rgb(5, 59, 125);
}
.homeslide-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    z-index: -1;
    transition: 0.5s;
}
.homeslide-btn a:hover::before {
    width: 100%;
}
.home-slide .homeslide-img {
    width: 400px;
    display: flex;
    justify-content: center;
    position: relative;
}
.homeslide-img img {
    width: 300px;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.8));
    position: relative;
    z-index: 3;
}
.home-slide .homeslide-img::before {
    content: '';
    display: block;
    width: 300px;
    height: 300px;
    background-color: rgb(195, 147, 42);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg);
    z-index: 1;
}
.home-slide .homeslide-img::after {
    content: '';
    display: block;
    width: 300px;
    height: 300px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg);
    z-index: 2;
}
.about-content{
    width: 100%;
    padding: 20px;
    background-color: #fff;
}
.about-content .meet-cn{
    width: 100%;
    padding: 10px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}
.about-content .meet-cn:after{
    content: '';
    display: block;
    clear: left;
}
.meet-cn figure{
    width: 180px;
    text-align: center;
    float: left;
    margin: 0 10px 10px 0;
}
.meet-cn figure figcaption{
    font-size: 17px;
    font-weight: bold;
}
.meet-cn img{
    width: 170px;
    height: 170px;
    background-color: #98140A;
    padding: 5px;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    filter: brightness(120%);
}
.meet-cn .meet-head{
    margin: 20px 0 0 0;
    font-size: 20px;
    font-weight: bold;
}
.meet-cn p{
    text-align: justify;
}
.meet-cn .cvr{
    color: #98140A;
    font-weight: bold;
}

@media (max-width:768px){
    .home-slide {
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding: 190px 20px 20px;
    }
    .home-slide .homeslide-text{
        width: 100%;
    }
    .homeslide-text p {
        font-size: 1em;
    }
    .home-slide .homeslide-img {
        width: 100%;
        margin-bottom: 60px;
    }
    .homeslide-img img {
        width: 150px;
    }
    .home-slide .homeslide-img::before {
        width: 150px;
        height: 150px;
    }
    .home-slide .homeslide-img::after {
        width: 150px;
        height: 150px;
    }
    .meet-cn .meet-head{
        margin: 15px 0 0 0;
        font-size: 17px;
    }
    .meet-cn p{
        font-size: 14.5px;
    }
    .catch-div .catch-container{
        /*height: 150px;*/
        border-radius: 15px;
    }
    .catch-div .catch-img{
        width: 170px;
    }
    .catch-div .catch-img img{
        border-width: 5px;
    }
    .catch-div .catch-quote{
        padding: 10px 40px;
    }
    .catch-quote img{
        width: 25px;
        height: 25px;
    }
    .catch-quote p{
        font-size: 18px;
    }
    .featured-tracks a{
        width: 40%;
        margin: 0 auto 10px;
    }
    .featured-tracks a figure .track-details{
        top: -35px;
        font-size: 15px;
    }
    .featured-tracks a figcaption{
        font-size: 17px;
    }
    .youtube-vid{
        padding: 10px;
    }
    .youtube-vid iframe{
        width: 350px;
        height: 250px;
    }
}
