.example::-webkit-scrollbar {
    display: none;
  }
  
  *, *:before, *:after{
    scroll-behavior: smooth;
    box-sizing: border-box;
  }
  
  body {
    margin:0;
    font-family:Roboto;
    position:relative;
    
  }
  /*
  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: darkred;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
  }
  #loading-animation {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid darkred;
    border-bottom: 16px solid darkred;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 2s linear infinite;
  }
  
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }*/
  
  header {
    position: sticky;
    width: 100%;
    z-index: 10;
    background: transparent;
  }
  
  li {
    list-style: none;
  }
  
  p{
    text-decoration: none;
    font-weight: 300;
    font-size: larger;
  }

  p:hover{
    text-decoration: underline;
  }

  a {
    text-decoration: none;
    font-weight: 300;
    font-size: larger;
  }

  a:hover{
    text-decoration: underline;
  }
  
  h2 {
    margin: 0;
    font-size:xx-large;
    color: black;
  }
  
  h2:hover{
    text-decoration: underline;
  }
  
  .blog-post{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    padding-top: 20px;
  }


  .blog-content{
    width: 100%;
  }

  .blog-content p{
    color: gray;
  }

  .padding-for-post{
    background: white;
    padding: 20px;
    width: 50%;
  }


  .navbar{
    height: 200px;
    display: flex;
    align-items: center;
    background-color: transparent;
    position: relative;
    width: 100%;
    justify-content: space-around;
  }

  .main-menu{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0 0 0;
  }

  .logo-container{
    height: 150px;
  }

  .logo-container img{
    height:100%;
  }

  .complete-menu{
    width: 60%;
  }

  .complete-menu ul{
    display: flex;
    justify-content: flex-end;
    gap: 40px;
  }

  .complete-menu a{
    color: #000;
  }

  .menu{
    width: 100%;
  }

  .menu a{
    color: black;
  }
  
  .navbar-fixed{
    position: fixed;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
  }
  
  .nav-branding {
    color: white;
    font-size: 3rem;
  }
  
  .nav-link {
    color: gray;
    transition: 0,7s ease;
  }
  
  
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
  
  }
  
  #Content{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 70vh;
  }
  
  .front-page-gallery{
    display: flex;
    width: 95%;
	gap:10px;
  }

  .front-page-gallery a{
    width: 50%;
  }

  .amc-container{
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .amc-logo{
    position: absolute;
    height: 150px;
    padding-bottom: 30px;
  }
  
  .elipsa-container{
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .elipsa-logo{
    position: absolute;
    height: 150px;
    padding-bottom: 30px;
  }
  
  .amc-container img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 1.5s;
  }

  .front-page-gallery a:hover .amc-container img{
    height: 120%;
    
  }

  .elipsa-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1.5s;
  }

  .front-page-gallery a:hover .elipsa-container img{
    height: 120%;
    
  }

  .ending{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .footer {
    position: relative;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: 30vh;
    padding: 3%;
  }
  
  
  .footer-menu a{
    color:black;
  }

  .social-logo{
    font-size: larger;
    color: #000;
  }

.info{
	display:block;
}

  /* this is for post page and its posts */

  .title-container{
    padding-left:15%;
  }

  .title-container h1{
    font-size: 10em;
    margin-top: 0;
  }

  .post-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    grid-template-rows: auto;
    padding: 0 15%;
  }

  .post-container a{
    width: 100%;
    color: #000;
  }

  .post-container a h3{
    font-weight: 300;
  }

  .post-item{
    width: 100%;
    height: 100%;
  }

  .thumbnails{
    width: 100%;
    overflow: hidden;

    background-size: cover;
    transition: 0.5s;
  }

  .thumbnails:hover{
    transform: translateY(-15px);
  }

  .thumbnails img{

    width: 100%;
    height: auto;
    
  }

  .thumbnail{
    height: 85%;
    width: 100%;
  }

  .thumbnail img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }


  .slideshow-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.mySlides {
    display: none;
}

/* navigation for when a product is clicked */
.slideshow-container .prev  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: black;
    cursor: pointer;
    padding: 10px;

}

.slideshow-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: black;
  cursor: pointer;
  padding: 10px;
  
}

.prev { 
  left: 10px;
  color: #000;
}
.next { 
  right: 10px;
  color: #000;
}

/* Navigation for category page */
.nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
}



/* Thumbnail Styles */
.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    margin: 5px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.thumbnail:hover, .active-thumb {
    border: 3px solid black;
}





  /*header menu for tablets */
  @media(max-width: 880px){

    .title-container h1{
      font-size: 6em;
    }

    .description{
      font-size: 1em;
    }

     .menu{
      position: relative;
      display: flex;
      align-items: flex-start;
      margin: 10px 10px;
      padding: 25% 0 0 10%;
      margin: 0;
      flex-direction: column;
      height: 100%;
      width: 50%;
      background: wheat;
      justify-content: flex-start;
    }

    .complete-menu ul{
      justify-content: center;
      padding-bottom: 70%;
      flex-direction: column;
      background: white;
    }

     .menu a{
      color: #000;
      text-decoration: none;
      font-weight: 300;
      font-size: larger;
    }

    menu a:hover{
      text-decoration: underline;
    }

     .menu:nth-child(2){
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 10px 10px;
      flex-wrap: wrap;
      padding: 0;
      flex-direction: row;
    }

    .bar{
      background: black;
    }

    .hamburger{
      display: block;
      right: 5%;
      position: absolute;
      z-index: 2;
  }
  
  .hamburger.active .bar:nth-child(2){
      opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
      background: black;
  }

  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
    background: black;
  }
  
    .main-menu{
      position: fixed;
      left: 100%;
      top: 0;
      flex-direction: row-reverse;
      width: 100%;
      transition: 0.5s;
      height: 100%;
      padding: 0;
      z-index: 1;
    }
  
  
    .nav-item{
      font-size: 1.7em;
    }
  
    .nav-item p{
      margin: 0;
    }
  
    .nav-item1 {
      margin: 5% 0 5% 0;
      font-size: 1.5em;
    }
  
    .main-menu.active{
        left: 0;
      }
      
      #Content{
        height: fit-content;
      }

      .front-page-gallery{
        flex-direction: column;
      }

      .front-page-gallery a{
        width: 100%;
		height:50%;
      }

      .post-container{
        grid-template-columns: repeat(2, 1fr);
      }
  }
  
  
  @media(max-width:550px){
	  

	  .logo-container{
		  height:130px;
	  }

    .menu{
      width: 100%;
    }

    .amc-logo{
      height: 100px;
    }

    .elipsa-logo{
      height: 100px;
    }
	  
	  .info{
		 display: flex;
    	align-items: center;
    	width: 100%;
    	justify-content: space-between;
	  }
	  
	.social-media{
	  display: flex;
      flex-direction: column;
      height: 100%;
	  }

    .post-container{
      grid-template-columns: repeat(1, 1fr);
	  padding:0 5%;
    }

	  .title-container{
		  padding-left:5%;
	  }

  }
  
   