/* CSS Document */

/* X------------------------------------------ Container Corpo */
.container_02 {
  background: rgb(225,232,242);
  background: linear-gradient(0deg, rgba(225,232,242,1) 0%, rgba(225,232,242,0.8) 0%);
  width: 100%;   /* Largura estende por toda p?gina da div */
  height: auto;   /* Altura da div */ 
}
.container_02 div{
  border-left: rgba(207,207,207,1) solid 1px;   
}
.cab0{
  padding: 35px 5% 0% 10%;
  font-size: 40px;
  color : #808080;
}
.p1{
  font-size: 25px;
  font-weight: bold;
}
.vid {
  width: 500px;   /* Largura estende por toda p?gina da div */
  height: auto;   /* Altura da div */ 
}
.p2{
    font-size: 17px;
}

/* X---------------- Diminuição da Tela ------------- */
@media screen and (max-width:900px) {
  .cab0{
    padding: 35px 5% 0% 5%;
    font-size: 30px;
  }
  .p1{
    font-size: 20px;
  }
}
@media screen and (max-width:600px) {
  .cab0{
    font-size: 20px;
  }
  .p1{
    font-size: 15px;
  }
  .p2{
    font-size: 12px;
  }
  .vid {
    width: 250px;   /* Largura estende por toda p?gina da div */
  }
}