/*

elektro
trendy

*/
:root {
    --col1: #c70000;
    --col2: #000;
    --text: #343433;
    --bglight: #e7eaf1;
    --borbis: #B0CB1F;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--col1);
}

::-webkit-scrollbar-track {
    background: var(--col2);
}

/* fonty */
@font-face {
    font-family: 'Anek';
    font-weight: 100 800;
    src: url(/font/Anek.ttf);
    font-display: swap;
}

/* podstawowe style */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body, input, textarea, select, button {
    font-family: 'Anek', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

textarea {
    display: block;
    height: 100px;
    resize: none;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .25s;
    outline: none;
}

a:hover {
    color: var(--col1);
}

a:active, a:focus {
    outline: 0;
    border: none;
    outline-style: none;
    -moz-outline-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.35;
}

.upper {
    text-transform: uppercase;
}

.title, .title a {
    color: var(--col2);
}

.title a:hover {
    color: var(--col1);
}

.title {
    padding-bottom: 15px;
    position: relative;
}

.title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background: var(--col1);
}

.title.center:after, .center .title:after {
    left: 50%;
    transform: translateX(-50%);
}

.title .title-link {
    color: var(--col1);
}

.title .title-link:hover {
    color: var(--col2);
}

h1 {
    font-size: 300%;
}

.home-header h2 {
    font-size: 275%;
}

h2 {
    font-size: 225%;
}

h3 {
    font-size: 185%;
}

h4, #reply-title {
    font-size: 145%;
}

h5 {
    font-size: 120%;
}

h6 {
    font-size: 110%;
}

p {
    margin: 0 0 25px;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0;
}

iframe {
    display: block;
    max-width: 100%;
}

.center, .center > * {
    text-align: center;
}

b, strong {
    font-weight: 600;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img.center, .center img {
    margin: 0 auto;
}

.container, .megamenu-content {
    width: 100%;
    padding: 0 35px;
    margin: 0 auto;
    max-width: 92%;
}

.container.fullwidth, .megamenu-content {
    max-width: 100%;
}

.abs-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=url], input[type=search], input[type=date], textarea, select {
    padding: 7px 10px;
    border: 2px solid rgb(0 0 0 / .1);
    transition: .3s ease;
    line-height: 1.5;
    width: 100%;
    color: var(--text);
}

input[type=text]:focus, textarea:focus, input[type=email]:focus, input[type=search]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=date]:focus, select:focus {
    border-color: var(--col1);
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / .1);
}

input[type="checkbox"], input[type="radio"] {
    position: relative;
    top: 1px;
}

.button, button, input[type=submit] {
    padding: 7px 35px;
    display: inline-block;
    transition: .3s ease;
    text-align: center;
    border: 0;
    background: var(--col1);
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
}

.button:hover, button:hover, input[type=submit]:hover, .slide-image:hover .button, .post:hover .button {
    background: var(--col2);
    border-color: var(--col2);
    color: #fff;
}

button[disabled], html input[disabled], input[type=submit]:disabled {
    pointer-events: none;
    opacity: .5;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.row.unwrap {
    flex-wrap: nowrap;
}

.row.spread {
    justify-content: space-between;
    margin: 0;
}

.row.centered {
    align-items: center;
}

.row.middle {
    justify-content: center;
}

.row.nospace {
    margin: 0;
}

.row.nospace > .col {
    padding: 0;
}

.row.smallspace {
    margin: -10px;
}

.row.smallspace > .col {
    padding: 10px;
}

@media(min-width: 1001px) {
    .row.bigspace {
        margin: -20px;
    }

    .row.bigspace > .col {
        padding: 20px;
    }

    .row.hugespace {
        margin: -30px;
    }

    .row.hugespace > .col {
        padding: 30px;
    }
}

.row.spread {
    justify-content: space-between;
}

.col {
    width: 100%;
    padding: 15px;
    position: relative;
}

.col.abs {
    position: absolute;
    bottom: 15px;
    left: 30px;
    color: #fff;
    padding: 20px;
    width: calc(100% - 45px);
    background: rgb(199 0 0 / 75%);
}

.col.auto {
    width: auto;
}

@media(min-width: 1001px) {
    .col_9 {
        width: 75%;
    }

    .col_8 {
        width: 66.6666%;
    }

    .col_7 {
        width: 55%;
    }

    .col_6 {
        width: 50%;
    }

    .col_5 {
        width: 45%;
    }

    .col_4 {
        width: 33.3333%;
    }

    .col_3 {
        width: 25%;
    }

    .col_2 {
        width: 16.6666%;
    }
}

.bottom_space_5 {
    margin-bottom: 5px !important;
}

.bottom_space_10 {
    margin-bottom: 10px !important;
}

.bottom_space_15 {
    margin-bottom: 15px !important;
}

.bottom_space_30 {
    margin-bottom: 30px !important;
}

.bottom_space_45 {
    margin-bottom: 45px !important;
}

.bottom_space_60 {
    margin-bottom: 60px !important;
}

/* header */
header {
    position: fixed;
    width: 100%;
    transition: .3s ease;
    left: 0;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: #fff;
}

.admin-bar header {
    top: 32px;
}

.header-space {
    height: 100px;
}

/* logo */
.logo img {
    height: 50px;
    width: auto;
    transition: .3s ease;
}

/* menu */
header nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav ul a {
    padding: 0 15px;
    transition: .3s ease;
    color: var(--text);
    display: block;
    font-weight: 600;
    font-size: 110%;
}

header nav > ul > li > a {
    height: 100px;
}

header nav ul a span {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header nav > ul > li > a span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--col1);
    transition: .4s ease;
    transform: scaleX(0);
    z-index: 10000;
}

header nav ul li:hover > a span:after, header nav ul .current-menu-item a span:after {
    transform: scaleX(1);
}

header nav ul li:hover > a, header nav .current-menu-item > a {
    color: var(--col1);
}

/* header - szukajka */
.menu-search-icon {
    margin-left: 15px;
    color: var(--text);
    cursor: pointer;
    transition: .3s ease;
    font-size: 90%;
}

.menu-search-icon:hover {
    color: var(--col1);
}

.menu-search {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    justify-content: center;
    align-items: center;
    z-index: 99;
    display: none;
}

.menu-search.active {
    display: flex;
}

.menu-search input[type=text] {
    background: transparent;
    padding: 0;
    border: 0;
    font-size: 120%;
}

.menu-search input[type=text]:focus {
    box-shadow: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .5
}

.menu-search form {
    position: relative;
    width: 100%;
}

.menu-search-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
    z-index: 10;
    font-size: 120%;
}

/* sticky header */
header.sticky {
    padding: 15px 0;
    box-shadow: 0 0 15px rgb(34 34 34 / .15);
}

.sticky .logo img {
    height: 35px;
}

header.sticky nav ul a {
    padding: 7.5px 15px;
}

/* megamenu */
header nav > ul > li > .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9999;
    transition: .3s opacity ease, 0s transform .3s ease;
    opacity: 0;
    transform: scale(0);
}

@media(min-width: 1001px) {
    header nav > ul > li:hover > .sub-menu {
        opacity: 1;
        transform: scale(1);
        transition: opacity .3s ease;
    }
}

.megamenu-mega-menu .sub-menu > li > a, .megamenu-mega-menu .sub-menu > li > .megamenu-megamenu > a, .megamenu-mega-menu .sub-menu > li > a, .megamenu-mega-menu .sub-menu > li > .megamenu-megamenu > .megamenu-content > a, .megamenu-mega-menu .sub-menu > li > .megamenu-megamenu > .megamenu-content > .posty > a, .megamenu-mega-menu .sub-menu > li > .megamenu-megamenu > .megamenu-content > .posty > .col > a, .megamenu-mega-menu .sub-menu > li > .megamenu-megamenu > .megamenu-content > .posty > .col > .post > a:not(.abs-link) {
    display: none;
}

.megamenu-megamenu {
    background: #fff;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 30px 0;
}

/* header - sticky */
header.fixed {
    box-shadow: 0 2px 0 #ddd;
}

header.fixed nav > ul > li > a {
    height: 80px;
}

.fixed .logo img {
    height: 30px;
}

/* glowna - header */
.home-header {
    height: 600px;
}

.header-post {
    position: relative;
    height: 100%;
}

.img-bg-container, .img-bg, .img-bg-container:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s cubic-bezier(.17,.59,.05,.96);
}

.header-post .img-bg-container:after {
    content: "";
    background: #000;
    background: linear-gradient(to top, #000, transparent);
    opacity: .6;
    transition: 1s cubic-bezier(.17,.59,.05,.96);
}

.header-post:hover .img-bg {
    transform: scale(1.1);
}

.header-post:hover .img-bg-container:after {
    opacity: .4;
}

.post-content-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 30px 60px;
    position: relative;
    color: #fff;
}

.home-header h2 {
    text-shadow: 0 0 10px rgba(0,0,0,.1);
}

html .slick-dotted.slick-slider .slick-list, html .slick-dotted.slick-slider .slick-track {
    height: 100%;
}

html .slick-dotted.slick-slider {
    margin-bottom: 0;
}

html .slick-dots {
    bottom: 22.5px;
}

html .slick-dots li {
    margin: 0 6px;
}

html .slick-dots li, html .slick-dots li button {
    width: 8px;
    height: 8px;
}

html .slick-dots li button {
    background: var(--col1);
    border-radius: 100%;
    transition: .3s ease;
    opacity: .5;
}

html .slick-dots li.slick-active button {
    transform: scale(1.2);
}

html .slick-dots li.slick-active button, html .slick-dots li button:hover {
    opacity: 1;
}

html .slick-dots li button:before {
    display: none;
}

.home-header .arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 50px;
    opacity: 0;
    transition: .3s ease;
}

.home-header:hover .arrow {
    opacity: .7;
}

.home-header:hover .arrow:hover {
    opacity: 1;
}

.home-header .arrow i {
    color: #fff;
}

/* glowna - posty */
.post, .problem {
    position: relative;
}

.post-img, .problem-img, .wizytowka-img {
    overflow: hidden;
}

.post .post-img img, .problem .problem-img img, .wizytowka-img img {
    transition: 1s cubic-bezier(.17,.59,.05,.96);
    width: 100%;
}

div.post:hover .post-img img, .problem:hover .problem-img img, .wizytowka:hover .wizytowka-img img {
    transform: scale(1.15);
}

.post .post-date {
    opacity: .5;
    margin-top: 5px;
}

.post h3, .post h4, .post h5, .problem h3, .wizytowka h3 {
    transition: .3s ease;
}

div.post:not(.abs):hover .post-content h4, div.post:hover .post-content h5, .problem:hover h3, .wizytowka:hover h3 {
    color: var(--col1);
}

.post-content .excerpt {
    margin-top: 5px;
}

.date {
    opacity: .8;
    font-size: 90%;
    display: block;
}

.blue-bg .date, .menu .date {
    display: none;
}

.abs > .col:last-child {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 30px;
    color: #fff;
}

.abs .post-img {
    position: relative;
}

.abs .post-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}

/* posty - slider */
.posty-slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    ; background: #fff;
    font-size: 120%;
    border-radius: 100%;
    transition: .3s ease;
    opacity: 0;
}

.arrow-prev {
    left: 25px;
}

.arrow-next {
    right: 25px;
}

.posty-slider:hover .arrow {
    opacity: 1;
}

.posty-slider .arrow:hover {
    background: var(--col1);
    color: #fff;
}

/* kategoria */
.category-desc {
    margin-top: 15px;
}

/* sidebar */
.sidebar .widget > h4 {
    padding-bottom: 7px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--col1);
    color: var(--col1);
    text-align: right;
}

.widget:not(:last-child) {
    margin-bottom: 40px;
}

.obserwuj {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -5px;
}

.obserwuj > a {
    max-width: 50%;
    padding: 5px;
}

/* sidebar - kategorie */
.widget_categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_categories ul li a {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 120%;
}

.widget_categories ul li a:before {
    content: "\f054";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 100%;
    background: var(--col1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* page title */
.page-title {
    background: var(--col1);
    color: #fff;
    padding: 10px 0;
}

.page-title h1 {
    font-size: 180%;
}

/* single post */
.breadcrumbs {
    font-size: 90%;
    padding-bottom: 5px;
    color: rgb(255 255 255 / 70%);
}

.breadcrumbs a:hover {
    color: #fff;
}

.single-post-content h2, .single-post-content h3, .single-post-content h4, .single-post-content h5, .page-content h2, .page-content h3, .page-content h4, .page-content h5 {
    margin-bottom: 10px;
}

.single-post-content a, .page-content a {
    color: var(--col1);
}

.single-post-content a:hover, .page-content a:hover {
    color: var(--col2);
}

.single-post-content ul, .page-content ul {
    padding-left: 25px;
    margin-bottom: 25px;
}

.single-post-content ul li + li, .page-content ul li + li {
    padding-top: 5px;
}

blockquote {
    font-family: 'Nunito', serif;
    margin: 0 0 25px;
    font-size: 120%;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--col1);
}

.tagi {
    font-size: 90%;
    padding-top: 15px;
    padding-bottom: 30px;
}

.tagi i {
    padding-right: 5px;
    position: relative;
    top: 1px;
    color: var(--col2);
}

.tagi strong, .tagi a:hover {
    color: var(--col2);
}

.tagi a:not(:hover) {
    opacity: .75;
}

.aligncenter {
    margin: 0 auto;
}

img.alignright {
    float: right;
    margin-left: 25px;
}

img.alignleft {
    float: left;
    margin-right: 25px;
}

/* single post - nawigacja */
.previous-next {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 30px 0 15px;
}

.previous-next > * {
    width: 50%;
    padding: 6% 9%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color: #333;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.previous-next > .only {
    width: 100%;
}

.previous-next > *:after {
    background-color: rgba(13,13,13,0.35);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: background-color 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
    transition: background-color 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
}

.previous-next .pn-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
}

.previous-next .abs-link {
    z-index: 101;
}

.previous-next h3 {
    position: relative;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1);
}

.previous-next h3 .desc {
    display: block;
    font-size: 50%;
    font-weight: 600;
    text-transform: uppercase;
}

.previous-next .previous h3 {
    text-align: right;
}

.previous-next > *:hover:after {
    background-color: rgba(13,13,13,0.75);
}

.previous-next > *:hover .pn-bg-img {
    transform: scale(1.1);
}

.previous-next > .previous:hover h3 {
    transform: translateX(40px) translateZ(0);
    backface-visibility: hidden;
}

.previous-next > .next:hover h3 {
    transform: translateX(-40px) translateZ(0);
    backface-visibility: hidden;
}

.previous-next h3 .pn-arrow {
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 50%;
    transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1);
    opacity: 0;
    transform: translateY(-50%);
}

.previous-next >*:hover h3 .pn-arrow {
    opacity: 1;
}

.previous-next h3 .pn-arrow-prev {
    left: -50px;
}

.previous-next h3 .pn-arrow-next {
    right: -50px;
}

/* single post - komentarze */
.comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments h4 {
    margin-bottom: 15px;
}

.comments .comment {
    margin-bottom: 25px;
}

.comment .comment-author {
    padding-top: 5px;
}

.comment .comment-author img {
    border-radius: 100%;
    margin-right: 15px;
    float: left;
}

.comment .comment-author .fn {
    font-style: normal;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    line-height: 1.3;
    font-size: 105%;
    margin-top: 9px;
    display: block;
}

.comment .comment-meta {
    display: block;
    opacity: .9;
    font-size: 90%;
}

.comment-content {
    clear: both;
    border: 1px solid rgb(0 0 0 / .1);
    margin-top: 15px;
    padding: 15px;
}

.comment-content p {
    margin-bottom: 15px;
}

.comment-content .reply {
    font-size: 90%;
    opacity: .9;
}

.comment-respond label {
    display: none;
}

.comment-respond input[type=checkbox] + label {
    display: initial;
}

.comments .comment .children {
    margin-left: 25px;
    margin-top: 25px;
}

#respond {
    margin-bottom: 25px;
}

#respond p:not(:last-child):not(.form-submit) {
    margin-bottom: 15px;
}

/* paginacja */
.pagination {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.pagination > * {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid var(--col2);
    color: var(--col2);
    border-radius: 100%;
}

.pagination > .current, .pagination > a:hover {
    background: var(--col1);
    border-color: var(--col1);
    color: #fff;
}

/* kontakt */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.form-field {
    width: 100%;
    padding: 5px;
}

.form-third {
    width: 33.3333%;
}

span.wpcf7-list-item {
    margin: 0;
}

.form-zgoda {
    text-align: justify;
    font-size: 90%;
}

.form-zgoda a {
    color: var(--col1);
}

div.wpcf7 .ajax-loader {
    display: none;
}

.form-wyslij {
    text-align: center;
    margin-top: 10px;
}

/* 404 */
.notfound {
    padding: 8% 0;
}

/* formularz - zgoda */
.zgoda_field {
    text-align: center;
}

.zgoda_field input[type=checkbox] {
    position: relative;
    top: 1px;
    margin-right: 5px;
}

/* formularz - komunikaty */
.form-msg-box {
    border: 2px solid rgb(0 0 0 / .1);
    margin-bottom: 20px;
    padding: 15px;
}

.form-msg-center {
    font-weight: 700;
}

.form-msg-box p:not(:last-child) {
    margin-bottom: 10px;
}

.form-msg-box .form-msg-head {
    font-weight: 700;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding-bottom: 10px;
    text-align: center;
}

.form-msg-box .form-error:before {
    content: "\f06a";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #b10;
    margin-right: 10px;
    position: relative;
    top: .5px;
}

.form-msg-box .form-error strong {
    color: #b10;
}

.form-msg-box.form-success-box {
    border-color: rgb(136 170 17 / .5);
}

.form-msg-box.form-success-box p {
    text-align: center;
}

.form-msg-box.form-success-box p:before {
    content: "\f058";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #8a1;
    margin-right: 10px;
}

/* footer */
footer {
    margin-top: auto;
    background: #111;
}

.main-footer {
    margin: 15px auto;
}

.main-footer a {
    color: #fff;
}

.main-footer a + a {
    margin-left: 40px;
}

.main-footer a:hover {
    color: var(--col1);
}

.main-footer i {
    margin-right: 10px;
}

/* footer - copyright */
.copyright {
    padding: 10px 0;
    font-size: 90%;
    background: #222;
    color: #fff;
}

.copyright a {
    color: var(--borbis) !important;
}

/* ukryj */
.grecaptcha-badge, .hide {
    display: none !important;
}

/* rwd */
@media(max-width: 1400px) {
    body, input, textarea, select, button {
        font-size: 17px;
    }
}

@media(max-width: 1200px) {
    body, input, textarea, select, button {
        font-size: 16px;
    }
}

@media(min-width: 1001px) {
    .nopc {
        display: none;
    }
}

@media(max-width: 1000px) {
    body, input, textarea, select, button {
        font-size: 15px;
    }

    .norwd {
        display: none;
    }

    h1 {
        font-size: 235%;
    }

    .home-header h2 {
        font-size: 220%;
    }

    h2 {
        font-size: 200%;
    }

    .page-title h1, h3 {
        font-size: 170%;
    }

    h4, #reply-title {
        font-size: 130%;
    }

    .logo-container img, footer img.logo {
        height: 30px;
    }

    .footer-icons img {
        width: 30px;
        height: 30px;
    }

    header nav ul {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100%;
        width: 300px;
        flex-direction: column;
        background: var(--col1);
        z-index: 999;
        box-shadow: 0 0 10px rgb(0 0 0 / .1);
        transition: .5s ease;
    }

    header nav ul.active {
        right: 0;
    }

    header nav ul:before {
        content: "";
        position: fixed;
        top: 0;
        left: calc(300px - 100%);
        width: calc(100% - 300px);
        height: 100%;
        background: #000;
        opacity: .75;
        transition: .5s ease;
    }

    header nav ul.active:before {
        left: 0;
    }

    header nav ul li + li:before {
        display: none;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
    }

    header nav ul a {
        padding: 10px 0;
        display: block;
        font-size: 120%;
    }

    header nav > ul > li > a, header.fixed nav > ul > li > a {
        height: auto;
        color: #fff;
    }

    header nav ul a span:after {
        display: none;
    }

    .mobile-menu-toggle {
        color: var(--col1);
        font-size: 120%;
        padding: 10px 0;
    }

    .logo img {
        height: 30px;
    }
    
    header {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .header-space {
        height: 60px;
    }

    .home-header {
        height: 450px;
    }
}

@media(max-width: 1000px) and (min-width: 481px) {
    .col_sm_2 {
        width: 20%;
    }

    .col_sm_4 {
        width: 33.3333%;
    }

    .col_sm_6 {
        width: 50%;
    }

    .col_sm_8 {
        width: 66.6666%;
    }

    .col_sm_10 {
        width: 80%;
    }
}

@media(max-width: 690px) {
    .home-header {
        height: 360px;
    }
}

@media(max-width: 480px) {
    .home-header {
        height: 270px;
    }

    .home-header h2 {
        font-size: 200%;
    }

    h2 {
        font-size: 180%;
    }

    .page-title h1, h3 {
        font-size: 160%;
    }
}
