@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=Cinzel:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

:root {
    --black-color: #1d1d1d;
    --white-color: #fff;
    --main-color: #267931;
    /*--secondory-color: #EF2C28;*/
    --secondory-color:  #ff5b5b;
}

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;
}

h1,
h2,
h3 {
    font-family: "Cinzel", serif;
}

button {
    border: none;
    background-color: transparent;
    outline: none;
}

.global_btn {
    background-color:  #ff5b5b;
    padding: 7px 30px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    /* text-shadow: 0 3px 3px rgba(0, 0, 0, .4); */
    color: var(--white-color);
}

.global_btn:hover {
    background-color: var(--secondory-color);
    color: var(--white-color);
    transition: .3s ease-in;
}

.myBtn {
    margin-top: 2rem;
}

@media(max-width:768px) {
    .global_btn {
        font-size: 14px;
        padding: 7px 22px;
    }

    .myBtn {
        margin-top: 1rem;
    }
}