@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}

:root {
    --accent: #024ac0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: rgb(242, 246, 255);
    color: #0b306d;
}

.body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: rgba(242, 246, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 10;
}

header .push {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 35px;
    padding: 0 5%;
    font-size: 15px;
    background: rgb(225, 233, 252);
    color: #1a4586;
    overflow-x: scroll;
}

header .push::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

header .push .accent {
    color: #1a4586;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

header .push .accent:hover {
    color: var(--accent);
}

header .push .text {
    margin-left: 5px;
    margin-right: 5px;
    text-wrap: nowrap;
}

header .push .text a {
    color: #1a4586;
    transition: .3s;
}

header .push .text a:hover {
    color: var(--accent);
}

header .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
}

header .burger {
    width: 50px;
    height: 30px;
    display: none;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
}

header .burger:hover {
    cursor: pointer;
}

header .burger span {
    width: 28px;
    height: 3px;
    transition: 0.5s;
    position: absolute;
    border-radius: 4px;
    background: #0b306d;
}

header .burger span:nth-child(1) {
    width: 28px;
    transform: translateY(-8px);
}

header .burger.active span:nth-child(1) {
    width: 28px;
    transform: translateY(0px) rotate(45deg);
}

header .burger span:nth-child(2) {
    width: 28px;
    transform: translateY(8px);
}

header .burger.active span:nth-child(2) {
    width: 28px;
    transform: translateY(0px) rotate(-45deg);
}

header .burger span:nth-child(3) {
    width: 28px;
}

header .burger.active span:nth-child(3) {
    opacity: 0;
}

header .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    transition: .5s;
}

header .logo img {
    width: 40px;
    height: 40px;
}

header .logo span {
    margin-left: 10px;
    font-size: 20px;
    color: var(--accent);
}

header .menu .options {
    display: flex;
    flex-direction: row;
}

header .menu .options .option {
    margin: 0 20px;
    text-decoration: none;
    color: #0b306d;
    cursor: pointer;
}

header .menu .options .option:hover {
    color: var(--accent);
}

header .menu .options .option.active {
    color: var(--accent);
    pointer-events: none;
}

header .menu .buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

header .menu .button {
    height: 42px;
    padding: 12px 20px;
    border-radius: 30px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}

header .menu .buttons .button:nth-child(2) {
    /*background: #6a8cc4;*/
}

header .menu .button:hover {
    background: #023e99;
}

header .menu .buttons .button:nth-child(2):hover {
    /*background: #476088;*/
}

section {
    padding: 0 5%;
    overflow: hidden;
}

section .presentation {
    margin-top: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    height: calc(90vh - 80px);
}

section .presentation .duo:first-child {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 46%;
    height: 100%;
}

section .presentation .duo:last-child {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: end;
    width: 46%;
    height: 100%;
    /*animation: mover 5s infinite;*/
}

section .presentation .duo .title {
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d1d1;
}

section .presentation .duo h2 {
    margin-top: 100px;
    display: block;
    font-size: 20px;
    font-weight: normal;
}

section .presentation .duo h1 {
    margin-top: 20px;
    font-size: 40px;
    text-transform: none;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background: linear-gradient(128.87deg, #512bd4 14.05%, #d600aa 89.3%);
    background-clip: text;
    -webkit-background-clip: text;
}

section .presentation .duo .info span {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    line-height: 23px;  
    text-align: start;
}

section .presentation .duo .shops {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

section .presentation .duo .shops .shop {
    display: flex;
    flex-direction: row;
    max-width: 200px;
    border-radius: 30px;
    text-decoration: none;
    transition: .5s;
    cursor: pointer;
}

section .presentation .duo .shops .shop img {
    width: 100%;
    height: 100%;
}

section .presentation .duo .restaurants {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #d1d1d1;
}

section .presentation .duo .restaurants .restaurants-content {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

section .presentation .duo .restaurants .restaurant {
    position: relative;
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
}

section .presentation .duo .restaurants .restaurant .logo {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    /*border: 3px solid rgb(207, 207, 207);*/
    box-shadow: 0px 0px 5px #00000073;
    border: 3px solid white;
    overflow: hidden;
}

section .presentation .duo .restaurants .restaurant .logo img {
    width: 100%;
    height: 100%;
}

section .presentation .duo .restaurants .restaurant .tag {
    position: absolute;
    top: calc(100% + 10px);
    background: white;
    padding: 5px 10px;
    border-radius: 30px;
    pointer-events: none;
    transition: .5s;
    opacity: 0;
}

section .presentation .duo .restaurants .restaurant .tag .indicator {
    position: absolute;
    top: -10px;
    left: 24px;
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

section .presentation .duo .restaurants .restaurant .tag span {
    white-space: nowrap;
}


section .presentation .duo .restaurants .restaurant:hover .tag {
    opacity: 1;
}

section .presentation .duo .restaurants .restaurant:first-child {
    margin-left: 0;
}

section .presentation .duo .restaurants .total-restaurants {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: calc(100% - 10px);
}

section .presentation .duo .restaurants .total-restaurants .count {
    font-size: 24px;
    font-weight: 600;
    color: #0b306d;
}

section .presentation .duo:last-child .mockup {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
}

section .presentation .duo:last-child .mockup img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    object-fit: cover;
}

section .down {
    position: absolute;
    bottom: 10px;
    left: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 100px;
    border-radius: 35px;
    transition: .5s;
    border: 2px solid var(--accent);
    background: white;
    cursor: pointer;
}

section .down.hide {
    opacity: 0;
    pointer-events: none;
}

section .down::before {
    position: absolute;
    content: '';
    width: 48px;
    height: 78px;
    border-radius: 30px;
    background: white;
    border: 2px solid white;
    transition: .5s;
    box-shadow: 0 0 10px #a0a0a0;
}

section .down:hover::before {
    border-color: var(--accent);
}

section .down svg {
    position: relative;
    width: 30px;
    height: 30px;
}

section .down svg path {
    stroke: var(--accent);
}

.section-stats {
    margin: 40px 0;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 100%;
    color: white;
    padding: 70px 5%;
    gap: 20px;
    border-radius: 30px;
    background: var(--accent);
    background: linear-gradient(128.87deg, #512bd4 14.05%, #d600aa 89.3%);
}

.section-stats .content-stats {
    width: calc(60% - 10px);
}

.section-stats .title {
    font-size: 2em;
    font-weight: 500;
}

.section-stats .info {
    text-align: start;
}

.section-stats .stats {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.section-stats .stats .stat {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.section-stats .stats .stat h3 {
    font-size: 2em;
}

.section-stats .stats .separator {
    width: 2px;
    height: 60px;
    background: white;
}

.section-stats .graphic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 40%;
    height: 100%;
}

.section-stats .graphic canvas {
    height: 100%!important;
}

section .title {
    width: 100%;
}

section .title h4 {
    width: 100%;
    text-align: center;
    font-size: 30px;
}

section .title h5 {
    width: 100%;
    text-align: start;
    font-size: 28px;
}

section .info {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 25px;  
}

section .info p {
    margin-top: 40px;
    font-weight: bold;
    color: var(--accent);
}

.about {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
}

.about .video {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about .video .marco {
    width: 80%;
    border: 20px solid #000;
    border-radius: 60px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about .video .marco .content {
    position: relative;
    width: 100%;
    height: min-content;
    background: #4690fd;
}

.about .video .marco .content video {
    width: 100%;
}

.about .video .marco .content .miniature {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about .video .marco .content .miniature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .video.play .marco .content .miniature {
    display: none;
}

.about .video .marco .content .controls {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.about .video .marco .content .controls .play {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: 5px solid rgba(255, 255, 255, 0.4);
    transition: .5s;
    cursor: pointer;

     &:before {
        position: absolute;
        top: 15px;
        left: 24px;
        content: '';
        width: 18px;
        height: 40px;
        border-left: 5px  solid rgba(255, 255, 255, 0.4);
        border-radius: 5px;
        transition: .5s;
     }

     &:after {
        position: absolute;
        top: 18px;
        left: 12px;
        content: '';
        width: 30px;
        height: 30px;
        transform: rotate(45deg) skew(-5deg, -5deg);
        border-top: 5px solid rgba(255, 255, 255, 0.4);
        border-right: 5px solid rgba(255, 255, 255, 0.4);
        border-radius: 5px;
        transition: .5s;
     }

     &:hover {
        border-color: rgba(255, 255, 255, 0.8);
     }

     &:hover::before {
        border-color: rgba(255, 255, 255, 0.8);
     }

     &:hover::after {
        border-color: rgba(255, 255, 255, 0.8);
     }

     &:hover .label {
        opacity: 1;
     }
}

.about .video.play .marco .content .controls {
    display: none;
}

.about .video .marco .content .controls .play .label {
    position: absolute;
    left: calc(-50% - 7px);
    bottom: -45px;
    width: max-content;
    padding: 5px 15px;
    font-size: 15px;
    background: #0066FF;
    color: white;
    border-radius: 20px;
    transition: .5s;
    opacity: 0;
}

.features {
    margin-top: 40px;
    opacity: 0;
    transition: 2s;
}

.features.loaded {
    opacity: 1;
}

.features .feature {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    width: 100%;
    border-radius: 20px;
    background: rgb(229, 237, 255);
    opacity: 0;
    transition: 2s;
    overflow: hidden;
}

.features .feature.loaded {
    opacity: 1;
}

.features .feature:first-child {
    margin-top: 40px;
}

.features .feature:last-child {
    /*padding: 30px 0;*/
}

.features .feature .duo {
    width: 55%;
}

.features .feature .image  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 45%;
    opacity: 0;
    transition: 2s;
    padding: 0 30px;
    transform: translateX(-50%);
}

.features .feature .image img {
    max-width: 90%;
    max-height: calc(100% - 60px);
    object-fit: contain;
    border-radius: 10px;
}

.features .feature .duo.data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 30px 5%;
    opacity: 0;
    transition: 2s;
    max-width: 100%;
    transform: translateX(50%);
}

.features .feature .duo.data .title {
    margin-top: 20px;
}

.features .feature .duo.data .description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 25px;  
}

.features .feature .duo.data .list {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.features .feature .duo.data .list .item {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.features .feature .duo.data .list .item:last-child {
    margin-bottom: 0;
}

.features .feature .duo.data .list .item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 7px;
    border-radius: 30px;
    background: var(--accent);
    background: #07810d;
}

.features .feature .duo.data .list .item .check {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 10px;
    border-radius: 30px;
    background: var(--accent);
    background: #07810d;
}

.features .feature .duo.data .list .item .icon svg {
    margin-top: -1px;
    width: 100%;
    height: 100%;
}

.features .feature .duo.data .list .item .check svg {
    margin-top: -1px;
    width: 100%;
    height: 100%;
}

.features .feature .duo.data .list .item:first-child .icon svg {
    margin-left: -2px;
}

.features .feature .duo.data .list .item .icon svg g {
    fill: rgb(255, 255, 255);
}

.features .feature .duo.data .list .item .check svg g {
    fill: rgb(255, 255, 255);
    stroke-width: 2px;
    stroke: #fff;
}

.features .feature .duo.data .list .item .text {
    margin-left: 15px;
    font-size: 18px;
}

.features .feature .duo.data .list .item .text .accent {
    color: #1a4586;
    font-weight: bold;
}

.features .feature:first-child .duo.data {
    transform: translateX(50%);
}

.features .feature:last-child .duo.data {
    transform: translateX(-50%);
}

.features .feature:first-child .duo.image {
    transform: translateX(-50%);
}

.features .feature:last-child .duo.image {
    align-items: end;
    transform: translateX(50%);
}

.features .feature.loaded .duo.data {
    transform: translateX(0);
    opacity: 1;
}

.features .feature.loaded .duo.image {
    transform: translateX(0);
    opacity: 1;
}

.cards {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    background: var(--accent);
}

.cards .title {
    margin-top: 60px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.cards .info {
    margin-top: 5px;
    color: white;
}

.cards .cards-content {
    position: relative;
    margin-top: 100px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.cards .cards-content::before {
    content: ' ';
    top: calc(50% - 134px);
    left: 250px;
    position: absolute;
    width: calc(100% - 500px);
    height: 7px;
    background: rgb(229, 237, 255);
    border-radius: 20px;
}

.cards .card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: calc(100%/3 - 30px);
    height: 400px;
    padding: 0 60px;
    border-radius: 20px;
    transition: 2s;
    opacity: 0;
    /*background: rgb(229, 237, 255);*/
}

.cards .card.loaded {
    opacity: 1;
}

.cards .card .icon {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    transform: rotate(45deg);
    width: 100px;
    height: 100px;
    padding: 20px;
    border-radius: 20px;
    background: rgb(229, 237, 255);
}

.cards .card .icon img {
    transform: rotate(-45deg);
    width: 100%;
    height: 100%;
}

.cards .card .title {
    margin-top: 40px;
    font-size: 24px;
}

.cards .card .text {
    margin-top: 20px;
    color: white;
    text-align: center;
}

.steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.steps .title {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}

.steps .steps-content {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
}

.steps .steps-content .round-init {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    background: #e0e0e9;
}

.steps .steps-content .round-init:first-child {
    background: radial-gradient(var(--accent) 30%, #e0e0e9 35%);
}

.steps .steps-content .step {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: 250px;
    transition: 1s;
}

.steps .steps-content .step .data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(30% - 3.5px);
    height: 100%;
    padding: 0 20px;
    transition: 2s;
}

.steps .steps-content .step .title {
    transition: 2s;
}

.steps .steps-content .step .data .icons {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.steps .steps-content .step .data .icons .icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 7px;
    background: #c6cbe6;
    transition: .3s;
    cursor: pointer;
}

.steps .steps-content .step .data .icons .icon svg {
    width: 100%;
    height: 100%;
}

.steps .steps-content .step .data .icons .icon svg g {
    fill: white;
}

.steps .steps-content .step .data .icons .icon:hover {
    background: var(--accent);
}

.steps .steps-content .step .data .info {
    margin-top: 20px;
    transition: 2s;
}

.steps .steps-content .step.first .data .info {
    margin-top: 10px;
}

.steps .steps-content .step .data.first {
    margin-right: 60px;
    align-items: end;
    text-align: end;
    transform: translateX(-50%);
}

.steps .steps-content .step.loaded .data.first {
    transform: translateX(0);
}

.steps .steps-content .step .data.first .icons .icon {
    margin-left: 10px;
}

.steps .steps-content .step .data.first .info {
    text-align: end;
}

.steps .steps-content .step .data.last {
    margin-left: 60px;
    align-items: start;
    transform: translateX(50%);
}

.steps .steps-content .step.loaded .data.last {
    transform: translate(0);
}

.steps .steps-content .step .data.last .icons .icon {
    margin-right: 10px;
}

.steps .steps-content .step .data.last .info {
    text-align: start;
}

.steps .steps-content .step .data .step-title {
    font-weight: bold;
    font-size: 20px;
}

.steps .steps-content .step .divider {
    position: relative;
    width: 7px;
    height: 100%;
    background: #e0e0e9;
}

.steps .steps-content .step.first .divider::after {
    position: absolute;
    content: ' ';
    top: -10px;
    left: 2.5px;
    width: 2px;
    height: calc(50% - 20px);
    background: var(--accent);
}

.steps .steps-content .step .divider .step-count {
    position: absolute;
    top: calc(50% - 30px);
    left: -26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background:rgb(225, 233, 252);
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #241e3b;
    transition: .5s;
    cursor: pointer;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.steps .steps-content .step .divider .step-count:hover {
    background:rgb(211, 224, 253);
}

.steps .steps-content .step .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(30% - 3.5px);
    height: 100%;
    transition: 2s;
}

.steps .steps-content .step .image img {
    height: 100%;
}

.steps .steps-content .step .image.first {
    margin-right: 60px;
    align-items: end;
    transform: translateX(-50%);
}

.steps .steps-content .step.loaded .image.first {
    transform: translateX(0);
}

.steps .steps-content .step .image.last {
    margin-left: 60px;
    align-items: start;
    transform: translateX(50%);
}

.steps .steps-content .step.loaded .image.last {
    transform: translateX(0);
}

.tips {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.tips .tips-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.tips .tips-container .tip {
    transform: translateY(50%);
    opacity: 0;
    margin-top: 20px;
    width: calc(100%/4 - 20px);
    border-radius: 20px;
    background: #f9faff;
    color: #0b306d;
    text-decoration: none;
    transition: 2s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.tips .tips-container .tip.loaded {
    transform: translateY(0);
    opacity: 1;
}

.tips .tips-container .tip:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.tips .tips-container .tip .image {
    position: relative;
    width: 100%;
}

.tips .tips-container .tip .image img {
    width: 100%;
    object-fit: cover;
}

.tips .tips-container .tip .image .type {
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 90px;
    height: 35px;   
    padding: 0 10px;
    color: white;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
}

.tips .tips-container .tip.video .image .type {
    opacity: 1;
}

.tips .tips-container .tip .image .type svg {
    display: none;
    width: 20px;
    height: 20px;
}

.tips .tips-container .tip .image .type svg g {
    fill: white;
}

.tips .tips-container .tip.video .image .type svg.video {
    display: block;
}

.tips .tips-container .tip.video .image .type svg.video ~ span {

}

.tips .tips-container .tip .text {
    padding: 15px;
}

.tips .tips-container .tip .text .tip-title {
    display: block;
    font-size: 20px;
}

.tips .tips-container .tip .text .tip-text {
    margin-top: 10px;
    display: block;
}

.tips .tips-container .tip .buttons {
    margin-top: -10px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 15px;
}

.tips .tips-container .tip .buttons .button {
    padding: 7px 15px;
    border-radius: 20px;
    background: var(--accent);
    color: white;
    transition: .5s;
}

.tips .tips-container .tip:hover .buttons .button {
    background: #08a010;
}

footer {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px;
    background: rgb(229, 237, 255);
    overflow: hidden;
}

footer .footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 90%;
}

footer .footer-container .info-footer {
    display: flex;
    flex-direction: column;
    width: 30%;
}

footer .footer-container .info-footer .title {
    margin-top: -20px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    text-decoration: none;
    font-size: 1.3em;
    color: var(--accent);
}

footer .footer-container .info-footer .title img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

footer .footer-container .info-footer .title span {
    margin-bottom: 3px;
    cursor: pointer;
}

footer .footer-container .info-footer .description {
    margin-top: 20px;
}

footer .footer-container .items-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 53%;
}

footer .footer-container .items-footer .item-footer {
    display: flex;
    flex-direction: column;
}

footer .footer-container .items-footer .item-footer .title {
    font-weight: 600;
    color: #0b306d;
}

footer .footer-container .items-footer .item-footer .item-objects {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

footer .footer-container .items-footer .item-footer .item-objects .object {
    margin-bottom: 15px;
}

footer .footer-container .follows {
    display: flex;
    flex-direction: column;
    width: 10%;
}

footer .footer-container .follows .title {
    font-weight: 600;
    color: #0b306d;
}

footer .footer-container .follows .social {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

footer .footer-container .follows .social a {
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0b306d;
    background: #07810d;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    padding: 10px;
    transition: 0.5s;
    text-decoration: none;
}

footer .footer-container .follows .social a:hover {
    background: rgb(0, 80, 0);
}

footer .footer-container .follows .social a svg {
    width: 25px;
}

footer .footer-container .follows .social a svg path {
    stroke: white;
    fill: green;
    stroke-width: 2px;
}

footer .footer-container .follows .social .facebook svg path {
    fill: white;
}

footer .footer-container .follows .social .instagram svg path {
    fill: white;
}

footer .copyright {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 90%;
    padding: 10px 0;
    font-size: 0.93em;
}

footer .copyright a {
    color: #0b306d;
    text-decoration: none;
}

footer .copyright .dev {
    display: block;
    margin-top: 10px;
}

footer a {
    cursor: pointer;
}

footer a:hover {
    color: #0066FF;
}

.tab-menu {
    display: none;
}

@media screen and (max-width: 450px) {

    header .push {
        width: max-content;
    }

    header .push .text {
        overflow-x: auto;
        animation: scroll-horizontal-mobile 60s linear infinite;
    }

    header .menu {
        justify-content: start;
        padding: 0 3%;
    }
    
    header .burger {
        display: flex;
    }
    
    header .burger span {
        width: 20px;
        height: 3px;
    }
    
    header .burger span:nth-child(1) {
        width: 25px;
        transform: translateY(-8px);
    }
    
    header .burger span:nth-child(2) {
        width: 25px;
        transform: translateY(0px);
    }
    
    header .burger span:nth-child(3) {
        width: 25px;
        transform: translateY(8px);
    }

    header .menu .options {
        display: none;
    }

    header .menu .buttons {
        position: absolute;
        right: 3%;
    }

    header .menu .buttons .button:nth-child(1) {
        /*display: none;*/
    }

    header .menu .buttons .button:nth-child(2) {
        background: var(--accent);
    }

    section .presentation {
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        height: auto;
    }
    
    section .presentation .duo:first-child {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        width: 100%;
        height: fit-content;
        text-align: center;
    }

    section .presentation .duo:last-child {
        margin-top: 20px;
        position: relative;
        display: flex;
        flex-direction: row;
        margin-left: 5%;
        width: 100%;
        max-width: 100%;
        height: fit-content;
    }

    section .presentation .duo h2 {
        margin-top: 60px;
        display: block;
        font-size: 20px;
        font-weight: normal;
    }
    
    section .presentation .duo h1 {
        margin-top: 20px;
        font-size: 30px;
    }

    section .presentation .duo .info span {
        text-align: center;
    }

    section .presentation .duo .restaurants {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #d1d1d1;
    }

    section .presentation .duo .restaurants .total-restaurants {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    section .presentation .duo .restaurants .total-restaurants .count {
        margin-bottom: 10px;
    }

    section .presentation .duo .buttons {
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 95%;
    }
    
    section .presentation .duo .buttons .button {
        margin-right: 0;
        width: max-content;
        height: 50px;
        padding: 0 20px;
    }

    section .down {
        display: none;
        width: 70px;
        height: 70px;
    }

    section .down::before {
        width: 48px;
        height: 48px;
    }

    .section-stats {
        flex-direction: column;
        padding: 20px;
    }

    .section-stats .content-stats {
        width: 100%;
    }

    .section-stats .content-stats h2 {
        font-size: 30px;
    }

    .section-stats .graphic {
        width: 100%;
    }

    .about .video {
        height: calc(80vw - 100px);
    }

    .about .video .marco {
        width: 95%;
        border-width: 6px;
        border-radius: 20px;
    }
    
    .about .video .marco .content .controls .play {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 40px;
        border: 5px solid #353535;
        transition: .5s;
        cursor: pointer;

        &:before {
            top: 11px;
            left: 18px;
            width: 8px;
            height: 30px;
            border-left: 5px  solid #353535;
            border-radius: 5px;
        }

        &:after {
            top: 13.3px;
            left: 10px;
            width: 20px;
            height: 20px;
            transform: rotate(45deg) skew(-5deg, -5deg);
            border-top: 5px solid #353535;
            border-right: 5px solid #353535;
            border-radius: 5px;
        }
    }
    
    .about .video .marco .content .controls .play .label {
        left: -100%;
        opacity: 1;
    }

    .features .feature {
        flex-direction: column;
    }

    .features .feature .duo {
        width: 100%;
    }

    .features .feature .image {
        width: 100% !important;
        padding: 0 15px;
    }

    .features .feature .image img {
        margin-top: 15px;
        max-width: 100%;
    }

    .features .feature .duo.data {
        padding: 15px 5%;
    }

    .features .feature .duo.data .title {
        margin-top: 5px;
    }

    .features .feature:last-child {
        padding: 0px;
    }

    .features .feature:last-child .duo.image {
        margin-bottom: 15px;
    }

    .features .feature:last-child .duo.image img {
        margin: 0;
    }

    .cards .cards-content {
        flex-direction: column;
        margin-top: 40px;
    }

    .cards .cards-content .card {
        width: 100%;
    }

    .steps .steps-content {
        margin-top: 20px;
    }

    .steps .steps-content .round-init {
        display: none;
    }

    .steps .steps-content .step {
        position: relative;
        margin-top: 60px;
        flex-direction: column-reverse;
        height: fit-content;
    }

    .steps .steps-content .step.first,
    .steps .steps-content .step.last {
        flex-direction: column;
    }

    .steps .steps-content .step .data {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .steps .steps-content .step .data.first,
    .steps .steps-content .step .data.last {
        margin: 0;
        margin-top: 20px;
        align-items: center;
    }

    .steps .steps-content .step .data .step-title {
        margin-top: 10px;
        text-align: center;
    }
    
    .steps .steps-content .step .data .icons .icon:first-child {
        margin-left: 0;
    }

    .steps .steps-content .step .data.first .info {
        text-align: center;
    }

    .steps .steps-content .step .data.last .info {
        text-align: center;
    }

    .steps .steps-content .step .divider {
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 7px;
        border-radius: 20px;
    }
    
    .steps .steps-content .step.first .divider::after {
        display: none;
    }
    
    .steps .steps-content .step .divider .step-count {
        position: absolute;
        top: calc(50% - 20px);
        left: calc(50% - 20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background:rgb(225, 233, 252);
        border-radius: 30px;
        font-size: 20px;
        font-weight: 600;
        color: #241e3b;
        transition: .5s;
        cursor: pointer;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

    .steps .steps-content .step .image.first,
    .steps .steps-content .step .image.last {
        margin: 0;
        width: 100%;
    }

    .steps .steps-content .step .image img {
        width: 100%;
    }

    .tips .tips-container {
        flex-direction: column;
    }

    .tips .tips-container .tip {
        width: 100%;
    }

    footer {
        padding: 40px 5px;
    }

    footer .footer-container {
        flex-direction: column;
    }

    footer .footer-container .info-footer {
        width: 100%;
    }

    footer .footer-container .items-footer {
        margin-top: 40px;
        flex-wrap: wrap;
        width: 100%;
    }

    footer .footer-container .items-footer .item-footer {
        width: 50%;
    }

    footer .footer-container .items-footer .item-footer:last-child {
        margin-top: 20px;
    }

    footer .footer-container .follows {
        margin-top: 20px;
        width: 100%;
    }

    footer .copyright {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    footer .copyright .copy {
        margin-bottom: 20px;
        width: 100%;
    }

    footer .copyright a {
        margin-bottom: 15px;
    }
    
    .tab-menu {
        position: fixed;
        top: -110%;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100% - 110px);
        background: rgba(242, 246, 255, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(7px);
        z-index: 9;
        transition: .5s;
    }
    
    .tab-menu a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: calc(100%/5);
        border-top: 1px solid rgba(51, 51, 51, 0.3);
        text-decoration: none;
        color: black;
    }

    .tab-menu.show {
        top: 110px;
    }
}

@keyframes mover {
    0% {
        top: 0;
    }
    50% {
        top: 30px;
    }
    100% {
        top: 0;
    }
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%); /* Desplazarse hasta el final */
    }
    100% {
        transform: translateX(0); /* Volver al inicio */
    }
}

@keyframes scroll-horizontal-mobile {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-90%); /* Desplazarse hasta el final */
    }
    100% {
        transform: translateX(0); /* Volver al inicio */
    }
}