@font-face {
    font-family: Mont-SemiBold;
    src: url(../../../store-customer-data/fonts/Mont-SemiBold.otf);
    font-display: swap;
}

@font-face {
    font-family: Mont-Heavy;
    src: url(../../../store-customer-data/fonts/Mont-Heavy.otf);
    font-display: swap;
}

*,
::after,
::before {
    box-sizing: border-box;
    outline: none;
}

body {
    margin: 0;
    color: #000000;
    background: #ededed;
    font-family: 'Mont-SemiBold';
}

a {
    text-decoration: none;
    color: initial;
}

.section-bnr {
    width: 100%;
    background: #ffffff;
    /* background: url('bnr-bg.png'); */
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4%;
}

.bnr-img {
    max-width: 40%;
}

.bnr-text {
    max-width: 60%;
    margin-left: 15px;
}

.bnr-text img {
    max-width: 100%;
}

/*////////////////////////////////*/

.section-menu {
    max-width: 1000px;
    margin: 3% auto;
    padding: 0 2%;
}

.menu-text {
    font-family: 'Mont-SemiBold';
    font-size: 25px;
    line-height: 1.3;
    text-align: center;
}

.menu-text b {
    font-family: 'Mont-Heavy';
}

.menu-options {
    margin: 5% 0;
}

.menu-item {
    position: relative;
    margin: 30px 0;
}

.menu-item img {
    width: 100%;
    display: block;
}

.menu-item:hover img {
    filter: contrast(1.1);
}

/*////////////////////////////////*/

.section-footer {
    max-width: 1000px;
    margin: 4% auto;
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-title {
    font-family: 'Mont-Heavy';
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
}

.finfo-item {
    color: #6c6b6b;
    font-size: 15px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    transition: all .1s ease-in-out;
}

.finfo-item i {
    font-size: 20px;
    margin-right: 3px;
}

.finfo-item:hover {
    color: #c3191b;
}

.fsocial-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fsocial-item {
    padding: 0 5px;
}

.fsocial-circle {
    width: 45px;
    height: 45px;
    background: #c3191b;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 50%;
}

.fsocial-circle:hover {
    background: #000000;
}

.mb {
    display: none;
}

@media screen and (max-width: 920px) {
    .dkt {
        display: none;
    }

    .mb {
        display: block;
    }

    .bnr-text {
        max-width: 65%;
        margin-left: 0;
        text-align: center;
        margin-top: 5px;
    }

    .bnr-text img {
        max-width: 80%;
    }

    .section-menu {
        margin: 7% auto;
        padding: 0 3%;
    }

    .menu-text {
        font-size: 15px;
        line-height: 1.2;
    }

    .menu-item {
        margin: 15px 0;
    }

    .section-footer {
        padding: 0 4%;
        justify-content: space-around;
    }

    .footer-social {
        order: 1;
    }

    .footer-info {
        order: 2;
    }

    .footer-title {
        font-size: 14px;
        text-align: center;
    }

    .finfo-item {
        font-size: 12px;
        margin: 6px 0;
    }

    .fsocial-list {
        justify-content: center;
    }

    .fsocial-circle {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}