﻿body {
    box-sizing: border-box;
    font-family: 'Montserrat';
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

* {
    -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: #fff;
    padding: 0 0;
    margin: 0;
    position: relative;
}



.Button_pedal .text {
    text-align: center;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    font-size: 22px;
    font-family: Montserrat;
    text-transform: uppercase;
}

.Button_pedal {
    background: linear-gradient(140deg, #ffcb00 10%, #fba329 90%);
    display: grid;
    display: inline-block;
    padding: 30px 50px;
    margin-top: 20px;
    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;
    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: 30px 30px;
    }

        .Button_pedal .text {
    
            font-size: 18px;

        }
}