@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Sans", sans-serif;
    scroll-behavior: smooth;

}

:root{
  --bg: #f6f7fb;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0f6cff;
  --success: #0f9d58;
  --danger: #e02424;
  --radius: 10px;
  --max-width: 920px;
  --gap: 18px;
  color-scheme: light;
  --white-color: #fff;
  --black-color: #1d1d1d;
  --main-color: #3361E1;
  --secondory-color: #091d52;
}


:root {

}



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-color: var(--main-color);
    padding: 10px 10px 10px 15px;
    border-radius: 5px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    border: none;
    outline: none;
    transition: .4s ease all;
    border: 1px solid transparent;
}

.global_btn:hover {
    background-color: whitesmoke;
    transition: .4s ease all;
    color: #000;
    border: 1px solid #ccc;
}

.global_btn:hover i {
    background-color: var(--secondory-color);
    transition: .4s ease all;
}

@media(max-width:576px) {
    .global_btn {
        padding: 6px 6px 6px 10px;
        font-size: 15px;
    }
}
@media(max-width:350px) {
    .global_btn {
        padding: 4px 4px 4px 8px;
        font-size: 12px;
    }
}