:root {
    --purple: #38e7f9;
    --purple-transparent: #252e4828;
    --gray: #F3F5F6;
    --radius: 6px;
    --radius-xl: 12px;
    --radius-2xl: 30px;
}

body {
    background-color: #FFFFFF;
}

/* Defaults */
a { transition: .3s; }
a:hover { color: var(--purple) !important; transition: .3s; text-decoration: none !important; }
/* / Defaults */

/* Utilities */
.text-purple { color: var(--purple) !important; }
.bg-purple { background-color: var(--purple) !important; }
.bg-purple-transparent { background-color: var(--purple-transparent) !important; }

.text-gray { color: var(--gray) !important; }
.bg-gray { background-color: var(--gray) !important; }

.bg-dark-darker { background: #302839 !important; }
.bg-dark-light { background: #fff !important; }

.border-b { border-bottom: 1px solid !important; }
.border-purple { border: 1px solid !important; border-color: var(--purple) !important; }

.btn {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-radius: var(--radius) !important;
    transition: .3s !important;
}
.btn:hover { transition: .3s !important; }
.btn.bg-purple:hover {
    color: var(--purple) !important;
    background: white !important;
    border: 1px solid var(--purple) !important;
}
.big-btn {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.w-fit { width: fit-content !important; }

.pt-0 { padding-top: 0px !important; }
.pb-0 { padding-bottom: 0px !important; }
.pl-0 { padding-left: 0px !important; }
.pr-0 { padding-right: 0px !important; }

.rounded { border-radius: var(--radius) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-35px { border-radius: 35px !important; }
.rounded-pill { border-radius: 50% !important; }
.rounded-t-l { border-top-left-radius: var(--radius) !important; }
.rounded-b-l { border-bottom-left-radius: var(--radius) !important; }
.rounded-t-r { border-top-right-radius: var(--radius) !important; }
.rounded-b-r { border-bottom-right-radius: var(--radius) !important; }
.rounded-t-l-xl { border-top-left-radius: var(--radius-xl) !important; }
.rounded-b-l-xl { border-bottom-left-radius: var(--radius-xl) !important; }
.rounded-t-r-xl { border-top-right-radius: var(--radius-xl) !important; }
.rounded-b-r-xl { border-bottom-right-radius: var(--radius-xl) !important; }
.rounded-t-l-2xl { border-top-left-radius: var(--radius-2xl) !important; }
.rounded-b-l-xl { border-bottom-left-radius: var(--radius-2xl) !important; }
.rounded-t-r-2xl { border-top-right-radius: var(--radius-2xl) !important; }
.rounded-b-r-2xl { border-bottom-right-radius: var(--radius-2xl) !important; }

.border-gray { border: 1px solid var(--gray) !important; }
.border-purple-on-hover:hover { border: 1px solid var(--purple) !important; }

.transition-3 { transition: .3s; }
.transition-3:hover { transition: .3s; }

.low-opacity-on-hover { transition: .3s; }
.low-opacity-on-hover:hover { opacity: .8; transition: .3s; }
.opacity-3 { opacity: .3 !important; }

.big-title { font-size: 50px !important; }
.text-45px { font-size: 45px !important; }
.long-height-text { line-height: 30px !important; }
.short-height-text { line-height: 55px !important; }

.font-weight-500 { font-weight: 500 !important; }
.font-weight-lighter { font-weight: lighter !important; }

img { transition: .3s; }
img:hover { opacity: .9; transition: .3s; }

.icon-h { height: 24px !important; }
.icon-h-xl { height: 40px !important; }
.icon-h-2xl { height: 60px !important }

.d-none-on-desktop {
    display: none !important;
}

.border-on-hover:hover {
    border: 1px solid var(--purple) !important;
}
    /* Responsiveness  */
@media screen and (max-width: 768px) {
    .d-none-on-mobile {
        display: none !important;
    }

    .d-block-on-mobile {
        display: block !important;
    }

    .pl-0-on-mobile {
        padding-left: 0 !important;
    }

    .p-0-on-mobile {
        padding: 0 !important;
    }

    .px-3-on-mobile {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-4-on-mobile {
        padding-left: 1.5rem!important;
        padding-right: 1.5rem!important;
    }

    .text-38px-on-mobile {
        font-size: 38px !important;
    }

    .text-14px-on-mobile {
        font-size: 14px !important;
    }
    
    .line-height-44px-on-mobile {
        line-height: 44px !important;
    }
    
    .line-height-66px-on-mobile {
        line-height: 66px !important;
    }
    
    .line-height-53px-on-mobile {
        line-height: 53px !important;
    }

    .mb-28px-on-mobile {
        margin-bottom: 28px !important;
    }

    .mb-40px-on-mobile {
        margin-bottom: 40px !important;
    }

    .m-0-on-mobile {
        margin: 0px !important;
    }

    .gap-b-on-mobile div, .gap-b-on-mobile .btn {
        margin-bottom: 10px;
    }

    .w-100-on-mobile {
        width: 100% !important;
    }

    .feature-details-card .d-flex .icon-holder .icon {
        height: 27px !important;
        margin-top: 20px;
    }

    #hero .container {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}
    /* / Responsiveness  */
/* / Utilities */

/* Navbar */
#navbar {
    backdrop-filter: blur(10px) !important;
    background: rgba(255, 255, 255, 0.541);
}
.logo {
    height: 30px;
}
/* / Navbar */

/* Hero */
#hero .container {
    border-radius: 40px !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 140px;
    padding-bottom: 140px;
    padding-left: 50px !important;
}
#hero .section-title {
    font-size: 65px !important;
    font-weight: 600 !important;
}
/* / Hero */

/* All in one */
.all-in-one-section-icon { height: 150px; }
/* / All in one */

/* Ride with us */
.feature-details-card {
    padding-top: 13.2px;
    padding-bottom: 13.2px;
    border: 1px solid var(--gray);
    transition: .3s;
}
.feature-details-card:hover {
    border: 1px solid var(--purple);
    transition: .3s;
}
.feature-details-card p {
    font-size: 20px;
    font-weight: normal !important;
}
.feature-details-card .d-flex .icon-holder {
    width: 10%;
}
.feature-details-card .d-flex .icon-holder .icon {
    height: 40px;
}
.feature-details-card .d-flex .text-holder {
    padding-left: 12px;
}
.feature-details-card .d-flex p {
    margin: 0 !important;
}
.feature-details-card .d-flex .title {
    font-size: 19px;
    padding-top: 5px;
}
.feature-details-card .d-flex .description {
    font-size: 15px;
}
/* / Ride with us */

/* Get started */
#get-started-section-details .content {
    margin-top: -50px !important;
}
/* / Get started */