*,*::before,*::after{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
.first_sect{
    background-color: #fafafa;
}
.center{
    text-align: center;
}
.w200{
    margin: auto;
    max-width: 350px;
}
.flex{
    display: flex;
}
.end{
    justify-content: flex-end;
}

.split{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}
.w300{
    max-width: 300px;
    text-align: center;
}
.btn{
    cursor: pointer;
    background-color: #000000;
    color: #ffffff;
    font-size: large;
    border-radius: 2rem;
    padding: .5rem;
    padding-right: 4rem;
    padding-left: 4rem;
}
.blue_btn{
    padding: .5rem;
    font-size:small;
    border-radius: 1rem;
    background-color: #0042a5;
    color: #ffffff;
    cursor: pointer;
}

.items{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.item{
    max-width: 250px;
    text-align: center;
}

.bg1{
    background-color: #fafafa;

}

.flexx{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 200px;
    padding: 1rem;
    margin: auto;
}

footer{
    background-color: #000000;
    color: #ffffff;
    padding: 1rem;
}
footer a{
    text-decoration: none;
    color: #ffffff;

}
a{
    text-decoration: none;
    color: #000000;
}

.num{
    font-size: x-large;
    font-weight: 600;
}



@media screen and (max-width: 700px) { .split{flex-direction: column;}.items{flex-direction: column;}}