@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: #f6f6f6;
    font-family: "Comfortaa", sans-serif;
}

:root {
    --main-color: #ff5e00;
    --body-padding: 5%;
    --default-text-color: grey;
}

.flex{display: flex;}.row{flex-direction: row;}.column{flex-direction: column;}.space-between{justify-content: space-between;}.align-center{align-items: center;}
a{text-decoration: none; color: var(--default-text-color);}.nowrap{flex-wrap: nowrap;}p{color: var(--default-text-color);}

.classButton {
    padding: 10px 20px;
    border: none;
    border-radius: 16px;
    background-color: #fff;
    font-size: 11pt;
    color: var(--main-color);
    cursor: pointer;
}

p {
    line-height: 20pt;
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.menus a {
    color: #fff;
    font-size: 11pt;
    margin-left: 50px;
}

nav {
    background-color: var(--main-color);
    padding-left: var(--body-padding);
    padding-right: var(--body-padding);
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.menuIcon {
    display: none;
}

.mobile-menus {
    display: none;
}

.logo-section img {
    width: 100px;
}

.playstore img, .appstore img {
    width: 25px;
}

#main-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.heroSection {
    padding: var(--body-padding);
    background-color: #fff;
}

.caption {
    width: 45%;
}

.caption h1 {
    width: 100%;
    font-size: 40pt;
    font-weight: bolder;
}

.colored {
    color: var(--main-color);
}

.playstore {
    border: 1px solid var(--main-color);
    padding: 15px 20px;
    text-align: left;
    margin-left: 20px;
}

.appstore {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    margin-left: 20px;
    padding: 15px 20px;
    text-align: left;
}

.web {
    text-align: left;
    background-color: var(--main-color);
    color: #fff;
    padding: 15px 20px;
}

.illustration {
    width: 50%;
    height: 550px;
}

.illustration .image {
    width: 100%;
    height: 100%;
    background-color: #000;
    background: url(images/hero-img.png);
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.vendor {
    padding: var(--body-padding);
    background-color: #fff;
    height: auto;
    width: 100%;
}

.vendor img {
    width: 100%;
}

.vendor h1, .rider h1 {
    font-size: 40pt;
}

.vendor div {
    height: auto;
}

.w-50 {
    width: 100%;
}

.illustration-v {
    width: 70%;
    height: 600px !important;
    background: url("images/vendor.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 120px;
    border: var(--main-color) 8px solid;
    margin-right: 40px;
    border-radius: 100px;
}

.sellers {
    width: 50%;
}

.sellersBox {
    display: flex;
    flex-direction: row !important;
}

.sellers .container {
    width: 100% !important;
    height: 70px !important;
    /* background-color: #ccc; */
    object-fit: cover;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sellers .container img {
    width: 70px !important;
    height: 70px;
    border: 1px solid #e2e2e2;
}

#latestUserMsg {
    margin-left: 0;
    margin-top: 24px;
}

.brand-logos {
    gap: 10px;
    margin-top: 20px;
}

.rider {
    width: 100%;
    height: auto;
    padding: var(--body-padding);
    padding-bottom: 0;
}

.illustration-r {
    width: 50%;
    height: 450px;
    background: url(images/rider.png);
    background-position-x: 5px;
    background-position-y: -50px;
    background-repeat: no-repeat;
    background-size: 120%;
}

.caption-r {
    width: 50%;
}

#latestUserMsg {
    background-color: #7dcc9e67;
    border: #205c21 solid 2px !important;
    color: #205c21;
}

.faq-section {
    width: 100%;
    padding: var(--body-padding);
    background-color: #fff;
}

.faq-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 40pt;
}

.wrap {
    flex-wrap: wrap;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 35px 0;
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: block;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

.faq-item label::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24pt;
    transition: transform 0.3s;
}

.faq-item input:checked + label::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 250px;
    margin-top: 10px;
}

.team {
    padding: var(--body-padding);
    background-color: #ff5e001c;
}

footer {
    padding: var(--body-padding);
}

.downloadContainer {
    padding: var(--body-padding);
}

.appIcon {
    background-color: #fff;
    width: 180px;
    height: 180px;
    border-radius: 50px;
    background: url(images/wakkaforme.jpg);
    background-position: center;
    background-size: 160%;
    background-repeat: no-repeat;
}

.downloadNote {
    width: 60%;
    border: 2px solid #ffcaa1;
    padding: 5% 5%;
    border-radius: 35px;
    background-color: #ffcaa182;
}

.downloadNote p {
    font-size: 10pt;
}