@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --main-color: #005829;

}

h1,
h1 span,
h2,
h2 span,
h3,
h3 span {
    font-family: "Jost", sans-serif;
}

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 {
    border: 1px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--main-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    outline: none;
    box-shadow: 0 4px 5px rgba(2, 60, 6, 0.6);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.global_btn::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 0;
    color: var(--white-color);
    height: 100%;
    background-color: var(--main-color);
    left: 0;
    top: 0;
    transition: .3s ease all;
}

.global_btn:hover::after {
    transition: .3s ease all;
    width: 100%;
}

.global_btn:hover {
    color: var(--white-color);
}

.myBtn {
    margin-top: 2rem;
}



@media(max-width:576px) {
    .myBtn {
        margin-top: 1.5rem;
    }
}