@font-face {
    font-family: 'Webnar';
    src: url('https://db.onlinewebfonts.com/t/e05914c69e7243e59557969650536d23.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/e05914c69e7243e59557969650536d23.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --electro-header-height: 112px;
    --electro-container-width: 1750px;
}

html {
    overflow-x: hidden;
}

body.electro-products {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.electro-products.locked {
    overflow: hidden;
}

.electro-products {
    color: #000000;
    background: #FFFFFF;
    padding-top: var(--electro-header-height);
}

.electro-container {
    max-width: var(--electro-container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.electro-products *,
.electro-products *::before,
.electro-products *::after {
    box-sizing: border-box;
}

.electro-title {
    font-size: 34px;
    font-weight: 700;
    font-size: 34px;
    text-transform: uppercase;
    padding-left: 27px;
    border-left: 4px solid #D9000D;
    margin-top: 0;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.electro-title b {
    display: inline-block;
    margin-right: 10px;
}

.electro-title span {
    display: block;
    font-size: 24px;
    font-weight: 400;
}

/*** Header ***/
.electro-products .container{
    max-width: var(--electro-container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.electro-breadcrumbs {
    padding: 16px 0 8px;
}

.electro-products .crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 8px 0 12px;
    list-style: none;
    font-size: 14px;
    line-height: 1.4;
    color: #5a5a5a;
}

.electro-products .crumbs li:not(:last-child)::after {
    content: '›';
    display: inline-block;
    margin: 0 10px;
    color: #9a9a9a;
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}

.electro-products .crumbs a {
    color: #0560AA;
    text-decoration: none;
}

.electro-products .crumbs a:hover {
    text-decoration: underline;
}

.electro-products .crumbs .breadcrumbs__current {
    color: #000000;
}

.electro-products .crumbs li:nth-of-type(1) {
    display: none;
}

.electro-category__item-img,
.electro-prodinfo__top-img {
    position: relative;
}

.electro-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 3px;
    pointer-events: none;
}

.electro-stock-badge--in {
    background: #1B8A4B;
    color: #FFFFFF;
}

.electro-stock-badge--out {
    background: #8C8C8C;
    color: #FFFFFF;
}

.electro-products a {
    text-decoration: none;
    color: #000000;
}

.electro-products a:hover {
    color: #0560AA;
    text-decoration: underline;
}

.electro-products input,
.electro-products textarea {
    outline: none;
}

.electro-products .electro-header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: var(--electro-header-height);
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 100;
}

.electro-products .electro-header .electro-container {
    width: 100%;
    min-width: 0;
}

.electro-products .electro-header__content {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.electro-products .electro-header__logo {
    display: flex;
    align-items: center;
}

.electro-products .electro-header__logo-mobi {
    display: none;
}

.electro-products .electro-header__nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 40px;
}

.electro-products .electro-header__nav-menu {
    display: flex;
}

.electro-products .electro-header__nav-menu>ul {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.electro-products .electro-header__nav-menu>ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 0;
}

.electro-products .electro-header__nav-src-form {
    display: flex;
    align-items: center;
    border-radius: 3px;
    background: #F1F1F1;
    height: 40px;
    width: 100%;
    max-width: 300px;
}

.electro-products .electro-header__nav-src-form input {
    width: 100%;
    max-width: 100%;
    border: 0;
    background: transparent;
    font-size: inherit;
    height: 40px;
    padding: 0 15px;
}

.electro-products .electro-header__nav-src-form img {
    margin: 0 10px;
    cursor: pointer;
}

.electro-products .electro-header__nav-src-form img:hover {
    filter: invert(90%);
}

.electro-products .electro-header__burger {
    display: none;
}

.electro-products .electro-header__burger-close {
    display: none;
}

.electro-products .electro-header.burger-action {
    height: 100vh;
    max-height: 100vh;
    transition: max-height 0.3s;
}

.electro-products .electro-header.burger-action .electro-container {
    height: 100%;
    padding: 0;
}

.electro-products .electro-header.burger-action .electro-header__content {
    row-gap: 0;
    height: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: var(--electro-header-height) 1fr;
}

.electro-products .electro-header.burger-action .electro-header__logo {
    padding-left: 20px;
}

.electro-products .electro-header.burger-action .electro-header__nav {
    grid-area: 2/1/3/3;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #F5F5F5;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.electro-products .electro-header.burger-action .electro-header__nav-menu>ul li {
    white-space: normal;
    width: 100%;
}

.electro-products .electro-header.burger-action .electro-header__nav-menu {
    order: 2;
    font-size: 18px;
}

.electro-products .electro-header.burger-action .electro-header__nav-menu>ul {
    flex-direction: column;
}

.electro-products .electro-header.burger-action .electro-header__nav-src-form {
    order: 1;
    max-width: 100%;
    background: #FFFFFF;
}

.electro-products .electro-header.burger-action .electro-header__burger-open {
    display: none;
}

.electro-products .electro-header.burger-action .electro-header__burger-close {
    display: inline-block;
    padding-right: 20px;
}

.electro-products .electro-footer {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #D9D9D9;
    font-size: 14px;
    margin: 0 auto;
    margin-top: 120px;
}

.electro-products .electro-footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.electro-products .electro-footer ul li {
    list-style-type: none;
    margin: 0;
}

.electro-products .electro-footer p {
    margin-top: 0;
    margin-bottom: 7px;
}

.electro-products .electro-footer__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 70px;
    padding-bottom: 40px;
}

.electro-products .electro-footer__req-phone {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 26px;
}

.electro-products .electro-footer__req-mail {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 28px;
}

.electro-products .electro-footer__bottom {
    padding: 25px 0;
    border-top: 1px solid #B7B7B7;
    color: #898989;
}

.electro-products .electro-intro__content {
    background: url(assets/img-electro/bg/electro-intro_bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    color: #FFFFFF;
}

.electro-products .electro-intro__grid {
    display: grid;
    grid-template-columns: 1fr 33%;
}

.electro-products .electro-intro__desc {
    padding: 65px 100px;
}

.electro-products .electro-intro__title {
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.electro-products .electro-intro__text {
    max-width: 660px;
    margin-bottom: 20px;
}

.electro-products .electro-intro__logo {
    position: relative;
    padding: 30px 0;
    overflow: visible;
}

.electro-products .electro-intro__logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1882352941);
}

.electro-products .electro-intro__logo img {
    max-width: 100%;
}

.electro-products .electro-intro__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.electro-products .electro-intro__item-num {
    font-size: 36px;
    line-height: 1;
}

.electro-products .electro-intro__item-text {
    font-size: 16px;
}

.electro-products .electro-intro__enum {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px;
    background: rgba(2, 130, 166, 0.9);
}

.electro-products .electro-intro__enum-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 443px;
}

.electro-products .electro-intro__enum-list-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.electro-products .electro-intro__enum-list-item-num {
    text-align: center;
    font-size: 40px;
    min-width: 25px;
}

.electro-products .electro-catalog {
    margin-top: 120px;
    scroll-margin-top: var(--electro-header-height);
}

.electro-products .electro-catalog__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.electro-catalog__sklad{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.electro-catalog__sklad-btn{
    background-color: #D9000D;
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 5px;
}

.electro-products .electro-catalog__item {
    flex: 0 1 calc(33.333333% - 20px);
    display: flex;
    height: 300px;
    border-radius: 5px;
    background: url(assets/img-electro/bg/electro-catalog_bg.svg), linear-gradient(#F5F5F5 174px, #115775 0%);
    background-repeat: no-repeat, no-repeat;
    background-position: left top 174px, top;
    cursor: pointer;
}

.electro-products .electro-catalog__item:hover {
    background: url(assets/img-electro/bg/electro-catalog_bg.svg), linear-gradient(#DBDBDB 174px, #0A3547 0%);
    background-repeat: no-repeat, no-repeat;
    background-position: left top 174px, top;
    text-decoration: none;
}

.electro-products .electro-catalog__item-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.electro-products .electro-catalog__item-img img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0px 15px 5px rgba(0, 0, 0, 0.3));
}

.electro-products .electro-catalog__item-box {
    flex: 1;
    align-self: flex-end;
    padding: 0 20px 20px;
}

.electro-products .electro-catalog__item-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: -20px;
    padding: 50px 0 10px 20px;
    max-width: 220px;
    min-height: 120px;
    display: flex;
    align-items: end;
}

.electro-products .electro-catalog__item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #008AB1;
}

.electro-products .electro-contacts {
    margin-top: 120px;
    scroll-margin-top: var(--electro-header-height);
}

.electro-products .electro-contacts__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 33.3333%);
}

.electro-products .electro-contacts__form-content {
    min-width: 0;
    padding: 80px 30px 80px 80px;
    border-radius: 5px 0 0 5px;
    background: #F5F5F5;
}

.electro-products .electro-contacts__form,
.electro-products .electro-contacts__form .wpcf7,
.electro-products .electro-contacts__form form {
    min-width: 0;
    max-width: 100%;
}

.electro-products .electro-contacts__form-content .electro-title {
    margin-bottom: 20px;
}

.electro-products .electro-contacts__title-desc {
    margin-bottom: 20px;
}

.electro-products .electro-contacts__desc {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    padding: 80px 80px 80px 50px;
    background: url(assets/img-electro/bg/electro-contacts_bg.jpg) no-repeat;
    background-position: center;
    background-size: auto 100%;
    color: #FFFFFF;
    border-radius: 0 5px 5px 0;
}

.electro-products .electro-contacts__desc .electro-title {
    border-left: 4px solid #FFFFFF;
    color: #FFFFFF;
}

.electro-products .electro-contacts__desc-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.electro-products .electro-contacts__desc-box-item{
    justify-self: center;
}
.electro-products .electro-contacts__desc-photo img{
    max-width: 130px;

}
.electro-products .electro-contacts__desc-fio {
    font-size: 28px;
    font-weight: 700;
}

.electro-contacts__desc-dolznost{
    font-weight: 600;
}

.electro-products .electro-contacts__desc-req {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.electro-products .electro-contacts__desc-req a {
    color: #FFFFFF;
}

.electro-products .electro-contacts__desc-req a:hover {
    color: rgba(255, 255, 255, 0.5647058824);
}

.electro-products .electro-form input:not([type='checkbox']),
.electro-products .electro-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: "Webnar", sans-serif;
    font-size: 14px;
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    padding: 16px 20px;
    background-color: #FFFFFF;
}

.electro-products .electro-form input:not([type='checkbox'])::placeholder,
.electro-products .electro-form textarea::placeholder {
    color: #AFAFAF;
}

.electro-products .electro-form-nametelmail {
    display: flex;
    align-items: stretch;
    gap: 25px;
    margin-bottom: 20px;
    min-width: 0;
}

.electro-products .electro-form-nametelmail > * {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
}

.electro-products .electro-form-nametelmail .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.electro-products .electro-form-message {
    margin-bottom: 20px;
}

.electro-products .electro-form-message textarea {
    height: 100px;
}

.electro-products .electro-form-submit {
    display: flex;
    align-items: center;
}

.electro-products .electro-form-submit input[type="submit"] {
    width: unset;
    padding: 18px 50px;
    font-size: 18px;
    border: 0;
    color: #FFFFFF;
    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(43.46deg, #0560AA 26.07%, #078BA8 77.41%);
    background-repeat: no-repeat, no-repeat;
    cursor: pointer;
}

.electro-products .electro-form-submit input[type="submit"]:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(43.46deg, #034377 26.07%, #056176 77.41%);
    background-repeat: no-repeat, no-repeat;
}

.electro-products .custom_checkbox {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 14px;
}

.electro-products .custom_checkbox input {
    /* display: none; */
}

.electro-products .custom_checkbox input:checked+.wpcf7-list-item-label .fake::before {
    opacity: 1;
}

.electro-products .custom_checkbox .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.electro-products .custom_checkbox .fake {
    flex-shrink: 0;
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    background-color: #FFFFFF;
    cursor: pointer;
}

.electro-products .custom_checkbox .fake::before {
    content: "";
    position: absolute;
    display: block;
    height: 12px;
    width: 16px;
    background: url(assets/img-electro/icons/electro-ico-check.svg) no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/*** Popap ***/
.electro-popup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 101;
    /* background-color: #89898950; */
    padding: 20px;
}

.electro-popup__box {
    position: relative;
    width: 100%;
    max-width: 915px;
    height: 100%;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
    padding: 50px 30px 30px;
}

.electro-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.electro-popup__title{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding-bottom: 10px;
    color: #008AB1;
}

.electro-popup__content {
    height: 100%;
    overflow-y: auto;
}

/*** Electro products list ***/
.electro-prod-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 40px;
}

.electro-prod-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.electro-prod-box {
    padding: 10px;
    background: #F5F5F5;
    border-radius: 5px;
    height: 100%;
}

.electro-prod-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    min-height: 100px;
}

.electro-prod-item-img {
    flex: 0 1 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 5px;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
}

.electro-prod-item-img img {
    max-width: 100%;
    max-height: 100%;
}

.electro-prod-item-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.electro-prod-item-name {
    flex: 1;
}

.electro-prod-item-btns {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
    border-left: 1px solid #AFAFAF;
    padding: 0 20px;
}

.electro-prod-item-btn-info {
    width: 120px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #008AB1;
    border-radius: 5px;
    cursor: pointer;
    color: #008AB1 !important;
    transition: unset !important;
}

.electro-prod-item-btn-info:hover {
    background: #008AB1;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.electro-prod-item-btn-order {
    width: 120px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    color: #FFFFFF;
    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(43.46deg, #0560AA 26.07%, #078BA8 77.41%);
    background-repeat: no-repeat, no-repeat;
    cursor: pointer;
}

.electro-prod-item-btn-order:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(43.46deg, #034377 26.07%, #056176 77.41%);
    background-repeat: no-repeat, no-repeat;
}

/*** Electro products order form ***/
.electro-order-form-box {
    display: none;
}

.electro-order-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #EBEBEB;
}

.electro-order-form span {
    flex: 0 1 18%;
    min-width: 157px;
}

.electro-order-form input {
    width: 100%;
    font-family: "Webnar", sans-serif;
    font-size: 14px;
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    padding: 9px 15px 8px;
    background-color: #FFFFFF;
}

.electro-order-form input::placeholder {
    color: #AFAFAF;
}

.electro-order-form input[type=submit] {
    flex: 0 1 18%;
    padding: 9px 15px 8px;
    border: 0;
    color: #FFFFFF;
    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(43.46deg, #0560AA 26.07%, #078BA8 77.41%);
    background-repeat: no-repeat, no-repeat;
    cursor: pointer;
}

.electro-order-form input[type=submit]:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(43.46deg, #034377 26.07%, #056176 77.41%);
    background-repeat: no-repeat, no-repeat;
}

.electro-order-form-close {
    margin: 5px;
    cursor: pointer;
}

.electro_search_subcatalog {
    cursor: pointer;
    color: #888888;
}

.electro_search_subcatalog:hover {
    color: #0560AA;
    /* text-decoration: underline; */
}

/*** Contact Form 7 ***/
.electro-products-wpcf7 .wpcf7 {
    position: relative;
}

.electro-products-wpcf7 .wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
}

.electro-products-wpcf7 .wpcf7-not-valid-tip {
    display: none;
}

.electro-products-wpcf7 .wpcf7-not-valid {
    border-bottom: 2px solid red !important;
}

.electro-products-wpcf7 .wpcf7-response-output {
    font-size: 16px;
    position: absolute;
    bottom: -60px;
    text-align: center;
    background-color: #ffffff;
    margin: 0 !important;
    padding: 15px !important;
    color: #1D1D1B !important;
    border-radius: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.electro-products-wpcf7 .wpcf7 form.invalid .wpcf7-response-output,
.electro-products-wpcf7 .wpcf7 form.unaccepted .wpcf7-response-output,
.electro-products-wpcf7 .wpcf7 form.payment-required .wpcf7-response-output {
    border: 1px solid red;
}

/*** Electro products category ***/
.electro-category {
    margin-top: 30px;
}

.electro-category__content {
    display: grid;
    grid-template-columns: minmax(0, 59%) minmax(0, 1fr);
    gap: 30px;
}

.electro-category__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.electro-category__item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-width: 0;
    border: 1px solid #008AB1;
    border-radius: 5px;
    overflow: hidden;
}

.electro-category__item-img {
    width: 100%;
    height: 180px;
    padding: 10px;
}

.electro-category__item-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.electro-category__item-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 196px;
    min-width: 0;
    background-color: #008AB1;
}

.electro-category__item-block {
    margin: 20px 35px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.electro-category__item-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.electro-category__item-title-desc {
    font-size: 14px;
    color: #FFFFFF;
}

.electro-category h4,
.electro-prodinfo h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.electro-category ul,
.electro-prodinfo ul {
    margin: revert;
    padding-left: 25px;
}

.electro-category ul li,
.electro-prodinfo ul li {
    list-style: unset;
}

.electro-category__item-flex {
    display: flex;
    align-items: center;
    width: 100%;
}

.electro-category__item-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
    padding: 20px;
}

.electro-category__item-btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    color: #FFFFFF !important;
}

.electro-category__item-btn-link:hover {
    background-color: #017594;
    text-decoration: none !important;
}

.electro-category__item-btn-order {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    color: #FFFFFF;
    border-radius: 5px;
    /* background: linear-gradient(180deg, #01C6BA 0%, #02958C 100%); */
    cursor: pointer;

    background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, transparent 50%), linear-gradient(180deg, #01C6BA 0%, #02958C 100%);
    background-repeat: no-repeat, no-repeat;
}

.electro-category__item-btn-order:hover {
    background: linear-gradient(180deg, #01bbae 0%, #01877e 100%);
}

.electro-category__desc {
    min-width: 0;
    overflow-wrap: anywhere;
}

.electro-category__desc img,
.electro-category__desc table {
    max-width: 100%;
}

.electro-category__desc table {
    display: block;
    overflow-x: auto;
}

/*** Electro products category info ***/
.electro-prodinfo {
    margin-top: 30px;
}

.electro-prodinfo__content {}

.electro-prodinfo__top {
    display: grid;
    grid-template-columns: auto 1fr;
    background-color: #017594;
    border-radius: 6px;
}

.electro-prodinfo__top-img {
    width: 550px;
    height: 550px;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #E3E3E3;
}

.electro-prodinfo__top-img img {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.electro-prodinfo__top-desc {
    display: flex;
    flex-direction: column;
}

.electro-prodinfo__top-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    font-size: 16px;
    color: #FFFFFF;
}

.electro-prodinfo__top-info-left,
.electro-prodinfo__top-info-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.electro-prodinfo__top-info-logo {
    margin-top: auto;
    align-self: flex-start;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 12px 16px;
}

.electro-prodinfo__top-info-logo img {
    display: block;
    max-height: 50px;
    width: auto;
}

.electro-prodinfo__top-btn {
    flex: 1;
    padding: 0 30px 30px;
}

.electro-prodinfo__top-info-seria {
    display: table;
    margin-top: 30px;
}

.electro-prodinfo__top-info-seria-item {
    display: table-row;
}

.electro-prodinfo__top-info-seria-num {
    font-size: 36px;
    display: table-cell;
}

.electro-prodinfo__top-info-seria-desc {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
}

.electro-prodinfo__texdocum {
    margin-top: 30px;
}

.electro-prodinfo__tabs {
    display: flex;
    align-items: center;
    border-radius: 5px;
    background: #F5F5F5;
}

.electro-prodinfo__tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 24px;
    color: #0560AA;
    cursor: pointer;
}

.electro-prodinfo__tab-item.act {
    border-radius: 5px;
    border: 1px solid #D4D4D4;
    background: #FFF;
    font-weight: 700;
    color: #000000;
}

.electro-prodinfo__tabs-content {
    margin-top: 10px;
}

.electro-prodinfo__tabs-content-item {
    display: none;
}
.electro-prodinfo__tabs-content-item.tables {
    overflow: auto;
}

.electro-prodinfo__tabs-content-item.act {
    display: block;
}

.electro-prodinfo__doc {}

.electro-prodinfo__doc.act .electro-prodinfo__doc-items {
    display: flex;
}

.electro-prodinfo__doc-title{
    cursor: pointer;
}

.electro-prodinfo__doc.act .electro-prodinfo__doc-title i {
    transform: rotate(180deg);
}

.electro-prodinfo__doc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #AFAFAF;
}

.electro-prodinfo__doc-title span {
    font-weight: 700;
}

.electro-prodinfo__doc-title i {
    cursor: pointer;
    color: #0792A8;
    transition: transform 0.2s;
}

.electro-prodinfo__doc-items {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: #F5F5F5;
}

.electro-prodinfo__doc-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #0560AA !important;
    text-decoration: underline !important;
}

.electro-prodinfo__doc-item:hover {
    color: #022b4d !important;
}

.electro-prodinfo table {
    border: 0 !important;
    width: 100%;
}

.electro-prodinfo th,
.electro-prodinfo td {
    text-align: left;
    border: 0 !important;
    padding: 20px;
}

.electro-prodinfo table thead th {
    border-bottom: 1px solid #AFAFAF !important;
}

.electro-prodinfo tbody tr {
    background-color: #FAFAFA;
}

.electro-prodinfo tbody tr:nth-child(2n) {
    background-color: #FFFFFF;
}

.electro-prodinfo tbody td {
    border-right: 1px solid #E3E3E3 !important;
    border-bottom: 1px solid #E3E3E3 !important;
}

.electro-prodinfo tbody td:last-child {
    border-right: 0 !important;
}

/*** Electro PopUp ***/
.electro-popup-form {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}

.electro-popup-form.show {
    visibility: visible;
    opacity: 1;
}

.electro-popup-form .wpcf7-spinner{
    width: 25px !important;
    height: 25px !important;
    background-color: #017594;
}

.electro-popup-form__content {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 50px 30px 30px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.electro-popup-form__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}

.electro-popup-form__close img {
    width: 15px;
    height: 15px;
}

.electro-popup-form__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.electro-popup-form__text {
    font-size: 18px;
    margin-bottom: 20px;
}

.electro-popup-form .electro-order-form{
    flex-direction: column;
    border: 0;
    margin: 0;
    padding: 0;
}
.electro-popup-form .electro-order-form-close{
    display: none;
}
.electro-popup-form .electro-order-form span {
    flex: 1;
    width: 100%;
}


.grecaptcha-badge{
    display: none;
}

/*** Media ***/
@media (max-width: 1367px) {
    :root {
        --electro-header-height: 80px;
    }

    .electro-title {
        margin-bottom: 65px;
    }

    .electro-products .electro-header__logo-norm {
        max-width: 140px;
    }

    .electro-products .electro-footer {
        margin-top: 90px;
    }

    .electro-products .electro-footer__content {
        justify-content: space-evenly;
    }

    .electro-products .electro-footer__ico img {
        max-width: 140px;
    }

    .electro-products .electro-footer__req-mail {
        font-size: 20px;
    }

    .electro-products .electro-intro__desc {
        padding: 65px 7%;
    }

    .electro-products .electro-intro__enum {
        padding: 35px;
    }

    .electro-products .electro-intro__enum-list {
        gap: 20px;
    }

    .electro-products .electro-intro__enum-list-item {
        gap: 20px;
    }

    .electro-products .electro-catalog {
        margin-top: 90px;
    }

    .electro-products .electro-catalog__items {
        gap: 20px;
    }

    .electro-products .electro-catalog__item {
        flex: 0 1 calc(33.333333% - 13.333333px);
        background-size: 80% auto, auto;
        height: unset;
        flex-direction: column;
    }

    .electro-products .electro-catalog__item-img {
        padding-bottom: 0;
        flex: unset;
        height: 220px;
    }

    .electro-products .electro-catalog__item-box {
        display: flex;
        align-items: end;
        align-self: flex-start;
    }

    .electro-products .electro-catalog__item-title {
        margin-left: unset;
        margin-top: auto;
        padding: 40px 0 10px 20px;
        min-height: 100px;
        max-width: 100%;
    }

    .electro-products .electro-contacts {
        margin-top: 90px;
    }

    .electro-products .electro-contacts__form-content {
        padding: 30px;
    }

    .electro-products .electro-contacts__form-content .electro-title {
        font-size: 24px;
    }

    .electro-products .electro-contacts__desc {
        padding: 30px;
    }

    .electro-products .electro-contacts__desc .electro-title {
        font-size: 24px;
    }

    .electro-products .electro-contacts__desc-box {
        margin-left: 30px;
    }

    .electro-products .electro-contacts__desc-box {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        margin-left: unset;
    }

    .electro-category__content {
        grid-template-columns: 1fr;
    }

    .electro-prodinfo__top-img {
        width: 350px;
        height: 100%;
    }
}

@media (max-width: 1220px) {
    .electro-products .electro-footer__lom {
        display: none;
    }
}

@media (max-width: 1070px) {
    .electro-products .electro-header__nav {
        gap: 20px;
    }

    .electro-products .electro-header__nav-menu>ul {
        gap: 20px;
    }

    .electro-products .electro-footer__menu {
        display: none;
    }
}

@media (max-width: 971px) {
    :root {
        --electro-header-height: 60px;
    }

    .electro-title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .electro-title span {
        font-size: 20px;
    }

    .electro-products .electro-header__logo-norm {
        display: none;
    }

    .electro-products .electro-header__logo-mobi {
        display: inline-block;
    }

    .electro-products .electro-header__nav {
        display: none;
    }

    .electro-products .electro-header__content {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .electro-products .electro-header__logo {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .electro-products .electro-header__logo img {
        max-width: 100%;
        height: auto;
    }

    .electro-products .electro-header__burger {
        display: inline-flex;
        align-items: center;
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
        flex-shrink: 0;
    }

    .electro-products .electro-header.burger-action {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }

    .electro-products .electro-header.burger-action .electro-header__nav {
        display: flex;
    }

    .electro-products .electro-footer {
        margin-top: 60px;
    }

    .electro-products .electro-footer p {
        margin-bottom: 5px;
    }

    .electro-products .electro-footer__content {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .electro-products .electro-footer__req-phone {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .electro-products .electro-footer__req-mail {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .electro-products .electro-footer__bottom {
        padding: 15px 0;
    }

    .electro-products .electro-intro__grid {
        grid-template-columns: 1fr 45%;
    }

    .electro-products .electro-intro__desc {
        padding: 30px 7%;
    }

    .electro-products .electro-intro__title {
        font-size: 30px;
    }

    .electro-products .electro-intro__logo {
        padding: 0;
        padding-top: 30px;
    }

    .electro-products .electro-intro__items {
        display: none;
    }

    .electro-products .electro-intro__enum-list-item-text {
        font-size: 16px;
    }

    .electro-products .electro-catalog {
        margin-top: 60px;
    }

    .electro-products .electro-catalog__item-img {
        padding: 15px 15px 0;
        height: 200px;
    }

    .electro-products .electro-catalog__item-box {
        padding: 0 15px 15px;
    }

    .electro-products .electro-catalog__item-title {
        font-size: 18px;
        padding: 20px 0 10px 15px;
        min-height: unset;
    }

    .electro-products .electro-contacts {
        margin-top: 60px;
    }

    .electro-products .electro-contacts__grid {
        grid-template-columns: 1fr;
    }

    .electro-products .electro-contacts__form-content {
        padding-top: 50px;
        border-radius: 5px 5px 0 0;
    }

    .electro-products .electro-contacts__desc {
        background-size: cover;
        padding: 50px 30px;
        border-radius: 0 0 5px 5px;
    }

    .electro-products .electro-contacts__desc-fio {
        font-size: 18px;
    }

    .electro-products .electro-form-nametelmail {
        gap: 15px;
        margin-bottom: 10px;
    }

    .electro-products .electro-form-message {
        margin-bottom: 10px;
    }

    .electro-category {
        margin-top: 10px;
    }

    .electro-category__content {
        grid-template-columns: 1fr;
    }

    .electro-category__item {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .electro-category__item-box {
        grid-template-columns: minmax(0, 1fr);
    }

    .electro-category__item-block {
        margin: 16px 20px;
    }

    .electro-category__item-btns {
        flex-direction: row;
        padding: 0 20px 20px;
    }

    .electro-prodinfo__top-info {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .electro-prodinfo__top-info-left {
        padding: 10px 20px;
    }

    .electro-prodinfo__top-info-right {
        padding: 10px 20px;
    }

    .electro-prodinfo__top-btn {
        padding: 0 20px 20px;
    }

    .electro-prodinfo__tab-item {
        padding: 10px;
        font-size: 16px;
        text-align: center;
    }

    .electro-prodinfo {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .electro-prodinfo__tabs {
        flex-direction: column;
    }

    .electro-prodinfo__tab-item.act {
        width: 100%;
    }
}

@media (max-width: 769px) {
    :root {
        --electro-header-height: 50px;
    }

    .electro-title {
        font-size: 24px;
        padding-left: 17px;
        margin-bottom: 30px;
    }

    .electro-title span {
        font-size: 16px;
    }

    .electro-products .electro-footer {
        margin-top: 0;
    }

    .electro-products .electro-footer__content {
        padding: 25px 0;
    }

    .electro-products .electro-footer__ico {
        display: none;
    }

    .electro-products .electro-footer__req {
        text-align: center;
    }

    .electro-products .electro-footer__req-phone {
        color: #008AB1;
    }

    .electro-products .electro-footer__idents {
        display: none;
    }

    .electro-products .electro-footer__bottom {
        text-align: center;
    }

    .electro-products .electro-intro__content {
        margin: 0 -20px;
    }

    .electro-products .electro-intro__grid {
        grid-template-columns: 1fr;
    }

    .electro-products .electro-intro__desc {
        padding: 20px;
    }

    .electro-products .electro-intro__title {
        font-size: 28px;
        margin: 0 0 15px 0;
        word-wrap: break-word;
        hyphens: auto;
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .electro-products .electro-intro__text {
        margin-bottom: 15px;
    }

    .electro-products .electro-intro__logo::before {
        width: 100%;
    }

    .electro-products .electro-intro__logo {
        padding-top: 15px;
    }

    .electro-products .electro-intro__enum {
        padding: 20px;
    }

    .electro-products .electro-intro__enum-list {
        gap: 5px;
        width: 100%;
        max-width: 100%;
    }

    .electro-products .electro-catalog {
        margin-top: 30px;
    }

    .electro-products .electro-catalog .electro-title {
        margin-left: -20px;
    }

    .electro-products .electro-catalog__item {
        flex: 0 1 calc(50% - 10px);
        background: url(assets/img-electro/bg/electro-catalog_bg.svg), linear-gradient(#F5F5F5 70px, #115775 0%);
        background-repeat: no-repeat, no-repeat;
        background-position: left top 70px, top;
        background-size: 80% auto, auto;
    }

    .electro-products .electro-catalog__item:hover {
        background: url(assets/img-electro/bg/electro-catalog_bg.svg), linear-gradient(#DBDBDB 70px, #0A3547 0%);
        background-repeat: no-repeat, no-repeat;
        background-position: left top 70px, top;
        text-decoration: none;
    }

    .electro-products .electro-catalog__item-img {
        height: 120px;
    }

    .electro-products .electro-catalog__item-title::before {
        display: none;
    }

    .electro-products .electro-catalog__item-title {
        padding: 10px 0 0;
        font-size: 16px;
        word-wrap: break-word;
        hyphens: auto;
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .electro-products .electro-contacts {
        margin-top: 30px;
    }

    .electro-products .electro-contacts__grid {
        margin: 0 -20px;
    }

    .electro-products .electro-contacts__form-content {
        padding: 20px;
        padding-top: 30px;
        border-radius: unset;
    }

    .electro-products .electro-contacts__form-content .electro-title {
        margin-left: -20px;
        margin-bottom: 10px;
    }

    .electro-products .electro-contacts__title-desc {
        margin-bottom: 10px;
    }

    .electro-products .electro-contacts__desc {
        padding: 30px 20px;
        border-radius: 0;
    }

    .electro-products .electro-contacts__desc .electro-title {
        margin-left: -20px;
    }

    .electro-products .electro-form input,
    .electro-products .electro-form textarea {
        padding: 10px 20px;
    }

    .electro-products .electro-form-nametelmail {
        flex-direction: column;
        gap: 10px;
    }

    .electro-products .electro-form-nametelmail span {
        width: 100%;
    }

    .electro-products .electro-form-submit {
        flex-direction: column;
        gap: 10px;
    }

    .electro-products .electro-form-submit input {
        width: 100%;
    }

    .electro-products .custom_checkbox {
        margin-left: unset;
    }

    /* electro-popup */
    .electro-popup {
        padding: 10px;
    }

    .electro-popup__close {
        top: 15px;
        right: 15px;
    }

    .electro-popup__box {
        padding: 42px 0 10px;
    }

    .electro-prod-title {
        font-size: 20px;
        padding: 0px 20px 20px 20px;
    }

    .electro-prod-item {
        border-radius: 0;
    }

    .electro-prod-item-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .electro-prod-item-btns {
        border: 0;
        padding: 0;
        width: 100%;
        flex-wrap: wrap;
        row-gap: 5px;
    }

    .electro-prod-item-btn-info {
        height: 32px;
        width: 100%;
        max-width: 200px;
        min-width: 100px;
    }

    .electro-prod-item-btn-order {
        height: 32px;
        width: 100%;
        max-width: 200px;
        min-width: 100px;
    }

    .electro-category__item {
        grid-template-columns: 1fr;
    }

    .electro-category__item-img {
        height: 160px;
        border-bottom: 1px solid #008AB1;
    }

    .electro-category__item-block {
        margin: 16px 20px;
    }

    .electro-category__item-box {
        grid-template-columns: 1fr;
    }

    .electro-category__item-btns {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .electro-category__item-btn-link {
        flex: 1;
        padding: 8px;
    }

    .electro-category__item-btn-order {
        flex: 1;
        padding: 8px;
    }

    .electro-prodinfo__top {
        grid-template-columns: 1fr;
    }

    .electro-prodinfo__top-img {
        width: 100%;
        height: 250px;
    }

    .electro-breadcrumb i {
        display: block;
    }

    .electro-breadcrumb__links {
        display: none;
    }
}

@media (max-width: 400px) {
    .electro-category__item-btns {
        gap: 8px;
    }
}

.electro-page {
    padding: 40px 0 80px;
}

.electro-page__content {
    margin-top: 24px;
    line-height: 1.6;
}

.electro-page__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.electro-page__list-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.electro-page__list-item a {
    color: inherit;
    text-decoration: none;
}

.electro-page__list-item a:hover {
    text-decoration: underline;
}

.electro-page__excerpt {
    margin-top: 8px;
    opacity: 0.8;
}

.electro-page__search-query {
    margin-bottom: 24px;
    opacity: 0.85;
}

.electro-page__pagination {
    margin-top: 32px;
}

.electro-page__pagination .nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.electro-certificates {
    padding: 40px 0 80px;
}

.electro-certificates__intro {
    margin-bottom: 32px;
    line-height: 1.6;
}

.electro-certificates__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.electro-certificates__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    overflow: hidden;
}

.electro-certificates__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 280px;
    padding: 20px;
    background: #F5F5F5;
    border: 0;
    border-bottom: 1px solid #E3E3E3;
    cursor: zoom-in;
}

.electro-certificates__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.electro-lightbox {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 120;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.electro-lightbox.show {
    visibility: visible;
    pointer-events: auto;
}

.electro-lightbox.is-visible {
    opacity: 1;
}

.electro-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.electro-lightbox.is-visible .electro-lightbox__overlay {
    opacity: 1;
}

.electro-lightbox__box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 1200px;
    max-height: calc(100vh - 40px);
    padding: 50px 20px 20px;
    background: transparent;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0.94) translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.electro-lightbox.is-visible .electro-lightbox__box {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.electro-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.electro-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    margin: 0 auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.45s ease 0.05s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.electro-lightbox.is-visible .electro-lightbox__image {
    opacity: 1;
    transform: scale(1);
}

.electro-certificates__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: 20px;
}

.electro-certificates__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
}

.electro-certificates__desc {
    font-size: 14px;
    line-height: 1.5;
    color: #5a5a5a;
}

.electro-certificates__file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0560AA !important;
    text-decoration: underline !important;
}

.electro-certificates__file:hover {
    color: #022b4d !important;
}

@media (max-width: 1220px) {
    .electro-certificates__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .electro-certificates__grid {
        grid-template-columns: 1fr;
    }

    .electro-certificates__image {
        height: 220px;
    }
}

.electro-contacts-page {
    padding: 40px 0 0;
}

.electro-contacts-page__content {
    margin-bottom: 32px;
    line-height: 1.6;
}

.electro-contacts-page__requisites {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.electro-contacts-page__req-item {
    padding: 20px;
    background: #F5F5F5;
    border-radius: 5px;
}

.electro-contacts-page__req-label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a5a5a;
}

.electro-contacts-page__req-value {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

a.electro-contacts-page__req-value {
    color: #0560AA;
    text-decoration: none;
}

a.electro-contacts-page__req-value:hover {
    text-decoration: underline;
}

.electro-contacts-page + .electro-contacts {
    margin-top: 40px;
}

.electro-contacts-page__map-section {
    margin-top: 40px;
    padding: 0 0 80px;
}

.electro-contacts-page__map {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 5px;
    background: #E3E3E3;
}

@media (max-width: 1220px) {
    .electro-contacts-page__requisites {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .electro-contacts-page__requisites {
        grid-template-columns: 1fr;
    }

    .electro-contacts-page__map {
        height: 300px;
    }
}

.progress-box {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.progress-box.show {
    display: flex;
    pointer-events: auto;
}