*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    
    
}
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 10%;
    background: transparent;
}
.logo {
    font-size: 30px;
    font-weight: 700;
    color: #2272FF;
    cursor: pointer;
}
.navlist {
    display: flex;

}

.navlist li{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55 ease;
    cursor: pointer;
    text-transform: uppercase;

}
.navlist li:hover {
    color: white;
    border-bottom: solid 3px #2272FF; 
    
}
#menu-icon {
color: #2272FF;
font-size: 35px;
z-index: 10001;
cursor: pointer;
display: none;
}

.hero {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(1,3,32,1) 100%);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 12rem;
}
section{
    padding: 0 13%;
}
.hero-text h1{
font-family: 'Permanent Marker', cursive;
font-size: 80px;
line-height: 1;
color: #2272FF;
margin: 0 0 45px;
}
.hero-text h4{
    color: white;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
}
.hero-text p{
    color: white;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
}
.hero-text .ctaa{
    font-size: 17px;
    display: inline-block;
    color: white;
    padding: 20px 70px;
    background: transparent;
    border: 1px solid #2272FF;
    border-radius: 15px;
    margin-left: 90px;
    align-items: center;
    line-height: 1.4;
    font-weight: 500;
    transition: all .55s ease;
    text-transform: uppercase;
}
.hero-text .ctaa:hover{
    background: transparent;
    border: 1px solid transparent;
    border-radius: linear-gradient(15deg, rgb(5, 1, 88) 0%, rgba(18,9,121,1) 44%, rgba(55,0,255,1) 100%) 1;
    transform: translateY(8px);
}
.hero-img img{
    filter: drop-shadow(1px 1px 10px #2272FF);
    min-width: 80%;
    animation: pulse 3s linear infinite;
}

@-webkit-keyframes "pulse" {
0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
50% {
   -webkit-transform: scale(0.8);
   transform: scale(0.8);
}
100% {
    -webkit-transform: scale(1);
   transform: scale(1);
}
}
.button {
    color: white;
    margin-left: 0px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55 ease;
    cursor: pointer;
}
