.buttons {
    display: flex;
    margin: -6px;
}

.buttons .button {
    margin: 6px;
}

.button {
    display: block;
    padding: 9px;
    background-color: transparent;
    font-size: 17px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #02172c;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.15px;
    transition: all 0.3s ease-in-out;
    background-color: #2c7abd;
    border-color: #369ffb;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 18px;
    padding-right: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #369ffb, #2c7abd);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.button .icon {
    height: 24px;
    width: 24px;
    margin-left: 12px;
    margin-top: -6px;
    margin-bottom: -6px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}



.button span {
    position: relative;
    z-index: 2;
}

.button::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fbb104;
    background-image: linear-gradient(to bottom, #ffc232, #fbb104);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    border-color: #fbb104;
}

.button:hover::after {
    opacity: 1;
}

.button.orange {
    border-color: #fbb104;
    background-color: #fbb104;
    background-image: linear-gradient(to bottom, #ffc232, #fbb104);
}

.button.orange::after {
    background-color: #fbb104;
    background-image: linear-gradient(to bottom, #fece5d, #ffb300);
}

.button.white {
    color: #308bda;
    border-color: white;
    background-color: white;
    background-image: linear-gradient(to bottom, #e2e2e2 , #ffffff );
}

.button.white::after {
    background-color: white;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
}

.button.white2 {
    color: #02172c;
    border-color: rgba(255,255,255, 0.7);
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(255,255,255, 0.65), rgba(255,255,255, 0.65) );
    backdrop-filter: blur(7px);
}

.button.white2::after {
    background-color: white;
    background-image: linear-gradient(to bottom, rgba(255,255,255, 0.75), rgba(255,255,255, 0.75) );
}

.button.white3 {
    color: #02172c;
    border-color: rgba(255,255,255, 0.7);
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(255,255,255, 1), rgba(255,255,255, 1) );
    color: #369ffb;
    text-shadow: none;
}

.button.white3:hover {
    color: white !important;
    border-color: #0a1f33;
}

.button.white3::after {
    background-color: white;
    background-image: linear-gradient(to bottom, #0a1f33, #0a1f33);
}

.button.transparent {
    background-image: none;
    background-color: transparent;
    color: #02172c;
    border-color: transparent;
}

@media screen and (max-width: 890px) {
    .button {
        font-size: 15px;
        padding: 6px;
        padding-left: 18px;
        padding-right: 18px;
        min-height: 46px;
    }

    .button .icon {
        width: 20px;
        height: 20px;
        margin-left: 6px;
    }
}