* {
    box-sizing: border-box;
    position: relative;
  }
  
  /* body *:before {
    content: "";
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 0, 0, 0.1);
  } */
  
  
  
  hr {
    border: 1px solid black;
    border-top: 1px solid #d1d1d1; /* Change the color and thickness as needed */
    width: 100%; /* Adjust the width as needed */
    margin: 1rem auto; /* Add some margin to space out the news items */
  }


body {
    font-family: Corbel Light, sans-serif;
    margin: 0;
    padding: 0;
}



.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 25px;
}

/* ... */
.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
}

.hero p {
    font-size: 1.25rem;
    color: #fff;
}

/* ... */
.hero {
    position: relative;
    text-align: center;
    height: 500px; /* Increase the height of the hero section */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px; /* Adjust the border-radius as needed */
    z-index: -1;
  }
  
  video {
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  /* ... */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    z-index: 1;
  }
  /* ... */
  
  /* ... */
  

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
/* ... */


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(33.33% - 1rem);
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 1rem;
    text-decoration: none;
    color: #333;
   transition: transform 0.5s ease
}


a:hover .card, a:hover .card-s {
    transform: translateY(-10px) scale(1.05); /* Add the scale effect */
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.411);
}

a:active .card, a:active .card-s {
    transform: translateY(1px) scale(0.99); /* Add a small scale effect when active */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.411);
}


/* ... */
.news {
    margin-bottom: 2rem;
  }
  
  .cards-block {
    display: flex;
    justify-content: space-between;
  }
  
  .column {
    width: calc(33.33% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .card {
    position: relative;
    padding: 1rem;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    height: 250px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  .card h3 {
    margin: 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  .card p {
    margin: 0;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  /* ... */




  .column {
    width: 70%; /* Change to fixed percentage */
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .card {
    /* ... */
    height: 450px;
    width: 400px;
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 15px;
    /* ... */
  }

  .card-s {
    transition: transform 0.5s ease;
    /* ... */
    position: relative;
    padding: 1rem;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    height: 250px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    height: 550px;
    width: 400px;
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 15px;
    /* ... */
  }

  .card-s h3 {
    margin: 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  .card-s p {
    margin: 0;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  


/* ... */
.news-block {
    background-color: #d1d1d1; /* Adjust the pink-red background color as needed */
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
  }
  /* ... */

a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
a:hover{
    color: blue;
}

/* ... */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
  }
  
  .logo {
    margin-top: 50px;
    width: 200px;
  }
  /* ... */
  
/* ... */

  
footer {
    background-color: #f5f2f2;
    color: #fff;
    padding: 2rem 0;
    font-size: 1rem;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .footer-logo img {
    max-width: 150px;
  }
  
  .footer-address {
    text-align: center;
    color: #333;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    color: #c98c32;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  .footer-social a:hover {
    color: #ccc;
  }
  
  .floating-nav {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
    border-radius: 15px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  
  .floating-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  .floating-nav a:hover {
    color: #0066ff;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    transition: 1s;
  }
  
  /* ... */
#floatingMenuButton {
  background-color: #ffffff;
  color: #000000;
  font-size: 1rem;
  border: none;
  border-radius: 50%;
  padding: 12px 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 1s;
}

#closeMenuButton {
  background-color: transparent;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
  transition: 1s;
}
/* ... */

@media screen and (min-width: 768px) {
  .floating-menu {
    display: none;
  }
}

  
  #floatingMenuNav {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    transition: 1s;
  }
  
  #floatingMenuNav a {
    display: block;
    color: #000000;
    text-decoration: none;
    padding: 8px 16px;
  }
  
  #floatingMenuNav a:hover {
    background-color: #555;
  }
  
  .hidden {
    display: none;
  }

  
  
  

@media(max-width: 768px){

    .header,
    .footer {
      margin: 0;
      padding: 0;
      width: 100%;
      box-sizing: border-box;
    }
    

    .hero {
        position: relative;
        text-align: center;
        height: 500px; /* Increase the height of the hero section */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 100%;
        width: 400px;
      }
      
      .video-container {
        margin-top: -15px;
        position: absolute;
        top: 0;
        left: 0;
        width: 390px;
        margin-right: 18.5px;
        margin-left: -18.5px;
        height: 100%;
        overflow: hidden;
        border-radius: 15px; /* Adjust the border-radius as needed */
        z-index: -1;
      }
      
      video {
        width: 100%;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    
      /* ... */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
        border-radius: 15px;
        z-index: 1;
      }

      .hero h1 {
    font-size: 2rem;
    color: #fff;
}
.cards-block {
    flex-direction: column;
  }

  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
/* ... */


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

/* .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(33.33% - 1rem);
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 1rem;
    text-decoration: none;
    color: #333;
   transition: transform 0.5s ease, box-shadow 0.5s ease;
} */

.card, .card-s {
    /* ... */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* ... */
}

a:hover .card, a:hover .card-s {
    transform: translateY(-20px) scale(1.05); /* Add the scale effect */
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.411);
}

a:active .card, a:active .card-s {
    transform: translateY(3px) scale(0.99); /* Add a small scale effect when active */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.411);
}


/* ... */
.news {
    margin-bottom: 1rem;
  }
  
  
  .column {
    width: calc(33.33% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    padding: 1rem;
    text-decoration: none;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    height: 450px;
    width: 390px;
    border-radius: 15px;
    margin-right: 19px;
    margin-left: -19px;
  }
  
  .card h3 {
    margin: 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  .card p {
    margin: 0;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  /* ... */




  .column {
    width: 32%; /* Change to fixed percentage */
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  

  .card-s {
    transition: transform 0.3s ease;
    /* ... */
    position: relative;
    padding: 1rem;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-top: 10px;
    height: 380px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    width: 250px;
    border-radius: 15px;
    height: 450px;
    width: 390px;
    border-radius: 15px;
    margin-right: 19px;
    margin-left: -19px;
    /* ... */
  }

  .card-s h3 {
    margin: 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  .card-s p {
    margin: 0;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  


/* ... */
.news-block {
    background-color: #d1d1d1; /* Adjust the pink-red background color as needed */
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    align-items: center;
    width: 390px;
    border-radius: 15px;
    margin-right: 18.5px;
    margin-left: -18.5px;
  }
  /* ... */

a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
a:hover{
    color: blue;
}



.floating-nav{
    display: none;
}

.logo {
    margin-top: 28px;
    width: 150px;
}










}



























