/*  */
:root {
    /* rgb(232,285,17) */
  --yellow: rgb(232,185,17);
  --blue: rgb(64,112,176);
  --lightBlue:rgb(138,190,237);
  --black: #231f20;
  --white: #fff;
  --lightGray: #f3f3f3;
  --mediumGray: #ccc;
}



/******* Buttons ***********/

.btn-yellow{
    display: block;
    background-color: var(--yellow) ;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    width: -moz-fit-content;
    min-width: 19rem;
    color: var(--white) !important;
   
   
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: center;
  }
  
  .btn-yellow:hover {
    color: var(--white) !important;
    background-color: var(--lightBlue) !important;
    text-decoration: none !important;
    transform: scale(0.98);
  }

  .btn-blue{
    display: block;
    background-color: var(--blue) ;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    width: -moz-fit-content;
    min-width: 19rem;
    color: var(--white) !important;
   
   
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: center;
  }
  
  .btn-blue:hover {
    color: var(--white) !important;
    background-color: var(--yellow) !important;
    text-decoration: none !important;
    transform: scale(0.98);
  }

  
  .btn-delete{
    display: block;
    background-color: red ;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    width: -moz-fit-content;
    min-width: 19rem;
    color: #000 !important;
   
   
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: center;
  }
  
  .btn-delete:hover {
    color: #231f20 !important;
    background-color: rgb(211, 0, 0) !important;
    text-decoration: none !important;
    transform: scale(0.98);
  }



.btn-plain-link {
  color: var(--black) !important;
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: 1.8rem;
  padding: 0;
  margin: 1rem 0;

  cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    

}
.btn-plain-link:hover {
  color: var(--black) !important;
  text-decoration: underline;
  background-color: transparent !important;
}






/******** css for blocks *********/


/* **************************************** */
/* **************************************** */
/* Box spacer */
.box-spacer {
  width: 100%;
  height: 100px;
}
.content-wrapper .box-spacer {
  height: 30px;
}
/* Enf of box spacer */
/* **************************************** */
/* **************************************** */


/* **************************************** */
/* **************************************** */
/* Box 100 img */
.box-100-img {
    width: 100%;
    width: calc(100% - 30px);
  }
  .box-100-img {
    min-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .section-full .box-100-img {
    width: 100%;
  }
  .box-100-img .box-image-container {
    padding-top: 0 !important;
    width: 100%;
  }
  .box-100-img .box-image-container .box-image {
    width: 100%;
  }
  
  /* End of Box 100 img */
  /* **************************************** */
  /* **************************************** */


/*****************************************/
/********** Box 100 text  ***************/
  .box-100-text {
    width: 100%;
    width: calc(100% - 30px);
  }
  .box-100-text .box-content {
    max-width: 900px;
    /* margin: 0 auto; */
  }
  .box-100-text .box-content h4 {
    color: var(--blue);
  }

/*****************************************/




  /******** Box 100 text small header ******/
  /*****************************************/
  .box-100-text-small-header {
    width: 100%;
    width: calc(100% - 30px);
    
  }

  .box-100-text-small-header .box-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--blue);
  }
  .box-100-text-small-header .box-content h4 {
    font-weight: 300;
  }

  .box-100-text-small-header .box-content div p {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
  }

  .box-100-text-small-header .box-content::after {
    content: '';
    border: 1px solid var(--blue);
    width: 100%;
    max-width: 12rem;
    margin: 0 auto;
    margin-top: 2rem;

  }

/*****************************************/
/*****************************************/







/************** Box 25 ******************/
/****************************************/

.box-25 {
  width: 25%;
  width: calc(25% - 30px);
  /* background-color: var(--turquoise) !important; */
  color: var(--black) !important;
  margin: 15px;
  display: flex;
  flex-flow: column;
    /* border-radius: 5px; */
  transition: all 0.5s ease;
}
.content-wrapper .box-25:hover {
  transform: scale(0.98);
  -o-transform: scale(0.98);
  -moz-transform: scale(0.98);
}


.box-25 .box-content .title h3 {
  padding-bottom:0;
  color: var(--blue);
}


.box-25 .box-image-container {
  width: 100%;
  padding-top: 28rem !important;
  background-color: transparent;
  overflow: hidden;

  /* border-radius: 5px; */
}


/****************************************/











/********* box 33 image round left *******/
/*****************************************/

.box-33-img-round-left {
  width: 33.3%;
  width: calc(33% - 30px);
  margin: 15px;
  display: flex;
}

.box-33-img-round-left .box-image-container {
  /* width: 30%; */
  background-color: transparent;
  position: relative;
  overflow: hidden;
  min-height: 3rem;

  

}

.box-33-img-round-left .box-image-container .box-image {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;

  display: flex;
  justify-content: center;


}

.box-33-img-round-left .box-icon {
  background-color: var(--lightBlue);
  border-radius: 50%;
  padding: 1.2rem;
  max-width: 10rem;
}

.box-33-img-round-left .box-content {
  width: 80%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-flow: column;
  color: var(--blue);

}
.box-33-img-round-left .box-content>div {
  color: var(--black);
  font-size: 1.6rem;
}

/*****************************************/
/*****************************************/




/* **************************************** */
/* **************************************** */
/* Box 50 */
.box-50 {
  width: 50%;
  width: calc(50% - 30px);
  margin: 15px;
  display: flex;
  flex-flow: column;
  /* box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
    0 5px 5px rgba(171, 171, 171, 0.15); */
}
.box-50 .box-image-container {
  width: 100%;
  padding-top: 0 !important;
  background-color: transparent;
  overflow: hidden;
}
.box-50 .box-content {
  width: 100%;
  /* padding: 2rem 3rem; */
  padding: 2rem 0;
}

/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* Box 50 image_bottom */
.box-50-image-bottom {
  width: 50%;
  width: calc(50% - 30px);
  margin: 15px;
  display: flex;
  flex-flow: column;
  /* box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
    0 5px 5px rgba(171, 171, 171, 0.15); */
}
.box-50-image-bottom .box-image-container {
  width: 100%;
  padding-top: 0 !important;
  background-color: transparent;
  overflow: hidden;
}
.box-50-image-bottom .box-content {
  width: 100%;
  /* padding: 2rem 3rem; */
  padding: 2rem 0;
}
.box-50-image-bottom .box-content h4 {
  color: var(--blue);
}

/* **************************************** */
/* **************************************** */



/********** box-big-image-text-on-top *******/
/********************************************/

.box-big-image-text-on-top {
  width: 100%;
  position: relative;
}

#webone-pagebuilder .box-big-image-text-on-top {
  width: 100%;
  position: relative;
  height: 100%;
  min-height: 6rem;
}

.box-big-image-text-on-top .box-image-container {
  /* padding-top: 44rem !important; */
  /* padding-top: 36rem !important; */
  padding-top: 40%;
  min-height: 36rem;
  width: 100%;
  /* height: 50rem; */
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.box-big-image-text-on-top .box-content {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2.5rem;
  color: var(--white) !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.box-big-image-text-on-top .box-content>div {
  text-align: start;
}
.box-big-image-text-on-top .box-content h1 {
  font-size: 6rem;
  text-shadow: 3px 3px 5px black;
}
.box-big-image-text-on-top .box-content p {
  font-size: 4rem;
  text-shadow: 3px 3px 5px black;
}
/********************************************/




/* Box 100 img left/right */
.box-100-img-left,
.box-100-img-right {
  width: 100%;
  margin: 0;
  display: flex;
  margin-bottom: 2rem;
  
}
.box-100-img-right {
  flex-flow: row-reverse;
}

.box-100-img-left .box-image-container,
.box-100-img-right .box-image-container {
  width: 50%;
  padding-top: 0;

  /* margin-top: 6rem; */

  background-color: transparent;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.box-100-img-left .box-image,
.box-100-img-right .box-image {
  position: absolute;
  min-width: 100%;
  /* min-height: 100%; */
  height: auto;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1);
  margin-top: 5rem;
  
}

.box-100-img-left .box-content,
.box-100-img-right .box-content {
  width: 50%;
  
  /* padding: 8rem; */
  padding: 0 8rem;

  display: flex;
  /* justify-content: center; */
  justify-content: flex-start;
  flex-flow: column;
  background-color: transparent;
  color: var(--black) !important;

}
.box-100-img-left .box-content h3,
.box-100-img-right .box-content h3 {
  font-family: 'Roboto', 'Source Sans Pro', sans-serif;
  color: var(--blue);
}


/* End of box 100 img left/right */
/* **************************************** */
/* **************************************** */



/*********** box-100-activity-events ********/
/********************************************/

.box-100-activity-events {
  width: 100%;
  margin: 2rem 0;
  display: flex;

  /* test */
  /* border: 1px solid #ccc; */

  /* cursor: pointer; */
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;

}

/* .box-100-activity-events:hover {
  transform: scale(0.98);
  -o-transform: scale(0.98);
  -moz-transform: scale(0.98);
} */

.box-100-activity-events .box-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  min-height: 3rem;
}

.box-100-activity-events .box-image-container .box-image {
  /* width: 25rem; */
  /* height: 25rem; */
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  object-fit: cover;
}

.box-100-activity-events .box-content {
  width: 80%;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
}

.box-100-activity-events .box-content .top-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
  width: max-content;
}

.box-100-activity-events .a-action {
  display: flex;
  width: 100%;
  /* width: max-content; */
}

.box-100-activity-events .input-wrapper {
  display: flex;
  width: 100%;
  align-items: center;

}
.box-100-activity-events .input-wrapper p {
  color: var(--blue);
  margin-right: 1rem;
}

.box-100-activity-events .input-wrapper input {
  width: 100%;
  width: 6rem;
  color: var(--blue);
  margin-right: 1rem;
  margin-bottom: 0;
}

.box-100-activity-events .number-participant-wrapper {
  display: flex;
}

.box-100-activity-events .date {
  color: var(--yellow);
  font-size: 2.4rem;
  font-weight: 600;
  margin-right: 1rem;
}
.box-100-activity-events .clock {
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 600;
  margin-right: 1rem;
}
.box-100-activity-events .location {
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 400;
}
.box-100-activity-events .name {
  color: var(--blue);
  font-size: 4rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  width: max-content;
}
.box-100-activity-events .descr {
  color: var(--black);
  word-break: break-word;
  width: 100%;
  max-width: 70rem;
}


/**************************************/





/********* box-100-activity-single-event ********/
/************************************************/

.box-100-activity-single-event {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  margin-top: 8rem;
  max-width: 120rem;
  padding-bottom: 5rem;
}
.box-100-activity-single-event .activity-single-event-header {
  width: 100%;
  padding: 2rem;
}
.box-100-activity-single-event .activity-single-event-main {
  width: 70%;

}
.box-100-activity-single-event .activity-single-event-content {

}
.box-100-activity-single-event .activity-single-event-info {
  width: 30%;
  padding: 2rem;
}

.box-100-activity-single-event .info-title {
  font-size: 2.5rem;
  font-weight: 800;
}
.box-100-activity-single-event .info-row {

}

.date {
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 600;
}
.clock {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 600;
}
.location {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 400;
}

.name {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 600;
}

.descr {
  color: var(--black);
  word-break: break-word;
  width: 100%;
}


/************************************************/



/******* box 25 member magazine *****************/
/************************************************/

.box-25-member-magazine {
  width: 25%;
  width: calc(24% - 30px);
  background-color: var(--white) !important;
  color: var(--blue) !important;
  margin: 15px;
  display: flex;
  flex-flow: column;
    /* border-radius: 5px; */
  /* transition: all 0.5s ease; */
}

.box-25-member-magazine .box-image-container {
  position: relative;
}

.box-25-member-magazine .box-image-container .box-image {
  width: 100%;
}

.box-25-member-magazine .box-content{
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 2rem;
  margin-top: 1rem;
}
.box-25-member-magazine .box-content p {
  line-height: 1.6;
}


.box-25-member-magazine .tooltip {
  /* position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; */
}

.box-25-member-magazine .tooltip .tooltiptext {
  position: absolute;
  /* bottom: 50%; */
  top: 2rem;
  /* left: 50%; */
  left: calc(50% - 12.5rem);
  visibility: hidden;
  width: 100%;
  max-width: 25rem;
  background-color: rgba(255, 255, 255, 0.95);
  /* color: var(--blue); */
  color: var(--black);
  text-align: center;
  border-radius: 6px;
  padding: 1rem;
  z-index: 1;
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.box-25-member-magazine .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.box-25-member-magazine .open-pdf {
  color: var(--lightBlue);
  transition: color 0.5s ease;
}
.box-25-member-magazine .open-pdf:hover {
  color: var(--yellow);
}

.box-25-member-magazine .box-content a:hover {
  color: var(--yellow);
}

/************************************************/







/***********************************************/
/*********** box-100-new-member-form  *********/
.box-100-new-member-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;

  background-color: var(--yellow);

}




/*********** end box-100-new-member-form  *********/
/***********************************************/



/***********************************************/
/*********** box-50-update-member-form  *********/
.box-50-update-member-form {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  width: calc(50% - 3rem);
  margin: 1.5rem;

  background-color: var(--yellow);

}

/*********** end box-50-update-member-form  *********/
/***********************************************/



/****************************************************/
/*********** box-50-update-member-textbox  *********/
.box-50-update-member-textbox {
  width: 50%;
  width: calc(50% - 30px);
  margin: 15px;
  display: flex;
  flex-flow: column;
}

.box-50-update-member-textbox .box-content {
  width: 100%;
  padding: 2rem;
}

.box-50-update-member-textbox .box-content h4 {
  color: var(--blue);
}

.box-50-update-member-textbox .member-data-wrapper {
  color: var(--blue);
  font-weight: 600;
  margin: 2rem 0;
}

/*********** end box-50-update-member-textbox  *********/






/***********************************************************/
/************** Media queries *****************************/


@media all and (max-width: 1200px){

    .box-33-img-round-left {
      width: 33.3%;
      width: calc(50% - 30px);
      margin: 15px;
      display: flex;
    }
  
  


}

@media all and (max-width: 960px) {


  .box-50-update-member-textbox {
    width: calc(100% - 30px);
  }
  .box-50-update-member-form {
    width: calc(100% - 30px);
  }

  
  .box-33-img-round-left {
    width: 33.3%;
    width: calc(100% - 30px);
    margin: 15px;
    display: flex;
  }

  .box-100-activity-events {
    flex-direction: column;
  }

  .box-100-activity-events .box-image-container {
    width: 100%;
  }
  .box-100-activity-events .box-image-container .box-image {
    width: 18rem;
    height: 18rem;
  }



  .box-25-member-magazine {
    width: calc(33% - 30px);
  }



  .box-100-img-right {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
  .box-100-img-left .box-image-container,
   .box-100-img-right .box-image-container {
     width: 100%;
     min-height: 200px;
  }
  .box-100-img-left .box-image, .box-100-img-right .box-image {
    margin-top: 0;
  }
  
  .box-100-img-left .box-content, 
  .box-100-img-right .box-content {
    width: 100%;
    padding: 1rem 0;
  }




  .box-50-image-bottom {
    width: calc(100% - 30px);
  }


  .box-25 {
    width: calc(33% - 30px);
  }





}

@media all and (max-width: 768px) {

  .box-100-activity-events .box-content .top-content {
    flex-direction: column;
  }

  .box-100-activity-events .input-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .box-100-activity-events .number-participant-wrapper {
    display: flex;
  }
  .box-100-activity-events .show-number-participants {
    margin-top: 1rem;
  }


  .box-25-member-magazine {
    width: calc(50% - 30px);
  }

  .box-25 {
    width: calc(100% - 30px);
  }


  .box-100-activity-single-event {
    display: flex;
    flex-direction: column;
  }
  .box-100-activity-single-event .activity-single-event-main {
    width: 100%;
  }
  .box-100-activity-single-event .activity-single-event-info {
    width: 100%;
    padding: 2rem 0;
  }




}

@media all and (max-width: 550px) {



  .box-big-image-text-on-top {
    /* margin-top: 4rem; */
    /* margin-top: 2rem; */
    margin-top: 0rem;
  }
  .box-big-image-text-on-top .box-content h1 {
    font-size: 4rem;
  }
  .box-big-image-text-on-top .box-content p {
    font-size: 3rem;
  }



  .box-100-text-small-header .box-content div p {
    font-size: 2.2rem;
  }

  .box-33-img-round-left .box-content h4 {
    font-size: 2rem;
  }



  .box-100-activity-events {
    flex-direction: column;
    padding: 0 1rem;
  }
  .box-100-activity-events .box-content {
    padding-left: 0;
  }
  .box-100-activity-events .box-image-container {
    width: 100%;
  }
  .box-100-activity-events .box-image-container .box-image {
    width: 18rem;
    height: 18rem;
  }
  .box-100-activity-events .box-content .top-content {
    flex-direction: column;
    
  }
  .box-100-activity-events .date,
  .box-100-activity-events .clock,
  .box-100-activity-events .location {
    font-size: 2rem;
    padding-left: 0;
  }
  .box-100-activity-events .name {
    font-size: 2.4rem;
  }

  .box-100-activity-events .input-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }



  .box-33-img-round-left {
    flex-direction: column;
  }

  .box-33-img-round-left .box-image-container {
    display: flex;
    justify-content: center;
  }

  .box-33-img-round-left .box-content {
    width: 100%;
    padding: 2rem 0;
    justify-content: center;
    text-align: center;
  }

  .box-25-member-magazine {
    width: calc(100% - 30px);
  }



}



@media all and (max-width: 400px) {
  
  .box-33-img-round-left {
    flex-direction: column;
  }
  .box-33-img-round-left .box-content {
    width: 100%;
  }


  


}
