*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    margin-bottom: 0;
    
}

body {
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
    background-color:#C63435 ;
 
     
}
:root{
    --primary_color:#C63435 ;
}
/*Navbar*/

.header{
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 10;
    background-color: #C63435;
    
    
}
.header_container{
    max-width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 0px 5px black;
    display: flex;
}
.logo_soundkast{
 margin-left: 50px;
}
.logo{
    height: 100px;
}
.menu{
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    
}
.navbar{
    
    margin-right: 0px;
}
.navbarul{
    display: flex;
    
}
.navbar_items{
    margin-right: 20px;
    list-style: none;
    display: block;
    color: white;
    padding:8px 15px;
    
}
a:link{
    color: white;
}
a:visited{
    color: white;
}

.navbar_items a:hover{
    color: black;
    padding:8px 15px;
    background-color: white;
    display: inline-block;
    transition: all 300ms;
    border-radius: 5px;
    border: 2px solid black;
}
.contacto{
    background-color: black;
    padding:8px 40px;
    display: block;
    border-radius: 5px;
    border: 2px solid black;
    color: white;
}
.contacto:hover{
    background-color: white;
    color: black;
    border: 2px solid black;
    transition: all 300ms;
    
    
}
.redes{
    background-color: white;
    margin-right: 30px;
    border-radius: 3px;
    
    
}
.redes_img{
    width: 38px;
    height: 38px;
    display: flex;
    border-radius: 3px;
    
}
#icon-menu{
    width: 30px;
    height: 30px;
    position: relative;
    right: 20px;
    top: 30px;
    z-index: 20;
    align-items: center;
    cursor: pointer;
    display: none;
    padding-bottom: 10px;
    padding-bottom: 0px;
    padding-left: 3px;
    padding-right: 3px;
}
#icon-menu:hover{
    background-color: white;
    transition: all 300ms;
    border: 1px solid black;

    
}


/*main*/
main{
    height: 100%;
    width: 100%;
    background-image: url('../Images/bgf.avif');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    padding-bottom: 200px;
    padding-top: 200px; 
   
}


.cover{
    max-width: 1200px;
    display: flex;
    align-items: center;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 100px;
	width: 100%;
	margin:auto;
	
    flex-direction: column;
}
.text_cover{
    width: 800px;
    height: auto;
    margin:auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #C63435;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0px 0px 5px black;
    
}
.text_cover h1{
    color: var(--color_text_primary);
    text-align: center;
    font-weight: 350;
    margin-bottom: 10px;
    color: white;
    font-size: 50px;

}
.text_cover h2{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    color: white;
    margin: auto
    ;

}
.boton1{
    color: white;
    background-color: black;
    width: 200px;
    height: 30px;
}
.img_cover{
    width: 500px;
}
.flyer{
    width: 500px;
}
.main-article{
    margin-top: 50px;
    margin-bottom: 50px;
    color: white;
    background-color: var(--primary_color);
    padding:10px;
    height: auto;
    width: 800px;
    box-shadow: 0px 0px 5px black;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
.card {
    width: 300px;
    margin: 10px;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    background-color: black;
    color: white;
    box-shadow: 0px 0px 5px black;
    
}
  
.card img {
    width: 280px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}
  
.card h2 {
    font-size: 20px;
    margin-bottom: 5px;
}
  
.card p {
    font-size: 16px;
}
.card a{
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--primary_color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    margin: 0px 10px;
    
}
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--primary_color);
    padding: 10px;
    color: white;
    margin-top: 0;
    border-radius: 5px;
    box-shadow: 0px 0px 5px black;
    margin-top: 200px;
  }
  dialog{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .close{
      width: 20px;
      position: absolute;
      margin-left: 460px;
      background-color: black;
      color: white;
  }
  
  label {
    margin-top: 10px;
  }
  
  input[type="text"],
  input[type="number"],
  input[type="email"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  input[type="submit"] {
    padding: 10px;
    background-color: black;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #555;
  }
  .radioinput{
      
      margin: auto;
      margin-bottom: 10px;
      flex-direction: column;
  }
  form h3{
      margin-bottom: 10px;
  }



/*footer*/
.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #C63435;
    color: white;
    height: 100px;
    display: inline-flex;
    align-items: center;
    box-shadow: 5px 0px 5px  black;
    justify-content: space-between;
}
.footer p{
    margin-left: 50px;
    
}
.redes1{
    margin-right: 50px;
    border-radius: 3px;
    display: inline-flex;
}
.redes1 a{
    margin-left: 15px;
}
.phonelogo{
    width: 38px;
    height: 38px;
    display: none;
}
/*servicios*/
.main1{
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #E4E4E4,#C63435);
    padding-top: 200px;
    padding-bottom: 300px;
}
.card-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card2 {
    width: 500px;
    border: 1px solid black;
    border-radius: 10px;
    margin: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    text-align: center;
}
.card2:hover {
    transform: scale(1.05);
}
.card2 img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.card2 h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.card2 p {
    font-size: 16px;
    margin-bottom: 5px;
}
.card2 a {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--primary_color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 0px 5px black;
}
.card2 a:hover {
    background-color: black;
    color: white;
}

/*radio*/

.main4{
    height: 100%;
    background-color:  black;
    align-items: center;
    text-align: center;
    padding-top: 200px;
    padding-bottom: 200px;    
}
.radio{
    padding-top: 10px;
    padding-bottom: 10px;
    width: 770px;
    color: white;
    font-weight: 100;
    background-color: var(--primary_color);
    margin: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    
    
}

.radiowid2{
    display: none;
}
/*ubicacion*/
.main3{
    height: 100%;
    background-color: none;
    color:white;
    align-items: center;
    padding-top: 140px;
    
}



.google_map iframe {
    height: 65%;
    width: 100%;
    
    
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}
/*Reservas*/
.main5{
    width: 100%;
    height: 100vh;
    background-color: white;
    align-items: center;
    padding-top: 100px;
}
.calendar_container{
    
    background-color: white;
    padding-bottom: 100px;
    
}
.payment_container{
    width: 100%;
    background-color: white;
    

    
}
.pay{
    width: 325px;
    margin: auto;
    bottom: 200px;
}
/*Doblaje página*/
.doblaje{
    
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
}

.article_doblaje{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_doblaje h1{
    margin-bottom: 10px;
}
.article_doblaje p{
    margin-bottom: 10px;
}

.doblaje2{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;
}
.doblaje2 h2{
    margin-bottom: 20px;
}
.article_doblaje2{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.doblaje_img{
    width: 580px;
}
.doblaje_img2{
    width: 580px;
}
.doblaje3{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;
}
.doblaje3 h2{
    margin-bottom: 20px;
}
.article_doblaje3{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_doblaje3 p{
    margin-bottom: 10px;
}

.doblaje4{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;
}
.doblaje4 h2{
    margin-bottom: 20px;
}
.article_doblaje4{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.doblaje5{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    
    color: white;
    
}
.doblaje5 h3{
    margin-bottom: 20px;
}
.article_doblaje5{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
/*locucion página*/
.locucion{
    
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
}

.article_locucion{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.locucion_img{
    width: 580px;
}
.locucion h1{
    margin-bottom: 10px;
}
.locucion h2{
    margin-bottom: 10px;
}
.locucion h3{
    margin-bottom: 10px;
}
.locucion p{
    margin-bottom: 10px;
}
.locucion2{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;
    padding: 10px;
}

.article_locucion2{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_locucion2 h2{
    margin-bottom: 10px;
}
.article_locucion2 p{
    margin-bottom: 10px;
}
.article_locucion2 h3{
    margin-bottom: 10px;
}
.locucion_img2{
    width: 560px;
}
.locucion3{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding: 10px;
    color: white;
}

.article_locucion3{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_locucion3 h2{
    margin-bottom: 10px;
}
.article_locucion3 p{
    margin-bottom: 10px;
}
.article_locucion3 h3{
    margin-bottom: 10px;
}
/*página radio*/
.pradio{
    
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
}

.article_pradio{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;

}
.article_pradio h1{
    margin-bottom: 10px;
}
.article_pradio h2{
    margin-bottom: 10px;
}
.article_pradio p{
    margin-bottom: 10px;
}


.pradio2{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;

}

.article_pradio2{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.pradio3{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;

}

.article_pradio3{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}

.pradio4{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 20px;
    color: white;
}

.article_pradio4{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_pradio4 h2{
    margin-bottom: 10px;
}
.article_pradio4 p{
    margin-bottom: 10px;
}
.pradio5{
    width: 600px;
    margin: auto;
    text-align: justify;
    margin-top: 50px;
    padding-bottom: 200px;
    color: white;
}

.article_pradio5{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_pradio5 h3{
    margin-bottom: 10px;
}
/*página podcast*/
.podcast{
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
    margin-bottom: 50px;
}
.article_podcast{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.article_podcast h1{
    margin-bottom: 10px;
}
.article_podcast p{
    margin-bottom: 10px;
}
.article_podcast h2{
    margin-bottom: 10px;
}

.podcast2{
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
    margin-bottom: 50px;
}
.article_podcast2{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.podcast3{
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
    margin-bottom: 50px;
}
.article_podcast3{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.podcast4{
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
    margin-bottom: 50px;
}
.article_podcast4{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
.podcast5{
    width: 600px;
    margin: auto;
    text-align: justify;
    color: white;
    margin-bottom: 50px;
}
.article_podcast5{
    background-color: #C63435;
    border-radius: 5px;
    padding: 10px;
}
/*Blog*/
.card-container3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
.card3 {
    width: 300px;
    height: auto;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}
  
.card-img3 {
    width: 100%;
    
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}
  
.card-title3 {
    font-size: 20px;
    margin-bottom: 20px;
}
  
.card-description3 {
    font-size: 14px;
}
.blog-title{
    background-color: var(--primary_color);
    width: 780px;
    margin: auto;
    text-align: center;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.card3 a{
    background-color: var(--primary_color);
    padding: 10px;
    box-shadow: 0 0 5px black;
    margin-top: 20px
}
/*servicio-podcast*/
.servicio-podcast{
    width: 800px;
    margin: auto;
    background-color: black;
    color: white;
    box-shadow: 0px 0px 5px black;
    padding: 20px;
    text-align: center;
}
.article-spodcast h1{
    margin-bottom: 20px;
}
.article-spodcast h2{
    margin-bottom: 20px;
}
.article-spodcast h3{
    margin-bottom: 20px;
}
.article-spodcast p{
    margin-bottom: 20px;
}
.article-spodcast a{
    background-color: var(--primary_color);
    padding: 5px;
}
.servicio-radio{
    width: 800px;
    margin: auto;
    background-color: var(--primary_color);
    color: white;
    box-shadow: 0px 0px 5px black;
    padding: 20px;
    text-align: center;
}
.article-sradio h1{
    margin-bottom: 20px;
}
.article-sradio h2{
    margin-bottom: 20px;
}
.article-sradio h3{
    margin-bottom: 20px;
}
.article-sradio p{
    margin-bottom: 20px;
}
.article-sradio a{
    padding: 10px;
    background-color: black;
    margin-bottom: 10px;
}
/*Taller locucion*/
.taller-locucion{
    width: 800px;
    margin: auto;
    background-color: white;
    color: black;
    box-shadow: 0px 0px 5px black;
    padding: 20px;
    text-align: center;
}
.article-tlocucion h1{
    margin-bottom: 20px;
}
.article-tlocucion h2{
    margin-bottom: 20px;
}
.article-tlocucion h3{
    margin-bottom: 20px;
}
.article-tlocucion p {
    margin-bottom: 20px;
}
.article-tlocucion a{
    background-color: black;
    padding: 10px;
}
.titlep{
    background-color: black;
    margin: auto;
    color: white;
    text-align: center;
    width: 600px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 5px black;
}
.titlep2{
    background-color: black;
    margin: auto;
    color: white;
    text-align: center;
    width: 600px;
    
    box-shadow: 0px 0px 5px black;
}
/*Responsive design*/


@media screen and (max-width: 600px){
    main{
        height: 100%;
        width: 100%;
        background-image: none;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: 100% 100%; 
        align-items: center;
        background-color: white;
        background: linear-gradient(to right, #E4E4E4,#C63435);
        
        
        
        
        
    }
    

    .header{
        top: 0px;
    }
    .menu{
        transform: translateX(-350px);
        transition: all 300ms;
    }
    .menu_show{
        transform: translateX(0px);
        transition: all 300ms;
    }
   
    
    #icon-menu{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 20;
    align-items: center;
    cursor: pointer;
    display: unset;
    
    
    }
    .footer{
        height: 80px;
    }
    .header{
        height: 80px;
        
    }
    
    .logo{
        height: 80px;
        
    }
    .logo_soundkast{
        margin-left: 0;
        height: 80px;
    }
    .menu {
        flex-direction: column;
        max-width: 140px;
        height: 50px;
        align-items: flex-start;
    }
    .menu nav ul{
        flex-direction: column;
        
    }
    .navbar_items a:hover{
        padding:0;
        border:0;
    }
    .header_container{
        flex-direction: column;
        margin-left: 0;
        padding:0;
        
    }
	
    .navbar{
        background-color: black;
        
    }
    .navbarul{
        border-right: 5px solid #C63435;
        padding-bottom: 10px;
    }
    .contacto{
        width: 125px;
        padding: 0;
        align-items: left;
        border-radius: 0;
        padding-left: 12px;
        padding-right:10px;
        padding-bottom: 5px;
        border-bottom-right-radius: 3px;
        border-right: 5px solid #C63435;
        border-bottom: 5px solid #C63435;
        border-top:5px solid #C63435 ;
        padding-top: 10px;
    }
    .cover{
        width:300px;
    }   
    .text_cover{
        width: auto;
    }
    .img_cover{
        margin: auto;
    }
    .flyer{
        width: 300px;
        margin: auto;
    }
    .main-article{
        width: 300px;
        height: auto;
    }
    .phonelogo{
        display: inline-block;
    }
    .main1{
        padding-bottom: 150px;
        padding-top: 150px;
    }
    .radiowid{
        display: none;
    }
    .radiowid2{
        display: inline-block;
    }
    .radio{
        width: 300px;
    }
    .calendar_container{
        padding-bottom: 60px;
    }
    .blog-title{
        width: 300px;
        margin-bottom: 20px;
    }
    .doblaje{
        width: 300px;
    }
    .doblaje_img{
        width: 280px;
    }
    .doblaje2{
        width: 300px;
    }
    .doblaje3{
        width: 300px;
    }
    .doblaje_img2{
        width: 280px;
    }
    .doblaje4{
        width: 300px;
    }
    .doblaje5{
        width: 300px;
    }
    .card2{
        width: 250px;
    }
    .locucion{
        width: 300px;
    }
    .locucion_img{
        width: 280px;
    }
    .locucion2{
        width: 300px;
    }
    .locucion_img2{
        width: 280px;
    }
    .locucion3{
        width: 300px;
    }
    .pradio{
        width: 300px;
    }
    .pradio2{
        width: 300px;
    }
    .pradio3{
        width: 300px;
    }
    .pradio4{
        width: 300px;
    }
    .pradio5{
        width: 300px;
    }
    .podcast{
        width: 300px;
    }
    .podcast2{
        width: 300px;
    }
    .podcast3{
        width: 300px;
    }
    .podcast4{
        width: 300px;
    }
    .podcast5{
        width: 300px;
    }
    .servicio-podcast{
        width: 300px;
    }
    .servicio-radio{
        width: 300px;
        
    }
    .servicios_img{
        width: 280px;
        height: 180px;
    }
    .taller-locucion{
        width: 300px;
    }
    .titlep{
        width: 300px;
    }
    .titlep2{
        width: 300px;
    }
    .main3{
        padding-top: 80px;
    }
    form{
        max-width: 300px;
        margin-top: 120px;
    }
    .close{
        margin-left: 260px;
    }

    
}