@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&family=Roboto:wght@100;300;500;700&display=swap');
body {
    background-color: #F2F2F2;
}
.fl-nav {
    background-color: blueviolet;
    min-height: 100px;
}
.fl-logo {
    width: 146px;
    height: auto;
}
* {
    font-family: 'Roboto', sans-serif;

}
.nav-link {
    font-weight: 500;
    font-size: 18px;
}
.dropdown-toggle::after {

    margin: auto;
    margin-left: 10px;
}
.fl-bg-img {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/fondo_intro_01.jpeg);
    background-position: center;
    background-size: cover;
}
.fl-ca-title {
    font-size: 96px;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.fl-ca-text {
    font-size: 48px;
    font-weight: 100;
    color: white;
    line-height: 1;
}
.fl-ca-button {
    width: 300px;
    border-radius: 30px;
    font-weight: 300;
    font-size: 21px;
    background-color: rgba(255, 255, 255, 0.50);
}


/*services styles */

.fl-s-main-text {
    font-weight: 100;
    font-size: 48px;
    color: #5C5E60;
    line-height: 1;
}
.fl-s-menu-text {
    font-weight: 300;
    color: #5C5E60;
    font-size: 14px;
}
.fl-s-subtext {
    font-weight: 300;
    font-size: 21px;
    color: #5C5E60;
    line-height: 1;
}
.fl-s-menu {
    cursor: pointer;
}
.fl-s-content {
    opacity: 0;
 
}

/* Sobre nosotros section */
.fl-w-raya {
    height: 1px;
    background-color: #1A1A1A;
    
}
.fl-w-menu-raya {
    background-color: #F58720;
    height: 1px;
    width: 0%;
    transition: width 0.5s ease;
}
.fl-w-menu {
    font-size: 14px;
    font-weight: 300;
}
.fl-w-main-text {
    font-size: 15px;
    font-weight: 300;
    color: white;
    line-height: 1.4;
}
.a-style {
    text-decoration: none;
    color: #F58720;
}
.a-style:hover {
    color: white;
}
.fl-w-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}


/* hiring classes */


.fl-h-background{
    background-image: url(./images/hire-background.jpg);
    background-position: center;
    background-size: cover;
}
.fl-h-background-mini {
    background-image: url(./images/hire-background_dark.jpg);
    background-position: center;
    background-size: cover;
}
.fl-h-main-text {
    font-size: 36px;
    color: white;
    font-weight: 100;
    line-height: 1;
}
.fl-h-button{
    font-size: 21px;
    font-weight: 300;
    color: #F58720;
    border: 1px solid #F58720;
    border-radius: 50px;
    width: 131px;
    padding: 10px;
    cursor: pointer;
}

/* contanct classes */

.fl-con-a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 300;
   
}
.fl-con-element {
    border-bottom: 1px solid #1A1A1A;
}

/* footer clases */

.footer-background{
    background-color: #E6E6E6;
}
.footer-social {
    width: 75px;
    margin: 5px 5px;
}
.footer-menu {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 300;
}
.footer-info {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 300;
}
/* header clases */

.fl-header-fixed {
    position: relative;
}
.fl-header-mt {
    margin-top: 0;
}
/* media queries for all */

@media (max-width: 425px) {
    .fl-s-main-text {
         font-size: 25px;
    }
    .fl-h-main-text {
        font-size: 16px;
    }
    .fl-ca-title {
        font-size: 56px;
    }
    .fl-ca-text {
        font-size: 30px;
    }

}
@media (min-width: 1440px){
    .fl-header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .fl-header-margin {
        margin-top: 595px;
    }
}



/* Utilities classes */
.white {
    background-color: #F2F2F2;
}
.tx-white {
    color: white;
}
.tx-orange {
    color: #F58720;
}
.gray {
 background-color: #333333;
}
.oculta{
    display: none;
}
.mostrada {
    display: block;
    transition: opacity 0.5s ease;
   

}


