body,
html {
  margin: 0;
  padding: 0;
/*  overflow-x: hidden;*/
  font-family: Arial, sans-serif;
}

header {
  position: relative;
  width: 100%;
  height: 76vh;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 45%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.svg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  bottom: -2px;
}

.navbar {
  position: fixed;
  top: 0;
  background: -webkit-linear-gradient(bottom, rgba(255, 0, 0, 0), #350c1a);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  color: white;
  width: 100%;
}
.navbar img {
  height: 125px;
}
.navbar .logo {
  font-size: 1.5em;
}

.navbar .menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50px;
  right: 50px;
  min-width: 150px;
  border-radius: 10px;
  padding: 10px 30px;
}
.navbar .proeflesbutton {
  border: 1px solid #fff;
  border-radius: 25px;
  margin-left: 25px;
  background-color: transparent;
}

.navbar .menu a {
  padding: 20px;
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 0.8vw;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
}

.navbar .menu a:hover {
  background-color: #b73c83;
}
.navbar .menu .proeflesbutton a:hover {
  background-image: url("../assets/img/ice.png");
  color: #b73c83;
  border-radius: 25px;
}

.navbar .hamburger {
  cursor: pointer;
  font-size: 3.5vw;
}

.navbar .menu-item {
  position: relative;
}

.navbar .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-image: url("../assets/img/ice.png");
  flex-direction: column;
  border-radius: 5px;
/*  padding: 20px;*/
}

.navbar .submenu a {
    padding: 20px 40px;
    color: #222;
}
.navbar .submenu a:hover {
  color: #fff;
}
.navbar .menu-item:hover .submenu {
  display: flex;

}
.menu-icon {
    padding-top: 25px;
    cursor: pointer;
    width: 35px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: 0.4s;
}

.menu-icon.open .bar1 {
    transform: rotate(-45deg) translate(-10px, 6px);
}

.menu-icon.open .bar2 {
    opacity: 0;
}

.menu-icon.open .bar3 {
    transform: rotate(45deg) translate(-8px, -6px);
}
.content {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
}

.firstblock {
  width: 90%;
  margin: 20px auto;
}

.firstblock h1 {
  text-align: center;
  margin-bottom: 20px;
  margin-block-start: 0em;
}

.firstleft,
.firstright {
  width: 48%;
}

.firstleft {
/*      emty      */
}

.firstleft p {

  font-size: 1.2vw;
}
.lefttext {
    margin-bottom: 100px;
}

.firstblock {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.firstblock-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.firstright img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.firstright img:hover {
  transform: translateY(-10px);
}
.firstleft .proeflesbutton a {
    border: 3px solid #b73c83;
    border-radius: 75px;
    transition: all .2s ease-in;
    background-color: #fff;
    text-align: center;
    color: #b73c83;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.5vw;
}

.firstleft .proeflesbutton a:hover {
  background-color: #b73c83;
  color: #fff;

}
.content .firstblock h1 {
  font-family: sans-serif;
  font-size: 5vw;
  color: #b73c83;
}
.firstleft .lefttitle {
  color: #2f3747;
  font-size: 2vw;
}
.secondblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgb(233, 216, 200);
  background: linear-gradient(
    90deg,
    rgba(233, 216, 200, 1) 0%,
    rgba(255, 92, 141, 1) 35%,
    rgba(30, 52, 66, 1) 100%
  );
  padding-bottom: 100px;
}
.title {
  font-size: 3vw;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}
.title p {
   font-size: 1.2vw; 
   padding-left: 10%;
   padding-right: 10%;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  flex: 1 1 300px;
  transition: width 0.5s, height 0.5s, transform 0.5s;
}
.card:hover {
     transform: rotate(0.5deg);
}
.widecard {
  max-width: 620px;
}
.card img {
  width: 100%;
  height: auto;
}
.card-content {
  padding: 20px;
}
.card-title {
  font-size: 1.5em;
  margin: 10px 0;
}
.card-text {
  font-size: 1em;
  margin-bottom: 20px;
}
.btn {
  background-color: #2f3747;
  border: 1px solid #2f3747;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: all .2s ease-in;
}
.btn:hover {
    background-color: #fff;
    color: #2f3747;
    border: 1px solid #2f3747;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.agenda-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    height: auto;
    overflow-y: auto;
    margin
}

.agenda-item {
    background: #f9f9f9;
/*    background-image: url("../assets/img/ice.png");*/
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: calc(25% - 46px);
    padding: 16px;
    height: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.agenda-item:hover {
  transform: translateY(-10px);
}

.icon {
    flex-shrink: 0;
    margin-right: 16px;
}

.icon img {
    width: 50px;
    height: 60px;
}

.agenda-content {
    flex-grow: 1;
}

.agenda-content h3 {
    margin: 0 0 8px;
    font-size: 1.2em;
}

.agenda-content p {
    margin: 4px 0;
    font-size: 1em;
}
.title-agenda {
    font-size: 3vw;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    color: #b73c83;
}
footer {
    margin-top: 100px;
    background: rgb(233, 216, 200);
    background: linear-gradient(
    90deg,
    rgba(233, 216, 200, 1) 0%,
    rgba(255, 92, 141, 1) 35%,
    rgba(30, 52, 66, 1) 100%
    );
    height: 450px;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    color: #fff;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerMaps {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 15px 0px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 250px;
}
.footerMaps iframe {
    width: 45%;
    height: 250px;
}
.footerMaps .mapLeft {
    padding-right: 3%;
}
.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.4vw;
}
.footer-column ul {
    list-style-type: none;
    padding: 0;
    width: 100px;
    text-align: left;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
}
.footer-column ul li a i {
    margin-right: 8px;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
.footer-column p, .footer-column a {
    color: white;
}
.footer-bottom {
    margin-top: 20px;
    color: #fff;
}
.footer-bottom a {
    color: #fff;
}
.footer-bottom p {
    margin: 0;
}
table {
    width: 100%;
    border-spacing: 0;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}
tr:nth-child(odd) {
background: #fff;
}
tr:nth-child(even) {
background: #f2f2f2;
}
td, tr, th {
border-spacing: 0;
}
th {
background-color: #b73c83 ;
color: #f2f2f2;
text-align: left;
padding: 20px;
}
td {
padding: 10px;
}
@media (min-width: 900px) {
    .navbar .menu {
        display: flex;
        position: fixed;
        flex-direction: row;
        min-width: unset;
        border-radius: 10px;
    }
    .navbar .hamburger {
        display: none;
    }
}
@media (max-width: 900px) {
    header {
        min-height: 500px;
    }
    .navbar {
        display: block;
        padding: 0px !important;
    }
    .topMenuItems {
        display: flex;
        align-items: flex-start;
        justify-content:flex-start;
        padding: 20px 10px;
    }
    .navbar .hamburger {
        font-size: 3em;
        padding-top: 5px;
        right: 25px;
        position: absolute;
    }
    .navbar img {
        width: auto;
    }
    #menu {
        height: 500px;
    }
    .navbar .menu {
        flex-direction: column;
        position: fixed;
        top: 110px;
        left: 0px;
        width: 100%;
        border-radius: 10px;
        padding: 0;
        background-color: #b73c83;
        overflow: scroll;
    }
    .navbar .menu a {
        font-size: 1em;
        border-radius: 75px;
        margin: 5px;
    }
    .navbar .menu a:hover {
         background-image: url("../assets/img/ice.png");
         color: #222;

    }
    .navbar .menu .submenu {
        position: relative;
        margin: 5px;
        padding: 10px;
        margin-top: 10px;
        top: 0%; 
    }
    .navbar .menu .submenu a:hover {
        color: #fff;
        background-image: none;
        background-color: #b73c83 !important;
    }
    .navbar .menu .proeflesbutton {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0px;
    }
  
    .title {
        font-size: 2em;
    }
    .title p{
        font-size: 0.6em;
    }
    .card-title {
        font-size: 1.2em;
    }
    .card-text {
        font-size: 0.9em;
    }
    .btn {
        padding: 8px 16px;
    }
    .footer-column {
        min-width: 100%;
    }
    .content .firstblock h1 {
        font-size: 3em;
    }
    .content {
        padding-left: 1%;
        padding-right: 1%;
    }
    .firstblock {
        margin: 20px 0px;
    }
    .firstblock-content {
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content: space-between;
        width: 100%;
    }
    .firstleft, .firstright {
        width: 95%;
    }
    .firstleft .lefttitle {
        font-size: 6vw;
    }
    .firstleft p {
        font-size: 1em !important;
        margin-bottom: 50px;
    }
    .firstblock .proeflesbutton {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
         margin-bottom: 50px;
    }
    .firstleft .proeflesbutton a {
        font-size: 1.3em;

    }
    .title-agenda {
    font-size: 8vw;
    }
    .agenda-item {
        display: block;
        align-items: center;
        width: calc(100% - 46px) !important;
    }
    footer {
        height: 100%;
        width: 100%;
    }
    .footer-column h3 {
        font-size: 6vw;
    }

   
}
@media (max-width: 1024px) {
    .agenda-item {
        width: calc(42% - 0px);
        margin: 20px;
    }
    .card {
        margin: 20px;
    }
    .navbar img {
        height: 80px;
    }
    /*.navbar {
        padding: 15px 15px;
    }
    .navbar .menu {
        top: 20px;
        right: 30px;
    }
    .navbar .menu a {
        font-size: 1.2vw;
    }*/
    .firstleft p {
        margin-bottom: 50px;
        font-size: 1.8vw;
    }
    .firstleft .proeflesbutton a {
        margin-bottom: 50px;
    }
    .title {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
/*    .agenda-item {
        width: 100%;
    }*/
}
