.header-topbar {
    position: relative;
    padding: 5px 0;
}

.header-topbar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 70%;
    background: #313256;
    border-radius: 0 50px 0 0;
    z-index: -1;
}

.header-topbar::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: -1px;
    width: 30%;
    background: #0bb0af;
    border-radius: 0 0 0 50px;
    z-index: -1;
}

.header-topbar .topbar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* Contact info row */
.header-topbar .contact-row {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    gap: 0;
}

.header-topbar .contact-row .contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #FFF;
    border-bottom: none;
    padding: 0;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-topbar .contact-row .contact-item:hover {
    background-color: transparent;
}

.header-topbar .contact-row .contact-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.header-topbar .contact-row .contact-item img {
    width: 14px;
}

/* Social block — orange pill shape */
.header-topbar .social-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.header-topbar .social-block ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.header-topbar .social-block ul li img {
    width: 16px !important;
}

.header-topbar .social-block ul li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0bb0af;
    border: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    /* position: relative; */
    z-index: 104;
}

.header-nav.affix {
    width: 100%;
    top: 0;
    animation: slide-down .5s linear forwards;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 6px;
}

/* Logo */
.header-nav .nav-logo img {
    max-width: 170px;
    width: 100%;
}

/* Right actions */
.header-nav .nav-inner .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-nav .nav-actions .btn-search {
    display: flex;
}

.header-nav .nav-actions .btn-search:hover {
    color: #FDA31B;
}

.header-nav .nav-inner .nav-actions .btn-search svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-nav .nav-actions .btn-apply {
    gap: 8px;
    padding: 11px 22px;
}

.header-nav .nav-actions .btn-apply svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}










.menu .level1 {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu ul li {
    list-style: none;
    position: relative;
}

.menu .item-level1.active .name-level1 {
    color: #FDA31B;
}

.menu .item-level1 .name-level1 {
    display: inline-flex;
    border-radius: 4px;
    font-weight: 600;
    color: #313256;
    font-size: 16px;
    text-transform: uppercase;
    align-items: center;
}

.icon-arrow {
    display: flex;
}

.icon-arrow svg {
    width: 19px;
    height: 19px;
}

.name-level1>.icon-arrow svg path {
    stroke: currentColor;
}

.level2 {
    position: absolute;
    left: 0;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px 0;
    /* display: none; */
    z-index: 10;
    border-radius: 5px;
    width: max-content;
    max-width: 375px;
    top: 80%;
}

.level2 .item-level2 {
    padding: 4px 25px;
}

.name-level2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 15px;
}

.name-level2 .icon-arrow {
    transform: rotate(-90deg);
}

.level3 {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    z-index: 10;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-width: 200px;
    padding: 5px 0;
    border-radius: 5px;
}

.level3 .item-level3 {
    padding: 5px 10px;
}

/* Search popup  */
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, .8);
    transition: all 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -120px;
    text-align: center;
    background: #FDA31B;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-popup .close-search svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 800ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 200ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 600ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    width: 100%;
    height: 65px;
    outline: none;
    border-radius: 8px;
    border: none;
    padding: 0 100px 0 35px;
    transition: all 500ms ease;
    text-transform: capitalize;
    font-size: 16px;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 10px;
    top: 9px;
    background: #FDA31B;
    text-align: center;
    font-size: 20px;
    color: #FFF;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    background: #000;
    color: #FFF;
}

.search-popup .form-group button svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* modal dktv  */
.modal-overlayyy {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 106;
	justify-content: center;
	align-items: center;
	/* display: flex; */
}

.modal-overlayyy .modal-content {
	background: #fff;
	padding: 0;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	max-width: 460px;
	width: 90%;
	animation: fadeIn 0.3s ease;
	position: relative;
}

.modal-overlayyy .modal-content form {
    padding: 20px 25px 25px 25px;
  	text-align: center;
}

.modal-overlayyy .modal-content .inner {
	display: grid;
  	grid-template-columns: repeat(1, 1fr);
}

.modal-overlayyy .image-wrap img {
	width: 100%;
  	height: 100%;
  	object-fit: cover;
  	border-radius: 10px 0 0 10px;
}

.modal-overlayyy .modal-content h2 {
	margin-bottom: 15px;
	font-size: 22px;
	text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.modal-overlayyy .modal-content h2 .pop-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff2e6;
    display: grid;
    place-items: center;
    color: #f27c00;
    font-size: 22px;
    font-weight: 700;
}

.modal-overlayyy .close-btn-modal {
	padding: 0;
    position: absolute;
    top: 8px;
    right: 5px;
    border-radius: 50%;
    color: #E3B25A;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlayyy .close-btn-modal svg {
	width: 20px;
	height: 20px;
}

.modal-overlayyy .form-group {
	margin-bottom: 15px;
}

.modal-overlayyy input,
.modal-overlayyy select,
.modal-overlayyy textarea {
    height: 40px;
    width: 100%;
    resize: none;
    font-size: 14px;
    font-family: inherit !important;
    border: 1px solid #d5dbe0;
    border-radius: 8px;
    padding: 8px 13px;
}

.modal-overlayyy textarea {
    height: 100px;
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
}

.modal-overlayyy .form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlayyy .form-footer strong {
    font-weight: 700;
}

@keyframes fadeIn {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


.nav-actions .icon-menu-m {
    display: none;
}

.nav-actions .icon-menu-m svg {
    width: 25px;
    height: 25px;
}

@media (min-width: 1180px) {

    .close-menu-mb,
    .logo-menu,
    .menu .item-level1 .name-level1 img,
    .svg-icon {
        display: none;
    }

    .level2 {
        opacity: 0;
        visibility: hidden;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .3s;
    }

    .item-level1:hover .level2 {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .item-level2:hover .level3 {
        display: block;
    }

}

@media (max-width: 1180px) { 
    .nav-actions .icon-menu-m {
        display: flex;
    }

    .menu .item-level1 {
        border-bottom: 1px solid #a3a3a324;
        padding: 5px 0;
    }

    .svg-icon {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 14px;
        right: 0px;
    }

    .level2,
    .level3 {
        position: unset;
        background-color: transparent;
        box-shadow: none;
        margin-left: 25px;
        width: calc(100% - 25px);
        padding: 5px 0;
        display: none;
    }

    .level2 .item-level2 {
        padding: 5px 25px 5px 0px;
        list-style: circle;
    }

    .level2 .item-level2 .svg-icon {
        top: 8px;
        right: 11px;
    }

    .svg-icon.active .icon-plus-x {
        transform: scaleY(0);
    }

    .svg-icon rect, .svg-icon path {
        transition: all cubic-bezier(.12, .67, .53, 1) .3s;
        transform-origin: center;
    }

    .icon-arrow {
        display: none;
    }

    .header-right .icon-menu-m {
        display: flex;
    }

    .overlay-m {
        background: #000;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .overlay-m.active {
        opacity: .5;
        visibility: visible;
    }

    .menu {
        background: #FFF;
        border-color: rgba(0, 0, 0, 0.1);
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

    .menu.active {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .menu .name-level1 {
        color: #65442b;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .menu .name-level1 img {
        width: 22px;
    }

    .menu .level1 {
        display: block;
    }

    .menu .item-level1 .name-level1 {
        display: inline-block;
        padding: 5px 0;
        color: #000;
    }

    .menu .item-level1.active {
        margin-bottom: 5px;
    }

    .menu .close-menu-mb {
        position: absolute;
        top: 15px;
        right: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .menu .close-menu-mb svg {
        width: 25px;
        height: 25px;
    }

    .logo-menu {
        margin-bottom: 15px;
    }

    .logo-menu img {
        max-width: 200px;
        width: 100%;
    }
}

@media (max-width: 992px) { 
    .header-topbar {
        display: none;
    }
}

@media (max-width: 575px) {  
    .header-nav .nav-actions .btn-apply svg {
        display: none;
    }

    .header-nav .nav-actions .btn-apply {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header-nav .nav-inner .nav-actions {
        gap: 10px   ;
    }

    .header-nav .nav-logo img {
        max-width: 140px;
        width: 100%;
    }

    .modal-overlayyy .modal-content form {
        padding: 15px 25px;
    }

    .modal-overlayyy textarea {
        height: 70px;
    }
}

@media (max-width: 370px) {  
    .header-nav .nav-actions .btn-apply {
        display: none;
    }
}