@import url('https://fonts.googleapis.com/css2? family= Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100; 1200;1300;1400;1500;1600;1700;1800;1900 & display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color_text-primary: #56070c;
    --color_text-secundary: #ffffff;
    --color_text-tertiary: #3b3838;
    --main_color-primary: #f74d04;
    --main_color-secundary: #c4a00e;
    --background-color: #56070c;
    --lowText_font_size: 16px;
    --text_size_title: 40px;
    --text_title_card: 25px;
    --text_title_cardv2: 20px;
    --text_paragraph: 17px;
    --box_shadow-primary: 0px 6px 50px -20px rgba(0, 0, 0, 0.2);
}

header {
    width: 100%;
    height: 100px;
    position: fixed;
    transition: all 300ms;
    z-index: 100;
}

.header__active {
    box-shadow: 0px 20px 50px -20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
}

.container__header {
    max-width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo img {
    width: 200px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu nav {
    margin: 0px 20px;
}

.menu nav ul {
    display: flex;
}

.menu nav ul li {
    list-style: none;
    margin: 20px 16px;
}

.menu nav ul li a {
    color: var(--color_text-primary);
    font-size: var(--lowText_font_size);
    transition: all 300ms;
    position: relative;
}

.menu nav ul li a:hover {
    color: var(--color_text-primary);
}

nav ul li a.active {
    color: var(--color_text-primary);
}

nav ul li a.active:before {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--main_color-primary);
    position: absolute;
    bottom: -4px;
    border-radius: 20px;
}

/*
.menu nav ul li ul{
    position: absolute;
    right: o;
    background: var(--main_color-primary);
    display: none;
}

.menu nav ul li ul li a{
    font-size: var(--lowText_font_size);
    
}

.menu nav ul li ul li ul{
    position: absolute;
    top: 0;
    right: 200px;
}

.menu nav ul li ul li{
    width: 100%;
}

.menu nav ul li:hover > ul{
    display: initial;
}
*/

.btn__quote {
    display: block;
    padding: 8px 40px;
    border: 2px solid var(--main_color-primary);
    border-radius: 8px;
    font-weight: 500;
    margin: 0px 20px;
    transition: all 300ms;
}

.btn__quote:hover {
    color: white;
    background: var(--main_color-primary);
}

.menu .socialMedia {
    margin: 0px 10px;
}

.menu .socialMedia a {
    margin: 0px 4px;
}

.menu .socialMedia img {
    width: 20px;
}

/*Menu hamburguesa*/

.bars__menu {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
}

.bars__menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--main_color-primary);
    border-radius: 10px;
    margin-top: 6px;
    transform-origin: 0px 100%;
    transition: all 300ms;
}

.activeline1__bars-menu {
    transform: rotate(45deg) translate(-2px, 1px);
}

.activeline2__bars-menu {
    opacity: 0;
    margin-left: -40px;
}

.activeline3__bars-menu {
    transform: rotate(-45deg) translate(-4px, 2px);
}



/*Portada de inicio*/

.container__cover {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #ffffff;
}

.cover {
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.text__cover {
    width: 100%;
    padding-right: 150px;
}

.text__cover h1 {
    font-size: 30px;
    color: var(--color_text-primary);
}

.text__cover p {
    font-size: var(--text_paragraph);
    margin-top: 40px;
    color: var(--color_text-tertiary);
}

.btn__text {
    display: block;
    width: 150px;
    margin-top: 40px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
    background: var(--main_color-primary);
    color: white;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 300ms;
}

.btn__text:hover {
    background: transparent;
    border: 2px solid var(--main_color-primary);
    color: var(--main_color-primary);
}

.image__cover {
    width: 100%;
}

.image__cover img {
    width: 500px;
    border-radius: 20px;
}

/*Estilos generales CARDS*/

.container__card-primary {
    padding-top: 100px;
}

.card__primary {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 20px;
}

.text__card-primary {
    max-width: 800px;
    margin: auto;
}

.text__card-primary p {
    color: var(--color_text-primary);
    letter-spacing: 4px;
    font-size: var(--text_paragraph);
    font-weight: 500;
}

.text__card-primary h1 {
    font-size: var(--text_size_title);
    font-weight: 600;
    color: var(--color_text-tertiary);
}

.container__box-cardPrimary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.box__card-primary {
    max-width: 300px;
    padding: 70px 15px;
    border: 2px solid #f74d04;
    border-radius: 20px;
    margin: 14px;
    transition: all 300ms;
}

.box__card-primary:hover {
    border: 1px solid transparent;
    box-shadow: var(--box_shadow-primary);
}

.box__card-primary h2 {
    font-size: var(--text_title_card);
    margin-top: 40px;
    font-weight: 500;
}

.box__card-primary p {
    margin-top: 20px;
}

/*Sobre nosotros*/

.container__about {
    padding: 100px 0px;
    background: var(--background-color);
    margin-top: 100px;
}

.about {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
}

.text__about {
    width: 100%;
    padding-right: 40px;
}

.text__about h1 {
    color: var(--color_text-secundary);
    font-weight: 600;
}

.text__about p {
    font-size: var(--text_paragraph);
    margin-top: 40px;
    color: var(--color_text-secundary);
}

.image__about {
    width: 100%;
    display: flex;
}

.image__about img {
    width: 300px;
}

/*Servicios*/

.card__service img {
    width: 120px;
}

.card__service i {
    font-size: 40px;
    margin-top: 10px;
    cursor: pointer;
    color: var(--color_text-primary);
}

/*capacitacion*/

.container__work {
    background: white;
    margin-top: 100px;
    padding-bottom: 100px;
}

.card__work i {
    font-size: 40px;
    margin-top: 10px;
    cursor: pointer;
    color: var(--color_text-primary);
}

/*
.text__work {
    width: 100%;
    padding: 20px;
    padding-top: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: start;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.001));
}

.text__work h2 {
    font-size: 14px;
    text-transform: uppercase;
}

.text__work p {
    font-size: var(--text_title_cardv2);
    font-weight: 600;
    margin-top: 2px;
}*/


/*Nuestro equipo de trabajo


.card__team{
    max-width: 260px;
    border: none;
    margin: 10px;
    padding: 0px;
    text-align: start;
}


.card__team:hover{
    border: none;
    box-shadow: none;
}

.photo__team{
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.photo__team img{
    width: 100%;
    transition: all 300ms;
}

.photo__team:hover img{
    transform: scale(1.1);
}

.card__team h2{
    font-size: var(--text_title_cardv2);
    color: var(--color_text-secundary);
    margin-top: 16px;
}

.card__team p{
    font-size: 14px;
    color: var(--color_text-tertiary);
    margin-top: 4px;
}*/


/*Contactenos*/

.container__contact {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 100px;
    background: #f0eeee;

}

.location__maps {
    width: 100%;
}

.location__maps iframe {
    width: 100%;
    height: 600px;
}

.form__contact {
    width: 100%;
    margin: 0px 10px;
    padding: 10px;
}

.form__contact h2 {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 20px;
    color: var(--color_text-primary);

}

.form__contact form {
    width: 100%;
}

.name__email,
.subject__telephone {
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 20px;
}

.subject__telephone select,
input,
textarea {
    padding: 20px 15px 17px;
    margin-bottom: 25px;
    background-color: transparent;
    border: 3px solid #f74d04;
    font-size: 14px;
    outline: none;

}

.form__contact textarea {
    width: 100%;
    margin-top: 40px;
    resize: none;
}

.form__contact input[type="text"],
.form__contact select[type="text"],
.form__contact input[type="email"],
.form__contact textarea {
    outline: none;
    background: none;
    margin-top: 30px;
    border: none;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--main_color-primary);
}

.form__contact input[type="text"],
.form__contact input[type="email"] {
    width: 40%;
}


/*Mensaje de contacto*/

.modal__message-send {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
}

.modal__message-send:target {
    display: block;
}

.message {
    max-width: 600px;
    padding: 40px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.message p {
    margin-top: 20px;
}

.message a {
    max-width: 200px;
    display: block;
    margin-top: 20px;
    padding: 14px 40px;
    background: var(--main_color-primary);
    color: white;
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 300ms;
}

.message a:hover {
    background: none;
    color: var(--color_text-primary);
    border-color: var(--main_color-primary);
}

/*whatsapp*/

.wa_boton {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 25px;
    transition: ease 0.3s;
    padding: 20px;
    animation: efecto;
}

.wa_boton:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.boton {
    width: 70px;
    transition: ease 1s;
}



/*Footer - Pie de pÃ¡gina*/


footer {
    width: 100%;
    margin-top: 120px;
}

.container__footer {
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px;
}

.row__information-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box__footer {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.box__footer h2 {
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 15px;
}

.box__footer a {
    margin-top: 6px;
    color: var(--color_text-tertiary);
    font-size: 15px;
    transition: all 300ms;
}

.box__footer img {
    align-self: center;
    width: 120px
}

.box__footer a:hover {
    color: var(--color_text-primary);
}

.box__footer:nth-child(1) {
    width: 350px;
}

.box__footer:nth-child(1) img {
    width: 180px;
}

.box__footer p {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color_text-tertiary);
}

.box__footer form {
    margin-top: 20px;
    position: relative;
}

.box__footer input {
    width: 100%;
    padding: 14px 20px;
    padding-right: 50px;
    border: none;
    background: #F3F9FB;
    outline: none;
    border-radius: 6px;
}

.box__footer form i {
    position: absolute;
    right: 20px;
    top: 14px;
    font-size: 18px;
    color: var(--main_color-primary);
    cursor: pointer;
}

.box__contact-footer {
    margin-top: 18px;
    display: flex;
}

.box__contact-footer i {
    width: 36px;
    height: 36px;
    background: var(--main_color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}



.row__copyright-footer {
    width: 100%;
    margin: 20px;
    padding: 20px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #EBEBEB;
}

.row__copyright-footer p {
    font-size: 14px;
    color: var(--color_text-tertiary);
}


/*Media query 1200px*/

@media screen and (max-width: 1200px) {

    /*HEADER - MENU*/
    .container__header,
    .about {
        max-width: 960px;
    }

    .menu nav {
        margin: 0px 4px;
    }

    .menu nav ul li {
        margin: 0px 8px;
    }

    .menu nav ul li a {
        font-size: 14px;
    }

    .btn__quote {
        margin: 0px 4px;
    }

    .socialMedia {
        margin: 0px 4px;
    }

    /*PORTADA - COVER*/

    .cover {
        max-width: 960px;
    }

    .text__cover {
        padding-right: 20px;
    }

    .text__cover h1 {
        font-size: 40px;
    }

    .image__cover img {
        width: 450px;
    }

    .image__about img {
        width: 250px;
    }
}


/*Media query 960px*/

@media screen and (max-width: 960px) {

    /*HEADER - MENU*/

    .bars__menu {
        display: block;
    }

    .container__header,
    .about {
        max-width: 768px;
    }

    .menu {
        height: 100vh;
        position: absolute;
        top: 0;
        left: -420px;
        padding-top: 100px;
        padding-right: 200px;
        padding-left: 60px;
        background: white;
        flex-direction: column;
        box-shadow: 10px 0px 40px -20px rgba(0, 0, 0, 0.2);
        transition: all 300ms;
    }

    .menu__active {
        left: 0;
    }

    .menu nav {
        margin-left: -60px;
    }

    .menu nav ul {
        flex-direction: column;
    }

    .menu nav ul li {
        margin: 8px 0px;
    }

    .menu nav ul li a {
        font-size: var(--lowText_font_size);
    }

    .btn__quote {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /*PORTADA - COVER*/

    .cover {
        max-width: 768px;
    }

    .text__cover {
        padding-right: 20px;
    }

    .text__cover h1 {
        font-size: 30px;
    }

    .text__cover p {
        font-size: 14px;
    }

    .btn__text {
        font-size: 14px;
    }

    .image__cover img {
        width: 350px;

    }

    /*SOBRE NOSOTROS - ABOUT*/

    .text__about h1 {
        font-size: 30px;
    }

    .text__about p {
        font-size: 14px;
    }

    .image__about img {
        width: 200px;
    }

    /*FORMULARIO DE CONTACTO*/

    .container__contact {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
        background: var(--background-color);
    }

}

@media screen and (max-width: 768px) {

    /*HEADER - MENU*/

    .logo img {
        width: 180px;
    }

    /*PORTADA - COVER*/

    .cover {
        margin-top: 40px;
        max-width: 600px;
        flex-direction: column;
    }


    .image__cover img {
        width: 100%;
        margin-top: 20px;
    }

    /*SOBRE NOSOTROS - ABOUT*/

    .about {
        max-width: 480px;
        flex-direction: column;
    }

    .text__about {
        width: 100%;
        padding-right: 0px;
    }

    .image__about {
        width: 100%;
        justify-content: space-between;
        margin-top: 40px;
    }

    .image__about img {
        min-width: 150px;
    }

    /*FORMULARIO DE CONTACTO*/

    .name__email,
    .subject__telephone {
        flex-direction: column;
    }

    .form__contact input[type="text"],
    .form__contact input[type="email"] {
        width: 100%;
    }

}

@keyframes efecto {
    50% {
        box-shadow: #121111;
    }

    100% {
        box-shadow: #55c55e;
    }
}