
.display-block{
    display: block;
    text-decoration: none;
}
.display-none{
    display: none;
}
.logo{
   width: 150px;
}
.w-100{
    width: 100%;
}
.logo-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.nav-header__wrapper{
    background-color: #0C0C0C;
    min-width: 1300px;
}
.nav-header__container{
    display: flex;
    align-items: center;
    color: #B2B2B2;
    font-weight: 700;
    font-size: 14px;    
    padding: 30px 0;
}
.nav-link__wrapper{
    display: flex;
    align-items: center;
}

.nav-link{
    margin-right: 60px;
    cursor: pointer;
    color: #B2B2B2;
    text-decoration: none;
}
.nav-link.active{
    color: #FABB2E;
}
.nav-link:hover{
    color: #FABB2E;
}

.tab-wrapper{
    display: flex;
    margin-bottom: 16px;
}
.tab-pill{
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 5px;
    border: 1px solid transparent;
    transition: all .3s;
}
.tab-pill:hover{
    background-color: #2D2D2F;
    color: #FABB2E;
    border: 1px solid #FABB2E;
}
.tab-pill.active{
    background-color: #2D2D2F;
    border: 1px solid #FABB2E;
    color: #FABB2E;
}
.banner-movie__cover{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px;
}
.banner-movie__cta-cover{
    position: absolute;
    right: 89px;
    top: 34px;
}
.banner-movie__logo{
    margin-bottom: 28.77px;
}
.btn-primary{
    background-color: #289D82;
    border-radius: 15px;
    color: white;
    padding: 18px 40px;
    cursor: pointer;
    text-align: center;
}
.banner-section{
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    margin-top: 39px;
    background-color: #2d2d2e;
    color: #FFFFFF;
    margin-bottom: 64px;
}
.banner-img__wrapper{
    width: 50vw;
}
.banner-desc__wrapper{
    padding: 48px;
    box-sizing: border-box;
    font-size: 14px;
    width: calc(100% - 40vw);
    position: relative;
}
.banner-desc__title{
    font-size: 32px;
    font-weight: 400;
}
.banner-desc__title strong{
    font-weight: 700;
}
.banner-img{
    object-fit: cover;
    width: inherit;
    height: 100%;
}
.sponsor-wrapper{
    margin-bottom: 60px;
}
.sponsor-card__container{
    display: grid !important;
    grid-template-columns: repeat(5,1fr);
    row-gap: 20px;
    column-gap: 30px;
    margin-bottom: 20px;
}
.sponsor-card__container:last-of-type   {

}
.sponsor-card{
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    overflow: hidden;
    border-radius: 15px;
}
.sponsor-card img{
    width: 100%;
    transition: all .3s;
}
.sponsor-card img:hover{
    width: 100%;
    transform: scale(1.2);
}
.section-title{
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 10px;
    margin-top: 0;
}
.section-title__contact{
    margin-bottom: 24px;
}
.footer-wrapper{
    background-color: #0C0C0C;
    padding: 60px 0;
    min-width: 1300px
}
.footer-container{
    display: flex;
    justify-content: space-between;
}
.footer-email{
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin-top: 60px;
    display: block;
}
.footer-icon__social{
    width: 57px;
    margin-right: 32px;
    display: block;
    cursor: pointer;
}
.footer-icon__social img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-icon__social:last-child{
    margin-right: 0;
}
.footer-social__wrapper{
    display: flex;
    margin-top: 43px;
}
.footer-collaboration__wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}
.footer-collaboration__img{
    margin-bottom: 45px;
}

/* news */
.news-card{
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.news-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 20px;
}
.news-card__desc-wrapper{
    background-color: #2D2D2F;
    /* padding: 10px 0 10px 25px; */
}
.news-card__desc-title{
    font-weight: 500;
    font-size: 16px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 25px;
    margin-top: 7.95px;
    margin-bottom: 4px;
}
.news-card__img-wrapper{
    overflow: hidden;
}
.news-card__img{
    width: 100%;
    transition: all .3s;
    height: 150px;
    object-fit: cover;
}
.news-card__img:hover{
    transform: scale(1.2);
}
.news-card__desc{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #B2B2B2;
    overflow: hidden;
    margin-bottom: 7px;
    padding: 0 25px;
}
.news-card__desc-date{
    font-style: italic;
    float: right;
    padding-right: 15px;
    font-size: 12px;
    color: #B2B2B2;
    padding-bottom: 5px;
}
/* contact */
.contact-container{
    margin-top: 60px;
}
.contact-container__content p{
    margin-bottom: 20px;
}
.contact-collaboration{
    display: flex;
    margin-top: 30px;
    gap: 112px;
}
.contact-footer__wrapper{
    display: flex;
    margin-top: 60px;
    margin-bottom: 80px;
    gap: 287px;
}

.hover-grow{
    transition: all .3s;
}
.hover-grow:hover{
    transform: scale(1.2);
}

.banner-desc__wrapper .swiper-pagination-bullet{
    width: 15px !important;
    height: 15px !important;
}
.banner-desc__wrapper .swiper-pagination-bullet-active{
    background-color: #B2B2B2;
}

.banner-desc__wrapper .swiper-pagination{
    top: 31px !important;
    display: flex;
    padding-left: 48px;
    bottom: unset !important;
}
.footer-card{
    width: 33%;
}
.footer-right{
    display: flex;
    width: 66%;
}
.footer-card-2{
    padding-left: 6rem;
}
.footer-card-3{
    padding-left: 8rem;
}
.footer-right .footer-card{
    width: 50%;
}
.news-home__wrapper{
    padding-bottom: 60px;
}
.news-content__img{
    margin-bottom: 30px;
    border-radius: 15px;
}
.news-content__title{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
    color: white;
}
.news-content{
    color: #B2B2B2;
    font-size: 16px;
}
.news-content p{
    margin-bottom: 14px;
}
.news-content__back{
    margin: 38px 0;
    cursor: pointer;
}
.news-content__wrapper{
    padding-bottom: 83px;
}

.news-wrapper{
    margin-top: 60px;
}
.news-load-more__wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 68px 0 60px;
    color: #B2B2B2;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}
.news-page-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 20px;
}
.logo-wrapper{
    display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.logo-img{
  width: 120px;
}
.tfbo-country__img{
  width: 80px;
}
@media screen and (max-width: 768px){
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    .has-space{
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    .has-space-contact{
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
    .section-title{
        font-size: 12px;
        font-weight: 700;
    }
    .nav-header__wrapper{
        display: none;
    }
    .mobile-nav__link-container{
        background-color: #353537;
        border-radius: 20.0441px;
        padding: 2px 6.5px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        margin-left: 11.45px;
        margin-right: 20px;
        width: 458px;
    }
    .mobile-nav__link-wrapper{
        overflow-x: auto;
        padding-top: 13.01px;
    }
    .mobile-nav-logo__wrapper{
        background-color: #0C0C0C;
    }
    .container{
        width: 100%;
    }
    .footer-container{
        flex-direction: column;
    }
    .banner-section{
        flex-direction: column;
        margin-bottom: 30.61px;
		margin-top: 35px
    }
    .banner-movie__cover{
        margin-bottom: 30px;
    }
    .banner-img__wrapper{
        width: 100%;
        height: 63vw;
    }
    .banner-desc__wrapper{
        width: 100%;
    }
    .nav-link{
        padding: 12px 24px;
        border-radius: 17.0375px;
        margin-right: 10px;
        color: white;
		font-size: 12px
    }
    .nav-link.active{
        background-color: #47494B;
        color: white;
    }
    .nav-link:hover{
        color: #B2B2B2;
    }
    .mobile-nav-logo__wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10.76px
    }
    .banner-desc__title{
        font-size: 14px;
    }
    .banner-desc__wrapper{
        padding: 15px;
    }
    .banner-desc__wrapper{
        font-size: 12px;
    }
    .banner-desc__wrapper .swiper-pagination{
        top: 23px !important;
        padding-left: 0;
        justify-content: flex-end;
        box-sizing: border-box;
        padding-right: 10px;
    }
    .banner-desc__wrapper .swiper-pagination-bullet{
        width: 10px !important;
        height: 10px !important;
    }

    .banner-movie__cta-cover{
        display: none;
    }
    .sponsor-card{
        height: 129.88px;
        min-width: 93.35px;
        font-size: 12px;
        text-align: center;
    }
    .sponsor-card p{
        width: 60%;
    }
    .sponsor-card__container{
        column-gap: 10px;
        margin-bottom: 13.44px;
        overflow-x: auto;
    }
    .news-home__wrapper{
        padding-bottom: 0;
    }
    .news-container{
        display: flex;
        overflow-x: auto;
        column-gap: 10px;
    }
    .news-card__img-wrapper{
        padding: 6.67px;
    }
    .news-card{
        min-width: 150.7px;
        background-color: #2D2D2F;

    }
    .news-card__img{
        border-radius: 7px;
		height: 23vw;
    	object-fit: cover;
    }
	.news-card__img:hover{
		transform:scale(1)
	}
    .news-card__desc-title{
        margin: 0;
        font-size: 11.6101px;
        padding: 0;
        margin-bottom: 3;
        margin-top: 0;
    }
    .news-card__desc-wrapper{
        padding: 10.26px;
        padding-top: 0;
    }
    .news-card__desc{
        font-size: 8.0016px;
        padding: 0;
        margin-bottom: 12px;
		-webkit-line-clamp: 3;
    }
    .news-card__desc-date{
        float: left;
        font-size: 8.0016px;
        padding-bottom: 0;
		font-style: normal;
    }
    .news-all__wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 31.8px;
    }
    .btn-news-all{
        text-decoration: none;
        background-color: #47494B;
        padding: 12.34px 17px;
        color: white;
        font-weight: 500;
        font-size: 12.0024px;
        text-align: center;
        border-radius: 17.0375px;
    }
    .footer-collaboration__wrapper{
        flex-direction: row;
        margin-top: 20.58px;
    }
    .footer-collaboration__img{
        width: 119px;
        margin-right: 47px;
    }
    .footer-collaboration__img-2{
        width: 134.87px;
    }
    .footer-collaboration__img-1{
        width: 50%;
    }
    .footer-email{
        margin-top: 23.67px;
        font-size: 12.0024px;
    }
    .footer-icon__social{
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    .footer-card-2{
        padding-left: 0;
    }
    .footer-card-3{
        padding-left: 0;
    }
    .footer-card{
        width: auto;
    }
    .footer-right{
        display: flex;
        width: auto;
    }
    .footer-card-2{
        margin-right: 0;
    }
    .footer-social__wrapper{
        margin-top: 15.01px;
    }
    .footer-wrapper{
        min-width: auto;
    }
    .sponsor-wrapper{
        margin-bottom: 30.22px;
    }

    /* contact */
    .contact-collaboration{
        gap: 60px;
    }
    .contact-collaboration-img-1{
        width: 122.84px;
    }
    .contact-collaboration-img-2{
        width: 138.63px;
    }
    .contact-container{
        margin-top: 30px;
        font-size: 12px;
    }
    .contact-container__content p{
        margin-bottom: 16px;
    }
    .footer-email__contact{
        color: #B2B2B2;
    }
    .contact-footer__wrapper{
        flex-direction: column;
        gap: 40px;
        margin-top: 39px;
        margin-bottom: 31.48px;
    }

    /* news */
    .news-content__img{
        border-radius: 0;
    }
    .news-content__title{
        font-weight: 500;
        font-size: 12.0024px;
        margin-bottom: 20px;
		padding: 0 16px;
    }
    .news-content{
        font-size: 12px;
		 padding: 0 16px;
    }
    .news-content__back{
        margin: 38px 0;
        cursor: pointer;
    }
    .news-content__wrapper{
        padding-bottom: 40.66px;
    }
    .news-content__back{
        width: 9px;
        margin: 20px 13px;
		display:block;
    }

    .news-page-container{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 10px;
    }
    .news-load-more__wrapper{
        margin: 20px 0 30px 0;
    }
    .news-load-more__btn{
        background: #47494B;
        border-radius: 17.0375px;
        padding: 12.34px 9.68px;
        color: #FFFFFF;
    }
    .news-wrapper{
        margin-top: 40px;
    }
}

/* media screen */
@media only screen and (max-width: 1700px) {
  .redirect-card:nth-of-type(1),
  .redirect-card:nth-of-type(4) {
    width: 55%;
  }
  .content-img-right,
  .content-img-left {
    width: 30%;
    height: unset;
  }
}
@media only screen and (max-width: 1500px) {
  .charity-namewee,
  .charity-namewee_content {
    width: 26%;
  }
  .charity-namewee_album {
    width: 35%;
  }
  .namewee,
  .eclipse,
  .namewee-content {
    width: 100%;
  }

  .charity-namewee_album img:nth-of-type(1) {
    width: 60%;
    height: 35%;
  }

  .charity-namewee_album img:nth-of-type(2) {
    width: 50%;
    height: 30%;
  }
  .charity-namewee_album img:nth-of-type(3) {
    width: 40%;
    height: 30%;
  }
  .eclipse {
    top: -50%;
  }
  .namewee-side2 {
    right: -40%;
    bottom: -20%;
  }
  .eclipse-grey {
    top: -20%;
    width: 100%;
  }

  .stats-img-right {
    width: 25%;
    top: -20%;
  }

  .stats-img-left {
    width: 25%;
    left: -5%;
    top: -40%;
  }
  .hl-container {
    width: 100%;
  }
  .redirect-wrapper {
    width: 80%;
  }
  .content-img-right,
  .content-img-left {
    width: 25%;
  }
  .content-img-right {
    top: calc(50% - 320px / 2);
  }
  .content-img-left {
    top: calc(50% - 390px / 2);
  }
  .content-redirect_wrapper {
    width: 85%;
  }
  .content-redirect_wrapper p {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
  .content-redirect_wrapper .content-wrapper_highlight {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 1300px) {
  .content-title {
    width: 40%;
  }
}
