/*-----------------------------------------------------------------GENERAL-----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Mohave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html {
    scroll-behavior: smooth;
    ;
}

* {
    color: white;
    font-family: 'Mohave', sans-serif;
}

body {
    min-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

p {
    margin: 0;
    text-align: justify;
    font-size: larger;
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    list-style: none;
    padding: 0;
}

li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 10px;
    /* font-size: larger; */
}

.detalle ul img {
    position: relative;
    top: -17px;
}

ul span {
    font-weight: 600;
}

h1 {
    margin: 0
}

h2 {
    font-size: xx-large;
}

h3 {
    font-size: x-large;
    text-align: center;
}

label {
    font-size: larger;
}

label:after {
    content: " *";
    color: white
}

input, textarea {
    font-size: large;
}

input {
    border: 2px solid #126499;
    border-radius: 5px;
    padding: 10px 0;
    color: black;
}

textarea {
    border: 2px solid #126499;
    border-radius: 7px;
    padding: 10px 0;
    color: black;
}

.hr {
    height: 16px;
    background-color: #126499;
}

.bullet-img:not(main ul img) {
    max-width: 70px;
    width: 100%;
}

/* CONFIGURACION DE FONDOS */

main,
.soluciones,
.detalle1,
.detalle2,
.detalle3,
.empresa1,
.empresa2 {
    /* max-height: 900px; */
    height: 100%;
    width: 100%;
    background-size: cover;
}

main {
    /* height: 1000px;
    width: 100%; */
    background: url("./images/back1.png") no-repeat center scroll;
    /* background-size: cover; */
}

.soluciones {
    /* height: auto; */
    /* width: 100%; */
    background: url("./images/back2.png") no-repeat center scroll;
    /* background-size: cover; */
}

.detalle1 {
    /* height: 100%; */
    /* width: 100%; */
    background: url("./images/back3.png") no-repeat center scroll;
    background-size: cover;
}

.detalle2 {
    /* height: 100%; */
    /* width: 100%; */
    background: url("./images/back4.png") no-repeat center scroll;
    background-size: cover;
}

.detalle3 {
    /* height: 100%; */
    /* width: 100%; */
    background: url("./images/back5.png") no-repeat center scroll;
    background-size: cover !important;
}

.empresa1 {
    /* height: 100%; */
    /* width: 100%; */
    background: url("./images/back6.png") no-repeat center scroll;
    background-size: cover;
}

.empresa2 {
    /* height: 100%; */
    /* width: 100%; */
    background: url("./images/back7.png") no-repeat center scroll;
    background-size: cover;
}

.bg-1,
.bg-2,
.bg-3,
.bg-4,
.bg-5,
.bg-6,
.bg-7 {
    min-height: 800px;
}

/* -----------------------------------------------------------------NAVBAR-----------------------------------------------------------------*/

.navbar-button {
    display: none;
}

.navbar-menu {
    font-size: large;
}

.navbar-menu-responsive {
    display: none;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-content: end;
    gap: 50px;
    padding: 5px 20px 5px 0;
    background-color: #126499;
    border-bottom: 2px solid white;
}

nav div,
nav p {
    height: fit-content;
    width: fit-content;
    align-self: end;
}

nav div {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
    gap: 15px;
}

.navbar-menu {
    gap: 30px
}

nav div a {
    text-decoration: none;
}

nav div a:hover {
    text-decoration: underline;
}

nav p {
    margin: 0
}

.tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0
}

/*-----------------------------------------------------------------HOME-----------------------------------------------------------------*/
.bg-1 {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    background: url('images/transp1.png') no-repeat left scroll;
    background-size: 100% 100%;
    background-position: -40vw 0
}

.main-container {
    max-width: 45%;
    padding-left: 30px;
}

.main-container h1 {
    font-size: 40px;
}

.text1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 2rem;
    gap: 20px;
}

.assisi-logo {
    width: 80%;
    min-width: 150px;
    margin-bottom: 30px
}

.first-paragraph {
    font-size: x-large;
    text-align: start !important;
    font-weight: 500 !important;
    margin: 0
}

.main-container .assisi {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.main-container .assisi img {
    width: 35px;
}

.assisi strong {
    color: #E9CD0A;
}

.assisi {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: 20px;
}

.pedir-cotizacion {
    width: fit-content;
    border-radius: 6px;
    padding: 15px;
    border: none;
    align-self: flex-end;
    font-weight: 900;
    font-size: x-large;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    background-color: #E9CD0A;
    color: #4A74E0;
    transition: all 0.3s ease;
}

.pedir-cotizacion:hover {
    background-color: #9dd241;
    color: white;
    cursor: pointer;
}

main ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: fit-content;
    gap: 20px;
    margin: 0;
}

main ul li {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px
}

main ul span {
    font-size: x-large;
}

main ul img {
    max-width: 35px;
    width: 100%;
}

/* -----------------------------------------------------------------SOLUCIONES----------------------------------------------------------------- */

.bg-2 {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    background: url('images/transp2.png') no-repeat right scroll;
    background-size: 100% 100%;
    background-position: 10vw 0
}

.soluciones-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 90%;
}

.soluciones-container h2 {
    align-self: center;
    position: relative;
    left: 60px
}

.soluciones-container img {
    max-width: 90%;

}

.soluciones-list {
    display: none;
}

/* -----------------------------------------------------------------DETALLES 1----------------------------------------------------------------- */


.bg-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('images/transp3.png') no-repeat left scroll;
    background-size: 100% 100%;
    background-position: -20vw 0
}

.detalle1 {
    display: flex;
    justify-content: flex-end;
    align-items: start;
}

.detalles-container-1 , .detalles-container-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 3;
}

.detalles-container-1 ul, .detalles-container-2 ul,.detalles-container-3 ul{
    margin-left: 30px;
}

.detalles-container-1 ul li:nth-child(1) {
    max-width: 85%;
}

.detalles-container-1 ul li:nth-child(2) {
    position: relative;
    left: 30%;
    max-width: 60%;
}

.detalles-container-1 ul li:nth-child(3) {
    max-width: 60%;
}

.detalles-container-1 ul li:nth-child(4) {
    position: relative;
    left: 20%;
    max-width: 80%;
}

.button-container {
    flex: 1;
    margin: 50px 0 50px 30px;
    align-self: flex-start;
}

/* -----------------------------------------------------------------DETALLES 1----------------------------------------------------------------- */

.detalle2 {
    display: flex;
    justify-content: flex-end;
    align-items: start;
    background-size: cover
}


.detalles-container-2 {
    flex: 3;
}

.detalles-container-2 ul li:nth-child(1),
.detalles-container-2 ul li:nth-child(2) {
    max-width: 96%;
}

.detalles-container-2 ul li:nth-child(3) {
    position: relative;
    left: 14%;
    max-width: 82%;
}

.detalles-container-2 ul li:nth-child(4) {
    max-width: 71%;
    left: 25%;
    position: relative;
}

.bg-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('images/transp4.png') no-repeat right scroll;
    background-size: 100% 100%;
    background-position: 20vw 0
}

.button-container4 {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    flex: 1;
    margin: 50px 30px 50px 0;
}


/* -----------------------------------------------------------------DETALLES 3----------------------------------------------------------------- */

.bg-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('images/transp5.png') no-repeat left scroll;
    background-size: 100% 100%;
    background-position: -30vw 0
}

.detalles-container-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 3;
}

.detalles-container-3 ul li:nth-child(1) {
    max-width: 85%;
}

.detalles-container-3 ul li:nth-child(2) {
    position: relative;
    left: 5%;
    max-width: 80%;
}

.detalles-container-3 ul li:nth-child(3) {
    position: relative;
    left: 10%;
    max-width: 75%;
}

.detalles-container-3 ul li:nth-child(4) {
    position: relative;
    left: 7%;
    max-width: 75%;
}

/*-----------------------------------------------------------------EMPRESA 1-----------------------------------------------------------------*/

.empresa1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: 100%;
}

.bg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    gap: 30px;
    height: 100%;
    width: 100%;
    padding: 0 30px 0 130px;
    background: url('images/transp6.png') no-repeat right scroll;
    background-size: 100% 100%;
    background-position: 10vw 0
}

.empresa-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px
}

.empresa-container p {
    max-width: 29%;
    font-size: larger;
}

.bg-6 img {
    max-width: 600px
}

.bg-6 h2 {
    align-self: center;
    position: relative;
    left: 280px;
    margin-bottom: 0;
}

/*-----------------------------------------------------------------EMPRESA 2-----------------------------------------------------------------*/

.bg-7 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* max-width: 85%; */
    height: 100%;
    background: url('images/transp7.png') no-repeat left scroll;
    background-size: 100% 100%;
    background-position: -20vw 0
}

.empresa-container-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 70%;
    /* max-width:; */
    padding: 30px 70px 30px 30px;
}

.cont1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px
}

.cont1 p {
    display: flex;
    flex-direction: column;
    /* max-width: 72%; */
}

.cont1 div ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
    font-size: large;
}

.cont1 div ul li::before {
    content: " •";
    color: white;
}

.cont2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cont2 h3 {
    max-width: 90%;
    font-size: 27px;
}

.cont1 img {
    max-width: 500px;
}

.cont2 img {
    max-width: 700px;
}

/*-----------------------------------------------------------------FOOTER-----------------------------------------------------------------*/

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: sticky;
    background-color: #126499;
}

.footer-div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1025px;
    padding: 20px 0;
}

.contacto-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 10px;
    flex: 2;
    width: 100%;
    max-width: 800px;
}

.contacto-container div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    width: auto;
}

.footer-div>.contacto-container p {
    text-align: center;
    font-size: medium;
}

.iframe-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1.5;
}

.iframe-container div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.iframe-container div {
    max-width: 320px;
}

/*-----------------------------------------------------------------FORM-----------------------------------------------------------------*/

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1592D9;
    height: 100%;
    padding: 30px;
}

.form h2 {
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    width: 100%;
}

.name-lastname {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 30px;
}

.label-input-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.label-input-div input,
.label-input-div-2 textarea {
    flex: 1;
    padding-left: 8px;
}

.label-input-div-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.label-input-div input,
.label-input-div-2 input,
.label-input-div-2 textarea {
    flex: 1;
    width: 100%
}

.enviar-consulta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enviar-consulta-btn {
    font-size: large;
    padding: 10px
}

.g-recaptcha {
    display:flex;
    justify-content:center;
}

/*-----------------------------------------------------------------RESPONSIVE-----------------------------------------------------------------*/

@media screen and (max-width:1300px) {

    .container {
        padding: 30px 0 !important;
    }

    .detalles-container-1 ul li:nth-child(1) {
        max-width: 75%;
    }

    .empresa-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: center;
        gap: 15px;
    }

    .bg-6 h2 {
        position: relative;
        left: 0;
    }

    .empresa-container p {
        max-width: 900px;
    }

    .empresa-container-2 {
        padding-left: 30px !important
    }

    main,
    .soluciones,
    .detalle1,
    .detalle2,
    .detalle3,
    .empresa1,
    .empresa2 {
        max-height: none;
    }

}

@media screen and (max-width:1200px) {

    .empresa-container img {
        width: 100%
    }

    .cont1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width:1050px) {

    .pedir-cotizacion {
        font-size: medium;
        padding: 10px;
        align-self: center;
    }

    .empresa-container-2 {
        gap: 30px
    }

    .bg-6 {
        display: flex;
        align-items: center;
        gap: 30px
    }

    .bg-6 h2 {
        position: relative;
        left: 0;
        margin: 0;
        margin-top: 30px;
    }

    .empresa-container p,
    .empresa-container p {
        max-width: 90%;
    }

    .soluciones-list {
        margin: 0
    }

    .cont1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px
    }

    .cont1 img {
        max-width: 90%
    }

    .cont2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .cont2 img {
        max-width: 90%
    }
}


@media screen and (max-width: 900px) {

    h2 {
        font-size: x-large;
    }

    .bullet-img:not(main ul img) {
        max-width: 60px;
        width: 100%;
    }

    .bg-7 {
        padding: 0
    }

    nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 30px;
        padding-right: 0;
        gap: 20px;
    }

    .navbar-button {
        display: block;
        background-color: transparent;
        outline: none;
        border: solid transparent;
        background: url("./images/icons8-menú-50.png") no-repeat center;
        background-size: 100% 100%;
        width: 40px;
        height: 40px;
    }

    nav div,
    nav p {
        align-self: flex-start;
    }

    .navbar-menu-responsive {
        background-color: #126499;
        border: 2px solid white;
        color: #fff;
        padding: 10px;
        position: absolute;
        top: 50px;
        left: 0;
        width: 50%;
        animation-duration: 0.5s;
    }

    .navbar-menu-responsive a:not(:last-of-type) {
        margin: 5px 0
    }

    .navbar-menu-responsive.show {
        display: block;
        animation-name: slideOut;
    }

    .navbar-menu-responsive.hide {
        animation-name: slideIn;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(-20px);
        }
    }

    .navbar-menu-responsive div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-menu-responsive div>* {
        width: 100%
    }

    .navbar-menu-responsive a {
        display: block;
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        padding: 4px 0 4px 4px;
        margin: 0;
        transition: background-color 0.3s ease-in-out
    }

    .navbar-menu-responsive a:hover {
        background-color: #1592D9;
        transition: background-color 0.3s ease-in-out
    }

    .navbar-menu-responsive div p {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        background-color: #1592D9;
    }

    .navbar-menu-responsive div p a {
        margin: 0;
        padding: 0
    }

    .navbar-menu {
        display: none;
    }

    .bg-1 {
        background: url('images/transp2.1.png') no-repeat left scroll;
    }

    .bg-2 {
        background: url('images/transp2.2.png') no-repeat left scroll;
    }

    .bg-3 {
        background: url('images/transp2.3.png') no-repeat right scroll;
    }

    .bg-4 {
        background: url('images/transp2.4.png') no-repeat left scroll;
    }

    .bg-5 {
        background: url('images/transp2.5.png') no-repeat right scroll;
    }

    .bg-6 {
        background: url('images/transp2.6.png') no-repeat left scroll;
    }

    .bg-7 {
        background: url('images/transp2.7.png') no-repeat right scroll;
    }

    .bg-1,
    .bg-2,
    .bg-3,
    .bg-4,
    .bg-5,
    .bg-6,
    .bg-7 {
        background-size: 100% 100%;
        /* background-position: 0; */
        /* background-size: cover; */
        width: 100%;
        max-width: none;
    }

    .main-container {
        max-width: 560px;
        padding-left: 0;
    }

    .assisi-logo {
        max-width: 500px;
        width: 70%;
        min-width: 150px;
    }

    .button-cont {
        display: none
    }

    .detalles-container-1 ul,
    .detalles-container-2 ul,
    .detalles-container-3 ul {
        max-width: 90%;
        margin-left: 0;
    }

    .detalles-container-2 ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .empresa-container-2 {
        padding-left: 30px;
        width: 90%;
    }

    .soluciones-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%
    }

    .soluciones-container .new:after {
        content: "NEW";
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        text-shadow: 0 2px 2px gray;
        color: red;
        background: gainsboro;
        padding: 2px 4px;
        border: 2px solid red;
        border-radius: 5px;
    }

    .soluciones-container h2 {
        position: relative;
        left: 0;
    }

    .soluciones-container .graf {
        display: none;
    }

    .soluciones-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        max-width: 90%;
        margin-right: 0;
    }

    .soluciones-list li {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: 10px
    }

    .detalles-container-1 ul>*,
    .detalles-container-3 ul > * {
        max-width: none !important;
        position: relative;
        left: 0 !important;
    }

    .detalles-container-2 ul>* {
        max-width: none !important;
        position: relative;
        left: 0 !important;
    }

    .contacto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .empresa-container div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .empresa-container img {
        max-width: none;
        width: 90%
    }

    .form {
        height: 100%;
        padding: 30px 0;
    }

    form {
        max-width: 90%;
    }

    .footer-div {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 800px) { 

    .bg-6 {
        padding: 0;
    }

    .empresa-container-2 {
        gap: 0;
        max-width: none;
        width: 90%;
        
    }
}


@media screen and (max-width: 700px) {}


@media screen and (max-width: 600px) {

    .text1 {
        padding-right: 30px
    }

    main,
    .soluciones,
    .detalle1,
    .detalle2,
    .detalle3,
    .empresa1,
    .empresa2 .empresa-container-2 {
        background-size: auto 100%;
    }

    p {
        font-size: medium !important;
    }

    .bg-7 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cont1 img,
    .cont2 img {
        max-width: none;
        width: 100%;
    }

    .empresa-container-2 {
        padding-left: 0 !important
    }

    .contacto-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form {
        padding: 30px
    }

    .name-lastname {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .name-lastname {
        display: flex;
        flex-direction: column;
        flex: unset
    }
}

@media screen and (max-width: 450px) {

    .assisi-logo {
        width: 90%
    }

}