/* button
--------------------------------------------- */
.buttonWeb {
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 160, 233, 1) 0%, rgba(0, 90, 131, 1) 100%);
    border-radius: 4px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    font-family: var(--fontInter);
    font-size: 22px;
    font-weight: bold;
    height: 60px;
    justify-content: center;
    transition: 0.2s;
    width: 240px;
}

.buttonWeb span {
    font-family: var(--fontNotoSans);
}

.buttonWeb:hover {
    box-shadow: none;
    opacity: 0.7;
}

/* Primary Button */
.button {
    align-items: center;
    background: linear-gradient(90deg, #ff5353 0%, #ff975f 100%);
    border-radius: 100px;
    color: #fff;
    display: inline-flex;
    font-size: 20px;
    font-weight: 500;
    height: 60px;
    justify-content: center;
    line-height: 1.45;
    width: 100%;
}

.button--outline {
    background: transparent;
    border: 1px solid #cbcbcb;
    color: #959595;
}

/* Border */
.borderPrimary--bottom {
    position: relative;
}

.borderPrimary--bottom::after {
    background: url("../images/title_border.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 180px;
}
