* {
  box-sizing: border-box;
}
body {
  font-family: "Cairo", sans-serif;
  margin: 0;
  background-color: #1e2128;
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(56, 61, 69);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(0, 172, 181);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 172, 181, 0.517);
}

html {
  scroll-behavior: smooth;
}
.container {
  margin: 0 auto;
  max-width: 1199px;
  background-color: rgb(33, 39, 48);
}
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  position: sticky;
  top: -2px;
  background-color: rgb(56, 61, 69);
  z-index: 111;
}
.header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: rgb(88 99 116);
  bottom: 0;
}
.header h3 {
  margin: 5px 0;
  color: rgb(237, 237, 237);
}
.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header a {
  color: rgb(237, 237, 237);
  padding: 10px 20px 10px 0;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.5s;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
}
.header .logo a {
  font-size: 35px;
  text-decoration: none;
  color: rgb(237, 237, 237);
}
.header a:hover {
  color: rgb(0, 172, 181);
}
.header i {
  display: none;
}
@media (max-width: 768px) {
  .header ul {
    display: none;
    position: absolute;
    background-color: rgb(28 33 42);
    bottom: -327px;
    left: 0;
    width: 100%;
    flex-direction: column;
    box-shadow: 2px 6px 20px 1px black;
  }
  ul li {
    padding: 20px 0;
  }
  .header a {
    padding: 20px 10px;
  }
  .header .logo a {
    padding: 10px 20px 10px 0;
  }
  .header i {
    display: block;
  }
}
.home {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  height: 91vh;
  padding: 20px;
}
.home::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(88 99 116);
  bottom: 0;
  left: 0;
}
.home .hire {
  position: relative;
}
.home .hire h1 {
  margin: 0;
  color: rgb(237, 237, 237);
  font-size: 50px;
  line-height: 1.3;
}
.home .hire h1 span {
  color: rgb(0, 172, 181);
}
.home .hire .arrow {
  position: absolute;
  left: -80px;
  top: 115px;
}
.home .hire button a {
  text-decoration: none;
  font-size: 28px;
  color: black;
  font-weight: bold;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 10px 15px;
  display: block;
}
.home .hire button {
  border: none;
  outline: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 180px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.home .hire button:hover {
  background-color: rgb(0, 172, 181);
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  box-shadow: -1px 20px 14px 2px black;
}

.home .hire button a:hover {
  color: rgb(237, 237, 237);
}
.home .img {
  position: relative;
}
.home .img img:first-of-type {
  position: relative;
  z-index: 2;
}
.home .img .background {
  position: absolute;
  left: -31%;
  top: -30%;
  width: 480px;
  z-index: 1;
  opacity: 0.7;
}

@media (max-width: 1020px) {
  .img {
    display: none;
  }
}
@media (max-width: 600px) {
  .home .hire .arrow {
    left: 73px;
    top: 111px;
  }
  .home .hire button {
    display: block;
    margin: 180px auto 0;
  }
  .home .hire {
    text-align: center;
  }
}
@media (max-width: 485px) {
  .home .hire .arrow {
    left: 4px;
    top: 172px;
  }
}
.about {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  height: 99vh;
  padding: 20px;
  background-color: rgb(33, 39, 48);
}
.about h1 {
  color: rgb(237, 237, 237);
  font-size: 80px;
  margin: 0;
  line-height: 1;
  margin-bottom: 80px;
}
.about h1 span {
  color: rgb(0, 172, 181);
}
.about p {
  color: rgb(237, 237, 237);
}
.about #more {
  color: rgb(237, 237, 237);
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.4s;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -ms-transition: color 0.4s;
  -o-transition: color 0.4s;
}
.about #more:hover {
  color: rgb(0, 172, 181);
}
.about .img {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(88 99 116);
  bottom: 0;
  left: 0;
}
.my-work {
  min-height: 80vh;
  position: relative;
  padding: 20px;
}
.my-work .arrow2 {
  position: absolute;
  left: 187px;
  top: 105px;
  transform: rotate(45deg);
}
.my-work .projects {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 80px 0;
  flex-wrap: wrap;
  position: relative;
  background-image: url("imgs/doodle items-20.png");
  background-size: 50%;
  background-repeat: repeat;
}
.my-work .project {
  width: 300px;
  height: 250px;
  z-index: 2;
  position: relative;
  cursor: pointer;
}
.my-work .project .image::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.52);
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.my-work .project .image:hover::after {
  width: 100%;
  height: 93%;
}
.image {
  position: relative;
}
.my-work .project img {
  object-fit: cover;
  width: 300px;
  height: 250px;
  border: rgb(39, 40, 52) solid 3px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.my-work .text h2 {
  font-size: 50px;
  color: rgb(237, 237, 237);
  position: relative;
}
.my-work .text h2 span {
  color: rgb(0, 172, 181);
}
.my-work .text a {
  text-decoration: none;
  color: black;
  font-size: 30px;
  font-weight: bold;
  padding: 15px 20px;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.my-work .text a:hover {
  color: rgb(237, 237, 237);
}

.my-work .text button {
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin: 80px 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.my-work .text button:hover {
  background-color: rgb(0, 172, 181);
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  box-shadow: -1px 20px 14px 2px black;
}
.my-work::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(88 99 116);
  bottom: 0;
  left: 0;
}
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(33, 39, 48);
}
.contact h3 {
  color: rgb(237, 237, 237);
  text-align: center;
  font-size: 30px;
}
.contact .links {
  text-align: center;
}
.contact a {
  text-decoration: none;
  color: rgb(237, 237, 237);
  margin: 0 0 0 15px;
  font-size: 35px;
}
.contact i {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.contact .fa-whatsapp:hover {
  color: rgb(56, 209, 110);
}
.contact .fa-linkedin:hover {
  color: rgb(27, 104, 191);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.contact .fa-linkedin:hover::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 70%;
  background-color: rgb(237, 237, 237);
  top: 12%;
  left: 14%;
  z-index: -1;
}
.describe {
  background-color: rgb(56, 61, 69);
  color: rgb(237, 237, 237);
  padding: 20px;
  width: 100%;
  bottom: 0;
  position: absolute;
  z-index: 50;
}
.describe h3 {
  margin: 10px 0;
}
.describe p {
  font-size: 21px;
}
.describe a {
  padding: 15px 20px;
  text-decoration: none;
  color: black;
  display: block;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.describe button {
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.describe a:hover {
  color: rgb(237, 237, 237);
}
.describe button:hover {
  background-color: rgb(0, 172, 181);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  box-shadow: -1px 20px 14px 2px rgba(0, 0, 0, 0.451);
}
.describe i {
  position: absolute;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.describe i:hover {
  color: red;
}
