* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

:root {
  --white: #fff;
  --black: #000;
  --black2: #222;
  --greey: #465b52;
  --grey1: #f0f0f0;
  --grey2: #e9d7d3;
  --aQwa: #088178;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 30px;
  background: var(--white);
  box-shadow: 0 5px 15px rgb(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #ce8c39;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 67%;
  height: 2px;
  background: #ce8c39;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

.logo {
  width: 70px;
}
.btn-riht {
  margin-right: 5px;
}

.scroll-toop {
  width: 55px;
  height: 55px;
  position: fixed;
  font-size: 20px;
  bottom: 4.5rem;
  right: 20px;
  background-color: #088178;
  z-index: 999;
  cursor: pointer;
  text-align: center;
  color: white;
  border-radius: 50%;
  padding: 13px;
}

.scroll-toop a {
  text-decoration: none;
  color: var(--white);
}

.scroll-toop2 a {
  text-decoration: none;
  color: var(--white);
}

.scroll-toop2 {
  width: 55px;
  height: 55px;
  position: fixed;
  font-size: 24px;
  bottom: 10px;
  right: 20px;
  z-index: 999;
  background-color: rgb(74, 184, 74);
  cursor: pointer;
  text-align: center;
  color: white;
  border-radius: 50%;
  padding: 10px;
}

#navbar button {
  width: 7rem;
  height: 2rem;
  background-color: #ce8c39;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}
#navbar button:hover {
    border: 1px solid #ce8c39;
    background: transparent;
    transition: .5s ease;
    color: #000;
}

.img-header-slider {
  text-align: center;
}

.img-header-slider span {
  color: #ecc491;
  font-weight: bold;
  font-size: 50px;
}

.img-header-slider h2 {
  color: var(--white);
  font-weight: bold;
  font-size: 50px;
}

.btn-one {
  background-color: #ce8c39;
  width: 6rem;
  height: 2rem;
  border: none;
  color: var(--white);
  font-weight: bold;
}
.btn-one:hover {
  background-color: transparent;
  border: 2px solid #ce8c39;
  transition: 0.5s ease;
}

.btn-two {
  background-color: transparent;
  width: 6rem;
  position: relative;
  height: 2rem;
  border-radius: 5px;
  border: none;
  color: var(--white);
  font-weight: bold;
}
.btn-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 2px solid #ce8c39;
  border-right: 2px solid #ce8c39;
  animation: border-top-right 3s infinite alternate;
}
.btn-two::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 2px solid #ce8c39;
  border-left: 2px solid #ce8c39;
  animation: border-bottom-left 3s infinite alternate;
}
@keyframes border-top-right {
  0% {
    width: 0px;
    height: 0px;
  }
  25% {
    width: 6rem;
    height: 0px;
  }
  50% {
    width: 6rem;
    height: 2rem;
  }
  100% {
    width: 6rem;
    height: 2rem;
  }
}
@keyframes border-bottom-left {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0;
  }
  50% {
    width: 0px;
    height: 0px;
    opacity: 0;
  }
  50.1% {
    width: 0px;
    height: 0px;
    opacity: 1;
  }
  75% {
    width: 6rem;
    height: 0px;
    opacity: 1;
  }
  100% {
    width: 6rem;
    height: 2rem;
    opacity: 1;
  }
}
.The-most-important h2{
  font-weight: bold;
  font-size: 19px;
}
.The-most-important p{
 color: var(--greey);
}
.pearnt-dev-The-most-important{
  display: flex;
}
.tree-divs{
  display: flex;
  width: 100%;
}
.one-dev-The-most-important i{
  font-size: 25px;
  color: var(--aQwa);
}
.two-dev-The-most-important h5{
  font-weight: bold;
  font-size: 15px;
}
.two-dev-The-most-important p{
  color: var(--greey);
  font-size: 15px;
}
.pearnt1-dev-The-most-important{
  width: 32%;
  display: flex;
  text-align: center;
  margin: auto
}
.pearnt2-dev-The-most-important{
  width: 32%;
  display: flex;
  text-align: center;
  margin: auto;
}
.pearnt3-dev-The-most-important{
  width: 32%;
  display: flex;
  text-align: center;
  margin: auto
}
.parnt-two-devs {
  width: 100%;
  align-items: center;
  display: flex;
}
.img-banner {
  width: 60%;
}
.img-banner img {
  width: 90%;
  animation: floatImage 4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  margin: auto;
}
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50%{
        transform: translateY(-2.4rem);
    }
    100%{
        transform: translateY(0);
    }
}
.text-bannerrr {
  width: 40%;
}
.text-bannerrr h2{
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
.text-bannerrr p{
   color: var(--greey);
   font-size: 14px;
   margin-top: 10px;
}
.parnt-footer {
  padding: 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-color: ghostwhite;
}
.one-dev-footer img {
  border-radius: 10px;
  width: 130px;
}
.one-dev-footer i {
  font-size: 23px;
  margin: 10px;
  color: var(--black);
}
.one-dev-footer p {
  font-size: 14px;
  color: var(--black);
}
.one-dev-footer i:hover {
  transform: scale(1.5);
  transition: 0.5s ease;
  color: rgb(38, 168, 38);
}
.link-athr {
  color: var(--black);
  font-size: 14px;
}

/* start ourgoal page */
.paernt-ourgoal{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.one-div-ourgoal{
    width: 50%;
}
.one-div-ourgoal img{
    width: 80%;
    height: 14rem;
    border-radius: 5px;
}
.two-div-ourgoal{
    width: 50%;
}
.two-div-ourgoal h2{
    font-weight: bold;
    font-size: 19px;
    text-align: center;
}
.two-div-ourgoal p{
    color: var(--greey);
}
.img-k{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* start ourServices */
.parnt-div-ourServices{
  width: 100%;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
.one-div-ourServices{
  width: 50%;
  text-align: center;
}
.one-div-ourServices img{
  width: 90%;
  margin-top: 2rem;
  height: 13rem;
  border-radius: 5px;
}
.one-div-ourServices h3{
  color: var(--greey);
  font-weight: bold;
  font-size: 17px;
}
.two-div-ourServices{
  width: 50%;
  text-align: center;
}
.two-div-ourServices img{
  width: 90%;
  margin-top: 2rem;
  height: 13rem;
  border-radius: 5px;
}
.two-div-ourServices h3{
  color: var(--greey);
  font-weight: bold;
  font-size: 17px;
}
/* start our-specialties */
.peearnt-our-specialties{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.one-devs-our-specialties{
  width: 50%;
}
.one-devs-our-specialties img{
  width: 80%;
}
.two-devs-our-specialties img{
  width: 50%;
}
.two-devs-our-specialties h6{
  font-weight: bold;
  font-size: 18px;
}
.two-devs-our-specialties p{
  color: var(--greey);
  margin: 1.5rem 0;
  font-size: 15px;
}
/* start Form page */
.form-inpot {
  background-color: var(--grey1);
  border-radius: 10px;
  padding: 3rem;

}

.inpot-one {
  width: 17rem;
  height: 2.5rem;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 11px;
}

.inpot-one1 {
  width: 17rem;
  height: 2.5rem;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 11px;
}

.inpot-two {
  width: 34.2rem;
  border-radius: 5px;
  outline: none;
  border: none;
  height: 2.5rem;
  font-size: 11px;
  color: #818181;
}

.inpot-three {
  width: 34.2rem;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 11px;
}

.titrlee-form h2 {
  color: #6B7280;
  font-size: 25px;
}

.icon-inpot {
  margin-right: 67%;
  margin-top: -3.4rem;
  background-color: #031333;
  width: 40px;
  padding: 8px;
  color: var(--white);
  border-radius: 50%;
  height: 40px;
}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 70vh;
    width: 300px;
    background-color: #ce8c39;
    color: var(--white);
    opacity: 0.9;
    box-shadow: 0 40px 60px rgb(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s ease;
    border-bottom-left-radius: 5px;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #navbar a {
    color: var(--white);
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 30px;
  }

  #navbar li a:hover,
  #navbar li a.active {
    color: var(--white);
  }

  #navbar li a.active::after,
  #navbar li a:hover::after {
    background: var(--white);
  }

  #navbar button {
    width: 7rem;
    height: 2rem;
    background-color: var(--white);
    color: #000;
    margin-right: 10px;
  }

  #navbar li a {
    color: var(--white);
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: var(--white);
    font-size: 24px;
  }

  #lg-bag {
    display: none;
  }
  .parnt-two-devs {
    flex-direction: column;
  }
  .img-banner {
    width: 100%;
  }
  .img-banner img{
    width: 100%;
  }
  .text-bannerrr {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .The-most-important p {
    font-size: 12px;
    padding: 0 10px;
}
  .tree-divs{
    flex-direction: column;
  }
  .pearnt1-dev-The-most-important{
    width: 100%;
    margin-bottom: 3rem;
  }
  .pearnt2-dev-The-most-important{
    width: 100%;
    margin-bottom: 3rem;
  }
  .pearnt3-dev-The-most-important{
    width: 100%;
  }
  /* start ourgoal page */
  .paernt-ourgoal{
    flex-direction: column;
  }
  .two-div-ourgoal{
    order: -1;
    width: 100%;
  }
  .two-div-ourgoal p{
    font-size: 13px;
  }
  .one-div-ourgoal{
    width: 100%;
  }
  .one-div-ourgoal img{
    width: 100%;
  }
  /* start ourServices */
  .parnt-div-ourServices{
    flex-direction: column;
  }
  .one-div-ourServices{
    width: 100%;
    margin-bottom: 3rem;
  }
  .two-div-ourServices{
    width: 100%;
  }
  .one-div-ourServices h3{
    font-size: 15px;
  }
  .peearnt-our-specialties{
   flex-direction: column;
  }
  .one-devs-our-specialties{
    margin-top: 10px;
    width: 100%;
  }
  .one-devs-our-specialties img{
    width: 100%;
  }
}
  /* start Form page */
@media (max-width:587px) {
  .inpot-one {
      width: 30rem;
  }

  .inpot-one1 {
      width: 30rem;
      margin-top: 5px;
  }

  .inpot-two {
      width: 30rem;
  }

  .inpot-three {
      width: 30rem;
  }

  .icon-inpot {
      margin-right: 85%;
  }
}

@media (max-width:511px) {
  .inpot-one {
      width: 23rem;
  }

  .inpot-one1 {
      width: 23rem;
  }

  .inpot-two {
      width: 23rem;
  }

  .inpot-three {
      width: 23rem;
  }

  .icon-inpot {
      margin-right: 78%;
  }
}
@media (max-width:400px) {
  .inpot-one {
      width: 19rem;
  }

  .inpot-one1 {
      width: 19rem;
  }

  .inpot-two {
      width: 19rem;
  }

  .inpot-three {
      width: 19rem;
  }
}
@media (max-width:400px) {
  .inpot-one {
      width: 16rem;
  }

  .inpot-one1 {
      width: 16rem;
  }

  .inpot-two {
      width: 16rem;
  }

  .inpot-three {
      width: 16rem;
  }

  .icon-inpot {
      margin-right: 74%;
  }
}