@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@800&display=swap');

* {
    box-sizing: border-box;
}

.container {
    max-width: 1130px;
}

a {text-decoration: none;}

.nav-link {color: #000;}

h1,h2 {
    font-family: "Rubik", sans-serif;
}

h1 {font-size: 50px;}

#header {
    background-image: url('/assets/image/rental.jpg');
    background-size: cover;
    background-attachment: fixed;
}

#header .layer1 {
    padding: 5em 0px;
    color: #FFF;
    background: rgba(0,0,0, .8);
}
#header .layer1 p.lead {font-size: 30px;}

#ourFleet #fleets {gap: 15px;}

#GoContactUs {
    background-image: url('/assets/image/in_car.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #FFF;
}

#GoContactUs h2 {
    font-size: 55px;
}

@media(min-width: 550px) {
    #ourFleet #fleets {grid-template-columns: repeat(2, 1fr);}
}

@media(min-width: 1080px) {
    #header .layer1 {padding: 9em 0px;}
    #header .layer p.lead {font-size: 40px;}

    #ourFleet #fleets {grid-template-columns: repeat(3, 1fr);}

    h1 {font-size: 80px;}
    h2 {font-size: 40px;}
}

.btn.btn-primary-color {
    color: #FFF;
    background: #25DFC6;
} .btn.btn-primary-color:hover {
    color: #FFF;
    background: #14C5AD;
}

.btn.btn-outline-primary-color {
    color: #25DFC6;
    border: 1px solid #25DFC6;
} .btn.btn-outline-primary-color:hover {
    color: #25DFC6;
    border: 1px solid #25DFC6;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: #ccc;
}

.progress-bar {
    height: 4px;
    background: #25DFC6;
    width: 0%;
}

#ourFleet {
    scroll-margin-top: 100px;
}

#contact, #aboutUs {
    scroll-margin-top: 87px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0px;
} .contact i.fa {font-size: 25px;color: #25DFC6;}

#whyUs #points .point {
    text-align: center;
    padding: 20px 0px;
    font-size: 20px;
    border-radius: 10px;
} #whyUs #points i.ti {
    width: 52px;
    height: 52px;
    display: flex;
    margin: 0px auto;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    #whyUsSection {gap: 15px;}
    #whyUsSection #points {order: 2;}
}

footer {
    background: #14C5AD;
    padding: 15px 0px;
}

.top-link {
    transition: all .25s ease-in-out;
    position: fixed;
    bottom: 0;
    right: 0;
    display: inline-flex;
    
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin: 0 16px 16px 0;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 35px;
    background: #25D366;
    color: #FFF;
} .top-link:hover {
    color: #FFF;
}