/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@200;300;400;700&display=swap");
/* ^^^ Default ^^^ */
::-moz-selection {
  color: white;
  background: rgba(0, 0, 0, 0.5333333333);
}
::selection {
  color: white;
  background: rgba(0, 0, 0, 0.5333333333);
}

body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  color: #303030;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
body::-webkit-scrollbar {
  width: 0px;
  border-radius: 6px;
}
body::-webkit-scrollbar-track {
  background: #FFFFFF;
}
body::-webkit-scrollbar-thumb {
  background: #161616;
}

#scroll {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background: #000000;
  border-radius: 50%;
  transform: scale(1.1);
}
#scroll.fade {
  opacity: 0.5;
}
#scroll img {
  filter: invert(1);
}
#scroll:hover {
  opacity: 1;
}

h1 {
  color: #000000;
  font-size: 80px;
}

h2 {
  color: #000000;
  font-size: 48px;
}

@media only screen and (max-width: 530px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
  }
}
.gradient-text {
  background: linear-gradient(90deg, #FF00CC, #333399);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text::-moz-selection {
  background: rgba(51, 51, 153, 0.1882352941);
}
.gradient-text::selection {
  background: rgba(51, 51, 153, 0.1882352941);
}

a {
  text-decoration: none;
  color: #000000;
  transition-duration: 0.2s;
}
a:hover {
  color: #161616;
}

/* ^^^ Logo ^^^ */
#logo {
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  margin: 30px 0px 0px 30px;
  align-items: center;
}
#logo img {
  height: 60px;
  fill: "#5465FF";
}
#logo p .name {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -2px;
}
#logo p .footer {
  letter-spacing: 15px;
  font-weight: 200;
}
#logo p br {
  content: "";
  display: block;
  margin: -10px;
}
#logo:hover {
  color: #303030;
}

@media only screen and (max-width: 530px) {
  #scroll {
    width: 28px;
    height: 28px;
  }
  #scroll img {
    width: 28px;
  }
  #logo {
    margin: 15px 0 0 15px;
  }
  #logo p .name {
    font-size: 20px;
  }
  #logo p .footer {
    font-size: 13px;
    letter-spacing: 11px;
  }
}
/* ^^^ Top Bar ^^^ */
.open, .close {
  position: fixed;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #303030;
  transition: all 0.2s ease-out;
}
.open i, .close i {
  position: relative;
  top: 5px;
  margin: 10px;
  transition: all 0.2s ease-out;
}
.open:hover, .close:hover {
  color: #000000;
}

.open {
  z-index: 2;
}
.open:hover i {
  transform: scaleY(1.2);
}
.open[visible=false] {
  right: -100px;
}

.close {
  z-index: 3;
}
.close:hover i {
  transform: scale(1.2);
}
.close[visible=false] {
  top: -50px;
}

#top-bar {
  z-index: 2;
  position: fixed;
  display: inherit;
  flex-direction: column;
  top: 0;
  right: 0;
  margin: 0;
  padding: 20vh 0 0 0;
  width: 40%;
  height: 100vh;
  background: #D1D1D140;
  border-left: 1px solid #D1D1D1;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  list-style-type: none;
  transition: all 0.2s ease-out;
}
#top-bar li {
  margin: 30px 10%;
  font-size: 2em;
}
#top-bar[visible=false] {
  transform: translateX(100%);
}

@media only screen and (max-width: 700px) {
  #top-bar {
    width: 70%;
  }
}
@media only screen and (max-width: 530px) {
  .close small, .open small {
    display: none;
  }
  #top-bar {
    width: 100%;
  }
}
/* ^^^ Bottom Bar ^^^ */
#bottom-bar {
  width: 100%;
  height: 60vh;
  background: #D1D1D1;
}
#bottom-bar h4 {
  font-size: 22px;
  margin: 5px 0px;
}
#bottom-bar .last-wisper {
  padding: 70px 50px;
}
#bottom-bar .find-me {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  align-items: flex-start;
  width: 100%;
}
#bottom-bar .find-me div {
  padding: 0px 50px;
  flex: 1;
}
#bottom-bar .find-me div ul {
  list-style-type: none;
  font-weight: 300;
  opacity: 0.8;
}
#bottom-bar .find-me div ul li {
  padding-bottom: 10px;
}
#bottom-bar .find-me div ul li span {
  filter: brightness(0.6);
}
#bottom-bar .find-me div ul li img {
  position: relative;
  width: 18px;
  bottom: -4px;
}

@media only screen and (max-width: 530px) {
  #bottom-bar .last-wisper {
    padding: 20px;
  }
  #bottom-bar .find-me div {
    padding: 0 25px;
  }
}/*# sourceMappingURL=basestyle.css.map */