@import url("https://fonts.googleapis.com/css2?family=Corben:wght@700&display=swap");

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

body {
  --space: 2rem;

  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--space);
  width: 100%;
  font-family: "Corben", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  background: #000;
}
.loog {
    margin: auto;
    position: absolute;
    z-index: 10000;
    left: 1%;
    top: 1px;
}
.loog img {
    width: 40%;
    /* float: left; */
    /* text-align: center; */
    position: a;
    background: #000;
    border-radius: 0 0 20px 20px;
    /* padding: 14px 20px; */
    /* border: 1px solid #fff; */
    box-shadow: 0 0 29px 1px blue;
}
.menulink {
    border-radius: 10px;
    width: 100%;
    position: absolute;
    text-align: center;
    z-index: 100;
    box-shadow: 8px, 10px ,1px, #fff;
}
/*.menulink:hover {
    margin: auto;
    background: #f79635;

}*/
.menulink img {
    width: 50%;
    z-index: 1000;
    box-shadow: 0px 0px 15px -2px #fff;
}
.menulink a{
  text-decoration: none;
  color: #fff !important;
}
.vert {
    display: none;
    overflow: scroll;
    height: 100%;
    overflow-x: hidden;
}
    
  @media only screen and (min-width: 600px)  {

    .vert {display:block
    }
    .sq{
    display:none;
    }
}
.marquee {
  --duration: 60s;
  --gap: var(--space);

  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  transform: skewY(-3deg);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee__group img {
  max-width: clamp(10rem, 1rem + 28vmin, 20rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.marquee__group p {
  background-image: linear-gradient(
    75deg,
    hsl(240deg 70% 49%) 0%,
    hsl(253deg 70% 49%) 11%,
    hsl(267deg 70% 49%) 22%,
    hsl(280deg 71% 48%) 33%,
    hsl(293deg 71% 48%) 44%,
    hsl(307deg 71% 48%) 56%,
    hsl(320deg 71% 48%) 67%,
    hsl(333deg 72% 48%) 78%,
    hsl(347deg 72% 48%) 89%,
    hsl(0deg 73% 47%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marquee--borders {
  border-block: 3px solid dodgerblue;
  padding-block: 0.75rem;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

a:link,
a:visited {
  color: #444;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
h1 {
  font-size: 20px;
  text-align: center;
  display: block;
  background: linear-gradient(to right top, #6f96f3, #164ed2);
  padding: 20px;
  color: #fff;
  border-radius: 50px;
}

/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;

  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  z-index:100000;
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}

.social {
    color: #fff;
    /* float: left; */
    /* list-style: none; */
    position: fixed;
    left: 30px;
    bottom: 0px;
    z-index:10000;
}
.social li {
    list-style: none;
   /* display: inline;*/
    font-size: 16px;
    margin-bottom: 10px;
    width:50px;
}
.social img {
    width: 100%;
}
