@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Amaranth:400,400i,700');
body, html{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Amaranth', sans-serif;
    font-size: 14px;color: #868686;background: #f6f6f6;word-wrap: break-word;
}
b, strong{
    font-weight: 600;
}

/*PAGE CARGA*/
.loader-page {
    position: fixed;
    z-index: 25000;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;
}
.loader-page::before {
    content: "";
    position: absolute;
    border: 2px solid #285430;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176,0);
    border-top: 2px solid rgba(50, 150, 176,0);
    animation: rotarload 1s linear infinite;
    transform: rotate(0deg);
  }
@keyframes rotarload {
    0%   {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}
.loader-page::after {
    content: "";
    position: absolute;
    border: 2px solid #285430;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176, 0);
    border-top: 2px solid rgba(50, 150, 176, 0);
    animation: rotarload 1s ease-out infinite;
    transform: rotate(0deg);
}

/*MENU MAIN*/
.navbar_main{
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 16;
    top: 0;
    padding: 10px 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: all ease 500ms;
}
.logo_main img{
    width: 100%;
    max-width: 130px;
    transition: all .3s;
}
.logo_bl{
    display: none;
}
.navbar_main .navbar-nav{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.navbar_main .navbar-nav>li>a{
    display: block;
    padding: 10px 20px;
    color: #000;
    /*font-weight: 700;*/
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all ease 500ms;
}
.navbar_main .navbar-nav>li>a:hover{
    color: #285430;
    transition: all ease 500ms;
}
.navbar_main .navbar-nav>li.active>a{
    color: #285430 !important;
    transition: all ease 500ms;
}
.num_whatsapp{
    background: #285430;
    color: #fff !important;
    border-radius: 10px;
    transition: all ease 500ms;
}
.num_whatsapp:hover{
    background: #000;
    transition: all ease 500ms;
}
@media(max-width: 991px){
    .navbar-light .navbar-toggler {
        border-color: rgb(246, 246, 246);
        background: #fff;
    }
    .navbar_main {
        padding: 10px;
    }
}
/*MENU FIXED*/
.navbar_main.head-navfixed{
    position: fixed;
    top: 0;
    background: #fff;
    transition: all ease 500ms;
}

.navbar_main.head-navfixed .logo_main img{
    max-width: 100px;
}

.navbar_main.head-navfixed .logo_bl{
    display: flex;
}


/**/

/*PIE DE PAGINA*/
.sect_footer_main{
    padding: 50px 0;
    background: #fff;
}
.box_foot_main .box_head span{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #285430;
    color: #fff;
    font-size: 50px;
    line-height: 100px;
    text-align: center;
    display: block;
    margin: 0 auto;
    transition: all ease 500ms;
}
.box_foot_main .box_head span:hover{
    background: #000;
}
.box_foot_main .box_head h6, .box_foot_main .box_head h6 a{
    display: block;
    color: #000;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
}
.sect_derechos{
    background: #2e343e;
    padding: 10px 0;
}
.sect_derechos p{
    margin-bottom: 0;
    color: #fff;
}
.sign{
    text-align: right;
}
@media(max-width: 767px){
    .sign {
        text-align: center;
    }
}