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

body {
  background-color: #3c3a3a;
  font-family: "Poppins" sans-serif;

  text-transform: uppercase;
  overflow: hidden;
  min-height: 100vh;
  min-width: 100vw;
}
@media only screen and (min-width: 992px) {
  .logo {
    height: 30vh;
    width: 30vh;
    position: absolute;
    top: 3vh;
    left: calc(50vw - 15vh);
  }

  .wrapper .icon {
    width: 50px;
    height: 50px;
  }
  .fa,
  .fab {
    font-size: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .logo {
    height: 50vw;
    width: 50vw;
    position: absolute;
    top: 3vh;
    left: 25vw;
  }
  .fa,
  .fab {
    font-size: 100px;
  }
  .wrapper .icon {
    width: 150px;
    height: 150px;
  }
}
.kol {
  height: 100vh;
  max-width: 100vw;
}
.sofaGhaem {
  position: absolute;
  font-size: 9vw;
  left: 0;
  right: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  top: 0;
  padding: 50vh 0 0 0;
}
.links {
  display: grid;
  place-items: center;
  max-width: 100vw;
  position: absolute;
  width: 100vw;
  bottom: 3em;
}

.sofaGhaem span {
  display: inline-block;
  color: #eaa110;
  text-shadow: 0px 0px 0px #ffffff;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.sofaGhaem span:nth-child(1) {
  animation-name: sofaGhaemleft;
}

.sofaGhaem span:nth-child(2) {
  animation-name: sofaGhaemleft;
  animation-delay: 0.3s;
}

.sofaGhaem span:nth-child(2) {
  animation-name: sofaGhaemleft;
  animation-delay: 0.3s;
}

.sofaGhaem span:nth-child(3) {
  animation-name: sofaGhaemleft;
  animation-delay: 0.6s;
}

.sofaGhaem span:nth-child(4) {
  animation-name: sofaGhaemright;
  animation-delay: 0.8s;
}

.sofaGhaem span:nth-child(5) {
  animation-name: sofaGhaemright;
  animation-delay: 1s;
}

.sofaGhaem span:nth-child(6) {
  animation-name: sofaGhaemright;
  animation-delay: 1.3s;
}

.sofaGhaem span:nth-child(7) {
  animation-name: sofaGhaemleft;
  animation-delay: 1.6s;
}

.sofaGhaem span:nth-child(8) {
  animation-name: sofaGhaemright;
  animation-delay: 2s;
}

.sofaGhaem span:nth-child(9) {
  animation-name: sofaGhaemright;
  animation-delay: 2.3s;
}

@keyframes sofaGhaemleft {
  50% {
    transform: skew(50deg) translateY(-200%);
    text-shadow: 0px 0px 50px;
    opacity: 0;
  }
}

@keyframes sofaGhaemright {
  50% {
    transform: skew(-50deg) translateY(-200%);
    text-shadow: 0px 0px 50px;
    opacity: 0;
  }
}

/* // */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: #eaa110;
}
*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.wrapper {
  display: inline-flex;
  list-style: none;
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 1em;

  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 30px;
  background: #ffffff;
  color: #000;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .map:hover,
.wrapper .map:hover .tooltip,
.wrapper .map:hover .tooltip::before {
  background: #1877f2;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #c92d8f;
  color: #ffffff;
}

.wrapper .edge:hover,
.wrapper .edge:hover .tooltip,
.wrapper .edge:hover .tooltip::before {
  background: #e3781b;
  color: #ffffff;
}
