﻿.footer-bottom {
    display:flex;
    flex-direction:column;
}
.footer-bottom-section-bottom {
    padding-bottom: 40px;
    padding-top: 80px;
    background-color: rgb(60,60,60);
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.footer-bottom-section-bottom-icon {
    padding: 15px;
    color: white;
    cursor: pointer;
}
.footer-bottom-section-bottom-container {
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 10%;
}
.footer-bottom-section-bottom-label {
    font-size:0.6rem;
    cursor:pointer;
    color:white;
    text-decoration:none;
}
.footer-bottom-section-bottom-label:hover {
    color:white;
}
.footer-label-title-one {
    padding: 12px;
    font-weight:1000;
    font-size:0.9rem;
    color:rgb(216,41,42);
}
.footer-label-title-two {
    padding: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}
.footer-label-text-one {
    font-size: 0.8rem;
    padding:12px;
}
.footer-label-text-two {
    font-size: 0.8rem;
    padding: 12px;
    color: white;
}
.footer-button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: auto;
}
.footer-button-white {
    padding: 8px 30px;
    text-align: center;
    color: black;
    font-size: 0.9rem;
    background-color: white;
    cursor: pointer;
    display: inline-block;
    background-image: linear-gradient(to right, rgb(214,41,41) 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.7s, color 0.7s;
}
    .footer-button-white:hover {
        background-position: left bottom;
        color: white;
    }
.footer-button-gray {
    background-color: rgb(128,128,128);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 30px;
    text-align: center;
    display: inline-block;
    background-image: linear-gradient(to right, rgb(214,41,41) 50%, rgb(128,128,128) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.7s;
}
    .footer-button-gray:hover {
        background-position: left bottom;
    }

.footer-button-black {
    background-color: rgb(128,128,128);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 30px;
    text-align: center;
    display: inline-block;
    background-image: linear-gradient(to right, rgb(214,41,41) 50%, black 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.7s;
}

    .footer-button-black:hover {
        background-position: left bottom;
    }

.footer-button-red {
    background-color: rgb(128,128,128);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 30px;
    text-align: center;
    display: inline-block;
    background-image: linear-gradient(to right, black 50%, rgb(214,41,41) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.7s;
}

    .footer-button-red:hover {
        background-position: left bottom;
    }
@media screen and (max-width: 1000px) {
    .footer-bottom-section {
        width: 80%;
        padding: 20px 5px;
        border-bottom: 1px solid white;
        border-right:0;
    }
}

