﻿body {
    font-family: "Manrope", "Noto Sans Thai", sans-serif;
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    /*background: #002454;*/ /* fallback for old browsers */
    /*background: -webkit-linear-gradient(to right, #002454, #010c1e);*/ /* Chrome 10-25, Safari 5.1-6 */
    /*background: linear-gradient(to right, #002454, #010c1e);*/ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: #010e21;
}

.gray-text {
    color: #8690a0;
}

.blue-text {
    color: #35b4fd;
}

.small-font-size {
    font-size: 16px;
    line-height: 20px;
}


.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;
}

/*.container {
    max-width: 100%;
    max-width: 1140px;
}


@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}*/

.error-message {
    color: #ffffff;
    background-color: #ff263a;
    border-color: #ff263a;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
}


/*****************************************
* Mega Menu
*****************************************/
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    background: linear-gradient(to right, #002454, #010c1e);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

    .nav .mego-logo img {
        width: auto;
        height: 50px;
    }

    .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");
    }


@media (max-width: 960px) {
    .nav {
        height: 70px;
        height: 70px;
        background: #f3f3f5;
    }

        .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(0,0,0, 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: #f3f3f5;
    }

        .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(0,0,0, 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: 22px 20px
        }

            .mega__menu ul.main-menu li a {
                text-decoration: none;
                color: #fff;
                font-size: 16px;
                letter-spacing: 0;
            }


            .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 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
                    transition: color 0.3s, text-shadow 0.3s;
                }


            .mega__menu ul.main-menu li .sub__menu {
                position: absolute;
                background: linear-gradient(to right, #002454, #182b4b);
                width: 100%;
                left: 0;
                top: 100px;
                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 {
                        font-size: 16px;
                        line-height: 20px;
                        letter-spacing: 0px;
                        text-transform: none;
                    }

                        .mega__menu ul.main-menu li .sub__menu ul li a:hover {
                            text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
                            transition: color 0.3s, text-shadow 0.3s;
                        }


@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 {
        font-size: 16px;
        line-height: normal;
        color: #ffffff;
        background: #0c5b9f;
        padding: 13px 0px;
        border-radius: 5px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: 0.3s ease;
        display: inline-block;
        margin: 0px 20px 0px 0px;
        text-decoration: none;
        width: 180px;
        text-align: center;
    }

        .mega__button .register-button:hover {
            color: #ffffff;
            text-decoration: none;
            /*transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(86, 204, 242, 0.6);*/
            /*background: linear-gradient(180deg, #4465ad, transparent);*/
            background: #0b4373;
        }

    .mega__button .login-button {
        font-size: 16px;
        line-height: normal;
        color: #ffffff;
        background: transparent;
        border: 1px solid #ffffff;
        padding: 13px 0px;
        border-radius: 5px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(79, 91, 213, 0.6);
        transition: 0.3s ease;
        display: inline-block;
        margin: 0px 5px;
        text-decoration: none;
        width: 180px;
        text-align: center;
    }

        .mega__button .login-button:hover {
            color: #000000;
            text-decoration: none;
            background: #d3d3d3;
            /*transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(86, 204, 242, 0.6);*/
            /*background: linear-gradient(180deg, #c5c5c5, #ffffff) !important;*/
        }


@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: 460px) {

    .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 {
    width: 40px;
    text-align: right;
    font-weight: bold;
    position: relative;
}

    .lang-menu .selected-lang {
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 2;
        cursor: pointer;
        color: #ffffff;
    }

        .lang-menu .selected-lang:before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 30px;
            background-image: url('/frontend-assets/images/flag/flag-en.png');
            background-size: contain;
            background-repeat: no-repeat;
        }

    .lang-menu ul {
        margin: 0;
        padding: 0;
        display: none;
        background: linear-gradient(to right, #002454, #010c1e);
        border: 1px solid #474747;
        position: absolute;
        top: 25px;
        right: 0px;
        width: 170px;
        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;
                width: 150px;
                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');
}

@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;
}

    .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: 12px 30px;
    }
}


@media(max-width:460px) {
    .glow-button {
        padding: 12px 30px;
    }
}


.glow-button-secondary {
    font-size: 16px;
    line-height: normal;
    color: #000000;
    background: #ffffff;
    border: 1px solid #b8b8b8;
    padding: 14px 30px;
    border-radius: 5px;
    letter-spacing: 0px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(79, 91, 213, 0.6);
    transition: 0.3s ease;
    display: inline-block;
    margin: 0px 5px;
    text-decoration: none;
    text-align: center;
    width: 180px;
}

    .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(to right, #002454, #010c1e);
    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: 100px;
    /*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;
}

/*****************************************
* Login Form
*****************************************/
#login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    #login-form .login-form-wrapper {
        width: 450px;
        padding: 20px;
    }

        #login-form .login-form-wrapper.large-form {
            width: 800px;
        }

        #login-form .login-form-wrapper .login-title {
            color: #e74e25;
            font-size: 55px;
            margin-bottom: 40px;
        }

        #login-form .login-form-wrapper .login-logo {
            text-align: center;
        }

            #login-form .login-form-wrapper .login-logo img {
                width: 50%;
            }


        #login-form .login-form-wrapper .login-system-name {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
        }

        #login-form .login-form-wrapper .login-footer-text {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            margin-top: 30px;
            text-transform: uppercase;
        }

            #login-form .login-form-wrapper .login-footer-text a,
            #login-form .login-form-wrapper .login-footer-text a:hover {
                color: #e74e25;
                text-decoration: none;
            }


/*****************************************
* 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: linear-gradient(to right, #002454, #010c1e);
}

    #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: 20%;
        }
}


#mobile-menu {
    list-style: none;
    padding-left: 0px;
}


    #mobile-menu li a,
    #mobile-menu li .mobile-menu {
        color: #fbf5e4;
        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;
        background: #0c5b9f;
        padding: 8px 0px;
        border-radius: 5px;
        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;
    }

    #mobile-menu li .login-menu {
        font-size: 16px;
        line-height: 20px;
        color: #ffffff;
        background: transparent;
        border: 1px solid #ffffff;
        padding: 8px 0px;
        border-radius: 5px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(79, 91, 213, 0.6);
        transition: 0.3s ease;
        display: inline-block;
        margin: 10px 0px;
        text-decoration: none;
        width: 150px;
        text-align: center;
    }



.submobile-menu {
    list-style: none;
    background: linear-gradient(to right, #002454, #182b4b);
    border: 1px solid rgba(53, 180, 253, 0.3);
    padding: 10px 15px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none;
}

    .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: #000000;
    /*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;
        }


    .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 {
            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;
    background: #02142f url('/frontend-assets/images/bg-footer.png');
    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: inherit;
        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: 20%;
    }

        .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: 10%;
    }

    .footer-column.contact-column {
        width: 25%;
    }

    .footer-column .copyright {
        font-weight: 400;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #ffffff;
        font-weight: 600;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li {
    }

    .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-remark {
    margin-bottom: 20px;
}

.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);
    }

        .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: 50px;
        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: #56b3e5;
    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;
}
