body {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Zen Maru Gothic", serif;
}

h2 {
    text-align: center;
    font-size: 33px;
}

a {
    font-family: "Manrope", sans-serif;
    text-decoration: none;
}

p, span{
    font-family: "Manrope", sans-serif;
}

.container {
    max-width: 1490px;
    padding: 0 20px;
    margin: 0 auto;
}

header {
    background: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

header .container{
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    gap: 40px;
    padding: 0 0 0 20px;
    margin: 0;
    font-family: "Manrope", sans-serif;
}

header nav.active {
    display: flex;
}

header nav > a {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-size: 15px;
    color: #000;
}

header #menu-btn {
    width: 25px;
    height: 18px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    position: relative;
    display: none;
}

header #menu-btn::before {
    content: '';
    width: 25px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

header #close-menu-btn {
    display: none;
}

.slide {
    position: relative;
    font-size: 0;
    height: 100vh;
    background-size: cover;
    background-position-x: 50%;
}

.slide .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 2;
    top: 0;
    left: 0;
}

.slide h3 {
    font-size: 50px;
    color: #fff;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 3;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.scroll-down {
    height: 55px;
    width: 30px;
    border: 2px solid #fff;
    border-radius: 20px;
    z-index: 999;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%);
}

.scroll-down:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    top: -25px;
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes scroll {
  0%   {opacity: 0; top:-25px;}
  50%  {opacity: 1; top: 50%;}
  100% {opacity: 0; top: calc(100% + 25px);}
}

.main-header {
    padding: 60px 0;
    text-align: center;
}

.main-header h2 {
    margin: 0;
}

.cropped-image {
    position: relative;
    overflow: hidden;
    font-size: 0;
}

.cropped-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-right: 45px solid transparent;
    border-top: 400px solid #fff;
}

.cropped-image::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-bottom: 400px solid #fff;
}

.cropped-image img {
    width: 100%;
}

footer {
    box-shadow: 0px 4px 9px 0px rgba(0,0,0,0.75);
}

#contact .contact-data {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

#contact .contact-data .contact-detail {
    display: flex;
    white-space: nowrap;
    align-items: center;
    flex: 0 0 33%;
    margin: 0 0 20px 0;
}
#contact .contact-data .contact-detail:nth-child(2) {
    justify-content: center;
}
#contact .contact-data .contact-detail:nth-child(3) {
    justify-content: right;
}
#contact .contact-data .contact-detail img {
    margin: 0 30px 0 0;
}
#contact .contact-data .contact-detail a {
    font-size: 16px;
    font-weight: 500;
    color: #2B2E34;
}

#contact .contact-data .contact-social {
    flex: 0 0 100%;
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 40px 0;
}

#contact .contact-social img {
    width: 26px;
}

.overlay2 {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #00000054;
    z-index: 8;
}

#gallery {
    background: #231F20;
    padding: 1px 0 60px 0;
}

#gallery .main-header {
    color: #fff;
}

#gallery .videos {
    display: flex;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
}

#gallery .videos .video-cnt {
    flex: 0 0 33%;
    padding: 10px 15px;
    box-sizing: border-box;
}

#gallery .videos .video-cnt iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
    max-width: 100%;
}

@media (max-width: 1200px) {
    h2 {font-size: 30px;}
    .slide h3 {font-size: 40px;}
    #gallery .videos {overflow: scroll}
    #gallery .videos .video-cnt {flex: 0 0 45%;}
}

@media (max-width: 992px) {
    #about-me .container h2 {font-size: 26px;}
    header nav {gap: 30px;}
    #contact h2 {
        font-size: 26px;
    }
}

@media (max-width: 864px) {
    #contact .contact-data {flex-direction: column;}
    #contact .contact-data .contact-detail {justify-content: center !important;}
    #gallery .videos .video-cnt {flex: 0 0 65%;}
}

@media (max-width: 768px) {
    #logo {max-width: 120px;}
    header nav {
        display: none;
        position: fixed;
        height: 100%;
        background: #fff;
        top: 0;
        width: 300px;
        right: 0;
        z-index: 9;
        padding: 40px 0;
        flex-direction: column;
        text-align: center;
    }
    .main-header {padding: 40px 0;}
    header #menu-btn {display: block;}
    header #close-menu-btn {
        display: block;
        position: absolute;
        width: 20px;
        height: 20px;
        top: 10px;
        right: 10px;
    }
    header #close-menu-btn::before {
        content: '';
        height: 20px;
        width: 2px;
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        background: #000;
    }
        header #close-menu-btn::after {
        content: '';
        height: 20px;
        width: 2px;
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        background: #000;
    }
}

@media (max-width: 576px) {
    .slide h3 {font-size: 35px;}
    #gallery .videos {
        white-space: unset;
        flex-wrap: wrap;
    }
    #gallery .videos .video-cnt {flex: 0 0 100%;}
        #sound-services .brands {
        margin: 40px auto 40px auto;
    }
}
