:root {
    --white: #ffffff;
    --black: #000000;
    --dark-black:#1c1c1c;
    --yellow: #fecf3b;
    --dark-yellow:#efb500;
    --grey:#b2b2b2;
    --light-grey:#efefef;
}

@font-face {
    font-family: 'century';
    font-display: swap;
    src: url('fonts/CenturyGothic.ttf');
}

@font-face {
    font-family: 'century-bold';
    font-display: swap;
    src: url('fonts/CenturyGothicbold.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    display: block;
    font-family: "century", Arial, Verdana, sans-serif;
    font-size: 16px;
    color: var(--dark-black);
    text-decoration: none;
    /* overflow-x: hidden; */
}

ul,
li {
    list-style: none;
}

a,
a:active,
a:focus,
a:visited {
    text-decoration: none;
}

input,textarea,button{
    border: 0 ;
    outline: none;
}

.container {
    margin: 0 auto;
}

.bold{
    font-family: 'century-bold';
}

.section-padding-tb{
    padding: 80px 0 ;
}

.section-padding-top{
    padding: 80px 0 0;
}

.section-padding-bottom{
    padding: 0 0 80px ;
}

header {
    position: relative;
    border-bottom: 1px solid #efefef;
}

.topbar {
    display: flex;
    justify-content: space-between;
}

.topbar .logo img {
    display: block;
    max-width: 180px;
}

.topbar .logo a {
    display: block;
    padding: 20px 0;
}

.topbar-search-lang {
    display: flex;
    align-items: center;
}

.topbar-search-lang .search,
.topbar-search-lang .lang {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.topbar-search-lang .search {
    background: url(../images/icon-search-black.png) no-repeat center/20px;
    margin-right: 20px;
}

.topbar-search-lang .lang {
    background: url(../images/icon-language.png) no-repeat center/20px;
    margin-right: 20px;
}

.header-mobile-btn{
    display: none;
}

.navbar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    height: 100%;
    z-index: 99 ;
}

.navbar-line li:not(:last-child) {
    margin-right: 30px;
}

.navbar-line li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.125rem;
    color: var(--dark-black);
}

.navbar-line li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 2px);
    display: block;
    width: 0;
    border-top: 3px solid var(--yellow);
    transition: all 0.5s;
}

.navbar-line li a:hover::after {
    width: 100%;
}

.navbar-line li.active a,
.navbar-line li:hover a {
    color: var(--dark-yellow);
}

.navbar-line li.navbar-child{
    position: relative;   
}

.navbar-line li.navbar-child a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-line li.navbar-child a>span.arrow{
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px ;
    height: 30px ;
}

.navbar-line li.navbar-child a>span.arrow::before{
    content: '';
    display: block;
    width: 12px ;
    height: 12px ;
    border: 1px solid var(--dark-black);
    border-left: 0 ;
    border-bottom: 0 ;
    transform: rotate(45deg);
}

.navbar-line li.navbar-child .navbar-child-ul{
    position: absolute;
    left: 0 ;
    top: calc(100% - 2px) ;
    background-color: var(--white);
    min-width: 100% ;
    border-top: 3px solid var(--yellow);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0 ;
    transition: all 0.5s;
}

.navbar-line li.navbar-child:hover .navbar-child-ul{
    visibility: visible;
    opacity: 1;
}

.navbar-line li.navbar-child .navbar-child-ul li{
    margin-right: 0 ;
}

.navbar-line li.navbar-child .navbar-child-ul li a{
    display: block;
    width: 100% ;
    color: var(--dark-black);
    white-space: nowrap;
    padding: 10px ;
}

/* static banner */
.static-banner{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0;
}

.static-banner img{
    display: block;
    width: 100% ;
}

.static-banner .banner-theme{
    position: absolute;
    left: 50% ;
    top: 50% ;
    transform: translate(-50%,-50%);
    display: block;
    font-size: 3.5rem ;
    font-family: 'century-bold';
    color: var(--white);
}

.breadcrumb{
    background-color: var(--light-grey);
}

.breadcrumb-links{
    display: flex;
    align-items: center;
    background: url(../images/icon-home.png) no-repeat left center/1rem;
    padding-left: 2rem ;
}

.breadcrumb-links a{
    display: flex;
    align-items: center;
    font-size: 0.875rem ;
    color: var(--dark-black);
    padding: 20px 0 ;
}

.breadcrumb-links a:hover{
    color: var(--dark-yellow) ;
}

.breadcrumb-links a:not(:last-child)::after{
    content: '';
    display: block;
    width: 6px ;
    height: 6px ;
    border: 1px solid var(--dark-black);
    border-left: 0 ;
    border-bottom: 0 ;
    transform: rotate(45deg);
    margin: 0 12px 0 6px ;

}

.title-tabs{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px ;
}

.title-tabs .title{
    font-size: 2rem ;
    color: var(--dark-black);
    white-space: nowrap;
    text-transform: uppercase;
}

.title-tabs .title span{
    display: inline-block;
    font-size: 4rem ;
    line-height: 4rem ;
}

.title-tabs .tabs{
    display: flex;
    justify-content: flex-end;
    width: 100% ;
    margin-left: 30px ;
    border-bottom: 1px solid #dddddd;
}

.title-tabs .tabs a{
    position: relative;
    display: block ;
    font-size: 1.2rem ;
    color: var(--dark-black);
    padding: 10px 0 ;
}

.title-tabs .tabs a:not(:last-child){
    margin-right: 30px ;
}

.title-tabs .tabs a.active,.title-tabs .tabs a:hover{
    color: var(--yellow);
}

.title-tabs .tabs a::after{
    position: absolute;
    top: 100% ;
    content: '';
    display: block;
    width: 0 ;
    border-top: 2px solid var(--yellow);
    transition: all 0.5s;
}

.title-tabs .tabs a.active::after,
.title-tabs .tabs a:hover::after{
    width: 100% ;
}

.title-tabs .tabs a > span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 2.5rem ;
    color: #efefef ;
    visibility: hidden;
    opacity: 0 ;
    z-index: -1 ;
}

.title-tabs .tabs a.active > span,
.title-tabs .tabs a:hover > span{
    visibility: visible;
    opacity: 1;
}

.page{
    display: flex;
    justify-content: center;
    margin-top: 5rem ;
}

.page li:not(:last-child){
    margin-right: 10px ;
}

.page li a{
    display: block;
    background-color: #d2d2d2;
    font-family: 'century-bold';
    /* font-size: 0.875rem ; */
    color: var(--dark-black);
    padding: 5px 10px ;
    border-radius: 5px ;
}

.page li a.active,.page li a:hover{
    background-color: var(--dark-yellow);
    color: var(--white);
}

footer{
    background-color: var(--yellow);
}

.footer-ul-menu{
    display: flex;
    justify-content: space-between;
    padding: 5rem 0 ;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-ul:first-of-type{
    width: 35% ;
}

.footer-ul .footer-logo{
    margin-bottom: 20px ;
}

.footer-ul .footer-logo img{
    display: block;
    max-height: 40px ;
}

.footer-ul .ul-title{
    font-size: 1.5rem ;
    color: var(--dark-black);
    margin-bottom: 20px ;
}

.footer-ul .ul-description{
    line-height: 1.875rem ;
}

.footer-ul .ul-links li:not(:last-child){
    margin-bottom: 10px ;
}

.footer-ul .ul-contact li:not(:last-child){
    margin-bottom: 20px ;
}

.footer-ul .ul-links li a,
.footer-ul .ul-contact li,
.footer-ul .ul-contact li a{
    display: block;
    color: var(--dark-black);
}

.footer-copyright{
    display: flex;
    justify-content: space-between;
    padding: 30px 0 ;
}

.social-media{
    display: flex;
}

.social-media a{
    display: block;
}

.social-media a:not(:last-child){
    margin-right: 20px ;
}

.social-media a img{
    display: block;
    max-width: 30px ;
}