/* Animations */
@keyframes fadeInTop {
    from{
        opacity: 0;
        top: 10px;
    }
    to{
        opacity: 1;
        top: 0;
    }
}

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
:focus{
    outline: none;
}
a{
    text-decoration: none;
}
#container{
    width: 1200px;
    margin: 0 auto;
}

/* Text Colors */
.green-text{
    color: #2eb83e !important;
}
.red-text{
    color: red !important;
}

/* Buttons */
.green-button{
    background: #2eb83e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.green-button:hover{
    background: #158921;
}

/* Maintenance */
#maintenance{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#maintenance img{
    height: 170px;
    display: table;
    margin: 0 auto;
    margin-bottom: 20px;
}
#maintenance h1{
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}
#maintenance h2{
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}
#maintenance p{
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
}
#maintenance .social{
    display: table;
    margin: 0 auto;
}
#maintenance .social li{
    float: left;
    list-style: none;
    margin-right: 20px;
}
#maintenance .social a:last-child li{
    margin-right: 0;
}
#maintenance .social li svg{
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 50%;
    background: black;
    color: white;
}

/* Header */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    transition: .2s ease-in-out;
}
header.scrolled{
    background: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px 0;
}
header .logo{
    float: left;
}
header .logo img{
    height: 150px;
    transition: .2s ease-in-out;
}
header .logo h1{
    font-size: 30px;
    color: black;
    line-height: 90px;
    transition: .2s ease-in-out;
}
header.scrolled .logo img{
    height: 79px;
}
header.scrolled .logo h1{
    font-size: 25px;
    line-height: 80px;
}
header .fa-bars{
    display: none;
}
header .menus{
    display: flex;
    flex-wrap: wrap;
}
header .menus .fa-xmark{
    display: none;
}
header .menus nav{
    flex-grow: 1;
    flex-basis: 100%;
}
header .menus nav > ul{
    float: right;
}
header .menus nav.top{
    margin-top: 15px;
}
header .menus nav.top ul li{
    float: left;
    margin-left: 30px;
    list-style: none;
    color: black;
    font-size: 18px;
    font-weight: 500;
    transition: .2s ease-in-out;
}
header.scrolled .menus nav.top ul li{
    font-size: 14px;
}
header .menus nav.top ul a:first-of-type li{
    margin-left: 0;
}
header .menus nav.bottom{
    margin-top: 25px;
    transition: .2s ease-in-out;
}
header.scrolled .menus nav.bottom{
    margin-top: 15px;
}
header .menus nav.bottom > ul > li{
    list-style: none;
    cursor: default;
    position: relative;
    float: left;
    margin-left: 30px;
    padding-bottom: 10px;
}
header .menus nav.bottom > ul > li:first-of-type{
    margin-left: 0;
}
header .menus nav.bottom > ul > li span{
    color: black;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: .2s ease-in-out;
}
header.scrolled .menus nav.bottom > ul > li span{
    font-size: 12px;
}
header .menus nav.bottom > ul > li:hover span{
    color: #31b643;
}
header .menus nav.bottom > ul > li > ul{
    background: white;
    padding: 10px 20px;
    border-radius: 3px;
    margin-top: 10px;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}
header .menus nav.bottom > ul > li > ul.right{
    left: auto;
    right: 0;
}
header .menus nav.bottom > ul > li:hover > ul{
    opacity: 1;
    visibility: visible;
}
header .menus nav.bottom > ul > li > ul > a > li{
    list-style: none;
    color: #262626;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    white-space: nowrap;
    text-align: left;
}
header .menus nav.bottom > ul > li > ul > a:last-of-type > li{
    margin-bottom: 0;
}
header .menus nav.bottom > ul > li > ul > a > li svg{
    margin-right: 10px;
}

/* Main Slider */
.main-slider{
    width: 100%;
    height: 100vh;
}
.main-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}
.main-slider .swiper-slide #container{
    width: 70%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.main-slider .swiper-slide #container .top-title{
    font-weight: 600;
    font-size: 1.8vw;
    letter-spacing: -1.5px;
    position: relative;
    opacity: 0;
    animation-name: fadeInTop;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    display: none;
    margin-bottom: 0.5vw;
}
.main-slider .swiper-slide #container .title{
    font-size: 3.5vw;
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 68px;
    position: relative;
    opacity: 0;
    animation-name: fadeInTop;
    animation-duration: .5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    display: none;
}
.main-slider .swiper-slide #container .bottom-title{
    font-size: 1.3vw;
    font-weight: 400;
    letter-spacing: -0.5px;
    position: relative;
    opacity: 0;
    animation-name: fadeInTop;
    animation-duration: .5s;
    animation-delay: .6s;
    animation-fill-mode: forwards;
    display: none;
    margin-top: 1.5vw;
}
.main-slider .swiper-slide #container .buttons{
    margin: 0 auto;
    margin-top: 3vw;
    position: relative;
    opacity: 0;
    animation-name: fadeInTop;
    animation-duration: .5s;
    animation-delay: .9s;
    animation-fill-mode: forwards;
    display: none;
}
.main-slider .swiper-slide #container .buttons a{
    padding: 0.7vw 2vw;
    color: white;
    background: #3d7ad3;
    border-radius: 3px;
    display: table;
    float: left;
    margin-right: 20px;
    font-size: 1.2vw;
    font-weight: 600;
    border: 3px solid #3d7ad3;
}
.main-slider .swiper-slide #container .buttons a:last-of-type{
    margin-right: 0;
    background: none;
    color: black;
}
.main-slider .swiper-button-prev,
.main-slider .swiper-button-next{
    background: rgba(0,0,0,.5);
    padding: 15px 10px;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
}
.main-slider .swiper-button-prev:after,
.main-slider .swiper-button-next::after{
    font-size: 20px;
}
.main-slider .swiper-button-prev{
    left: 20px;
}
.main-slider .swiper-button-next{
    right: 20px;
}
.main-slider .swiper-pagination-bullet{
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 3px;
}
.main-slider .swiper-pagination-bullet.active{
    background: #3d7ad3;
}

/* Tab */
.tab{
    padding: 60px 0;
    text-align: center;
}
.tab h3{
    font-size: 40px;
    font-weight: 600;
    display: table;
    margin: 0 auto;
    letter-spacing: -0.5px;
}
.tab h3::after{
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    margin: 30px auto;
    margin-top: 20px;
}
.tab.purple h3::after{
    background: #ac2da0;
}
.tab.yellow h3::after{
    background: #ecd23c;
}
.tab.blue h3::after{
    background: #3d7ad3;
}
.tab.red h3::after{
    background: #ab0e17;
}
.tab.green h3::after{
    background: #2eb83e;
}
.tab p{
    font-weight: 200;
    font-size: 16px;
    color: #494949;
}
.tab #container > img{
    width: 70%;
    margin-top: 40px;
}
.tab #container > iframe{
    width: 100%;
    height: 500px;
    margin-top: 40px;
}
.tab .flex{
    display: flex;
    flex-wrap: nowrap;
    margin-top: 40px;
}
.tab .flex section{
    flex: 1 100%;
    padding: 20px;
}
.tab .flex.counter section .count{
    font-size: 50px;
    color: #494949;
}
.tab .flex.counter section .title{
    font-size: 16px;
    color: #8e8e8e;
}
.tab .flex.brands{
    flex-wrap: wrap;
}
.tab .flex.brands section{
    flex: 0 33.33%;
    box-sizing: border-box;
    border-right: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    position: relative;
    height: 150px;
    transition: .2s ease-in-out;
}
.tab .flex.brands section:hover{
    background: #e7e7e7;
}
.tab .flex.brands section:first-child,
.tab .flex.brands section:first-child + section,
.tab .flex.brands section:first-child + section +section{
    border-top: 0;
}
.tab .flex.brands section:nth-of-type(3n + 0){
    border-right: 0;
}
.tab .flex.brands section img{
    max-width: 70%;
    max-height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(1);
    transition: .2s ease-in-out;
}
.tab .flex.brands section:hover img{
    filter: grayscale(0);
}
.tab .flex.news{
    gap: 20px;
    justify-content: center;
}
.tab .flex.news section{
    flex: 0 33.33%;
    padding: 0;
    text-align: left;
    position: relative;
    padding-bottom: 80px;
}
.tab .flex.news section .image{
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}
.tab .flex.news section .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-in-out;
}
.tab .flex.news section .image img:hover{
    transform: scale(1.3);
}
.tab .flex.news section h4{
    font-size: 18px;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.tab .flex.news section h4 a{
    color: black;
    transition: .2s ease-in-out;
}
.tab .flex.news section h4:hover a{
    color: #3d7ad3;
}
.tab .flex.news section p{
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.tab .flex.news section > a{
    display: table;
    padding: 10px 20px;
    border: 3px solid #3d7ad3;
    color: black;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    transition: .2s ease-in-out;
}
.tab .flex.news section > a:hover{
    background: #3d7ad3;
    color: white;
}

/* Bant */
.bant{
    width: 100%;
    padding: 40px 0;
    background: #ab0e17;
    color: white;
}
.bant h4{
    font-size: 25px;
    margin-bottom: 20px;
}
.bant p{
    font-size: 16px;
}
.bant a{
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 3px;
    color: white;
    display: table;
    margin-top: 20px;
    font-weight: 700;
    transition: .2s ease-in-out;
}
.bant a:hover{
    color: #ab0e17;
    background: white;
}

/* Bant 2 */
.bant-2{
    width: 100%;
    padding: 100px 0;
    background: #2eb83e;
    color: white;
}
.bant-2 #container{
    display: flex;
}
.bant-2 #container .left{
    width: 70%;
    padding-right: 40px;
    box-sizing: border-box;
}
.bant-2 .left h4{
    font-size: 20px;
    margin-bottom: 20px;
}
.bant-2 .left p{
    font-size: 14px;
}
.bant-2 .right{
    width: 30%;
    position: relative;
}
.bant-2 .right a{
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 3px;
    color: white;
    display: table;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    transition: .2s ease-in-out;
}
.bant-2 .right a:hover{
    background: white;
    color: #2eb83e;
}

/* List */
.list{
    width: 100%;
    padding-top: 197px;
    padding-bottom: 60px;
}
.list h1{
    font-size: 35px;
    color: #474747;
}
.list span.message{
    font-size: 16px;
    color: #858585;
    display: block;
    margin-top: 20px;
}
.list .flex{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}
.list .flex article{
    flex: 0 100%;
    color: #858585;
    position: relative;
}
.list .flex article .image{
    float: left;
    width: 300px;
    height: 180px;
    margin-right: 20px;
}
.list .flex article .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.list .flex article h3{
    font-size: 22px;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #474747;
}
.list .flex article h3 a{
    color: #474747;
}
.list .flex article p{
    font-size: 14px;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list .flex article > a{
    padding: 5px 10px;
    border: 3px solid #007aff;
    transition: .2s ease-in-out;
    color: black;
    display: table;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 320px;
}
.list .flex article > a:hover{
    background: #007aff;
    color: white;
}

/* Paginate Nav */
nav[role='navigation'].flex{
    gap: 0;
    margin-top: 40px;
}
nav[role='navigation'] a,
nav[role='navigation'] span{
    padding: 5px 10px;
    background: #e7e7e7;
    display: table;
    float: left;
    margin-right: 20px;
    font-size: 14px;
    font-weight: bold;
    color: black;
}
nav[role='navigation'] a{
    background: #007aff;
    color: white;
}

/* Article */
.article{
    width: 100%;
    padding-top: 197px;
    padding-bottom: 60px;
}
.article article > h1{
    font-size: 35px;
    color: #474747;
}
.article article .category{
    padding: 7px 14px;
    background: #007aff;
    color: white;
    font-weight: 600;
    font-size: 12px;
    display: table;
    margin-top: 5px;
}
.article article .article-content{
    font-size: 15px;
    line-height: 32px;
    color: #858585;
    margin-top: 20px;
}
.article article .article-content img,
.article article .article-content iframe{
    max-width: 100%;
}
.article article .article-content a{
    color: #007aff;
    text-decoration: underline;
}
.article article .article-content h2,
.article article .article-content h3,
.article article .article-content h4,
.article article .article-content ul,
.article article .article-content ol,
.article article .article-content iframe{
    margin: 20px 0;
}
.article article .article-content h2{
    font-size: 27px;
}
.article article .article-content h3{
    font-size: 23px;
    border-left: 10px solid #2eb83e;
    padding-left: 10px;
}
.article article .article-content h4{
    font-size: 19px;
}
.article article .article-content ul,
.article article .article-content ol{
    margin-left: 18px;
}

/* Page */
.page{
    width: 100%;
    padding-bottom: 60px;
}
.page.no-top-background{
    padding-top: 197px;
}
.page .top-background{
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    margin-bottom: 60px;
}
.page .top-background #container{
    position: relative;
    height: 400px;
}
.page .top-background #container h1{
    color: #31b643;
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    width: 100%;
    font-weight: 500;
    text-shadow: 1px 1px 2px black;
}
.page article .article-content{
    font-size: 15px;
    line-height: 32px;
    color: #858585;
}
.page article .article-content img,
.page article .article-content iframe{
    max-width: 100%;
}
.page article .article-content a{
    color: #007aff;
    text-decoration: underline;
}
.page article .article-content h1,
.page article .article-content h2,
.page article .article-content h3,
.page article .article-content h4,
.page article .article-content ul,
.page article .article-content ol,
.page article .article-content iframe{
    margin: 20px 0;
}
.page article .article-content h1{
    font-size: 35px;
    color: #474747;
}
.page article .article-content h2{
    font-size: 27px;
    line-height: 54px;
}
.page article .article-content h4{
    font-size: 19px;
}
.page article .article-content ul,
.page article .article-content ol{
    margin-left: 18px;
}
.page article .article-content table{
    max-width: 100%;
}
.page article .article-content table tr td{
    vertical-align: top;
}

/* Contact */
.contact{
    width: 100%;
    padding-top: 197px;
    padding-bottom: 60px;
    display: inline-block;
}
.contact h1{
    font-size: 35px;
    color: #474747;
    margin-bottom: 20px;
}
.contact .left{
    float: left;
    width: 50%;
}
.contact .left > span{
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.contact .left form p{
    font-size: 14px;
    margin-bottom: 10px;
}
.contact .left form input,
.contact .left form textarea{
    padding: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    width: calc(100% - 22px);
    margin-bottom: 20px;
}
.contact .left form textarea{
    resize: none;
    height: 200px;
}
.contact .right{
    float: right;
    width: calc(50% - 20px);
}
.contact .right table{
    max-width: 100%;
    border-spacing: 0;
}
.contact .right table tr td{
    padding-right: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    vertical-align: top;
}
.contact .right table tr td:first-child + td{
    white-space: nowrap;
}
.contact .right table tr td:last-of-type{
    padding-right: 0;
}
.contact .right table tr:last-of-type td{
    padding-bottom: 0;
}
.contact .right table tr td a{
    color: #007aff;
}
.contact .right iframe{
    margin-top: 20px;
    width: 100%;
    max-height: 250px;
}

/* Footer */
footer{
    width: 100%;
    background: #e7e7e7;
}
footer .top .flex{
    display: flex;
    gap: 40px;
    padding: 40px 0;
}
footer .top .flex section{
    flex: 0 100%;
    font-size: 13px;
}
footer .top .flex section img{
    width: 70%;
    margin-bottom: 10px;
}
footer .top .flex section span.title{
    font-size: 25px;
    color: black;
    margin-bottom: 10px;
    display: block;
}
footer .top .flex section .title{
    font-weight: 700;
    white-space: nowrap;
    font-size: 16px;
}
footer .top .flex section ul li{
    list-style: none;
    margin-top: 10px;
    color: black;
}
footer .top .flex section .social{
    margin-top: 20px;
}
footer .top .flex section .social ul li{
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: black;
    color: white;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
}
footer .top .flex section .social ul a:last-of-type li{
    margin-right: 0;
}
footer .bottom{
    background: #1d1d1d;
    color: white;
    padding: 20px 0;
}
footer .bottom span.copyright{
    display: block;
    text-align: center;
    font-size: 12px;
}

/* Responsive */

/* Small Screen PC */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    #container{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    header .logo img{
        height: 120px;
    }
    header .menus nav.top{
        margin-top: 7.5px;
    }
    header .menus nav.top ul li{
        font-size: 16px;
    }
    header .menus nav.bottom{
        margin-top: 20px;
    }
    header .menus nav.bottom > ul > li span{
        font-size: 13px;
    }
    .main-slider .swiper-slide #container{
        width: 80%;
    }
    .main-slider .swiper-slide #container .top-title{
        font-size: 3vw;
    }
    .main-slider .swiper-slide #container .title{
        font-size: 5vw;
    }
    .main-slider .swiper-slide #container .bottom-title{
        font-size: 1.6vw;
    }
    .main-slider .swiper-slide #container .buttons a{
        padding: 1vw 3vw;
        font-size: 1.5vw;
    }
    .bant{
        text-align: center;
    }
    .bant h4{
        line-height: 40px;
    }
    .bant p{
        line-height: 32px;
    }
    .bant a{
        margin: 0 auto;
        margin-top: 40px;
    }
    .bant-2 #container .left{
        width: 80%;
    }
    .bant-2 .left h4{
        font-size: 25px;
    }
    .bant-2 .left p{
        font-size: 18px;
    }
    .bant-2 #container .right{
        width: 20%;
    }
    .tab .flex.news section .image{
        height: 200px;
    }
    .tab .flex.news section h4{
        font-size: 16px;
    }
    .tab .flex.news section p{
        font-size: 13px;
    }
    .article article > h1{
        text-align: center;
    }
    .article article .article-content,
    .page article .article-content{
        font-size: 12px;
        line-height: 30px;
        text-align: center;
    }
    .article article .category{
        margin: 0 auto;
        margin-top: 5px;
    }
    .article article .article-content img,
    .article article .article-content iframe,
    .page article .article-content img,
    .page article .article-content iframe{
        max-width: 90%;
        height: auto;
    }
    .article article .article-content iframe,
    .page article .article-content iframe{
        height: 300px;
    }
    .article article .article-content ul,
    .article article .article-content ol,
    .page article .article-content ul,
    .page article .article-content ol{
        display: table;
        margin: 20px auto;
    }
    .article article .article-content h3,
    .page article .article-content h3{
        display: table;
        margin: 20px auto;
    }
    .list,
    .article,
    .page.no-top-background{
        padding-top: 167px;
    }
    .page .top-background,
    .page .top-background #container{
        height: 300px;
    }
}

@media screen and (orientation:landscape) and (min-width: 769px) and (max-height: 400px){
    header .logo img {
        height: 80px;
    }
    header .menus nav.top ul li{
        font-size: 13px;
    }
    header .menus nav.bottom{
        margin-top: 10px;
    }
    header .menus nav.bottom > ul > li span{
        font-size: 11px;
    }
    .main-slider .swiper-slide #container .top-title{
        font-size: 16px;
    }
    .main-slider .swiper-slide #container .title{
        font-size: 30px;
        line-height: 40px;
    }
    .main-slider .swiper-slide #container .bottom-title{
        font-size: 14px;
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    #container{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    header .fa-bars{
        display: block;
        float: right;
        height: 60px;
        margin-top: 48px;
        transition: .2s ease-in-out;
    }
    header.scrolled .fa-bars{
        height: 40px;
        margin-top: 20px;
    }
    header .menus{
        position: fixed;
        top: 0;
        right: -70%;
        width: 70%;
        height: 100vh;
        z-index: 11;
        background: rgba(0,0,0,.9);
        display: block;
        transition: .2s ease-in-out;
    }
    header .menus .fa-xmark{
        display: block;
        color: white;
        height: 40px;
        padding: 20px;
    }
    header .menus.active{
        right: 0;
    }
    header .menus nav > ul{
        float: none;
    }
    header .menus nav.top{
        margin-top: 0;
    }
    header .menus nav.top ul a.social-link{
        display: none;
    }
    header .menus nav.top ul li,
    header .menus nav.bottom > ul > li{
        color: white;
        float: none;
        display: block;
        margin-left: 0;
        padding: 20px 0;
        text-align: center;
        font-size: 22px !important;
    }
    header .menus nav.bottom{
        margin-top: 0 !important;
    }
    header .menus nav.bottom > ul > li span{
        color: white;
        display: block;
        font-size: 22px !important;
    }
    header .menus nav.bottom > ul > li > ul,
    header .menus nav.bottom > ul > li > ul.right{
        left: 20px;
        width: calc(100% - 40px);
        box-sizing: border-box;
        z-index: 1;
    }
    header .menus nav.bottom > ul > li > ul > a > li{
        text-align: center;
        font-size: 18px;
        padding: 5px 0;
    }
    .main-slider .swiper-slide #container{
        width: 80%;
        top: 50%;
    }
    .main-slider .swiper-slide #container .top-title{
        font-size: 3vw;
    }
    .main-slider .swiper-slide #container .title{
        font-size: 5vw;
    }
    .main-slider .swiper-slide #container .bottom-title{
        font-size: 2vw;
    }
    .main-slider .swiper-slide #container .buttons a{
        padding: 1vw 3vw;
        font-size: 2vw;
    }
    .main-slider .swiper-button-prev,
    .main-slider .swiper-button-next{
        padding: 10px 5px;
    }
    .tab .flex.counter section .count{
        font-size: 35px;
    }
    .tab .flex.counter section .title{
        font-size: 12px;
    }
    .bant{
        text-align: center;
    }
    .bant h4{
        line-height: 40px;
    }
    .bant p{
        line-height: 32px;
    }
    .bant a{
        margin: 0 auto;
        margin-top: 40px;
    }
    .bant-2 #container .left{
        width: 80%;
    }
    .bant-2 .left h4{
        font-size: 25px;
    }
    .bant-2 .left p{
        font-size: 18px;
    }
    .bant-2 #container .right{
        width: 20%;
    }
    .tab .flex.news section{
        padding-bottom: 60px;
    }
    .tab .flex.news section .image{
        height: 150px;
    }
    .tab .flex.news section h4{
        font-size: 15px;
    }
    .tab .flex.news section p{
        font-size: 12px;
    }
    .tab .flex.news section > a{
        font-size: 12px;
        padding: 5px 10px;
    }
    .list .flex article .image{
        width: 230px;
        height: 150px;
    }
    .list .flex article h3{
        font-size: 19px;
    }
    .list .flex article p{
        font-size: 11px;
        line-height: 19px;
    }
    .list .flex article > a{
        left: 250px;
        font-size: 10px;
    }
    .article article > h1{
        text-align: center;
    }
    .article article .article-content,
    .page article .article-content{
        font-size: 12px;
        line-height: 30px;
        text-align: center;
    }
    .article article .category{
        margin: 0 auto;
        margin-top: 5px;
    }
    .article article .article-content img,
    .article article .article-content iframe,
    .page article .article-content img,
    .page article .article-content iframe{
        max-width: 90%;
        height: auto;
    }
    .article article .article-content iframe,
    .page article .article-content iframe{
        height: 300px;
    }
    .article article .article-content ul,
    .article article .article-content ol,
    .page article .article-content ul,
    .page article .article-content ol{
        display: table;
        margin: 20px auto;
    }
    .article article .article-content h3,
    .page article .article-content h3{
        display: table;
        margin: 20px auto;
    }
    .page .top-background,
    .page .top-background #container{
        height: 400px;
    }
    .contact .left,
    .contact .right{
        width: 100%;
    }
    .contact .right{
        margin-top: 40px;
    }
    footer .top .flex{
        flex-wrap: wrap;
    }
    footer .top .flex section{
        flex: 0 calc(50% - 20px);
    }
    footer .top .flex section img{
        width: 50%;
    }
}

/* Mobile */
@media only screen and (max-width: 480px) {
    #container{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    header .logo img{
        height: 110px;
    }
    header .fa-bars{
        display: block;
        float: right;
        height: 40px;
        margin-top: 37px;
        transition: .2s ease-in-out;
    }
    header.scrolled .fa-bars{
        height: 40px;
        margin-top: 20px;
    }
    header .menus{
        position: fixed;
        top: 0;
        right: -80%;
        width: 80%;
        height: 100vh;
        z-index: 11;
        background: rgba(0,0,0,.9);
        display: block;
        transition: .2s ease-in-out;
    }
    header .menus .fa-xmark{
        display: block;
        color: white;
        height: 30px;
        padding: 20px;
    }
    header .menus.active{
        right: 0;
    }
    header .menus nav > ul{
        float: none;
    }
    header .menus nav.top{
        margin-top: 0;
    }
    header .menus nav.top ul a.social-link{
        display: none;
    }
    header .menus nav.top ul li,
    header .menus nav.bottom > ul > li{
        color: white;
        float: none;
        display: block;
        margin-left: 0;
        padding: 10px;
        text-align: center;
        font-size: 16px !important;
    }
    header .menus nav.bottom{
        margin-top: 0 !important;
    }
    header .menus nav.bottom > ul > li span{
        color: white;
        display: block;
        font-size: 16px !important;
    }
    header .menus nav.bottom > ul > li > ul,
    header .menus nav.bottom > ul > li > ul.right{
        left: 20px;
        width: calc(100% - 40px);
        box-sizing: border-box;
        z-index: 1;
    }
    header .menus nav.bottom > ul > li > ul > a > li{
        text-align: center;
        font-size: 14px;
        padding: 5px 0;
    }
    .main-slider{
        height: 70vh;
    }
    .main-slider .swiper-slide #container{
        width: 90%;
        top: 60%;
    }
    .main-slider .swiper-slide #container .top-title{
        font-size: 16px;
    }
    .main-slider .swiper-slide #container .title{
        font-size: 22px;
        line-height: 48px;
    }
    .main-slider .swiper-slide #container .bottom-title{
        font-size: 14px;
    }
    .main-slider .swiper-slide #container .buttons{
        margin-top: 20px;
    }
    .main-slider .swiper-slide #container .buttons a{
        padding: 5px 20px;
        font-size: 12px;
    }
    .main-slider .swiper-button-prev,
    .main-slider .swiper-button-next{
        display: none;
    }
    .main-slider .swiper-pagination-bullet{
        width: 15px;
        height: 15px;
    }
    .tab{
        padding: 30px 0;
    }
    .tab h3{
        font-size: 26px;
    }
    .tab .flex.counter{
        flex-wrap: wrap;
    }
    .tab .flex.counter section{
        flex: 1 100%;
    }
    .tab .flex.counter section .count{
        font-size: 35px;
    }
    .tab .flex.counter section .title{
        font-size: 12px;
    }
    .tab #container > img{
        width: 100%;
    }
    .tab #container > iframe{
        height: 180px;
    }
    .tab .flex.brands section{
        flex: 0 100%;
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }
    .tab .flex.brands section:last-child{
        border-bottom: 0;
    }
    .tab .flex.news{
        gap: 20px;
        flex-wrap: wrap;
    }
    .tab .flex.news section{
        padding-bottom: 60px;
        flex: 1 100%;
    }
    .tab .flex.news section .image{
        height: 150px;
    }
    .tab .flex.news section h4{
        font-size: 15px;
    }
    .tab .flex.news section p{
        font-size: 12px;
    }
    .tab .flex.news section > a{
        font-size: 12px;
        padding: 5px 10px;
    }
    .bant{
        text-align: center;
    }
    .bant h4{
        font-size: 18px;
        line-height: 36px;
    }
    .bant p{
        font-size: 14px;
        line-height: 28px;
    }
    .bant a{
        margin: 0 auto;
        margin-top: 40px;
        font-size: 14px;
    }
    .bant-2{
        padding: 40px 0;
        text-align: center;
    }
    .bant-2 #container{
        display: block;
    }
    .bant-2 #container .left,
    .bant-2 #container .right{
        float: none;
        width: 100%;
        padding-right: 0;
    }
    .bant-2 #container .left h4{
        font-size: 18px;
        line-height: 36px;
    }
    .bant-2 #container .left p{
        font-size: 14px;
        line-height: 28px;
    }
    .bant-2 .right a{
        transform: none;
        position: unset;
        margin: 0 auto;
        margin-top: 40px;
        font-size: 14px;
    }
    .list h1{
        text-align: center;
    }
    .list .flex article .image{
        width: 100%;
        height: 170px;
        float: none;
        margin-bottom: 10px;
    }
    .list .flex article h3{
        font-size: 19px;
        text-align: center;
    }
    .list .flex article p{
        font-size: 11px;
        line-height: 19px;
        text-align: center;
    }
    .list .flex article > a{
        position: unset;
        font-size: 10px;
        display: table;
        margin: 0 auto;
        margin-top: 10px;
    }
    .article,
    .list,
    .page.no-top-background{
        padding-top: 157px;
    }
    .article article > h1{
        text-align: center;
        font-size: 26px;
    }
    .article article .article-content,
    .page article .article-content{
        font-size: 12px;
        line-height: 30px;
        text-align: center;
    }
    .article article .category{
        margin: 0 auto;
        margin-top: 5px;
        font-size: 10px;
    }
    .article article .article-content img,
    .article article .article-content iframe,
    .page article .article-content img,
    .page article .article-content iframe{
        max-width: 90%;
        height: auto;
    }
    .article article .article-content iframe,
    .page article .article-content iframe{
        height: 170px;
    }
    .article article .article-content ul,
    .article article .article-content ol,
    .page article .article-content ul,
    .page article .article-content ol{
        display: table;
        margin: 20px auto;
    }
    .article article .article-content h2,
    .page article .article-content h2{
        font-size: 18px;
        line-height: 36px;
    }
    .article article .article-content h3,
    .page article .article-content h3{
        display: table;
        margin: 20px auto;
        font-size: 18px;
        line-height: 36px;
    }
    .article article .article-content h4,
    .page article .article-content h4{
        font-size: 16px;
        line-height: 32px;
    }
    .page .top-background,
    .page .top-background #container{
        height: 350px;
    }
    .page .top-background #container h1{
        font-size: 35px;
    }
    .contact .left,
    .contact .right{
        width: 100%;
    }
    .contact .right{
        margin-top: 40px;
    }
    .contact .right table tr td{
        font-size: 11px;
        padding-right: 10px;
    }
    footer{
        text-align: center;
    }
    footer .top .flex{
        flex-wrap: wrap;
    }
    footer .top .flex section{
        flex: 0 100%;
    }
    footer .top .flex section img{
        width: 50%;
    }
    footer .top .flex section .social{
        display: table;
        margin: 0 auto;
        margin-top: 20px;
    }
}
