:root {
    --black: #151515;
    --red: #FB5948;
    --blur: rgba(128,128,128,0.4);
    --facebook: #4460A0;
}

*,
*::before,
*::after {
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight:700 !important;
    color:white;
}
h2 {
    font-weight:300;
}

.share {
    font-family: 'Share Tech', sans-serif;
    font-size:1.5rem;
}

p {
    line-height:1.75;
}

button {
    color:white;
    border:2px solid var(--red);
    background-color: var(--red);
    padding:0.5rem 1rem;
    font-weight:bold;
    cursor:pointer;
    border-radius:0.25rem;
}
a {
    text-decoration:none;
    color:white;
}

/********************/

body {
    width:100%;
    background-color:var(--black);
    color:white;
}
/**********************/
/**********************/
header {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    position:fixed;
    z-index:1000000;
    background-color:#15151589;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);


}
.header-wrapper {
    width:100%;
    max-width:1440px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:2rem 6rem;
}
button:hover {
    background-color:#f08c81;
    border-color:#f08c81;
}
nav {
    display:flex;
    align-items: center;
    gap:4rem;
}
.header-wrapper ul {
    list-style:none;
    display:flex;
    align-items: center;
    justify-content: center;
    gap:4rem;
    font-weight:300;
}
.menu {
    display:none;
    cursor:pointer;
}
header img {
    width:150px;
}
/***********************/
.dropdown {
    position:relative !important;
    display:none;
    
}
.dropdown-menu {
    position:absolute;
    right:0;
    top:calc(100% + 0.5rem);
    padding:1.5rem;
    background-color:rgb(62, 61, 61);
    box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.1);
    display:grid;
    grid-template-columns:1fr 1fr;
    width:max-content;
    opacity:0;
    transform:translateY(-1rem);
    transition:opacity 0.5s, transform 0.5s;
    pointer-events:none;
    gap:2rem;
   
}
.dropdown-heading > a {
    font-weight:700 !important;
}
.dropdown-links {
    display:flex;
    flex-direction: column;
    gap:0.5rem;
}
.dropdown-links a {
    font-weight:300 !important;
}
.div {
    display:flex;
    flex-direction: column;
    gap:0.5rem;
}

.dropdown.active > .link + .dropdown-menu {
    opacity:1;
    transform:translateY(0);
    pointer-events:all;
    transition:opacity 0.5s, transform 0.5s;

}
.menu + .dropdown-menu {
    padding-block:2rem;
}
.dropdown-heading > p {
    font-weight:700 !important;
}
.dropdown > a {
    font-weight:300 !important;
}
/***********************/
/***********************/
@media (max-width:1050px) {
    nav {
        display:none;
    }
    .dropdown {
        display:block
    }
    .menu {
        display:block;
        width:50px;
    }
    
}
@media (max-width:700px) {
    .header-wrapper {
        padding-inline:4rem;
    }
}
@media (max-width:538px) {
    .dropdown-menu {
        grid-template-columns: 1fr;
    }
}
@media (max-width:500px) {
    .header-wrapper {
        padding-inline:2rem;
    }
}
@media (max-width:464px) {
    .menu {
        width:40px;
    }
}
@media (max-width:350px) {
    .header-wrapper {
        padding-inline:1rem;
    }
}

/***********************/
/***********************/
main {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    background-image:linear-gradient(to top, #151515, rgba(2, 2, 2, 0) 50%), linear-gradient(to right, #151515, rgba(2, 2, 2, 0) 50%),  url(../home-png-none/guitar.png);
    background-repeat:no-repeat;
    background-size: cover;
    z-index:20;
}
.hero-wrapper {
    width:100%;
    max-width:1440px;
    padding:6rem;
    padding-block:14rem;
    display:flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap:1rem;
}
.hero-wrapper h1 {
    font-size:4.5rem;
    font-weight:700;
    line-height:1.2;
    font-family: 'Roboto', sans-serif;
}
.hero-wrapper p {
    width:45%;
}
.hero-buttons {
    display:flex;
    align-items: center;
    justify-content: flex-start;
    gap:2rem;
    margin-top:1rem;
    width:100%;
}
.hero-buttons button {
    padding-inline:3.5rem;
    width:15rem;
    padding-block:0.75rem;
}
.hero-buttons button:hover {
    background-color:#f08c81;
    border-color:#f08c81;
}
.hero-buttons a:nth-child(2)  button{
    background-color:transparent;
}

/***********************/
@media (max-width:1246px) {
    .hero-wrapper p {
        width:55%;
    }
}
@media (max-width:1091px) {
    .hero-wrapper p {
        width:65%;
    }
}
@media (max-width:940px) {
    .hero-wrapper p {
        width:75%;
    }
}
@media (max-width:809px) {
    .hero-wrapper p {
        width:85%;
    }
}
@media (max-width:747px) {
    .hero-wrapper p {
        width:100%;
    }
}
@media (max-width:731px) {
    .hero-wrapper p {
        width:85%;
    }
    .hero-wrapper h1 {
        font-size:4rem;
    }
    .hero-buttons button {
        width:12rem;
    }
    .hero-buttons a {
        width:100%;
    }
}

@media (max-width:700px) {
    .hero-wrapper {
        padding-inline:4rem;
    }
}

@media (max-width:587px) {
    .hero-wrapper p {
        width:100%;
        font-size:0.9rem;
    }
    .hero-wrapper h1 {
        font-size:3.5rem;
    }
    .hero-buttons button {
        width:100%;
    }
    .hero-buttons {
        flex-direction: column;
        width:100%;
    }
}

@media (max-width:512px) {
    .hero-wrapper {
        padding-inline:2rem;
    }
}

@media (max-width:350px) {
    .hero-wrapper {
        padding-inline:1rem;
    }
}

/***********************/
.image-section {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
}

.image-titles h2 {
    font-size:2.25rem;
}
.image-titles {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: space-between;
}


.swiper {
    max-width: 1440px;
    height: auto;
    padding:6rem;
    max-width:1440px;
    position:relative;
    z-index:0;
  }
  .swiper-slide img {
    object-fit:cover;
    width:100%;

  }

.image-gallery::after {
    content:"";
    background-color:white;
    color:white;
    width:50%;
    height:1px;
    position:absolute;
    bottom:0;
    right:0;
}
.swiper-button-next,
.swiper-button-prev {
    color:white;
}
.swiper-pagination-bullet-active {
    background-color: #FFFFFF !important;
}

@media (max-width:700px) {
    .swiper-button-next,
    .swiper-button-prev {
        display:none;
    }
}

/***********************/

@media (max-width:954px) {
    .image-titles {
        flex-direction: column-reverse;
        align-items: flex-start;
        width:100%;
    }
}

@media (max-width:700px) {
    .swiper {
        padding-inline:4rem;
    }
}
@media (max-width:500px) {
    .swiper {
        padding-inline:2rem;
    }
}
@media (max-width:350px) {
    .image-gallery {
        padding-inline:1rem;
    }
}
/***********************/
.video-section {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height:max-content;

}
.video-wrapper {
    padding:6rem;
    width:100%;
    max-width:1440px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:6rem;
    height:max-content;
}
.video-wrapper img {
    width:100%;
}
.video-titles h2 {
    font-size:2.25rem;
}
.video-titles {
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
}
.image-gallery::after {
    content:"";
    background-color:white;
    color:white;
    width:50%;
    height:1px;
    position:absolute;
    bottom:0;
    left:0;
}

.iframe-container {
    position:relative;
    width:100%;
    padding-bottom:52.25%;
    height:0;
}
.iframe-container iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
   
/*********************/
@media (max-width:954px) {
    .video-titles {
        flex-direction: column;
        align-items: flex-start;
        width:100%;
    }
}
@media (max-width:700px) {
    .video-wrapper {
        padding-inline:4rem;
    }
}
@media (max-width:500px) {
    .video-wrapper {
        padding-inline:2rem;
    }
}
@media (max-width:350px) {
    .video-wrapper {
        padding-inline:1rem;
    }
}

/*********************/

h2 {
    font-weight:300;
}
.share {
    font-size:1.5rem;
}
ul {
    list-style:none;
}
/*********************/
footer {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-wrapper {
    width:100%;
    max-width:1440px;
    padding:6rem;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-top {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    border-bottom:1px solid white;
}
.footer-top {
    padding-bottom:6rem;
}
.footer-bottom {
   padding-top:6rem;
}
footer ul {
    display:flex;
    align-items: center;
    justify-content: center;
    gap:4rem;
}
footer li {
    font-weight:200;
}
.footer-bottom li {
    font-size:0.8rem;
}
.social-icons {
    margin-right:4rem;
}
/*****************/
@media (max-width:1035px) {
    .footer-top,
    .footer-bottom,
    .footer-top ul,
    .footer-bottom ul {
        flex-direction: column;
        gap:4rem;
    }
    .social-icons {
        margin-right: 0rem; 
    }
}
@media (max-width:700px) {
    .footer-wrapper {
        padding-inline:4rem;
    }
}
@media (max-width:500px) {
    .footer-wrapper {
        padding-inline:2rem;
    }
}
@media (max-width:350px) {
    .footer-wrapper {
        padding-inline:1rem;
    }
}
/*****************/
.social-banner-wrapper {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    padding-block:.5rem;
    gap:4rem;
    background-color:rgb(47, 47, 47);
    margin-top:-0.75rem;
}
.social-banner-wrapper img {
    width:40px;
}
.social-banner-wrapper a:nth-of-type(2) img {
    width:32px !important;
}
.footer-bottom a {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:1rem;
}
.footer-bottom img {
    width:100px;
}