@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* colors */
/* mint */
.green{
    color: #69a481;
}
/* white smoke */
.white{
    color: #e7edeb;
}
/* claret */
.red{
    color: #7c1f31;
}
/* colors */
body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #1a1a1a;
    background-color: #e7edeb;
}
.hover-underline{
    color: #252525;
    text-decoration: none;
    cursor: pointer;
}
.hover-underline:hover{
    color: #252525;
    text-decoration: 1px solid underline;
}
.fw-300{
    font-weight: 300 !important;
}
.fw-400{
    font-weight: 400 !important;
}
.fw-500{
    font-weight: 500 !important;
}
.fw-600{
    font-weight: 600 !important;
}
.fw-700{
    font-weight: 700 !important;
}
.fw-800{
    font-weight: 800 !important;
}
.fw-900{
    font-weight: 900 !important;
}
.no-link{
    text-decoration: none;
    color: inherit;
}