/************************************************************************/
/************************* COMPONENT - DEFAULT SLIDER *******************/
/* #region */
.default-slider-container {
    overflow: hidden;
}

.default-slider-container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 7.5rem;
}

.default-slider-container .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid var(--mau-chinh);
    transition: all ease .4s;
    opacity: 1;
    background: transparent;
}

.default-slider-container .swiper-pagination .swiper-pagination-bullet:hover,
.default-slider-container .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--mau-chinh);
}

/** Base: 1024 **/
@media screen and (max-width: 1600px) {
    .default-slider-container .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/** Base: 1024 **/
@media screen and (max-width: 1199px) {
    .default-slider-container .swiper-pagination .swiper-pagination-bullet {
        width: 1.4rem;
        height: 1.4rem;
    }}

/** Base: 768 **/
@media screen and (max-width: 991px) {}

/** Base: 640 **/
@media screen and (max-width: 767px) {}

/** Base: 414 - Iphone Plus **/
@media screen and (max-width: 575px) {

    .default-slider-container .swiper-pagination {
        margin-top: 2rem;
    }

    .default-slider-container .swiper-pagination .swiper-pagination-bullet {
        width: 1rem;
        height: 1rem;
    }
}

/** Base: 375 - Iphone **/
@media screen and (max-width: 399px) {}

/* #endregion */
/************************* COMPONENT - DEFAULT SLIDER *******************/
/************************************************************************/

/************************************************************************/
/************************* COMPONENT - VIDEO ****************************/
/* #region */
.item-video {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none !important;
    transition: all ease .4s;
    outline: none;
}

.item-video:hover {
    color: #0e2f50;
}

.item-video .img-container {
    position: relative;
    overflow: hidden;
    border: solid 2px #dedede;
}

.item-video .img-container::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    opacity: 0;
    transition: all ease .4s;
    z-index: 1;

}

.item-video .img {
    width: 100%;
    transition: all ease .4s;
}

.item-video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7rem;
    height: 7rem;
    color: #fff;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    font-size: 5.5rem;
    transition: all ease .4s;
}

.item-video:hover .play {
    transform: translate(-50%, -50%) rotate(120deg) scale(0.9);
}

.item-video:hover .img {
    transform: scale(1.1);
}

.item-video:hover .img-container::before {
    opacity: 1;
}

.item-video .name {
       margin-top: 0rem;
    background-color: #dedede;
    padding: 10px;
    text-align: center;
}

/** Base: 1024 **/
@media screen and (max-width: 1199px) {
    .item-video .play {
        width: 4rem;
        height: 4rem;
        font-size: 3.5rem;
    }

    .item-video .name {
        margin-top: 0rem
        background-color: #dedede;
    padding: 10px;
    text-align: center;
    }
}

/** Base: 768 **/
@media screen and (max-width: 991px) {}

/** Base: 640 **/
@media screen and (max-width: 767px) {}

/** Base: 414 - Iphone Plus **/
@media screen and (max-width: 575px) {}

/** Base: 375 - Iphone **/
@media screen and (max-width: 399px) {}

/* #endregion */
/************************* COMPONENT - VIDEO ****************************/
/************************************************************************/

/************************************************************************/
/************************* COMPONENT - BLOG *****************************/
/* #region */
.item-blog {
    position: relative;
}

.item-blog .img-container {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 4rem;
}

.item-blog .img-container:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all ease .6s;
    z-index: 1;
}

.item-blog:hover .img-container:before {
    opacity: 1;
}

.item-blog .img {
    width: 100%;
    transition: all ease .6s;
}

.item-blog:hover .img {
    transform: scale(1.1);
}

.item-blog .title {
    color: inherit;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    display: block;
    text-decoration: none;
    color: var(--mau-chinh);
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 4em;
}

.item-blog .description {
    font-size: 1.7rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 6em;
}

.item-blog .date {
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
    color: #495057;
}

.item-big-blog .img-container {
    margin-bottom: 0;
}

.item-big-blog .info {
    position: absolute;
    z-index: 11;
    bottom: 0;
    left: 0;
    right: 0;
     background-color: var(--mau-chinh);
    opacity: 0.8;
    padding: 2rem 3rem;
    pointer-events: none;
}

.item-big-blog .title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: initial;
    height: auto;
}

.item-big-blog .description {
    display: none;
}

.item-big-blog .date {
    margin-bottom: 0;
    color: #fff;
}

/** Base: 1024 **/
@media screen and (max-width: 1199px) {
    .item-blog .title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .item-big-blog .title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .item-blog .date {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .item-big-blog .date {
        margin-bottom: 0;
    }

    .item-blog .img-container {
        margin-bottom: 2rem;
    }

    .item-big-blog .img-container {
        margin-bottom: 0;
    }

    .item-blog .description {
        font-size: 1.4rem;
    }

    .item-big-blog .info {
        padding: 1rem 2rem;
    }
}

/** Base: 768 **/
@media screen and (max-width: 991px) {}

/** Base: 640 **/
@media screen and (max-width: 767px) {

    .item-blog .description,
    .item-blog .title {
        height: auto;
    }

    .item-blog .info {
        position: static;
        pointer-events: all;
        padding: 0;
        background: transparent;
    }

    .item-blog .title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--mau-chinh);
    }

    .item-blog .img-container {
        margin-bottom: 2rem;
    }

    .item-blog .date {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #1289b3
    }

    .item-blog .description {
        display: block;
    }
}

/** Base: 414 - Iphone Plus **/
@media screen and (max-width: 575px) {}

/** Base: 375 - Iphone **/
@media screen and (max-width: 399px) {}

/* #endregion */
/************************* COMPONENT - BLOG *****************************/
/************************************************************************/

/************************************************************************/
/************************* COMPONENT - FORM *****************************/
/* #region */
.form-style-1 .input {
    font-size: 1.7rem;
    display: block;
    width: 100%;
    border: none;
    border-radius: 0.5rem;
    padding: 0.8rem 1.7rem;
    outline: none;
}

.form-style-1 .btn-submit {
    padding: 2rem 6.4rem;
    background: transparent;
    color: var(--mau-chinh);
    border: 1px solid var(--mau-chinh);
    border-radius: 100rem;
    outline: none;
    font-weight: 600;
    line-height: 1;
    transition: all ease .4s;
}
.form-style-1 .btn-submit:hover {
    background-color: var(--mau-chinh);
    color: #fff;
}

/** Base: 1024 **/
@media screen and (max-width: 1199px) {
    .form-style-1 .input {
        font-size: 1.25rem;
        border-radius: 0.3rem;
        padding: 0.4rem 1rem;
    }

    .form-style-1 .btn-submit {
        padding: 1rem 4rem;
    }
}

/** Base: 768 **/
@media screen and (max-width: 991px) {}

/** Base: 640 **/
@media screen and (max-width: 767px) {}

/** Base: 414 - Iphone Plus **/
@media screen and (max-width: 575px) {}

/** Base: 375 - Iphone **/
@media screen and (max-width: 399px) {}

/* #endregion */
/************************* COMPONENT - FORM *****************************/
/************************************************************************/

/************************************************************************/
/************************* COMPONENT - XYZ *****************************/
/* #region */
/** Base: 1024 **/
@media screen and (max-width: 1199px) {}

/** Base: 768 **/
@media screen and (max-width: 991px) {}

/** Base: 640 **/
@media screen and (max-width: 767px) {}

/** Base: 414 - Iphone Plus **/
@media screen and (max-width: 575px) {}

/** Base: 375 - Iphone **/
@media screen and (max-width: 399px) {}

/* #endregion */
/************************* COMPONENT - XYZ *****************************/
/************************************************************************/