@import url(common.css);

/* @media (min-width: 992px) { */
.col-md-35 {
    flex: 0 0 32.33333%;
    max-width: 33.33333%;
    /* } */
}

@media (max-width: 1500px) {
    .col-6-1500 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 992px) {
    .col-12-992 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home-vision-content {
        height: calc(100svh - 63px);
    }
}





.home-vision-content {
    position: relative;
    overflow: hidden;
    /* Đảm bảo không có phần thừa */
    height: calc(100svh - 75px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* background: url('../images/home/homerg.jpeg') no-repeat center;
    background-size: cover !important; */
}


.home-vision-content-container {
    position: absolute;
    z-index: 9999;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.home-vision-content-text {
    display: flex;
    flex-direction: column;
    padding: 40px 5%;
    gap: 20px;
}

.home-vision-content-list {
    align-items: center;
    justify-content: space-between;
}

.home-vision-content-item {
    min-height: 140px;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    justify-content: space-between;
    background: linear-gradient(270deg, rgba(175, 11, 53, 0.85) 0%, rgba(201, 50, 89, 0.85) 100%);
}

.home-vision-content-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-vision-content-search {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.20);
    border: rgba(255, 255, 255, 0.20);
}



.home-vision-content-search-input {
    padding: 25px;
    position: relative;
    /* Đặt vị trí để ::before hoạt động đúng */
    z-index: 2;
    /* Đặt lớp nội dung nằm trên */
}

.home-vision-content-search-input::before {
    content: "";
    /* Đảm bảo nội dung giả được tạo */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    /* Hiệu ứng mờ */
    backdrop-filter: blur(3.5px);
    /* Tạo hiệu ứng mờ */
    z-index: 1;
    /* Đặt phía sau nội dung */
    pointer-events: none;
    /* Đảm bảo không can thiệp với sự tương tác */
}


.home-vision-content-search:hover {
    background: rgba(255, 255, 255, 0.20);
}

.home-vision-content-search:active {
    background: rgba(255, 255, 255, 0.20);
}

.home-vision-content-search:focus {
    background: rgba(255, 255, 255, 0.20);
    color: var(--white);
}

.home-vision-content-icon-search {
    left: 13px;
    height: 100%;
}

.home-vision-content-icon-right {
    right: 10px;
    height: 100%;
}

.home-vision-content .form-icon+.form-control {
    padding-left: calc(1rem + 28px);
}

.home-vision-content-text-line {
    background: rgba(255, 255, 255, 0.20);
}

.home-vision-content-search-blur {
    position: relative;
    backdrop-filter: blur(6.5px);
}



.home-vision-content-search::placeholder {
    color: rgba(255, 255, 255, 0.9);
    font-family: "BT Grotesk";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 16.5px */
}


.home-vision-content-list-mobile {
    display: none;
    width: 100%;
    padding: 24px 5%;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
    background: linear-gradient(270deg, rgba(175, 11, 53, 0.85) 0%, rgba(201, 50, 89, 0.85) 100%);
}

.home-vision-content-item-mobile {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
}

.home-vision-content-line-mobile {
    height: 50px;
    ;
}

.home-vision-content-item-mobile span {
    text-align: center;
}



@media (max-width: 992px) {
    .home-vision-content {
        background: url('../images/home/home-mobile.png') no-repeat center;
        background-position: top !important;
    }

    .home-vision-content {
        align-items: center;
        justify-content: flex-end;
        flex-direction: column;
        height: 100svh;
    }

    .home-vision-content-list {
        gap: 15px;
    }

    .home-vision-content-search-input {
        padding-right: 0%;
    }

    .home-vision-content-list-mobile {
        display: flex;
    }
}

@media (max-width: 575px) {
    .home-vision-content-search::placeholder {
        font-size: 12px;
    }
}