body{
    background-color: #fff;
     font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3{
    font-weight: 700;
}

.navbarligth{
    background-color: #f8f9fa;
}
.slide-zone{
    width: 100%;
    height: 400px;
    position: relative;
    
}
.slide-zone-img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
   
   
}

.slide-zone-content{
    position: absolute;
    top: 0px;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Added transparent background */
    align-items: center;
    justify-content: center;
   
}

.bg-orange{
    background-color: #F28500;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-orange{
    background-color: #F28500;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.btn-orange:hover{
    background-color: #d76c00;
    color: #fff;
    text-decoration: none;
}

.btn-orange:active{
    background-color: #b35900;
    color: #fff;
    text-decoration: none;
}

.btn-outline-orange{
    background-color: transparent;
    color: #F28500;
    padding: 10px 20px;
    border: 2px solid #F28500;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-outline-orange:hover{
    background-color: #F28500;
    color: #fff;
    text-decoration: none;
}

.text-orange{
    color: #F28500;
}

.nav-link-orange{
    color: #F28500 !important;
    font-weight: bold;
}
.nav-link-orange:hover{
    color: #d76c00 !important;
    text-decoration: none;
}

.form-control:focus{
    border-color: #F28500;
    box-shadow: 0 0 0 0.2rem rgba(242, 133, 0, 0.25);
}
.form-check-input:checked{
    background-color: #F28500;
    border-color: #F28500;
}




@media screen and (max-width: 768px) {
 .slide-zone{
    height: 210px;
}
}

