

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", serif;;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  color: rgb(69, 9, 18);
}
/**/
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h2{
  color:  rgb(122, 15, 31);
}
/*---                       *****--*/


/* Hero Section */
.img-logo img{
  width: 200px;
  height: 100px;
}
#hero {
  
  text-align: center;
  padding: 2rem 0;
}

#hero h2 {
  margin-bottom: 1rem;
}

#hero .btn {
  display: inline-block;
  background: white;
  color: rgb(69, 9, 18);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: 2px solid rgb(122, 15, 31);
  border-radius: 5px;
}

#hero .btn:hover {
  background: rgb(122, 15, 31);
  color: white;
  transition: 0.5s;
}

/* About Section */
#about-text{
  margin-top: 30px;
}

.about-container{
  width: 80%;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.about{
  display: flex;
  height: 500px;
}
.bg-img-about{
  width: 100%;
}

.bg-img-about img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-container-text{
  position: absolute;
  width: 50%;
  margin-left: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  height: 300px;
  transform: translateY(-150%);
  /*transform: translateX(60px);*/
  padding: 10px;
  font-size: 20px;
  text-align: left;
  
}
#about {
  background: #f4f4f4;
  text-align: center;
}

.more{
  text-decoration:underline;
}

.more:hover{
  cursor: pointer;
  opacity: 0.5;
}

@media (max-width: 950px) {
  .about-container{
    width: 90%;
  }
  .about-container-text{
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 0;
  }
}

@media (max-width: 550px) {
  
  .about-container-text{
    height: 350px;
    transform: translateY(-120%);
  }
}

/* Services Section */
#services {
  background: white;
  padding: 2rem 0;
}

#services .services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  margin: 0.5rem;
  width: 30%;
  height: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 10px;
  
}
.service h3{
  font-size: 15px;
}
.service img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.packaging{
  width: 70% !important;
}

/*MV Section*/
.mission-vision-container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.mv-container{
  text-align: center;
  width: 40%;
}
.mv-container h4{
  color: rgb(122, 15, 31);
  font-size: 25px;
}

/*policy Section*/

.policies-container{
  width: 80%;
  margin: auto;
  height: 600px;
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.img-policy-container,.info-policy-container{
  width: 50%;
  height: 100%;
}

.img-policy-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px; /* Esquina superior izquierda */
  border-bottom-left-radius: 10px; 
}

.info-policy-container{
  
  padding: 25px;
}

.policies-tittle-container{
  color:  rgb(122, 15, 31);
  height: 200px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  font-style: italic;

}

.policy-text{
  font-size: 18px;
  height: 200px;
  text-align: justify;
  padding: 15px 15px;
}


.img-rule-container{
  width: 250px;
  height: 100px;
  margin: auto;
  
}

.img-rule-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.474);
}

@media (max-width: 1141px) {
  .policies-container{
    width: 90%;
  }
    
  .img-policy-container{ 
    width: 45%;
  }
  
  .info-policy-container{
    width: 55%;
    
  } 
}

@media (max-width: 930px){
  .policies-container{
    height: auto;
  }
  .img-policy-container,.info-policy-container{
    width: 100%;
    height: auto; 
  }

  .img-policy-container img{
    border-top-left-radius: 10px; /* Esquina superior izquierda */
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px; 
  }

  .policy-text{
    height: 150px;
  }

}

@media (max-width: 680px){
  .policy-text{
    height: 200px;
  }
}

@media (max-width: 520px){
 

  .img-rule-container{
    margin-top: 40px;
  }
  .policy-text{
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
}

@media (max-width: 431px){
  
  .policy-text{
    font-size: 15px;
  
  }
  .policies-tittle-container{
    
    height: 170px;
    
    font-size: 25px;
    font-style: italic;
  
  }
  .img-rule-container{
    margin-top: 60px;
  }
  
}

/* Contact Section */
.contact-container{
  width: 500px;
  margin: auto;

}

#contact {
  background-color: #f4f4f4;
  padding: 2rem 0;
}

#contact form {
  display: flex;
  flex-direction: column;
}

#contact label {
  margin: 0.5rem 0 0.2rem;
}

#contact input,
#contact textarea,
#contact button {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#contact button {
  background: white;
  color: rgb(69, 9, 18);
  border: 1px solid rgb(122, 15, 31);
  cursor: pointer;
}

#contact button:hover {
  background: rgb(122, 15, 31);
  color: white;
  transition: 0.5s;
}

.whatsapp{
  width: 110px;
  margin: auto;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 905px) {
  #services .service {
    width: 40%;
  }
  
}

@media (max-width: 768px) {
  #services .service {
    width: 100%;
  }
  .packaging{
    width: 100% !important;
    
  }
  .contact-container{
    width:100%;
    padding: 15px;
  }
  .mv-container{
    margin: 15px;
    width: 100%;
  }
}