/* FONT FAMILY */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@700&display=swap'); */

/* NULLING */
body {
    background: rgba(250, 250, 250, 1);
    padding: 0;
    margin: 0;
    color: #000000;
    font-family: 'Inter';
}

/* TYPOGRAPHY */

/* Colors, Fonts */

:root {
    --paragraph: #6F7680;
    --heading: #243141;
    --primary: linear-gradient(39.53deg, #00E092 -6.85%, #00D9F5 114.25%, #01D0EB 114.25%);
    --primary-dark: linear-gradient(39.53deg, #00BD7C -6.85%, #00D9F5 114.25%, #00C6DF 114.25%);
    --gray: #252525;
    --unactive-1: #EAEAEA;
    --unactive-2: rgba(181, 181, 181, 1); /* == #b5b5b5 */
}

p {
    color: var(--paragraph);
    font-size: 18px;
    line-height: 25px;
}

h1, h2, h3, h4 {
    color: var(--heading);
}

button {
    text-transform: capitalize !important;
    border-radius: 8px;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    font-family: 'Inter' !important;
}

nav {
    color: var(--paragraph)
}

.link {
    color: var(--unactive-1);
}

.p-small {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    font-feature-settings: 'liga' off;
}

.button-text {
    font-weight: 600;
    line-height: 19px;
    text-transform: capitalize;
    font-feature-settings: 'liga' off;
}

.body-lg-regular {
    font-size: 18px;
    line-height: 25px;
}

.small-lg {
    font-size: 12px;
    line-height: 15px;
}

.primary {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.body-semibold {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
}

.caption {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.body-small {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.unactive {
    border-bottom: 2px solid var(--unactive-1);
    color: var(--paragraph);
}

.unactive-2 {
    color: var(--unactive-2);
}

/* BUTTONS */

.btn-bg-primary {
    background: var(--primary);
    color: white;
}

.btn-bg-primary-dark {
    background: var(--primary-dark);
    color: white;
}

.btn-bg-gray {
    background: var(--gray);
    color: white;
}

.btn-bg-none-gray {
    border: 1px solid var(--gray);
    color: var(--gray);
}

.btn-bg-none-primary {
    position: relative;
    padding: 14px 32px;
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent
}
.btn-bg-none-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px; 
    padding: 1px; 
    background: var(--primary-dark);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude; 
}

/* ICONS */

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    max-width: 64px;
    max-height: 64px;
    background: #FFFFFF;
    box-shadow: 0px 0px 50px rgba(103, 103, 103, 0.07);
    border-radius: 1.33333e+07px;
    position: absolute;
}

.icon > img {
    max-width: none;
}

/* Footer */

footer {
    background: var(--gray);
    width: 100%;
}

@media(max-width: 1280px) {
    .icons-footer > img {
        width: 20px;
        height: 20px;
    }

    footer {
        background: #171717;
    }
}

@media(max-width: 1280px) {
    .icons-footer > img {
        width: 20px;
        height: 20px;
    }
}