/*Global CSS*/

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body{
    font-family: "Poppins", sans-serif;
}

.container{
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

h1,h2,h3,h4 {
    color: #13191F;
}

p, a{
    color: #13191F;
    font-weight: 200;
}


/*Styles*/

h1{
    font-size: 40px;
    line-height: 62px;
    font-weight: 700;
}

h2{
    font-size: 32px;
    font-weight: 200;
}

h3{
    color: #a8a8a8;
}

h4{
    font-size: 16px;
    font-weight: 300;
}

h5{
    font-size: 16px;
    color: #a8a8a8;
    font-weight: 50;
}

/*Navigation*/

nav{
    height: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 10;
    background: rgba(245, 245, 245, 0.90);
    backdrop-filter: blur(2.5px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile img{
    max-width: 48px;
}

.profile{
    display: flex;
    align-items: center;
    gap: 16px;
}

.infos{
    display: flex;
    flex-direction: column;
}

.navlinks{
    display: flex;
    align-items: center;
    gap: 40px;
    color: #13191F;
};

.navlinks li a{
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 3.9s ease;
}

.navlinks ul li a:hover {
    color: #555;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
    transition: all .5s;
}

ul li a,
ul li a:after { 
   position: relative;
}

ul li a:after {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   width: 0%;
   content: '.';
   color: transparent;
   background: #aaa;
   height: 1px;
 }
 ul li a:hover:after {
   width: 100%;
}
 

/*Main*/

main{
    margin-top: 167px;
}

.text-wrap{

}

.buttons{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.btn-primary {
    display: flex;
    padding: 12px 32px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid #13191F;
    background-color: transparent;
}

.btn-secondary{
    display: flex;
    
    align-items: flex-start;
    gap: 4px;
    border: transparent;
    background-color: transparent;
}

.typewrite > .wrap {
    border-right: 0.08em solid #000000;
  }
  
.typewrite > .wrap::after {
    /* Adjust position to the right */
    position: absolute;
    right: 0;
  }

h1 .typewrite{
    font-weight: 700;
}

.intro{
    display: flex;
    flex-wrap: wrap;
}

.intro h1{
    margin-right: 12px;
}


.scroll {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000000 20%,  
    #000000 80%, transparent)
    }

.scroll div{
    white-space: nowrap;
    animation: animate var(--t) linear infinite;
    animation-delay: calc(var(--t) * -1);
}

.scroll div:nth-child(2)
{
    animation: animate2 var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2);
}

@keyframes animate 
{
    0%
    {
    transform: translateX(100%);
    }
    100%
    {
    transform: translateX(-100%);
    }
}

@keyframes animate2
{
    0%
    {
        transform: translateX(0);
    }
    100%
    {
        transform: translatex(-200%);
    }
}

.scroll div span {
    display: flex;
    margin: 10px;
    background:
    #333;
    color:
    #fff;
    padding: 50px 10px;
    border-radius: 5px;
    transition: 0.5;
}

.imgbx img {
    max-width: 250px;
}

.banner{
    margin: 80 0;
}