* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: fit-content;
    background-color: #fff;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1rem;
}


.text_h1 {
    font-size: 4.125rem;
    letter-spacing: 3px;
    color: #736b6b;

}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar_one {
    background-color: rgb(244, 244, 236);
    height: 40px;
    color: rgb(37, 34, 34);
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
}

.email,
.call,
.instagram,
.facebook {
    margin-left: 50px;
    margin-right: 30px;
    transition: 0.3s;
}

.email:hover,
.call:hover,
.instagram:hover,
.facebook:hover {
    color: #2c2b28;
    transform: scale(1.1);
}

span {
    margin-left: 5px;
}


#label_chek_menu {
    display: none;
}


/*//// ACA EMPIEZA NAV BAR INFERIOR///**/

.header {
    position: sticky;
    z-index: 12;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: rgb(193, 199, 106);
    padding: 0 80px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.logo_deco {
    top: 0;
    padding-bottom: 10px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header button {
    display: none;
    background-color: transparent;
    border-style: none;
}

.header h1 {
    letter-spacing: 3px;
    font-size: 24px;
    cursor: pointer;
}

.svg {
    font-size: 20px;
    font-weight: bold;
    width: 2em;
    height: 2em;
}

.header ul {
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    align-items: center;
}

.header li {
    margin: 0 .5em;
}

.header ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.header nav ul li a {
    height: 100px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 300ms ease;
}

.header nav ul li a:hover {
    transform: scale(1.05);
    background-color: rgb(193, 199, 106);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.header nav ul li:first-child a {
    background-image: url(/img/icons8-home-64.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px;
    padding: 20px 40px;
}

.header nav ul li:first-child:hover a {
    background-image: url(/img/icons8-home-64.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px;
    padding: 20px 40px;
}


#selected {
    height: 100px;
    transform: scale(1.1);
    background-color: rgb(193, 199, 106);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5)
}



/*////////////////PORTADA//////////////////////*/

.backcover {
    width: 100%;
    height: 70vh;
    background: url(/img/IMG_2488.jpg) no-repeat center / cover;
    background-size: cover;
    position: relative;
}

.backcover::before {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .70);
    content: "";
}

.portada {
    position: relative;
}

.presentacion {
    text-align: center;
    padding-top: 100px;
}

.presentacion h1 {
    font-size: 5.125rem;
    color: white;
    text-shadow: 2px 2px 2px #000000;
    letter-spacing: 10px;
}

.presentacion p {
    font-size: 1.125rem;

    color: white;
}

.btn_portada {
    background-color: rgb(193, 199, 106);
    margin-top: 20px;
    margin-top: 30px;
    padding: 20px 0 20px 0;
    width: 300px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 5px;
    border-color: transparent;
}

.btn_portada a {
    text-decoration: none;
    color: white;
}

.btn_portada a:hover {
    text-decoration: none;
    color: white;
}


.btn_portada:hover {
    border-color: white;
    opacity: .8;
    background-color: transparent;
}

.card_portada {
    padding-top: 30px;
    background-color: transparent;
    height: 160px;
    font-size: 20px;
    color: white;
}

.card_portada i {
    font-size: 30px;
    padding-bottom: 20px;
}

.card_portada p {
    padding-top: 5px;
    white-space: nowrap;
    font-weight: bold;
    letter-spacing: 1px;
}


/*///ABOUT//////////////////////////////////////////////////////*/

.secc_about {
    padding-bottom: 40px;
}

.conte_about {
    padding: 90px 0 90px 0;
    text-align: center;
    margin-left: 120px;
    margin-right: 120px;
    color: #736b6b;
}

.conte_about h1 {
    text-align: center;
    font-size: 3.125rem;
    letter-spacing: 3px;
    color: #736b6b;
}

.conte_about p {
    font-size: 1.5rem;
    padding-top: 40px;
}

.icons_grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: center;

}

.icon {
    text-align: center;
    width: 250px;
    border-radius: 6px;
    border-right-style: inset;
}

.icon:last-child {
    border-right-style: none;

}

.icon p {
    color: #736b6b;
    padding-top: 20px;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
}

.backcolor {
    background-color: gray;
}


/*/////CARRUSEL///*/

.carousel-item {
    height: 100%;
}

.carousel-item img {
    filter: brightness(60%);
}

.carousel-caption h1 {
    font-size: 60px;
    letter-spacing: 4px;
}

.carousel-caption p {
    letter-spacing: 3px;
}


/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;

}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 32rem;
}


@media (min-width: 40em) {

    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}



/*////// SERVICES/////////*/

.conte_services {
    background-color: rgb(233, 231, 231);
}

.card-body p {
    font-size: 1rem;
}

.card img {
    height: 200px;
}

.cabecera_services {
    margin-bottom: 40px;
}

.cabecera_services h1 {
    text-align: center;
    font-size: 3.125rem;
    letter-spacing: 3px;
    color: #736b6b;
}



/* Ajuste de tamano de imagen*/


.button_about {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    padding-bottom: 60px;
}

.btn_serv {
    background-color: rgb(193, 199, 106);
    margin-top: 20px;
    margin-top: 30px;
    padding: 20px 0 20px 0;
    width: 300px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 5px;
    border-color: transparent;
}

.btn_serv a {
    text-decoration: none;
    color: black;
}

.btn_serv a:hover {
    text-decoration: none;
    color: black;
}


.btn_serv:hover {
    border-color: white;
    opacity: .8;
    background-color: transparent;
}

/*//////////THIS IS HOW WE DO IT SECTION/////*/

.cabecera_this_is h1 {
    padding-left: 180px;
}

.cabecera_this_is p {
    color: black;
    font-weight: bold;
    padding-left: 180px;
    font-size: 25px;
    padding-top: 50px;
}

.img_this_is {
    width: auto;
}


.img_this_is img {
    width: 700px;
    height: auto;
}

.lista_this_is {
    display: flex;
}

.tex_lista {
    margin-left: 20px;
    font-size: 25px;
    color: black;
}

.only_corner_radius {
    border-top-left-radius: min(max(50px, calc(3.125rem + 7.3529vw - 23.52928px)), 100px);
}


/*///////SECTION CONTACTO//////*/


.conta_form {
    margin-top: 50px;
    text-align: center;
    padding-bottom: 20px;
}

.conta_form h1 {
    font-weight: 700;
    color: #736b6b;
}

.text_input {
    width: 300px;
    color: black;
    background-color: rgb(194, 199, 133);
    border: none;
    padding: 10px;
    margin: 10px;
    font-size: 15px;
}

::placeholder {
    color: black;
}

.conta_input {
    padding-top: 10px;
}

.texto_msj {
    width: 300px;
    background-color: rgb(194, 199, 133);
    border: none;
    font-size: 15px;
    resize: none;
}

.col h1 {
    font-weight: 700;
    color: #736b6b;
    padding-top: 40px;
}

.button_contacto {
    font-size: 18px;
    font-weight: 700;
    background-color: rgb(194, 199, 133);
    color: rgb(0, 0, 0);
    width: 200px;
    cursor: pointer;
    margin-top: 15px;
    padding: 15px;
    border-radius: 5px;
}

.button_contacto:hover {
    background-color: white;
    border-color: black;
    color: black;
}


/*//////////////////////// ACA EMPIEZA CONTENEDOR DIV PANEL DERECHO/////////////////*/
.text_lado_derecho {
    background-color: #e0e0e0;
    min-width: 300px;
}

.text_lado_derecho h1 {
    margin-top: 50px;
    font-weight: 700;
    color: #736b6b;
}

.text_lado_derecho p {
    font-size: 20px;
    color: rgb(108, 103, 103);
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

.text_lado_derecho p:not(:first-child) {
    padding-top: 20px;
}

.cont_ico_lado_derecho img {
    padding-top: 20px;
    transition: .2s;
    cursor: pointer;
    margin: 0 10px;
}

.cont_ico_lado_derecho img:hover {
    opacity: 1;
    transform: scale(1.1);
}


/*///////ICONOS PARTE INFERIOR SECCION CONTACTO*/
.cont_ico_lado_derecho {
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont_ico_lado_derecho img {
    margin: 0;
    width: 30px;
}


.icon_contact p {
    color: #736b6b;
    padding-top: 30px;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
    white-space: nowrap;
}

.icon_contact i {
    padding-top: 60px;
    font-size: 50px;
    color: #736b6b;
}

/*///////FOOTER///////*/

.logo_deco_footer {
    width: 300px;
    padding-bottom: 20px;
}

.container-footer {
    background-color: #000000;
    color: white;
    opacity: 0.8;
    letter-spacing: 1px;
}

.icon_footer img {
    width: 30px;
    cursor: pointer;
}

.icon_footer img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.col ul {
    list-style: none;
    color: white;
    padding-top: 40px;
}

.col ul li {
    padding-top: 10px;
    white-space: nowrap;

}

.col ul li a {
    text-decoration: none;
    color: white;
}

.button_join_us {
    background-color: rgb(22, 142, 280);
    width: 200px;
    height: 60px;
    border-radius: 5px;
    font-size: 20px;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.button_join_us:hover {
    background-color: #000000;
    opacity: 0.8;
    border-color: rgb(22, 142, 280);
    color: white;
}

/*////////COPYRIGHT/////////*/

.copyright {
    background-color: #736b6b;
    text-align: center;
    font-weight: 700;
}


/*/////////////////////////////////////////////////*/

@media screen and (max-width: 1200px) {
    .navbar_one {
        display: none;
    }

    .icon__menu {
        cursor: pointer;
    }


    /*////AJUSTANDO CARRUSEL////*/

    .carousel-caption h1 {
        font-size: 1.5rem;
        color: black;
    }

    .carousel-caption p {
        font-size: 1.5rem;
        color: black;

    }



    /*//////AJUSTANDO TEXTO PORTADA*/

    .presentacion h1 {
        font-size: 4.125rem;
    }

    .presentacion p {
        font-size: 1.125rem;
        font-weight: 500;

    }

    .card_portada p {
        padding-top: 15px;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 1px;
    }

    /*////AJUSTANDO OUR WORK////*/

    .cabecera_this_is h1 {
        padding-left: 0;
    }

    .cabecera_this_is p {
        padding-left: 0;
    }
}

@media screen and (max-width: 1040px) {



    /*////////HACIENDO EL MENU RESPONSIVE/////////////*/

    .header {
        height: auto;
        padding: 20px 20px;
    }

    .header button {
        display: block;
        cursor: pointer;
    }

    .header nav {
        width: 100%;
        display: none;
    }

    .header nav.activo {
        display: block;
    }

    .header ul {
        flex-direction: column;
    }

    .header li {
        margin: 1rem 0;
    }

    .header nav ul li a {
        height: auto;
    }

    .header nav ul li:first-child a {
        background-image: url(/img/icons8-home-64.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 40px;
    }

    .header nav ul li:first-child:hover a {
        background-image: url(/img/icons8-home-64.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 40px;
    }
}







@media screen and (max-width: 900px) {
    .img_this_is img {
        width: 500px;
        height: auto;
    }
}








@media screen and (max-width: 570px) {
    .img_this_is img {
        width: 300px;
        height: auto;
    }

    /*////AJUSTANDO ABOUT////*/
    .conte_about {
        margin-left: 50px;
        margin-right: 50px;
        color: #736b6b;
    }

    /*////AJUSTANDO THIS IS/////*/

    .tex_lista {
        font-size: 1.5rem;
    }

    /*/////AJUSTANDO CONTACT////*/

    .icon_contact p {
        font-size: 1rem;
        font-weight: normal;
    }

}








@media screen and (max-width: 400px) {

    #this_is {
        display: none;
    }



    /*////AJUSTANDO PORTADA*/
    .btn_portada {
        width: 150px;
    }

    .presentacion h1 {
        font-size: 2.125rem;
    }

    .presentacion p {
        font-size: 1.125rem;
        font-weight: 500;

    }

    .card_portada p {
        padding-top: 15px;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 1px;
    }

    /*///AJUSTANDO ABOUT////*/
    .conte_about {
        margin-left: 20px;
        margin-right: 20px;
        color: #736b6b;
    }

    .conte_about h1 {
        font-size: 2.125rem;
    }



}