﻿/* Place Your Custom Styles Here */


h1{
    color: #e58e15;
    font-weight: 900 !important;
}


h2{
    color: #e58e15;
    font-weight: 600;
}

i{
    color: #e58e15;
}

.bg-mission {
    background-position: center;
    background-size: cover;
    background-image: url(../images/springs-a.jpg);
}

.bg-why-us {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/why-us/la-springs.webp);
    height: 300px;
}

.text-white{
    color: #fff;
}

@media only screen and (max-width: 600px){
.bg-image-main{
    background-position: left;
    background-repeat: no-repeat;
    background-image: url(../images/main-banner.webp);
 }
}

.item-media{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    
}

.loaderContact {
    display: none;
    border: 4px solid #f3f3f3; /* loader border color */
    border-top: 4px solid #3498db; /* loader color */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: relative;
  
    transform: translate(-50%, -50%);
    z-index: 99999999; 
    
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }