
.hero-text {
  font-size: var(--fs-7);
  /* margin-block: 30px 35px; */
}

.hero-content :is(.wrapper, .hero-btn) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content .wrapper {
  flex-wrap: wrap;
  gap: 30px;
  margin-block-end: 30px;
}

.hero-btn {
  gap: 15px;
  color: var(--raisin-black-1);
  transition: var(--transition-1);
}

.hero-btn:is(:hover, :focus) { color: var(--majorelle-blue); }

.hero-btn ion-icon { font-size: 24px; }

.hero-btn .span {
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

/* .social-link .span { display: none; } */

.social-list { 
    color:rgba(255, 255, 255, 0.863);
    font-weight: bold;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}
.social-link{
    display: flex;
    align-items: center;
}
.sl1 ion-icon{
    color: hsl(241, 77%, 63%);
    margin: 0 3px 0 12px;
}.sl1:hover{color: hsl(241, 77%, 63%);}
.sl2 ion-icon{
    color:hsl(0, 100%, 50%);
    margin: 0 3px 0 12px;
}.sl2:hover{color:hsl(0, 100%, 50%);}
.sl3 ion-icon{
    color: hsl(203, 89%, 53%);
    margin: 0 3px 0 12px;
}.sl3:hover{color: hsl(203, 89%, 53%);}



.hero-container{
    height: 100vh;
    /* display: flex; */
    background-image: linear-gradient(to bottom, #191d5b, #365fa9);
    background-size: 100% 100%;
}
.hero-content{
    display: flex;
    position: absolute;
    top: 25%;
    flex-direction: column;
    width: 55%;
    align-items: center;
    margin-left: 18px;
}
.hero-title{
    color: white;
}
.hero-text{
    color: white;
    /* margin-bottom:25%; */
}
.arrow{
    width:100%;
    position: absolute;
    bottom: 0;
}
.hero-img{
    width: 625px;
    position: absolute;
    top: 18%;
    right: 0;
}
.hero-bottom{
    position: absolute;
    bottom: 60px;
    left: 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-bottom .wrapper{
    margin-bottom: 12%;
}
/* hero for mobile */
@media only screen and (max-width: 992px) {
  .hero-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    
  }
  .hero-container .hero-content{
    position: static;
    margin-top: 20%;
    width: 66%;

  }.hero-container .hero-bottom{
    position: static;

  }.hero-container .hero-img{
    position: static;
    width: 100%;
  }
}