@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", serif;
}

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --main-color: #fe9701;
    --dark-blue: #223347;

}
.black{
    background-color: black;
}
.red{
    background-color: #ff0000;
}
.blue{
    background-color: blue;
}
.yellow{
    background-color: yellow;
}

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: 7px 20px;
    border-radius: 2px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    border: none;
    outline: none;
}
button{
    border: none;
    outline: none;
    background-color: transparent;
}

@media(max-width:576px){
    .global_btn{
        font-size: 14px;
    }
    
}