@media screen and (max-width: 480px) {
    @font-face {
        font-family: 'Avenir';
        src: url("../fonts/AvenirNextLTPro-Regular.otf") format("opentype");
    }

    @font-face {
        font-family: 'Avenir';
        font-weight: bold;
        src: url("../fonts/AvenirNextLTPro-Bold.otf") format("opentype");
    }

    body {
        font-family: 'Avenir';
        background: #fff;
        margin: 0;
    }

    .div-text-center {
        align-items: center;
        display: flex;
    }

    .header {
        width: 100%;
        height: 72px;
        position: sticky;
        box-shadow: 0px 2px 12px 2px rgb(0 0 0 / 20%);
        background: transparent;
        position: relative;
        z-index: 3;
    }

    .parrent-box {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
    }
    
    .margin-content {
        padding:0px 20px;
    }

    .width-12 {
        width: 100%;
    }

    .width-6{
        width: 50%;
    }

    .logo-bri{
        text-align: right;
    }

    .content .content-pattern-desktop{
        display: none;
    }

    .content .content-pattern-mobile{
        width: 100%;
        position: absolute;
        top: 0;
    }

    .white-content{
        width: 75%;
        position: absolute;
        left: 50%;
        top: 350px;
        transform: translate(-50%, -50%);
        background: #FFFFFF;
        box-shadow: 0px 2px 12px rgb(0 81 155 / 12%);
        border-radius: 8px;
        padding: 24px 24px 40px 24px;
        flex-direction: column-reverse;
    }

    .footer {
        bottom: 0px;
        width: 100%;
        height: 40px;
        position: fixed;
        z-index: 3;

        text-align: center;
    }

    .content-title {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 8px;

        color: #333333;
        
    }

    .content-text {
        font-weight: 500;
        font-size: 16px;

        color: #333333;
    }

    p {
        margin: 0;
        text-align: center;
    }

    #footer-text {
        font-size: 12px;
    }

    .content-image {
        padding-bottom: 16px;
    }

    .desktop {
        display: none;
    }

    .btn-brimo-primary {
        background: #1078CA;
        border-radius: 8px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px 8px;
        position: static;
        width: 100%;
        height: 40px;
        flex: none;
        order: 2;
        flex-grow: 0;
        margin-top: 24px;
        border: none;
    }

    .btn-brimo-primary:hover {
        background-color: #00529C;
        cursor:pointer;
    }

    .btn-brimo-primary:active {
        background-color: #1F8FE5;
    }

    .btn-brimo-primary a {
        position: static;
        height: 20px;
        left: 8px;
        right: 8px;
        top: calc(50% - 20px/2);
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        flex: none;
        order: 0;
        flex-grow: 0;
        margin: 0px 0px;
    }
}

@media screen and (max-height: 640px) {
    body {
        min-height: 700px;
        position: relative;
    }

    .footer {
        position: absolute;
    }
}