* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
  }
  
  body {
    background-color: #efefef;
    color: #2f2f2f;
    line-height: 1.4;
    font-family: "Open Sans", Helvetica, sans-serif;
  }
  
  p {
    font-size: 1.2rem;
    margin: 1.5em 0;
  }
  
  h1 {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.3em;
    max-width: 500px;
    font-weight: 700;
    margin: auto;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  h1, h3 {
    margin-bottom: 0.8em;
  }
  
  a {
    color: #3f84df;
  }
  
  .img {
    max-width: 500px;
    margin: auto;
  }
  
  .img img {
    max-width: 100%;
    margin: 0 auto 0.8rem;
  }
  
  .banner {
    width: 100%;
  }
  
  .banner img {
    width: 100%;
  }
  
  .date {
    font-weight: 300;
  }
  
  .green {
    font-weight: 700;
    color: #0ea936;
  }
  
  section {
    background-color: white;
    -webkit-box-shadow: 0 0.5rem 0.5rem #c9c9c9;
            box-shadow: 0 0.5rem 0.5rem #c9c9c9;
    max-width: 960px;
    margin: 0 auto;
  }
  
  
  
  .containers {
            background-color: black;
            border-radius: 20px;
            color: white;
            padding: 20px;
            margin: 20px;
        }
        .containers2 {
            background-color: green;
            border-radius: 20px;
            color: white;
            padding: 20px;
            margin: 20px;
        }
        .containers3 {
            background-color: blue;
            border-radius: 0px;
            color: white;
            padding: 20px;
            margin: 20px;
        }
    
    .slider-container {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .slider {
            display: flex;
            animation: slide 60s infinite linear;
        }

        .slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        
        hr.thick-black-line {
            border: none;
            height: 4px; /* Adjust the height to make it thicker or thinner */
            background-color: black; /* Set the color to black */
        }
        
        hr.thick-red-line {
            border: none;
            height: 4px; /* Adjust the height to make it thicker or thinner */
            background-color: red; /* Set the color to black */
        }
        
  .grey-container {
            background-color: #ccc; /* Use a shade of grey for the background color */
            padding: 20px; /* Adjust padding as needed */
            border: 1px solid #999; /* Add a border if desired */
            width: 100%; /* Set the width of the container as needed */
        }
.read-more-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .read-more-checkbox {
            display: none;
        }

        .read-more-checkbox:checked + .read-more-content {
            max-height: 100%;
        }
        
         .read-more-label {
            background-color: green;
            color: white;
            padding: 10px;
            border-radius: 10px;
            cursor: pointer;
        }

        .read-more-checkbox:checked + .read-more-content + .read-more-label::before {
            content: "Read Less";
        }

        .read-more-label::before {
            content: "Read More";
        }
        
         .black-container {
            background-color: black;
            color: white;
            padding: 20px;
        }
        
 @keyframes slide {
            0% {
                transform: translateX(0);
            }
            20% {
                transform: translateX(-100%);
            }
            40% {
                transform: translateX(-200%);
            }
            60% {
                transform: translateX(-300%);
            }
            80% {
                transform: translateX(-400%);
            }
            100% {
                transform: translateX(-500%);
            }
        }
    
  .container {
    margin: auto;
    padding: 1.4rem 1rem 0.4rem;
  }
  
  .container .text {
    max-width: 850px;
    margin: auto;
  }
  
  .btn {
    text-align: center;
  }
  
  .btn button {
    background-color: #2fa1f4;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.9em;
    margin: 1em 0;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    outline: none;
  }
  
  .btn button:hover {
    background-color: #0e4d7a;
  }
  
  .btn button a {
    color: #ffffff;
    display: block;
    text-decoration: none;
  }
  
  footer .container-footer {
    text-align: center;
    max-width: 600px;
    margin: auto;
    padding: 2rem 0;
  }
  
  footer .container-footer p {
    font-size: 0.8rem;
    color: #6b6b6b;
  }
  
  @media (min-width: 800px) {
    html {
      font-size: 16px;
    }
    h1 {
      font-size: 2.5rem;
      max-width: 900px;
    }
    .container {
      padding: 1.4rem 2rem 0;
    }
  }
  /*# sourceMappingURL=style.css.map */