/*
    Auther: Abdelrhman Said
*/

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

a{
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.social {
  display: inline-flex;
  list-style: none;
  margin: 16px 0px 15px 0px;
}

.social .icon {
  position: relative;
  background: #acacac;
  border-radius: 50%;
  padding: 15px;
  margin: 5px;
  width: 50px;
  height: 50px;
  margin-left: 50px;
  font-size: 18px;
  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);
}

.social .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  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);
}

.social .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);
}

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

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

.social .facebook:hover,
.social .facebook:hover .tooltip,
.social .facebook:hover .tooltip::before {
  background: #018801;
  color: #acacac;
}

.social .twitter:hover,
.social .twitter:hover .tooltip,
.social .twitter:hover .tooltip::before {
  background: #018801;
  color: #acacac;
}

.social .instagram:hover,
.social .instagram:hover .tooltip,
.social .instagram:hover .tooltip::before {
  background: #018801;
  color: #acacac;
}

.footer{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) -5%, rgba(1,136,1,1) 100%);
  list-style-type: none;
  max-height: 10000px;
  position: relative;
  bottom: 0px;
}

.footer h3{
  color: #acacac;
  font-size: 18px;
}

.contact{
  margin-left: 60px;
  margin-bottom: 10px;
  line-height: 2.5rem;
}
.contact a{
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}

h1{
  margin-left: 60px;
  color: #ffffff;
  font-size: 24px;
}