/*///////////////////////////Formulario home//////////////////////////////////////*/
#home {
    height: 100vh;
    width: 100%;
    background-image: url(/svg/lateral-home.svg), url(/img/fondo-chamigo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
    #home ul li {
        display: inline-block;
        line-height: 80px;
        margin: 0 10px;
    }
        #home ul li span {
            color: white;
            font-size: 17px;
            padding: 7px 13px;
            border-radius: 3px;
            text-transform: uppercase;
        }
    #home span:hover {
        background: #e7412a;
        transition: .5s;
        cursor: pointer;
        text-decoration: underline;
    }
@media (max-width: 952px) {
    #home ul li span {
        font-size: 16px;
    }
}
@media (max-width: 858px) {
    #home {
        background: #26336e;
        background-image: none;
    }
        #home ul {
            width: 100%;
            height: 100vh;
            background: #26336e;
            top: 80px;
            left: -100%;
            text-align: center;
            transition: all .5s;
        }
            #home ul li {
                display: block;
                margin: 50px 0;
                line-height: 30px;
            }
                #home ul li span {
                    font-size: 20px;
                }
    #home span:hover, span.active {
        background: #e7412a;
    }
}
/*///////////////////////////Barra de menu//////////////////////////////////////*/
.chamigo-nav {
    background-image: url(/svg/barra-superior.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.chamigo-nav img.chamigo-logo {
    margin-left: 70px;
}
.chamigo-nav ul {
    float: right;
    margin-right: 20px;
}
.chamigo-nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
.chamigo-nav ul li span {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
.chamigo-nav span.active {
    background: #e7412a;
    transition: .5s;
}
.chamigo-nav span:hover {
    background: #e7412a;
    transition: .5s;
    cursor: pointer;
    text-decoration: underline;
}

.chamigo-nav .checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
.chamigo-nav #check {
    display: none;
}
@media (max-width: 952px) {
  .chamigo-nav img.chamigo-logo {
      margin-left: 20px;
  }
  .chamigo-nav ul li span {
      font-size: 16px;
  }
}
@media (max-width: 858px) {
    .chamigo-nav {
        background: #26336e;
    }
    .chamigo-nav .checkbtn {
        display: block;
    }
  .chamigo-nav ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #26336e;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
  }
  .chamigo-nav ul li {
      display: block;
      margin: 50px 0;
      line-height: 30px;
  }
  .chamigo-nav ul li span {
      font-size: 20px;
  }
  .chamigo-nav span:hover,span.active {
      background: #e7412a;
  }
  .chamigo-nav #check:checked ~ ul {
      left: 0;
  }
}

/*///////////////////////////Formulario testimonios//////////////////////////////////////*/
#testimonios {
    height: 100vh;
    width: 100%;
}
    #testimonios .carousel, .item, .active {
        height: 100%;
    }

    #testimonios .carousel-inner {
        height: 100%;
    }

    #testimonios .carousel-testimonial-chamigo {
        position: absolute;
        left: 41%;
        right: 8%;
        top: 100px;
        z-index: 10;
        text-align: center;
    }

        #testimonios .carousel-testimonial-chamigo h2 {
            font-weight: bold;
            color: #000;
            padding: 30px;
            margin-bottom: 50px;
        }

        #testimonios .carousel-testimonial-chamigo p {
            font-size: 28px;
            color: #000;
            padding: 50px;
        }
@media (max-width: 858px) {
    #testimonios .img-fluid {
        max-width: 100%;
        height: 100%;
    }
    #testimonios .carousel-testimonial-chamigo {
        position: absolute;
        top: 120px;
        left: 45px;
        right: 45px;
        margin-top: 26px;
        z-index: 10;
        text-align: center;
    }
        #testimonios .carousel-testimonial-chamigo h2 {
            font-size: 30px;
            padding: 0px;
            width: 100%;
            margin-bottom: 45%;
        }
        #testimonios .carousel-testimonial-chamigo p {
            font-size: 26px;
            padding: 0px;
            width: 100%;
        }
}
/*///////////////////////////Formulario sobre nosotros//////////////////////////////////////*/
#nosotros {
    height: 100vh;
    width: 100%;
    background-image: url(/svg/lateral-naranja-nosotros.svg), url(/img/lateral-nosotros.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
    #nosotros div {
        height: 100%;
        margin: 54px;
        padding: 10px;

    }
    #nosotros h2 {
        text-align: center;
        font-weight: bold;
        padding: 8px;
        margin-top: 50px;
        height: 60px;
    }

    #nosotros p {
        font-size: 20px;
        margin-left: 14%;
        margin-right: 14%;
        text-align: center;
        margin-top: 31px;
        padding: 0px;
        height: 80px;
    }
@media (max-width: 952px) {
    #nosotros p {
        font-size: 18px;
    }
}

@media (max-width: 858px) {
    #nosotros {
        background-color: #26336e;
        background-image: none;
    }
        #nosotros h2 {
            color: #fff;
        }
        #nosotros p {
            font-size: 18px;
            color: #fff;
            padding-top: 2px;
            margin-left: 0px;
            margin-right: 0px;
            margin-top: 54px;
        }
}

/*///////////////////////////Formulario contacto//////////////////////////////////////*/
#contacto {
    height: 100vh;
    width: 100%;
}
    #contacto .validation-message {
        color: red;
        font-size: 12px;
    }
@media (max-width: 858px) {
    #contacto .e-solicitar-demo-icon {
        width: 75%;
    }
    #contacto .validation-message {
        color: red;
        font-size: 10px;
    }
}

/*/ //////////////////////////Foorter///////////////////////////////////// /*/
.chamigo-footer {
    background-image: url(/img/footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
}

    .chamigo-footer .footer-left, .chamigo-footer .footer-center, .chamigo-footer .footer-right {
        display: inline-block;
        vertical-align: top;
    }

    .chamigo-footer .footer-left {
        padding: 15px;
        width: 33%;
        text-align: center;
    }

    .chamigo-footer .footer-center {
        padding: 25px;
        width: 33%;
        margin-left: 100px;
    }

        .chamigo-footer .footer-center div a {
            color: #fff;
        }

        .chamigo-footer .footer-center span {
            color: #fff;
            font-size: 22px;
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
            vertical-align: bottom;
        }

    .chamigo-footer .footer-right {
        width: 20%;
        padding: 35px;
    }

        .chamigo-footer .footer-right span {
            font-weight: bold;
            color: #fff;
            font-size: 36px;
            cursor: pointer;
        }

        .chamigo-footer .footer-right img {
            margin-right: 6px;
        }

    .chamigo-footer .footer-copyright {
        color: #fff;
        font-size: 20px;
        width: 100%;
        text-align: center;
        padding-top: 12px !important;
    }

        .chamigo-footer .footer-copyright a {
            color: #fff;
            font-size: 20px;
        }

@media (max-width: 880px) {
    .chamigo-footer {
        background-color: #26336e;
        background-image: none;
    }
    .chamigo-footer .footer-left, .chamigo-footer .footer-center, .chamigo-footer .footer-right {
        display: block;
        width: 100%;
        text-align: center;
    }

    .chamigo-footer .footer-center {
        margin-left: 0px;
    }
        .chamigo-footer .footer-center div {
            display: inline;
            padding: 12px;
        }
        .chamigo-footer .footer-center span {
            display:none;
        }
        .chamigo-footer .footer-center img {
            margin-left: 0;
            width: 50px;
        }
        .chamigo-footer .footer-center i {
            margin-left: 0;
        }
        .chamigo-footer .footer-right {
            display: none;
        }
}      