.collections-div{
    width: 100%;
    min-height: 100vh;
    padding: 170px 5% 20px;
    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;
}
.collections-div .catch-div {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    margin-bottom: 50px;
}
.catch-div .catch-img {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.catch-div .catch-img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.7));
    position: relative;
    z-index: 3;
}
.catch-div .catch-img::before {
    content: '';
    display: block;
    width: 250px;
    height: 250px;
    background-color: #fff;
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg);
    z-index: 1;
}
.catch-div .catch-img::after {
    content: '';
    display: block;
    width: 250px;
    height: 250px;
    background-color: rgb(195, 147, 42);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg);
    z-index: 2;
}
.catch-div .catch-quote {
    width: calc(100% - 400px);
    padding: 0 50px;
    color: #fff;
    font-size: 1.5em;
}
.catch-quote .catch-btn {
    width: 100%;
    padding: 10px 0;
}
.catch-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;
}
.catch-quote a:hover {
    color: rgb(5, 59, 125);
}
.catch-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;
}
.catch-btn a:hover::before {
    width: 100%;
}
.featured-div{
    width: 100%;
    padding: 50px;
}
.featured-div .featured-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.featured-heading span {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: rgb(195, 147, 42);
}
.featured-heading h2{
    font-variant: small-caps;
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}
.featured-div .featured-tracks{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.featured-tracks a{
    display: inline-block;
    text-decoration-line: none;
    width: 200px;
    color: rgb(5, 59, 125);
    transition: 0.5s linear;
}
.featured-tracks a figure{
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.featured-tracks a figure .track-details{
    width: 100%;
    margin: 0;
    padding: 5px 0;
    text-align: center;
    position: absolute;
    top: -40px;
    left: 0;
    background-color: rgb(195, 147, 42);
    color: #fff;
    transition: 0.5s;
}
.featured-tracks a figcaption{
    color: rgb(5, 59, 125);
    font-size: 16px;
    font-weight: bold;
}
.featured-tracks a img{
    width: 100%;
    border-radius: 5px;
}
.featured-tracks a:hover{
    transform: scale(1.05);
}
.featured-tracks a:hover .track-details{
    top: 0;
}
.youtube-vid{
    width: 100%;
    padding: 20px;
    text-align: center;
}
.youtube-vid iframe{
    width: 550px;
    height: 400px;
}
.collections-heading{
    font-variant: small-caps;
    text-align: center;
    margin: 10px 0;
    padding: 0 20px;
}
.collections-list{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.collections-list a{
    display: inline-block;
    text-decoration-line: none;
    width: 45%;
    color: #000;
}
.collections-list .track-item{
    width: 100%;
    padding: 10px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.track-item img{
    width: 90px;
    height: 90px;
    margin-right: 10px;
}
.track-item p{
    margin: 0;
}
.track-item .tname{
    font-weight: bold;
}
.collections-div .btns-div{
    width: 100%;
    background-color: rgb(195, 147, 42);
    display: flex;
    padding: 5px;
}
.collections-div .btns-div span{
    width: 49%;
    background-color: rgb(5, 59, 125);
    padding: 10px 0; 
    text-align: center;
    margin: auto;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.collections-div .btns-div span:hover{
    background-color: #fff;
    color: rgb(5, 59, 125);
}

@media (max-width:768px){
    .collections-div {
        padding: 170px 10px 10px;
    }
    .collections-div .catch-div {
        height: auto;
        padding: 0;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .catch-div .catch-img {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
    }
    .catch-div .catch-img img {
        width: 100px;
        height: 100px;
    }
    .catch-div .catch-img::before {
        width: 120px;
        height: 120px;
    }
    .catch-div .catch-img::after {
        width: 120px;
        height: 120px;
    }
    .catch-div .catch-quote {
        width: 100%;
        padding: 10px;
        font-size: 1em;
        text-align: center;
        margin: 0;
    }
    .featured-div{
        padding: 10px;
    }
    .featured-heading span {
        width: 50px;
    }
    .featured-heading h2{
        margin: 0 5px;
        font-size: 18px;
    }
    .featured-tracks a{
        width: 100px;
    }
    .featured-tracks a figure{
        padding: 5px;
        border-radius: 10px;
    }
    .featured-tracks a img{
        width: 100%;
        border-radius: 5px;
    }
    .featured-tracks a:hover{
        transform: scale(1.05);
    }
    .featured-tracks a:hover .track-details{
        top: 0;
    }
    .youtube-vid iframe{
        width: 300px;
        height: 240px;
    }
    .collections-heading{
        font-variant: small-caps;
        text-align: center;
        margin: 0 0 10px;
        padding: 0 20px;
    }
    .collections-list{
        padding: 10px;
    }
    .collections-list a {
        width: 100%;
    }
    .collections-list .track-item{
        padding: 5px;
        margin-bottom: 10px;
    }
    .track-item img{
        width: 70px;
        height: 70px;
        margin-right: 5px;
    }
    .track-item p{
        font-size: 15px;
    }
    .collections-div .btns-div{
        width: 100%;
        background-color: rgb(195, 147, 42);
        display: flex;
        padding: 5px;
    }
    .collections-div .btns-div span{
        padding: 5px 0; 
        font-size: 14px;
    }
}