@import url('../../css2');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

:root {
    --black-color: #1d1d1d;
    --white-color: #fff;
    --main-color: #003366;
    --green-color:#9f6c00;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

.global_btn {
    background-color: #9f6c00;
    color: var(--white-color);
    padding: 8px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    border: none;
    text-transform: capitalize;
}

.global_btn:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}


@media(max-width:1200px) {
    .global_btn {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .global_btn {
        font-size: 14px;
        padding: 7px 22px;
    }
}