﻿body {
    font-family: "Roboto", "Noto Sans Thai", sans-serif;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    background: linear-gradient( 135deg, #9A7A55 0%, #5A402A 22%, #2B1E15 55%, #120D09 100% );
    height: 100vh;
}


.gray-text {
    color: #8690a0;
}

.blue-text {
    color: #35b4fd;
}

.small-font-size {
    font-size: 16px;
    line-height: 20px;
}

.gradient-color {
    background: linear-gradient( 90deg, #F6E5D1 0%, #E7C9A6 25%, #D2A476 55%, #B98156 78%, #98653F 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.sub-gradient-color {
    color: #91867A;
    text-shadow: 0 1px 1px rgba(0,0,0,.35);
}

/*****************************************
* Glossy Button
*****************************************/
.glossy-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    padding: 0 40px;
    overflow: hidden;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, .2), inset 0 -10px 18px rgba(0, 0, 0, .35), 0 10px 24px rgba(0, 0, 0, .4);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

    .glossy-button::before {
        content: "";
        position: absolute;
        top: -42%;
        left: -8%;
        width: 116%;
        height: 88%;
        border-radius: 50%;
        background: linear-gradient( to bottom, rgba(255, 255, 255, .78), rgba(255, 255, 255, .06) );
        pointer-events: none;
    }

    .glossy-button::after {
        content: "";
        position: absolute;
        right: 15%;
        bottom: -10px;
        left: 15%;
        height: 18px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .4);
        filter: blur(10px);
        opacity: .45;
        pointer-events: none;
        transition: opacity .3s ease, transform .3s ease;
    }

    .glossy-button:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-3px);
    }

        .glossy-button:hover::after {
            opacity: .8;
            transform: scaleX(1.12);
        }

    .glossy-button:active {
        transform: translateY(-1px) scale(.98);
    }

    .glossy-button:focus-visible {
        outline: 3px solid rgba(223, 173, 106, .35);
        outline-offset: 3px;
    }

.glossy-button--silver {
    background: linear-gradient( to bottom, #777777 0%, #454545 42%, #292929 100% );
}

    .glossy-button--silver:hover {
        border-color: rgba(255, 255, 255, .95);
        background: linear-gradient( to bottom, #8d8d8d 0%, #575757 42%, #333333 100% );
        box-shadow: inset 0 2px 3px rgba(255, 255, 255, .28), inset 0 -12px 20px rgba(0, 0, 0, .42), 0 15px 34px rgba(0, 0, 0, .52), 0 0 16px rgba(255, 255, 255, .12);
    }

.glossy-button--gold {
    border-color: rgba(198, 151, 101, .8);
    background: linear-gradient( to bottom, #65462f 0%, #3b281b 42%, #1b120c 100% );
}

    .glossy-button--gold::after {
        background: rgba(213, 158, 92, .65);
    }

    .glossy-button--gold:hover {
        border-color: #dfad72;
        background: linear-gradient( to bottom, #826043 0%, #563921 42%, #28180e 100% );
        box-shadow: inset 0 2px 3px rgba(255, 255, 255, .18), inset 0 -12px 22px rgba(0, 0, 0, .42), 0 15px 36px rgba(0, 0, 0, .5), 0 0 20px rgba(217, 160, 90, .18);
    }

.glossy-button--xs {
    min-width: 150px;
    height: 34px;
    padding: 0 28px;
    font-size: 16px;
}

.glossy-button--sm {
    min-width: 150px;
    height: 44px;
    padding: 0 28px;
    font-size: 16px;
}

.glossy-button--lg {
    min-width: 300px;
    height: 72px;
    padding: 0 55px;
    font-size: 26px;
}

.glossy-button--full {
    width: 100%;
}

.glossy-button.is-disabled,
.glossy-button:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(.4);
}

@media (max-width: 575px) {
    .glossy-button {
        min-width: 0;
        width: 100%;
        height: 52px;
        padding: 0 24px;
        font-size: 18px;
    }

    .glossy-button--lg {
        height: 60px;
        font-size: 21px;
    }
}

.full-width {
    width: 100%;
}


.btn.focus, .btn:focus {
    box-shadow: none;
}


.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}

    .blur-up.lazyloaded {
        -webkit-filter: blur(0);
        filter: blur(0);
    }


.container {
    max-width: 1300px;
}


.error-message {
    color: #ffffff;
    background-color: #ff263a;
    border-color: #ff263a;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
}



/*****************************************
* Fancybox
*****************************************/
.fancybox-infobar {
    color: #67b1e3;
    left: 30px;
    top: 20px;
    font-size: 2rem;
}

    .fancybox-infobar span {
        font-size: 2rem;
    }

.fancybox-toolbar {
    right: 30px;
    top: 20px;
}


.fancybox-slide--image {
    padding: 80px 0;
}

.fancybox-button {
    margin-right: 30px;
    background: transparent;
}

    .fancybox-button.fancybox-button--zoom img {
        width: 60px;
    }

    .fancybox-button.fancybox-button--close img {
        width: 56px;
    }

    .fancybox-button.fancybox-button--arrow_left img {
        width: 44px;
    }

    .fancybox-button.fancybox-button--arrow_right img {
        width: 44px;
    }

.fancybox-navigation .fancybox-button--arrow_left {
    left: 20px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 40px;
}


@media(max-width: 460px) {
    .fancybox-infobar {
        left: 10px;
        top: 10px;
        font-size: 1.5rem;
    }

        .fancybox-infobar span {
            font-size: 1.5rem;
        }

    .fancybox-toolbar {
        right: 5px;
        top: 10px;
    }


    .fancybox-slide--image {
        padding: 44px 0;
    }

    .fancybox-button {
        margin-right: 0px;
        background: transparent;
    }

        .fancybox-button.fancybox-button--zoom img {
            width: 24px;
        }

        .fancybox-button.fancybox-button--close img {
            width: 24px;
        }

        .fancybox-button.fancybox-button--arrow_left img {
            width: 24px;
        }

        .fancybox-button.fancybox-button--arrow_right img {
            width: 24px;
        }


    .fancybox-navigation .fancybox-button--arrow_left {
        left: 0px;
    }

    .fancybox-navigation .fancybox-button--arrow_right {
        right: 0px;
    }
}



/*****************************************
* Mega Menu
*****************************************/
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    /*background: linear-gradient( 90deg, rgba(12,10,8,.97) 0%, rgba(24,18,12,.96) 35%, rgba(43,28,18,.95) 70%, rgba(66,43,26,.95) 100% );*/
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(198,155,90,.15);
    transition: .35s ease;
    background: #000000;
}

    .nav .mego-logo img {
        width: auto;
        height: 30px;
    }

    .nav .navbar-toggler {
        display: none;
        position: absolute;
        right: 10px;
        top: 22px;
        padding: 0px;
        font-size: 18px;
    }

    .nav .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }

    .nav .navbar-right-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        right: 36px;
    }

@media (max-width: 960px) {
    .nav {
        height: 70px;
        height: 70px;
        background: #000000;
    }

        .nav .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }

        .nav .mego-logo img {
            width: auto;
            height: 40px;
        }

        .nav .navbar-toggler {
            display: block;
        }
}


@media (max-width: 460px) {
    .nav {
        height: 70px;
        height: 70px;
        /*background: linear-gradient(90deg, rgba(12, 10, 8, .97) 0%, rgba(24, 18, 12, .96) 35%, rgba(43, 28, 18, .95) 70%, rgba(66, 43, 26, .95) 100%);*/
        background:#000000;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(198, 155, 90, .15);
    }

        .nav .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }

        .nav .mego-logo img {
            width: auto;
            height: 40px;
        }

        .nav .navbar-toggler {
            display: block;
        }
}



.mega__menu {
}

    .mega__menu ul.main-menu {
        display: flex;
        list-style: none;
        margin-bottom: 0px;
    }

        .mega__menu ul.main-menu li {
            padding: 10px 20px;
        }

            .mega__menu ul.main-menu li a {
                text-decoration: none;
                color: #fff;
                font-size: 14px;
                letter-spacing: 0;
            }

            .mega__menu ul.main-menu > li > div > a {
                position: relative;
                display: inline-flex;
                align-items: center;
                padding-bottom: 8px;
            }

                .mega__menu ul.main-menu > li > div > a::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    right: auto;
                    bottom: 0;
                    width: 100%;
                    height: 2px;
                    border-radius: 999px;
                    background: linear-gradient(90deg, rgba(198, 155, 90, .15), #d8b35c, rgba(198, 155, 90, .15));
                    box-shadow: 0 0 10px rgba(216, 179, 92, .65);
                    opacity: 0;
                    transform: translateX(-50%) scaleX(0);
                    transform-origin: center;
                    transition: transform .28s ease, opacity .28s ease;
                }

            .mega__menu ul.main-menu > li:hover > div > a::after,
            .mega__menu ul.main-menu > li > div.active > a::after {
                opacity: 1;
                transform: translateX(-50%) scaleX(1);
            }

                .mega__menu ul.main-menu li a:hover {
                    text-shadow: 0 0 4px #D8B35C, 0 0 8px #D8B35C, 0 0 16px #B68635, 0 0 32px #8E6E38;
                    transition: color 0.3s, text-shadow 0.3s;
                }


            .mega__menu ul.main-menu li .parent-menu {
                position: relative;
                font-weight: 400;
                transition: 0.5s ease all;
                color: #ffffff !important;
                cursor: pointer;
                letter-spacing: 2px;
            }

                .mega__menu ul.main-menu li .parent-menu.active,
                .mega__menu ul.main-menu li .parent-menu:hover {
                    text-shadow: 0 0 4px #D8B35C, 0 0 8px #D8B35C, 0 0 16px #B68635, 0 0 32px #8E6E38;
                    transition: color 0.3s, text-shadow 0.3s;
                }


            .mega__menu ul.main-menu li .sub__menu {
                position: absolute;
                background: linear-gradient(to right, #000000, #080808);
                width: 100%;
                left: 0;
                top: 70px;
                padding: 30px 40px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
                /*visibility: hidden;*/
                display: none;
                transition: 0.2s ease all;
            }

                .mega__menu ul.main-menu li .sub__menu.expand {
                    /*visibility: visible;*/
                }

                .mega__menu ul.main-menu li .sub__menu .sub__menu_container {
                    width: 80%;
                    margin: 0px auto;
                }


                .mega__menu ul.main-menu li .sub__menu .row:not(:last-child) {
                    padding-right: 20px;
                }

            .mega__menu ul.main-menu li:hover {
                background: none;
            }

            /*.mega__menu ul.main-menu li:hover .sub__menu {
                    visibility: visible;
                }*/

            .mega__menu ul.main-menu li .sub__menu p:not(:last-child) {
                margin-bottom: 10px;
            }

            .mega__menu ul.main-menu li .sub__menu ul {
                list-style: none;
            }

                .mega__menu ul.main-menu li .sub__menu ul li {
                    padding: 0px;
                }

                    .mega__menu ul.main-menu li .sub__menu ul li a {
                        position: relative;
                        display: inline-flex;
                        font-size: 14px;
                        line-height: 26px;
                        letter-spacing: 0px;
                        text-transform: none;
                        padding-bottom: 2px;
                    }

                        .mega__menu ul.main-menu li .sub__menu .sub__menu_container ul li a::after {
                            content: "";
                            position: absolute;
                            left: 0;
                            bottom: 1px;
                            width: 100%;
                            height: 1px;
                            border-radius: 1px;
                            background: linear-gradient(90deg, rgba(255, 246, 213, .85) 0%, #ffffff 22%, #f4d083 48%, #ffffff 76%, rgba(255, 246, 213, .85) 100%);
                            box-shadow: 0 0 4px rgba(255, 255, 255, .7), 0 0 8px rgba(216, 179, 92, .65), 0 0 14px rgba(216, 179, 92, .42);
                            opacity: 0;
                            transform: scaleX(0);
                            transform-origin: left center;
                            transition: transform .28s ease, opacity .2s ease, box-shadow .28s ease;
                        }

                        .mega__menu ul.main-menu li .sub__menu ul li a:hover {
                            text-shadow: 0 0 4px #D8B35C, 0 0 8px #D8B35C, 0 0 16px #B68635, 0 0 32px #8E6E38;
                            transition: color 0.3s, text-shadow 0.3s;
                        }

                            .mega__menu ul.main-menu li .sub__menu .sub__menu_container ul li a:hover::after {
                                opacity: 1;
                                transform: scaleX(1);
                            }


@media (max-width: 1200px) {
    .mega__menu {
        display: block;
    }

        .mega__menu ul.main-menu li {
            padding: 22px 20px;
        }
}


@media (max-width: 960px) {
    .mega__menu {
        display: none;
    }
}


@media (max-width: 460px) {
    .mega__menu {
        display: none;
    }
}


.mega__button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*position: absolute;
    right: 60px;*/
}

    .mega__button .register-button {
        /*display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        min-width: 150px;
        padding: 0 28px;
        font-size: 14px;
        line-height: 1;
        color: #000000;
        text-decoration: none;
        border-radius: 10px;
        background: linear-gradient( 180deg, #d2b184 0%, #bc8f5a 100% );
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 20px rgba(216,179,92,.25);
        transition: .3s;*/
    }

        .mega__button .register-button:hover {
            /*transform: translateY(-2px);
            background: linear-gradient( 180deg, #dfbe92 0%, #c99963 100% );
            box-shadow: 0 10px 24px rgba(195,145,84,.35);*/
        }

    .mega__button .login-button {
        /*display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        min-width: 110px;
        padding: 0 28px;
        font-size: 14px;
        line-height: 1;
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
        border: 1px solid rgba(210,170,110,.45);
        background: rgba(18,15,12,.35);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 12px rgba(200,157,69,.18);
        transition: .3s;*/
        margin-right: 20px;
    }

        .mega__button .login-button:hover {
            /*transform: translateY(-2px);
            background: rgba(70,50,30,.45);
            border-color: #c79b63;
            color: #fff;
            box-shadow: 0 0 18px rgba(199,155,99,.18);*/
        }


@media (max-width: 1200px) {
    .mega__button {
        display: none;
    }
}


.toolbar-icon {
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*position: absolute;
    right: 10px;*/
}

    .toolbar-icon .nav-toolbar-register {
        position: relative;
        display: none;
    }

        .toolbar-icon .nav-toolbar-register a {
            display: inline-block;
            margin-right: 5px;
        }

            .toolbar-icon .nav-toolbar-register a img {
                width: 30px;
            }


    .toolbar-icon .nav-toolbar-icon {
        position: relative;
        margin-left: 10px;
    }


        .toolbar-icon .nav-toolbar-icon a {
            display: block;
            cursor: pointer;
            margin: 5px 10px;
            font-weight: 400;
            color: #ffffff;
        }

            .toolbar-icon .nav-toolbar-icon a img {
                width: 26px;
                transition: 0.2s ease all;
            }


        .toolbar-icon .nav-toolbar-icon .nav-badge {
            color: #ffffff;
            background: #e62b2b;
            width: 18px;
            position: absolute;
            top: -3px;
            right: 0px;
            text-align: center;
            font-size: 0.6rem;
            border-radius: 50%;
            padding: 3px 2px 1px 2px;
        }

@media (max-width: 1200px) {
    .toolbar-icon .nav-toolbar-register {
        display: block;
    }
}

@media (max-width: 960px) {
    .toolbar-icon {
        right: 35px;
    }
}


@media (max-width: 480px) {

    .toolbar-icon {
        top: 18px;
        right: 45px;
    }

        .toolbar-icon .nav-toolbar-icon {
           /* margin-left: 10px;
            margin-top: 8px;*/
        }
}



/*****************************************
* Language Menu
* https://gist.github.com/pratikbutani/20ded7151103bb30737e2ab1b336eb02*
*****************************************/

.lang-menu {
    position: relative;
}

    .lang-menu .selected-lang {
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 2;
        cursor: pointer;
        color: #ffffff;
        padding: 0px 10px;
    }

        .lang-menu .selected-lang .selected-lang-icon {
            width: 18px;
        }

        .lang-menu .selected-lang .selected-lang-current {
            font-size: 14px;
            line-height: 20px;
            text-transform: uppercase;
            padding: 5px 5px 0px 5px;
        }


    .lang-menu ul {
        margin: 0;
        padding: 0;
        display: none;
        /*background: linear-gradient(to right, #002454, #010c1e);*/
        background: #000000;
        border: 1px solid #474747;
        position: absolute;
        top: 25px;
        right: 0px;
        border-radius: 5px;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    }


        .lang-menu ul li {
            list-style: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
        }


            .lang-menu ul li a {
                text-decoration: none;
                padding: 5px 10px;
                display: block;
                font-size: 16px;
            }

            .lang-menu ul li:hover {
                /*background: #67b1e3;*/
            }

    /*.lang-menu ul li a:before {
                content: '';
                display: inline-block;
                width: 25px;
                height: 25px;
                vertical-align: middle;
                margin-right: 10px;
                background-size: contain;
                background-repeat: no-repeat;
            }*/

    .lang-menu:hover ul {
        display: block;
    }


/*.th:before, .selected-lang.th:before {
    background-image: url('/frontend-assets/images/flag/flag-th.png');
}

.us:before, .selected-lang.us:before {
    background-image: url('/frontend-assets/images/flag/flag-en.png');
}

.vt:before, .selected-lang.vt:before {
    background-image: url('/frontend-assets/images/flag/flag-vt.png');
}*/


@media (max-width: 460px) {
    .lang-menu {
        width: auto;
    }

        .lang-menu .selected-lang:before {
            width: 22px;
            height: 22px;
        }
}




/*****************************************
* Menu Dropdown mobile
*****************************************/
.menu-dropdown-mobile {
}

    .menu-dropdown-mobile .header {
        color: #ffffff;
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
        display: block;
    }

    .menu-dropdown-mobile .menu-product-item {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 10px;
        color: #ffffff;
    }

        .menu-dropdown-mobile .menu-product-item .menu-product-item-icon {
            width: 60px;
        }

        .menu-dropdown-mobile .menu-product-item .menu-product-item-lists {
            width: calc(100% - 60px);
        }

            .menu-dropdown-mobile .menu-product-item .menu-product-item-lists .menu-product-item-type {
                font-weight: 600;
                font-size: 16px;
                line-height: 20px;
                margin-bottom: 0px;
                color: #ffffff;
            }

    .menu-dropdown-mobile .menu-dropdown-lists-item ul {
        list-style: none;
        padding-left: 15px;
        margin-top: 5px;
    }

        .menu-dropdown-mobile .menu-dropdown-lists-item ul li {
            list-style: none;
        }

            .menu-dropdown-mobile .menu-dropdown-lists-item ul li a {
                color: #ffffff;
                font-size: 14px !important;
                line-height: 18px !important;
                font-weight: 400;
            }





/*****************************************
* Swiper 
*****************************************/
.banner-slide, .welcome-slide, .common-slide {
    overflow: hidden;
    height: auto;
}

.banner {
    z-index: 9;
}

.swiper-slide {
    position: relative;
}

.swiper-button-prev {
    left: 40px;
    color: #ffffff;
    background-image: url("../images/icons/left-chevron-black.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-prev.white {
        background-image: url("../images/icons/chevron-left-white.png");
    }

    .swiper-button-prev::after {
        content: '';
    }

.swiper-button-next {
    right: 40px;
    color: #ffffff;
    background-image: url("../images/icons/right-chevron-black.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-next.white {
        background-image: url("../images/icons/chevron-right-white.png");
    }

    .swiper-button-next::after {
        content: '';
    }



.swiper-button-prev.dark-mode {
    top: 50%;
    left: 40px;
    color: #ffffff;
    background-image: url("../images/icons/left-chevron-black.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-prev.dark-mode::after {
        content: '';
    }


.swiper-button-next.dark-mode {
    top: 50%;
    right: 40px;
    color: #ffffff;
    background-image: url("../images/icons/right-chevron-black.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-next.dark-mode::after {
        content: '';
    }

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px !important;
}

/*.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0px 10px !important;
}

.swiper-pagination-bullet-active {
    background: transparent;
    opacity: 1;
    border: 1px solid #ffffff;
    width: 15px;
    height: 15px;
}*/


.swiper-slide .contact-button {
    color: #000000;
    padding: 7px 60px 8px 30px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #F4EDE7;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 20px;
    position: absolute;
    bottom: 40px;
    left: 17%;
}

    .swiper-slide .contact-button:hover {
        color: #ffffff;
        background: #613789;
    }

    .swiper-slide .contact-button .chevron-right {
        background: #041837 url(/frontend-assets/images/icons/chevron-right-white.png);
        background-repeat: no-repeat;
        background-position: top 8px left 12px;
        background-size: 8px auto;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 7px;
        top: 5px;
        border-radius: 20px;
    }

    .swiper-slide .contact-button:hover .chevron-right {
        background: #ffffff url(/frontend-assets/images/icons/chevron-right-black.png);
        background-repeat: no-repeat;
        background-position: top 8px left 12px;
        background-size: 8px auto;
    }

@media (max-width: 1240px) {
    .swiper-slide .contact-button {
        bottom: 40px;
        left: 30%;
    }
}



.swiper-slide .swiper-text {
    position: absolute;
    top: 15%;
    width: 100%;
    text-align: center;
}

    .swiper-slide .swiper-text .headline {
        color: #ffffff;
        text-align: center;
        font-size: 3.5rem;
        line-height: 3.5rem;
        margin-bottom: 30px;
        text-transform: uppercase;
        width: 40%;
        margin: 0px auto 30px auto;
    }

    .swiper-slide .swiper-text .title {
        color: #ffffff;
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        text-transform: uppercase;
        width: 40%;
        margin: 0px auto 30px auto;
    }

    .swiper-slide .swiper-text .footer-text {
        color: #ffffff;
        text-align: center;
        font-size: 2.5rem;
        line-height: 2.5rem;
        text-transform: uppercase;
        width: 40%;
        margin: 0px auto 30px auto;
    }


    .swiper-slide .swiper-text .btn-seemore {
        color: #000000;
        padding: 7px 0px 5px 0px;
        font-size: 1rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #ffffff;
        border: 1px solid #ffffff;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: inline-block;
        width: 150px;
        text-align: center;
        margin-right: 5px;
        text-decoration: none;
        text-transform: uppercase;
        border-radius: 20px;
    }

    .swiper-slide .swiper-text .btn-seemore-outline {
        color: #ffffff;
        padding: 6px 25px 5px 25px;
        font-size: 1rem;
        font-weight: normal;
        line-height: 24px;
        background-color: transparent;
        border: 1px solid #ffffff;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: inline-block;
        text-align: center;
        margin: 0px 10px;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 20px;
    }




.swiper-slide.dark .swiper-text .headline {
    color: #000000;
}

.swiper-slide.dark .swiper-text .title {
    color: #000000;
}

.swiper-slide.dark .swiper-text .footer-text {
    color: #000000;
}


.swiper-slide.dark .swiper-text .btn-seemore {
    color: #000000;
    border: 1px solid #000000;
}

    .swiper-slide.dark .swiper-text .btn-seemore:hover {
        transform: scale(1.1);
    }

.swiper-slide.dark .swiper-text .btn-seemore-outline {
    color: #000000;
    border: 1px solid #000000;
}

    .swiper-slide.dark .swiper-text .btn-seemore-outline:hover {
        color: #ffffff;
        background: #000000;
        border: 1px solid #000000;
        transform: scale(1.1);
    }


.swiper-pagination-bullet {
    background: #000000;
}

.swiper-pagination-bullet-active {
    background: transparent;
    opacity: 1;
    border: 1px solid #000000;
    width: 15px;
    height: 15px;
}

@media (max-width: 1240px) {
    .banner-slide {
        height: auto;
    }

    .swiper-wrapper {
        height: auto;
    }

    .banner-slide img {
        width: 100%;
        height: auto;
    }
}



@media (max-width: 460px) {
    .banner-slide {
        margin-top: 0px;
        height: auto;
    }

    .swiper-button-prev {
        left: 20px;
        width: 24px;
        height: 24px;
    }


    .swiper-button-next {
        right: 20px;
        width: 24px;
        height: 24px;
    }

    .swiper-pagination {
        bottom: 30px !important;
    }

    .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
        margin: 0px 7px !important;
    }

    .swiper-pagination-bullet-active {
        background: transparent;
        border: 1px solid #000000;
        width: 10px;
        height: 10px;
    }

    .swiper-slide .swiper-text {
        top: 15%;
    }


        .swiper-slide .swiper-text .headline {
            color: #000000;
            font-size: 2rem;
            line-height: 2.3rem;
            width: 70%;
            margin-bottom: 20px;
        }

        .swiper-slide .swiper-text .title {
            font-size: 1.3rem;
            margin-bottom: 5px;
            line-height: 1.8rem;
            width: 70%;
            margin-bottom: 20px;
        }

        .swiper-slide .swiper-text .footer-text {
            color: #000000;
            font-size: 1.5rem;
            margin-bottom: 5px;
            line-height: 2rem;
            width: 70%;
            margin-bottom: 40px;
        }



        .swiper-slide .swiper-text .btn-seemore-outline {
            padding: 4px 20px 3px 20px;
            border: 1px solid #ffffff;
            font-size: 1rem;
        }
}


/*****************************************
* glow-button
*****************************************/
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.glow-button {
    font-size: 16px;
    color: #ffffff;
    background: #0c5b9f;
    padding: 13px 30px;
    border-radius: 5px;
    letter-spacing: 0px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    display: inline-block;
    margin-right: 10px;
    width: 180px;
    text-align: center;
}

    .glow-button:hover {
        color: #ffffff;
        text-decoration: none;
        /*background: linear-gradient(180deg, #4465ad, transparent);*/
        /*background: linear-gradient(180deg, #4465ad, transparent);*/
        background: #0b4373;
        /*transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(86, 204, 242, 0.6);*/
    }


@media(max-width:960px) {
    .glow-button {
        padding: 17px 30px;
    }
}


@media(max-width:460px) {
    .glow-button {
        padding: 17px 30px;
    }
}


.glow-button-secondary {
    font-size: 16px;
    line-height: normal;
    color: #000000;
    padding: 14px 30px;
    letter-spacing: 0px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    display: inline-block;
    margin: 0px 5px;
    text-decoration: none;
    text-align: center;
    width: 180px;
    border-radius: 10px;
    background: linear-gradient(180deg, #d2b184 0%, #bc8f5a 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 8px 20px rgba(216, 179, 92, .25);
}

    .glow-button-secondary:hover {
        color: #000000;
        background: #d3d3d3;
        text-decoration: none;
        /*transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(86, 204, 242, 0.6);*/
    }


@media(max-width:960px) {
    .glow-button-secondary {
        padding: 13px 30px;
    }
}


@media(max-width:460px) {
    .glow-button-secondary {
        padding: 13px 30px;
    }
}




/*****************************************
* Border Spin Animation 
*****************************************/
.border-spin-animation {
    position: relative;
    padding: 2px;
    border-radius: 10px;
}

    .border-spin-animation::after, .border-spin-animation::before {
        --angle: 0deg;
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        /*background-image: conic-gradient(#ff4545, #00ff99, #006aff, #ff0095, #ff4545);*/
        /*background-image: conic-gradient(from var(--angle), transparent, #ff4545, #00ff99, #006aff, #ff0095, #ff4545);*/
        /*background-image: conic-gradient(from var(--angle), transparent 70%, blue);*/
        /*background-image: conic-gradient(from var(--angle), #1d8cff, #e16c21);*/
        /*background-image: conic-gradient(from var(--angle), transparent 20%, #c6c6db 40%, #e16c21 30%);*/
        /*background-image: conic-gradient(from var(--angle), transparent 20%, #c6c6db 40%, #55b3e6 30%);*/
        background-image: conic-gradient(from var(--angle), transparent 20%, #c6c6db 40%, #354d85 30%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        padding: 2px;
        border-radius: 10px;
        animation: 3s spin linear infinite;
        box-shadow: 2px 2px 22px #55b3e6;
        opacity: 0.2;
    }

    .border-spin-animation::before {
        filter: blur(0.8rem);
        opacity: 0.5;
    }

@keyframes spin {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

/*****************************************
* iframe Wrapper
*****************************************/
.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


/*****************************************
* Gradient Background
*****************************************/
.gradient-background {
    background: linear-gradient(135deg, #1e3df0, #005be0, #00c9db, #f2d34e);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Optional animation to give it a smooth shifting effect */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/*****************************************
* Fade Gradient
*****************************************/
.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*****************************************
* Fade Image
*****************************************/
.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

    .fadeimage-mouseover:hover img {
        transform: scale(1.1);
        transition: transform 3s ease-in;
    }



/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, #9A7A55 0%, #5A402A 22%, #2B1E15 55%, #120D09 100%);*/
    background: #1a110a;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 360px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

@media(max-width: 460px) {
    .blink-image {
        width: 50%;
    }
}


/*****************************************
* Main Content 
*****************************************/
#main-content {
    margin-top: 70px;
    /*min-height: calc(70vh - 100px);*/
}


@media (max-width: 960px) {
    #main-content {
        margin-top: 70px
    }
}


@media(max-width: 460px) {
    #main-content {
        margin-top: 70px
    }
}

/*****************************************
* neon Text 
*****************************************/
.neonText {
    color: #fff;
    /*text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #55b1e9, 0 0 82px #55b1e9, 0 0 92px #55b1e9, 0 0 102px #55b1e9, 0 0 151px #55b1e9;*/
    /*text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 30px #55b1e9, 0 0 40px #55b1e9, 0 0 50px #55b1e9, 0 0 60px #55b1e9, 0 0 70px #55b1e9;*/
    /*    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 30px #2eabf7, 0 0 40px #2eabf7, 0 0 50px #2eabf7, 0 0 60px #2eabf7, 0 0 70px #2eabf7;*/
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 30px #28688f, 0 0 40px #28688f, 0 0 50px #28688f, 0 0 60px #28688f, 0 0 70px #28688f;
}

/*****************************************
* Member Form
*****************************************/
#member-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0px 100px 0px;
}

    #member-form .member-form-wrapper {
        width: 800px;
    }


        #member-form .member-form-wrapper .member-title {
            color: #0056ff;
            font-size: 55px;
            margin-bottom: 40px;
        }



/*****************************************
* Backoffice Form
*****************************************/
#backoffice-form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 0px 50px 0px;
}

    #backoffice-form .backoffice-form-wrapper {
        width: 80%;
    }


        #backoffice-form .backoffice-form-wrapper .backoffice-title {
            color: #ffd71d;
            font-size: 55px;
            font-weight: bold;
            margin-bottom: 40px;
        }


        #backoffice-form .backoffice-form-wrapper .backoffice-section {
            border: 3px solid #ffd71d;
            padding: 30px 20px 20px 20px;
            border-radius: 20px;
            margin-bottom: 30px;
            position: relative;
        }

            #backoffice-form .backoffice-form-wrapper .backoffice-section .backoffice-section-title {
                color: #ffd71d;
                font-size: 30px;
                background: #14141d;
                position: absolute;
                top: -15px;
                left: 25px;
                padding: 0px 10px;
            }


#backoffice-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 0px 50px 0px;
}

    #backoffice-grid .backoffice-grid-wrapper {
        width: 90%;
        padding: 20px;
    }

        #backoffice-grid .backoffice-grid-wrapper .backoffice-grid-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            margin-bottom: 30px;
        }


            #backoffice-grid .backoffice-grid-wrapper .backoffice-grid-title .title {
                color: #ffd71d;
                font-size: 55px;
                text-transform: uppercase;
                font-weight: bold;
            }

            #backoffice-grid .backoffice-grid-wrapper .backoffice-grid-title .button-link {
                color: #000000;
                font-size: 20px;
                line-height: 20px;
                font-weight: 400;
                background: #ffd71d;
                border: 1px solid #ffd71d;
                border-radius: 30px;
                transition: all 0.2s ease-in-out;
                display: inline-block;
                text-align: center;
                text-decoration: none;
                outline: none;
                padding: 12px 30px 14px 30px;
                margin-right: 5px;
            }


#backoffice-calendar {
    width: 100%;
    border: 3px solid #ffd71d;
    padding: 30px 20px 20px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    background: #ffffff;
    margin-top: 40px;
}

    #backoffice-calendar .backoffice-calendar-title {
        color: #ffd71d;
        font-size: 30px;
        position: absolute;
        top: -40px;
        left: 25px;
        padding: 0px 10px;
    }



/*****************************************
* Home Intro
*****************************************/
#home-intro {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:460px) {
    #home-intro {
        padding: 0px;
    }
}



#home-intro .home-intro-text-top {
    color: #ffe34c;
    position: absolute;
    bottom: auto;
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    z-index: 2;
    top: 20%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center;
}

    #home-intro .home-intro-text-top .home-intro-headline {
        font-size: 34px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 15px;
        width: 100%;
        text-transform: uppercase;
    }

    #home-intro .home-intro-text-top .home-intro-subheadline {
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        width: 100%;
    }

@media(max-width:460px) {
    #home-intro .home-intro-text-top {
        top: 10%;
        left: 10%;
        transform: translate(-10%, -10%);
    }

        #home-intro .home-intro-text-top .home-intro-headline {
            font-size: 28px;
            line-height: 28px;
            margin-bottom: 5px;
        }

        #home-intro .home-intro-text-top .home-intro-subheadline {
            font-size: 16px;
            line-height: 20px;
        }
}



#home-intro .home-intro-button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
}

    #home-intro .home-intro-button .btn-contact {
        padding: 18px 30px;
        color: #000000;
        background-color: #ffe34c;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }

    #home-intro .home-intro-button .btn-contact-outline {
        padding: 18px 30px;
        color: #ffe34c;
        background-color: transparent;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }


@media(max-width:460px) {
    #home-intro .home-intro-button .btn-contact {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }

    #home-intro .home-intro-button .btn-contact-outline {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }
}



#home-intro .home-intro-logo {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #home-intro .home-intro-logo img {
        width: 30%;
    }




.home-intro-wrapper {
    height: 70vh;
    min-height: 680px;
    /*max-width: 1920px;*/
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .home-intro-wrapper .home-intro-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }




/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background: #1a110a;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: none;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                margin-bottom: 20px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 30%;
                }

@media(max-width:960px) {
    #menuModal .modal-dialog {
        max-width: 100%;
    }

        #menuModal .modal-dialog .modal-content .menu-brand img {
            width: 60%;
        }
}


#mobile-menu {
    list-style: none;
    padding-left: 0px;
}


    #mobile-menu li a,
    #mobile-menu li .mobile-menu {
        color: #ffffff;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0px;
        padding: 8px 0px;
        text-transform: unset;
        display: flex;
        align-items: center;
    }

        #mobile-menu li .mobile-menu i {
            font-size: 10px;
            margin-left: 5px;
        }

    #mobile-menu li .register-menu {
        font-size: 16px;
        line-height: 20px;
        color: #ffffff;
        padding: 8px 0px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: 0.3s ease;
        display: inline-block;
        margin: 10px 20px 0px 0px;
        text-decoration: none;
        width: 150px;
        text-align: center;
        border-radius: 10px;
        background: linear-gradient(180deg, #d2b184 0%, #bc8f5a 100%);
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 8px 20px rgba(216, 179, 92, .25);
    }

    #mobile-menu li .login-menu {
        font-size: 16px;
        line-height: 20px;
        color: #ffffff;
        padding: 8px 0px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: 0.3s ease;
        display: inline-block;
        margin: 10px 0px;
        text-decoration: none;
        width: 150px;
        text-align: center;
        border-radius: 10px;
        border: 1px solid rgba(210, 170, 110, .45);
        background: rgba(18, 15, 12, .35);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 0 12px rgba(200, 157, 69, .18);
    }



.submobile-menu {
    list-style: none;
    background: #000000;
    border: 1px solid rgba(53, 180, 253, 0.3);
    padding: 10px 15px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none;
    background: rgba(0, 0, 0, .9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
    border: 1px solid rgba(198, 155, 90, .82);
}

    .submobile-menu .submobile-menu-item {
        font-size: 14px !important;
        line-height: 14px !important;
        display: block;
    }




/*****************************************
* Popup Modal
*****************************************/
#popupModal {
    /*background: linear-gradient(to right, #002454, #010c1e);*/
}

    #popupModal .modal-dialog .modal-content .close {
        position: absolute;
        top: -20px;
        right: 0px;
        opacity: 1;
    }

/*#popupModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #popupModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: none;
        }

            #popupModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #popupModal .modal-dialog .modal-content .menu-brand {
                margin-bottom: 20px;
            }

                #popupModal .modal-dialog .modal-content .menu-brand img {
                    width: 30%;
                }*/


/*****************************************
* Notice Box
*****************************************/
#home-about {
    padding: 100px 0px 100px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

.home-about {
    width: 70%;
    margin: 0px auto;
}

    .home-about .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


    .home-about .detail {
        color: #ffffff;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

        .home-about .detail b, .home-about .detail strong {
            color: #f10040;
        }

        .home-about .detail a[href^="tel"],
        .home-about .detail a[href^="mailto"] {
            color: #ffe34c;
            text-decoration: none;
        }


@media (max-width: 460px) {
    #home-about {
        padding: 50px 0px 50px 0px;
    }

    .home-about {
        width: 100%;
    }

        .home-about .title {
            font-size: 30px;
            line-height: 34px;
        }


        .home-about .detail {
            width: 100%;
            font-size: 16px;
            line-height: 18px;
        }
}




/*****************************************
* Home Main
*****************************************/
#home-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 100px 0px 100px 0px;
}

    #home-main .title {
        color: #e6e7e8;
        font-size: 36px;
        line-height: 44px;
        font-weight: 600;
        width: 65%;
        margin: 0px auto 50px auto;
        text-align: center;
    }


@media(max-width:460px) {
    #home-main {
        padding: 50px 0px 50px 0px;
    }

        #home-main .title {
            font-size: 26px;
            line-height: 34px;
            width: 100%;
            margin: 0px auto 50px auto;
        }
}

.home-video-container {
    margin-bottom: 40px;
}

.home-video-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .home-video-footer .btn-main, .home-video-footer .btn-main:hover {
        font-size: 24px;
        line-height: 26px;
        font-weight: 600;
        display: inline-block;
        margin: 0px 8px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: all .2s;
        text-align: center;
        vertical-align: middle;
        letter-spacing: 0px;
        border: 2px solid;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
        border: 4px solid #0056ff;
        color: #fff;
        background-color: #0056ff;
        border-radius: 15px;
        padding: 20px 50px;
        text-decoration: none;
    }

    .home-video-footer .btn-main-outline, .home-video-footer .btn-main-outline:hover {
        font-size: 24px;
        line-height: 26px;
        font-weight: 600;
        display: inline-block;
        margin: 0px 8px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: all .2s;
        text-align: center;
        vertical-align: middle;
        letter-spacing: 0px;
        border: 2px solid;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
        border: 4px solid #0056ff;
        color: #0056ff;
        border-radius: 15px;
        padding: 20px 50px;
        text-decoration: none;
    }

@media (max-width: 460px) {

    .home-video-footer .btn-main, .home-video-footer .btn-main:hover {
        font-size: 16px;
        line-height: 18px;
        margin: 0px 10px;
        padding: 10px 10px;
        border: 2px solid #e74e25;
    }

    .home-video-footer .btn-main-outline, .home-video-footer .btn-main-outline:hover {
        font-size: 16px;
        line-height: 18px;
        margin: 0px 10px;
        padding: 10px 10px;
        border: 2px solid #e74e25;
    }
}


/*****************************************
* Home Intro
*****************************************/
#home-intro {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:460px) {
    #home-intro {
        padding: 0px;
    }
}


/*****************************************
* mt5 Intero
*****************************************/
/*#mt5-intro {
    padding: 200px 0px;
    color: #1f1f1f;
    background: #f5f5f5 url('/upload/platform/bg-intro.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}


.mt5-intro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .mt5-intro .mt5-intro-left {
        width: 60%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .mt5-intro .mt5-intro-left .title {
            font-size: 46px;
            line-height: 46px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .mt5-intro .mt5-intro-left .subtitle {
            font-size: 20px;
            line-height: 30px;
        }

        .mt5-intro .mt5-intro-left .button-action {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-top: 40px;
        }

            .mt5-intro .mt5-intro-left .button-action .button-action-item {
                width: 36%;
                margin-right: 20px;
            }

    .mt5-intro .mt5-intro-right {
        width: 40%;
    }*/



/*****************************************
* meta-trader
*****************************************/
#meta-trader {
    padding: 100px 0px;
    color: #3f1b03;
    /*background: #f5f5f5 url('/upload/platform/bg-mt5-benefits.png');*/
    background: #f3f3f5;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

    #meta-trader .title {
        font-size: 40px;
        line-height: normal;
        font-weight: 600;
        text-align: center;
        margin-bottom: 15px;
    }

    #meta-trader .subtitle {
        font-size: 20px;
        line-height: normal;
        font-weight: 400;
        margin-bottom: 50px;
        letter-spacing: 0px;
        text-align: center;
    }

@media(max-width:960px) {
    #meta-trader {
        padding: 50px 0px;
    }
}


@media(max-width:460px) {
    #meta-trader {
        padding: 50px 0px;
    }

        #meta-trader .title {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        #meta-trader .subtitle {
            font-size: 12px;
            line-height: 16px;
            margin-bottom: 20px;
        }
}


.meta-trader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


    .meta-trader .meta-trader-left {
        width: 60%;
    }

        .meta-trader .meta-trader-left .header {
            font-size: 40px;
            line-height: normal;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0px 20px 0px 20px;
        }

        .meta-trader .meta-trader-left .subheader {
            margin: 0px 20px;
            font-size: 20px;
            line-height: 26px;
        }


    .meta-trader .meta-trader-right {
        width: 40%;
    }


@media(max-width:960px) {

    .meta-trader .meta-trader-left {
        width: 65%;
    }

        .meta-trader .meta-trader-left .header {
            font-size: 28px;
            line-height: 34px;
        }

        .meta-trader .meta-trader-left .subheader {
            font-size: 16px;
            line-height: 20px;
        }

    .meta-trader .meta-trader-right {
        width: 35%;
    }
}


@media(max-width:460px) {
    .meta-trader .meta-trader-left {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

        .meta-trader .meta-trader-left .header {
            font-size: 24px;
            line-height: 30px;
            margin: 0px 5%;
            text-align: center;
        }

        .meta-trader .meta-trader-left .subheader {
            font-size: 16px;
            line-height: 20px;
            margin: 0px 5%;
            text-align: center;
        }

    .meta-trader .meta-trader-right {
        width: 100%;
        order: 1;
    }
}


.meta-trader-benefits {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px;
    margin-top: 20px;
}


    .meta-trader-benefits .meta-trader-benefits-item {
        background: #ffffff;
        width: calc(100% / 3 - 20px);
        margin: 10px;
        border-radius: 10px;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        transition: 0.2s ease all;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    }

        .meta-trader-benefits .meta-trader-benefits-item:hover {
            /*transform: translateY(-2px);*/
            transform: scale(1.05);
        }

        .meta-trader-benefits .meta-trader-benefits-item .benefits-item-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 14px;
            line-height: 20px;
        }

        .meta-trader-benefits .meta-trader-benefits-item .benefits-item-detail {
            color: #C39F83;
            font-size: 12px;
            line-height: normal;
        }


@media(max-width:960px) {
    .meta-trader-benefits {
        padding: 0px;
    }

        .meta-trader-benefits .meta-trader-benefits-item {
            margin: 10px auto 10px auto;
        }
}

@media(max-width:460px) {
    .meta-trader-benefits {
        padding: 0px;
    }

        .meta-trader-benefits .meta-trader-benefits-item {
            width: 95%;
            margin: 10px;
        }
}


.meta-trader-download {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px;
}

    .meta-trader-download .meta-trader-download-item {
        width: calc(100% / 4);
        margin-right: 10px;
    }

        .meta-trader-download .meta-trader-download-item :hover {
            transform: translateY(-2px);
        }

@media(max-width:460px) {
    .meta-trader-download .meta-trader-download-item {
        width: calc(100% / 2 - 10px);
    }
}



/*****************************************
* footer-main
*****************************************/
.footer-main {
    color: #ffffff;
    padding: 60px 0px 20px 0px;
    background: #1a110a url('/upload/footer/footer.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    font-weight: 400;
    font-size: 14px;
}

@media(max-width:460px) {
    .footer-main {
        padding: 50px 0px;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: top -50% right 6%;
    }
}


.footer-main-wrapper {
    width: 80%;
    margin: 0px auto;
    /*border:1px solid red;*/
}

@media(max-width:960px) {
    .footer-main-wrapper {
        width: 95%;
    }
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
}

    .footer-column.logo-column {
        width: 25%;
    }

        .footer-column.logo-column .footer-logo {
            width: 70%;
            margin-bottom: 20px;
        }

    .footer-column.market-column {
        width: 15%;
    }

    .footer-column.trading-column {
        width: 20%;
    }

    .footer-column.platforms-column {
        width: 15%;
    }

    .footer-column.contact-column {
        width: 25%;
    }

    .footer-column .copyright {
        font-weight: 400;
        color: #c69b72;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #c69b72;
        font-weight: 600;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .footer-column a {
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-column a:hover {
            color: #fff;
        }

@media(max-width:960px) {
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-column li {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }

    .footer-column.logo-column {
        width: 20%;
    }

    .footer-column.market-column {
        width: 15%;
    }

    .footer-column.trading-column {
        width: 20%;
    }

    .footer-column.platforms-column {
        width: 15%;
    }

    .footer-column.contact-column {
        width: 20%;
    }
}


@media(max-width:460px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
        margin-bottom: 0px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

        .footer-column.logo-column {
            width: 100%;
        }

            .footer-column.logo-column .footer-logo {
                width: 35%;
            }

        .footer-column.market-column {
            width: 100%;
        }

        .footer-column.trading-column {
            width: 100%;
        }

        .footer-column.platforms-column {
            width: 100%;
        }

        .footer-column.contact-column {
            width: 100%;
        }
}


.footer-license {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

    .footer-license p {
        font-size: 14px;
        line-height: 24px;
    }

.footer-remark {
    margin-bottom: 20px;
}

    .footer-remark p {
        font-size: 14px;
        line-height: 24px;
    }

    .footer-remark span {
        color: #c69b72;
        font-size: 14px;
        line-height: 24px;
    }



.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}


@media(max-width:460px) {
    .footer-remark {
        margin-bottom: 0px;
    }
}



.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 0px;
}

    .footer-social .footer-social-item {
        width: 30px;
        margin-right: 15px;
    }

        .footer-social .footer-social-item:hover {
            transform: translateY(-4px);
        }


@media(max-width:960px) {
    .footer-social .footer-social-item {
        width: 26px;
        margin-right: 10px;
    }
}

.download-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
}

    .download-platforms .download-platforms-item {
        width: calc(100% / 2 - 10px);
        margin: 5px 10px 5px 0px;
    }

        .download-platforms .download-platforms-item:hover {
            transform: translateY(-4px);
        }

@media(max-width:460px) {
    .download-platforms .download-platforms-item {
        width: calc(100%/5);
    }
}

/*****************************************
* qrs-intro
*****************************************/
/*#qrs-intro {
    padding: 100px 0px 0px 0px;
    color: #1f1f1f;
    background: #f5f5f5 url('/upload/platform/bg-intro.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}


.qrs-intro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .qrs-intro .qrs-intro-left {
        width: 60%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .qrs-intro .qrs-intro-left .title {
            font-size: 60px;
            line-height: 60px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .qrs-intro .qrs-intro-left .subtitle {
            font-size: 30px;
            line-height: 30px;
        }

        .qrs-intro .qrs-intro-left .button-action {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-top: 40px;
        }

            .qrs-intro .qrs-intro-left .button-action .button-action-item {
                width: calc(100% / 4);
            }

    .qrs-intro .qrs-intro-right {
        width: 40%;
    }

        .qrs-intro .qrs-intro-right img {
            width: 70%;
        }
*/

/*****************************************
* qrs-intro
*****************************************/
#qrs-benefit {
    padding: 100px 0px;
    color: #ffffff;
}

    #qrs-benefit .title {
        font-size: 55px;
        line-height: 60px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 15px;
    }

    #qrs-benefit .subtitle {
        font-weight: 400;
        line-height: normal;
        font-size: 24px;
        margin-bottom: 50px;
        letter-spacing: 0px;
        text-align: center;
    }


/*****************************************
* mt5-mobile
*****************************************/
#mt5-mobile {
    padding: 50px 0px;
    color: #ffffff;
    background: linear-gradient(to right, #000000, #737373);
}


.mt5-mobile {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .mt5-mobile .mt5-mobile-left {
        width: 60%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .mt5-mobile .mt5-mobile-left .title {
            font-size: 60px;
            line-height: 60px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .mt5-mobile .mt5-mobile-left .subtitle {
            font-size: 30px;
            line-height: 30px;
        }

        .mt5-mobile .mt5-mobile-left .button-action {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-top: 40px;
        }

            .mt5-mobile .mt5-mobile-left .button-action .button-action-item {
                width: calc(100% / 4);
                margin-right: 0px;
            }

    .mt5-mobile .mt5-mobile-right {
        width: 40%;
    }

        .mt5-mobile .mt5-mobile-right img {
            width: 70%;
        }


/*****************************************
* qrs-intro
*****************************************/
/*#how-get-mt5 {
    padding: 100px 0px;
    color: #ffffff;
}

    #how-get-mt5 .title {
        font-size: 55px;
        line-height: 60px;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 60px;
    }

    #how-get-mt5 .subtitle {
        font-weight: 400;
        line-height: normal;
        font-size: 32px;
        margin-bottom: 10px;
        letter-spacing: 0px;
        text-align: center;
    }


.how-get-mt5 {
    width: 80%;
    margin: 0px auto 60px auto;
}

    .how-get-mt5:last-child {
        margin: 0px auto 0px auto;
    }


    .how-get-mt5 .download-button {
        text-align: center;
        margin-top: 40px;
    }

        .how-get-mt5 .download-button img {
            height: 80px;
        }*/




/*****************************************
* Statistics
*****************************************/
.main-content {
    padding: 100px 0px;
}

    .main-content .title {
        font-size: 36px;
        line-height: normal;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
    }

    .main-content .subtitle {
        font-size: 24px;
        line-height: normal;
        font-weight: 400;
        margin: 0px auto 30px auto;
        letter-spacing: 0px;
        text-align: center;
        width: 80%;
    }

@media(max-width:960px) {
    .main-content {
        padding: 50px 0px;
    }

        .main-content .title {
            font-size: 28px;
            line-height: 34px;
            margin-bottom: 10px;
        }

        .main-content .subtitle {
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 20px;
            padding: 0px 10px;
            width: 100%;
        }
}



@media(max-width:460px) {
    .main-content {
        padding: 50px 0px;
    }

        .main-content .title {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        .main-content .subtitle {
            font-size: 12px;
            line-height: 18px;
            margin-bottom: 20px;
            padding: 0px 10px;
            width: 100%;
        }
}



/*****************************************
* Get Button
*****************************************/
#getbutton {
    background: linear-gradient(90deg, #EDDCA4 0%, #E4C977 30%, #D8B35C 70%, #C89D45 100%);
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    z-index: 999;
}

.getbutton {
    width: 60px;
    height: 60px;
    position: relative;
}

    .getbutton .getbutton-icon-comment {
        height: 60px;
        width: 60px;
        background: url('/frontend-assets/images/icons/bubble-chat.png');
        background-repeat: no-repeat;
        background-size: 50px 50px;
        background-position: center;
        transform: rotate(0deg);
        transition: 0.3s ease all;
        text-align: center;
    }

    .getbutton:hover .getbutton-icon-comment {
        transform: rotate(180deg);
        background: url('/frontend-assets/images/icons/close-chat.png');
        background-repeat: no-repeat;
        background-size: 50px 50px;
        background-position: center;
    }

    .getbutton .getbutton-panel {
        height: 0px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        width: 60px;
    }

    .getbutton:hover .getbutton-panel {
        height: 350px;
    }

    .getbutton .getbutton-panel .getbutton-item {
        display: none;
    }

    .getbutton:hover .getbutton-panel .getbutton-item {
        display: block;
        margin: 10px auto;
        transform: scale(1);
        transition: 0.2s ease all;
    }

        .getbutton:hover .getbutton-panel .getbutton-item:hover {
            transform: scale(1.2);
        }

#contact-global {
    position: relative;
}

    #contact-global .rotate-icon {
        width: 80px;
        position: absolute;
        bottom: 40px;
        left: 40px;
        z-index: 100;
    }



/*****************************************
* Banner
*****************************************/
.bannerimage {
    margin-bottom: 20px;
}


/*****************************************
* Footer Banner
*****************************************/
#footer-banner {
    margin-bottom: 20px;
}


/*****************************************
* partner-vdo
*****************************************/
#partner-vdo {
    padding: 0px;
}

/*#partner-vdo .video-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

        #partner-vdo .video-wrapper video {
            width: 100%;
            height: auto;
            display: block;
            border: none;
            object-fit: cover;
        }


    #partner-vdo .video-wrapper {
        position: relative;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }

    #partner-vdo .youtube-lazy {
        position: relative;
        padding-bottom: 56.25%;*/ /* 16:9 ratio */
/*height: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        background: #000;
        cursor: pointer;
    }

        #partner-vdo .youtube-lazy iframe,
        #partner-vdo .youtube-lazy .youtube-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    #partner-vdo .youtube-thumbnail {
        background-size: cover;
        background-position: center;
        transition: 0.3s;
    }

        #partner-vdo .youtube-thumbnail:hover {
            filter: brightness(0.8);
        }

    #partner-vdo .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 68px;
        height: 48px;
        background: url('https://www.gstatic.com/images/icons/material/system/2x/play_circle_filled_white_48dp.png') no-repeat center;
        background-size: contain;
        opacity: 0.9;
        transition: 0.3s;
    }

    #partner-vdo .youtube-lazy:hover .play-button {
        opacity: 1;
    }*/



/*****************************************
* Banner
*****************************************/
#popup-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    transform: scaleY(1) translateY(0);
    transform-origin: bottom center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

    /* ระหว่าง scroll */
    #popup-footer.is-scrolling {
        transform: scaleY(0.92) translateY(8px);
    }


    #popup-footer .popup-footer-close {
        position: absolute;
        top: -20px;
        right: 10px;
        background: #ffffff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    #popup-footer .popup-footer-button {
        position: absolute;
        top: 40%;
        right: 8%;
    }

    #popup-footer .glow-button {
        padding: 10px 30px;
    }

    #popup-footer img {
        /*-moz-animation: blink normal 2s infinite ease-in-out;*/ /* Firefox */
        /*-webkit-animation: blink normal 2s infinite ease-in-out;*/ /* Webkit */
        /*-ms-animation: blink normal 2s infinite ease-in-out;*/ /* IE */
        /*animation: popup-footer normal 2s infinite ease-in-out;*/ /* Opera and prob css3 final iteration */
    }


@keyframes bounceFade {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#popup-footer.show .popup-footer-button {
    animation: bounceFade 0.6s ease-out;
}

@media(max-width:460px) {
    #popup-footer .popup-footer-close {
        top: -10px;
        right: 10px;
    }

    #popup-footer .popup-footer-button {
        top: inherit;
        bottom: 10px;
        right: 30%;
    }

    #popup-footer .glow-button {
        padding: 0px 10px;
        width: 150px;
    }
}

@-moz-keyframes popup-footer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes popup-footer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes popup-footer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes popup-footer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*****************************************
* BRX Footer
*****************************************/
.brx-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #000000 url('/upload/footer/footer.jpg') center top / cover no-repeat;
    padding: 70px 24px 64px;
}

.brx-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .78) 52%, rgba(0, 0, 0, .38) 100%);
    pointer-events: none;
}

.brx-footer__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1030px);
    margin: 0 auto;
}

.brx-footer h3,
.brx-footer p,
.brx-footer ul,
.brx-footer address {
    margin: 0;
}

.brx-footer__top {
    display: grid;
    grid-template-columns: minmax(230px, 1.12fr) minmax(160px, .78fr) minmax(170px, .85fr) minmax(250px, 1.16fr);
    gap: 36px;
    align-items: start;
}

.brx-footer__brand {
    padding-right: 30px;
    border-right: 1px solid rgba(198, 155, 90, .36);
}

.brx-footer__logo img {
    width: 215px;
    max-width: 100%;
    display: block;
}

.brx-footer__brand > p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.45;
}

.brx-footer__social-wrap {
    margin-top: 25px;
}

.brx-footer__social-wrap h3,
.brx-footer__links h3,
.brx-footer__platforms h3,
.brx-footer__contact h3 {
    color: #c69b72;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.brx-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 18px;
}

.brx-footer__social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid rgba(198, 155, 90, .9);*/
    border-radius: 50%;
    color: #c69b72;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.brx-footer__social a:hover {
    border-color: #ffffff;
    background: rgba(198, 155, 90, .12);
    transform: translateY(-2px);
}

    .brx-footer__social img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

.brx-footer__social i {
    font-size: 17px;
}

.brx-footer__copyright,
.brx-footer__registration {
    color: rgba(255, 255, 255, .78) !important;
    font-size: 10px !important;
}

.brx-footer__copyright {
    margin-top: 21px !important;
}

.brx-footer__registration {
    margin-top: 12px !important;
}

.brx-footer__links ul {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}

.brx-footer__links a {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: rgba(255, 255, 255, .86);
    font-size: 10px;
    line-height: 1.25;
    text-decoration: none;
}

.brx-footer__links a::before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 0;
    color: #c69b72;
    font-family: FontAwesome;
    font-size: 15px;
    line-height: 1;
}

.brx-footer__links a:hover {
    color: #ffffff;
}

.brx-footer__platforms > p {
    max-width: 168px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .86);
    font-size: 10px;
    line-height: 1.55;
}

.brx-footer__platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 72px);
    gap: 7px;
    margin-top: 15px;
}

.brx-footer__platform-grid a {
    min-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(198, 155, 90, .65);
    border-radius: 5px;
    color: rgba(255, 255, 255, .9);
    font-size: 8px;
    text-decoration: none;
    background: rgba(0, 0, 0, .45);
}

.brx-footer__platform-grid a:hover {
    border-color: #ffffff;
}

    .brx-footer__platform-grid img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.brx-footer__contact {
    font-style: normal;
}

.brx-footer__contact-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 13px;
    margin-top: 19px;
}

.brx-footer__contact-item i {
    color: #c69b72;
    font-size: 19px;
    line-height: 1.1;
    text-align: center;
}

.brx-footer__contact-item p,
.brx-footer__contact-item a {
    color: rgba(255, 255, 255, .84);
    font-size: 10px;
    line-height: 1.5;
    text-decoration: none;
}

.brx-footer__contact-item span {
    display: block;
    color: #c69b72;
}

.brx-footer__info {
    display: grid;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(198, 155, 90, .45);
}

.brx-footer__info-row {
    display: grid;
    grid-template-columns: 215px minmax(0, 1fr);
    gap: 18px;
}

.brx-footer__info-title {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.brx-footer__info-title i {
    width: 30px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c69b72;
    font-size: 22px;
}

.brx-footer__info-title h3 {
    color: #c69b72;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.brx-footer__info-row p {
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    line-height: 1.5;
}

.brx-footer__risk {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(198, 155, 90, .45);
}

.brx-footer__risk p {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    line-height: 1.45;
}

.brx-footer__risk strong {
    color: #c69b72;
}

@media (max-width: 991px) {
    .brx-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brx-footer__brand {
        padding-right: 0;
        border-right: 0;
    }

    .brx-footer__info-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .brx-footer {
        background-image: url('/upload/footer/mobile-footer.jpg');
        padding: 48px 20px 46px;
    }

    .brx-footer::before {
        background: rgba(0, 0, 0, .78);
    }

    .brx-footer__top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .brx-footer__logo img {
        width: 190px;
    }

    .brx-footer__platform-grid {
        grid-template-columns: repeat(2, minmax(0, 92px));
    }
}

@media (max-width: 420px) {
    .brx-footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .brx-footer__social {
        gap: 10px;
    }
}
