.terms_section {
    padding: 10%;
    padding-bottom: 80px;
}

.terms_section h1 {
    font-size: 2vw;
    display: block;
    margin-bottom: 30px;
}

.terms_section p {
    text-align: justify;
}

header {
    background-color: #ed9241;
    position: relative;
}

header .menu a {
    color: var(--white) !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.menu a::after {
    content: "";
    display: block;
    width: 0;
    height: .3vh;
    background-color: var(--white) !important;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

header .boton {
    position: relative;
    display: inline-block;
    padding: 1vw 3vw;
    background-color: #981f1d;
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    box-shadow: 5px 5px 15px #00000015;
    transition: all 0.5s;
}

header .boton a {
    color: var(--white);
}

.boton::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: var(--red);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s;
}

.boton:hover::before {
    opacity: 1;
    transform: translate(50%, 70%);
}

.boton:hover {
    background-color: var(--white);
    transition: all 0.5s;
}

.boton:hover a {
    color: var(--red);
}

.terms_section a {
    color: #8b8b8b;
    cursor: pointer;
    transition: .25s;
}

.terms_section a:hover {
    color: var(--dark_green);
}

@media (max-width: 996px) {
    .terms_section h1 {
        font-size: 8vw;
        text-align: center;
    }
    .terms_section {
        padding: 28% 10%;
        padding-bottom: 80px;
    }
}

.mobile_header {
    position: inherit;
    background-color: #fff;
}

.mobile_header button {
    font-size: 7vw;
    color: #c11717 !important;
    padding: 5%;
    background: transparent;
    border: none;
}