html, body {
  height:100%;
  width:100%;
  margin:0;
  padding:0;
}

.bgc {
  background-color: rgb(5, 5, 5);
  overflow-x: hidden;
}

.sideMenu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    color: rgb(255, 255, 255);
    background-color: rgb(5, 5, 5);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    font-family: "Century Gothic";
    border-right-style: solid;
    border-width: 1px;
   
  }
  
  .sideMenu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 30px;
    color: rgb(255, 255, 255);
    display: block;
    transition: 0.3s;
   
  }
  
  .sideMenu a:hover {
    color:rgb(255, 255, 255);
    font-weight:bold;
  }
  
  .sideMenu .closebtnmenu {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  @media screen and (max-height: 450px) {
    .sideMenu {padding-top: 15px;}
    .sideMenu a {font-size: 18px;}
  }


  .sidebar {
    height:100%;
    position: absolute;
    margin-left: 0%;
    width: 5%;
    background-color: rgb(5, 5, 5);
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    border-right-style: solid;
    border-width: 1px;
  }

  @media (max-width:700px){
    .sidebar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border-style: solid;
      border-width: 2px;
    }
  }


  .contacts {
    color:rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex:0 0 auto;
  }


  .smbtn {
    border: none;
    background-color: rgb(255, 255, 255);
    font-family: "Century Gothic";
    font-weight: bold;
  }


  .policybtn {
    border: none;
    color:rgb(255, 255, 255);
    background-color: rgb(5, 5, 5);
    font-family: "Century Gothic";
  }


 
  .mylist  {
    list-style-type: none;
    width: 70%;
    position: absolute;
    font-size: 2vw;
    margin: 30px 0;
    line-height: 70px; 
  }

  .mylist li {
   position: relative;
  }  

  .mylist a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: inline-block;
    position:relative; 
  }

  .mylist a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top:100%;
    left: 0;
    background: rgb(255, 255, 255);
    transition: transform 0.25s ease-out;
    transform: scaleX(0);
    transform-origin: left;
    bottom: 0;
  }
  
  .mylist a:hover::after {
    transform: scaleX(1);
  }

  @media (max-width:700px){
    .mylist {
      font-size: 85%; 
    }
  }


  .indice {
    position: absolute;
    top: 7%;
    left: 7%;
    width: 100%;
    font-family: "Century Gothic";
    line-height: 1;
    color: rgb(255, 255, 255);
  }


  .returnbtn {
    position: fixed;
    top: 2%;
    right: 2%;
    background-color: rgb(5, 5, 5);
    z-index: 1;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    color: rgb(255, 255, 255);
    
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-style: solid;  
  }

/* style galleries */
  .row {
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    justify-content: center;
    color: rgb(255, 255, 255);
    
  }
  
  .column {
    -ms-flex: 25%; 
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 80%;
    }
  }
  
  .modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9); /* Black opacity */
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  #caption {
    margin: auto;
    display: block; 
    width: 80%; 
    max-width: 700px;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 10px 0; 
    height: 150px;
  }
  
  .modal-content {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }
  

  


  

  


  
