@font-face {
    font-family: M-Regular;
    src: url('/assets/fonts/MYRIADPRO-REGULAR.OTF');
}
@font-face {
    font-family: M-Light;
    src: url('/assets/fonts/MyriadPro-Light.otf');
}
@font-face {
    font-family: M-Medium;
    src: url('/assets/fonts/MYRIADPRO-SEMIBOLD.OTF');
}
@font-face {
    font-family: M-Bold;
    src: url('/assets/fonts/MYRIADPRO-BOLD.OTF');
}
@font-face {
    font-family: Archivo;
    src: url('/assets/fonts/ArchivoBlack-Regular.ttf');
}



body{
    background-color: #efefef;
    font-family: M-Regular;
}
.navbar{
    background-color: rgba(0,0,0,0.6);
    color:aliceblue;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.6);
}
.navbaricon{
    color:#f37531;
}
.main-logo{
    width: 80px;
}
.nav-link{
    font-family: M-Medium;
    color:aliceblue;
}
.nav-link:hover{
    color:#f37531;
}
.nav-link:focus{
    color:#f37531;
}
.nav-link.show{
    color:#f37531 !important;
}

.nav-item{
    margin-right:20px;
}
.nav-item .active{
    color:#f37531 !important;
    font-family: M-Bold;
}
.dropdown-menu{
    border-radius: 0px;
}


.header{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/img/header.jpg');
    background-size:cover;
    background-attachment: fixed;
    color:aliceblue;
}
.header h1{
    font-family: Archivo;
    font-size:40px;
}
.header h2{
    font-family: M-Medium;
    font-size:25px;
    color:#f37531;
}
.title-container{
    position:relative;
    z-index: 2;
}

.title-container::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -45%;
    right: 0;
    bottom: 0;
    right: -5%;
    width: 20%;
    height: 150%;
    background-color:transparent;
    border-top:5px solid #f37531;
    border-right: 5px solid #f37531;
}

.header p{
    font-family: M-Light;
}

.main-bg{
    width:100%;
}
.description-box{
    background-color: rgba(255, 255, 255, 0.8);
    padding:20px;
    border-radius: 10px;
    position: relative;
}
.description-box::after{
    content: '';
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    position: absolute;
    top:-10px;
    left:15%;
}
.ventaja-box{
    box-shadow: 1px 1px 5px #f3753197;
    width: 100%;
    padding:20px;
    margin-bottom:20px;
    border-radius: 10px;
    background-color: #f3753129;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.ventaja-box i{
    font-size:60px;
    margin-bottom:20px;
    color: #f37531;
}
.ventaja-box h3{
    font-size:20px;
    font-weight: 500;
    font-family: M-Medium;
}
.service-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:15px;
    text-align: center;
    background-color: black;
    margin-bottom:25px;
    position: relative;
    z-index: 2;
    color:aliceblue;
}
.service-box::before{
    content:'';
    position:absolute;
    width: 100%;
    top:-10px;
    right:0;
    background-color: #f37531;
    height: 100%;
    z-index:-1;
    right:-10px;
    transition:0.3s;
}
.service-box h3{
    font-family: M-Regular;
    font-size:20px;
}
.service-box img{
    width: 80px;
}
.service-box:hover{
    cursor: pointer;
    color:black;

}
.service-box:hover::before{
    transition:0.3s;
    cursor: pointer;
    content:'';
    position:absolute;
    width: 100%;
    top:-15px;
    right:0;
    background-color: #fdbf9e;
    height: 100%;
    z-index:-1;
    right:-10px;
}
.company{
    background-color: #efefef;
    padding-bottom:50px;
    padding-top:50px;
}
.company h2{
    font-family: M-Bold;
    font-size:25px;
    color:#f37531;
}
.company p{
    font-family: M-Regular;
    text-align: justify;
}
.company-image{
    width: 100%;
    box-shadow: 10px 20px 10px rgba(0,0,0,0.4);
}

.reviews{
    padding-top:50px;
    padding-bottom:50px;
    background-image: url('/assets/img/header.jpg');
    background-size:cover;
    background-attachment: fixed;
}
.reviews h2{
    font-family: M-Bold;
    font-size:25px;
    color:#f37531;
}
.orange-star{
    color:#f37531;
}
.card-title{
    font-family: M-Medium;
}
.card-text{
    font-family: M-Light;
}

.contact-text{
    padding:50px;
}
.contact-text h2{
    font-family: M-Bold;
    font-size:25px;
    color:#f37531;
}

.contact-box{
    font-family: M-Regular;
}

.contact-box i{
    color:#f37531;
    font-size:20px;
    margin-right:20px;
}
.footer-bg{
    background-color: black;
}
.main-link{
    color:#f37531;
    text-decoration: none;
}

.servicio-desc{
    background-color: white;
    color:black;
    padding:20px;
}

body {
    scrollbar-width: thin; /* Hace que el scrollbar sea más pequeño en Firefox */
    scrollbar-color: transparent transparent; /* Hace el scrollbar invisible en Firefox */
  }

  body::-webkit-scrollbar {
    width: 0; /* Elimina el ancho del scrollbar en Chrome, Safari y Edge */
    height: 0; /* Elimina la altura del scrollbar horizontal */
  }

  body::-webkit-scrollbar-thumb {
    background-color: transparent; /* Hace invisible la parte "thumb" del scrollbar */
  }

  body::-webkit-scrollbar-track {
    background-color: transparent; /* Hace invisible el track del scrollbar */
  }

.pt-200{
    padding-top:200px;
}
.fs-40{
    font-size:40px !important;
}

.header-service{
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/img/header.jpg');
    background-size:cover;
    background-attachment: fixed;
    color:aliceblue;
}
.header-service h1{
    font-family: Archivo;
    font-size:40px;
}
.header-service h2{
    font-family: M-Medium;
    font-size:25px;
    color:#f37531;
}


@media(max-width:700px){
    .title-container::before {
        content: '';
        position: absolute;
        z-index: -1;
        top: -20%;
        right: 0;
        bottom: 0;
        right:0;
        width: 50%;
        height: 100%;
        background-color:transparent;
        border-top:5px solid #f37531;
        border-right: 5px solid #f37531;
    }
    .navbar-toggler{
        border:none;
    }
    .contact-text{
        padding:10px;
    }
    .header{
        min-height: 80vh;
        display: flex;
        align-items: center;
        background-image: url('/assets/img/header.jpg');
        background-size:cover;
        background-attachment: fixed;
        color:aliceblue;
    }
    .header-service{
        min-height: 40vh;
        display: flex;
        align-items: center;
        background-image: url('/assets/img/header.jpg');
        background-size:cover;
        background-attachment: fixed;
        color:aliceblue;
    }
}
