/*
------------------------------------
HEADER
------------------------------------
*/

.header {
    width: 100%;
    height: 850px;
    z-index: -1;
    background-image: url("../img/homepage/background-header-nobless-drive.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header-title {
    margin-top: -30px;
    width: 50%;
    float: right;
    padding-right: 90px;
}

.text-header-title h1{
    color: var(--lightblue);
    text-shadow: 0 10px 15px #000000;
    transform: translateY(-70px);
    animation: 1s slideDown forwards ease-out;
    opacity: 0;
}

.logo-primary-navbar-mobile{
    display: none;
}

@keyframes slideDown {
    0%  {   transform : translateY(-70px);
            opacity: 0;}
    100% {  transform : translateY(0);
            opacity: 1;}
}

.text-header-title h5{
    color: #ffffff;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(-70px);
    animation: 1s slideDown forwards ease-out;
    animation-delay : 0.5s;
}

.btns-header-title {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: left;
    margin-top: 24px;
}

.btn-details-services{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    width: 240px;
}

.img-btn-details-services {
    padding-right: 15px;
}

.btn-homepage-partners {
    color: var(--partneryellow);
    border-left: solid 3px var(--partneryellow);
    padding-left: 15px;
}

.btn-homepage-rides{
    color: var(--ridesyellow);
    border-left: solid 3px var(--ridesyellow);
    padding-left: 15px;
}

@media only screen and (max-width: 1240px) {
    .header {
        background-image: url("../img/homepage/background-1620-header-nobless-drive.png");
    }
    
    .header-title {
        margin-top: -70px;
        width: 55%;
        padding-right: 50px;
    }
}

@media only screen and (max-width: 1024px) {
    .header {
        background-image: url("../img/homepage/background-1000-header-nobless-drive.png");
    }
    .header-title {
        margin: 100px auto 0;
        width: 70%;
        float: none;
        padding-right: 0px;
        text-align: center;
        z-index: 0;
    }

    .logo-primary-navbar-mobile{
        display: block;
    }

    .logo-primary-navbar-mobile img{
        margin: 0 auto;
    }
    
    .text-header-title h1{
        padding-top: 50px;
    }
    
    .btns-header-title {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .header {
        margin-top: 0px;
        width: 100%;
        height: inherit;
        background-image: url("../img/homepage/background-1000-header-nobless-drive.png");
    }

    .header-title {
        margin: 0 auto;
        padding: 70px 0;
        width: 95%;
    }

    .text-header-title h1{
	    font-size: 5rem;
	    line-height: 5rem;
    }

    .logo-primary-navbar-mobile img{
        width: 150px;
    }

    .btns-header-title{
        margin-top: 50px;
    }
    
    .btn-details-services{
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        width: 100%;
    }

    .btn-details-services h6{
        font-weight: 600;
    }
    
    .img-btn-details-services {
        padding-right: 10px;
        width: 60px;
    }
    
    .btn-homepage-partners,
    .btn-homepage-rides{
        padding-left: 10px;
        width: 100px;
        text-align: left;
    }
}

/*
------------------------------------
APPLICATIONS FORMS
------------------------------------
*/

.application-forms{
    margin-top: -90px;
}

.application-forms-content{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.form-partner-service-content{
    width: 600px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: linear-gradient(160deg, var(--partneryellow) 50%, var(--darkyellow) 100%);
    border-radius: 25px;
    padding: 60px 45px;
    box-shadow: 0px 10px 20px #828282;
}

.form-ride-service-content{
    width: 600px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: linear-gradient(160deg, var(--ridesyellow) 50%, var(--darkyellow) 100%);
    border-radius: 25px;
    padding: 60px 45px;
    box-shadow: 0px 10px 20px #828282;
}

.text-form-partner-service,
.text-form-ride-service{
    width: 350px;
}

.text-form-partner-service h4,
.text-form-ride-service h4{
    font-family: var(--pharagraph-font-family);
    font-size: var(--pharagraph-medium);
    color: var(--fontcolor);
    font-weight: 400;
}

.text-form-partner-service h2{
    font-size: 5rem;
    color: var(--lightblue);
    font-weight: 400;
    line-height: 5rem;
    padding-bottom: 10px;
}

.text-form-ride-service h2{
    font-size: 5rem;
    color: var(--blue);
    font-weight: 400;
    line-height: 5rem;
    padding-bottom: 10px;
}

.text-form-partner-service .container-btn,
.text-form-ride-service .container-btn {
    margin: 50px 0 20px;
}


@media only screen and (max-width: 1240px) {
    .application-forms-content{
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }  

    .form-partner-service-content{
        width: 48%;
        display: inline-flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
    }

    .form-ride-service-content{
        width: 48%;
        display: inline-flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
    }

    .text-form-partner-service,
    .text-form-ride-service{
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .application-forms{
        margin-top: -50px;
    }
}

@media only screen and (max-width: 768px) {
    .application-forms{
        margin-top: 0px;
    }

    .application-forms .container{
        width: 100%;
    }
    
    .form-partner-service-content,
    .form-ride-service-content {
        width: 100%;
        border-radius: 0px;
        padding: 100px 45px;
        box-shadow: 0px 0px 0px #828282;
    }
    
    .text-form-partner-service,
    .text-form-ride-service{
        width: 90%;
    }
}

/*
------------------------------------
ABOUT US
------------------------------------
*/

.about-us-content{
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 150px 0;
}

.img-about-us{
    margin-right: 130px;
}

.text-about-us{
    width: 530px;
}

.text-about-us h2{
    color: var(--blue);
    line-height: 5rem;
    padding-bottom: 20px;
}

.text-about-us .container-btn,
.text-about-us .container-btn {
    margin: 50px 0 20px;
}

@media only screen and (max-width: 1024px) {
    .about-us-content{
        width: 100%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 150px auto;
    }
    
    .img-about-us{
        margin-right: 0px;
    }

    .img-about-us img{
        text-align: center;
    }
    
    .text-about-us{
        width: 80%;
        margin: 50px auto 0;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .img-about-us img{
    width: 150px;
    }

    .text-about-us h2{
        font-size: 5rem;
        line-height: 5rem;
    }
}

/*
------------------------------------
FEHICLES FLEET
------------------------------------
*/

.vehicles-fleet {
    background-color: var(--lightblue);
    padding: 150px 0;
}

.vehicles-fleet .container {
	max-width: 80% !important;
	margin: 0 auto;
}

.vehicles-fleet-content {
    text-align: center;
}

.title-vehicles-fleet {
    width: 620px;
    margin: 0 auto;
}

.title-vehicles-fleet h2,
.title-vehicles-fleet p {
    color: #ffffff;
}

.title-vehicles-fleet h5 {
    color: var(--ridesyellow);
    padding-bottom: 24px;
}

.components-vehicles-fleet {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img-vehicle-fleet{
    transform: translateY(-70px);
    animation: 1s slideDown forwards ease-out;
    opacity: 0;
}

.vehicle-fleet {
    text-align: center;
    color: #ffffff;
}

.vehicle-fleet h4{
    font-family: var(--headlines-font-family);
	font-size: var(--pharagraph-medium);
    font-weight: 400;
}

.vehicle-fleet h6{
    line-height: 1rem;
}

.vehicle-options-fleet {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 9px;
}

.vehicle-options-fleet img{
    margin: 5px;
}

@media only screen and (max-width: 1240px) {
    
}

@media only screen and (max-width: 1024px) {
   
}

@media only screen and (max-width: 768px) {
    .title-vehicles-fleet{
        text-align: left;
    }

    .title-vehicles-fleet h2{
        font-size: 5rem;
        line-height: 5rem;
        margin-bottom: 10px;
    }

    .vehicles-fleet .container {
        max-width: 100% !important;
    }
    
    .vehicles-fleet-content {
        text-align: center;
    }
    
    .title-vehicles-fleet {
        width: 80%;
        margin: 0 auto 50px;
    }
    
    .components-vehicles-fleet {
        width: 100%;
    }

    .vehicle-fleet h4{
        line-height: 2.5rem;
        margin-bottom: 10px;
    }
    
    .vehicle-fleet {
        width: 48%;
    }

    .vehicle-options-fleet img{
        width: 16px;
    }
}

/*
------------------------------------
BENEFITS
------------------------------------
*/

.benefits-content{
    padding: 150px 0;
}

.title-benefits{
    width: 640px;
    margin: 0 auto 50px;
    text-align: center;
}

.title-benefits h5{
    color: var(--ridesyellow);
    padding-bottom: 24px;
}

.categories-benefits{
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.categorie-benefits{
    width: 23%;
    border-radius: 24px;
    padding: 60px 40px;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px #828282;
}

.categorie-benefits h4{
    font-size: var(--pharagraph-medium);
    font-weight: 400;
    color: var(--lightblue);
    line-height: 3rem;
    padding: 20px 0;
}

.img-categorie-benefits img{
    margin: 0 auto;
}

@media only screen and (max-width: 1240px) {
    
}

@media only screen and (max-width: 1024px) {
   
}

@media only screen and (max-width: 768px) {
    .title-benefits{
        text-align: left;
        width: 80%;
        margin: 0 auto 50px;
    }

    .title-benefits h2{
        font-size: 5rem;
        line-height: 5rem;
    }
    
    .categorie-benefits{
        width: 100%;
        margin: 0 auto;
        border-radius: 0px;
        padding: 30px 40px;
        background-color: transparent;
        box-shadow: 0px 0px 0px #828282;
        text-align: left;
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/*
------------------------------------
MOTTO
------------------------------------
*/

.motto {
    width: 100%;
    height: 1000px;
    z-index: -1;
    background-image: url("../img/general/background-motto-nobless-drive.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: -300px;
}

.motto-content {
    padding-top: 350px;
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.img-logo-motto img{
    margin: 0 auto;
}

@media only screen and (max-width: 1240px) {
    
}

@media only screen and (max-width: 1024px) {
   
}

@media only screen and (max-width: 768px) {
    .motto-content {
        width: 80%;
    }

    .motto-content h2{
        font-size: 5rem;
        line-height: 5rem;
    }
    
    .img-logo-motto img{
        margin: 0 auto 50px;
    }

    .motto {
        margin-top: -400px;
        height: 1200px;
    }
}

@media only screen and (max-width: 480px) {
    
}

/*
------------------------------------
PARTNER
------------------------------------
*/

.partner-section{
    margin: -150px 0 50px;
}

.partner-section-content{
    width: 100%;
    height: 680px;
    background-image: url(../img/homepage/background-partners-services-nobless-drive.png);
    border-radius: 24px;
    box-shadow: 0px 10px 20px #828282;
    padding: 100px;
}

.text-partner-section{
    float: right;
    width: 500px;
    margin-top: 50px;
}

.title-partner-section{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.title-partner-section h2{
    font-family: var(--headlines-font-family);
    font-size: 4rem;
    line-height: 4rem;
    color: var(--lightblue);
    padding-left: 20px;
}

.btns-partners-sections{
    display: inline-flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.btns-partners-sections .container-btn{
    margin-right: 20px;
}

@media only screen and (max-width: 1240px) {
    
}

@media only screen and (max-width: 1024px) {
   
}

@media only screen and (max-width: 768px) {
    .partner-section .container{
        width: 100%;
    }

    .partner-section{
        margin: -150px 0 0;
    }
    
    .partner-section-content{
        width: 100%;
        height: 800px;
        background-image: url(../img/homepage/background-partners-services-mobile-nobless-drive.png);
        border-radius: 0px;
        box-shadow: 0px 0px 0px #828282;
        padding: 100px 0;
    }
    
    .text-partner-section{
        float: none;
        width: 80%;
        margin: 0 auto;
    }
    
    .title-partner-section{
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .title-partner-section h2{
        padding: 0 0 30px 0;
    }

    .btns-partners-sections{
        display: inline-flex;
        flex-direction: column;
    }
    
    .btns-partners-sections .container-btn{
        margin-right: 0px;
    }

    .empty-mobile-button{
        margin-top: 50px;
    }
    
}

@media only screen and (max-width: 480px) {
    
}

/*
------------------------------------
RIDESHERINGA
------------------------------------
*/

.rideshering-section{
    margin: 50px 0;
}

.rideshering-section-content{
    width: 100%;
    height: 680px;
    background-image: url(../img/homepage/background-rides-services-nobless-drive.png);
    border-radius: 24px;
    box-shadow: 0px 10px 20px #828282;
    padding: 100px;
}

.text-rideshering-section{
    float: left;
    width: 500px;
    margin-top: 30px;
}

.title-rideshering-section{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.title-rideshering-section h2{
    font-family: var(--headlines-font-family);
    font-size: 4rem;
    line-height: 4rem;
    color: var(--blue);
    padding-left: 20px;
}

.btns-rideshering-sections{
    display: inline-flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.btns-rideshering-sections .container-btn{
    margin-right: 20px;
}

@media only screen and (max-width: 1240px) {
    
}

@media only screen and (max-width: 1024px) {
   
}

@media only screen and (max-width: 768px) {
    .rideshering-section{
        margin: 0;
    }

    .rideshering-section .container{
        width: 100%;
    }
    
    .rideshering-section-content{
        width: 100%;
        height: 800px;
        background-image: url(../img/homepage/background-rides-services-mobile-nobless-drive.png);
        border-radius: 0px;
        box-shadow: 0px 0px 0px #828282;
        padding: 100px 0;
    }
    
    .text-rideshering-section{
        float: none;
        width: 80%;
        margin: 0 auto;
    }
    
    .title-rideshering-section{
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .title-rideshering-section h2{
        padding: 0 0 30px 0;
    }

    .btns-rideshering-sections{
        display: inline-flex;
        flex-direction: column;
    }
    
    .btns-rideshering-sections .container-btn{
        margin-right: 0px;
    }

    .empty-mobile-button{
        margin-top: 50px;
    }
}

@media only screen and (max-width: 480px) {
    
}

/*
------------------------------------
LOGOS
------------------------------------
*/

.vehicles-logo-section{
    padding: 50px 0;
}

.vehicles-logo-content {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media only screen and (max-width: 1240px) {
    
}

@media only screen and (max-width: 1024px) {
   
}

@media only screen and (max-width: 768px) {
    .logo-vehicle img{
        width: 100px;
        margin: 0 10px;
    }

    .vehicles-logo-content {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    
}