.elementor-579 .elementor-element.elementor-element-9e4b056{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-579 .elementor-element.elementor-element-9e4b056:not(.elementor-motion-effects-element-type-background), .elementor-579 .elementor-element.elementor-element-9e4b056 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f2a9098 *//* Top notification bar */
.tk-top-bar {
    background-color: #ffc107;
    color: white;
}

.tk-top-bar__content {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    max-width: 75rem;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.tk-top-bar__left,
.tk-top-bar__right {
    display: flex;
    align-items: center;
}

.tk-top-bar__left {
    gap: 0.3125rem;
}

.tk-top-bar__right {
    gap: 1.25rem;
}

.tk-top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.tk-top-bar__item:hover {
    opacity: 0.8;
}

.tk-top-bar__icon {
    width: 1rem;
    height: 1rem;
    background-size: contain;
}

/* Main header */
.tk-header {
    background-color: white;
    padding: 0.9375rem 1.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.tk-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 75rem;
    margin: 0 auto;
}

.tk-header__logo {
    display: flex;
    align-items: center;
    width: 200px;
    height: auto;
    gap: 0.625rem;
}

.tk-header__logo-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Search bar container */
.tk-header__search-container {
    flex: 1;
    max-width: 31.25rem;
    margin: 0 1.875rem;
    display: flex;
    align-items: center;
    height: 2.5rem;
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tk-header__search-input {
    flex: 1 !important;
    padding: 0.75rem 0.9375rem !important;
    font-size: 0.875rem !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.tk-header__search-input::placeholder {
    color: #999;
}

.tk-header__search-button {
    background-color: #ffc107;
    border: none;
    padding: 0 0.9375rem;
    color: #333;
    cursor: pointer;
    height: 100%;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.tk-header__search-button:hover {
    background-color: #e0a800;
}

.tk-header__actions {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
}

.tk-header__action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s;
}

.tk-header__action:hover {
    color: #ffc107;
}

.tk-header__action-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 1rem;
}

/* Navigation menu */
.tk-nav {
    background-color: #fff;
    padding: 9 0;
    box-shadow: 0 0.125rem 0.25rem rgba(74, 72, 72, 0.1);
}

.tk-nav__container {
    display: flex;
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
    white-space: wrap;
    padding: 0 1.25rem;
}

.tk-nav__item-right{
    display: flex;
    align-items: center;
    gap: 1.5625rem;
}

.tk-nav__item {
    position: relative;
    color: #333;
    padding: 0.9375rem 1.25rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    outline: none;
}

.tk-nav__item:hover,
.tk-nav__item:focus {
    background-color: #f8f9fa;
    color: #ffc107;
}

.tk-nav__item--active {
    background-color: rgba(0, 0, 0, 0.15);
}

.tk-nav__item--dropdown:hover .tk-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tk-nav__item-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.tk-nav__icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.tk-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 15.625rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    border-radius: 0 0 0.5rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.625rem);
    transition: all 0.3s ease;
    z-index: 1000;
}

.tk-nav__dropdown-item {
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 0.8125rem;
    font-weight: normal;
    text-transform: none;
    transition: background-color 0.3s;
}

.tk-nav__dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ffc107;
}

.tk-nav__menu-icon {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.5rem;
}

.tk-icons-cate {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}/* End custom CSS */