﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
a{
    text-decoration: none;
}
ul li{
    list-style: none;
}
h1, h2, h3, h4, h5 {
    font-family: "Poppins" !important;
    font-weight: 700;
}
a:hover{
    text-decoration: none !important;
}

label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px !important;
    }
}
/* Custom Select2 to look like Ant Design */
.select2-container--default .select2-selection--single {
    height: 48px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 48px !important;
        padding-left: 13px !important;
        color: #4a5568 !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 46px !important;
    }

.select2-dropdown {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
}

.select2-search__field {
    border-radius: 4px !important;
    padding: 8px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e74c3c !important; 
}
/*menu mobile*/
.menu__mobile{
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: none;
    z-index: 20;
}
.main__menu__mobile{
    width: 95%;
    margin: auto;
}
.dropdown__menu__mobile li a{
    font-family: "Poppins";
    font-size: 13px;
    color: #8d8d8d;
    font-weight: 700;
}
.dropdown__menu__mobile li{
    padding: 7px 30px;
    border-top: 1px solid #eaeaea;
}
.dropdown__menu__mobile li:last-child{
    padding-bottom: 0;
}
.dropdown__menu__mobile li:first-child{
    margin-top: 10px;
}
.sub__menu__mobile{
    padding: 10px 0;
}
.sub__menu__mobile:not(:last-child){
    border-bottom: 1px solid #eaeaea;
}
.menu__title__mobile{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins";
    font-size: 18px;
    color: #8d8d8d !important;
    font-weight: 700;
}
.menu__title__mobile i{
    margin-left: 5px;
}
.sub__menu__mobile.show__dropdown .dropdown__menu__mobile{
    display: block;
}
.sub__menu__mobile.rotate__icons i{
    transform: rotate(180deg);
    transition: all linear 0.2s;
}
/*end menu mobile*/
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: none !important;
}
.swiper-pagination-progressbar {
    background: none !important;
}
/*address header*/
.address__header {
    background-color: #e74c3c;
    padding: 6px 0;
}
.main__address__header{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.follow__us{
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.follow__us h4{
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
}
.follow__us ul{
    margin-bottom: 0;
}
.follow__us ul,
.follow__us ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.follow__us ul li a i{
    color: #fff;
}
.follow__us ul li p{
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}
.language__select{
    position: relative;
}
.language__select p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0;
}
.language__select img{
    width: 20px;
    object-fit: cover;
    margin-right: 5px;
}
.language__select i{
    margin-left: 5px;
}
.list__language{
    position: absolute;
    left: 0;
    top: 100%;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    padding: 0 15px;
    background-color: #242625;
    transition: all ease-in-out 0.3s;
    z-index: 6;
}
.language__select:hover .list__language{
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.3s;
}
.list__language li {
    font-size: 12px;
    color: #fff;
    padding: 8px 0;
    cursor: pointer;
}
.list__language li  a{
    color: #fff;
}
/*end address header*/



/*header*/
header {
    width: 100%;
    height: 90px;
}
.header {
    position: relative;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5%;
    margin: 0 auto;
    z-index: 5;
}
.header {
    position: relative;
}
    header:: before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #333232;
}
.menu__bar{
    display: none;
}
.menu__bar i{
    color: #5c5e5c;
    font-size: 25px;
    cursor: pointer;
}
.logo{
    width: 10%;
}
.logo img{
    height: 90px;
    margin-left:70px;
    object-fit: cover;
    display: block;
}
.menu {
    height: 100%;
    margin-left: auto;
}
.nav__bar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub__menu{
    padding: 0 10px;
    position: relative;
}
.sub__menu > a{
    color: #242424 !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 90px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.sub__menu__title i{
    color: #727272;
    font-size: 13px;
}
.sub__menu__title:hover,
.sub__menu__title:hover i{
    color: #ffdc39;
}

@media (max-width: 768px) {
    /* Thu nhỏ logo trên mobile */
    .header-logo img {
        max-width: 150px !important;
        height: auto;
    }
    .home-banner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    /* Đảm bảo Header có khoảng trống hai bên */
    .navbar-container, .header-main {
        padding: 10px 15px !important;
    }
    .check-fees .container.bg-white {
        padding: 25px 15px !important;
        margin: 0 10px; /* Tạo khoảng cách với mép màn hình điện thoại */
    }

    /* Tiêu đề nhỏ lại cho mobile */
    .check-fees h2 {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }

    /* Label cho select */
    .check-fees label {
        font-size: 12px !important;
        margin-bottom: 5px;
    }

    /* Tối ưu thẻ Select */
    .check-fees .form-select {
        height: 48px !important; /* Độ cao phù hợp ngón tay bấm (UX) */
        font-size: 14px !important;
        margin-bottom: 5px;
        padding: 0 10px !important;
        background-position: right 0.75rem center; /* Chỉnh lại icon mũi tên */
    }

    /* Cột giá tiền */
    .check-fees #home-total-fee {
        font-size: 2.5rem !important; /* To vừa phải */
        margin: 15px 0;
    }

    .check-fees .fs-2 {
        font-size: 18px !important; /* Chữ "Total Fee:" */
    }

    /* Nút Apply Now trên mobile */
    #btn-home-apply {
        padding: 15px 0 !important;
        font-size: 1rem !important;
        border-radius: 50px !important;
    }
    visa-banner-search {
        margin-top: 0; /* Trên mobile không cần đè lên banner */
        padding: 15px;
    }

    .visa-box-content {
        width: 100%;
    }
}

.dropdown__menu{
    visibility: hidden;
    background-color: #2a2a2a;
    position: absolute;
    top: 110%;
    left: 0;
    width: 180px;
    z-index: 3;
    opacity: 0;
    transition: all linear 0.2s;
}
.sub__menu:hover .dropdown__menu{
    visibility: visible;
    opacity: 1;
    top: 100%;
    transition: all linear 0.2s;
}
.dropdown__menu li{
    padding: 7px 10px;
}
.dropdown__menu li a{
    font-size: 13px;
    color: #bbb;
    font-weight: 500;
    padding-left: 10px;
}


.dropdown__menu li:hover a{
    color: #fff;
}
.icon__search{
    cursor: pointer;
}
/*end header*/

/*fixed search*/

.main__fixed__search.active{
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.3s;
}
.main__fixed__search{
    position: fixed;
    left: 0;
    top: 0;
    background-color: transparent;
    background-image: url('../image/search-image.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
    z-index: 20;
}
.form-fixed-search input{
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 3px solid #67707b;
}
.form-fixed-search input::placeholder{
    color: #fff;
}
.form-fixed-search{
    position: fixed;
    width: max-content;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 40;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
.form-fixed-search.active{
    opacity: 1;
    top: 50%;
    visibility: visible;
    transition: all ease-in-out 0.5s;
}
.form-fixed-search button{
    position: absolute;
    bottom: 0;
    right: 0;
    border: none;
    outline: none !important;
    background-color: transparent;
    font-size: 33px;
    color: #fff;
    transform: rotateY(180deg);
    cursor: pointer;
}

/*end fixed search*/

/*footer*/
footer{
    background-color: #333333;
    padding-top: 50px;
}
.main__footer{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.footer__link{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.footer__link__content img{
    width: 125px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}
.footer__link__content p{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    margin-bottom: 15px;
}
.addr__footer li{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    margin-bottom: 10px;
}
.footer__link h5{
    color: #fff;
    line-height: 23px;
    margin-bottom: 15px;
}
.news__footer{
    margin-bottom: 15px;
}
.news__footer a{
    color: #bdbdbd;
    line-height: 27px;
    display: block;
    margin-bottom: 10px;
}
.news__footer span{
    font-size: 13px;
    color: #6b6b6b;
}
.follow__us__footer a{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    display: block;
}
.ins__feed{
    display: flex;
    flex-wrap: wrap;
}
.ins__feed__img{
    width: 33.333%;
    padding: 0 5px;
    margin-bottom: 10px;
}
.ins__feed__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.social__footer{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.social__footer li a i{
    color: #fff;
}
.social__footer li a:hover i{
    color: #ffdc39;
    transition: all ease-in-out 0.2s;
}
.copyright{
    padding: 20px 0;
    text-align: center;
}
    .copyright p {
        font-size: 15px;
        color: #dc3545;
    }
/*end footer*/
.page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
}
.back-to-top {
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    border: none;
    background-color: #dc3545;
    color: #FFF;
    transition: all linear 0.3s;
    opacity: 0;
    overflow: hidden;
    cursor: pointer;
    outline: none !important;
    z-index: 10;
}
.top p{
    font-family: "Poppins";
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    transition: all linear 0.3s;
}

.back-to-top i{
    font-size: 20px;
    transition: all ease-in-out 0.3s;
}
.back-to-top:hover i{
    transform: translateY(10px);
    transition: all ease-in-out 0.3s;
}
.back-to-top:hover p{
    opacity: 0;
    transition: all linear 0.3s;
}

.btn-active.animate{
    opacity: 1;
    bottom: 30px;
    transition: all .35s cubic-bezier(.81,-.65,0,1.24)
}


@media only screen and (max-width: 1200px){
    .address__header,
    .nav__bar,
    header::before{
        display: none;
    }
    .header{
        width: 95%;
        padding: 0;
    }
    .logo{
        width: 30%;
    }
    .menu__bar{
        display: block;
    }



    .main__footer{
        width: 95%;
    }
    .footer__link{
        width: 50%;
    }
}


@media only screen and (max-width: 767.98px){
    .footer__link{
        width: 100%;
    }
    .ins__feed__img{
        width: 50%;
    }
}

@media only screen and (max-width: 991px){
    .owl-theme .owl-nav{
        display: none;
    }
}

