/* CSS For Desktop & Tablet */

/* Main Container Intro Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  background: linear-gradient(25deg, black, #848484, #131313);
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
.main-container {
  width: 1024px;
  max-width: 80%;
  text-align: center;
  font-family: lato, arial;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}
.logo {
  width: 350px;
  max-width: 80%;
  margin-bottom: 35px;
}
h1 {
  font-size: 36px;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}
h2 {
  font-size: 26px;
  color: #ffffff;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.05em;
}
p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5em;
}
.text-container {
  width: 80%;
  margin: 1em auto;
}
.image-link-container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
.image-link-container a {
  text-decoration: none;
}
.image-link-inner-container {
  margin: 0 10px;
  background: #e1e1e1;
  border-radius: 10px;
  padding: 0 0 1px 0;
  transition-duration: 250ms;
  transition-delay: 50ms;
  transition-timing-function: ease-out;
}
.image-link-inner-container p {
  color: #323232;
  line-height: 2em;
}
.image-link-inner-container img {
  width: 300px;
  margin-top: 0;
}
.image-link-inner-container:hover {
  background: white;
  box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.45);
  transform: translateY(-10px);
  border-radius: 0px;
}
.hover-link {
  position: relative;
  top: -30px;
  background: #323232;
  width: 85%;
  text-align: center;
  color: white;
  visibility: hidden;
  margin: 0 auto;
  z-index: -1;
  padding: 15px 5px;
  transition-duration: 500ms;
  transition-delay: 50ms;
  transition-timing-function: ease-out;
}
.image-link:hover .hover-link {
  visibility: visible;
  transform: translateY(20px);
}
.footer-container {
  width: 100%;
  margin: 0 auto;
}
.button-container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.extra-button {
  font-size: 16px;
  text-decoration: none;
  color: #323232;
  background: white;
  padding: 10px;
  margin: 5px;
  border-bottom: 5px solid darkgray;
  border-radius: 3px;
  display: inline-block;
  width: 150px;
  transition-delay: 50ms;
  transition-duration: 250ms;
}
.order-button {
  font-size: 16px;
  text-decoration: none;
  color: #323232;
  background: #2cf22f;
  padding: 10px;
  margin: 5px;
  border-bottom: 5px solid #068508;
  border-radius: 3px;
  display: inline-block;
  width: 150px;
  transition-delay: 50ms;
  transition-duration: 250ms;
}
.telegram-button {
  font-size: 16px;
  text-decoration: none;
  color: #323232;
  background: #80bef8;
  padding: 10px;
  margin: 5px;
  border-bottom: 5px solid #064c85;
  border-radius: 3px;
  display: inline-block;
  width: 150px;
  transition-delay: 50ms;
  transition-duration: 250ms;
}
.extra-button:hover,
.order-button:hover,
.telegram-button:hover {
  background: #323232;
  color: white;
  border-bottom: 5px solid #222222;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
}
.footer-container hr {
  width: 80%;
  margin-top: 30px;
}
.footer-container a {
  color: white;
  background: #866419;
  text-decoration: none;
  margin-top: 15px;
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 80%;
  transition-delay: 50ms;
  transition-duration: 250ms;
}
.footer-container a:hover {
  color: #a07b2c;
  background: white;
}
.language {
  text-align: center;
  padding-top: 35px;
  padding-bottom: 25px;
}
a.language {
  margin: 3px 10px;
}
img.language {
  width: 35px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid gray;
  border-radius: 100%;
  transition: 150ms ease-in-out 50ms;
}
a.language:hover img {
  transform: scale(1.5, 1.5);
}

.category {
  width: 350px;
  max-width: 90%;
  margin: 1rem auto;
  display: block;
}

.category:hover {
  text-decoration: none;
}

.category .textCategory {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: end;
}

.category p {
  color: white;
  background-color: black;
  padding: 10px 1rem 10px 1.75rem;
  border-radius: 0 0 0 2rem;
  margin: 0;
  display: inline-block;
  margin-left: auto;
  height: 50px;
  position: relative;
  top: -25px;
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.35);
}

.category img {
  width: 100%;
  transition: 100ms ease-in-out 50ms;
  border-radius: 5px;
}

.category img:hover {
  box-shadow: 0 0 25px 3px rgba(255, 255, 255, 0.75);
}

.contact-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
}

.empty-space {
  height: 5rem;
}