@font-face {
    font-family: "RockwellRegular";
    src: url("../fonts/RockwellRegular/RockwellRegular.eot");
    src: url("../fonts/RockwellRegular/RockwellRegular.eot?#iefix")
        format("embedded-opentype"),
      url("../fonts/RockwellRegular/RockwellRegular.woff") format("woff"),
      url("../fonts/RockwellRegular/RockwellRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
  }
  
  * {
    padding: 0;
    margin: 0;
    font-family: "RockwellRegular", Courier Bold, Courier, Georgia, Times,
      Times New Roman, serif;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  /*COOKIE STYLING*/
  #cookie_notification {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 900px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  }
  
  #cookie_notification p {
    margin: 0;
    margin-right: 1.3rem;
    font-size: 0.8rem;
    text-align: left;
    color: #222;
  }
  /*COOKIE STYLING ENDS*/
  
  header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template: 100px auto / 6rem 15.3rem 1fr;
    background-color: rgb(255, 255, 255);
    background: -webkit-linear-gradient(
      180deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    );
    background: -moz-linear-gradient(
      180deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    );
    background: -o-linear-gradient(
      180deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    );
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    );
  }

  .nameplushref{
    display: flex;
    flex-direction: row;
  }

    .ob_prog{
      font-size: 0.7rem;
      cursor: pointer;
      text-decoration:underline;
      margin: 2.5rem 0 0 1.2rem ;      
    }
  
  
  .logo {
    align-self: center;
    justify-self: center;
  }
  
  .name {
    margin-top: -0.4rem;
    font-size: 0.7rem;
    align-self: center;
    justify-self: center;
    letter-spacing: 0.087rem;
  }
  
  .menu {
    margin-top: -0.4rem;
    align-self: center;
    justify-self: right;
    padding-right: 1.7rem;
    width: 42px;
    padding-bottom: 0.2rem;
  }
  
  .bar {
    width: 100%;
    height: 8px;
    background-color: #000;
    transition: ease-in-out 0.4s;
    -webkit-transition: ease-in-out 0.4s;
    -moz-transition: ease-in-out 0.4s;
    -ms-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
  }
  
  #bar1 {
    transform: translateY(22px);
    -webkit-transform: translateY(22px);
    -moz-transform: translateY(22px);
    -ms-transform: translateY(22px);
    -o-transform: translateY(22px);
  }
  
  #bar3 {
    transform: translateY(-22px);
    -webkit-transform: translateY(-22px);
    -moz-transform: translateY(-22px);
    -ms-transform: translateY(-22px);
    -o-transform: translateY(-22px);
  }
  
  /*ANIMATION*/
  
  .change #bar2 {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  
  .change #bar3 {
    transform: rotate(45deg) translateX(-11px);
    -webkit-transform: rotate(45deg) translateX(-11px);
    -moz-transform: rotate(45deg) translateX(-11px);
    -ms-transform: rotate(45deg) translateX(-11px);
    -o-transform: rotate(45deg) translateX(-11px);
  }
  
  .change #bar1 {
    transform: rotate(-45deg) translateX(-11px);
    -webkit-transform: rotate(-45deg) translateX(-11px);
    -moz-transform: rotate(-45deg) translateX(-11px);
    -ms-transform: rotate(-45deg) translateX(-11px);
    -o-transform: rotate(-45deg) translateX(-11px);
  }
  
  .nav {
    background: rgb(240, 240, 240);
    grid-column: span 3;
    font-size: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    display: none;
  }
  
  .nav img {
    display: none;
    width: 9px;
  }
  
  .nav-op {
    letter-spacing: 0.087rem;
    text-align: left;
    list-style-type: none;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    display: grid;
    grid-template-columns: 1rem 1fr 1rem;
    grid-template-rows: auto;
    justify-items: center;
  }
  
  .nav-op a {
    grid-column-start: 2;
    text-align: center;
  }
  
  .nav-op a:hover {
    color: white;
  }
  
  .block2 {
    background-color: rgb(240, 240, 240);
  }
  
  .block1,
  .block2 {
    display: grid;
    grid-template-columns: 1.7rem 1fr 1rem;
    grid-template-rows: minmax(auto, auto);
    padding-top: 1.9rem;
    padding-bottom: 2rem;
  }
  
  .block1 p,
  .block2 p {
    padding-top: 1rem;
  }
  
  .block1 h1,
  .block1 p,
  .block2 h1,
  .block2 p,
  .block1 li,
  .block2 li,
  .block1 ul,
  .block2 ul,
  .block1 h2,
  .block2 h2{
    grid-column-start: 2;
  }
  
  .memb_photo {
    grid-column-start: 2;
    padding-left: 0.15rem;
    padding-bottom: 1.3rem;
    padding-top: 0.4rem;
    object-fit: cover;
    width: 85vw;
    height: 85vw;
  }
  
  .dot {
    width: 9px;
    padding-left: 0.2rem;
    margin-right: 0.1rem;
  }
  
  .member-ch {
    cursor: pointer;
  }
  
  .member-ch:hover {
    color: white;
  }
  
  .blockop {
    margin-top: -1.8rem;
  }
  
  h1 {
    font-weight: normal;
  }
  
  h1 img,
  p img {
    margin-left: -1.2rem;
  }
  
  .header1 {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .header2 {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  
  .subheader {
    padding-bottom: 1.3rem;
  }
  
  .center-img {
    width: 300px;
    height: auto;
    display: block;
    margin: auto;
  }
  
  .center-video {
    width: 90%;
    height: auto;
    display: block;
    margin: auto;
  }
  
  .members_block li {
    margin-left: 1rem;
  }

  .members_list{
    grid-column-start: 2;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .ml_head{
    text-decoration: underline; 
    margin-bottom: 0.7rem;
  }

  .ml_head_cand{
    margin-top: 1rem;
  }

  
  footer {
    display: grid;
    grid-template-columns: 0.55rem 1fr 1rem;
    grid-template-rows: auto;
    padding-bottom: 1.6rem;
    z-index: 2;
  }
  
  footer span {
    margin-left: -0.2rem;
  }
  
  footer div {
    grid-column-start: 2;
    padding-top: 1.9rem;
    letter-spacing: 0.1rem;
    font-size: 0.7rem;
  }
  .contact {
    padding-right: 0.3rem;
    width: 9px;
  }
  
  .img-sn {
    padding-right: 1em;
    margin-top: -0.3rem;
  }
  
  .cont {
    font-size: 0.8rem;
  }
  
  .contact_ref {
    margin: 0;
    padding: 0;
  }
  
  .btn-os {
    align-self: center;
    margin-top: 1.4rem;
    margin-bottom: -0.2rem;
    padding: 0.3rem 0.5rem;
    justify-self: center;
    cursor: pointer;
    border: 3px solid black;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.087rem;
  }
  
  .test-main {
    width: 100%;
    height: 100vh;
    display: grid;
    justify-items: center;
    align-content: center;
    background-color: chartreuse;
  }
  
  .test-block {
    width: 100px;
    height: 100px;
    background-color: crimson;
  }

  .sched-block{
    grid-column-start: 1;
    grid-column-end: 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
  }

  .sched-gray{
    background-color: rgb(240, 240, 240);
  }

  .sched-block>p, .sched-block>div{
    margin-left: 1.7rem;
  }

  .sched-para{
    margin-bottom: -1rem;
  }
  
  .popup-flex {
    width: 100%;
    display: grid;
    justify-items: center;
    align-content: center;
  }
  
  .popup {
    padding-top: 1.8rem;
    padding-bottom: 1.5rem;
    max-width: 600px;
    background-color: rgb(240, 240, 240);
    position: fixed;
    margin-top: 25vh;
    z-index: 10;
    display: none;
  }
  
  .popup h1 {
    text-align: center;
    font-size: 1.6rem;
    padding-bottom: 2rem;
  }
  
  .popup-form {
    display: grid;
  }
  
  .popup-form .name-email {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
  
  .popup-form .input-text {
    width: 220px;
    height: 2.3rem;
    padding-left: 0.3rem;
    border: none;
    font-size: 1rem;
    background-color: rgb(255, 255, 255);
    justify-self: center;
  }
  
  .popup .btn-os {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .uppop {
    display: grid;
    justify-content: center;
  }
  
  .grey {
    background-color: rgba(40, 40, 40, 0.75);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9;
    display: none;
  }
  
  @media (min-width: 576px) {
    #cookie_notification.show {
      display: grid;
      grid-template-columns: 1fr 7.3rem;
    }
    .cookie-btn {
      margin-bottom: 0.7rem;
      margin-left: 0.5rem;
    }
  }
  
  @media (max-width: 575px) {
    #cookie_notification.show {
      display: block;
      text-align: left;
    }
    .cookie-btn {
      margin-top: 0.7rem;
    }
  }
  
  @media only screen and (min-width: 592px) {
    .popup-form .input-text {
      width: 150px;
    }
  
    .memb_photo {
      grid-column-start: span 2;
      grid-row-start: 2;
      margin-top: 1rem;
      padding-left: 1.6rem;
      align-self: left;
      width: 400px;
      height: 400px;
    }
  
    .center-img {
      width: 500px;
    }
  }

  @media only screen and (min-width: 768px) {
    .members_list{
      display: grid;
      grid-template-columns: 20rem 20rem 1fr;
    }

    .ml_head{
      margin-bottom: 0.5rem;
    }

    .ml_head_cand{
      margin-top: 0;
    }
  
  }
  
  @media only screen and (min-width: 1174px) {
    #cookie_notification {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    header {
      display: grid;
      grid-template: 95px/ 5rem 14.9rem 1fr;
      background: -webkit-linear-gradient(
        180deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
      );
      background: -moz-linear-gradient(
        180deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
      );
      background: -o-linear-gradient(
        180deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.75),
        rgba(255, 255, 255, 0)
      );
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
      );
    }
  
    .logo {
      justify-self: right;
      margin: -1rem 0 0 0;
    }

    .nameplushref{
      display: flex;
      flex-direction: column;
      margin-top: 1.4rem;
    }
  
    .name {
      justify-self: left;
      padding-right: 5rem;
    }
  
    .menu {
      display: none;
    }
  
    .nav {
      display: grid;
      grid-template-columns: 1fr 1.1fr 1.3fr 1.1fr 1.8fr 1.2fr 1.4fr 1.1fr 1.4fr;
      grid-template-rows: auto;
      justify-content: space-around;
      align-items: center;
      justify-items: center;
      grid-column: 4;
      font-size: 0.7rem;
      margin-top: 1rem;
      height: 2.7rem;
    }
  
    .nav img {
      display: block;
      align-self: center;
      padding-left: 0.3rem;
      transform: scale(0);
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transition-duration: 200ms;
    }
    .nav a {
      text-align: left;
    }

    .ob_prog{
      margin: 0.2rem 0 0 1.3rem;
      font-size: 0.8rem;
    }
  
    .nav-op {
      display: grid;
  
      align-self: stretch;
      grid-template-columns: 19px 1fr;
      grid-template-rows: auto;
    }
  
    .nav img,
    .nav a {
      margin-top: -0.2rem;
      align-self: center;
    }
  
    .nav-op a:hover {
      color: black;
    }
  
    .nav-op:hover > img {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
    }
  
    .block {
      margin-left: 6.9rem;
    }
  
    .block1,
    .block2 {
      margin-left: 13rem;
      padding-left: 2rem;
    }
  
    .block2 {
      background-image: url(../img/icon_02.svg);
      /*background-position: right;*/
      background-position: 95%;
      background-repeat: no-repeat;
      background-size: 70px;
    }

      
    .block1 p,
    .block2 p {
      width: 90%;
    }

    .cont{
      padding-left: 8vw
    }
  
    .contop {
      padding-left: 3.6rem;
    }
  
    .contact_div {
      margin-left: -4rem;
    }
  
    .center-video {
      width: 1000px;
    }

    .btn_block{
      margin-top: -0.5rem;
      margin-bottom: -1rem;
      display: flex;
      align-items: center;
      align-content: center;
      justify-content: center;
      justify-items: center;
      gap: 2rem;
    }

    
    .btn_block p{
      width: auto;
    }

    .sched-block{
        display: grid;
        grid-template-columns: 7rem auto;
        align-items: center;
    }

    .sched-block>p{
      grid-column-start: 1;
      writing-mode: sideways-lr;
      -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
      padding-left: 2rem;
}

    .sched-block>div{
      grid-column-start: 2;
    }

    .sched-block>div>div{
      display: grid;
      grid-template-columns: 5rem auto;
    }

    .sched-para{
      grid-column-start: 1;
    }
  
    footer {
      display: grid;
      grid-template-columns: 5.3rem 16% 1fr 15% 6rem;
      grid-template-rows: auto;
    }
  
    footer div {
      grid-column-start: 3;
    }
  
    footer span {
      margin-left: -0.1rem;
    }
  
    .dot {
      margin-right: 0;
    }
  }
  