@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-bg: #f1f1f1;
    --color-bg-secondary: #3a3a3a;
    --color-primary: #5583c3; /*#0274be*/
    --color-secondary: #54595f;
    --color-text: #7a7a7a;
    --color-accent: #61ce70;
    --font-primary-family: "Roboto";
    --font-primary-weight: 600;
    --font-secondary-family: "Roboto Slab";
    --font-secondary-weight: 400;
    --font-text-family: "Roboto";
    --font-text-weight: 400;
}

body, * {
    padding: 0;
    margin: 0;

    font-family: var(--font-text-family);
    font-weight: var(--font-text-weight);
}

body {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

section {
    position: relative;
    display: inline-block; 
}

.txt-bold {
    font-weight: var(--font-primary-weight);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin: 10px 0;
    /*color: #535760 !important;*/

    color: #5e5e5e;
}

a.btn {
    border: none;
    border-radius: 100px;
    background-color: var(--color-primary);

    color: var(--color-bg);
    cursor: pointer;

    font-weight: var(--font-primary-weight);
    text-decoration: none;

    padding: 10px 30px;
    margin: 5px;

    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    i {
        background-color: white;
        color: var(--color-primary);

        width: 15px;
        height: 15px;

        font-size: 12px;

        margin-right: 10px;

        display: flex;
        justify-content: center;
        align-items: center;

        border-radius: 100px;
    }
}

a.btn:hover {
    background-color: var(--color-bg-secondary);

    i {
        color: var(--color-bg-secondary);
    }
}

.btn-more-GTB {
    border: none;
    border-radius: 100px;
    background-color: var(--color-bg);

    color: var(--color-primary);
    cursor: pointer;

    padding: 10px 30px;
    margin: 5px ;

    text-decoration: none;

    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    i {
        color: white;
        background-color: var(--color-primary);

        width: 15px;
        height: 15px;

        font-size: 12px;

        margin-right: 10px;

        display: flex;
        justify-content: center;
        align-items: center;

        border-radius: 100px;
    }
}

.btn-more-GTB:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-bg);

    i {
        color: var(--color-bg-secondary);
        background-color: var(--color-bg);
    }
}