
* {
  box-sizing: border-box;
  user-select: none;
}


body {
  margin: 0;
  padding: 0;
  height: 600vh;
  color: var(--color-white);
}

section {
  height: 100%;
  width: 100%;
  top: 0;
  position: fixed;
  visibility: hidden;

  background: url("../assets/Background_tile.svg");
 
  .outer,
  .inner {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
  }

  .bg {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position:absolute;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-size: cover;
    background-position: center;

    h2 {
      z-index: 999;
    }

    .clip-text {
      overflow: hidden;
    }
  }
}

.video_container{
    display: flex;
    flex-direction: column;

    /* wraps the flex items in multiple line */
    flex-wrap: wrap;
    justify-content: center;
    align-content : center;

   
}

#video_section{
    width: 100%;
    height: 200px;
    margin-top: 55px;
}

#video_section > video {
    width: 100%;
    height: 180px;
    align-self : center;

}

h2{
  margin-top: 0;
}

#info_section{
    width:100%;
    height: 350px;
   align-items : center;
}

#info_section > h2{
    font-size: var(--h2-responsive-size);
    
}

.description-p{
    font-size: var(--body4-size);
    color: var(--color-white);
    margin-left: 20px;
    margin-right: 20px;
}

.description-p{
    color: var(--color-white);
}


.promotional-description{

   display: flex;
  text-align: center;
    flex-direction: column;
 color:var(--color-white);

}

.btn-scroll{
    margin-left: 5%;
    
}

#contact-networks{
  display: flex;
  flex-direction: column;
  height: 500px;
}

#container-networks{
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-network{
  display: flex;
  flex-direction: row;
  align-content: center;
  height: 50px;
}

.item-network > a{
  height:30px;
  width: 30px;

  margin-top: 30px;
}

.item-network > a > img{
  height:30px;
  width: 30px;
}

.network-txt{
  color: var(--color-white);
  font-size: var(--body1-size);
  margin-left: 20px;
}

#subtitle{
  padding: 0;     
   
}

.subtitle-p{
  padding: 0;
}

p{
  font-size: var(--caption2-size);
}

@media screen and (min-width: 768px){

  

section {.bg{
    flex-direction: row;
    flex-wrap: nowrap;
}
}
#video_section{
    height: 600px;
}

#video_section > video{
    height: 500px;
}

#info_section{
    width:100%;
    height: 600px;
}

section{
    margin-top: 80px;
}



}