::-webkit-scrollbar {
    width: 0px;
}

/* SCROLLBAR FOR FIREFOX */

@-moz-document url-prefix() {
    * {
        scrollbar-width: none;
        scrollbar-color: var(--blue-pastel) var(--white);
    }
}

.btn.white {
    background-color: var(--white);
    color: inherit;
}

.btn.orange {
    background-color: #FF9500;
    color: var(--white);
}

.btn.orange:hover {
    background-color: var(--white);
    opacity: 1;
    color: #484848;
}

.btn.transparent {
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(12px);
    background: none !important;
    color: inherit;
}

.btn.transparent:hover {
    background: var(--white) !important;
    opacity: 1;
    color: #484848;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 40px 80px;
    color: #484848;
    display: block;
    background-color: #F5F5F5;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    width: 100%;
    height: 50px;
}

body#homepage header nav {
    display: flex;
}

header .-menu {
    display: flex;
    align-items: center;
}

header .-menu li {
    margin-right: 40px;
}

header .-menu li:nth-child(5) {
    margin-right: 0;
}

header .-menu li:nth-child(6),
header .-menu li:nth-child(7) {
    margin-left: 24px;
    margin-right: 0;
}

header .-menu li.menu-logout {
    margin-left: 24px;
}

header .-menu li.menu-auth-register {
    margin-left: 12px;
}

header .-menu li a {
    color: inherit;
}

header .-menu li.active a {
    color: #FF9500;
    font-weight: 700;
    text-decoration: none;
}

header .-menu li .btn {
    border-radius: 12px;
    padding: 13px 25px;
    height: 50px;
}

section h1.title,
section h2.title {
    font-weight: 800;
    font-size: 50px;
    font-family: 'Gilroy', sans-serif;
    font-style: italic;
}

section h3.pre-title {
    font-size: 23px;
    font-weight: 400;
    padding-left: 25px;
    margin-top: 5px;
    position: relative;
    display: flex;
    align-items: center;
}

section h3.pre-title::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 26px;
    height: 26px;
    background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.3177 13C18.3177 13.3656 18.1778 13.7311 17.8994 14.0096L12.1878 19.7212C11.6295 20.2795 10.727 20.2795 10.1687 19.7212C9.61042 19.1629 9.61042 18.2604 10.1687 17.7021L14.8879 12.9829L10.3472 8.28084C9.80033 7.71111 9.81604 6.8101 10.3829 6.26179C10.9498 5.71348 11.8551 5.72918 12.402 6.29606L17.9165 12.0077C18.185 12.2861 18.3177 12.6431 18.3177 13Z' fill='%23FF9500'/%3E%3C/svg%3E");
}

#header-wrapper {
    position: relative;
    padding-top: 110px;
    padding-bottom: 150px;
    color: var(--white);
    height: calc(100vh - 40px);
}

#header-wrapper::before {
    content: '';
    position: absolute;
    top: -90px;
    left: -80px;
    height: calc(100% + 90px);
    width: calc(100% + 160px);
    background: linear-gradient(180deg, rgba(245, 245, 245, 0) 70%, #f5f5f5 95%),
        url('/images/home/light/header-wrapper.jpg') center / cover no-repeat;
    z-index: -1;
}

#header-wrapper .content {
    width: 820px;
}

#header-wrapper .content h2 {
    font-size: 66px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 80px;
}

#header-wrapper .content p {
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
    margin-bottom: 150px;
}

#header-wrapper .content .actions {
    width: 650px;
    display: flex;
    align-items: center;
}

#header-wrapper .content .actions .btn:first-child {
    margin-right: 20px;
}

#why-us {
    transform: translateY(-60px);
}

#why-us .content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

#why-us .content .card {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 30px;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

#why-us .content .card:nth-child(2),
#why-us .content .card:nth-child(4),
#why-us .content .card:nth-child(6) {
    margin-right: 0;
}

#why-us .content .card .name {
    font-weight: 700;
    font-size: 24px;
}

#why-us .content .card .description {
    font-size: 18px;
    width: 500px;
    font-weight: 400;
}

#why-us .content .card .number {
    position: absolute;
    top: 0;
    right: -10px;
    font-size: 130px;
    font-weight: 800;
    font-style: italic;
    color: #FF9500;
    line-height: 110px;
    font-family: 'Gilroy', sans-serif;
    cursor: default;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

#why-us .content .card.alt {
    background-color: #FF9500;
    color: var(--white);
}

#why-us .content .card.alt .number {
    color: var(--white);
}

#how-it-works {
    position: relative;
    padding-top: 40px;
}

#how-it-works::before {
    content: '';
    position: absolute;
    left: -80px;
    width: calc(100% + 200px);
    height: 100%;
    top: 0;
    z-index: -1;
    background-color: var(--white);
}

#how-it-works .content {
    margin-top: 40px;
    display: flex;
    align-items: start;
}

#how-it-works .content .cards {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

#how-it-works .content .cards .card {
    width: calc(33.33333333333333333333333% - 80px);
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    border-radius: 24px;
    margin-right: 80px;
}

#how-it-works .content .cards .card .number,
#transportation .content .cards .card .number {
    font-family: 'Gilroy', sans-serif;
    font-style: italic;
    font-size: 42px;
    font-weight: 800;
    color: #FF9500;
}

#how-it-works .content .cards .card .description,
#transportation .content .cards .card .description,
#reviews .content .review .description {
    font-weight: 400;
}

#how-it-works .content .cards .card.alt {
    background-color: #FF9500;
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

#how-it-works .content .cards .card.alt::before {
    content: '';
    position: absolute;
    filter: blur(80px);
    background-color: var(--white);
    height: 143px;
    width: 143px;
    border-radius: 50%;
    z-index: -1;
    left: 100px;
    top: -38px;
}

#how-it-works .content .cards .card.alt .description {
    font-weight: 600;
    width: 200px;
}

#how-it-works .content .cards .card.alt .next {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

#how-it-works .content .cards .card.alt .next svg rect,
#how-it-works .content .cards .card.alt .next svg path {
    transition: fill var(--transition);
}

#how-it-works .content .cards .card.alt:hover .next svg rect {
    fill: var(--white);
}

#how-it-works .content .cards .card.alt:hover .next svg path {
    fill: #484848;
}

#how-it-works .bg-image {
    width: 30%;
    position: absolute;
    right: -80px;
    top: -10px;
}

#transportation {
    padding-top: 70px;
}

#transportation .content {
    background-color: var(--white);
    padding: 30px 40px;
    padding-bottom: 40px;
    border-radius: 40px;
}

#transportation .content .btn:hover {
    opacity: .7;
    background-color: #FF9500 !important;
    color: var(--white) !important;
}

#transportation .content .cards {
    display: flex;
    margin-top: 30px;
}

#transportation .content .cards .card {
    width: calc(25% - 10px);
    border-radius: 24px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background-color: #0D0D0D0A;
}

#transportation .content .cards .card:last-child {
    margin-right: 0;
}

#reviews {
    padding-top: 70px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}

#reviews h2.title {
    position: relative;
    z-index: 4;
}

#reviews .content-wrapper::before,
#reviews .content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

#reviews .content-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f5f5f5, transparent);
}

#reviews .content-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent, #f5f5f5);
}

#reviews .content {
    display: flex;
    margin-top: 40px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

#reviews .content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#reviews .content .review {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 40px;
    padding: 45px;
    margin-right: 20px;
    flex: 0 0 auto;
    width: 450px;
}

#reviews .content .review .profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

#reviews .content .review .profile svg {
    margin-top: -15px;
    margin-left: -15px;
}

#reviews .content .review .profile img {
    border-radius: 50%;
    height: 110px;
    width: 110px;
}

#become-driver {
    position: relative;
    z-index: 3;
}

#become-driver::before {
    content: '';
    position: absolute;
    left: -80px;
    background: linear-gradient(93.81deg, #FF9500 0%, #CF5600 104.53%);
    height: 100%;
    width: calc(100% + 160px);
    z-index: -1;
}

#become-driver .content {
    padding: 50px 0;
    padding-top: 40px;
    color: var(--white);
    padding-left: 200px;
}

#become-driver .content h2.title {
    font-style: normal;
}

#become-driver .content p {
    font-weight: 400;
    margin-top: 5px;
    width: 550px;
    margin-bottom: 50px;
}

#become-driver .content .btn {
    background: #FFFFFF3D;
    backdrop-filter: blur(12px);
    width: 320px;
}

#become-driver .content img {
    object-fit: contain;
    position: absolute;
    top: -20px;
    transform: scale(1.2);
}

#become-driver .content .docs {
    left: -70px;
    width: auto;
    transform: scale(1.2);
}

#become-driver .content .truck {
    right: -40px;
    width: auto;
}

#subscribe {
    margin-top: 70px;
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#subscribe h2.title {
    font-style: normal;
    font-size: 40px;
}

#subscribe .input {
    border: 1px solid #EFEFEF;
    background-color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
}

#subscribe .input input {
    background: none !important;
    border-radius: 0px;
    border: 0;
    width: 340px;
}

#subscribe .btn {
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 12px;
    height: 48px;
    margin-right: 8px;
}

#subscribe .btn:hover,
#about-us .content .block .card .btn:hover {
    background-color: #FF9500 !important;
    opacity: .7;
    color: var(--white) !important;
}

#about-us {
    padding: 60px 0;
}

#about-us h1 {
    margin-bottom: 50px;
}

#about-us h2 {
    margin-bottom: 15px;
    font-weight: 600;
}

#about-us h3.subject {
    font-size: 18px;
    color: #868686;
}

#about-us p {
    margin-bottom: 15px;
}

#about-us .content {
    display: flex;
    position: relative;
}

#about-us .content .block {
    width: calc(30% - 40px);
    display: flex;
    flex-direction: column;
}

#about-us .content .block:first-child {
    width: 70%;
    margin-right: 40px;
}

#about-us .content .block .card {
    position: sticky;
    top: 80px;
    background-color: var(--white);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about-us .content .block .card h2 {
    font-size: 26px;
}

#about-us .content .block .card img {
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

#about-us .content .block .card .btn {
    width: 100%;
}

.site-footer {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #d7d7d7;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}

.site-footer .footer-left {
    min-width: 280px;
}

.site-footer .footer-brand {
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 24px;
}

.site-footer .footer-block {
    margin-bottom: 24px;
}

.site-footer .footer-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}

.site-footer .socials,
.site-footer .app-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer .socials a,
.site-footer .app-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    background: #f2f2f2;
    color: #484848;
    font-size: 14px;
    text-decoration: none;
}

.site-footer .socials a img,
.site-footer .app-links a img {
    width: 20px;
    height: 20px;
    display: block;
}

.site-footer .footer-nav .navigation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.site-footer .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
}

.site-footer .footer-nav .navigation a {
    color: #484848;
    font-size: 15px;
    text-decoration: none;
}

.site-footer .footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d7d7d7;
}

.site-footer .copyright {
    font-size: 14px;
    margin-bottom: 12px;
}

.site-footer .docs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.site-footer .docs a {
    color: #484848;
    font-size: 14px;
    text-decoration: none;
}

.site-footer .docs a:visited,
.site-footer .docs a:hover,
.site-footer .docs a:active {
    color: #484848;
}

header .logo {
    display: flex;
}

@media (max-width: 992px) {
    .site-footer .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .site-footer .footer-left {
        min-width: 0;
    }

    .site-footer .footer-left,
    .site-footer .footer-nav,
    .site-footer .footer-bottom {
        width: 100%;
        text-align: center;
    }

    .site-footer .footer-nav {
        position: static;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .site-footer .socials,
    .site-footer .app-links,
    .site-footer .docs {
        justify-content: center;
    }
}

body#webapp {
    padding: 20px;
    height: 100dvh;
    position: relative;
    background-color: #2b2b2b;
}

body#webapp::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: url(/images/home/light/header-wrapper.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: .3;
}

#webapp-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    font-size: 16px;
    height: 100%;
    position: relative;
}

#webapp-login::before {
    display: none;
}

#webapp-login svg.logo {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    transition: transform var(--transition);
}

#webapp-login svg.logo.up {
    transform: translate(-50%, -12px);
}

#webapp-login h2,
#webapp-login .block,
#webapp-login > .btn {
    position: relative;
    z-index: 1;
}

#webapp-login h2 {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    width: 100%;
    font-family: 'Gilroy', sans-serif;
    margin-bottom: 20px;
}

#webapp-login .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 17px;
    transform: all var(--transition);
}

#webapp-login .btn:not(.load):active {
    transform: scale(.95);
}

#webapp-login .btn.login {
    margin-bottom: 10px;
}

#webapp-login .btn.orange:hover,
#webapp-login .btn.confirm:hover {
    background-color: #FF9500;
    color: var(--white);
}

#webapp-login .btn.orange:active,
#webapp-login .btn.confirm:active {
    background-color: #ffad3b;
}

#webapp-login .btn.register.orange {
    margin-bottom: 10px;
}

#webapp-login .btn.confirm {
    margin-bottom: 10px;
}

#webapp-login .block {
    width: 100%;
    display: none;
}

#webapp-login .input {
    margin-bottom: 10px;
    position: relative;
}

#webapp-login .input input {
    width: 100%;
}

#webapp-login .input.norequired::before {
    display: none;
}

#webapp-login .input.password .-show-password {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 55px;
    right: 0;
}

#webapp-login .input label.warning {
    display: none !important;
}

#webapp-login .register-consents {
    margin-top: 4px;
    margin-bottom: 12px;
    background-color: var(--white);
    border-radius: 14px;
    padding: 12px;
}

#webapp-login .register-consent-item {
    margin-bottom: 8px;
}

#webapp-login .register-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--light-text);
    font-size: 13px;
    line-height: 1.3;
}

#webapp-login .register-consent-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

#webapp-login .register-consent-label .checkbox {
    margin-top: 2px;
    min-width: 20px;
}

#webapp-login .register-consent-checkbox:checked + .checkbox {
    background-color: var(--blue-pastel);
    border-color: var(--blue-pastel);
}

#webapp-login .register-consent-checkbox:checked + .checkbox::before {
    opacity: 1;
}

#webapp-login .register-consent-text a {
    color: #8F8CF7 !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#webapp-login .register-consent-text a:visited,
#webapp-login .register-consent-text a:hover,
#webapp-login .register-consent-text a:active {
    color: #8F8CF7 !important;
}

#webapp-login .register-consents.warning .register-consent-label {
    color: var(--red);
}

#webapp-login .register-consents.warning .checkbox {
    border-color: var(--red);
}

#webapp-login .-subject-alt {
    margin-bottom: 20px;
    text-align: center;
}

#webapp-login .-subject-alt.small,
#webapp-login .-link {
    font-size: 14px;
    margin-bottom: 4px;
}

#webapp-login .-link {
    color: var(--blue-pastel);
    cursor: pointer;
}

#webapp-login .-code {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#webapp-login .-code .input {
    width: 60px;
    height: 60px;
    margin-right: 12px;
    margin-bottom: 20px;
}

#webapp-login .-code .input input {
    height: 100%;
    width: 100%;
    padding: 10px 16px;
    font-size: 40px;
    text-align: center;
    border-color: rgba(0, 0, 0, .1);
}

#webapp-login .-code .input.checked input {
    border-color: #FF9500;
}

#webapp-login .-code .input input:focus {
    border-color: color-mix(in srgb, #FF9500, #0000 50%) !important;
}

#webapp-login .-code .-warning {
    display: none;
}

#webapp-login .-code .input.warning input {
    border-color: var(--red) !important;
}

@media (max-width: 768px) {
    body#homepage {
        padding: 20px;
    }

    header .-menu {
        flex-wrap: wrap;
        row-gap: 8px;
        column-gap: 12px;
    }

    header .-menu li {
        margin-right: 0;
    }

    #reviews .content {
        animation: scroll 70s linear infinite;
    }
}

@media (max-height: 600px) {
    #webapp-login svg.logo {
        top: 12px;
        transform: translateX(-50%) scale(0.92);
        transform-origin: top center;
    }

    #webapp-login svg.logo.up {
        transform: translate(-50%, -8px) scale(0.92);
    }
}