/* Header - Style 1 ----- */
.header .menu-item .toggle {
    width: 16px;
}

.header-styles-1 .header-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: var(--menu-middle-margin);
}

.header-cta .heade-cta-btn {
    background-color: var(--header-btn-bg);
    transition: 320ms all;
    padding: 10px 18px;
    border-radius: 6px;
    display: block;
    text-align: center;
}

.header-cta .heade-cta-btn:hover {
    background-color: var(--header-btn-bg-hover);
}

.header-cta .heade-cta-btn span {
    font-weight: 500;
    color: var(--header-btn-text-color);
    transition: 320ms all;
}

.header-cta .heade-cta-btn:hover span {
    color: var(--header-btn-text-color-hover);
}

.header-styles-1 .menu-item .img {
    width: 21px;
    height: 21px;
    min-width: 21px;
    min-height: 21px;
    margin-top: -3px;
}

.header-styles-1 .header-bottom a {
    transition: 320ms all;
}

.header-styles-1 .header-bottom .menu-item.current_page_item>a,
.header-styles-1 .header-bottom .menu-item.current_page_item>a>.toggle svg {
    color: var(--header-bottom-text-hover);
    fill: var(--header-bottom-text-hover);
}

.header-styles-1 .menu-item .toggle {
    width: 18px;
    height: 20px;
    padding: 4px 0;
    display: flex;
    opacity: 0.8;
}

.header-styles-1 .sub-menu {
    top: calc(100% + 0px);
    background-color: var(--header-dropdown-bg);
    border-radius: 0;
}

.header-styles-1 .sub-menu .menu-item {
    border-top: 0px;
    padding: 0px;
}

.header-styles-1 .search-icon-btn {
    font-size: calc(1.5rem * var(--header-bottom-font-size));
    line-height: 1;
}

.header-styles-1 .search-icon-btn:hover span {
    color: var(--header-bottom-text-hover);
    transition: 320ms all;
}

.header-styles-1 .window_wrap .window_out,
.header-mobile-1 .window_wrap .window_out {
    background: rgb(0 0 0 / 80%);
}


.window_btn-close {
    background-color: rgb(192 192 192 / 10%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    line-height: 1;
    font-size: 14px;
    padding-bottom: 2px;
    cursor: pointer;
    font-weight: normal;
    border-radius: 50%;
}

.window_wrap .search-icon-inner.window_content-inner {
    background-color: #292929;
    --input-h: 42px;
    padding: 13px 5px;
    overflow: hidden;
    opacity: 0;
    width: 700px;
    max-width: calc(100vw - 20px);
    border: 1px solid var(--primary-color);
}

.window_wrap.active .search-icon-inner.window_content-inner {
    opacity: 1;
}

.search-icon-inner .search-field {
    border: 0;
    background-color: transparent;
    height: var(--input-h);
    color: white;
    font-size: 16px;
}

.search-icon-inner .search-field::placeholder {
    color: #fffafa78;
    font-weight: normal;
}

.search-icon-inner .search-submit {
    height: var(--input-h);
    border: 0;
    font-size: 22px;
    line-height: 1;
    padding: 5px 13px;
}

.search-icon-inner .search-submit span {
    color: white;
    transition: 320ms all;
}

.search-icon-inner .search-submit:hover span {
    color: var(--primary-color);
}

/* Header - Mobile ---- */
.header-mobile-1 .menu-icon {
    display: block;
    width: 29px;
    height: 18px;
    margin: auto;
    position: relative;
    cursor: pointer;
}

.header-mobile-1 .menu-icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--header-middle-text-color);
    left: 0;
    top: 0;
    border-radius: 10px;
    transition: 220ms all;
}

.header-mobile-1 .menu-icon .line-2 {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.header-mobile-1 .menu-icon .line-3 {
    top: unset;
    bottom: 0;
}

.header-mobile-1 .header-mobile-middle {
    padding: 16px 0;
}

.header-mobile-1 .search-icon-btn {
    font-size: 20px;
    line-height: 1;
}

.header-mobile-1 .header-mobile-bottom .header_box:not(.center) {
    display: none;
}

.header-mobile-1 .header-mobile-bottom .header_box {
    flex-grow: 1;
    justify-content: center;
    padding: 10px 0;
}

.header-mobile-1 .header-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--menu-middle-margin);
    flex-wrap: wrap;
}

.header-mobile-1 .header_menu>.menu-item {
    padding: 0 var(--p-x);
}

.header-mobile-1 .window_content-inner {
    --p-x: 0px;
    overflow-x: hidden;
    padding: 30px 20px;
    background: var(--header-dropdown-bg);
}

.header-mobile-1 #header-menu-mobile .menu-item a {
    font-size: 16px;
    padding: 16px 0 16px 28px;
    min-height: unset;
    color: var(--header-dropdown-text-color);
    font-weight: 400;
    position: relative;
}

.header-mobile-1 .window_wrap .menu-item span {
    font-size: inherit;
}

.header-mobile-1 #header-menu-mobile .sub-menu .menu-item a {
    padding: 8px 0;
    font-weight: 400;
}

.header .window_wrap .menu-item .img {
    display: inline-flex;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 16px;
}

.header-mobile-1 .window_wrap .menu-item.active>.sub-menu {
    border-left: 0;
    padding-left: 28px;
}

.header-mobile-1 .menu-item .toggle {
    opacity: 0.8;
    width: 24px;
    height: 24px;
    padding: 5px;
    display: flex;
    transition: 200ms all;
}

/* Header - Style 2 ------ */
.header-styles-2 .header-middle {
    padding: 30px 0;
}

.header-styles-2 .menu-item.current-menu-item>a {
    color: var(--header-dropdown-text-hover);
}

.header-styles-2 .sub-menu::before {
    display: none;
}

.header-styles-2 .sub-menu {
    top: 100%;
    box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.02), 3px 3px 10px rgba(0, 0, 0, 0.08);
}

.header-styles-2 .sub-menu .menu-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.header-styles-2 .sub-menu .menu-item.current-menu-item>a {
    color: var(--header-dropdown-text-hover);
}

.header-styles-2 .search-icon .search-icon-btn {
    cursor: pointer;
    font-size: calc(1.2rem * var(--header-middle-font-size));
    line-height: 1;
}

.header-styles-2 .search-icon-btn:hover span {
    color: var(--header-middle-text-hover);
}

.header-styles-2 .header-cta {
    display: flex;
    gap: 10px;
    margin-left: var(--menu-middle-margin, 20px);
}

.header-styles-2 .header-cta .heade-cta-btn {
    padding: 7px 10px 5px;
    border-radius: 4px;
    font-size: calc(0.95rem * var(--header-middle-font-size));
    line-height: 1.3;
}


/* Ux - Windown ------- */
.header-styles-2 .window_wrap.active .window_out {
    background: rgb(255 255 255 / 95%);
}

.header-styles-2 .search-icon-inner.window_content-inner {
    background-color: transparent;
    --input-h: 50px;
    padding: 0px;
    opacity: 0;
    width: 700px;
    max-width: calc(100vw - 20px);
    border: none;
    border-bottom: 1px solid #333;
    padding: 0 0 16px;
}


.header-styles-2 .search-icon-inner .search-field {
    border: 0;
    background-color: transparent;
    height: var(--input-h);
    color: #000;
    font-size: var(--size-l1);
    font-weight: 500;
}

.header-styles-2 .search-icon-inner .search-field::placeholder {
    color: #000;
}

.header-styles-2 .search-icon-inner .search-submit {
    font-size: var(--size-l1);
}

.header-styles-2 .search-icon-inner .search-submit span {
    color: #000;
}

.header-styles-2 .search-icon-inner .search-submit:hover span {
    color: var(--primary-color);
}

.header-styles-2 .window_btn-close {
    background-color: rgb(19 19 19 / 87%);
    font-size: 20px;
    color: white;
}


/* Header - Mobile Style 2 ------ */
.header-mobile-2 .menu-icon {
    display: block;
    width: 30px;
    height: 22px;
    margin: auto;
    position: relative;
    cursor: pointer;
    margin-left: 15px;

}

.header-mobile-2 .menu-icon span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--header-middle-text-color);
    left: 0;
    top: 0;
    border-radius: 10px;
    transition: 220ms all;
}

.header-mobile-2 .menu-icon .line-2 {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.header-mobile-2 .menu-icon .line-3 {
    top: unset;
    bottom: 0;
}

.header-mobile-2 .header-cta {
    display: flex;
    gap: 10px;
}


.header-mobile-2 .header-cta .heade-cta-btn {
    padding: 10px 7px 9px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.3;
    width: max-content;
}

.header-mobile-2 .window_wrap .menu-item:not(:first-child):before {
    display: none;
}

.header-mobile-2 .window_wrap .menu-item a {
    min-height: 32px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    line-height: 1.3;
}

.header-mobile-2 .window_wrap .menu-item.current_page_item>a {
    color: var(--header-dropdown-text-hover);
}

.header-mobile-2 .window_wrap .menu-item.active>.sub-menu {
    display: block;
    padding-left: 20px;
    border-left: 0px;
    border-radius: 0;
    margin-bottom: 0;
}

.header-mobile-2 .window_wrap .menu-item.active>a {
    font-weight: 500;
}

.header-mobile-2 .footer-copy {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding-top: 20px;
    margin-top: 60px;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

.header-mobile-2 .window_wrap .search-form {
    background: transparent;
}

.header-mobile-2 .search-submit {
    height: var(--input-h);
    background-color: transparent;
    border: 1px solid rgb(204 204 204 / 18%);
    padding: 5px 10px;
    cursor: pointer;
    transition: 300ms all ease;
    border-left: 0;
    font-size: 1.5rem;
    color: var(--header-dropdown-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-mobile-2 .search-field {
    border: 1px solid rgb(204 204 204 / 18%);
    background-color: transparent;
    color: var(--header-dropdown-text-color);
    border-right: 0px;
}

.header-mobile-2 .search-field::placeholder {
    color: var(--header-dropdown-text-color);
}

.header-mobile-2 .window_btn-close {
    background-color: rgb(0 0 0 / 61%);
    font-size: 19px;
    color: #fff;
    font-weight: 500;
}


/* Header - Style 3 ------ */
.header-styles-3 {
    --btn-h: 46px;
}

.header-styles-3 .header-middle,
.header-styles-3 .header-mobile-middle {
    padding: 15px 0;
}

.header-styles-3 .header-bottom {
    background-color: transparent;
}

.sticky .header-styles-3 .header-bottom {
    background-color: var(--header-bottom-bg, #fff);
}

.header-styles-3 .header-middle .header_box.left:before {
    content: '';
    display: block;
    width: var(--btn-h);
}

.header-styles-3 .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: var(--btn-h);
    height: var(--btn-h);
    cursor: pointer;
    background-color: var(--header-middle-text-color);
    border-radius: 50%;
    box-shadow: 2px 3px 5px rgb(0 0 0 / 10%);
    position: relative;
    padding: 16px 12px;

}

.header-styles-3 .menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--header-middle-bg);
    border-radius: 5px;
    overflow: hidden;
    margin-left: auto;
    transition: 320ms all;
}

.header-styles-3 .menu-icon:hover span {
    background-color: var(--header-middle-text-hover);
}

.header-styles-3 .header-bottom .header_inner {
    padding: 10px 12px;
}

.header-styles-3 .header-cta {
    display: flex;
    gap: 10px;
}

.header-styles-3 .header-cta .heade-cta-btn {
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.3;
    width: max-content;
    min-width: 150px;
    height: var(--btn-h);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-styles-3 .window_wrap .menu-item:not(:first-child):before {
    display: none;
}

.header-styles-3 .window_wrap .menu-item a {
    min-height: 32px;
    font-weight: 400;
    font-size: 18px;
    padding: 12px 0;
    line-height: 1.3;
}

.header-styles-3 .window_wrap .menu-item.current_page_item>a {
    color: var(--header-dropdown-text-hover);
}

.header-styles-3 .window_wrap .menu-item.active>.sub-menu {
    display: block;
    padding-left: 20px;
    border-left: 0px;
    border-radius: 0;
    margin-bottom: 0;
}

.header-styles-3 .window_wrap .menu-item.active>a {
    font-weight: 400;
}

.header-styles-3 .window_wrap .search-form {
    background: transparent;
}

.header-styles-3 .search-submit {
    height: var(--input-h);
    background-color: transparent;
    border: 1px solid rgb(204 204 204 / 18%);
    padding: 5px 10px;
    cursor: pointer;
    transition: 300ms all ease;
    border-left: 0;
    font-size: 1.5rem;
    color: var(--header-dropdown-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-styles-3 .search-field {
    border: 1px solid rgb(204 204 204 / 18%);
    background-color: transparent;
    color: var(--header-dropdown-text-color);
    border-right: 0px;
}

.header-styles-3 .search-field::placeholder {
    color: var(--header-dropdown-text-color);
}

.header-styles-3 .window_btn-close {
    background-color: rgb(0 0 0 / 61%);
    font-size: 19px;
    color: #fff;
    font-weight: 500;
}






/* Footer - Styles 1 ---- */
.footer-style-1 p {
    margin-bottom: 13px;
}

.footer-style-1 .logo-img_wrap {
    max-width: 200px;
}

.footer-style-1 .footer-info {
    padding: 40px 0 20px;
}

.footer-style-1 .widget_footer_logo_widget {
    margin-bottom: 20px;
}

.footer-style-1 .widget-title {
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-style-1 .widget-title {
    font-size: calc(1.1rem * var(--footer-font-size));
}

.footer-style-1 .menu-item~.menu-item {
    border-top: 0px;
}

.footer-style-1 .menu-item a {
    width: 100%;
    margin-bottom: 0.45rem;
    color: var(--footer-text-color);
    transition: 320ms all;
}

.footer-style-1 .menu-item a:hover {
    color: var(--footer-text-hover);
}

.footer-style-1 .menu-item a:before {
    content: '\e5e1';
    font-family: var(--ff-material-round);
    font-size: 0.8em;
    line-height: 1em;
    opacity: 0.8;
    margin-right: 5px;
}

.footer-style-1 .menu-item.current-menu-item>a {
    font-weight: 300;
}


.footer-style-1 .coppyright * {
    font-size: calc(1rem * var(--footer-font-size) - 1px);
}


/* Footer - Styles 2 ---- */
.footer-style-2 .logo-img_wrap {
    max-width: 200px;
}

.footer-style-2 .widget a {
    color: var(--footer-text-color);
    transition: 320ms all;
}

.footer-style-2 .widget a:hover {
    color: var(--footer-text-hover);
}

.footer-style-2 .footer-info {
    padding: 50px 0 20px;
}

.footer-style-2 .widget_footer_logo_widget {
    margin-bottom: 20px;
}

.footer-style-2 p {
    margin-bottom: 13px;
}

.footer-style-2 .widget-title {
    font-size: calc(1.2rem * var(--footer-font-size));
}

.footer-style-2 .widget-title span {
    position: relative;
    padding-left: 20px;
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    display: block;
}

.footer-style-2 .widget-title span:before,
.footer-style-2 .widget-title span:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    background-color: var(--primary-color);
    width: 11px;
    height: 11px;
    opacity: 0.7;
    z-index: 1;
    transform: translateY(-80%);
}

.footer-style-2 .widget-title span:after {
    transform: translateY(-20%);
}

.footer-style-2 .menu-item~.menu-item {
    border-top: 0px;
    padding-top: 0;
}

.footer-style-2 .menu-item a {
    width: 100%;
    margin-bottom: 11px;
    color: var(--footer-text-color);
    transition: 320ms all;
}

.footer-style-2 .menu-item a:hover {
    color: var(--footer-text-hover);
}

.footer-style-2 .menu-item.current-menu-item>a {
    font-weight: 300;
}

.footer-style-2 .widget {
    margin-bottom: 20px;
}

.footer-style-2 .coppyright {
    padding: 20px 0;
}

.footer-style-2 .coppyright * {
    font-size: calc(1rem * var(--footer-font-size) - 1px);
}



/* Footer - Styles 3 ---- */
.footer-style-3 .logo-img_wrap {
    max-width: 200px;
}

.footer-style-3 .widget a {
    color: var(--footer-text-color);
    transition: 320ms all;
}

.footer-style-3 .widget a:hover {
    color: var(--footer-text-hover);
}

.footer-style-3 .footer-info {
    padding: 40px 0 40px;
}

.footer-style-3 .widget_footer_logo_widget {
    margin-bottom: 20px;
}

.footer-style-3 p {
    margin-bottom: 13px;
}

.footer-style-3 .widget-title {
    font-size: calc(1.15rem * var(--footer-font-size));
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-style-3 .widget-title:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    opacity: 0.4;
}

.footer-style-3 .widget-title span {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.footer-style-3 .menu-item~.menu-item {
    border-top: 0px;
    padding-top: 0;
}

.footer-style-3 .menu-item a {
    width: 100%;
    margin-bottom: 11px;
    color: var(--footer-text-color);
    transition: 320ms all;
}

.footer-style-3 .menu-item a:hover {
    color: var(--footer-text-hover);
}

.footer-style-3 .menu-item.current-menu-item>a {
    font-weight: 300;
}

.footer-style-3 .widget {
    margin-bottom: 20px;
}

.footer-style-3 .coppyright {
    padding: 20px 0;
}

.footer-style-3 .coppyright * {
    font-size: calc(1rem * var(--footer-font-size) - 1px);
}

.footer-style-3 .copy-wrap {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.footer-style-3 .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    justify-content: flex-end;
}

.footer-style-3 .footer-menu li {
    margin: 0;
}

.footer-style-3 .footer-menu a {
    color: var(--coppyright-color);
}

.footer-style-3 .footer-menu a:hover {
    text-decoration: underline 1px;
    text-underline-offset: 4px;
    color: var(--coppyright-color);
}











/* Ux - Banner Header ----- */
.banner-head {
    background-color: var(--header-bottom-bg);
}

.banner-head_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.banner-head_wrap img {
    width: 100%;
}

/* Ux - Float Banner Bottom ---- */
#bottom-fix-wrap img {
    width: 100%;
}

.bottom-fix-btn {
    background-color: var(--color-red);
    color: white;
    font-size: 14px;
    line-height: 1.1;
    padding: 5px 10px 3px;
    border-radius: 3px 5px 0 0;
    margin: auto;
    width: fit-content;
    font-weight: 300;
    cursor: pointer;
}

.bottom-fix-inner {
    max-width: 500px;
    position: fixed;
    z-index: 700;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
}

.bottom-fix-content {
    background-color: white;
    padding: 5px;
    border-radius: 5px 5px 0 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    transition: 320ms all;
    display: none;
}

#bottom-fix-wrap.active .bottom-fix-content {
    display: block !important;
}


/* Ux - Float Btn Contact ----- */
.btn-float-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 800;
}

.btn-float-wrap svg {
    max-width: 100%;
    max-height: 100%;
}

.btn-float-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    transition: 320ms all;
    transform: translateX(-50%) scale(0);
    transform-origin: center bottom;
}

.btn-float-inner:has(~:checked) {
    transform: translateX(-50%) scale(1);
}

.btn-float-inner .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 55px;
    height: 55px;
    border: 5px solid var(--icon-color);
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgb(0 0 0 /20%);
    --icon-color: #2ca652;
}

.btn-float-wrap .icon.facebook {
    --icon-color: #0993fc;
}

.btn-float-wrap .icon.telegram {
    --icon-color: #0893d6;
}

.btn-float-inner svg {
    color: var(--icon-color);
    width: 70%;
    height: auto;
}

.btn-float-inner .icon.telegram svg {
    width: 62%;
}

.btn-float-wrap input {
    display: none;
}


.btn-float-open {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c31d1d;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    position: relative;
    transition: 320ms all;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 0 0 #c31d1d;
    margin: 0;
    animation: 1.5s ani-btn-contact infinite;
}

.btn-float-open .close {
    display: none;
}

.btn-float-open:has(~:checked) {
    animation: none;
    width: 40px;
    height: 40px;
}

.btn-float-open:has(~:checked) .open {
    display: none;
}

.btn-float-open:has(~:checked) .close {
    display: block;
    width: 75%;
}

@keyframes ani-btn-contact {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent;
    }
}







/*
* Responsive
*/
@media only screen and (max-width: 991px) {
    .banner-head {
        --bs-gutter-x: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .banner-head_wrap {
        grid-template-columns: 1fr;
    }

    .footer-style-3 .copy-wrap {
        flex-direction: column;
        align-items: center;
    }

    .footer-style-3 .footer-menu {
        justify-content: center;
    }
}

@media only screen and (max-width: 575px) {
    .window_wrap .search-icon-inner.window_content-inner {
        padding: 8px 5px;
    }

    .window_wrap .window_btn-close {
        top: 25px;
        right: 20px;
    }

    .header-cta .heade-cta-btn {
        padding: 7px 16px;
    }

    .btn-float-wrap {
        right: 20px;
    }

    .header-styles-3 .header-bottom .header_box.left,
    .header-styles-3 .header-bottom .header_box.right {
        display: none;
    }

    .header-styles-3 .header-bottom .header_box.center {
        flex: 1 1;
        justify-content: center;
    }

}