/* resignter */
.resignter {
    background-image: url('../../img/bg-rs.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 200px;
    color: var(--white-color);
}

.resignter-content {
    width: 800px;
    max-width: 80%;
    margin: 0 auto;
}

.resignter h2 {
    text-transform: uppercase;
    font-size: 50px;
}

.resignter .resignter-desc {
    font-size: 18px;
}

/* ABOUT_HOME */
.about {
    background: url('../../img/about-bg.png') no-repeat center/cover;
}

.about-left .img-bottom {
    bottom: -100px;
    width: 60%;
    height: 50%;
    right: -50px;
    border: 10px solid #fff;
}

.about-left .dot-shape {
    position: absolute;
    bottom: -50px;
    left: -50px;
}

.about-left span:not(:last-child) {
    z-index: 2;
}

.description ul {
    margin: 20px 0;
}

.description ul li {
    padding: 14px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    padding-left: 40px;
    position: relative;
}

.description ul li::before {
    position: absolute;
    left: 14px;
    top: 50%;
    content: '\f14a';
    font-weight: 900;
    display: block;
    transform: translateY(-50%);
    font-family: var(--fontAwesome);
    font-size: 24px;
    color: #038598;
}

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


/* END_ABOUT_HOME */

/* PROJECT */
/* Giới hạn swiper-slide không bị tràn */
.swiper-slide {
    overflow: hidden;
    max-width: 100%;
}

/* Hình ảnh luôn nằm gọn trong slide */
.project-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Chặn phần tử con tràn ra ngoài */
.project {
    position: relative;
    overflow: hidden;
}

/* Project background */
.project-bg {
    position: absolute;
    background: linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 72%) 80%, rgb(0 0 0) 100%);
    bottom: 0;
    left: 0;
    height: 30%;
    width: 100%;
    transition: all 400ms ease;
    z-index: 1;
}

/* Project info chính giữa */
.project-info {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    z-index: 2;
    width: 100%;
    text-align: center;
}

/* Hiệu ứng text */
.project-add,
.project-title {
    opacity: 0;
    position: relative;
    top: 0;
    transition: all .2s ease-out;
}

/* Hover hiệu ứng mượt */
.swiper-slide:hover .project-add {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
}

.swiper-slide:hover .project-title {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
    transition-delay: .2s;
}

.project-info a {
    color: var(--white-color);
}

/* Hover hiện icon */
.swiper-slide:hover .project-icon {
    opacity: 1;
    transition-delay: .4s;
}

/* Hover nền đen */
.swiper-slide:hover .project-bg {
    opacity: 1;
    border-radius: 0px;
}


/* ALBUM */

.album-item {
    overflow: hidden;
}

.album-item img {
    border-radius: 10px;
}

.album-info {
    position: absolute;
    opacity: 1;
    background: #fff;
    left: 50%;
    width: 90%;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    transform: translate(-50%, 100%);
    z-index: 2;
}

.album-info a:last-child {
    display: block;
    color: #454e6d;
    font-size: 20px;
    padding: 10px 20px;
    background: #e0cda3;
}

.album-info a:hover {
    color: #ce9413;
}

.album-item:hover .album-info {
    transform: translate(-50%, -120%);

}

/* VIDEO */

.video {
    overflow: hidden;
}

.video-item {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.video-item::after {
    content: '';
    display: block;
    position: absolute;
    right: -40px;
    top: -40px;
    background-color: #c59e6d;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    position: absolute;
    top: -20%;
    right: 0;
    width: 500px;
    height: 80%;
}

.bg-video img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video .heading {
    margin-bottom: 100px !important;
}

/* FEADBACK */

.feadback-main {
    max-width: 650px;
    position: relative;
    background: #f8f8f8;
    padding: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.feadback-bg {
    height: 534px;
    width: 850px;
    border-radius: 5px;
    background-image: url('../../img/feadback.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.feadback-user {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.avatar {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.feadback-info {
    font-size: 20px;
    flex: 1;
    margin-left: 20px;
}

.feadback-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 100px;
}

.feadback-info p {
    margin: 0;
}

.feadback-title {
    font-weight: 500;
}

.feadback-desc {
    color: #54595F;
}

.feadback-icon {
    color: #A6A182;
    font-size: 80px;
}

.feadback-star {
    color: #F8BC26;
    font-size: 14px;
    margin-bottom: 10px;
}