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

body{
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(to right, #ffffff, #DCDCDC);
  transition: 1s;
}
/* nav */

nav{
  width: 90%;
  height: 65px;
  margin: auto;
  text-align: center;
}

nav .brand{
  display: flex;
  justify-content: center;
}

nav .brand h4{
  font-weight: 400;
  margin: 7px;
}

nav .nav-link-wrapper{
  display: flex;
  justify-content: space-around;
}

nav .nav-link-wrapper a{
  text-decoration: none;
  text-transform: none;
  font-size: 18px;
  margin: 5px;
}

nav .logo{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* nav end */

/* main */
main{
  width: 90%;
  margin: auto;
  align-items: center;
  margin-top: 115px;
  text-align: center;
}
main .text{
  max-width: 100%;
}
main .text h1{
  background: linear-gradient(to right, #494964, #6f6f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 36px;
  margin-top: -40px;
}
main .text p{
  margin-top: 7px;
  font-size: 19px;
  color: #6f6f89;
  font-weight: 400;
}
main .text .button{
  margin-top: 40px;
  align-items: center;
}
main .text .button a.number{
  display: inline-block;
  color: #c36cbb;
  border: 2px solid #c36cbb;
  padding-top: 6px;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  width: 130px;
  height: 40px;
  margin-bottom: 10px;
}
main .text .button a.add{
  display: inline-block;
  color: #fff;
  border: 2px solid #c36cbb;;
  background: #c36cbb;
  padding-top: 6px;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  width: 130px;
  height: 40px;
}
main .image{
  flex: 1;
  position: relative;
  text-align: center;
  transition:0.3s;
}
main .image img.laptop{
  display: block;
  max-width: 60%;
  margin: auto;
  filter: drop-shadow(0px 5px 3px black);
  transition: 1s;
}
main .image img.laptop:hover{
  transform: scale(1.2);
}
main .image .bottom{
  margin-top: 10px;
  max-width: 100%;
}
main .image .bottom img{
  margin-left: 13px;
  margin-right: 13px;
  max-width: 100%;
}
/* main end */




@media (min-width: 1007px){
  /* nav */
  nav{
    width: 90%;
    height: 65px;
    margin: auto;
    display: flex;
    align-items: center;
  }

  nav .brand{
    display: flex;
    flex: 1;
  }

  nav .brand h4{
    font-weight: 400;
    margin: 7px;
  }

  nav .nav-link-wrapper{
    display: flex;
    flex: 2;
    justify-content: space-around;
  }

  nav .nav-link-wrapper a{
    text-decoration: none;
    text-transform: none;
    font-size: 18px;
  }

  nav .logo{
    display: flex;
    flex: 1;
    justify-content: center;
    margin-top: -1px;
  }

  /* nav end */

  /* main */
  main{
    display: flex;
    width: 90%;
    margin: auto;
    align-items: center;
    margin-top: 65px;
  }
  main .text{
    flex: 1;
  }
  main .text h1{
    background: linear-gradient(to right, #494964, #6f6f89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 44px;
    margin-top: -40px;
  }
  main .text p{
    margin-top: 7px;
    font-size: 22px;
    color: #6f6f89;
    font-weight: 400;
  }
  main .text .button{
    margin-top: 70px;
    align-items: center;
  }
  main .text .button a.number{
    display: inline-block;
    color: #c36cbb;
    border: 2px solid #c36cbb;
    padding-top: 14px;
    text-decoration: none;
    text-transform: none;
    text-align: center;
    width: 155px;
    height: 55px;
    margin-right: 20px;
  }
  main .text .button a.add{
    display: inline-block;
    color: #fff;
    border: 2px solid #c36cbb;;
    background: #c36cbb;
    padding-top: 14px;
    text-decoration: none;
    text-transform: none;
    text-align: center;
    width: 155px;
    height: 55px;
    margin-left: 20px;
  }
  main .image{
    flex: 1;
    position: relative;
    text-align: center;
  }
  main .image img.laptop{
    display: block;
    max-width: 420px;
    margin: auto;
    filter: drop-shadow(0px 5px 3px black);
  }
  main .image img.laptop:hover{
    transform: scale(1.3);
  }
  main .image .bottom{
    margin-top: 30px;
    max-width: 100%;
  }
  main .image .bottom img{
    margin-left: 15px;
    margin-right: 15px;
  }
  /* main end */
}

@media only screen and (max-width: 700px){
  main .image img.laptop{
    display: block;
    max-width: 80%;
    margin: auto;
    filter: drop-shadow(0px 5px 3px black);
  }
  main .image img.laptop:hover{
    transform: scale(1.2);
  }
}
