@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;


}

@font-face {
    font-family: "massila";
    src: url("../fonnts.com-237072/fonts/fonnts.com-Massilia_Medium.otf");
}

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --secondory-color: #369E87;
    --main-color: #F96C04;

}

h1,
h1 span,
h2,
h2 span,
h3,
h3 span {
    /* font-family: "Outfit", sans-serif; */
    font-family: "massila";
}

body {
    background-color: #F0E3D0 !important;
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

li {
    list-style: disc !important;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

.global_btn {
    background-color: var(--secondory-color);
    padding: 7px 20px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    border: none;
    outline: none;
    display: flex;
    gap: 4px;
    align-items: center;
    transition: .3s ease all;
    max-width: max-content;
    margin-bottom: 4%;
}

.global_btn i {
    transform: rotate(-45deg);
}

.global_btn:hover {
    border-radius: 100px;
    background-color: var(--secondory-color);
    color: var(--white-color);
    transition: .3s ease all;
}

@media(max-width:768px) {
    .global_btn {
        padding: 4px 10px;
        font-size: 14px;
    }
}