* {
    font-family: 'Overpass', sans-serif;
}

html {
    -webkit-text-size-adjust: none;
    touch-action: manipulation;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Overpass', sans-serif;
    color: var(--ui-text)
}

#main {
    margin-top: 60px;
}


#facebook {
    color: rgb(0, 132, 255)
}

#facebook .fab {
    margin-right: 5px;
}

.form-wrapper {
    margin: 40px auto;
    max-width: 800px;
}

.highlight {
    color: var(--ui-color);
}

.link,
.link:visited {
    color: var(--ui-color);
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
}

input,
textarea {
    border: 1px solid var(--ui-border);
    outline: 0;
    padding: 10px;
    font-size: 14px;
    margin: 0;
    resize: none;
}

input:disabled {
    cursor: not-allowed;
}

/* .container {
    min-height: calc(100vh - 320px);
} */

.placeholder {
    color: var(--ui-placeholder);
    font-size: 14px;
}

body.modal-opened,
.ReactModal__Body--open {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.ReactModal__Content {
    overflow: visible !important;
}

.ReactModal__Overlay {
    z-index: 8000;
    background-color: rgba(50, 50, 50, 0.5) !important;
}

.Toastify__toast {
    margin-bottom: 0 !important
}

.price {
    white-space: nowrap;
}

hr {
    border: 0;
    height: 0;
    border-bottom: 1px solid var(--ui-border);
}

.portal-modal {
    position: fixed;
    z-index: 9000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 25, 25, .7);
    display: flex;
    align-items: center;
    padding: 20px;
    animation: fadein .2s;
}

.portal-modal .inner {
    background: var(--main-bg);
    border-radius: 10px;
    width: 100%;
    animation: scaleIn .2s;
}

.portal-modal .filter-select {
    border: 0
}

#overlay {
    background: rgba(50, 50, 50, 0.5) !important;
    width: 100%;
    height: 100%;
    z-index: 800;
    position: fixed;
    visibility: hidden;
}

#overlay.visible {
    visibility: visible;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Firefox < 16 */
@-moz-keyframes scaleIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes scaleIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Internet Explorer */
@-ms-keyframes scaleIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Opera < 12.1 */
@-o-keyframes scaleIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.cover-image {
    height: 760px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cover-image .content-box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
}

.cover-image .content-box>.title {
    text-align: center;
    margin-bottom: 45px;
}

.cover-image .content-box>.title h1 {
    color: var(--main-text);
    font-size: var(--font-giant);
    margin-bottom: 10px;
    text-shadow: rgb(0, 0, 0) 0px 0px 3px;
    text-align: center;
}

.cover-image .content-box>.title p {
    color: var(--main-text);
    font-size: var(--font-xxl);
    line-height: 1.2;
    text-align: center;
    margin-top: 2rem;
}

.cover-image .content-box>a .button,
.cover-image .content-box>.button {
    font-size: var(--font-l);
}

.button.main:hover {
    background-color: var(--ui-color-dark);
}

.nx-btn .button.main {
    border-radius: 50px;
    padding: 13px 40px;
    font-size: var(--font-m);
    font-weight: 600;
}

@media only screen and (max-width: 800px) {
    .cover-image {
        height: 600px;
    }

}

@media only screen and (max-width: 779px) {

    .nx-btn {
        margin-bottom: 30px;
        gap: 1rem;
        flex-direction: column;
    }

    .nx-btn .button.main {
        padding: 13px 27px;
        font-size: 16px;
    }

    .cover-image .content-box>.title {
        padding: 0 20px;
    }

    .cover-image .content-box>.title h1 {
        font-size: var(--font-giant);
    }

    .cover-image .content-box>.title p {
        font-size: var(--font-xxl);
    }

    .cover-image .content-box>a .button,
    .cover-image .content-box>.button {
        padding: 10px 15px;
    }

}

ul.list {
    padding: 0;
}

.button {
    gap: 5px;
    padding: 10px 15px;
    font-size: var(--font-s);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ui-bg);
    border: 1px solid var(--ui-border);
    color: var(--ui-text);
    cursor: pointer;
    margin: 0;
    border-radius: 5px;
    outline: none;
    transition: all .2s ease-in-out;
    line-height: 1.5;
}

.button:disabled {
    cursor: not-allowed;
}

.button>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:hover {
    color: var(--ui-color-hvr);
    border-color: var(--ui-border-hvr);
    background: var(--ui-bg-hvr);
}

.button.main>span,
.button.main {
    border-color: transparent;
    background: var(--ui-color);
    border-radius: 50px;
    padding: 13px 40px;
    font-size: var(--font-m);
    font-weight: 600;
    color: #00ff03
}


/* .button.main:hover, .nx-btn .button.seller:hover{
    background-color: var(--secondary-color);
} */
/* .nx-btn .button.main {
    background: var(--secondary-color);
    border-color: transparent;
    color: #fff
} */

.button.blank {
    border-color: transparent;
    padding: 0;
    background: transparent;
    color: var(--ui-text)
}

.button.blank:hover {
    background: transparent;
    color: var(--ui-color);
}

.button .loader {
    margin: 0;
    width: var(--font-s);
    height: var(--font-s);
    border-width: 3px;
    margin-right: 10px;
}

.button.full {
    width: 100%;
    box-sizing: border-box;
}

.button.small {
    padding: 6px 10px;
    font-size: var(--font-xs);
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}

.icon-box>.item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box>.item img {
    width: 220px;
    height: auto;
}

.icon-box>.item .title {
    margin: 1rem 0;
}

.icon-box>.item .title h1 {
    font-size: var(--font-l);
    font-weight: bold;
}

.icon-box>.item .title h3 {
    font-size: var(--font-l);
    font-weight: bold;
}

.icon-box>.item .title h2 {
    font-size: var(--font-l);
    font-weight: bold;
}

.row.wrapped.m-top {
    margin-top: 5rem;
}

@media only screen and (max-width: 767px) {
    .row.wrapped.m-top {
        margin-top: 3rem;
    }
}

.icon-box>.item .info {
    font-size: var(--font-s);
    line-height: 1.5;
}

.icon-box>.item .info ul {
    line-height: 2.5;
}

.icon-box>.item .info ul li {
    font-weight: 600;
}

.icon-box>.item a {
    margin-top: auto;
    font-size: var(--font-m);
}

@media only screen and (max-width: 1024px) {

    .icon-box>.item {
        flex: initial;
        flex-basis: 100%;
    }

}

#how-it-works .title {
    text-align: center;
    margin: 80px 0;
    font-weight: bold;
    font-size: var(--font-xl)
}

#timeline {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

#timeline:before {
    content: "";
    width: 3px;
    height: 85%;
    background: var(--main-color);
    left: 50%;
    top: 30px;
    position: absolute;
}

.drivers #timeline:before {
    top: 0;
    height: 91%;
}

#timeline:after {
    content: "";
    clear: both;
    display: table;
    width: 100%;
}

#timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
}

#timeline .timeline-item h3 {
    margin-bottom: 0.5rem;
    color: var(--main-color);
    font-weight: bold;
    font-size: 24px;
}

#timeline .timeline-item .timeline-icon {
    background: var(--main-color);
    width: 50px;
    height: 50px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 50%;
    overflow: hidden;
    margin-left: -23px;
    border-radius: 50%;
}

.drivers #timeline .timeline-item .timeline-icon {
    top: 0;
}

#timeline .timeline-item .timeline-icon .fa {
    position: relative;
    color: var(--main-text);
    font-size: var(--font-l)
}

#timeline .timeline-item .timeline-content {
    width: 45%;
    background: var(--ui-bg);
    border-radius: 5px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

#timeline .timeline-item .timeline-content h2 {
    padding: 15px;
    background: var(--main-color);
    color: var(--main-text);
    font-weight: bold;

}

#timeline .timeline-item .timeline-content .info {
    padding: 15px;
    border-top: 0;
}

#timeline .timeline-item .timeline-content .info p {
    line-height: 1.5;
}

#timeline .timeline-item .timeline-content:before {
    content: '';
    position: absolute;
    left: 45%;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--main-color);
}

.drivers #timeline .timeline-item .timeline-content:before {
    top: 17px;
}

#timeline .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto
}

#timeline .timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    right: 45%;
    left: inherit;
    border-left: 0;
    border-right: 7px solid var(--main-color);
}

.drivers #timeline .timeline-item:nth-child(even) .timeline-content:before {
    top: 17px;
}

.page-title {
    font-size: var(--font-xxl);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px dotted #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.page-title-des, .page-title-faq  {
    font-size: var(--font-xxl);
}
.page-title-faq{
    text-align: center;
    line-height: 1.5;    
}
@media only screen and (max-width: 767px) {
    .page-title-des {
        font-size: var(--font-m);
        text-align: center;
        line-height: normal;
    }
}

@media screen and (max-width: 768px) {

    .drivers #timeline .timeline-item:nth-child(even) .timeline-content:before,
    #timeline .timeline-item:nth-child(even) .timeline-content:before {
        right: inherit;
        top: 19px;
    }

    #timeline .timeline-item {
        margin-bottom: 20px;
    }

    #timeline {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

    #timeline:before {
        left: 0;
        /* display: none; */
    }

    #timeline .timeline-item .timeline-content {
        width: 90%;
        float: right;
    }

    #timeline .timeline-item .timeline-content:before,
    #timeline .timeline-item .timeline-content.right:before {
        left: 10%;
        margin-left: -6px;
        border-left: 0;
        border-right: 7px solid var(--main-color);
    }

    #timeline .timeline-item .timeline-icon {
        left: 0;
        /* display: none; */
    }

    #timeline .timeline-item .timeline-icon.top-0 {
        top: 0;
    }


    .drivers #timeline:before {
        height: 90%;
    }

    #timeline .timeline-item .timeline-content h2 {
        font-size: 14px;
    }

    #timeline .timeline-item h3 {
        padding-left: 35px;
    }
}

/* ===============HEADER CSS */

#header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 8000;
    height: 60px;
    background: var(--main-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--ui-border);
    box-sizing: border-box;
    padding: 0 15px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

#header .logo img {
    width: auto;
    max-width: 300px;
}

.logo img {
    height: 40px;
    width: auto;
}

#header .block {
    flex: 1;
    display: flex;
    gap: 15px
}

#header-wrapper .cart-button,
#header-wrapper .select-location-button {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

#header-wrapper .select-location-button,
#header-wrapper .select-location-button svg,
#header-wrapper .select-location-button .fa {
    color: var(--main-color);
}

#header .cart-button.slide-in-button .qty {
    width: 15px;
    height: 15px;
    background-color: var(--main-color);
    color: var(--main-title);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 3px;
    line-height: 15px;
    font-size: var(--font-xxs);
}

#header-wrapper .select-location-button .fa:before {
    vertical-align: super;
}

#header-wrapper .select-location-button .selected-location {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

#header-wrapper .select-location-button .selected-location .name {
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#header-wrapper .select-location-button .selected-location .zone {
    font-size: var(--font-xs);
    color: var(--ui-placeholder);
}

#header-wrapper .header-mobil-location {
    height: 45px;
    background-color: var(--main-bg);
    padding: 5px 10px;
    display: flex;
    border-bottom: 1px solid var(--ui-border);
    z-index: 800;
    position: fixed;
    top: 60px;
    width: 100vw;
    box-sizing: border-box;
}

#header-wrapper .header-mobil-location .selected-location,
#header-wrapper .header-mobil-location .select-location-button {
    flex: 1;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#header .separator {
    border-left: 2px solid var(--ui-border);
    padding-left: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

#header .block.center {
    display: flex;
    justify-content: center;
}

#header .block.right {
    justify-content: flex-end;
}

#header .main-nav {
    margin-right: auto;
}

#header .user {
    margin-left: auto;
}

#header .user .loader {
    margin: 0;
    margin-left: auto;
}

#header .fa {
    font-size: 20px;
}

#header .slide-in-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
}

#header .user-welcome {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

#header .user-welcome .greeting {
    font-size: var(--font-xs);
    color: var(--ui-placeholder)
}

#header .user-welcome .name {
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
    overflow: hidden;
}

@media only screen and (max-width: 600px) {

    #main.authenticated #checkout,
    #main.authenticated #delivery-service {
        padding-top: 45px;
    }

}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--main-bg);
    overflow-x: hidden;
    border-right: 1px solid var(--ui-border);
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    display: flex;
    flex-direction: column;
}

.sidenav .nav-item {
    border-bottom: 1px solid var(--ui-border);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    padding: 10px 0;
    transition: all .4s linear;
    color: var(--ui-text);
}

.sidenav .nav-item:hover {
    background: var(--main-bg-helper);
}

.sidenav .nav-item .icon {
    align-items: center;
    color: var(--main-color);
    display: flex;
    font-size: 20px;
    height: 39px;
    justify-content: center;
    width: 39px;
}

.sidenav .nav-item .label {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidenav .selected .nav-item {
    color: var(--main-color);
}

.sidenav .nav-item .label>span {
    font-size: var(--font-s);
}

.sidenav .nav-item .label>.info {
    color: var(--ui-placeholder);
    font-size: var(--font-xs);
    margin-top: 5px
}

.language-selector {
    border-bottom: 1px solid var(--ui-border);
    display: flex;
}

.language-selector.ftr {
    border: none;
    gap: 15px;
}

.language-selector.ftr .language {
    flex: inherit;
    padding: 5px 0;
    padding-right: 10px;
    align-items: center;
}

.language-selector .language {
    border-right: 1px solid var(--ui-border);
    display: flex;
    flex: 1 1;
    /* justify-content: center; */
    margin: 0;
    text-align: center;
    align-items: center;
    color: var(--ui-placeholder);
    cursor: pointer;
    padding: 10px;
}

.language-selector .language a {
    color: var(--ui-placeholder);
}

.language-selector .language:last-child {
    border-right: 0;
}

.language-selector .language img {
    height: auto;
    margin-right: 5px;
    width: 20px;
}

.sidenav button {
    position: absolute;
    top: 20px;
    background: transparent;
    border: none;
    right: 20px;
    font-size: var(--font-xxl);
    cursor: pointer;
    display: flex;
}

#footer {
    border-top: 1px solid var(--ui-border);
    background: var(--main-bg);
    font-size: var(--font-s);
}

#footer .row {
    position: relative;
    margin: 20px auto;
}

#footer .fb-like {
    position: absolute;
    right: 40px;
    bottom: 0;
}

#footer .fab {
    color: var(--ui-placeholder);
    font-size: 1.5rem;
}

#footer ul.list {
    padding: 0;
}

#footer .list li {

    list-style: none;
    margin: 5px 0;
    cursor: pointer;
}

#footer .list li a {
    color: var(--ui-placeholder);
}

#footer #footer-bar {
    border-top: 1px solid var(--ui-border);
}

.nx-btn {
    margin-bottom: 50px;
    gap: 2rem;
}

#footer #footer-bar .row {
    display: flex;
    /* padding: 25px 0; */
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

#footer #footer-bar .copyright {
    display: flex;
    align-items: center;
    width: auto;
    max-width: none;
}

#footer #footer-bar .logo img {
    height: 15px;
}

#footer #footer-bar .menu {
    display: flex;
    align-items: center;
    max-width: none;
    width: auto;
    margin: 0;
}

#footer #footer-bar .menu .footer-menu span {
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    height: 15px;
    width: 1px;
    background: var(--ui-border);
}

#footer i {
    margin-right: 10px;
}

#footer #footer-bar .menu .footer-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer #footer-bar .menu .footer-menu a {
    color: var(--ui-placeholder);
}


#footer .list li *:hover,
.download-buttons #footer #footer-bar .menu .footer-menu a:hover {
    color: var(--main-color);
}

.page-header {
    padding: 140px 0;
    background: url(../img/large_top-of-the-world-view2.jpg) no-repeat center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    background-size: cover;
    position: relative;
}

.hows-works {
    padding: 140px 0;
    background: url(../img/carlos-aranda-IYMceGutrbQ-unsplash.jpg) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    position: relative;
}
.faq-works {
    padding: 140px 0;
    background: url(../img/faq-banner.jpeg) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    position: relative;
}

.deliver-img {
    padding: 140px 0;
    background: url(../img/APS_28-New.jpg) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    position: relative;
}

.for-saller {
    padding: 140px 0;
    background: url(../img/marketplace-ecommerce-sellers-6436a446a2a18-sej.webp) no-repeat center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    position: relative;
}

.download-img {
    padding: 140px 0;
    background: url(../img/wood-table-on-blur-cafe-600nw-2292000223.webp) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    position: relative;
}

.who-works {
    padding: 140px 0;
    background: url(../img/scott-graham-OQMZwNd3ThU-unsplash.jpg) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    position: relative;
}

.terms-header {
    padding: 140px 0;
    background: url(../img/legaldocs-opt.jpg) no-repeat center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    background-size: cover;
    position: relative;
}
.faq-header {
    padding: 140px 0;
    background: url(../img/faq-banner.jpeg) no-repeat center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    background-size: cover;
    position: relative;
}

.op-bg {
    background: #060606;
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.5;
}

.page-description {
    color: #fff;
    position: relative;
    z-index: 1;
}

/********* ROW  END*********/
.text {}

.text p {
    display: block;
    line-height: 1.4;
    margin: 1rem 0;
    font-size: var(--font-s);
}

#footer .widget .widget-title {
    margin-bottom: 1rem;
}

#footer .widget .widget-title h3 {
    min-height: 20px;
    font-size: var(--font-s);
    color: var(--ui-text);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-around;
}

.download-buttons a img {
    height: auto;
}

.download-buttons img {
    width: 175px;
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-buttons.btn-home {
    flex-direction: row-reverse;
}

.download-buttons.btn-home a img {
    border: solid 1px #333333;
    border-radius: 12px;
    width: 100%;
}

.download-buttons a>div {
    padding: 2px 8px;
    border-radius: 8px;
    background-color: rgb(73, 73, 73);
    display: inline-flex;
}

.subscrib-btn {
    width: 100%;
    max-width: 340px;
    margin: 30px auto 0;
}

.subs-header {
    max-width: 860px;
}

.subscrib-text {
    text-align: center;
}

.subscrib-text h2 {
    font-size: var(--font-l);
    font-weight: bold;
    margin: 2rem 0 1rem;
    color: var(--main-color);
    line-height: 1.4;
}

.subscrib-text ol {
    list-style: none;
    padding: 0;

}

.subscrib-text ol li {
    padding: 10px 0;
    color: var(--ui-text);
    font-size: var(--font-m);
    line-height: 1.2;
}

.subscrib-text h3 {
    font-size: var(--font-m);
    font-weight: bold;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.accordion-body p {
    font-size: var(--font-s);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.accordion-body p strong{
    font-weight: normal;
}
.accordion-body ul{
    padding-left: 1rem;
}
.accordion-body ul li {
    position: relative;
    list-style-type: square;
    padding: 0.5rem 0;
    line-height: 1.5;

}
.faq{
    background: rgb(246, 246, 246);
    width: 100%;
}
.faq-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}
.faq-head h4{
    font-size: var(--font-xxl);
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px dotted #979797;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.faq-head h3{
    font-size: var(--font-l);
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 920px) {

    #footer .widget-box {
        flex-wrap: wrap;
        gap: 1rem;
    }

    #footer .widget-box .widget {
        flex-basis: 50%;
        box-sizing: border-box;
        padding: 0;
    }

}

@media only screen and (max-width: 600px) {


    #footer .widget-box .widget {
        flex-basis: 100%;
    }

    #footer {
        font-size: var(--font)
    }

    #footer #footer-bar .row {
        flex-direction: column;
        align-items: center;
    }

    #footer #footer-bar .copyright {
        margin-left: 0;
    }

    #footer #footer-bar .menu {
        flex-direction: column;
    }

    #footer #footer-bar .menu .footer-menu {
        margin: 10px 0;
    }

}

@media only screen and (max-width: 414px) {


    #footer #footer-bar .row {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer #footer-bar .menu {
        width: 100%;
    }

    #footer #footer-bar .menu .footer-menu {
        align-items: center;
        text-align: center;
    }



    #footer #footer-bar .copyright {
        width: 100%;
        align-content: center;
        margin-left: 0;
        justify-content: center;
        margin-top: 5px;
    }

}

.whoweare {
    text-align: center;
    margin: 80px 0;
    margin-top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.whoweare h2 {
    text-align: center;
    font-weight: bold;
    font-size: var(--font-xl);
    line-height: 1.5;
}

.whoweare h3 {
    text-align: center;
    font-weight: normal;
    font-size: var(--font-l);
    line-height: 1.5;
    margin-bottom: 15px;
}

.whoweare p {
    text-align: center;
    font-size: var(--font-m);
    line-height: 1.5;
}

.text>span {
    margin: 10px 0;
    display: block;
    color: var(--ui-placeholder)
}

.text a {
    text-decoration: underline;
}

.text a:hover {
    text-decoration: underline;
}

.text a.main {
    color: var(--main-color);
}

.text a.secondary {
    color: var(--secondary-color);
}

.text a.main:hover {
    color: var(--main-color-hvr);
}

.text a.secondary:hover {
    color: var(--secondary-color-hvr);
}

.text strong {
    font-weight: bold;
}

.text h2 {
    font-size: var(--font-l);
    font-weight: bold;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.text h3 {
    font-size: var(--font-m);
    font-weight: bold;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.text h4 {
    font-size: var(--font-l);
    font-weight: bold;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.text h5 {
    font-size: var(--font-m);
    font-weight: bold;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.text ol {
    list-style: decimal;
    padding-left: 4rem;
}

.text ul {
    list-style: disc;
    padding-left: 40px;
    margin: 1rem 0;
    color: var(--main-color)
}

.text ol li,
.text ul li {
    padding: 5px 0;
    color: var(--ui-text);
    font-size: var(--font-s);
    line-height: 1.2;
}


@media only screen and (max-width: 960px) {

    .text ol {
        padding-left: 3rem;
    }

}

@media only screen and (max-width: 960px) {
    .whoweare h2 span {
        display: block;
    }

    #how-it-works .title {
        margin: 40px 0 0px;
    }

    .mbl {
        display: none;
    }

}

.space {
    height: 1rem;
}

.country-flag-thumbnail {
    text-align: center;
    border: 1px solid #e2e6ea;
    transition: box-shadow .3s;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.country-icon-thumbnail-img {
    margin-bottom: 20px;
}

.country-icon-thumbnail-img img {
    width: 120px;
    height: 120px;
}

.country-flag-thumbnail-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 0;
}

.country-flag-thumbnail-content h2 {
    color: #1c1e20;
    font-weight: 600;
    font-size: 25px;
}

.country-flag-thumbnail-content h3 {
    color: #1c1e20;
    font-weight: 600;
    font-size: 20px;
}

.country-flag-thumbnail-content p {
    line-height: normal;
}

.country-flag-thumbnail-content a {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;

}

.whatsapp-description {
    line-height: normal;
    font-size: var(--font-xl);
    margin-bottom: 25px;
    color: var(--main-text);
}

.space-3 {
    padding: 3rem 0;
}

.opcity {
    z-index: 1;
    position: relative;
}

.whatsapp-img {
    gap: 2rem;
    align-items: center;
    display: flex;
}

.whatsapp-img a {
    width: 230px;
    display: flex;
}
.utube img{ width: 100%;}
.utube{
    z-index: 10;
    border-radius: 100%;
    background: #fff;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 80px;
    padding: 2px;
}
.utube:hover{
    opacity: 0.8;
}
.whatsapp-img a img {
    width: 100%;
}
.accordion-button{
    font-weight: 600;
    font-size: 1.2rem;
}