/*=== GLOBAL STYLES ============================*/

html,
body {  
    border: 0px;
    width: 100%;
    margin: 0px;
    padding: 0px;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    color: #f5f5f5;
    background-color: rgb(0, 0, 0);
}

/*--- IOS Input Reset ----*/

input, textarea {
    border-radius: 0;
    -webkit-border-radius:0px;
}

html {
    -webkit-text-size-adjust: 100%; 
    -moz-text-sze-adjust: 100%; 
    -ms-text-size-adjust: 100%;
}


/*=== HEADER =====================================*/

/*--- INDEX PAGE HEADER ---*/

.header_bg {
    transition: .3s;    
}

.index-header .fixed-header {
  background-image: url("../images/small-header-image.png");
  height: 493px;
  text-align: center;
  position: fixed;
  top: 15px;
  width: 100%;
  transform: translateZ(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  -webkit-transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  background-position: center top; 
  background-size: 335x;
}

.index-header .fixed-header h1 {
    margin: 0;
}

/*--- NAVIGATION ---*/

.navigation {
  position: fixed;
  top: 0;
  z-index: 99;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 5%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  z-index: 99;
}

.overlay a {
  cursor: grab;
  padding: 8px;
  text-decoration: none;
  font-size: 28px;
  color: #d6ec1a;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: white;
  opacity: 1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px
  }
}


/*=== MAIN CONTENT ===============================*/

main {
    position:relative;
    background-color: rgb(0, 0, 0, 0.6);
}

h2 {
    text-align: center;
    color: #d6ec1a;
  }
  
.intro-section {
  width: 335px;
  margin: 460px auto 40px auto;
  padding: 0 0 10px 0;
  opacity: 0.99;
}

.section {
  width: 335px;
  margin: 40px auto;
  padding: 10px 0 10px 0;

}

/*--- ACCORDION CSS ---*/

.accordion {
  background-color: transparent;
  color: #d6ec1a;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  color: #f5f5f5;
}

.panel {
  display: none;
  overflow: hidden;
}

/*--- CONNECT SECTION ---*/

::placeholder {
  color: #f5f5f5;
  opacity: 1; /* Firefox */
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #f5f5f5;
  font-family: 'Roboto', sans-serif;
}

input[type="text"], textarea {
  border: none;
  outline: none;
}

#connect {
  text-align: center;
  width: 335px;
  margin: auto;
}

#connect input {
  height: 40px;
  width: 335px;
  margin: auto;
  text-align: center;
  font-size: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #f5f5f5;
  color: #f5f5f5;
  background-color: black;
}

#connect textarea {
  height: 200px;
  width: 335px;
  margin: auto;
  text-align: center;
  font-size: 20px;
  border: 2px solid #f5f5f5;
  background-color: black;
  color: #f5f5f5;
  border-radius: 10px;
  padding-top: 20px;
}

#connect .submit input {
  height: 50px;
  width: 100%;
  border: none;
  border-radius: 10px;
  color: black;
  background-color: #d6ec1a;
  font-weight: bold;
  margin-top: 20px;
}


/*=== IMAGES =============================*/

.main-image {
  width: 100%;
}

iframe {
  height: 200px;
  width: 335px;
  border: none;
}


/*=== BUTTONS / LINKS ====================*/

.text-link {
  color: #d6ec1a;
}
  
.link-button {
  display: block;
  width: 240px;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 10px;
  background-color: #d6ec1a;
  color: black;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  margin: auto;
}

.contact-socials {
  text-align: center;
  width: 335px;
  margin: 0 auto;
  padding: 10px 0 10px 0;
}

.contact-socials a {
  margin: 10px;
}

.menu-socials {
  display: flex;
  justify-content: center;
}



/*=== FOOTER =============================*/

footer {
  text-align: center;
}

footer a {
  display: block;
  color: #d6ec1a;
}
  

/*=== HOVER/TRANSITIONS ==================*/

.menu-socials a:hover,
.submit input:hover,
.contact-socials a:hover,
input:hover,
textarea:hover,
footer a:hover {
  opacity: 0.6;
  transition: 0.3s;
}




/* BEGIN SECOND MEDIA QUERRY HERE -----------------------------------------------------------------*/

/* media query screen=below 769px -------------------------------------------------------*/

@media (min-width: 768px)  {  

.index-header .fixed-header {
  background-size: 450px;
  height: 600px;
}


/*=== MAIN CONTENT =======================*/

.intro-section {
  width: 500px;
  margin-top: 580px;
}

.section {
  width: 500px;
}

.connect-section {
  width: 500px;
}

iframe {
  width: 500px;
}

}



/* BEGIN THIRD MEDIA QUERRY HERE -------------------------------------------------------------------*/
/* media query screen=below 1280px -------------------------------------------------------*/

@media (min-width: 1280px)  { 


/*=== MAIN CONTENT =======================*/

.intro-section {
  margin-top: 580px;
  width: 750px;
}

.section {
  width: 750px;
}

iframe {
  width: 750px;
}

}