:root{
    --color-1979F7:#1979F7;
    --color-6EBE13:#6EBE13;
    --color-0A1F4499:#0A1F4499;
    --color-text:#0A1F44;
    --bg-linear:linear-gradient(90deg, #1D417F -12.62%, #194DAA 98.84%);
    --radius: 35vmin;
	--frame-size: calc(var(--radius) / 3);
	--d-outer: calc(var(--radius) * 2);
	--d-inner: calc(var(--d-outer) - var(--frame-size));
	--font-size: calc(var(--radius) / 10);
}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Thin.otf') format('opentype');
    font-weight: 100; /* thin */
    font-style: normal;
}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Light.otf') format('opentype');
    font-weight: 200; /* Light */
    font-style: normal;
}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Regular.otf') format('opentype');
    font-weight: 400; /* regular */
    font-style: normal;
}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Semibold.otf') format('opentype');
    font-weight: 600; /* regular */ 
    font-style: normal;

}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Bold.otf') format('opentype');
    font-weight: 700; /* regular */
    font-style: normal;

}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Extrabold.otf') format('opentype');
    font-weight: 800; /* regular */
    font-style: normal;

}
@font-face {
    font-family: 'averta';
    src: url('../fonts/AvertaStdCY-Black.otf') format('opentype');
    font-weight: 900; /* regular */
    font-style: normal;

}

body {
    font-family: 'averta', sans-serif !important; /* Sử dụng font chung */
}
.container{
    max-width: 1280px !important;
    width: 100% !important;
    padding:0 15px ;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700 !important;
}
p{
    font-weight: 400;
}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.icon-box{
    display: flex;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
   
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 32px;
    color: #fff;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: "\f061";
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: "\f060";
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: var(--swiper-navigation-sides-offset, -30px);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: var(--swiper-navigation-sides-offset, -30px);
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: var(--swiper-pagination-bottom, 0px);
}
.swiper-pagination-bullet{
    background-color: #fff;
}
.post, .page{
    margin-bottom: 0;
}
.page-content, .entry-content, .entry-summary{
    margin: 1em 0 0;
}
body, button, input, select, optgroup, textarea{
    font-family: 'averta', sans-serif !important; /* Sử dụng font chung */

}
.bigtitle{
    font-size: 40px;
    
}

.emblem {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0 auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    color: #fff;

    border: solid 1px #fff;
}

.emblem .text {
    animation: spinZ 20s linear infinite;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0 auto;
}

.emblem span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-weight: 100;
    font-size: 12px;
    transition: all 0.5s cubic-bezier(0, 0, 0, 1);
    padding: 3px;

}

.text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
    color: #fff;
    font-size: 11px;
}

.text p span {
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0 100px;
}

@keyframes spinZ {
    0% {
        transform: rotateZ(360deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}