/* Home Nav */
.navbar {
    position: fixed;
    display: flex;
    width: 100%;
    height: 90px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
    z-index: 50;
}
    .navbar .header-logo-wrap {
        position: relative;
        top: 0;
        left: 0;
        width: 138px;
        padding-top: 14%;
        margin: 0 auto;
    }
        .navbar .header-logo-wrap .header-logo {
            background-image: url('../public/images/header_logo.png');
            position: absolute;
            top: 0;
            left: 0;
        }

    .navbar .lang-wrap {
        position: absolute;
        top: 24px;
        right: 15px;
    }
        .navbar .lang-wrap .langBtn {
            border-radius: 35px;
            text-align: center;
            display: inline-block;
            vertical-align: middle;
            align-items: center;
            width: 60px;
            height: 35px;
            padding: 10px 5px;
            font-size: 14px;
        }
        .navbar .lang-wrap .langBtn-container {
            position: absolute;
            top: 35px;
            left: 1px;
            width: 60px;
            border-radius: 5px;
            max-height: 100px;
            z-index: 2;
        }

    


    .langBtn-container:nth-child(n) {
        background-color: #C4CBDE;
    }
    .langBtn-container .langList-item {
        padding: 5px 0;
        width: 100%;
        color: black;
    }

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }
}

/* Home Body */
.home-wrap {
    background-image: url('../public/images/home/home_banner_1024.jpg');
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 1023px) {
    .home-wrap {
        background-image: url('../public/images/home/home_banner_1920.jpg');
    }
}
@media (min-width: 1920px) {
    .home-wrap {
        background-image: url('../public/images/home/home_banner_1920.jpg');
    }
}

.home-content-wrap {
    flex-direction: column;
}
    .home-content-wrap .home-content-header {
        padding-top: calc(25vh - (68px / 2) - 90px);
        padding-bottom: calc(25vh - (68px / 2));
        min-height: 68px;
    }
        .home-content-wrap .home-content-header .home-title {
            font-size: 36px;
            line-height: 1.3;
        }
        .home-content-wrap .home-content-header .home-slogan {
            font-size: 16px;
            line-height: 1.3;
        }

        .home-content-wrap .home-content-btn-wrap {
            padding-top: calc(25vh - ((102px + 58px) / 2) - (106px / 3));
            padding-bottom: calc(25vh - ((102px + 58px) / 2) - (106px / 2 / 3));
            min-height: calc(102px + 58px);
        }
            .home-content-wrap .home-content-btn-wrap .end-wrap {
                margin-bottom: 50px;
            }
            .home-content-wrap .home-content-btn-wrap .home-end {
                font-size: 14px;
                text-transform: uppercase;
                line-height: 1.3;
            }
            .home-content-btn-wrap .btn-wrap {
                width: 90%;
                max-width: 252px;
                margin: 0 auto;
            }
                .home-content-btn-wrap .btn-wrap button {
                    margin-bottom: 10px;
                }
                .home-content-btn-wrap .btn-wrap .storeList-container {
                    top: 41px;
                    z-index: 2;
                    border-radius: 15px;
                    max-height: 150px;
                }
                    .home-content-btn-wrap .btn-wrap .storeList-container:nth-child(n) {
                        background-color: #C4CBDE;
                        padding: 5px 0;
                    }
        
                .home-content-btn-wrap .btn-wrap .storeList-container .storeList-item {
                    font-weight: 200;
                    font-size: 14px;
                }
                    .home-content-btn-wrap .btn-wrap .storeList-container .storeList-item:after {
                        content: '';
                        display: block;
                        height: 1px;
                        width: 100%;
                        background-color: #AEB5C8;
                    }

            .home-content-btn-wrap .follow-us-wrap {
                width: 60%;
                max-width: 200px;
                margin: 0 auto;
            }
                .follow-us-wrap .facebook {
                    background-image: url('../public/images/home/fb.png');
                    width: 30px;
                    height: 30px;
                }
                .follow-us-wrap .instagram {
                    background-image: url('../public/images/home/ig.png');
                    width: 30px;
                    height: 30px;
                }
                .follow-us-wrap .youtube {
                    background-image: url('../public/images/home/youtube.png');
                    width: 30px;
                    height: 30px;
                }
                .follow-us-wrap .linkedin {
                    background-image: url('../public/images/home/linkedin.png');
                    width: 30px;
                    height: 30px;
                }

@media (min-width: 1024px) and (orientation: landscape) {
    .home-content-wrap {
        flex-direction: row;
        gap: 25%;
    }
        .home-content-wrap .home-content-header,
        .home-content-wrap .home-content-btn-wrap {
            padding-top: calc(50vh - (160px / 2) - 90px);
            padding-bottom: calc(50vh - (160px / 2));
            min-height: 68px;
        }
            .home-content-wrap .home-content-header .home-title {
                font-size: 50px;
                line-height: 1.3;
            }
            .home-content-wrap .home-content-header .home-slogan {
                font-size: 20px;
                line-height: 1.3;
            }
        
        .home-content-wrap .home-content-btn-wrap .end-wrap {
            margin-top: 30px;
            margin-bottom: 50px;
        }
        .home-content-wrap .home-content-btn-wrap .home-end {
            font-size: 18px;
            line-height: 1.3;
        }
}

.home-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 10px;
}
    .home-footer .home-footer-left {
        position: relative;
        font-size: 12px;
        flex: 60%;
    }
        .home-footer .home-footer-left:after {
            content: '';
            position: absolute;
            display: inline-block;
            bottom: 0;
            right: 0;
            width: 1px;
            height: 70%;
            background-color: rgba(214, 212, 208, 0.5);
        }
        .home-footer .home-footer-left .loyal-t-logo {
            background-image: url('../public/images/home/loyal_t_logo.png');
            width: 37px;
            height: 37px;
            margin-bottom: 5px;
        }
    .home-footer .home-footer-right {
        flex: 40%;
    }

@media (min-width: 768px) {
    .home-footer .home-footer-left,
    .home-footer .home-footer-right {
        flex: 50%;
    }
}