:root{
    --primaryColor:#082A99;
    --middleColor:#325c9b;
    --helperColor:#00d084;
    --lightHelper:#EBF4F6;
    --hrColor:rgb(222, 184, 135);
    --transparentColor:#00d0848f;
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}
 
.working-hours{
    display: flex;
    flex-direction: column;
    gap: 45px;
}


/* ------------------------------- */
.working-hours-title{
    text-align: center;
    width: fit-content;
    margin: auto;
    border-bottom: 4px solid var(--primaryColor);
}

.working-hours-title h1{
    width: fit-content;
    margin: 0px auto;
    font-size: 2.5rem;
    color: var(--primaryColor);
}

.working-hours-title p{
    font-size: 1.5rem;
    margin: 15px;
    color: var(--middleColor);
}
/* ---------------------------------- */

.working-hours a{
    display: inline-block;
    margin: 30px auto 0px auto;
    padding: 20px 10px;
    background: linear-gradient(190deg,#FFFFFF0D 0%,#04154C 73%);
    color: var(--white);
    font-weight: bold;
    font-size: large;
    text-decoration: none;
    border-radius: 25px 0px;
    border: none;
    transition: border-radius 0.5s ease-in-out;
}

.working-hours a:hover{
    border-radius: 0px 25px;
    transform: translateY(-10px);
}
/* ---------------------------------------- */

.working-hours-container{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
} 

.working-hours-details{
    width: 50%;
    font-size: 1.5rem;
    color: var(--middleColor);
}

  .working-hours-card {
    border-radius: 40px 0px;
    background-color: var(--white);  
    box-shadow: 0 4px 8px var(--shadow);
    width: 50%;
    margin: auto;
    overflow: hidden;
  }
  
  .card-header {
    background-color: var(--primaryColor);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.4;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th {
    background-color: var(--helperColor);
    color: white;
    padding: 12px;
    text-align: right;
    font-size: 1.1em;
  }
  
  td {
    padding: 12px;
    border-bottom: 1px solid var(--graycolor);
    text-align: right;
  }
  
  tr:nth-child(even) {
    background-color: var(--lightHelper);
  }
  
  tr:hover {
    background-color: var(--graycolor);
    transition: 0.3s;
  }
  
  .time-span {
    color: var(--middleColor);
    font-weight: bold;
  }
  /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

  @media (max-width:800px) {
    .working-hours{
       
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .working-hours-title h1{
        font-size: 1.8rem;
    }
    
    .working-hours-title p{
        font-size: 1.2rem;
    }

    .working-hours-container{
   
        width: 98%;
        flex-direction: column;
        gap: 20px;
    } 

    .working-hours-details{
        width: 98%;
        font-size: 1.5rem;
    }
    .working-hours a{
        margin: 10px auto 0px auto;
    }

    .working-hours-card{
       width: 90%;
        border-radius: 40px 0px;
    }

    
  }


  @media screen and (min-width: 801px) and (max-width: 1200px) {
    .working-hours{
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .working-hours-title h1{
        font-size: 2rem;
    }
    
    .working-hours-title p{
        font-size: 1.2rem;
    }

    .working-hours-container{
        width: 98%;
        flex-direction: row;
        gap: 20px;
    } 

    .working-hours-details{
        width: 50%;
        font-size: 1.5rem;
    }
    .working-hours a{
        margin: 30px auto 0px auto;
    }

    .working-hours-card{
       width: 50%;
        border-radius: 40px 0px;
    }

    
  }