@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@font-face{
    font-family: "Mistral";
    src: url(../webfonts/mistralRegular.ttf);
}
/*
Color Primario: #f58430;
Color Secundario: #ffd064;
*/
body{
    overflow-x: hidden;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu';
    box-sizing: border-box;
}
a{
    color: #f58430;
}
a:hover{
    color: #ffd064;
}
form{
    width: 70%;
    margin: 2em auto;
}
small{
    color: grey;
}
section{
    padding-top: 2em;
    padding-bottom: 2em;
}
.color-primary{
    color: #f58430;
}
.color-white{
    color: white;
}
.title{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title h1{
    text-align: center;
    font-size: 45px;
    color: #f58430;
    font-family: 'Mistral';
    display: inline-block;
}
.title img{
    width: 100%;
    max-width:200px;
}
.title img:last-child{
    transform: rotateY(180deg)
}
.subtitle{
    text-align: center;
}
.subtitle h3{
    font-size: 25px;
    font-family: 'Ubuntu'
}
.parallaxContainer{
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    font-family: 'Ubuntu';
    z-index: -1;
}
.parallax img{
    position: absolute;
    width: 100%;
}
.parallaxContent{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: right;
    color: white;
    padding: 2em;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.headerTitle{
    width: 100%;
}
.parallaxContent h1{
    font-size: 40px;
}
.parallaxContent h1:first-child{
    display: inline-block;
    padding: .5em;
    border: 1px solid white;
}
.navBackground{
    position: relative;
    height: 100%;
    z-index: 0;
}
.navBackground img{
    width: 100%;
    position: absolute;
    bottom: -75px;
    left: 0;
    z-index: -1;
}
.navBar{
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navBar ul:first-child{
    width: 100%;
    text-align: right;
}
.navBar ul:last-child{
    width: 100%;
    text-align: left;
}
.navBar ul li{
    list-style: none;
    display: inline-block;
}
.navBar img{
    width: 50px;
    z-index:1000000;
    
}
.navBar ul li a{
    display: block;
    text-decoration: none;
    color: #f58430;
    font-size: 30px;
    padding-left: .3em;
    padding-right: .3em;
    font-family: 'Mistral';
}
.navBar ul li a:hover{
    color: #ffd064;
}
.ultimoBlog{
    width: 100%;
    position: relative;
    min-height: 400px;
    margin: 2em 0;
    overflow: hidden;
    font-family: 'Ubuntu'
}
.ultimoBlog .imgContainer{
    position: relative;
}
.ultimoBlog .imgContainer img{
    position: absolute;
    width: 100%;
    padding-top: 2%;
}
.ultimoBlog .textContainer{
    position: absolute;
    width: 98%;
    height: 400px;
    border: 3px solid #f58430;
}
.blogContent{
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 0 1em;
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
}
.blogView{
    width: 100%;
    height: 400px;
    position: absolute;
    text-align: center;
    line-height: 400px;
    background: rgba(0, 0, 0, 0.12);
    top: -403px;
    transition: .4s;
}
.ultimoBlog:hover .blogView{
    top: 0;
}
.blogView svg{
    font-size: 90px;
    color: rgba(255, 255, 255, 0.61);
}
.blogContent .titleBlog{
    margin-bottom: .5em;
    position: relative;
}
.blogContent .titleBlog .divider{
    width: 100px;
    margin: .5em 0;
    background-color: #ddae27;
}
.blog{
    width: 100%;
    position: relative;
    min-height: 200px;
    margin: 1em 0;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Ubuntu'
}
.blog .imgContainer{
    position: relative;
}
.blog .imgContainer img{
    position: absolute;
    height: 200px;
}
.blog .textContainer{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #ffd064;
}
.blog .textContainer .titleBlog{
    position: absolute;
    bottom: -100%;
    width: 100%;
    color: white;
    padding: 0 1em;
    background-color: rgba(0, 0, 0, 0.75);
    transition: .4s;
}
.blog:hover .textContainer .titleBlog{
    bottom: 0;
}
.blog .textContainer .titleBlog h1{
    font-size: 17px;
    padding: .5em 0;
}
.nosotros{
    margin-top: 4em;
}
.item{
    width: 100%;
    height: 400px;
    position: relative;
    margin-bottom: 1em;
}
.item .Header{
    position: absolute;
    left: 0;
    right: 0;
    border: 3px solid #f58430;
    background: white;
    width: 150px;
    margin: auto;
    height: 150px;
    transform: rotate(45deg);
    top: 0;
    z-index: 1;
    text-align: center;
}
.item .Header img{
    transform: rotate(-45deg) translateY(20px) translateX(-25px);
    width: 100px;
    height: 70px;
}
.item .Content{
    width: 200px;
    margin: auto;
    height: 200px;
    border: 2px solid #f58430;
    transform: rotate(45deg);
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
}

.item .Footer{
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-15px);
}
.item .Footer img{
    width: 50px;
}
.itemSelect{
    width: 90%;
    max-height: 0;
    margin: auto;
    overflow: hidden;
    margin-bottom: .5em;
    transition: .5s;
    box-sizing: border-box;
    padding: 0 1em;
}
.itemSelect h1{
    color: #f58430;
    font-size: 30px;
    font-family: 'Ubuntu';
}

.itemSelect.active{
    border: 2px solid #f58430;
    max-height: 1000px;
}
.itemTab{
    opacity: .5;
    transition: .4s;
}
.itemTab:hover,
.itemTab.active{
    opacity: 1;
}
.df{
    display: flex;
    align-items: center;
    margin: 2em 0;
    justify-content: space-around;
}

.imgdf img{
    width: 100px;
}
.textdf{
    color: #f58430;
    font-family: 'Ubuntu';
    padding: .5em;
}

#franquicias ul li{
    list-style: none;
    position: relative;
    color: black;
    font-family: 'Ubuntu';
    margin-bottom: 1em;
}
#franquicias ul li::before{
    position: absolute;
    content: "✓";
    left: -20px;
    top: -5px;
    color: #f58430;
    font-weight: bold;
    font-size: 20px;
    
}
.rotate-Content{
    transform: rotate(-45deg) translateY(65px) translateX(-50px);
    text-align: center;
    font-size: 17px;
    font-family: 'Ubuntu'
}
.rotate-Content p{
    color: #f58430;
}
.service{
    position: relative;
    width: 100%;
    height: 250px;
}
.services{
    width: 200px;
    height: 200px;
    border: 4px solid #f58430;
    transform: rotate(45deg);
    overflow: hidden;
}
.center-services{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}
.right-services{
    position: absolute;
    right: 50px;
    top: -100px
}
.left-services{
    position: absolute;
    left: 50px;
    top: -100px;
}
.left-service{
    position: absolute;
    top: -200px;
    left: 10px;
}
.right-service{
    position: absolute;
    top: -200px;
    right: 10px;
}
.center-service{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -200px;
}
.services img{
    width: 120px;
    height: 120px;;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}

.services .services-text{
    position: absolute;
    width: 200px;
    padding: 0;
    height: 200px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    color: #f58430;
    line-height: 200px;
    background-color: rgba(0, 0, 0, 0.81);
    font-size: 30px;
    opacity: 0;
    transition: .3s;
    cursor: pointer;
    font-family: 'Ubuntu'
}

.services:hover .services-text{
    opacity: 1;
    font-size: 25px;
}
.services:hover img{
    filter: blur(2px);
}
.services .services-text p{
    transform: rotate(-45deg);
}
@media (min-width: 992px) and (max-width:1200px){
    .right-service{
        right: 40px;
    }
    .left-service{
        left: 40px;
    }
}
@media (min-width: 902px) and (max-width:992px){
    .right-service{
        right: 80px;
    }
    .left-service{
        left: 80px;
    }
}
@media (min-width:768px) and (max-width:902px){
    .right-service{
        top: -50px;
        right: -70px;
    }
    .left-service{
        top: -50px;
        left: -70px;
    }
}
@media (max-width: 767px) and (min-width: 592px){
    .right-service{
        top: -50px;
        right: -40px;
    }
    .left-service{
        top: -50px;
        left: -40px;
    }
    .center-service{
        left: -5px
    }
}
@media (max-width: 591px){
    .services{
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    .service{
        margin-bottom: 3em;
    }
    #franquicias{
        margin-top: 3em;
    }
}
.modal{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 3;
    transition: .5s;
    visibility: hidden;
    animation: visibilityNO .5s;
    display: flex;
    align-items: center;
}
.modal.active{
    animation: visibilitySI .5s;
    visibility: visible;
}
@keyframes visibilityNO{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes visibilitySI{
    0%{
        visibility: visible;
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
        
    }
}
.modal.active .modalContainer{
    transform: translateX(0%)
}
.modal .modalContainer{
    width: 70%;
    padding: 2em;
    background-color: #f58430;
    color: white;
    font-family: 'Ubuntu';
    transition: .5s;
    position: relative;
    transform: translateX(-110%);
}
.modal .modalContainer ul{
    padding-left: 1em;
    padding-top: .4em;
}

.modalIcon,
.modalClose{
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid #f58430;
    background-color: white;
    color: black;
    line-height: 60px;
    text-align: center;
    transform: rotate(45deg);
    cursor: pointer;
}
.modalClose svg{
    font-size: 30px;
    transform: rotate(-45deg);
}
.modalIcon{
    bottom: -25px;
    right: -25px;
    text-align: center;
}
.modalIcon img{
    width: 100%;
    
    transform: rotate(-45deg) scale(1.5);
}
.modalClose{
    top: -25px;
    right: -25px;
}
.modalClose::before{
    position: absolute;
    width: 25px;
    height: 10px;
    background-color: #f58430;
    left: 0;
    right: 0;
    margin: auto;   
}
.price{
    width: 100%;
    position: relative;
    text-align: center;
}
.price .imgPrice{
    width: 200px;
    height: 200px;
    position: relative;
    border: 4px solid #f58430;
    transform: rotate(45deg);
    margin: 3em auto;
}
.price .imgPrice img{
    width: 120px;
    transform: rotate(-45deg);
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.price .priceText{
    font-size: 20px;
    font-family: 'Ubuntu';
}
.price .priceText p{
    color: #f58430;
    
}
.navFixed{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    transition: .4s;
}
.navFixed ul{
    text-align: center;
    border: 1px solid #f58430;;
    background-color: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
}
.navFixed li{
    list-style: none;
}
.navFixed li a{
    display: block;
    position: relative;
    padding: .2em;
}
.navFixed li a:hover{
    background-color: rgba(0, 0, 0, 0.75);
}
.navFixed li a:hover::before{
    content: attr(data-tooltip);
    position: absolute;
    left: -110px;
    color: white;
    font-size: 20px;
    padding: .2em;
    background-color: rgba(0, 0, 0, 0.75);
    top: 0;
}
.navFixed li a svg{
    font-size: 25px;
}
footer{
    background-color: #f58430;
    padding-bottom: 1em;
}
footer .footerHeader{
    position: relative;
    text-align: center;
}
footer .footerHeader img:first-child{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
footer .footerHeader img:last-child{
    width: 50px;
    position: relative;
    z-index: 1;
}
footer .footerContent{
    margin-top: 4em;
}
footer .footerNav{
    width: 100%;
    margin: 1em 0;
}
footer .footerNav li{
    list-style: none;
}
footer .footerNav li a{
    color: white;
    text-decoration: none;
    display: block;
    padding: .4em;
}
footer .footerNav li a:hover{
    background-color: rgba(0, 0, 0, 0.12);
}
@media (max-width: 860px){
    .navBar{
        display: none;
    }
    .title img{
        display: none;
    }
    
}
@media( max-width: 758px){
    .fontResp{
        font-size: 4vw;
    }
}
.alert{
    width: 100%;
    color: #ed1c24;
}
#legal ol,
#legal ul{
    padding-left: 1em;
}
#legal p{
    margin-bottom: .5em;
}
#legal span{
    color: #f58430;
}
