@import './colors.css';









/* ------------ Landing Section ------------ */

.landing-image-container {
  background-image: url(../assets/images/landing-page/home-header-bk-Mobile.jpg);
}



/* ------------ Information Section ------------ */


/* Section one */

.information-sec-one {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.information-sec-one > * {
  margin: 1em 0;
}

.information-sec-one > h2 {
  max-width: 25em;
}

.information-sec-one > p {
  font-weight: 400;
}




/* Section three */

.information-sec-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2em;
}

.information-sec-three > img {
  width: 100%;
  height: auto;
  max-width: 40em;
}

.information-descrition-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.information-descrition-text > h3, h2 {
  color: #0072c0;
  margin: 0.4em 0px;
}

.value-my-tesla > h2{
    margin:auto;
}

.value-my-tesla > ul {
    list-style-type: circle;
    margin-left: 5em;
    margin-bottom: 2em;
}

.value-my-tesla > p{
    margin-bottom: 2em;
}

.vlt-accordion {
    width: 100%;
}

/* ------------ Video Panel ---------------*/
.video-panel {
    background-color: #f2f2f2;
    padding: 2em 0;
    margin: 2em 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly
}

.video-panel-text {
    width: 50%;
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
}
.video-panel-video {
    height: 25em;
    margin: 0 4em;
}
/* ------------ Responsive Breakpoints ------------ */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Medium devices (landscape tablets, 601px and up) */
@media only screen and (min-width: 601px) {
  
}


@media only screen and (min-width: 768px) {
  .landing-image-container {
    background-image: url(../assets/images/landing-page/home-header-bk.jpg);
  }
}  


/* Large devices (laptops/desktops, 1024px and up) */
/* This is probably the one I'll be using more than anything. */
@media only screen and (min-width: 1024px) {
    .video-panel-text {     
        display: flex;
    }
  .landing-container {
    height: calc(100vh - 12vh);
  }

  /* ------------ Common ------------ */
  h1 {
    font-size: 30pt;
  }

 .content-container {
  width: 50%;
 }

    .vlt-accordion {
        width: 70%;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1216px) {

  .information-sec-three {
    flex-direction: row;
    align-items: center;
    padding: 0 2em;
  }

  .information-descrition-text {
    display: flex;
    align-items: flex-start; 
    margin: 0 2.5em 0 5em;
  }

   .vlt-accordion{
       width: 60%;
   }
}