
  :root {
    --font-size-1: 17px;
    --width-1: 700px;
    --width-2: 60vw;
    --width-3: 80vw;
    --margin-1: 20px;
  }
  .cur {
    text-decoration: underline;
    text-underline-offset: 2.5px
  }
  .pad {
    padding: 20px;
  }
  @media screen and (max-width:550px){
    :root {
      --font-size-1: 3.1vw;
      --width-1: auto;
    }
  }
  .disable-dbl-tap-zoom {
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

  html, body {
    z-index: 1;
    font-size: var(--font-size-1);
    font-family: Helvetica,Arial,sans-serif;
    padding: 0;
    margin: 0;
    color: #000000;
    /* background: #FCE9E7; */
    background: #F9F7E8;
    line-height: 1.42;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  ::-webkit-scrollbar {
      display: none;
  }
  a, button, input, label {
    cursor: pointer;
    text-decoration: none;
    color: var(--color-1);
    color: rgb(0, 0, 0)
  }
  button {
    border: none;
    background: none;
    font-size: var(--font-size-1);
  }

  *, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgb(0, 0, 0)
  }
  p, h1, h2, h3, h4, ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
  }
  .cl:hover,
  .TextBlockContent a:hover {
    font-style: italic;
  }
  .underline,
  a:not([href^="mailto:"]):not([href^="tel:"]) {
    text-decoration: underline;
    text-underline-offset: 2.5px;
    text-decoration-thickness: 1px;
  }
  /* .underline:hover,
  a:not([href^="mailto:"]):not([href^="tel:"]):hover {
    text-decoration: underline;
    text-decoration-style: dashed;
    font-style: normal;
    text-underline-offset: 2.5px
  } */
  .underline:hover,
  a:not([href^="mailto:"]):not([href^="tel:"]):hover {
  font-style: italic;
  }
 
  .ImageContainer  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
  }
  .ImageContainer p {
    margin-top: 20px;
    text-align: center;
  }
  .ImageContainer img {
    width: 180px;
    object-fit: cover;
    height: 180px;
    border-radius: 100px;
  }
 
  @media screen and (max-width:600px){
    .ImageContainer  {
    display: block;
    margin-top: 10px;
    }
    .ImageContainer p {
      margin-top: 14px;
      text-align: center;
    }
    .ImageCInner  {
      display: block;
      margin-bottom: 26px;
    }
    .ImageContainer img {
      width: 24vw;
      object-fit: cover;
      margin: auto;
      display: block;
      height: 24vw;
      border-radius: 24vw;
    }
  
  }





  .SlideShowContainer {
    justify-content: center;
    align-items: center;
    display: block;
    margin: auto;
    width: 100vw;
  }
  .next, .pause {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;

    margin: var(--margin-1);
  }
  .slick-prev, .slick-next {
     display: none!important
  }
  .wrap {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .TextBlockSmaller p{
    padding: 0 10vw!important
  }
  .TextBlock {
    text-align: center;
  }

  .TextBlockContentText {
    width: 70vw;
    
  }
  .TextBlockContent strong{
    font-weight: bold;
  }
  .slick-dots {
    display: none!important
  }

  .slick-slide {
    min-height: 100vh!important;
    overflow-y: scroll;
  }
  .slick-initialized .slick-slide {
    align-items: center!important;
    display: flex!important;
    justify-content: center;
  }

  @media screen and (max-width:600px){

    .SlideShowContainer {
      justify-content: center;
      align-items: center;
      display: block;
      margin: auto;
      width: 80vw;
    }
    .SlideShowContainer,.TextBlockContentText {
      width: 85vw;
    }
    .TextBlockSmaller p{
      padding: 0 0!important
    }
    .slick-slide {
      min-height: 86vh!important;
      overflow-y: scroll;
    }
    .next {
      right: 0;
    }
  }