/*!
Theme Name: qrt-power
Theme URI: http://underscores.me/
Author: MrAkells
Author URI: https://t.me/mrakells
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: qrt
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

qrt-power is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

#wpadminbar,
#wpadminbar * {
    cursor: default !important;
}

.counter-img img {
    height: 50px;
    width: auto;
}

.header-container {
    align-items: center !important;
}

.header-nav-wrapper {
    display: none;
}

.header-menu>ul {
    display: flex;
    list-style: none;
    gap: 30px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    color: #F0F1F3;
}

.header-menu>ul li {
    position: relative;
}

@media (max-width: 767px) {
    .header-nav-wrapper {
        display: block;
    }

    .header-menu {
        display: none;
    }
}

.header-menu .sub-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 20px);
    left: -25px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: 1px solid #f0f1f35d;
    background-color: #282928;
    transition: all .25s ease;
    min-width: 200px;
}

.header-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.header-menu .sub-menu li {
    padding: 10px 25px 12px;
    background-color: #282928;
    text-wrap: nowrap;
    transition: background-color .3s ease;
}

.header-menu .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #f0f1f35d;
}

.header-menu .sub-menu li:hover {
    background-color: #FF8D00;
}

.header-menu .sub-menu li a {
    display: inline-block;
    transition: all .3s ease;
}

.header-menu .sub-menu li:hover a {
    transform: translate(10px, 0);
}

.header-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu li.menu-item-has-children>a {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.header-menu li.menu-item-has-children>a::after {
    content: "";
    margin-left: 8px;
    width: 12px;
    height: 12px;
    background: url("assets/img/arrow-header.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    transform-origin: center;
    transform: rotate(-90deg) translateX(-2px);
    transition: transform .25s ease;
}

.header-menu li.menu-item-has-children:hover>a::after,
.header-menu li.menu-item-has-children.open>a::after {
    transform: rotate(0deg);
}

.hero-slide-inner {
    position: relative;
}

.hero-iso {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 6.35vh;
    left: 0;
    transform: translateY(50%);
    width: calc(100% - 17vw);
    margin: 0 8.5vw 0 8.5vw;
}

.hero-iso img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.hero-iso__item {
    text-wrap: nowrap;
    color: #FF8D00;
    font-size: 14px;
    font-weight: 500;
}

.footer-container {
    grid-template-areas: "logo contacts" "title contacts" "location socials" "links links" "copyright copyright" !important;
}

@media (max-width: 767px) {
    .hero-iso,
    .footer-links {
        display: none !important;
    }

    .footer-container {
        grid-template-areas: "logo" "title" "location" "contacts" "socials" "copyright" !important;
    }
}

.footer-links {
    grid-area: links;
}

.footer-links ul {
    display: flex;
    gap: 26px;
    font-size: 18px;
    color: #FF8D00;
    list-style: none;
}

.footer-links ul li {
    position: relative;
}

.footer-links ul li:not(:last-child)::before {
    content: "|";
    top: 0;
    left: calc(100% + 13px);
    position: absolute;
}