html, body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

.header {
    max-width: 100%;
}

.footer {
    max-width: 100%;
}

main {
    flex: 1;
}



.primary-color {
    background-color: #ED6A23; 
}

.secondary-color {
    background-color: #231F20; 
}

.custom-small {
    font-size: 1rem;
}

.btns {
    padding: 5px 15px;
    border: 0px;
    border-radius: 5px;

}

.btn-primary-custom {
    background-color:  #231F20; 
    color: #ED6A23;
    border: 2px solid  #231F20; 
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; 
}

.btn-primary-custom:hover {
    background-color: #ED6A23; 
    color: #231F20; 
    border-color: #231F20; 
}

.background-cover {
    width: 100%;
    background-image: url(../images/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.font-color {
    color: #ED6A23;
}

.grad {
    background-image: linear-gradient(rgba(237, 106, 35, 1), rgba(255, 255, 255, 0));
  }

.opc-bl {
    opacity: 0.5;
}

.opc-fl {
    opacity: 0;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

.footer {
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ED6A23;
    text-align: center;
    padding: 1rem 0;
}

.small-font {
    font-size: 0.75rem;
}

.med-font {
    font-size: 1.2rem;
}

.lag-font {
    font-size: 1.5rem;
}

.primary-color {
    background-color: #ED6A23; 
}


.footer img {
    transition: transform 0.3s; /* Add a little hover effect to icons */
}

.footer img:hover {
    transform: scale(1.1); /* Scale icons on hover */
}

@media (max-width: 768px) {
    .footer {
        text-align: center; /* Center text on smaller screens */
    }

    .footer .col-md-6, .footer .col-md-5 {
        margin-bottom: 1rem; /* Add space between columns */
    }
}
.btn-primary-custom1 {
    background-color:  #ED6A23; 
    color:#231F20;
    border: 2px solid  #231F20; 
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; 
}

.btn-primary-custom1:hover {
    background-color: #231F20; 
    color:  #ED6A23; 
    border-color: #ED6A23; 
}

