@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Open Sans", sans-serif;


}

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --main-color: #2FC2B2;

}

h1,
h1 span,
h2,
h2 span,
h3,
h3 span {
  font-family: "Source Sans 3", 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 {
    background-color: #081520;
    padding: 12px 24px;
    border-radius: 5px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    border: none;
    outline: none;
    max-width: max-content;
    border: 1px solid #fff;
    transition: .53s ease all;
}

.global_btn i {
    transform: rotate(-45deg);
}

.global_btn:hover {
    background-color: #1c6264 !important;
    color: var(--white-color);
    transition: .3s ease all;
}


@media(max-width:768px) {
    .global_btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}