* Reset some default styles */
body,html, h2, p {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.element-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
   color: red;
  
    
}

.contact-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align:justify;

}



body a {
    text-decoration: none;
    color: #ab9696;}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px;

}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}
#header_image{
    position:relative;
    height: 800px;
    width: 100%;
}


/* Contact section styles */

.contact-section {
    padding: 20px 0;
   
    width: 100%;
    
    
}

.element-container{
    box-sizing: border-box;
  max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    background-color: #1ea9c8;
    
   
    
}

#contact .element-image .element-text {
    width: 30%;
    border:1px solid red;
    
}
.slider-section {
    padding: 20px 0;
}
#slider {
    overflow: hidden;
}
#slider figure {
    position: relative;
    width: 100%;
    margin: 0%;
    left: 0%;
    animation: 10s slider infinite linear;
   
}
#slider figure img {
    float:left;
    width: 11%;
    
}
   
@keyframes slider {
    0% {
        transform: translateX(0);
            }
     50% {
        transform: translateX(calc(-200px * 9));
    
}
}
#whatsapp-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Ensure the logo is on top of other elements */
  }
  
  #whatsapp-link img {
    width: 100px; /* Adjust the size of the logo as needed */
    height: 100px; /* Adjust the size of the logo as needed */

    border-radius: 70%; /* Makes the logo circular */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
  }

  #barcode_image {
    position: fixed;
    bottom: 30px;
    right: 160px;
    z-index: 9999;
    width: 100px;
    height:100px;
  }


/* Footer styles */
footer {
    text-align: left;
    background-color: #333;
    color: #fff;
    padding: 10px 30px;
}

/* Media queries */
@media only screen and (min-width: 200px) and (max-width: 768px) {
    
    .element-container{
        width: 100%;
        flex-direction: column;
    }
}


