:root {
    --primary-color: #21B7BE;
    --text-body: #07142C;
    --gray-200: #81868F;
    --gray-300: #616773;
}
.header-container {
    background-color: white;
}
.dropdown-menu {
    border: none;
    overflow: hidden;
    padding: 0;
}
.dropdown-menu .dropdown-item{
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}
.header-banner {
    /*background-image: url("/images/slide.png");*/
    height: 500px;
    font-family: "Open Sans", sans-serif;
    /*padding-top: 16px;*/
}

.header-nav {
    display: flex;
    justify-content: space-between;
    height: 60px;
    backdrop-filter: blur(16px);
    border-radius: 40px;
    align-items: center;
    padding: 15px 20px;
    background: #0000003D;
    position: fixed;
    z-index: 999;
    left: 50%;
    transform: translate(-50%, 0%);
    top: 30px;
    width: 95%;
}

@media (min-width: 768px) {
    .header-nav {
        width: 100%;
        max-width: 1295px;
    }

}

.header-nav .header-start img.logo {
    height: 35px;
}

.header-nav .header-menu {
    display: flex;
    align-items: center;
}

.header-nav .header-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.header-nav .header-menu .menu-item {
    font-weight: 400;
    font-size: 16px;
    color: white ;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 5px;
}

.header-nav .header-menu .menu-item.active a{
    color: var(--primary-color);
}

.header-nav .header-menu .menu-item a {
    font-weight: 400;
    font-size: 16px;
    color: white ;
}

.header-nav .header-menu .menu-item:hover a {
    color: #11FFF1;
}

.header-nav .header-menu .menu-item:hover span {
    color: #11FFF1;
}

@media (min-width: 768px) {
    .header-nav .header-menu .menu-item {
        display: flex;
    }

}

.header-nav .header-action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav .header-action .btn-login {
    background-color: var(--primary-color);
    border-radius: 40px;
    color: white;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
}
.header-nav .header-action .action-item {
    height: 44px;
    width: 44px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #00000029;
    justify-content: center;
}


.header-nav .header-action .action-item i {
    color: white;
}

.home-search-form {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px -2px #000B0D1A;
    padding: 30px 20px;
    border-radius: 16px;
    margin-top: -60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-search-form .search-title {
    font-size: 22px;
    font-weight: 600;
}

.home-search-form .search-content {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-200);
}
@media (min-width: 768px) {
    .home-search-form {
        background: #FFFFFF;
        box-shadow: 0px 4px 24px -2px #000B0D1A;
        padding: 32px 60px;
        border-radius: 16px;
        margin-top: -60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .home-search-form .search-title {
        font-size: 44px;
        font-weight: 600;
    }

    .home-search-form .search-content {
        font-size: 18px;
        font-weight: 400;
        color: var(--gray-200);
    }

}

.home-search-form .search-input {
    width: 100%;
    height: 60px;
    background: #F3F3F6;
    display: flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 40px;
}


.home-search-form .search-input input {
    width: 100%;
    border: none;
    outline: none;
    background: #F3F3F6;
}

.org-card {
    padding: 15px;
    background: #F3F3F6;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.org-card .org-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.org-card .org-card-header .org-card-title {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #040E20;
}

.org-card .org-card-header .org-card-icon {
    border-radius: 100%;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 16px -3px #0D2F5C0F;
    background-color: white;
    transform: rotate(45deg);
}
.org-card .org-card-header .org-card-icon i {
    font-size: 24px;
    color: var(--gray-300);
}

.org-card .org-card-img img {
    width: 100%;
    border-radius: 8px;
    height: 140px;
}

.org-card-container {
    margin-top: 60px;
    padding-bottom: 60px;
}

.org-card:hover .org-card-header .org-card-icon {
    background-color: var(--primary-color);
}

.org-card:hover .org-card-header .org-card-icon i {
    color: white;
}

.user-profile-main, .hoip-blog-detail, .create-event {
    margin-top: 60px;
}

.hoip-blog-detail {}











