@font-face {
    font-family: "Roboto Light";
    src: url('/template/fonts/Archivo_Condensed-Medium.ttf');
}

*, html {
    transition: all 0.5s;
}

body {
    background-color: #F1F3F4;
}

a:link {
    text-decoration: none;
}

h1 {
    font-size: 4rem;
    font-family: "Roboto Light", serif;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #334F69;
}

#header .item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 10px #8888883d;
    margin-bottom: 25px;
    position: relative;
    height: 260px;
    padding-bottom: 25px;
}

#header .item:hover {
    box-shadow: 5px 10px #fcb54a;
}

#header .item .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid white;
}

#header .item .icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    scale: 1.05;
}

#header .item h2 {
    color: #F7941E;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}

#header .item p {
    color: #727171;
    margin-top: 15px;
    font-size: 1.1rem;
}

#header .item .icon_footer {
    position: absolute;
    right: 0;
    bottom: 0;
}

#header .item .icon_footer img {
    max-width: 65px;
    width: 100%;
}

.pay {
    background-color: #faaf3f;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border: 3px solid #d7860c;
    padding: 5px 13px;
}

.pay:hover {
    background-color: #d7860c;
    border: 3px solid #faaf3f;
}

.btn-register {
    max-width: 400px;
    margin: auto;
    width: 100%;
}

.btn-register button,
.btn-register a {
    width: 100%;
    background-color: #d40a0a;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
    border: none;
    padding: 5px;
    animation-name: showHide;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    display: block;
    text-align: center;
}

.btn-register button:hover,
.btn-register a:hover {
    background-color: red;
}

@keyframes showHide {
    from {
        background-color: red;
    }
    to {
        background-color: #d40a0a;
    }
}

#form h2 {
    font-size: 3rem;
    font-family: "Roboto Light", serif;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #334F69;
}

#form .form-group {
    margin-bottom: 20px;
}

#form .form-group label {
    font-size: 1.5rem;
    text-transform: uppercase;
}

#form .form-group input {
    background-color: #334F69;
    color: white;
    font-size: 1.5rem;
}

#form .form-group input::placeholder {
    color: #a9a9a9;
}

#form .text_form {
    font-size: 1.5rem;
}


@media screen and (max-width: 768px) {
    .send-form {
        width: 50% !important;
    }

    #form h2 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 3rem;
        margin: 10px 0;
    }

    #form .form-group input {
        font-size: 1.2rem;
    }

    .text_form p,
    .text_form label {
        font-size: 16px;
    }

    .send-form {
        width: 100% !important;
    }

    .send-form button {
        font-size: 1.5rem;
    }
}

.header {
    li {
        text-decoration: none;
    }

    .profile {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 99;
        background: #ffffff;
        padding: 10px 16px;
        border-radius: 10px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

        .dropdown-menu {
            margin-right: -16px !important;
            margin-top: 8px !important;
        }
    }
}

.filter-action {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 16px;
}

.filter-main {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.filter-form {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .menu-header {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.5rem;
        flex-direction: row;
        position: fixed;
        bottom: 0;
        z-index: 99;
    }

    .filter-main, .filter-form {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    .mb-115px {
        margin-bottom: 115px;
    }
}

.col-form-label.required:after,
.form-label.required:after {
    content: "*";
    margin-left: 0.25rem;
    color: #d63939;
}