.landing_check {
    background-image: url("../../images/bg-ckeck.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    min-height: 500px;
    height: 500px;
    z-index: -2;
    color: #fff;
}

.landing_check .layer {
    position: absolute;
    top: 0;
    background-color: #0e0e0e61;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btn-section {
    width: 7em;
    height: 2.3em;
    margin: 0;
    background: rgb(0 0 0);
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 2px solid rgb(0 0 0);
}

.btn-section:hover {
    width: 7em;
    height: 2.3em;
    margin: 0;
    background: #f9c2c2;
    color: black;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: rgb(0 0 0);
}

.btn-section:after {
    content: "";
    background: white;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.btn-section:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.checkout-info a {
    color: black;
}

label {
    text-align: start;
    display: block;
}