/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #130324;
  --text-color: rgb(255, 255, 255);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Space Grotesk', sans-serif;
  --biggest-font-size: 2.375rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 5rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .813rem;
  }
}

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

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== cursor try ===============*/
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}
.cursor--small {
  width: 5px;
  height: 5px;
  left: -2.5px;
  top: -2.5px;
  border-radius: 50%;
  z-index: 11000;
  background:#ffbe17;
}
.cursor--canvas {
  width: 100vw;
  height: 100vh;
  z-index: 12000;
}

.main {
  cursor: none;
}





/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.main {
  overflow: hidden; /* For the animations ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: absolute;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo{
 color: var(--text-color);}

/* .nav__toggle {
  color: var(--text-color);
  display: inline-flex;
} */

.nav__logo {
  font-weight: 700;
  letter-spacing: .1rem;
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--first-color);
    left: 0;
    top: -100%;
    width: 100%;
    padding: 5rem 0 4rem;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 2px 4px hsla(38, 4%, 15%, .15);
    transition: .4s;
  }
}

.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== button CTA ===============*/



/*=============== new button ===============*/

.buttonawsm {
  background-color: white;
  color: #1c0436;
  text-decoration: none;
  border-radius: 60px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: auto;
  max-width: 50px;
  -webkit-transition: max-width 0.5s;
  transition: max-width 0.5s;
  margin-right: 10px;
}

.buttonawsm2 {
  background-color: #FFBE17;
  color: #1c0436;
  text-decoration: none;
  border-radius: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 250px;
  
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 1rem;
}


.buttonawsm2:hover{
  max-width: 300px;
  background-color: #FFBE17;
  color:#1c0436;
  
}

.txtwsm{
  align-items: center;
  font-size: var(--normal-font-size);
}

.fa-regular{
  margin-right: 10px;
  font-size: 19px;
}


.buttonawsm:hover{
  /* max-width: 300px; */
  background-color: #FFBE17;
  color:#1c0436;
}

.fa-brands {
  font-size: 19px;
  margin-left: 7px;
  margin-right: 8px;
  padding: 0px 8px;
  display: flex;
  align-items: center;
}

.fa-linkedin-in {
  margin-left: 9px;
}

.fa-dribbble {
  margin-left: 8px;
}

















/*=============== HOME ===============*/
.home {
  background-color: var(--first-color);
  padding: 4rem 0 1rem;
  height: 100%;
  display: grid;
}

.home__container {
  display: grid;
  align-content: center;
  row-gap: 2.5rem;
}

.home__data {
  text-align: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  margin: .75rem 0;
  line-height: 3rem;
  margin-bottom: 1rem;
}

.span1{


  color: #FFBE17;

}

/* .span2{
  color: white;
} */


.home__description{
  line-height: 1.5rem;
  font-size:var(--normal-font-size);
  color: hsla(0, 0%, 100%, 0.650);
  margin-bottom: 1.25rem;
}

.btn__icon{
  margin-right: .5rem;
}

#btnhover:hover{
  fill: #FFBE17;
}

#btnhovers:hover{
  stroke: white;
}

.home__button {
  margin-top: 2rem;
  display: inline-block;
  background-color: var(--text-color);
  color: #1c0436;
  padding: .80rem 1.5rem;
  border-radius: 3rem;
  transition: .4s;
}

.home__button:hover {
  box-shadow: 0 4px 12px hsla(38, 69%, 8%, .2);
}

.home__img2 img{
  padding-top: 1rem;
  width: 230px;
  animation: floaty 1.8s infinite alternate;
}
.home__img{
  display: none;
}

.home__img {
  justify-self: center;
}

.home__footer{
  margin-top: 2rem;
}

.home__shadow {
  width: 130px;
  height: 24px;
  background-color: hsla(38, 21%, 19%, .16);
  margin: 0 auto;
  border-radius: 50%;
  filter: blur(7px);
  animation: shadow 1.8s infinite alternate;
}

.home__footer {
  display: flex;
  justify-content: center;
  column-gap: .5rem;
  font-size: var(--smaller-font-size);
  align-self: flex-end;
  animation: wiggle 3s linear infinite;
}
/* Keyframes */
/* @keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
} */
/* Keyframes */
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-5deg);
  }
  20% {
    transform: rotateZ(2deg);
  }
  25% {
    transform: rotateZ(-2deg);
  }
  30% {
    transform: rotateZ(1deg);
  }
  35% {
    transform: rotateZ(-1deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

/* Animate ghost */
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}

@keyframes shadow {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(.85, .85);
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .home {
    padding-top: 7rem;
    height: 100%;
  }
  
 

  
}

/* For medium devices */
@media screen and (min-width: 767px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__toggle, 
  .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }
  
}

/* For large devices */
@media screen and (min-width: 1024px) {

  
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 2rem;
  }
  .home__data {
    text-align: initial;
  }
  .home__img img {
    width: 400px;
  }
  .home__shadow {
    width: 250px;
    height: 40px;
  }
  
  
}
/* here */
@media screen and (min-width: 1048px) {

  .home {
    height:100vh;
    padding: 9rem 0 2rem;
  }

  .home__img2{
    display: none;
  }
  .home__img img {
    width: 400px;
    animation: floaty 1.8s infinite alternate;
  }
  
  .home__img {
    justify-self: center;
  }
  .home__img {
    display: block;
    width: 400px;
  }

  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__title{
    line-height: 5rem;
  }

  .buttonawsm2 {
    background-color: #FFBE17;
    color: #1c0436;
    text-decoration: none;
    border-radius: 60px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    width: auto;
    max-width: 50px;
    -webkit-transition: max-width 0.5s;
    transition: max-width 0.5s;
    max-width: 300px;
    margin-bottom: 1rem;
    margin-right: 10px;
  }
  .txtwsm{
    white-space: nowrap;
    padding-right: 25px;
    font-size: var(--normal-font-size);
  }
  .fa-regular{
    font-size: 19px;
    margin-left: 7px;
    margin-right: 8px;
    padding: 0px 8px;
    display: flex;
    align-items: center;
  }
  .home__footer{
    margin-top: 0;
  }

}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.7;
  }

  .home {
    height: initial;
    row-gap: 4rem;
  }
}

/* For 4K resolutions (3840 x 2160, 4096 x 2160) */
@media screen and (min-width: 3840px) {
  body {
    zoom: 3.1;
  }
}