/*=== GLOBAL STYLES ============================*/

* {
    box-sizing: border-box;
}

html,
body {  
    border: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.7;  
    font-size: 18px;
    font-family: 'Archivo', sans-serif;
    color: #f5f5f5;
    background-color: black;
}


/*=== IOS Input Reset ==========================*/

input, textarea {
    border-radius: 0;
    -webkit-border-radius:0px;
}

input:focus {
    outline:none;
}

html {
    -webkit-text-size-adjust: 100%; 
    -moz-text-size-adjust: 100%; 
    -ms-text-size-adjust: 100%;
}


/*=== HEADER ================================*/

header h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

header h1 img {
    display: block;
    width: 280px;
    margin: auto;
}

header div{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.header-image {
    display: block;
    width: 250px;
    border-radius: 50%;
    margin: auto;
}

/*--- NAVIGATION ---*/

.hamburger {
    font-size: 32px;
    cursor:pointer;
    color: whitesmoke;
    margin-left: 20px;
}

.nav-music-links {
    display: flex;
    text-align: center;
    margin: 20px 40px 0 40px;
}

.nav-music-links img {
    height: 46px;
    width: auto;
}

.nav-music-links a {
    width: 100%;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 98;
    background-color: transparent;
    padding-top: 5px;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: whitesmoke;
    display: block;
    transition: 0.3s;
}

.overlay .active {
    color: #3611d3;
    font-weight: bold;
}

.nav-social-links {
    display: flex;
    width: 300px;
    text-align: center;
    margin: 40px auto 0 auto;
}

.nav-social-links a {
    display: block;
    margin: auto;
}



@media screen and (max-height: 450px) {
    .overlay {
        overflow-y: auto;
    }

    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


/*=== MAIN SECTIONS ============================*/

h2,
h3 {
    text-align: center;
}

.intro-section {
    margin: 0 20px;
    padding: 20px 0 40px 0;
}

.new-release-section {
    margin: 0 20px;
    padding: 40px 0;
}


.featured-section {
    margin: 0 20px;
    padding: 40px 0;
}

.featured-section h3 {  
    font-size: 20px;
}

.featured-section .audio-controls {
    width: 100%;
    background-color: rgb(48, 48, 48);
}

.featured-section .audio-controls audio {
    border: none;
}


.my-work-section {
    margin: 0 20px;
    padding: 40px 0;
}

.what-they-say-section {
    margin: 0 20px;
    padding: 40px 0 40px 0;
}

/*--- CONTACT SECTION ---*/

.contact-section {
    margin: 0 20px;
}

.contact-image {
    width: 100%;
    margin-top: 20px;
}

input[type=text] {
    text-align: center;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    border: none;
    border-radius: 5px;
}

textarea {
    height: 150px;
    text-align: center;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    border: none;
    border-radius: 5px;
}

.submit input {
    width: 100%;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    background-color: black;
    color: whitesmoke;
    border: 2px solid whitesmoke;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
}

.submit input:hover {
    font-weight: bold;
    color: black;
    background-color: whitesmoke;
}

.radio-email-container {
    text-align: center;
    font-size: 22px;
    padding: 20px 0;
}

.yes {
    width: 50%;
    margin: auto;
}

/* The container */

.radio-email {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 24px;
}

/* Hide the browser's default radio button */
.radio-email input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: whitesmoke;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-email:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-email input:checked ~ .checkmark {
  background-color: #3611d3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-email input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-email .checkmark:after {
 	top: 16px;
	left: 16px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}


/*=== FOOTER ===================================*/

footer {
    text-align: center;
}

.social-link-section {
    margin-top: 20px;
    margin-bottom: 40px;
}

.social-link-section a {
    margin: 5px 15px;
}

.social-link-section a img {
    height: 42px;
    width: auto;
}

.music-link-section a {
    margin: 5px 15px;
}

.music-link-section a img {
    height: 42px;
    width: auto;
}

.footer-credits {
    margin-top: 40px;
}

.footer-credits a {
    text-decoration: none;
    color: whitesmoke;
} 


/*=== IMAGES ===================================*/

.main-image {
    width: 100%;
}

/*--- SLIDESHOW ---*/

.slideshow-container {
    position: relative;
}

/* Slides */

.mySlides {
    display: none;
    padding: 0 50px;
    text-align: center;
    height: 300px;
}

/* Next & previous buttons */

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 30%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: rgb(219, 210, 210);
    font-weight: bold;
    font-size: 24px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    position: absolute;
    left: 0;
    border-radius: 3px 0 0 3px;    
}

/* Position the "next button" to the right */

.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;   
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover, .next:hover {
    color: #3611d3;
    background-color: whitesmoke;
    transition: all .5s;
} 

/* Add an italic font style to all quotes */

q {
    font-style: italic;
}


/*=== AUDIO PLAYER ==============================*/

/*--- AUDIO PLAYER ---*/

.audio-container {
    height: 100px;
    text-align: center;
    background-color: rgb(48, 48, 48);
    margin: 0 auto 30px auto;
}

.audio-controls-container {
    display: flex;
    height: 100px;
}

.audio-controls audio {
    width: 100%;
}

.audio-controls h4 {
    font-size: 22px;
    margin: 5px auto 0 auto;
}

#single-version-header {
    font-size: 18px;
}

.audio-controls-container img {
    height: 100px;
    width: 100px;
}

.audio-controls-container .audio-controls {
    width: 65%;
    margin: auto;
}

audio::-webkit-media-controls-panel {
    background-color: rgb(48, 48, 48);
}

audio::-webkit-media-controls-play-button {
    background-color: whitesmoke;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: whitesmoke;
}

audio::-webkit-media-controls-volume-slider-container,
audio::-webkit-media-controls-volume-slider {
    color: white;
    background-color: white;
}

/*--- SPOTIFY IFRAME ---*/

.spotify-iframe {
    width: 100%;
    height: 85px;
    border: none;
}

.spotify-playlist-iframe {
    height: 400px;
    width: 100%;
    border: none;
}

.featured-iframe {
    width: 335px;
    margin: 20px auto 40px auto;

}

.featured-iframe iframe {
    border: none;
    border-radius: 10px;
}

/*=== VIDEO PLAYER ==============================*/

/*--- RESPONSIVE VIDEO 16:9 ---*/

.responsive-iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;  
    padding-top: 75%; /* 4:3 Aspect Ratio  */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/*=== BUTTONS / LINKS ==========================*/

.text-link {
    color: whitesmoke;
}

.button {
    display: block;
    width: 290px;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    color: white;
    background-color: rgb(0, 0, 0, 0.4);
    border: 2px solid hsl(0, 0%, 100%);
    padding: 15px;
    border-radius: 20px;
    margin: auto;
}

.featured-section .button {
    margin-top: 20px;
}


/*=== MYPORTFOLIO PAGE =========================*/

.soundcloud-section {
    margin: 0 20px;
    padding: 40px 0 0 0;
}

.soundcloud-container iframe {
    height: 680px;
    width: 100%;
    border: none;
    font-size: 30px;
}

.spotify-section {
    margin: 0 20px;
    padding: 40px 0 0 0;
}

.collaborations-section {
    margin: 0 20px;
    padding: 20px 0 0 0;
}

.video-section {
    margin: 0 20px;
}

.license-music-here-section {
    text-align: center;
    margin: 0 20px;
    padding: 60px 0 0 0;
}

.pond5-icon img {
    height: 50px;
    margin: 10px 0;
}

.songtradr-icon img {
    height: 48px;
    width: auto;
    margin: 10px 0;
}

.audiosparx-icon img {
    height: 28px;
    width: auto;
    margin: 10px 0;
}

.soundbetter-icon img {
    margin: 10px 0;
    height: 38px;
    width: auto;
}


/*=== HYPERFOLLOW PAGE ===========================*/

.hyper-link-header { 
    margin-top: 28px;
}

.hyper-link-header img {
    display: block;
    width: 200px;
    margin: auto;
}

.hyper-link-header-image:hover {
    opacity: 0.6;
    transition: all .5s;
}

.hyper-link-header h1 {
    font-size: 33px;
    margin: 29px 0 0 0;
}

.hyper-link-header h2 {
    font-size: 20px;
    margin-top: 10px;
}

.hyper-link-header a h2:hover {
    color: #3611d3;
    opacity: 0.8;
    transition: all .5s;
}

.hyper-social-links {
    display: flex;
    width: 65%;
    margin: auto;
}

.hyper-social-link-container {
    padding: 6px;
    background-color: rgb(70, 61, 61);
    border-radius: 50%;
    margin: 0 auto;
}

.hyper-social-link-container a img {
    width: 40px;
    border-radius: 50%;
}

.hyper-button {
    width: 85%;
    display: flex;
    height: 62px;
    font-size: 18px;
    position: relative;
    color: white;
    background-color: rgb(82, 82, 82);
    margin: 20px auto;
    border-radius: 10px;
}

.hyper-button:hover {
    opacity: 0.6;
    transition: all .5s;
}

.hyper-title {
    margin: 0 0 0 100px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgb(82, 82, 82);
}

.hyper-logo img {
    height: 62px;
    border-radius: 10px 0 0 10px;
}




/* BEGIN FIRST MEDIA QUERRY HERE ------------------------------------------------------------------*/
/* media query screen=below 768px -----------------------------------------------------------------*/

@media (min-width: 767px)  { 

/*=== HEADER ================================*/

.header-image {
    width: 290px;
}

header h1 img {
    width: 490px;
}

header div {
    font-size: 24px;
}

/*--- NAVIGATION ---*/

.hamburger {
    font-size: 48px;
    margin-left: 40px;
}

nav {
    padding-top: 20px;
}

.nav-music-links {
    margin: auto;
    width: 40%;
}


/*=== MAIN =====================================*/

h2 {
    font-size: 32px;
}

.intro-section,
.new-release-section,
.featured-section,
.my-work-section,
.what-they-say-section,
.spotify-section,
.video-section,
.collaborations-section,
.license-music-here-section,
.soundcloud-section {
    width: 60%;
    margin: auto;
}

.featured-section h3 {  
    font-size: 28px;
}

#single-version-header {
    font-size: 22px;
}


/*=== FOOTER ===================================*/

footer {
    padding-top: 40px;
}
.social-link-section a {
    margin: 5px 24px;
}

.social-link-section a img {
    height: 60px;
}

.music-link-section {
    margin-bottom: 60px;
}

.music-link-section a {
    margin: 5px 24px;
}

.music-link-section a img {
    height: 60px;
}


/*=== CONTACT PAGE =============================*/

.contact-section {
    width: 60%;
    margin: 0 auto;
    padding: 0;

}

.contact-image {
    display: block;
    width: 60%;
    margin: 40px auto;
}

.yes {
    width: 35%;
}


/*=== HYPERLINK PAGE ===========================*/

.hyper-link-header {
    width: 357px;
    margin: auto;
    padding-top: 80px;
}

.hyper-link-header img {
    width: 357px;
}

.hyper-button {
    width: 375px;
}


/*=== HOVER / TRANSITIONS ======================*/

h1 img:hover {
    opacity: 0.6;
    transition: all .5s;
}

.overlay a:hover, .overlay a:focus {
    color: #3611d3;
    opacity: 0.6;
    transition: all .5s;
}

.button:hover {
    font-weight: bold;
    color: black;
    background-color: whitesmoke;
    border: 2px solid whitesmoke;
    transition: all .5s;
}

.logo:hover {
    opacity: 0.6;
    transition: all .5s;
    transform: scale(1.3);
}

.my-work-section a img:hover {
    opacity: 0.6;
    transition: all .5s;
}

footer a:hover {
    opacity: 0.6;
    transition: all .5s;
}

.license-music-here-section a:hover {
    opacity: 0.6;
    transition: all .5s;
}

div a img:hover {
    opacity: 0.6;
    transition: all .5s;
}

.audio-controls-container:hover {
    opacity: 0.6;
    transition: all .5s;
}

.spotify-iframe-container:hover {
    opacity: 0.6;
    transition: all .5s;
}

.featured-iframe {
    width: 492px;
}

.text-link:hover {
    color: #3611d3;
    transition: all .5s;
}


}



/* BEGIN FIRST MEDIA QUERRY HERE ------------------------------------------------------------------*/
/* media query screen=below 1280px -----------------------------------------------------------------*/

@media (min-width: 1280px)  { 

body {
    font-size: 22px;
}

/*=== HEADER ================================*/

header h1 img {
    width: 768px;
}

.header-image {
    width: 400px;
}

header div {
    font-size: 28px;
}

/*--- NAVIGATION ---*/

.hamburger {
    font-size: 32px;
    cursor:pointer; 
    color: whitesmoke;
    margin-left: 20px;
}

.nav-music-links {
    width: 30%;
}


/*=== MAIN =====================================*/

.intro-section {
    width: 50%;
    padding-top: 40px;
}

.featured-section,
.my-work-section,
.what-they-say-section,
.spotify-section,
.video-section,
.collaborations-section,
.license-music-here-section,
.soundcloud-section {
    width: 50%;
    padding-top: 40px;
}

.social-link-section a img,
.music-link-section a img {
    height: 55px;
    margin-left: 20px;
    margin-right: 20px;
}



.responsive-iframe-container {
    margin-bottom: 40px;
}

/*--- CONTACT SECTION ---*/

.contact-section {
    width: 50%;
    margin: 0 auto;
    padding: 0;

}

.contact-image {
    display: block;
    width: 50%;
    margin: 40px auto;
}

.yes {
    margin-top: 40px;
}


/*=== FOOTER ===================================*/

footer {
    padding-top: 80px;
}


/*=== BUTTONS / LINKS =======================*/

.button {
    width: 300px;
    margin: auto;
}


/*=== HYPERLINK PAGE ===========================*/

.hyper-link-header {
    width: 357px;
    margin: auto;
    padding-top: 100px;
}

.hyper-button {
    width: 50%;
}

.featured-iframe {
    width: 492px;
    margin: 40px auto 40px auto;
}



}