:root {
    --primary-color: #0032a0;
    --secondary-color: #fbb12f;
}

@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald.ttf');
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #fff;
}

::-webkit-scrollbar
{
	width: 4px;
	background-color: #fff;
}

::-webkit-scrollbar-thumb
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--primary-color);
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-scroll {
    overflow: hidden !important;
}

body {
    font-size: 16px;
    font-family: 'Oswald';
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:focus-visible {
    outline: none;
}

img {
    max-width: 100%;
}

.delay-01s {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.delay-02s {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.delay-03s {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.delay-04s {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.delay-05s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.delay-06s {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.delay-07s {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.delay-08s {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.delay-09s {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.animate__duration-1s {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.animate__duration-2s {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes reveal {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes reveal {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes WheelArrow {
    0% {
        transform: rotate(-45deg) translate(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(-45deg) translate(-5px, 5px);
        opacity: 0;
    }
}

@keyframes WheelArrow {
    0% {
        transform: rotate(-45deg) translate(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(-45deg) translate(-5px, 5px);
        opacity: 0;
    }
}

#pagepiling .section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    position: fixed;
    top: 0;
    padding: 15px 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

header .logo {
    opacity: 0;
    margin-bottom: 0;
}

header .logo.hide {
    display: none;
}

header .logo.animate__animated {
    opacity: 1;
}

header .logo img {
    width: 200px;
}

#sidemenu .mail-phone li {
    opacity: 0;
}

#sidemenu .mail-phone .li.animate__animated {
    opacity: 1;
}

.mail-phone li {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

.mail-phone li a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
}

.mail-phone li a svg {
    transform: scale(1.2);
    margin-right: 5px;
    transition: all .3s ease-in-out;
    color: var(--secondary-color);
}

.mail-phone li a:hover svg {
    transform: scale(1);
}

.mail-phone li a:hover {
    color: #fff;
}

.mail-phone li a:hover svg {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
}

.lang {
    margin-left: 50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    background: transparent;
    border: 1px solid #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    position: relative;
}

.lang span {
    position: relative;
    z-index: 2;
}

.lang::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(0);
    transition: all .3s ease-in-out;
}

.lang:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.menu-btn {
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    display: flex;
}

.menu-btn span,
.menu-btn::after,
.menu-btn::before {
    content: '';
    position: absolute;
    height: 3px;
    background: #fff;
    transition: all .3s ease-in-out;
    width: 35px;
    top: 25px;
}

.menu-btn span {
    width: 30px;
    top: 15px;
}

.menu-btn::before {
    width: 25px;
    top: 5px;
}

.menu-btn.active span {
    opacity: 0;
    background: var(--secondary-color);
}

.menu-btn.active::before {
    top: 14px;
    width: 70%;
    transform: rotate3d(0, 0, 1, 45deg);
    background: var(--secondary-color);
}

.menu-btn.active::after {
    top: 14px;
    width: 70%;
    transform: rotate3d(0, 0, 1, -45deg);
    background: var(--secondary-color);
}

.menu-btn:hover span,
.menu-btn:hover::after,
.menu-btn:hover::before {
    background: var(--secondary-color);
}

.side-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    padding-top: 150px;
    background: var(--primary-color);
    border-right: 10px solid var(--secondary-color);
    transform: translateX(-100%);
    transition: all .3s ease-in-out;
    z-index: 990;
}

.side-menu .mail-phone {
    display: none;
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--secondary-color);
    transition: all .3s ease-in-out;
}

.side-menu a span {
    display: block;
}

.side-menu a:hover,
.side-menu a.active {
    color: var(--secondary-color);
}

.overlay-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all .3s ease-in-out;
    transform: translateX(100%);
    background: rgba(0, 50, 160, .4);
    z-index: 970;
}

.overlay-bg.open {
    transform: translateX(0);
}

h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 2px;
}

.sec-1 h2 .char {
    opacity: 0;
}

.sec-1 h2 .char.animate__animated {
    opacity: 1;
}

.logo {
    opacity: 0;
    text-align: center;
    margin-bottom: 50px;
}

.logo.animate__animated {
    opacity: 1;
}

.logo img {
    width: 500px;
}

.wheel.show {
    opacity: 1;
}

.wheel {
    position: absolute;
    bottom: 20%;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: 50px;
    height: 50px;
}

.wheel span {
    position: absolute;
    top: 5px;
    left: 14px;
    width: 12px;
    height: 12px;
    border-left: 3px solid rgba(225, 225, 225, .8);
    border-bottom: 3px solid rgba(225, 225, 225, .8);
    transform: rotate(-45deg);
    -webkit-animation: WheelArrow 2s infinite;
    animation: WheelArrow 2s infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    opacity: 0;
    box-sizing: border-box;
}

.wheel span:last-child {
    top: 10px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    width: 20px;
    height: 20px;
    left: 10px;
}

.card {
    position: absolute;
    max-width: 450px;
    top: 15%;
    padding: 20px;
    background: transparent;
    color: #fff;
    border: none;
    opacity: 0;
}

.card.animate__animated {
    opacity: 1;
}

.btn {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    border-radius: 0;
    transition: all .3s ease-in-out;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all .3s ease-in-out;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary,
.btn-primary:hover {
    background: var(--primary-color);
}

.btn-primary:hover::before {
    background: var(--secondary-color);
}

.btn span {
    position: relative;
}

.sec-2 .card p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail p,
.detail img,
.detail h3,
.detail i {
    position: relative;
    z-index: 999;
}

.detail {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 50px 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    opacity: 0;
    overflow-y: scroll;
    visibility: hidden;
}

.detail.open {
    opacity: 1;
    visibility: visible;
}

.opacity-0.animate__animated {
    opacity: 1 !important;
}

.detail.open::after,
.detail.open::before {
    width: 50%;
}

h3 {
    position: relative;
    z-index: 5;
}

.detail h3 {
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

.detail h3 span {
    color: var(--primary-color);
}

.pp-section {
    position: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 995;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.sec-5 .overlay {
    transform: scale(0);
    transform-origin: 50% 50%;
    opacity: 1;
    visibility: visible;
}

.detail .container {
    display: block;
}

.sec-5 .overlay.open {
    transform: scale(1);
}

.overlay.left {
    left: 0;
    width: 50%;
}

.overlay.right {
    right: 0;
    left: unset;
    width: 50%;
}

a.close-detail {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 9999;
    color: var(--primary-color);
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a.close-detail svg {
    width: 40px;
    height: 40px;
}

ul.list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

ul.list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.sec-3 .card {
    left: unset;
    right: 0;
    top: 20%;
}

.sec-4 .card {
    position: static;
}

.sec-4 img {
    width: 100%;
    height: 500px;
    border: 5px solid #fff;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.transparent-bg{
    background: transparent !important;
}

.section::after,.detail-blog::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51, 49, 50, .6);
}

#detail header.fixed{
    background: #000;
}

.detail-blog::after{
    position: fixed;
    backdrop-filter: blur(10px);
}

.sec-4 img.animate__animated {
    opacity: 1;
}

.sec-4 .card {
    top: 35%;
    left: 10%;
    z-index: 5;
}

.sec-5 svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sec-5 .detail svg {
    position: static;
}

#pp-nav span,
.pp-slidesNav span {
    height: 15px;
    width: 15px;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all .1s ease-in-out;
}

#pp-nav li,
.pp-slidesNav li {
    margin-bottom: 10px;
}

#pp-nav a:hover span,
.pp-slidesNav a:hover span {
    background: var(--secondary-color);
    border-color: var(--secondary-color) !important;
}

#pp-nav li .active span,
.pp-slidesNav .active span {
    background: var(--secondary-color);
    border-color: var(--secondary-color) !important;
}

.sec-5 {
    padding-top: 80px;
}

.sec-5 .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.sec-5 .item {
    position: relative;
    opacity: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    border: 8px solid transparent;
    transition: all .3s ease-in-out;
}

.sec-5 .item:hover {
    border-color: var(--secondary-color);
}

.sec-5 .item:hover img {
    transform: scale(1.1);
}

.sec-5 .item.animate__animated {
    opacity: 1;
}

.sec-5 .card {
    position: static;
}

.sec-5 .item .text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-weight: 600;
    background: rgba(0, 0, 0, .6);
    padding: 20px 10px;
    transition: all .3s ease-in-out;
}

.sec-5 .item .text span {
    position: relative;
    z-index: 2;
}

.sec-5 .item .text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--secondary-color);
    z-index: 1;
    transition: all .3s ease-in-out;
}

.sec-5 .item:hover .text::after {
    width: 100%;
}

.sec-5 .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#partner .item {
    width: 220px;
    margin: 0 auto;
}

.sec-7 h3 {
    color: #fff;
    margin-bottom: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}

.container {
    position: relative;
    z-index: 99;
}

.sec-5 .left {
    width: 40%;
}

.sec-5 .left+.row {
    width: 60%;
}

.sec-7 .bottom ul {
    text-align: center;
}

.sec-7 .bottom ul li {
    position: relative;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    padding: 0 15px;
}

.sec-7 .bottom ul li::after {
    content: '|';
    position: absolute;
    top: 0;
    right: -5px;
}

.sec-7 .bottom ul li:last-child::after {
    content: none;
}

.sec-7 .bottom ul a {
    color: #fff;
    transition: all .3s ease-in-out;
}

.sec-7 .bottom ul a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.sec-7 .top {
    margin-bottom: 30px;
}

#partner .item,
.sec-7 .bottom li,
.sec-7 h3 {
    opacity: 0;
}

#partner .item.animate__animated,
.sec-7 .bottom li.animate__animated,
.sec-7 h3.animate__animated {
    opacity: 1;
    visibility: visible !important;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 99999;
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

#loader::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222;
    z-index: 9999;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.list-blog {
    height: 450px;
    overflow-y: scroll;
}

.list-blog .blog-item {
    display: flex;
    margin-bottom: 15px;
}

.list-blog .blog-item .blog-thumb {
    width: 20%;
}

.list-blog .blog-item .blog-content {
    width: 80%;
}

.sec-6 {
    color: #fff;
}

.blog-item .blog-thumb {
    height: 300px;
}

.blog-item .blog-thumb img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}

.blog-item .blog-content {
    padding: 15px 0;
}

.blog-item .blog-content h4 {
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item .blog-content h4:hover {
    color: var(--secondary-color);
}

.list-blog .blog-item .blog-thumb {
    height: 100px;
}

.list-blog .blog-item .blog-content {
    padding: 0 0 0 15px;
}

.list-blog .blog-item .blog-content h4 {
    font-size: 23px;
}

.blog-item .blog-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sec-6 .detail{
   color: #000;
}

.sec-6 .date{
    display: flex;
    align-items: center;
}

.sec-6 .date svg{
    font-size: 14px;
    padding-right: 5px;
}

.sec-6 .meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.sec-6 .share{
    display: flex;
    align-items: center;
}

.sec-6 .share a{
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    margin-left: 10px;
}

.sec-6 .share a svg{
    width: 16px;
}

.facebook{
    background: #4267B2;
}

.twitter{
    background: #1DA1F2;
}

.google{
    background: #c71610;
}

.next-prev{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.next-prev a{
    display: flex;
    align-items: center;
    color: #000;
    transition: all .3s ease-in-out;
}

.next-prev a:hover{
    color: var(--secondary-color);
}

#blog{
    margin-bottom: 50px;
}

#blog .blog-item .blog-thumb{
    height: 190px;
}

.detail-blog {
    padding-top: 100px;
}

.detail-blog .next-prev a{
    color: #fff;
}

.detail-blog .next-prev a:hover{
    color: var(--secondary-color);
}

@media only screen and (max-width: 1400.98px) {
    header .logo img {
        width: 180px;
    }
}

@media only screen and (max-width: 1199.98px) {
    h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .detail h3 {
        font-size: 26px;
    }

    .lang {
        margin-left: 20px;
    }

    .mail-phone li a {
        font-size: 16px;
    }

    header .logo img {
        width: 140px;
    }

    #pp-nav.right {
        right: 5px;
    }

    .list-blog .blog-item .blog-thumb {
        height: 80px;
    }

    .list-blog .blog-item .blog-content h4 {
        font-size: 21px;
    }

    .list-blog {
        height: 480px;
    }
}

@media only screen and (max-width: 991.98px) {

    .mail-phone li a svg {
        transform: scale(1);
    }

    .lang {
        margin-left: 10px;
    }

    .mail-phone li span {
        display: none;
    }

    .mail-phone li a svg {
        margin-right: 0;
    }

    .sec-4 img {
        width: 450px;
        height: 300px;
    }

    .sec-5 .item .text {
        padding: 8px;
        font-size: 14px;
    }

    .list-blog {
        height: 280px;
    }

    .sec-7 h3{
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 767.98px) {
    h2 {
        font-size: 23px;
        letter-spacing: 0;
    }

    .detail h3 {
        font-size: 21px;
    }

    .logo img {
        width: 400px;
    }

    header {
        padding: 10px 15px;
    }

    a.close-detail {
        top: -40px;
    }

    a.close-detail svg {
        width: 30px;
        height: 30px;
    }

    #pp-nav.right {
        display: none;
    }

    .sec-4 img {
        width: 100%;
    }

    .sec-5 .left {
        width: 100%;
    }

    .sec-5 .left+.row {
        width: 100%;
    }

    /* .sec-5 .container{
        display: block;
    } */

    .sec-5 .detail .container {
        display: flex;
        flex-direction: column;
    }

    .sec-7 .bottom ul li {
        padding: 0;
    }

    .sec-7 .bottom ul li::after {
        content: none;
    }

    .sec-5 .card {
        padding: 0;
    }

    /* .sec-5 .container{
        align-items: start;
    } */

    .sec-5 {
        padding-top: 0;
    }

    .sec-5 .item {
        height: 150px;
        margin: 0 5px;
    }

    .blog-item .blog-thumb {
        height: 250px;
    }

    .next-prev{
        flex-direction: column;
        align-items: center;
    }

}

@media only screen and (max-width: 575.98px) {
    .logo img {
        width: 280px;
    }

    #pp-nav li,
    .pp-slidesNav li {
        margin: -5px -5px 10px -5px;
    }

    #pp-nav span,
    .pp-slidesNav span {
        height: 10px;
        width: 10px;
    }

    header .mail-phone {
        display: none;
    }

    .side-menu .mail-phone {
        display: block;
    }

    .side-menu {
        padding-top: 100px;
    }

    .mail-phone {
        margin-top: 30px;
        text-align: center;
    }

    .mail-phone li {
        padding: 0;
    }

    .mail-phone li a {
        border-bottom: none;
        padding: 10px 15px;
    }

    .sec-3 .card {
        top: 13%;
    }

    body {
        font-size: 14px;
    }

    ul.list li {
        padding-left: 10px;
    }

    .sec-5 .item .text {
        padding: 5px;
        font-size: 12px;
    }

    .side-menu {
        width: 100%;
    }

    .list-blog {
        height: 210px;
    }

    .blog-item .blog-thumb {
        height: 200px;
    }

    .list-blog .blog-item .blog-thumb {
        height: 60px;
    }

    .list-blog .blog-item .blog-content h4 {
        font-size: 16px;
    }

    .list-blog .blog-item .blog-content {
        padding: 0 0 0 10px;
    }

    .list-blog .blog-item {
        margin-bottom: 10px;
    }

    .blog-item .blog-content h4 {
        font-size: 20px;
    }

    .blog-item .blog-content {
        padding: 10px 0;
    }
}

@media only screen and (max-width: 480px) {
    .logo img {
        width: 210px;
    }

    h2 {
        font-size: 20px;
    }

    .detail h3 {
        font-size: 18px;
    }

    .sec-4 img {
        height: auto;
    }

    .sec-5 .item {
        height: 120px;
    }

    .list-blog {
        height: 145px;
    }

    .blog-item .blog-content h4 {
        font-size: 18px;
    }

    .blog-item .blog-thumb,#blog .blog-item .blog-thumb {
        height: 150px;
    }
}