/*----------------------------------------------------------------------------------------
                                    THEME DEFINITIONS
-----------------------------------------------------------------------------------------*/

/* -----  HOW CHANGE FONT-FAMILY    -----
1 - https://fonts.google.com/
2 - Select the font
3 - Select the fonts Weight
4 - On the "USE ON THE WEB" select @import
5 - Apply on this CSS
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&display=swap');

/*
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@400;600;700;800&family=Karla&display=swap');
*/

/* FONT TECNOLOGIA 
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;900&family=Poppins:wght@200;400;600;700;800&display=swap');
*/

:root {
    
    --common-font: 'roboto', sans-serif; 
    

    /* FONT TECNLOGIA 
    --common-font: 'poppins', sans-serif;
    */

    --color-primary: #231f20;
    --text-color-primary: #fff;
    
    --color-secondary: #cf2e2e;
    --text-secondary: #FFF;

    --fc-black: #000;
    --fc-white: #fff;

    --tophead-bg: #000;
    --tophead-fc: #fff;
    --tophead-fs: 16px;
    --tophead-fw: 400;


    --header-background: #fff;
    --header-icons: #000;
    --header-fs: 17px;
    --header-fw: 700;
    --header-text: #000;
    --header-hover: #000;

    --whatsapp-bg: #33af23;
    --whatsapp-color: #fff;

    --fs-h1: 40px;
    --fw-h1: 700;
    --tt-h1: unset;
    --fc-h1: #12464f;

    --fs-h2: 40px;
    --fw-h2: 700;
    --tt-h2: unset;
    --fc-h2: #12464f;

    --fs-h3: 22px;
    --fw-h3: 700;
    --tt-h3: unset;
    --fc-h3: #12464f;

    --fs-h4: 16px;
    --fw-h4: 600;
    --tt-h4: unset;
    --fc-h4: #12464f;


    --fs-h5: 16px;
    --fw-h5: 600;
    --tt-h5: unset;
    --fc-h5: #12464f;

    --fs-p: 17px;
    --fc-p: #1a1b1b;

    --sm-radius: 5px;
    --md-radius: 10px;
    --lg-radius: 20px;
}

@media only screen and (max-width : 991px) {
    :root {
        --fs-h1: 30px;
    }
}



body {
    font-family: var(--common-font);
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

p {
    color:var(--fc-p);
    font-size: var(--fs-p);
    font-family: 'poppins', sans-serif;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-h1);
    text-transform: var(--tt-h1);
    color: var(--fc-h1);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-h2);
    text-transform: var(--tt-h2);
    color: var(--fc-h2);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-h3);
    text-transform: var(--tt-h3);
    color: var(--fc-h3);
}

h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-h4);
    text-transform: var(--tt-h4);
    color: var(--fc-h4);
}

h5 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-h5);
    text-transform: var(--tt-h5);
    color: var(--fc-h5);
}

.black  {
    color: var(--fc-black);
}

.white {
    color: var(--fc-white);
}

.whatsapp {
    color: var(--whatsapp-color);
    background: var(--whatsapp-bg);
    font-weight: 600;
    font-size: 20px;
    padding: 7px 30px;
}

.btn-default {
    color: var(--text-secondary);
    background: var(--color-secondary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--sm-radius);
    display: inline-flex;
    align-items: center;
}

.btn-default i {
    font-size: 20px;
    margin-right: 5px;
}

.btn-default:hover {
    color: var(--text-secondary);
    background: var(--color-secondary);
    font-weight: 600;
}

.btn-default-sm {
    padding: 5px 12px;
}

.btn-default-sm i {
    font-size: 16px;
    margin-right: 5px;
}



@media only screen and (max-width: 800px) {
    .d-mobile, .t-mobile {
        display: block;
    }
}

.d-mobile {
    position: fixed;
    width: 100%;
    display: none;
    bottom: 0;
    font-size: 14px;
    z-index: 999;
    text-align: center;
}

.d-mobile .d-phone {
    width: 50%;
    float: left;
    background-color: var(--color-primary);
    padding: 20px 0;
    height: 60px;
}

.d-mobile .d-whats {
    width: 50%;
    float: left;
    background-color: var(--whatsapp-bg);
    padding: 20px 0;
    height: 60px;
}


.t-mobile a, .d-mobile a {
    color: #FFF;
}

.footer-copyright {
    background-color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-copyright p {
    margin-bottom: 0px;
    color: #fff;
    font-size: 15px;
}



/*----------------------------------------------------------------------------------------
                                    PADDINGS
-----------------------------------------------------------------------------------------*/


/* ------------------------------------------ 
               TOP E BOTTOM
-------------------------------------------*/


.ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ptb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ptb-75 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}


/*----------------------------------------------------------------------------------------
                                    MARGINS
-----------------------------------------------------------------------------------------*/


/* ------------------------------------------ 
               TOP E BOTTOM
-------------------------------------------*/



.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mtb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.mtb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mtb-75 {
    margin-top: 75px;
    margin-bottom: 75px;
}

.mtb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mtb-200 {
    margin-top: 200px;
    margin-bottom: 200px;
}


.mx-100 {
    max-width: 100%;
}
