/* Estilo para Landing page */

h1,
h2,
h3,
p,
a,
li,
button {
    font-family: "Poppins", sans-serif;
}

body {
    background-color: white;
}

#portada {
    background-image: url(../images/landing/portada.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 620px;
    background-position-x: center;
}

.collapse:not(.show) {
    display: none;
    background: transparent;
}

.navbar-brand {
    background-image: url(../images/brand/logo-moreto-white.svg);
    padding: 4rem;
    font-size: 0px;
    height: 80px;
    width: 200px;
    background-position: left;
    background-repeat: no-repeat;
}

.navbar .navbar-brand {
    position: relative;
    height: 50px;
    line-height: 30px;
    color: inherit;
    padding: 30px 15px;
    margin: 1rem 0px;
}

.nav-link:hover {
    border-bottom: 3px solid #7f78d3;
}

.header-text {
    width: 45%;
    margin-top: 9rem;
}

.header-text h1 {
    font-size: 2.5rem;
}

.nav-mobile {
    display: none;
}

.nav-mobile i {
    color: white;
}
.nav-mobile:hover i {
    color: #7f78d3;
}

.landing-section {
    padding-top: 5rem;
    padding-bottom: 7rem;
}

.landing-section h3 {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #b3b3b3;
}
#carouselExampleControls {
    position: relative;
}

.experiencies {
    width: 230px;
    height: 95px;
    position: absolute;
    top: 80%;
    right: 0;
    z-index: 1;
    transform: translateX(25px);
}

#brands {
    padding: 4rem 0px 5rem 0px;
    background-color: ghostwhite;
}

#brands h2 span {
    text-transform: none;
}

#brands img {
    filter: grayscale(100%);
}

#brands img:hover {
    filter: grayscale(0%);
}

#services {
    padding: 6rem 0px;
    background-image: url(../images/landing/bg-services.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

#services h3 {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b3b3b3;
}

#services .flip-card h3 {
    letter-spacing: 0em !important;
    font-size: 0.9rem;
    color: rgb(24, 24, 24);
    font-weight: 600;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 320px;
    perspective: 1000px;
    padding-bottom: 1.5rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 1rem;
}

.flip-card-front {
    background-color: rgb(247, 247, 247);
    color: black;
    width: 100%;
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
}

#policy h3 {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    /* color: white; */
}

.policy-text {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
    padding-left: 3rem;
}

.policy-img {
    background-image: url(../images/landing/truck.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.policy-text-2 {
    background-image: url(../images/landing/bg-policy.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.policy-text-2 p {
    font-size: 1rem;
    font-weight: bolder;
    color: #504b8c;
    width: 90%;
    margin: 0 auto;
}

#contact {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.text-form {
    padding: 2rem 1.5rem;
}

#contact .text-form h3 {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

#contact form p {
    font-size: 0.8rem;
    color: #b3b3b3;
    padding-top: 0.5rem;
}

#footer-bg {
    background-image: url(../images/landing/logo-bg.png);
    background-position: right;
    background-repeat: no-repeat;
}

#footer-bg h6 {
    border-bottom: #726da7 4px solid;
    padding-bottom: 0.5rem;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .header-text {
        width: 55%;
    }
}

@media screen and (max-width: 991px) {
    .header-text {
        width: 75%;
    }
    .nav-mobile {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .about-text.col-lg-6.offset-lg-1.align-self-center {
        margin-top: 3rem;
    }

    .experiencies {
        transform: translateX(0px);
    }

    .policy-img {
        height: 370px;
        background-image: url(../images/landing/truck-mobile.png);
    }

    .policy-text {
        padding: 5.5rem 2.5rem 4rem 2.5rem;
        width: 80%;
        margin: 0 auto;
    }

    .policy-text-2 p {
        width: 85%;
        margin: 0 auto;
    }

    #footer-bg h6 {
        margin-top: 1.5rem;
    }

    #footer-bg h6:last-of-type {
        width: 160px !important;
    }
}

@media screen and (max-width: 767px) {
    .header-text {
        width: 100%;
    }

    .header-text h1 {
        text-align: center;
    }

    .header-text div {
        margin: 0px auto;
        text-align: center;
    }

    .about-text p {
        width: 100% !important;
    }

    .landing-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .policy-text {
        padding: 5.5rem 1rem 4rem 1rem;
        width: 90%;
        margin: 0 auto;
    }

    #footer-bg h6 {
        border-bottom: transparent 0px solid;
        padding-bottom: 0rem;
    }
}

@media screen and (max-width: 600px) {
    .experiencies {
        display: none;
    }
}

@media screen and (max-width: 516px) {
    .header-text h1 {
        font-size: 1.8rem;
    }
}
button.btn.btn-success.change-status {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

#qrModal .modal-dialog {
    width: auto;
    margin: 1.75rem auto;
}

#qrModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}

#qrModal .modal-content {
    height: 90%;
}