﻿html,
body {
    background-color: #A069FF;
    box-sizing: border-box;
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
}


.button_wrap_fix {
    position: fixed;
    text-align: center;
    bottom: 0;
    padding: 10px 20px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 10%, rgba(0, 0, 0, 0.49) 90%);
    z-index: 555;
}

.logo_wrap {
    padding-left: 20px;
    max-width: 900px;
    width: 100%;
    display: block;
    height: 80px;
    margin-left: auto;
    top: 3vh;
    position: relative;
    margin-right: auto;
    z-index: 22;
    margin-bottom: -80px;
}

.logo_2 {
    width: 220px;
}

@media (max-width: 767px) {
    .logo_2 {
        width: 170px;
    }

    .logo_wrap {
        padding-left: 20px;

        height: 50px;
        position: absolute;

        top: 20px;

        margin-bottom: -50px;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.landing_wrap {
    overflow: hidden;
    display: inline-block;
    width: 100%;
    background-color: #9d63fb;
    padding: 0 0;
    margin: 0;
    position: relative;
}



.Button_pedal .text {
    text-align: center;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
    font-family: Montserrat;
    text-transform: uppercase;
}

.Button_pedal {
    background: linear-gradient(140deg, #ffcb00 10%, #fba329 90%);
    display: grid;
    display: inline-block;
    padding: 20px 50px;
    margin-top: 0px;
    text-decoration: none;
    align-content: center;
    border: 8px solid #fff;
    box-shadow: inset 0 -3px 0 rgba(204, 119, 0, .6), 0 2px 0 rgba(0, 0, 0, .2), 0 0 8px rgba(0, 0, 0, .4);
    border-radius: 34px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
    z-index: 5;
    transition: .3s ease-in-out;
    --smooth-corners: 50;
}

.Button_pedal:hover {
    transform: scale(.93);
    cursor: pointer;
    transition: .3s ease-in-out;
    box-shadow: inset 0 0 0 rgba(204, 119, 0, 0), 0 1px 0 rgba(0, 0, 0, .2), 0 0 8px rgba(0, 0, 0, .2);
}


@media (max-width: 767px) {

    .Button_pedal {
        padding: 20px 20px;
        margin: 20px auto 10px auto;
    }

    .Button_pedal .text {

        font-size: 14px;

    }
}