@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Londrina+Solid:wght@100;300;400;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans",sans-serif;
}
body{
    max-width: 100vw;
    position: relative;
}
#a{
    color: inherit;
    text-decoration: none;
}
header{
    height: 70px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #FFFFFF;
}

header::before{
    content: "";
    background-image: url("images/Rectangle 423.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -50px;
    transform: rotate(180deg);
    z-index: -1;

}
header img{
    height: 100%;
    width: auto;
    object-fit: cover;
}
header > div{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
}
header nav{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
header a{
    color: #071C49 ;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s;
}
header :is(a:hover,a:active){
    font-weight: 600;
}
header button:first-child{
    border: 1px solid #E4E4E7;
    background-color: #FFFFFF;
    color: #4F39F6;
    padding: 0.5rem 1.3rem;
    border-radius: 0.2rem;
}
header button:last-child{
        background-color: #071C49;
    color: #FFFFFF;
    padding: 0.5rem 1.3rem;
    border-radius: 0.2rem;
    border: none;
}
.first-article::before{
    content: "";
    position: absolute;
    background-color: #64DFDF;
    filter: blur(200px);
    border-radius: 50%;
    z-index: -1;
        height: 50vw;
    width: 50vw;
}
.first-article::after{
    content: "";
    position: absolute;
    background-color: #071C49;
    filter: blur(200px);
    border-radius: 50%;
    z-index: -1;
        height: 50vw;
    width: 50vw;
}

.seventh-article{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    height: 500px;
    z-index: 1;
    justify-content: center;
    color: #85A8F3;
    font-weight: 400;
    font-size: 1.1rem;
    gap: 1.5rem;
}
.seventh-article::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("./images/Rectangle\ 424.svg");
    z-index: -1;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
}
.seventh-article h2{
    font-size: 2.7rem;
    color: #FFFFFF;
}
.seventh-article  button:first-child{
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    color: #071C49;
    padding: 0.5rem ;
    border-radius: 0.2rem;
    width: 180px;
}
.seventh-article  button:last-child{
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem ;
    border-radius: 0.2rem;
    width: 180px;
    margin-left: 0.5rem;
}
footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 3rem;
    height: 510px;
    position: relative;
    z-index: 1;
    align-items: center;
}
footer > section:first-child{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #071C49;
    font-weight: 300;
    font-size: 1.05rem;
}
footer > section:first-child div{
    padding: 1.5rem;
    padding-left: 3rem;
    background-color: #ffffff;
}
footer::before{
        content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("./images/Footer.svg");
    z-index: -1;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
}
footer img{
    width: 100%;
    height: auto;
}
footer > section:last-child{
    display: flex;
    flex-direction: row;
    gap: 2rem;

}
footer  nav{
    display: flex;
    flex-direction: column;
    gap: 1rem;

}
footer section:last-child p{
    font-weight: 500;
    font-size: 1.2rem;
}
footer section:last-child div{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
footer a{
    text-decoration: none;
    color: #000000;
    font-weight: 300;
}