﻿:root {
    --color-principal-light: #ff8656;
    --color-principal: #d95b29;
    --color-principal-dark: #d95b29;
    --color-secundario: #dfae4f;
    --color-dark: #433534;
    --color-ultradark: #2c1f16;
    --color-light-ultra: #ccb9ab;
    --color-light: #a89484;
    --color-light-dark: #b4a08a;
}
body {
    padding: 0 !important;
    margin: 0 !important;
    position: relative;

    color: #3E4B5B;
}

body, html {
    height: 100%;
    font-family: Rubik,sans-serif !important;
}

.bg-light-ultra {
    background: var(--color-light-ultra) !important
}

* {
    box-sizing: border-box
}

a {
    color: var(--blue-medium);
    text-decoration: none
}

    a:hover {
        text-decoration: none !important;
    }

.z-front {
    z-index: 99999
}

.z-back {
    z-index: 0
}
/*PRE LOADER*/
.logo-preloading {
    max-width: 130px;
    top: calc(50%) !important;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: var(--color-principal);
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 6px solid transparent;
        border-top-color: var(--color-dark);
        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 6px solid transparent;
        border-top-color: var(--color-light);
        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

.preloader {
    background-color: #000 !important;
    opacity: 0.9;
    position: fixed;
    z-index: 999999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

    .preloader img {
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
/*Animation delay*/
.dealy-200 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.dealy-500 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.dealy-700 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.dealy-1000 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.dealy-1500 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.dealy-2000 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.dealy-2500 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.dealy-3000 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}


.btn-primary {
    color: #fff !important;
    background-color: var(--color-principal) !important;
    border-radius: 0.25rem;
    -webkit-transition: all ease-out .3s;
    transition: all ease-out .3s;
    border-color: var(--color-principal) !important;
    margin: 0.25rem 0.125rem;
    outline: 0;
}

    .btn-primary:hover {
        color: #fff !important;
        background-color: var(--color-secundario) !important;
        border-color: var(--color-secundario) !important;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(210,90,37,.5) !important;
    }

    .btn-primary:focus,
    .btn-primary:active:focus,
    .btn-primary:active:hover {
        color: var(--color-principal) !important;
        outline: 0 !important;
        background-color: #fff !important;
        border-color: var(--color-principal) !important;
        box-shadow: 0 0 0 0.25rem rgba(210,90,37,.5) !important;
    }

.btn-outline-primary {
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: var(--color-principal) !important;
    border-color: var(--color-principal) !important;
    margin: 0.25rem 0.125rem;
    outline: 0;
    border-radius: 30px;
}

    .btn-outline-primary:hover {
        color: #fff !important;
        background-color: var(--color-principal) !important;
        border-color: var(--color-principal) !important;
        outline: 0;
    }

    .btn-outline-primary:focus {
        outline: 0 !important;
        box-shadow: 0 0 0 0.25rem rgba(210,90,37,.5) !important;
    }

.bg-principal {
    background:var(--color-principal) !important;
}
.color-principal {
    color: var(--color-principal) !important;
}
.bg-obscuro {
    background: var(--color-dark) !important;
}

.color-obscuro {
    color: var(--color-dark) !important;
}
.bg-claro {
    background: var(--color-light) !important;
}

.fill-primary {
    fill: var(--color-principal) !important;
}
.fill-warning {
    fill: var(--color-principal) !important;
    
}
/*barra indicadora*/

.navbar-light {
    background: var(--color-light-ultra) !important;
    border-bottom: 0;
}


#progress-bar {
    --scrollAmount: 0%;
    background-image: linear-gradient(120deg, var(--color-light-dark) 0%, var(--color-light-dark) 100%);
    width: var(--scrollAmount);
    height: 62px;
    position: fixed;
    top: 0;
}

.bg-yellow {
    background: #ecaf00 !important
}

.navbar-brand {  
    padding-top: 10px;
    padding-bottom: 10px;
}
.usercall {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid;
    right: -40px;
    top: -5px;
    border-radius: 50%;
    overflow: hidden;
    border-color: var(--color-principal);
    -webkit-transition: all ease-out .3s;
    transition: all ease-out .3s;
}
.btn-primary:hover > .usercall {
    border-color: var(--color-secundario);
}
.nav-link {
     
    color: var(--color-dark);
}
.header-sticky-on .nav-link {
    color: black;
}
    .nav-link:hover, .nav-link:focus {
        color: var(--color-principal);
    }
h5 > a:hover, h6 > a:hover {
    color: var(--color-principal) !important;
}
.text-primary-hover li:hover {
    color: var(--color-principal) !important;
}

.back-top {
    background: var(--color-principal) !important;
}
.back-top:hover {
    background: var(--color-principal) !important;
    color: #fff;
}

.animation-gray {
    -webkit-transition: all ease-out 3s;
    transition: all ease-out 3s;
}
.animation-gray:hover {
    filter: grayscale(80%);
}
@media(max-width: 1250px) {
    #progress-bar {
        height: 10px;
    }
}
@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-brand .navbar-brand-item {
        height: 60px;
        display: block;
        width: auto;
    }
    header.header-sticky-on {
       border:0;
    }
}
