@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;

}

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --main-color: #467bff;

}

/* h1,
h1 span,
h2,
h2 span,
h3,
h3 span {
    font-family: "Syne", sans-serif;

} */

body {
    /* background: linear-gradient(rgb(2 6 23/1)); */

    background: linear-gradient(rgba(2, 6, 23, 1), rgba(2, 6, 23, 1)),
        url('../images/bg-line.png');
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

.global_btn {
       background: linear-gradient(rgb(2 6 23/1));
    padding: 5px 16px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 18px;
    border-radius: 4px;
    text-transform: capitalize;
    border: none;
    transition: .3s ease all;
    outline: none;
    border: 1px solid transparent;
}

.global_btn:hover {
    background-color: var(--main-color);
    color: #fff;
    transition: .3s ease all;
}


@media(max-width:768px) {
    .global_btn {
        font-size: 15px;
        padding: 5px 10px;
    }
}