body {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}

strong {
  color: #00b0f0;
}

.columns-container {
  display: flex;
  justify-content: center; /* Align columns to the center horizontally */
}

.column_1, .column_3 {
  flex: 1; /* Equal width for columns */
  padding: 0 10px; /* Adjust padding as needed */
  border-top: 7px inset #00b0f0;
  border-bottom: 7px inset #00b0f0;
  max-width: 350px;
  font-weight: 600;
}

.column_2 {
  flex: 0; /* Let the column size be determined by its content */
  margin: 0 auto; /* Center the column horizontally */  
}

.column_4 {
  flex: 1; /* Let the column size be determined by its content */
  margin: 0 auto; /* Center the column horizontally */  
  padding-bottom: 3px;
}

.contact {
  font-size: 22px;
  font-weight: 600;
}
.logo {
  max-width: 349px;
}

.masked-phone {
  cursor: pointer;
}

.masked-phone::after {
  content: attr(data-phone); /* Initially showing masked phone number */
}

.masked-phone:hover::after {
  content: attr(data-phone-hover); /* Revealing phone number on hover */
}

.products-services {
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  padding-bottom: 10px;
  background-color: #e0fcff;
  color: darkorange;
  border-radius: 20px;
  font-weight: bold;
  font-size: 25px;
  border-top: 5px inset #00b0f0;
  border-bottom: 3px inset #00b0f0;
}

.aluminium-flashings, .aluminium-flashingsa, .aluminium-flashingsb {
  flex: 1; /* Let the column size be determined by its content */
  margin: 0 auto; /* Center the column horizontally */  
  max-width: 80%;
  border-radius: 20px;
}

.aluminium-flashings {
  border-top: 2px inset #00b0f0;
  border-bottom: 2px solid #00b0f0;
  flex: 1; /* Let the column size be determined by its content */
  margin: 0 auto; /* Center the column horizontally */  
  max-width: 80%;
  border-radius: 20px;
}

.aluminium-flashingsa {
  border-top: 2px inset #00b0f0;
}

.aluminium-flashingsb {
  border-bottom: 2px solid #00b0f0;
}

.flashings-image {
  border-top: 2px inset #00b0f0;
  border-bottom: 2px solid #00b0f0;
  flex: 1; /* Let the column size be determined by its content */
  margin: 0 auto; /* Center the column horizontally */  
  padding: 2px 5px;
  max-width: 28%;
  height: auto;
  border-radius: 20px;
}

.producthead {
  text-align: center;
}

.normal {
  font-weight: 600;
  font-family: 'Verdana', sans-serif;
  text-align: center;
  font-variant: small-caps 
}

#imageGallery {
  width: 80%; /* Adjust width as needed */
  margin: 0 auto; /* Center the gallery horizontally */
  overflow: hidden;
  position: relative;
  height: 500px; /* Adjust height as needed */
}

#imageGallery img {
  max-width: 65%; /* Maximum width for images */
  height: auto;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Quick fade effect */
  left: 50%; /* Move the images horizontally by 50% of the container width */
  transform: translateX(-50%); /* Adjust position to center the images */
}
#imageGallery img.active {
  opacity: 1;
}
