@charset "UTF-8";
/* CSS Document */

/*global*/

* {margin: 0; padding: 0;}

html, body {height: 100%;}
a {text-decoration: none; color: unset;}

html { font-size: 62.5%; }

img{
    display: block;
    width: 100%;
}


.clearfloat {
    clear: both;
    height: 0;
}

.mobile-br{
    display: none;
}

.desktop-br{
    display: block;
}

.mobile-img{
    display: none !important;
}

.desktop-img{
    display: block !important;
}

.default {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -moz-transform: translatey(100px);
    -ms-transform: translatey(100px);
    opacity: 0;
}

.default.arrive {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
}


.default-up {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transform: translatey(-100px);
    -webkit-transform: translatey(-100px);
    -moz-transform: translatey(-100px);
    -ms-transform: translatey(-100px);
    opacity: 0;
}

.default-up.arrive {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
}

.default-left {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    opacity: 0;
}

.default-left.arrive {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
}

.default-right {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    opacity: 0;
}

.default-right.arrive {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
}

.default-opacity {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    opacity: 0;
}

.default-opacity.arrive {
    opacity: 1;
}

.default-reveal {
    display: inline-block;
    transition: all .6s cubic-bezier(0.96, 0.04, 0.43, 0.76);
    -webkit-transition: all .6s cubic-bezier(0.96, 0.04, 0.43, 0.76);
    -moz-transition: all .6s cubic-bezier(0.96, 0.04, 0.43, 0.76);
    -o-transition: all .6s cubic-bezier(0.96, 0.04, 0.43, 0.76);
    -ms-transition: all .6s cubic-bezier(0.96, 0.04, 0.43, 0.76);
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);

}

.default-reveal.arrive {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);

}






/* end global*/


.container{
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

.container90{
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.float-left{
    float: left;
    width: 50%;
    box-sizing: border-box;
}

.float-right{
    float: right;
    width: 50%;
    box-sizing: border-box;
}

.bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}







#ie-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
}

#ie-popup.show{
    opacity: 1;
    pointer-events: auto;
}

#ie-popup .content{
    position: absolute;
    width: 80%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 20px;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#ie-popup .content .text-container{
    width: 80%;
    padding: 40px;
    text-align: center;

}


#ie-popup .content .text-container i{
    font-size: 7rem;
    color: #dc4f4d;

}

#ie-popup .content .text-container h3{
    font-size: 3rem;
    max-width: 380px;
    margin: auto;
    padding-top: 10px;
    color: #000000;
}

#ie-popup .content .text-container .row{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    grid-auto-rows: 1fr;
    padding-top: 30px;
}

#ie-popup .content .text-container .row .col{
    width: 50%;
    display: block;
}

#ie-popup .content .text-container .row .col a{
    osition: relative;
    color: #ffffff;
    font-size: 1.8rem;
    display: inline-block;

    cursor: pointer;
    border-radius: 25px;
    padding: 7px 30px;
    -webkit-transition: all .5s ease, -webkit-transform 1s ease, opacity 1s ease;
    -moz-transition: all .5s ease, -moz-transform 1s ease, opacity 1s ease;
    -o-transition: all .5s ease, -ms-transform 1s ease, opacity 1s ease;
    -ms-transition: all .5s ease, -ms-transform 1s ease, opacity 1s ease;
    margin: auto;
    width: 80%;
    box-sizing: border-box;
}

#ie-popup .content .text-container .row .col #download-chrome{
    background: #408ccb;
    border: 1px solid #408ccb;
}

#ie-popup .content .text-container .row .col #enter{
    background: #dc4f4d;
    border: 1px solid #dc4f4d;
}


#ie-popup .content .text-container .row .col #download-chrome:hover{
    background: transparent;
    color: #408ccb;
}

#ie-popup .content .text-container .row .col #enter:hover{
    background: transparent;
    color: #dc4f4d;
}













































@media (max-width: 999px) {

    /*global*/

    html {
        font-size: 58%;
    }

    .mobile-br{
        display: block ;
    }

    .desktop-br{
        display: none ;
    }

    .mobile-img{
        display: block !important;
    }

    .desktop-img{
        display: none !important;
    }

    .float-left{
        float: unset;
        width: 100%;
    }

    .float-right{
        float: unset;
        width: 100%;
    }


    /* end global*/






































}

@media (max-width: 360px) {





}

@media (min-width: 768px) and (max-width: 999px) {

    .mobile-br {
        display: none;
    }












}




@media (min-width: 1000px) and (max-width: 1199px) {










}

@media (min-width: 1199px) and (max-height: 850px) {




}




