/* GOOGLE FONTS - LEXEND */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* GOOGLE FONTS - MONTSERRAT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

:root{
    --font1: 'Lexend', sans-serif;
    --font2: 'Montserrat', sans-serif; 
    --color1: #9AFF02;
    --color2: #EB9486;
    --color3: #2E4052;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: var(--font1);
    font-size: 15px;
    width: 100%;
    overflow-x: hidden;
}

img{
    width: 100%;
}

a{
    text-decoration: none;
    color: inherit;
}


/* NAVBAR */
nav.navbar{
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 5px 0px;
    transition: top 0.3s;
}

nav#navigator{
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    box-shadow: none;
    transition: 0.3s;
}

nav.navbar .truenav{
    width: 100%;
    height: auto;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

nav.navbar .truenav .start{
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

nav.navbar .truenav .start .logo{
    width: 85px;
}

#logoB{
    display: none;
}

nav.navbar .truenav .start .navlinks{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

nav.navbar .truenav .start .navlink{
    width: fit-content;
    height: auto;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: capitalize;
}

nav.navbar .truenav .start .navlink:hover{
    background-color: #000;
    color: #fff;
}

nav.navbar .truenav .start .active{
    background-color: #eee;
    color: #000;
}

nav.navbar .truenav .start .active:hover{
    background-color: #eee;
    color: #000;
}

nav.navbar .truenav .end{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.cta-btn{
    width: max-content;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: bold;
    background-color: var(--color1);
    color: #000;
    transition: .3s;
}

.cta-btn.big{
    font-size: 1.25em;
}

.cta-btn .icon{
    margin-top: 2px;
}

.cta-btn:hover{
    gap: 10px;
    background-color: #000;
    color: #fff;
}

.cta-btn.alt:hover{
    background-color: #fff;
    color: #000;
}

.dropdown {
    position: relative;
}
  
.dropdown .dropbtn{
    cursor: pointer;
    width: fit-content;
    height: auto;
    padding: 5px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: var(--font1);
    font-size: 1em;
    font-weight: 500;
    text-transform: capitalize;
    background-color: transparent;
    color: inherit;
}

.dropdown .dropbtn .dropicon{
    display: inline-block;
    margin-top: 2px;
    font-size: .8em;
}

.dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: #000;
    color: #fff;
}

.dropdown-content {
    z-index: 1;
    position: absolute;
    top: 100%;
    transform: translate(0%,0%);
    min-width: 180px;
    border-top: 20px solid transparent;
    border-radius: 10px;
    display: none;
}

.dropdown-content .inside{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
}

.dropdown-content a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
}

.dropdown-content a .icon{
    font-size: .8em;
    color: #555;
}

.dropdown-content a:hover {
    background-color: #eee;
}

.dropdown:hover .dropdown-content{
    display: block;
}

nav.navbar .truenav .menubtn {
    width: 20px;
    height: auto;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menubtn .line {
    width: 100%;
    height: 3px;
    margin-bottom: 3px;
    background-color: black;
    transition: transform 0.3s ease;
}

nav.main-b .line{
    background-color: #fff;
}

nav.main-p .line{
    background-color: #fff;
}

.menubtn .line:nth-child(2) {
    transform-origin: center;
}

.menubtn.open .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menubtn.open .line:nth-child(2) { 
    transform: scaleX(0);
}

.menubtn.open .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE MENU */
nav .menudrop {
    z-index: 999;
    width: 100%;
    height: 0; /* Set initial height to 0 */
    max-height: 0;
    overflow: hidden; /* Add overflow: hidden */
    padding: 0 20px;
    margin-top: -1px;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: capitalize;
    background-color: #fff;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

nav .menudrop .collapsible{
    width: 100%;
}

nav .menudrop .collapsible .icon{
    font-size: .8em;
}

nav .menudrop .collapsed{
    padding: 0px 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

nav .menudrop .collapsed .dropped{
    padding: 5px 0;
}

nav .menudrop .menu-link{
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

nav .menudrop.view {
    height: auto;
    max-height: 1000px;
    padding-top: 20px;
    padding-bottom: 40px;
}


/* HERO */
.hero{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    padding: 10px 10px;
    padding-top: 90px;
    background-color: #fff;
}

.hero .inside{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('assets/img/hero1.jpg');
}

.hero .inside::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgba(0,0,0,.7) 35%, rgba(0,0,0,0) 100%);
}

.hero .inside .content{
    position: absolute;
    bottom: 7%;
    left: 40px;
    width: 45%;
    color: #fff;
}

.hero .inside .content .header{
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 5px solid var(--color1);
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 700;
}

.hero .inside .content .header .start{
    font-size: 1.5em;
    font-weight: 500;
    text-transform: capitalize;
}

.tg{
    color: var(--color1);
}

.hero .inside .content .actions{
    width: fit-content;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.actions{
    width: fit-content;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.actions.alt{
    width: fit-content;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}


/* SERVICES */
.services{
    position: relative;
    width: 100%;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    background-color: #fff;
}

.services .top{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.services .top .header{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.services .top .header .start{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 600;
}

.ta{
    color: var(--color3);
}

.services .top .header .end{
    font-size: 1em;
}

.services .cubes{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.services .cubes .cube{
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services .cubes .cube::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0,0,0,.8) 20%, rgba(0,0,0,.3) 100%);
}

.services .cubes .cube.one{
    background-image: url('assets/img/rider.jpg');
}

.services .cubes .cube.two{
    background-image: url('assets/img/drive.jpg');
    background-position: right center;
}

.services .cubes .cube.three{
    background-image: url('assets/img/deliver.jpg');
}

.services .cubes .cube .top{
    z-index: 1;
    width: 100%;
}

.services .cubes .cube .top .tag{
    width: fit-content;
    padding: 7px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: #fff;
}

.services .cubes .cube .head{
    position: relative;
    font-size: 1.35em;
    font-weight: 600;
    color: var(--color1);
}


/* SEGMENT */
.segment{
    width: 100%;
    height: auto;
    padding: 80px 50px;
    padding-bottom: 120px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 100px;
    background-color: #fafafa;
}

.segment .why{
    width: 100%;
    padding: 30px 100px;
    border-radius: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: space-between;
    background-color: #eaeaea;
}

.why .image{
    width: 30%;
}

.why .image img{
    width: 100%;
}

.why .content{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.why .content .top .header .start{
    font-size: 2em;
    font-weight: 300;
}

.why .content .top .header .end{
    font-size: 1.25em;
    font-weight: 600;
    color: var(--color3);
}

.why .content .list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.why .content .list .item{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.why .content .list .item .numb{
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    margin-top: 3px;
    padding-bottom: 1px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    background-color: #000;
    color: var(--color1);
}

.why .content .list .item .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.why .content .list .item .text .start{
    font-size: 1em;
    font-weight: 500;
}

.why .content .list .item .text .end{
    width: 85%;
    line-height: 125%;
    font-size: 1em;
    font-weight: 300;
}

.segment .split{
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.segment .split.alt{
    flex-direction: row-reverse;
}

.segment .split .left{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
}

.segment .split .left .top{
    font-family: var(--font2);
    font-size: 1.75em;
    font-weight: bold;
}

.segment .split .left p{
    font-size: 1em;
    line-height: 150%;
}

.segment .split .right{
    width: 45%;
    padding: 5px;
    border-radius: 15px;
    background-color: #eaeaea;
}

.segment .split .right img{
    border-radius: 10px;
}

.cta-link{
    width: fit-content;
    padding: 5px 0;
    padding-right: 5px;
    border-bottom: 2px solid #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: #555;
    transition: .3s ease;
}

.cta-link .icon{
    margin-top: 2px;
}

.cta-link:hover{
    gap: 10px;
    color: #000;
}

.specialbg{
    position: relative;
    display: inline-block;
    margin-left: 5px;
    color: var(--color1);
}

.specialbg::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-10deg);
    width: 120%;
    height: 140%;
    border-radius: 3px;
    content: "";
    background-color: #000;
}

.specialbg .inner{
    position: relative;
}


/* DOWNLOAD */
.download{
    width: 100%;
    height: fit-content;
    padding: 80px 30px;
}

.download .inside{
    width: 100%;
    height: 85vh;
    padding: 30px 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.download .content{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.download .content .main{
    font-family: var(--font2);
    font-size: 2.25em;
    font-weight: 600;
    color: #000;
}

.download .content p{
    font-size: 1.25em;
    color: var(--color3);
}

.download .images{
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.download .images .part{
    height: 100%;
}

.download .images img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* BLOG */
.blog{
    width: 100%;
    height: auto;
    padding: 0 50px;
    padding-bottom: 50px;
}

.blog .inside{
    width: 100%;
    padding: 50px 0;
    border-top: 1px solid var(--color3);
    /* border-bottom: 1px solid var(--color3); */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

.blog .top{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.blog .top .header{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 600;
}

.cta-link.doub{
    padding: 10px 20px;
    border: 1px solid #555;
    border-radius: 30px;
}

.blog .list{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.blog .list .box{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.blog .list .box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.blog .list .box .content{
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.blog .list .box .content .time{
    font-size: .9em;
    color: #555;
}

.blog .list .box .content .head{
    font-size: 1.5em;
    font-weight: 600;
    color: #222;
}

.blog .list .box .content p{
    font-size: .9em;
    color: #555;
}

.blog .list .box .content:hover .head{
    text-decoration: underline;
    color: #000;
}


/* FOOTER */
footer{
    width: 100%;
    padding: 125px 50px;
    padding-bottom: 30px;
    border-radius: 50px 50px 0 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

footer.nullborrad{
    border-radius: 0;
}

footer .footer-top{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

footer .footer-top .left{
    width: 12%;
}

footer .footer-top .right{
    width: 73%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

footer .footer-top .right .foot{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    text-transform: capitalize;
}

footer .footer-top .right .foot .head{
    padding-bottom: 10px;
    font-family: var(--font2);
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color3);
}

footer .footer-top .right .foot a:hover{
    text-decoration: underline var(--color3);
}

footer .footer-top .right .cta-btn{
    width: 100%;
}

footer .footer-top .right a.cta-btn:hover{
    text-decoration: none;
}

footer .footer-end{
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid var(--color3);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.social{
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.25em;
}

.social.col{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.social a.soci{
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
}

.social a.soci:hover{
    background-color: #ccc;
}

footer .footer-end .endlinks{
    font-size: .85em;
}



/* RIDER PAGE */
.influx{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    padding: 0;
    padding-top: 0px;
    background-color: #000;
}

.influx .inside{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('assets/img/rider.jpg');
}

.influx.drive .inside{
    background-image: url('assets/img/drive.jpg');
}

.influx .inside::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0,0,0,.8) 35%, rgba(0,0,0,0) 100%);
}

.influx .inside .content{
    position: static;
    z-index: 2;
    width: 100%;
    margin-top: 100px;
    color: #fff;
}

.influx .inside .content .header{
    width: 100%;
    padding: 0px;
    margin: 0px;
    border: none;
    font-family: var(--font2);
    font-size: 3em;
    font-weight: 500;
}

.influx .inside .content .header .iconic{
    width: 120px;
}


.base{
    width: 100%;
    padding: 50px 125px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
}

.base .block{
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--color3);
}

.base .block .icon{
    width: 90px;
    height: 90px;
}

.base .block .writeup{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.base .block .writeup .head{
    font-size: 1.25em;
    font-weight: bold;
    color: #fff;
}

.base .block .writeup p{
    font-size: .9em;
    font-weight: 300;
    color: #eee;
}


.complex{
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.complex.drive{
    flex-direction: row-reverse;
}

.complex .comps{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.complex.drive .comps{
    width: 55%;
}

.complex .comps .top{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.complex .comps .top .header{
    font-size: 1.75em;
    font-weight: 600;
    color: #000;
}

.complex .comps .top .emphasis{
    font-size: 1em;
    color: #555;
}

.complex .comps .line{
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.complex .comps .line .icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.complex .comps .line .writeup{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.complex .comps .line .head{
    width: 100%;
    font-size: 1.1em;
    font-weight: 700;
    color: #000;
}

.complex .comps .line p{
    font-weight: 300;
}

.complex .group{
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.complex.drive .group{
    width: 40%;
    justify-content: center;
    gap: 15px;
}

.complex .group img{
    width: 32%;
    height: 100%;
    object-fit: contain;
}

.complex.drive .group img{
    width: 48%;
}

.complex .actions{
    margin-top: 20px;
}


.offers{
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    background-color: var(--color3);
}

.offers .top{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.offers .top .heading{
    width: max-content;
    font-size: 1.75em;
    font-weight: 600;
    color: #fff;
}

.offers .top .subheading{
    width: 60%;
    font-size: 1.15em;
    font-weight: 300;
    color: #eee;
}

.offers .group{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.offers .block{
    position: relative;
    width: 23%;
    height: 230px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #bbb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #f7fcf6;
}

.offers .block .name{
    font-family: var(--font2);
    font-size: 1.25em;
    font-weight: 600;
    color: #000;
}

.offers .block .icon{
    position: absolute;
    top: 40px;
    right: 20px;
    height: 100px;
}

.offers .block .icon img{
    width: auto;
    height: 100%;
    object-fit: contain;
}

.offers .block .text{
    font-size: 1em;
    font-weight: 300;
}

.offers .block.black{
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, .5);
}


.payment{
    width: 100%;
    height: auto;
    padding: 100px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.payment .image{
    width: 40%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment .content{
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.payment .content .top{
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--color3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.payment .content .top .header{
    font-family: var(--font2);
    font-size: 1.5em;
    font-weight: bold;
}

.payment .content .top .subheader{
    font-weight: 300;
}

.payment .content .pay-opts{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.payment .content .pay-opts .pay{
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--color3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.payment .content .pay-opts .pay .icon{
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
}

.payment .content .pay-opts .pay .writeup{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.payment .content .pay-opts .pay .writeup .head{
    font-size: 1.15em;
    font-weight: 500;
    columns: var(--color3);
}

.payment .content .pay-opts .pay .writeup p{
    font-weight: 300;
}


.faq{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px;
}

.faq .inside{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.faq .top{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.faq .top .header{
    width: 80%;
    font-size: 2em;
    font-weight: 900;
    text-transform: uppercase;
}

.faq .top .header .spec{
    color: var(--color2);
}

.faq .quest-list{
    width: 60%;
}

.collapsible {
    cursor: pointer;
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 1em;
    font-weight: bold;
    text-align: left;
    background-color: #fff;
}
  
.collapsible:hover {
    background-color: #f5f5f5;
}
  
.collapsible:after {
    content: '\002B';
    float: right;
    margin-left: 5px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color2);
}
  
.collapsible.active:after {
    content: "\2212";
}
  
.collapsed{
    padding: 0 20px;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
}

.collapsed p{
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(235, 148, 134, .1);
}


.help{
    position: relative;
    width: 100%;
    padding: 80px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background-color: #000;
    color: #fff;
}

.help .start{
    width: auto;
    min-width: fit-content;
    height: 100%;
}

.help .start .screens{
    position: relative;
    width: 100%;
    margin-top: -200px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
}

.help .start .screens .screen1{
    width: 280px;

}

.help .start .screens .screen2{
    width: 250px;
    margin-left: -100px;
}

.actions.spec .cta-btn{
    width: 100%;
}

.help .start .actions.spec .cta-btn{
    width: 70%;
    margin: auto;
}

.help .content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.help .content .top{
    width: 100%;
}

.help .content .heading{
    font-size: 1.75em;
    color: var(--color1);
}

.help .content .sub-heading{
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 300;
}

.help .content .contact-lines{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.help .content .contact-lines .line{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.help .content .contact-lines .line .icon{
    width: 30px;
    margin-right: 10px;
}

.help .content .contact-lines .line .text{
    color: var(--color1);
}

.help .content .social{
    width: 100%;
    margin-top: 10px;
    justify-content: flex-end;
}

.help .social .soci{
    font-size: 1.35em;
    background-color: rgba(154, 255, 2, .1);
    transition: .3s;
}

.help .content .social .soci:hover{
    background-color: var(--color1);
    color: #000;
}


/* DRIVERS PAGE */
.module{
    width: 100%;
    height: auto;
    overflow-x: hidden;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    background-color: #fafafa;
}

.module .header{
    font-size: 1.75em;
    font-weight: 600;
}

.rolls{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    list-style-type: none;
}

.rolls .roll{
    width: 100%;
}

.rolls .roll b{
    text-decoration: underline;
}


.deliver{
    width: 100%;
    height: auto;
    padding: 50px;
}

.deliver .inner{
    width: 100%;
    height: auto;
    padding: 70px 50px;
    border: 1px solid #aaa;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #fff;
}

.deliver .inner .main{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.deliver .inner .main .top{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.deliver .inner .top .heading{
    font-size: 2.25em;
    font-weight: 600;
}

.deliver .inner .top .sub-heading{
    font-size: 1.35em;
}

.deliver .inner .image{
    width: 150px;
}

.deliver .inner .listing{
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 15px;
}

.deliver .inner .listing li{
    width: 100%;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1.1em;
    background-color: #ddd;
}


.earn{
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
}

.earn .image{
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.earn .content{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.earn .top .heading{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 400;
}

.earn .top .sub-heading{
    font-size: 1em;
    font-weight: 500;
    color: var(--color3);
}


/* ABOUT PAGE */
.intro{
    position: relative;
    width: 100%;
    height: 90vh;
    padding: 85px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color3);
    background-image: url(assets/img/about-image.jpg);
    background-repeat: no-repeat;
    background-size: 73.5%;
    background-position: right top;
}

.intro::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgb(0, 0, 0, .6);
}

.intro .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.intro .content .caption{
    font-size: 1.75em;
    font-weight: 600;
    color: var(--color1);
}

.intro .content .header{
    font-family: var(--font2);
    font-size: 3em;
    font-weight: 800;
    color: #fff;
}

.intro .content .header .tg{
    color: var(--color1);
}

.about{
    width: 100%;
    height: auto;
    padding: 50px;
    padding-top: 80px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #fff;
}

.about .main-header{
    width: 40%;
    height: auto;
    font-family: var(--font2);
    font-size: 2.75em;
    font-weight: 500;
}

.about .main-header .tg{
    font-weight: bold;
    color: var(--color1);
}

.about p{
    width: 50%;
    font-size: 1.15em;
    line-height: 175%;
    color: #1e1e1e;
}

.assist{
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
}

.assist .block{
    width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background-color: #fff;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.assist .block .head{
    font-size: 1.25em;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
}

.assist .block .head .icon{
    color: var(--color1);
}

.assist .block p{
    font-size: 1em;
    line-height: 120%;
    color: #333;
}

.render{
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.render .top{
    width: 100%;
}

.render .top .header{
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color3);
    font-family: var(--font2);
    font-size: 1.5em;
    font-weight: bold;
}

.render .lumps{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.render .lumps .lump{
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.render .lumps .lump::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0,0,0,.8) 20%, rgba(0,0,0,.3) 100%);
}

.render .lumps .lump.one{
    background-image: url('assets/img/rider.jpg');
}

.render .lumps .lump.two{
    background-image: url('assets/img/drive.jpg');
    background-position: right center;
}

.render .lumps .lump.three{
    background-image: url('assets/img/deliver.jpg');
}

.render .lumps .lump .top{
    z-index: 1;
    width: 100%;
}

.render .lumps .lump .top .tag{
    width: fit-content;
    padding: 5px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 600;
    background-color: #fff;
}

.render .lumps .lump .par{
    position: relative;
    font-size: 1em;
    color: #fff;
}


/* SAFETY */
.safer{
    position: relative;
    width: 100%;
    height: 65vh;
    padding: 50px;
    padding-top: 100px;
    background-color: var(--color3);
}

.safer .safer-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.safer .safer-content .start{
    width: 40%;
}

.safer .safer-content .header{
    font-family: var(--font2);
    font-size: 2.5em;
    font-weight: 600;
    color: #fff;
}

.safer .safer-content .caption{
    font-size: 1.3em;
    text-transform: capitalize;
    color: var(--color1);
}

.safer .safer-content .emphasis{
    width: 45%;
    font-size: 1.2em;
    line-height: 150%;
    color: #ddd;
}

.safer .icon{
    position: absolute;
    bottom: 30px;
    left: 50px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: var(--color3);
    display: none;
}

.implem{
    width: 100%;
    padding: 50px 80px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.implem .top{
    width: 100%;
    font-size: 1.35em;
    font-weight: 600;
}

.implem .top .icon{
    margin-left: 10px;
}

.implem .list{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.imp{
    width: 50%;
    height: auto;
    padding: 30px 0px;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.imp .icon{
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color3);
}

.imp .icon img{
    width: 70%;
}

.imp .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.imp .text .head{
    font-weight: bold;
}

.imp .text .emp{
    width: 80%;
    font-size: .9em;
}

.guides{
    width: 100%;
    height: auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.guides .top{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.guides .top .main-header{
    width: 100%;
    font-size: 2em;
    font-weight: bold;
}

.guides .top .header{
    font-size: 1.3em;
}

.guides .top p{
    width: 75%;
    display: none;
}

.guides .blocks{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.guides .blocks .block{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.guides .blocks .block .head{
    width: 100%;
    padding: 10px 20px;
    font-family: var(--font2);
    font-weight: 600;
    background-color: #ccc;
}

.guides .blocks .block .listing{
    padding: 20px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.guides .blocks .block .listing .tip{
    font-weight: 500;
}

.guides .blocks .block .listing p{
    font-size: .9em;
    color: #333;
}

.community{
    width: 100%;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.community .top{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.community .top .caption{
    width: max-content;
    padding: 7px 15px;
    border-radius: 20px;
    font-weight: 600;
    background-color: var(--color2);
    color: #fff;
}

.community .top .header{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 500;
}

.community .listing{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;
}

.community .listing .unit{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.community .listing .unit .icon{
    width: 80px;
}

.community .listing .unit .head{
    font-size: 1.2em;
    font-weight: 500;
}


/* HELP PAGE */
.welcome{
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #000;
}

.welcome .content{
    z-index: 2;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.welcome .content .header{
    width: fit-content;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--color1);
}

.welcome .content .searchbar{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.welcome .content .searchbar input[type=search]{
    width: 100%;
    padding: 16px 50px;
    border: none;
    border-radius: 50px;
    background-image: url('assets/icons/search.png');
    background-repeat: no-repeat;
    background-size: 1.7em;
    background-position: 15px center;
    color: #000;
}

.welcome .content .searchbar input[type=search]::placeholder{
    font-weight: bold;
}

.welcome .screens{
    z-index: 1;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 25%;
    right: 0px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: .5;
}

.welcome .screens img{
    width: auto;
    height: 100%;
    margin-left: -70px;
}

.choice{
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    padding: 50px;
    padding-bottom: 150px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
}

.choice .area{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.choice .area .header{
    font-size: 1.35em;
    font-weight: bold;
}

.choice .area .block{
    width: 85%;
    height: auto;
    padding: 20px;
    border: 1px solid var(--color3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.choice .area .block .head{
    margin-bottom: 10px;
    font-weight: bold;
    text-decoration: underline;
}

.choice .area .block a{
    width: 100%;
    font-size: .9em;
}

.choice .area .block a .icon{
    color: var(--color1);
}

.choice .area .block a:hover{
    font-weight: bold;
    color: var(--color3);
}

.choice .inquiry{
    width: 50%;
    height: auto;
    padding: 40px;
    margin-top: -120px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.25);
}

.choice .inquiry .header{
    font-size: 1.35em;
    font-weight: bold;
}

.choice .inquiry .emphasis{
    width: 100%;
    margin-bottom: 30px;
    font-size: .85em;
}

.input-tab{
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.input-tab label{
    width: 100%;
    margin-bottom: 5px;
    font-size: .8em;
    font-weight: bold;
}

.input-tab input{
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid var(--color2);
    background-color: #fafafa;
}

.input-tab textarea{
    width: 100%;
    height: 100px;
    resize: none;
    padding: 10px;
    border: none;
    border-bottom: 2px solid var(--color2);
    background-color: #fafafa;
}

.choice .inquiry button[type=submit]{
    cursor: pointer;
    width: fit-content;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    text-transform: capitalize;
    background-color: var(--color2);
    color: #000;
}

.choice .inquiry button[type=submit]:hover{
    background-color: #000;
    color: var(--color2);
    transition: .3s;
}



/* BLOG */
.blog-head{
    width: 100%;
    height: 50vh;
    padding: 50px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    background-color: #fff;
}

.blog-head .content{
    width: 40%;
}

.blog-head .content .header{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: bold;
}

.blog-head .content .subheader{
    font-size: 1.1em;
    color: #555;
}

.blog-head .subscribe{
    position: relative;
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.blog-head .subscribe input[type=email]{
    width: 100%;
    height: 50px;
    padding: 10px 30px;
    border: 1px solid var(--color3);
    border-radius: 50px;
}

.blog-head .subscribe button[type=submit]{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    width: fit-content;
    height: 50px;
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--color3);
    color: #fff;
}

.blog-list .inside{
    width: 100%;
    padding: 0 50px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.blog-list .top{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.blog-list .top .header{
    font-family: var(--font2);
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color3);
}

.blog-list .top .sort{
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: .9em;
}

.blog-list .top .sort p{
    color: #555;
}

.blog-list .top .sort select{
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #555;
}

.blog-list .list{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 2%;
}

.blog-list .list .box{
    width: 49%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.blog-list .list .box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-list .list .box .content{
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.blog-list .list .box .content .time{
    font-size: .9em;
    color: #555;
}

.blog-list .list .box .content .head{
    font-size: 1.5em;
    font-weight: 600;
    color: #222;
}

.blog-list .list .box .content p{
    color: #333;
}

.blog-list .list .box .content:hover .head{
    text-decoration: underline;
    color: #000;
}



/* BLOG PAGE */
.blog-start{
    width: 100%;
    height: auto;
    padding: 50px;
    padding-top: 120px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

.blog-start .topping{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

.breadcrumb{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-transform: lowercase;
}

.breadcrumb a{
    color: #555;
}

.breadcrumb .icon{
    font-size: 0.8em;
    color: #777;
}

.blog-start .main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.blog-start .main .content{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-start .main .content .date{
    padding: 5px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    color: var(--color3);
}

.blog-start .main .content .header{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-start .main .content p{
    font-size: 1.1em;
    color: #333;
}

.blog-start .main .image{
    width: 80%;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compose{
    width: 100%;
    padding: 0 50px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.written{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.written p{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    font-size: 1.15em;
    line-height: 135%;
    color: #333;
}



/* PRIVACY POLICY */
.crest{
    position: sticky;
    z-index: 3;
    top: 0;
    width: 100%;
    height: auto;
    padding: 30px 80px;
    padding-top: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color3);
}

.crest .start{
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.crest .breadcrumb a, .crest .breadcrumb .icon{
    color: #aaa;
}

.crest .header{
    font-family: var(--font2);
    font-size: 2em;
    font-weight: 500;
    color: #fff;
}

.segments{
    width: 100%;
    height: auto;
    padding: 0px 80px;
    padding-top: 30px;
    background-color: #f5f5f5;
}

.segments .inside{
    width: 100%;
    padding: 50px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    background-color: #fff;
}

.segments .section{
    width: 100%;
    height: auto;
}

.segments .section .head{
    margin-bottom: 5px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: capitalize;
}

.segments .section .content{
    font-size: 1.1em;
}

.segments .section .listing{
    width: 100%;
    list-style-type: circle;
}

.segments .section .listing li{
    margin-bottom: 10px;
    font-size: 1.1em;
}

.segments .section .spec{
    font-weight: bold;
    text-decoration: underline;color: var(--color3);
}

.segments .section .lister{
    width: 100%;
    padding-left: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    list-style-type: decimal;
}

.segments .section .lister .main{
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: underline;
}

.segments .section .lister ul{
    padding-left: 20px;
}


/* FAQ PAGE */
.pagetop{
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    padding: 20px 50px;
    padding-top: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background-color: var(--color3);
}

.pagetop .header{
    font-family: var(--font2);
    font-size: 1.5em;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.pagetop .faq-nav{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    display: none;
}

.pagetop .faq-nav .link{
    width: fit-content;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    color: #eee;
    transition: .3s;
}

.pagetop .faq-nav .link:hover{
    background-color: #eee;
    color: #555;
}

.faqlist{
    width: 100%;
    padding: 80px;
    padding-top: 180px;
    background-color: #f5f5f5;
}

.faqlist .inside{
    width: 100%;
    padding: 50px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    background-color: #fff;
}


.faqlist .block{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.faqlist .block .head{
    width: fit-content;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--color3);
    font-size: 1.25em;
    font-weight: 600;
    text-transform: capitalize;
}

.faqlist .quest-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 1%;
}

.faqlist .quest-list .unit{
    width: 49.5%;
    padding: 15px;
    border: 1px solid #aaa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.faqlist .quest-list .question {
    cursor: pointer;
    width: 100%;
    font-weight: 500;
}

.faqlist .quest-list .answer{
    color: #555;
}


.pollist{
    width: 100%;
    padding: 80px;
    padding-top: 180px;
    background-color: #f5f5f5;
}

.pollist .inside{
    width: 100%;
    padding: 50px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    background-color: #fff;
}

.pollist .max{
    width: 100%;
    padding: 15px;
    padding-right: 30px;
    border: 1px solid #aaa;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: .3s;
}

.pollist .max .start{
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.pollist .max .start .icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #000;
}

.pollist .max .start .head{
    font-size: 1.2em;
}

.pollist .max:hover{
    background-color: #555;
    color: #fff;
    font-weight: bold;
}

.pollist .max:hover .icon{
    border-color: #fff;
    color: #fff;
}



/* RESPONSIVE (700PX) */
@media screen and (max-width: 700px){
    /* NAVBAR */
    nav.navbar{
        z-index: 999;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 0 20px;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 5px 0px;
        transition: top 0.3s;
    }

    nav#navigator{
        z-index: 999;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 0 20px;
        background-color: transparent;
        color: #fff;
        box-shadow: none;
        transition: 0.3s;
    }

    nav.navbar .truenav{
        width: 100%;
        height: auto;
        padding: 20px 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav.navbar .truenav .start{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    nav.navbar .truenav .start .logo{
        width: 85px;
    }

    #logoB{
        display: none;
    }

    nav.navbar .truenav .start .navlinks{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        display: none;
    }

    nav.navbar .truenav .start .navlink{
        width: fit-content;
        height: auto;
        padding: 5px 15px;
        border-radius: 20px;
        text-transform: capitalize;
    }

    nav.navbar .truenav .start .navlink:hover{
        background-color: #000;
        color: #fff;
    }

    nav.navbar .truenav .start .active{
        background-color: #eee;
        color: #000;
    }

    nav.navbar .truenav .start .active:hover{
        background-color: #eee;
        color: #000;
    }

    nav.navbar .truenav .end{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
    }

    .cta-btn{
        width: max-content;
        padding: 10px 25px;
        border-radius: 25px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-weight: bold;
        background-color: var(--color1);
        color: #000;
        transition: .3s;
    }

    .cta-btn.big{
        font-size: 1.25em;
    }

    .cta-btn .icon{
        margin-top: 2px;
    }

    .cta-btn:hover{
        gap: 10px;
        background-color: #000;
        color: #fff;
    }

    .cta-btn.alt:hover{
        background-color: #fff;
        color: #000;
    }

    .dropdown {
        position: relative;
    }
    
    .dropdown .dropbtn{
        cursor: pointer;
        width: fit-content;
        height: auto;
        padding: 5px 15px;
        border-radius: 20px;
        border: none;
        outline: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-family: var(--font1);
        font-size: 1em;
        font-weight: 500;
        text-transform: capitalize;
        background-color: transparent;
        color: inherit;
    }

    .dropdown .dropbtn .dropicon{
        display: inline-block;
        margin-top: 2px;
        font-size: .8em;
    }

    .dropdown:hover .dropbtn, .dropbtn:focus {
        background-color: #000;
        color: #fff;
    }

    .dropdown-content {
        z-index: 1;
        position: absolute;
        top: 100%;
        transform: translate(0%,0%);
        min-width: 180px;
        border-top: 20px solid transparent;
        border-radius: 10px;
        display: none;
    }

    .dropdown-content .inside{
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
    }

    .dropdown-content a {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        color: #000;
    }

    .dropdown-content a .icon{
        font-size: .8em;
        color: #555;
    }

    .dropdown-content a:hover {
        background-color: #eee;
    }

    .dropdown:hover .dropdown-content{
        display: block;
    }

    nav.navbar .truenav .menubtn {
        width: 20px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .menubtn .line {
        width: 100%;
        height: 3px;
        margin-bottom: 3px;
        background-color: black;
        transition: transform 0.3s ease;
    }

    .line#menuA{
        background-color: #fff;
    }

    .line#menuB{
        background-color: #fff;
    }

    .line#menuC{
        background-color: #fff;
    }

    .menubtn .line:nth-child(2) {
        transform-origin: center;
    }

    .menubtn.open .line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menubtn.open .line:nth-child(2) { 
        transform: scaleX(0);
    }

    .menubtn.open .line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* MOBILE MENU */
    nav .menudrop {
        z-index: 999;
        width: 100%;
        height: 0; /* Set initial height to 0 */
        max-height: 0;
        overflow: hidden; /* Add overflow: hidden */
        padding: 0 10px;
        margin-top: -1px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0px;
        text-transform: capitalize;
        background-color: #fff;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    nav .menudrop .droplink{
        width: 100%;
        padding: 15px;
        border-bottom: 1px dashed rgba(0,0,0,0.1);
        color: #000;
    }

    nav .menudrop .droplink:last-child{
        border: none;
    }

    nav .menudrop.view{
        height: auto;
        max-height: 1000px;
        padding-top: 20px;
        padding-bottom: 40px;
    }


    /* HERO */
    .hero{
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
        padding: 10px 10px;
        padding-top: 90px;
        background-color: #fff;
    }

    .hero .inside{
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 10px;
        background-color: #fff;
        background-position: right;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('assets/img/hero1.jpg');
    }

    .hero .inside::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: rgb(255,255,255);
        background: linear-gradient(45deg, rgba(0,0,0,.7) 35%, rgba(0,0,0,0) 100%);
    }

    .hero .inside .content{
        position: absolute;
        bottom: 7%;
        left: 25px;
        right: 25px;
        width: auto;
        color: #fff;
    }

    .hero .inside .content .header{
        width: 100%;
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-bottom: none;
        font-family: var(--font2);
        font-size: 1.75em;
        font-weight: 700;
    }

    .hero .inside .content .header .start{
        font-size: 1.35em;
        font-weight: 500;
        text-transform: capitalize;
    }

    .tg{
        color: var(--color1);
    }

    .hero .inside .content p{
        display: none;
    }

    .hero .inside .content .actions{
        width: fit-content;
        margin-top: 25px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .actions{
        width: fit-content;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .actions.alt{
        width: fit-content;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
    }


    /* SERVICES */
    .services{
        position: relative;
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
        background-color: #fff;
    }

    .services .top{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .services .top .header{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .services .top .header .start{
        font-family: var(--font2);
        font-size: 1.5em;
        font-weight: 600;
    }

    .ta{
        color: var(--color3);
    }

    .services .top .header .end{
        font-size: 1em;
        display: none;
    }

    .services .cubes{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .services .cubes .cube{
        position: relative;
        width: 100%;
        height: 30vh;
        border-radius: 20px;
        overflow: hidden;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        background-color: #fff;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .services .cubes .cube::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: linear-gradient(0deg, rgba(0,0,0,.8) 20%, rgba(0,0,0,.3) 100%);
    }

    .services .cubes .cube.one{
        background-image: url('assets/img/rider.jpg');
    }

    .services .cubes .cube.two{
        background-image: url('assets/img/drive.jpg');
        background-position: right center;
    }

    .services .cubes .cube.three{
        background-image: url('assets/img/deliver.jpg');
    }

    .services .cubes .cube .top{
        z-index: 1;
        width: 100%;
    }

    .services .cubes .cube .top .tag{
        width: fit-content;
        padding: 7px 20px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background-color: #fff;
    }

    .services .cubes .cube .head{
        position: relative;
        font-size: 1.35em;
        font-weight: 600;
        color: var(--color1);
    }


    /* SEGMENT */
    .segment{
        width: 100%;
        height: auto;
        padding: 40px 20px;
        padding-bottom: 60px;
        border-radius: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 75px;
        background-color: #fafafa;
    }

    .segment .why{
        width: 100%;
        padding: 30px 20px;
        border-radius: 15px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        background-color: #eaeaea;
    }

    .why .image{
        width: 65%;
    }

    .why .image img{
        width: 100%;
    }

    .why .content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .why .content .top .header .start{
        width: 100%;
        font-size: 1.6em;
        font-weight: 400;
        text-align: center;
    }

    .why .content .top .header .end{
        width: 100%;
        font-size: 1.1em;
        font-weight: 600;
        text-align: center;
        color: var(--color3);
    }

    .why .content .list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .why .content .list .item{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .why .content .list .item .numb{
        width: 25px;
        height: 25px;
        min-width: 25px;
        min-height: 25px;
        margin-top: 3px;
        padding-bottom: 1px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8em;
        background-color: #000;
        color: var(--color1);
    }

    .why .content .list .item .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .why .content .list .item .text .start{
        font-size: 1em;
        font-weight: 500;
    }

    .why .content .list .item .text .end{
        width: 100%;
        line-height: 125%;
        font-size: 1em;
        font-weight: 300;
    }

    .segment .split{
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
    }

    .segment .split.alt{
        flex-direction: column-reverse;
    }

    .segment .split .left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .segment .split .left .top{
        font-family: var(--font2);
        font-size: 1.4em;
        font-weight: bold;
    }

    .segment .split .left p{
        font-size: 1em;
        line-height: 150%;
    }

    .segment .split .right{
        width: 100%;
        padding: 5px;
        border-radius: 15px;
        background-color: #eaeaea;
    }

    .segment .split .right img{
        border-radius: 10px;
    }

    .cta-link{
        width: fit-content;
        padding: 5px 0;
        padding-right: 5px;
        border-bottom: 2px solid #000;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        color: #555;
        transition: .3s ease;
    }

    .cta-link .icon{
        margin-top: 2px;
    }

    .cta-link:hover{
        gap: 10px;
        color: #000;
    }

    .specialbg{
        position: relative;
        display: inline-block;
        margin-left: 5px;
        color: var(--color1);
    }

    .specialbg::before{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) rotate(-10deg);
        width: 120%;
        height: 140%;
        border-radius: 3px;
        content: "";
        background-color: #000;
    }

    .specialbg .inner{
        position: relative;
    }


    /* DOWNLOAD */
    .download{
        width: 100%;
        height: fit-content;
        padding: 50px 20px;
    }

    .download .inside{
        width: 100%;
        height: auto;
        padding: 30px 20px;
        border-radius: 20px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        gap: 50px;
    }

    .download .content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .download .content .main{
        font-family: var(--font2);
        font-size: 1.5em;
        font-weight: 600;
        color: #000;
    }

    .download .content p{
        font-size: 1em;
        text-align: center;
        color: var(--color3);
    }

    .download .images{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .download .images .part{
        height: 100%;
    }

    .download .images img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    /* BLOG */
    .blog{
        width: 100%;
        height: auto;
        padding: 20px;
        padding-bottom: 30px;
    }

    .blog .inside{
        width: 100%;
        padding: 30px 0;
        border-top: 1px solid var(--color3);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .blog .top{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .blog .top .header{
        font-family: var(--font2);
        font-size: 1.3em;
        font-weight: 600;
    }

    .cta-link.doub{
        height: auto;
        padding: 5px 15px;
        border: 1px solid #555;
        border-radius: 30px;
    }

    .blog .list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
    }

    .blog .list .box{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .blog .list .box img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
    }

    .blog .list .box .content{
        width: 100%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .blog .list .box .content .time{
        font-size: .9em;
        color: #555;
    }

    .blog .list .box .content .head{
        font-size: 1.25em;
        font-weight: 600;
        color: #222;
    }

    .blog .list .box .content p{
        font-size: .9em;
        color: #555;
    }

    .blog .list .box .content:hover .head{
        text-decoration: underline;
        color: #000;
    }


    /* FOOTER */
    footer{
        width: 100%;
        padding: 80px 20px;
        padding-bottom: 20px;
        border-radius: 30px 30px 0 0;
        background-color: #f5f5f5;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 50px;
    }

    footer.nullborrad{
        border-radius: 0;
    }

    footer .footer-top{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    footer .footer-top .left{
        width: 120px;
    }

    footer .footer-top .right{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px 0px;
    }

    footer .footer-top .right .foot{
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        text-transform: capitalize;
    }

    footer .footer-top .right .foot:last-child{
        order: 1;
    }

    footer .footer-top .right .foot .head{
        padding-bottom: 0px;
        font-family: var(--font2);
        font-size: 1.1em;
        font-weight: bold;
        color: var(--color3);
    }

    footer .footer-top .right .foot a:hover{
        text-decoration: underline var(--color3);
    }

    footer .footer-top .right .cta-btn{
        width: 100%;
    }

    footer .footer-top .right a.cta-btn:hover{
        text-decoration: none;
    }

    footer .footer-end{
        width: 100%;
        padding-top: 30px;
        border-top: 1px solid var(--color3);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .social{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 1.1em;
    }

    .social.col{
        width: fit-content;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .social a.soci{
        width: fit-content;
        padding: 5px;
        border-radius: 5px;
    }

    .social a.soci:hover{
        background-color: #ccc;
    }

    footer .footer-end .endlinks{
        font-size: .85em;
    }



    /* RIDER PAGE */
    .influx{
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
        padding: 0;
        padding-top: 0px;
        background-color: #000;
    }

    .influx .inside{
        position: relative;
        width: 100%;
        height: 100%;
        padding: 50px 20px;
        overflow: hidden;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        background-color: #fff;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('assets/img/rider.jpg');
    }

    .influx.drive .inside{
        background-image: url('assets/img/drive.jpg');
    }

    .influx .inside::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: linear-gradient(90deg, rgba(0,0,0,.8) 35%, rgba(0,0,0,0) 100%);
    }

    .influx .inside .content{
        position: static;
        z-index: 2;
        width: 100%;
        margin-top: 100px;
        color: #fff;
    }

    .influx .inside .content .header{
        width: 100%;
        padding: 0px;
        margin: 0px;
        border: none;
        font-family: var(--font2);
        font-size: 2em;
        font-weight: 500;
    }

    .influx .inside .content .header .iconic{
        width: 80px;
    }


    .base{
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .base .block{
        width: 100%;
        padding: 30px 50px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: var(--color3);
    }

    .base .block .icon{
        width: 70px;
        height: 70px;
    }

    .base .block .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .base .block .writeup .head{
        font-size: 1.25em;
        font-weight: bold;
        color: #fff;
    }

    .base .block .writeup p{
        font-size: .9em;
        font-weight: 300;
        color: #eee;
    }


    .complex{
        width: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: space-between;
        gap: 50px;
        background-color: #fff;
    }

    .complex.drive{
        flex-direction: column-reverse;
    }

    .complex .comps{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .complex.drive .comps{
        width: 100%;
    }

    .complex .comps .top{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .complex .comps .top .header{
        font-size: 1.5em;
        font-weight: 600;
        color: #000;
    }

    .complex .comps .top .emphasis{
        font-size: .9em;
        color: #555;
    }

    .complex .comps .line{
        width: 95%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
    }

    .complex .comps .line .icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        display: none;
    }

    .complex .comps .line .writeup{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .complex .comps .line .head{
        width: 100%;
        font-size: 1.1em;
        font-weight: 700;
        color: #000;
    }

    .complex .comps .line p{
        font-weight: 300;
    }

    .complex .group{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
    }

    .complex.drive .group{
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .complex .group img{
        width: 31%;
        height: 100%;
        object-fit: contain;
    }

    .complex.drive .group img{
        width: 48%;
    }

    .complex .actions{
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }


    .offers{
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 50px;
        background-color: var(--color3);
    }

    .offers .top{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .offers .top .heading{
        width: max-content;
        font-size: 1.5em;
        font-weight: 600;
        color: #fff;
    }

    .offers .top .subheading{
        width: 100%;
        font-size: 1em;
        font-weight: 300;
        color: #eee;
    }

    .offers .group{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 0px;
    }

    .offers .block{
        position: relative;
        width: 49%;
        height: 230px;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #bbb;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #f7fcf6;
    }

    .offers .block .name{
        font-family: var(--font2);
        font-size: 1.25em;
        font-weight: 600;
        color: #000;
    }

    .offers .block .icon{
        position: static;
        height: 70px;
    }

    .offers .block .icon img{
        width: auto;
        height: 100%;
        object-fit: contain;
    }

    .offers .block .text{
        font-size: 1em;
        font-weight: 300;
    }

    .offers .block.black{
        box-shadow: 0 0 2px 1px rgba(0, 0, 0, .5);
    }


    .payment{
        width: 100%;
        height: auto;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        background-color: #fff;
    }

    .payment .image{
        width: 100%;
        height: 350px;
        overflow: hidden;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .payment .content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .payment .content .top{
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px dashed var(--color3);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .payment .content .top .header{
        font-family: var(--font2);
        font-size: 1.5em;
        font-weight: bold;
    }

    .payment .content .top .subheader{
        font-weight: 300;
    }

    .payment .content .pay-opts{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .payment .content .pay-opts .pay{
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px dashed var(--color3);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .payment .content .pay-opts .pay .icon{
        width: 50px;
        height: 50px;
        padding: 10px;
        border-radius: 50%;
    }

    .payment .content .pay-opts .pay .writeup{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .payment .content .pay-opts .pay .writeup .head{
        font-size: 1.15em;
        font-weight: 500;
        columns: var(--color3);
    }

    .payment .content .pay-opts .pay .writeup p{
        font-weight: 300;
    }


    .faq{
        position: relative;
        width: 100%;
        height: auto;
        padding: 50px 20px;
        padding-bottom: 150px;
    }

    .faq .inside{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
    }

    .faq .top{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0px;
    }

    .faq .top .header{
        width: 100%;
        font-size: 1.35em;
        font-weight: 700;
        text-transform: uppercase;
    }

    .faq .top .header .spec{
        color: var(--color2);
    }

    .faq .quest-list{
        width: 100%;
    }

    .collapsible {
        cursor: pointer;
        width: 100%;
        padding: 10px;
        border: none;
        font-size: 1em;
        font-weight: bold;
        text-align: left;
        background-color: #fff;
    }
    
    .collapsible:hover {
        background-color: #f5f5f5;
    }
    
    .collapsible:after {
        content: '\002B';
        float: right;
        margin-left: 5px;
        font-size: 1.5em;
        font-weight: bold;
        color: var(--color2);
    }
    
    .collapsible.active:after {
        content: "\2212";
    }
    
    .collapsed{
        padding: 0 20px;
        margin-bottom: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        background-color: transparent;
    }

    .collapsed p{
        padding: 15px;
        border-radius: 10px;
        background-color: rgb(235, 148, 134, .1);
    }


    .help{
        position: relative;
        width: 100%;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        background-color: #000;
        color: #fff;
    }

    .help .start{
        width: 100%;
        height: 100%;
    }

    .help .start .screens{
        position: relative;
        width: 100%;
        margin-top: -170px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .help .start .screens .screen1{
        width: 250px;
    }

    .help .start .screens .screen2{
        width: 225px;
        margin-left: -120px;
    }

    .help .content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .help .content .top{
        width: 100%;
    }

    .help .content .heading{
        font-size: 1.5em;
        color: var(--color1);
    }

    .help .content .sub-heading{
        width: 100%;
        margin-bottom: 15px;
        font-size: 1.1em;
        font-weight: 300;
    }

    .help .content .contact-lines{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
    }

    .help .content .contact-lines .line{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .help .content .contact-lines .line .icon{
        width: 30px;
        margin-right: 10px;
    }

    .help .content .contact-lines .line .text{
        color: var(--color1);
    }

    .help .social.col{
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .help .social .soci{
        font-size: 1.35em;
        background-color: rgba(154, 255, 2, .1);
        transition: .3s;
    }

    .help .content .social .soci:hover{
        background-color: var(--color1);
        color: #000;
    }


    /* DRIVERS PAGE */
    .module{
        width: 100%;
        height: auto;
        overflow-x: hidden;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        background-color: #fafafa;
    }

    .module .header{
        font-size: 1.75em;
        font-weight: 600;
    }

    .rolls{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        list-style-type: none;
    }

    .rolls .roll{
        width: 100%;
    }

    .rolls .roll b{
        text-decoration: underline;
    }


    .deliver{
        width: 100%;
        height: auto;
        padding: 50px 20px;
    }

    .deliver .inner{
        width: 100%;
        height: auto;
        padding: 20px;
        border: 1px solid #aaa;
        border-radius: 20px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        background-color: #fff;
    }

    .deliver .inner .main{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
    }

    .deliver .inner .main .top{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .deliver .inner .top .heading{
        font-size: 2em;
        font-weight: 600;
    }

    .deliver .inner .top .sub-heading{
        font-size: 1.1em;
    }

    .deliver .inner .image{
        width: 100px;
    }

    .deliver .inner .listing{
        width: 100%;
        list-style-type: none;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .deliver .inner .listing li{
        width: 100%;
        padding: 20px 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        font-size: 1em;
        background-color: #eee;
    }


    .earn{
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        background-color: #fafafa;
    }

    .earn .image{
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .earn .content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .earn .top .heading{
        font-family: var(--font2);
        font-size: 1.4em;
        font-weight: 600;
    }

    .earn .top .sub-heading{
        font-size: 1em;
        font-weight: 400;
        color: var(--color3);
    }


    /* ABOUT PAGE */
    .intro{
        position: relative;
        width: 100%;
        height: 100vh;
        padding: 50px 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        background-color: var(--color3);
        background-image: url(assets/img/about-image.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 55%;
    }

    .intro::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgb(0, 0, 0, .6);
    }

    .intro .content{
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .intro .content .caption{
        font-size: 1.75em;
        font-weight: 600;
        color: var(--color1);
    }

    .intro .content .header{
        font-family: var(--font2);
        font-size: 2.75em;
        font-weight: 800;
        color: #fff;
    }

    .intro .content .header .tg{
        color: var(--color1);
    }

    .about{
        width: 100%;
        height: auto;
        padding: 50px 20px;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        background-color: #fff;
    }

    .about .main-header{
        width: 100%;
        height: auto;
        font-family: var(--font2);
        font-size: 2em;
        font-weight: 500;
    }

    .about .main-header .tg{
        font-weight: bold;
        color: var(--color1);
    }

    .about p{
        width: 100%;
        font-size: 1em;
        line-height: 175%;
        color: #1e1e1e;
    }

    .assist{
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 30px;
    }

    .assist .block{
        width: 100%;
        height: auto;
        padding: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        background-color: #fff;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    }

    .assist .block .head{
        font-size: 1.25em;
        font-weight: 600;
        text-transform: capitalize;
        color: #000;
    }

    .assist .block .head .icon{
        color: var(--color1);
    }

    .assist .block p{
        font-size: 1em;
        line-height: 120%;
        color: #333;
    }

    .render{
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .render .top{
        width: 100%;
    }

    .render .top .header{
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--color3);
        font-family: var(--font2);
        font-size: 1.5em;
        font-weight: bold;
    }

    .render .lumps{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
    }

    .render .lumps .lump{
        position: relative;
        width: 100%;
        height: 230px;
        border-radius: 20px;
        overflow: hidden;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        background-color: #fff;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .render .lumps .lump::before{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: linear-gradient(0deg, rgba(0,0,0,.8) 20%, rgba(0,0,0,.3) 100%);
    }

    .render .lumps .lump.one{
        background-image: url('assets/img/rider.jpg');
    }

    .render .lumps .lump.two{
        background-image: url('assets/img/drive.jpg');
        background-position: right center;
    }

    .render .lumps .lump.three{
        background-image: url('assets/img/deliver.jpg');
    }

    .render .lumps .lump .top{
        z-index: 1;
        width: 100%;
    }

    .render .lumps .lump .top .tag{
        width: fit-content;
        padding: 5px 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2em;
        font-weight: 600;
        background-color: #fff;
    }

    .render .lumps .lump .par{
        position: relative;
        font-size: 1em;
        color: #fff;
    }


    /* SAFETY */
    .safer{
        position: relative;
        width: 100%;
        height: 60vh;
        padding: 50px 20px;
        padding-top: 100px;
        background-color: var(--color3);
    }

    .safer .safer-content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .safer .safer-content .start{
        width: 100%;
    }

    .safer .safer-content .header{
        font-family: var(--font2);
        font-size: 2em;
        font-weight: 600;
        color: #fff;
    }

    .safer .safer-content .caption{
        font-size: 1.3em;
        text-transform: capitalize;
        color: var(--color1);
    }

    .safer .safer-content .emphasis{
        width: 100%;
        font-size: 1.2em;
        line-height: 150%;
        color: #ddd;
    }

    .implem{
        width: 100%;
        padding: 50px 20px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .implem .top{
        width: 100%;
        font-size: 1.25em;
        font-weight: 600;
    }

    .implem .top .icon{
        margin-left: 10px;
    }

    .implem .list{
        width: 100%;
        height: auto;
        border-bottom: 1px solid #ccc;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .imp{
        width: 48.5%;
        height: auto;
        padding: 30px 0px;
        border-top: 1px solid #ccc;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .imp .icon{
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color3);
    }

    .imp .icon img{
        width: 70%;
    }

    .imp .text{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .imp .text .head{
        font-weight: bold;
    }

    .imp .text .emp{
        width: 100%;
        font-size: .9em;
    }

    .guides{
        width: 100%;
        height: auto;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .guides .top{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .guides .top .main-header{
        width: 100%;
        font-size: 2em;
        font-weight: bold;
    }

    .guides .top .header{
        font-size: 1.3em;
    }

    .guides .top p{
        width: 75%;
        display: none;
    }

    .guides .blocks{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 20px;
    }

    .guides .blocks .block{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 10px;
        overflow: hidden;
    }

    .guides .blocks .block .head{
        width: 100%;
        padding: 10px 20px;
        font-family: var(--font2);
        font-weight: 600;
        background-color: #ccc;
    }

    .guides .blocks .block .listing{
        padding: 20px;
        list-style-type: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .guides .blocks .block .listing .tip{
        font-weight: 500;
    }

    .guides .blocks .block .listing p{
        font-size: .9em;
        color: #333;
    }

    .community{
        width: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
    }

    .community .top{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .community .top .caption{
        width: max-content;
        padding: 7px 15px;
        border-radius: 20px;
        font-weight: 600;
        background-color: var(--color2);
        color: #fff;
    }

    .community .top .header{
        font-family: var(--font2);
        font-size: 1.75em;
        font-weight: 500;
    }

    .community .listing{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 50px 0;
    }

    .community .listing .unit{
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .community .listing .unit .icon{
        width: 50px;
    }

    .community .listing .unit .head{
        font-size: 1.2em;
        font-weight: 500;
    }


    /* HELP PAGE */
    .welcome{
        position: relative;
        width: 100%;
        height: 60vh;
        overflow: hidden;
        padding: 50px 20px;
        padding-top: 40%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #000;
    }

    .welcome .content{
        z-index: 2;
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
        color: #fff;
    }

    .welcome .content .header{
        width: fit-content;
        font-size: 2.5em;
        font-weight: bold;
        color: var(--color1);
    }

    .welcome .screens{
        z-index: 1;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        right: 0px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-end;
        opacity: .5;
    }

    .welcome .screens img{
        width: 45%;
        height: auto;
        margin-left: -70px;
    }

    .choice{
        position: relative;
        z-index: 1;
        width: 100%;
        height: auto;
        padding: 50px 20px;
        padding-bottom: 150px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: space-between;
        gap: 50px;
    }

    .choice .area{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .choice .area .header{
        font-size: 1.35em;
        font-weight: bold;
    }

    .choice .area .block{
        width: 85%;
        height: auto;
        padding: 20px;
        border: 1px solid var(--color3);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .choice .area .block .head{
        margin-bottom: 10px;
        font-weight: bold;
        text-decoration: underline;
    }

    .choice .area .block a{
        width: 100%;
        font-size: .9em;
    }

    .choice .area .block a .icon{
        color: var(--color1);
    }

    .choice .area .block a:hover{
        font-weight: bold;
        color: var(--color3);
    }

    .choice .inquiry{
        width: 100%;
        height: auto;
        padding: 40px;
        margin-top: -100px;
        border-radius: 15px;
        background-color: #fff;
        box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.25);
    }

    .choice .inquiry .header{
        font-size: 1.35em;
        font-weight: bold;
    }

    .choice .inquiry .emphasis{
        width: 100%;
        margin-bottom: 30px;
        font-size: .85em;
    }

    .input-tab{
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .input-tab label{
        width: 100%;
        margin-bottom: 5px;
        font-size: .8em;
        font-weight: bold;
    }

    .input-tab input{
        width: 100%;
        padding: 10px;
        border: none;
        border-bottom: 2px solid var(--color2);
        background-color: #fafafa;
    }

    .input-tab textarea{
        width: 100%;
        height: 100px;
        resize: none;
        padding: 10px;
        border: none;
        border-bottom: 2px solid var(--color2);
        background-color: #fafafa;
    }

    .choice .inquiry button[type=submit]{
        cursor: pointer;
        width: fit-content;
        padding: 10px 20px;
        border: none;
        border-radius: 20px;
        font-weight: bold;
        text-transform: capitalize;
        background-color: var(--color2);
        color: #000;
    }

    .choice .inquiry button[type=submit]:hover{
        background-color: #000;
        color: var(--color2);
        transition: .3s;
    }



    /* BLOG */
    .blog-head{
        width: 100%;
        height: 45vh;
        padding: 50px 20px;
        padding-top: 30%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        background-color: #fff;
    }

    .blog-head .content{
        width: 100%;
        text-align: center;
    }

    .blog-head .content .header{
        font-family: var(--font2);
        font-size: 2em;
        font-weight: bold;
    }

    .blog-head .content .subheader{
        font-size: 1.1em;
        color: #555;
    }

    .blog-head .subscribe{
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .blog-head .subscribe input[type=email]{
        width: 100%;
        height: 50px;
        padding: 10px 30px;
        border: 1px solid var(--color3);
        border-radius: 50px;
    }

    .blog-head .subscribe button[type=submit]{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        width: fit-content;
        height: 50px;
        padding: 10px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-transform: capitalize;
        background-color: var(--color3);
        color: #fff;
    }

    .blog-list .inside{
        width: 100%;
        padding: 0 20px;
        padding-bottom: 100px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .blog-list .top{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .blog-list .top .header{
        font-family: var(--font2);
        font-size: 1.35em;
        font-weight: bold;
        color: var(--color3);
    }

    .blog-list .top .sort{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        font-size: .9em;
    }

    .blog-list .top .sort p{
        color: #555;
    }

    .blog-list .top .sort select{
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        color: #555;
    }

    .blog-list .list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 50px;
    }

    .blog-list .list .box{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .blog-list .list .box img{
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 20px;
    }

    .blog-list .list .box .content{
        width: 100%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .blog-list .list .box .content .time{
        font-size: .9em;
        color: #555;
    }

    .blog-list .list .box .content .head{
        font-size: 1.5em;
        font-weight: 600;
        color: #222;
    }

    .blog-list .list .box .content p{
        color: #333;
    }

    .blog-list .list .box .content:hover .head{
        text-decoration: underline;
        color: #000;
    }



    /* BLOG PAGE */
    .blog-start{
        width: 100%;
        height: auto;
        padding: 50px 20px;
        padding-top: 100px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .blog-start .topping{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .breadcrumb{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        text-transform: lowercase;
    }

    .breadcrumb a{
        color: #555;
    }

    .breadcrumb .icon{
        font-size: 0.8em;
        color: #777;
    }

    .blog-start .main{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .blog-start .main .content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .blog-start .main .content .date{
        padding: 5px 15px;
        border: 1px solid #ccc;
        border-radius: 20px;
        color: var(--color3);
    }

    .blog-start .main .content .header{
        font-family: var(--font2);
        font-size: 2em;
        font-weight: 500;
        text-transform: capitalize;
    }

    .blog-start .main .content p{
        font-size: 1.1em;
        color: #333;
    }

    .blog-start .main .image{
        width: 100%;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .compose{
        width: 100%;
        padding: 0 20px;
        padding-bottom: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .written{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .written p{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        font-size: 1.15em;
        line-height: 135%;
        color: #333;
    }



    /* PRIVACY POLICY */
    .crest{
        position: sticky;
        z-index: 3;
        top: 0;
        width: 100%;
        height: auto;
        padding: 30px 20px;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        background-color: var(--color3);
    }

    .crest .start{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .crest .breadcrumb a, .crest .breadcrumb .icon{
        color: #fff;
    }

    .crest .header{
        font-family: var(--font2);
        font-size: 1.5em;
        font-weight: 500;
        color: #fff;
    }

    .crest .dating{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        font-size: .85em;
        font-weight: 600;
        text-transform: capitalize;
        color: #eee;
    }

    .segments{
        width: 100%;
        height: auto;
        padding: 0px 10px;
        padding-top: 10px;
        background-color: #f5f5f5;
    }

    .segments .inside{
        width: 100%;
        padding: 50px 30px;
        margin: auto;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 50px;
        background-color: #fff;
    }

    .segments .section{
        width: 100%;
        height: auto;
    }

    .segments .section .head{
        margin-bottom: 5px;
        font-size: 1.2em;
        font-weight: bold;
        text-transform: capitalize;
    }

    .segments .section .content{
        font-size: 1.1em;
    }

    .segments .section .listing{
        width: 100%;
        list-style-type: circle;
    }

    .segments .section .listing li{
        margin-bottom: 10px;
        font-size: 1.1em;
    }


    /* FAQ PAGE */
    .pagetop{
        position: fixed;
        top: 0;
        width: 100%;
        height: auto;
        padding: 30px 20px;
        padding-top: 120px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        background-color: var(--color3);
    }

    .pagetop .header{
        font-family: var(--font2);
        font-size: 1.5em;
        font-weight: 500;
        text-transform: capitalize;
        color: #fff;
    }

    .pagetop .faq-nav{
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        display: none;
    }

    .pagetop .faq-nav .link{
        width: fit-content;
        padding: 5px 15px;
        border-radius: 20px;
        border: 1px solid #ddd;
        color: #eee;
        transition: .3s;
    }

    .pagetop .faq-nav .link:hover{
        background-color: #eee;
        color: #555;
    }

    .faqlist{
        width: 100%;
        padding: 50px 20px;
        padding-top: 200px;
        background-color: #f5f5f5;
    }

    .faqlist .inside{
        width: 100%;
        padding: 30px 20px;
        margin: auto;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 50px;
        background-color: #fff;
    }


    .faqlist .block{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .faqlist .block .head{
        width: fit-content;
        padding-bottom: 3px;
        border-bottom: 2px solid var(--color3);
        font-size: 1.25em;
        font-weight: 600;
        text-transform: capitalize;
    }

    .faqlist .quest-list{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 1%;
    }

    .faqlist .quest-list .unit{
        width: 100%;
        padding: 15px;
        border: 1px solid #aaa;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .faqlist .quest-list .question {
        cursor: pointer;
        width: 100%;
        font-weight: 500;
    }

    .faqlist .quest-list .answer{
        color: #555;
    }

    .pollist{
        width: 100%;
        padding: 0px;
        padding-top: 180px;
        background-color: #f5f5f5;
    }
    
    .pollist .inside{
        width: 100%;
        padding: 20px;
        padding-top: 50px;
        margin: auto;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        background-color: #fff;
    }
    
    .pollist .max{
        width: 100%;
        padding: 15px;
        padding-right: 20px;
        border: 1px solid #aaa;
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        transition: .3s;
    }
    
    .pollist .max .start{
        width: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .pollist .max .start .icon{
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 1px solid #555;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9em;
        color: #000;
    }
    
    .pollist .max .start .head{
        font-size: 1em;
    }
    
    .pollist .max:hover{
        background-color: #555;
        color: #fff;
        font-weight: bold;
    }
    
    .pollist .max:hover .icon{
        border-color: #fff;
        color: #fff;
    }
}