@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Noto Serif TC', serif;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

:focus {
    outline: none;
}

/*Configurações Globais*/
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body{
    background-color: #fff7e0;
    background-repeat: repeat;
     font-size: 1em;
     line-height: 160%;
}

a{
    text-decoration: none;
}

a:focus{
    color: #999999;
}

a:hover{
    color: #f54f35;
}

a:visited, a:active{
    color: #999999;
}

p{
    color: #333;
}


h1, h2, h3, h4{
    line-height: 140%;
    margin: 10px 0;
}

h1 {
    font-size: 2.1em;
    color: #000000;
    font-weight: 700;
    letter-spacing: 2px
}


.kv{
padding: 0px !important;
background-color: #fef9fb;;
}

.topic_bg{
    background-image: url("../images/topic_bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
}

.active{
    color: #A56F19 !important;
}


h2{
    font-size: 2em;
}

h3 {
 font-size: 1.8em;
}

h4{
 font-size: 1.6em;
 font-weight: 600;
 color: #333;
}

h5{
 font-size: 1.4em;
 font-weight: 600;
}

.font11{
 font-size: 11px;
 line-height: 120%;
 padding: 0;
margin: 0px 4px;
}


.font14{
 font-size: 13px;
 line-height: 120%;
 padding: 0;
 margin: 0;
}


.font18{
 font-size: 18px;
 line-height: 120%;
 padding: 0;
 margin: 0;
font-weight: 600;
}

#container{
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}


section{
  padding: 60px;
}


.prize-title h3{
    border-bottom: 1px solid #000000;
}


@media (max-width: 599px) {
/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

/*Grid end*/


/*header*/
header {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: sans-serif;
    background-color: #ffd17b;
    position: fixed;
    z-index: 999 !important;
}
.brand {
    width: auto;
    height: 100%;
    margin: 0px;
    float: left;
    padding: 6px;
}
.fb{
    float: left;
    height: 30px;
    width: 30px;
    margin: 6px 0px 0px 6px;
}


.menu {
    height: 100%;
    float: right;
}

.menu li{
     list-style: none;
}


.menu ul {
    width: 100%;
    height: inherit;
    margin: 0;
    padding: 0;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.menu ul a {
    padding: 0 20px;
    height: inherit;
    color: #222;
    display: inline-block;
}
.menu ul a:hover {
    background-color: #ffe0a6;
    color: #323232;
    text-decoration: none;
}
#menuToggle {
    display: none;
}
.menu-icon {
    display: none;
}

.gg-menu-boxed {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 2px solid;
    top: 12px;
}
.gg-menu-boxed::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 15px;
    height: 2px;
    background: currentColor;
    border-radius: 3px;
    top:4px;
    left: 2px;
    box-shadow: 0 5px 0, 0 10px 0
}


@media screen and (max-width: 768px) {
    .menu {
        width: 100%;
        height: auto;
    }
    .menu ul {
        display: block;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.3s;
        -moz-transition: max-height 0.3s;
        -ms-transition: max-height 0.3s;
        -o-transition: max-height 0.3s;
        transition: max-height 0.3s;
    }
    .menu ul a {
        text-align: center;
        width: 100%;
        height: 50px;
        background-color: #ffd17b;
        padding: 0px;
    }
    .menu-icon {
        width: 40px;
        height: inherit;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 60px;
    }
    #menuToggle:checked ~ ul {
        max-height: 600px;
    }
}
 /*header*/


.img-responsive{
    width: 100% !important;
    height: auto;
}

.no-padding{
    padding: 0px !important;
}

.no-margin{
    margin: 0px !important;
}

.hero-wrap {
    background-color: #8fcae8;
}

.hero-wrap .row::after {
  display: none !important;
}

.wrap-light {
    background-color: #fef9fb;
    background-repeat: repeat;
}

.page-box{
    margin:60px;
    padding: 40px;
    background-color: #fef9fb;
    background-repeat: repeat;
}


.news-box{
    background-image: url("../images/box_bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
}

.news-photo{
    margin-top: 60px;
}

.news-description{
    display: block;
}


.margin30{
    margin-bottom: 30px;
}



#rule h4{
    margin-top: 10px;
    margin-bottom: 10px;
}

#rule ol, li{
    list-style-type: decimal;
    font-weight: 300;
}


.join{
    background-color: #ffa90a;
    color: #000000 !important;
}

.join:hover{
    background-color: orange;
    color: #fff !important;
}


@keyframes animation {
  from {background-color: orange;}
  to {background-color: red;}
}

.before-after{
    padding-top: 40px !important;
}

.text-green{
    color: #2b6100;
}

.text-red{
    color: #f54f35;
}

.text-orange{
    color: #ec8227 !important;
}

.text-darkblue{
    color: #005ca9 !important;
}

.footer-wrap {
    align-items: center;
    justify-content: center;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.footer-text {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 18px;
}



.right-line{
    margin-left: 10px;
    padding-left: 20px;
    border-left: 1px solid #333;
}

.contact_box{
    background-color: #333333;
    color: #ffffff;
    padding: 2px 8px;
    margin-right: 6px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;

}



.text-contact{
    margin: 0px;
    font-size: 13px;
}

.small{
    font-size: 14px !important;
    font-weight: normal;
}


.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.4px;
    line-height: 20px;
    border-radius: 36px;
    text-decoration: none;
    cursor: pointer;
    margin: 10px;
}

.btn-orange {
    background-color: #f54f35;
    color: #fff !important;
}

.btn-orange:hover {
    background-color: #ff7d69;
    color: #fff !important;
    text-decoration: none;
}


.btn-orange-line {
    background-color: #f54f35;
    color: #ffffff !important;
}

.btn-orange-line:hover {
    background-color: #ff7d69;
    color: #fff !important;
    text-decoration: none;
}

.btn-brown-line {
    padding: 6px 20px;
    font-size: 18px;
    border: 1px solid #55493d;
    color: #55493d !important;
    text-decoration: none;
}

.btn-brown-line:visited, .btn-brown-line:active  {
    color: #55493d !important;
    text-decoration: none;
}


.btn-brown-line:hover {
    background-color: #55493d;
    color: #fff !important;
    text-decoration: none;
}



.text-center{
    text-align: center !important;
}

.text-right{
    text-align: right !important;
}

.text-left{
    text-align: left !important;
}

.hide_desktop, .hide_mobile {
    display: none;
}

.gg-chevron-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
}
.gg-chevron-right::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    right: 6px;
    top: 4px
}

.joinBox{
    padding: 10px;
}

.joinBox a img:hover{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
transition: 0.5s ease;
}

.footer-wrap .col-s-12{
    padding: 4px !important;
}

.footer-wrap .tsmc{

}

@media (max-width:2560px) {
.hide-desktop {
    display: none;
}
.hide-mobile {
    display: unset;
}
.pt12{
    padding-top: 12px;
}
.sponsor{
    width: 100%;
}

.joinBox-group{
    margin: 0px 160px;
}

.footer-wrap .row{
    display: block;
    padding: 10px;
}

.footer-wrap .footerLogo{
    float: left;
    width: 13%;
    display: table;
}
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 991px)
  and (-webkit-min-device-pixel-ratio: 2) {

section {
  padding: 40px;
}

#news .col-3{
    padding: 10px;
}

.menu ul {
  padding-right: 0px;
}
.menu ul a {
    padding: 0 10px !important;
    font-size: 13px;
}
.hide-desktop {
    display: none;
}
h4{
    font-size: 1.2em;
}
.font14{
    font-size: 10px;
}
.text-contact{
    font-size: 10px;
}
.sponsor{
    width: 100%;
}
.footer-wrap .row{
    display: block;
    padding: 10px;
}
.footer-wrap .footerLogo{
    float: left;
    width: 16%;
    display: table;
}
.joinBox{
    padding: 10px;
}
.joinBox-group{
    margin: 0px 20px;
}

}


@media (max-width: 767px) {

.hide-mobile {
    display: none !important;
}
.hide-desktop {
    display: unset !important;
}
section {
  padding: 15px !important;
}
.page-box{
    margin: 40px 10px;
    padding: 10px;
    background-image: url("../images/bg_02.jpg");
    background-repeat: repeat;
}
.font14{
    font-size: 18px;
}
.pt12{
    padding-top: 12px;
    padding-left: 12px;
}

.sponsor{
    width: 80%;
}
.right-line{
    border: none;
    padding-left: 0px;
    margin-left: 0px;
}

.footer-wrap h5{
    font-size: 21px;
}
.footer-wrap .text-contact{
    font-size: 16px;
}
.footer-wrap .row{
    display: block;
    padding: 15px;
}

.joinBox-group{
    margin: 0px 20px !important;
}


}


/*owl carousel*/

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ffd586 !important;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000!important;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5) !important;
}
.owl-prev span, .owl-next span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}

/*owe carousel end*/


.prize-pic{
    
}


/*modal start*/
.overlay {
    position: fixed;
    overflow-y: scroll;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 200ms;
    visibility: hidden;
    opacity: 0;
}

.overlay .cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.modal {
    margin: 100px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #666;
    width: 60%;
    border-radius:8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}


@media only screen and (max-width: 600px) {
.modal {
    width: 90% !important;
}
}

.modal h3 {
    margin-top: 0px;
}

.modal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    opacity: 0.8;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #777;
}
.modal .close:hover {
    opacity: 1;
}

.modal .content {
    max-height: 100%;
    overflow: auto;
}
.modal p {
    margin: 0 0 1em;
    text-align: center;
}
.modal p:last-child {
    margin: 0;
}
/*modal end*/

/*cooies*/
.cookies-eu-banner {
  background: #444;
  color: #fff;
  padding: 20px;
  text-align: center !important;
  position: fixed !important;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

.cookies-eu-banner button {
  text-decoration: none;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner button:hover {
  background: #fff;
  color: #222;
}

.cookies-eu-banner a:link, a:visited, a:hover, a:active{
  color: #ccc;
  text-decoration: underline;
}

.hidden {
  display: none;
}
/*cooies end*/