/*
Theme Name: Webninja ACF Builder - excellent solution for developers
Author: webninja.codes
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webninja ACF Builder
Description: ÂŠ All rights reserved. Copying, processing, distributing this template in whole or in part without the author's permission is prohibited.
Author URI: http://webninja.codes
*/

/* Loader */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background: #000;
	z-index: 9999;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.loader-circle {
	width: 7rem;
	height: 7rem;
	border: 8px solid transparent;
	border-top: 8px solid var(--color-g1);
	border-bottom: 8px solid var(--color-g1);
	border-radius: 50%;
	animation: spin 1.5s linear infinite;
	position: relative;
}

.loader-circle::before {
	content: '';
	position: absolute;
	top: -2rem;
	left: -2rem;
	right: -2rem;
	bottom: -2rem;
	border: 8px solid transparent;
	border-left: 8px solid var(--color-g1);
	border-right: 8px solid var(--color-g1);
	border-radius: 50%;
	animation: spin-reverse 10s linear infinite;
}

.loader-circle::after {
	content: '';
	position: absolute;
	top: -1rem;
	left: -1rem;
	right: -1rem;
	bottom: -1rem;
	border: 8px solid transparent;
	border-left: 8px solid white;
	border-right: 8px solid white;
	border-radius: 50%;
	animation: spin-reverse 1s linear infinite;
}

.loader-text {
	margin-top: 3rem;
	font-size: 18px;
	color: #fff;
	animation: pulse 1.5s infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


/* Font */
@font-face {
	font-family: 'DMSans-Regular';
	font-style: normal;
	font-weight: normal;
	src: local('DMSans-Regular'), url('fonts/DMSans-Regular.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'DMSans-Medium';
	font-style: normal;
	font-weight: normal;
	src: local('DMSans-Medium'), url('fonts/DMSans-Medium.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'DMSans-Bold';
	font-style: normal;
	font-weight: bold;
	src: local('DMSans-Bold'), url('fonts/DMSans-Bold.woff2') format('woff2');
	font-display: swap;
}

:root {
	--padding-main: 1rem;
	--border-radius: 0.2rem;
	--border-radius-md: 0.5rem;
	--border-radius-lg: 1rem;
}

.type-b4u {
	--color-g1: var(--color-6);
	--color-g2: var(--color-2);
	--color-g3: var(--color-3);
	--color-g4: var(--color-7);
}

.type-magazyn {
	--color-g1: var(--color-1);
	--color-g2: var(--color-2);
	--color-g3: var(--color-3);
}

.color_1 {
	color:var(--color-g1)!important;
}

.color_2 {
	color:var(--color-g2)!important;
}


html {
    font-size: 26px;
}

body {
    font-family: "DMSans-Regular",sans-serif;
	line-height: 1.5;
    color:var(--color-main);
}

main, footer {
	/* overflow: hidden; */
	position: relative;
}

p {
	margin-bottom: 1rem;
}

a {
    color:var(--color-main);
	text-decoration:none;
	transition: 0.4s ease;
}

a:hover {
    color:var(--color-g1);
	text-decoration:underline;
	transition: 0.4s ease;
}

img {
	max-width:100%;
	height:auto;
}

h1, .h1, .head_1 .title, .head_2 .title {
	font-family: 'DMSans-Bold',arial,sans-serif;
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

h2, .h2 {
	font-family: 'DMSans-Bold',arial,sans-serif;
	font-size: 1.6rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

h3,.h3 {
	font-family: 'DMSans-Bold',arial,sans-serif;
	font-size: 1.2rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

h4,h5,.h4,.h5 {
	font-family: 'DMSans-Bold',arial,sans-serif;
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}


/* .type-b4u :is(h2, h3, h4, h5, h6) {
	color:var(--color-main);
} */

.type-magazyn :is(h2, h3, h4, h5, h6) {
	color:var(--color-g1);
}

.page_text p {
	margin-bottom: 2.5rem;
}

.text > p + p:last-child, .text > p:last-of-type {
	margin-bottom: 0;
}

b, strong {
	font-family: 'DMSans-Bold',arial,sans-serif;
}

.text_light {
    font-family: 'DMSans-Regular',arial,sans-serif;
	font-weight: 100;
}

.text_medium {
    font-family: 'DMSans-Medium',arial,sans-serif;
}

small, .small {
	font-size: 75%;
}

.text_md {
	font-size: 115%;
}

.text_lg {
	font-size: 1.7rem;
}

.uppercase {
	text-transform: uppercase;
}

.text_center {
   text-align: center;
}

.break_word {
	word-wrap: break-word;
}

.nowrap {
	white-space: nowrap;
}

ol {
	padding-left: 1.2rem;
}

ol li {
	padding-bottom: 0.7rem;
}

[class^="list_cs"], [class*=" list_cs"] ul, [class^="list_cs"], [class*=" list_cs"] {
	list-style: none;
	padding:0;
}

[class^="list_cs"] li, [class*=" list_cs"] li {
	padding: 0 0 0.2rem 1.2rem;
	line-height: 1.4;
	position: relative;
}

[class^="list_cs"] li:before, [class*=" list_cs"] li:before {
	content: "●";
	position: absolute;
	margin-right: 0;
	left: 0rem;
	color: var(--color-g1);
	line-height: 1.4;
}

[class^="list_cs"] li a, [class*=" list_cs"] li a {
	color: var(--color-main);
}

[class^="list_cs"] li a:hover, [class*=" list_cs"] li a:hover {
	color: var(--color-g1);
	text-decoration:none;
}

hr {
	border: 1px solid #DDDDDD;
}


/* image */
img.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

img.alignright {
	float: right;
}

/* table */
table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 1.5rem;
	width: auto;
}

table td, table th {
	border: 6px solid rgb(255, 255, 255);
	padding: 0.5rem;
	vertical-align: top;
}

table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6;
}

.table_1 tr td:first-child {
	text-align: right;
}

.table_1 table {
	font-size: 0.7rem;
	text-align: left;
}

.type-magazyn table tr:nth-child(odd) {
    background-color: #FCE2EF;
}

.type-magazyn table tr:nth-child(even) {
    background-color: #F3F3F3;
}

.type-b4u table tr:nth-child(odd) {
    background-color: #FEF1E8;
}

.type-b4u table tr:nth-child(even) {
    background-color: #F3F3F3;
}


/* Main grid */
.container, .full_width .col_container .wrapper {
	max-width: 1650px;
	width: 95%;
	margin: 0 auto;
	padding-left: var(--padding-main);
	padding-right: var(--padding-main);
}

section {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.full_width .container {
	max-width: 100%;
	width: 100%;
}

.non_stretched {
	max-width: 1450px;
	margin: 0 auto;
	width: calc(95% - 2rem);
}

.non_stretched .container {
	padding-left: 0;
	padding-right: 0;
}

.col_row {
	display: flex;
	flex-wrap: wrap;
	padding-top: 0;
	padding-bottom: 0;
	width: calc(100% + 2rem);
	margin-left: calc(-1 * var(--padding-main));
	margin-right: calc(-1 * var(--padding-main));
}

.col_row > div {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
	padding-left: var(--padding-main);
	padding-right: var(--padding-main);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.col_px_lg .col_row {
	width: calc(100% + 3rem);
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}

.col_px_lg .col_row > div {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.col_px_sm .col_row {
	width: calc(100% + 0.8rem);
	margin-left: -0.4rem;
	margin-right: -0.4rem;
}

.col_px_sm .col_row > div {
	padding-left: 0.4rem;
	padding-right: 0.4rem;
}

.col_row > *:after {
    display: block;
    content: "";
    clear: both;
}

.col_row .col_w100 {
	flex: 0 0 100%;
	width: 100%;
}

.col_row .col_w90 {
	flex: 0 0 90%;
	width: 90%;
}

.col_row .col_w80 {
	flex: 0 0 80%;
	width: 80%;
}

.col_row .col_w70 {
	flex: 0 0 70%;
	width: 70%;
}

.col_row .col_w60 {
	flex: 0 0 60%;
	width: 60%;
}

.col_row .col_w50 {
	flex: 0 0 50%;
	width: 50%;
}

.col_row .col_w40 {
	flex: 0 0 40%;
	width: 40%;
}

.col_row .col_w30 {
	flex: 0 0 30%;
	width: 30%;
}

.col_row .col_w20 {
	flex: 0 0 20%;
	width: 20%;
}

.col_row .col_w10 {
	flex: 0 0 10%;
	width: 10%;
}

.align_center .col_row, .col_row.align_center {
	align-items: center;
}

.align_self_center .col_row {
	align-self: center;
}

.clearfix:after {
    display: block;
    content: "";
    clear: both;
}

.py_0 {
	padding-top: 0;
	padding-bottom: 0;
}

.py_sm {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.py_md {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py_lg {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.p_0 {
	padding:0;
}

.pt_0 {
	padding-top: 0;
}

.pb_0 {
	padding-bottom: 0;
}

.pt_sm {
	padding-top: 1.5rem;
}

.pt_md {
	padding-top: 3rem;
}

.pt_lg {
	padding-top: 6rem;
}

.pb_sm {
	padding-bottom: 1.5rem;
}

.pb_md {
	padding-bottom: 3rem;
}

.pb_lg {
	padding-bottom: 6rem;
}

.mb_0 {
	margin-bottom: 0;
}

.dark, .dark h1, .dark h2, .dark h3, .dark h4 {
	color: white;
}

.text p + h2 {
	padding-top: 1.5rem;
}

.text h2 {
	margin-bottom: 1.3rem;
}

.bgr_1 {
	background: var(--color-g1);
}

.bgr_2 {
	background: var(--color-g2);
}

.bgr_3 {
	background: var(--color-g3);
}

section.advanced .col .wrapper {
	height: 100%;
}

.cover {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.cover img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Btn */
[class^="btn_"], [class*=" btn_"] {
	font-family: 'DMSans-Bold',arial,sans-serif;
	padding: 0.5rem 0.8rem;
	border: 2px solid;
	line-height: 1.3;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	transition: 0.4s ease;
	font-weight: bold;
	border-radius: 0.1rem;
}


[class^="btn_"]:hover, [class*=" btn_"]:hover {
	text-decoration:none;
	transition: 0.4s ease;
}

[class^="btn_"]:before, [class*=" btn_"]:before {
	margin-right: 1rem;
	transition: 0.4s ease;
}

[class^="btn_"]:hover:before, [class*=" btn_"]:hover:before {
	transition: 0.4s ease;
}

/* [class^="btn_"]:disabled, [class*=" btn_"]:disabled {
	border-color: rgb(217, 217, 217);
	background-color: rgb(227, 227, 227);
	color: rgb(170, 170, 170);
} */


.btn_lg {
	font-size: 1.5rem;
	padding: 1rem 2.5rem;
}

.btn_md {
	font-size: 1.2rem;
	padding: 1rem 2.3rem;
}

.btn_sm {
	padding: 0.3rem 1.5rem !important;
	font-size: 0.7rem;
}

.btn_1 {
	color: var(--color-main);
	background: transparent;
	border-color: var(--color-main);
}

.btn_1:hover, .btn_1:focus {
	background: var(--color-main);
	color: white;
	border-color: var(--color-main);
}

.btn_2 {
	color: white;
	background: transparent;
	border-color: white;
}

.btn_2:hover, .btn_2:focus {
	background: transparent;
	color: white;
	border-color: var(--color-g1);
}

.btn_3 {
	color: var(--color-g1);
	font-family: 'DMSans-Regular',arial,sans-serif;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.028' height='34.601' viewBox='0 0 18.028 34.601'%3E%3Cg transform='translate(0 0)'%3E%3Cpath d='M0,0V17.3H18.028Z' fill='%23b50069'/%3E%3Cpath d='M0,69.82v17.3l18.028-17.3Z' transform='translate(0 -52.519)' fill='%23d8006b'/%3E%3C/g%3E%3C/svg%3E");
	border-color: white;
	padding: 0;
	border: 0;
	text-transform: none;
	font-weight: 100;
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 1.5rem;
	display: inline-block;
}

.btn_3:hover, .btn_3:focus {
	color: var(--color-main);
}

.btn_dec {
	color: white;
	border: none;
	padding: 0.5rem 2rem;
	transition: all 0.3s ease;
}

.btn_dec:hover {
	color: white;
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.type-b4u .btn_dec {
	background-color: var(--color-6);
}

.type-magazyn .btn_dec {
	background-color: var(--color-g1);
}

.dark .btn_1:hover,
.dark .btn_1:focus {
	background: transparent;
	color: white;
	border-color: white;
}

.box_btn {
	padding-top: 1rem;
	display: flex;
}

.box_btn a {
	margin-right: 1rem;
}

.box_btn a:last-child {
	margin-right: 0;
}

.box_btn a i {
	font-size: 0.6rem;
	padding-right: 0.4rem;
}

.btn_align_right {
	margin-left: auto;
}

button:focus,
input[type=button]:focus {
	outline: none;
} 

/* Form */
label {
	display: block;
	margin-bottom: 0;
	padding: 0 0 0.5rem;
}

.form_control {
	color:var(--color-main);
	padding: 0.5rem 0;
	border: none;
	border-bottom: 1px solid var(--color-4);
	background: transparent;
	width: 100%;
	transition: 0.4s ease;
	font-size: 0.7rem;
}

.dark_box .form_control {
	border-color: white;
	color: white;
}

textarea.form_control {
	height: auto;
}

select {
	vertical-align: middle;
	background-color: #fff;
	outline: none;
    background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%2300accb' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat!important;
    background-position: calc(100% - 1.5rem) center !important;
    -moz-appearance:none !important;
    -webkit-appearance: none !important; 
    appearance: none !important;
    padding-right: 2rem !important;
}

select option {
	color:var(--color-g1);
    font-family: 'Roboto-Regular',arial,sans-serif;
	background: white;
}

select option:first-child {
	color:var(--color-main);
}

input:hover,
input:focus,
textarea.form_control:hover,
textarea.form_control:focus {
	background: transparent;
	outline: none;
	transition: 0.4s ease;
	border-color: var(--color-g1);
}

.dark_box input:hover,
.dark_box input:focus,
.dark_box textarea.form_control:hover,
.dark_box  textarea.form_control:focus {
	border-color: white;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.checkbox input[type="checkbox"]+span {
  cursor: pointer;
}

.checkbox input[type="checkbox"] + span:before {
	content: '';
	border: 1px solid #b2b2b2;
	border-radius: 3px;
	display: inline-block;
	min-width: 2rem;
	width: 2rem;
	height: 2rem;
	margin-right: 2rem;
	vertical-align: -2px;
}

.checkbox input[type="checkbox"]:checked+span:before {
  background-image: url('images/bullet.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem;
  border-radius: 2px;
}

input[type="checkbox"]:disabled+span {
  cursor: default;
  opacity: 0.5;
}

.form_box_2 .form_control {
	color: #52575D;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-g1);
	border-radius: var(--border-radius-md);
	font-style: italic;
}

.form_box_2 span + br {
	display: none;
}

.form_box_2 span.wpcf7-form-control-wrap {
	margin-bottom: 0.8rem;
}

::placeholder {
  color: var(--color-4) !important;
  opacity: 1;
}

.dark_box ::placeholder {
  color: white !important;
}


.form_box_2 ::placeholder {
  color: #52575D !important;
  opacity: 1;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
	text-align: left;
}

.wpcf7-acceptance label {
	padding: 0;
	display: flex;
	align-items: baseline;
}

.wpcf7-acceptance .wpcf7-list-item-label {
	margin-left: 0.5rem;
}

.box_send {
	position: relative;
}

.wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.wpcf7-form-control-wrap {
	margin-bottom: 0.2rem;
	display: block;
}

.wpcf7-not-valid-tip {
	font-size: 0.5rem;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 0.6rem;
}

.box_dec_lr, .left_nav h3, .btn_dec {
	background-position: left center, right center;
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100%, auto 100%;
}

.type-b4u .box_dec_lr, .type-b4u .left_nav h3, .type-b4u .btn_dec {
	background-image: url('images/dec_orange_left.svg'), url('images/dec_orange_right.svg');
}

.type-magazyn .box_dec_lr, .type-magazyn .left_nav h3, .type-magazyn .btn_dec {
	background-image: url('images/dec_pink.svg'), url('images/dec_pink.svg');
}


/* Header */
header {
	background: white;
	position: sticky;
	top: 0;
	z-index: 100;
	transition: 0.4s ease;
	width: 100%;
}

header a:hover {
    text-decoration: none;
}

header .container {
	display: flex;
	align-items: center;
}

header .logo {}

header .logo img {
	transition: 0.4s ease;
	max-width: 13rem;
}

header .top {
	padding: 1.5rem 0;
	opacity: 1;
	visibility: visible;
	transition: 0.2s ease;
}

header .top .right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

header .social_links {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.5rem;
	font-size: 1.2rem;
}

header .right .btn_1 {
	font-size: 0.6rem;
	padding: 0.4rem 0.7rem;
}

header .right .tel {
	font-size: 1.3rem;
}

header .right .tel i {
	display: none;
}

/* scroll */
.h_scroll {
	transition: 0.4s ease;
	box-shadow: 0 -0.7rem 1.2rem var(--color-main);
}

.h_scroll .top {
	opacity: 0;
	padding: 0;
	visibility: hidden;
	transition: 0.2s ease;
	height: 0;
}

.h_scroll .logo img {
	max-width: 10rem;
	transition: 0.4s ease;
}

.h_scroll .top_menu {
	border-top: none;
}

.h_scroll .top_menu .nav_logo {
	display: block;
}

.h_scroll .top_menu li {
	padding: 0.5rem 0;
}


/* .h_scroll .top_menu > li > a, .h_scroll .top_menu > li > span {
	transition: 0.5s ease;
	padding-bottom: 1.3rem;
	padding-top: 1.3rem;
} */


/* Nav */
.top_menu .nav_logo {
	display: none;
	width: 1.5rem;
}

.top_menu .nav_logo a {
	width: 2rem;
	position: relative;
	height: 2rem;
	overflow: hidden;
}

.top_menu .nav_logo img {
	position: absolute;
	max-width: 1.6rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


header .top_menu {
	border-top: 1px solid;
}

.top_menu {
	margin: 0;
	list-style: none;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	position: relative;
}

.top_menu li {
	transition: 0.4s ease;
	padding: 1rem 0;
}

.top_menu li a, .top_menu li span {
	font-size: 0.6rem;
	line-height: 1;
	transition: 0.5s ease;
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'DMSans-Bold',arial,sans-serif;
}

.top_menu > li > a {
	white-space: nowrap;
}

.top_menu .menu-item-has-children a {

}

.top_menu .menu-item-has-children > a:after, .top_menu .menu-item-has-children > span:after {
	font-family: 'uniwp';
	content: "\ea1c";
	display: inline-block;
	vertical-align: middle;
	font-size: 0.6rem;
	margin-left: 0.5rem;
	transform: rotate(90deg);
}

.top_menu .orange > a:after,
.top_menu .orange > span:after {
	color: #EC643F;
}

.top_menu .orange .sub-menu {
	border-color: #EC643F;
}


.top_menu .current-menu-item a,
.top_menu .current-category-ancestor a,
.top_menu .current-menu-parent a,
.top_menu .current-page-ancestor a,
.top_menu .current-menu-ancestor span {
	
}

.top_menu li a:hover {
	text-decoration:none;
	transition: 0.4s ease;
}

.top_menu li:hover > .sub-menu {
	opacity: 1;
	visibility:visible;
	transition: 0.5s ease;
}

.top_menu .sub-menu {
	display: none;
	position: absolute;
	list-style: none;
	background: white;
	padding: 1rem;
	top: 100%;
	box-shadow: 2rem 2rem 2rem rgba(0, 0, 0, 0.13);
	min-width: 17rem;
	z-index: 999;
	border-top: 3px solid;
}

.top_menu li:hover .sub-menu  {
	display: block;
}

.top_menu .sub-menu li {
	margin: 0;
	padding: 0;
}

.top_menu .sub-menu a, .top_menu .sub-menu span {
	font-family: 'Roboto-Light',arial,sans-serif;
	text-transform: none;
	background: transparent;
	position: relative;
	padding: 0.3rem 0;
	font-size: 0.7rem;
	border-bottom-width: 0;
	font-weight: 100;
}

.top_menu .sub-menu a:hover, .top_menu .sub-menu span:hover {
	text-decoration: underline;
}

.top_menu .sub-menu .current-menu-item a {
	font-family: 'Roboto-Bold',arial,sans-serif;
}


.top_menu .anchor a {
	color: white;
}

/* .top_menu .current_page_item a,
.top_menu .current-menu-item a {
	color: var(--color-g2);
} */

.top_menu li.icon {
	padding: 0;
	border: none;
}

.menu_btn {
	cursor: pointer;
	display: none;
	padding: 1rem 0;
	position: relative;
	background: transparent;
	margin-left: 0.7rem;
	z-index: 3;
}

.menu_btn span {
	background: var(--color-main);
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 1.7rem;
}

.menu_btn span:before, .menu_btn span:after {
	background: var(--color-main);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

.menu_btn span:after {
	top: -0.5rem;
}

.menu_btn span:before {
	top: 0.5rem;
}

.menu_btn.active > span {
  background: transparent !important;
}

.menu_btn.active span:before {
  transform: rotate(-45deg);
}

.menu_btn.active span:after {
  transform: rotate(45deg);
}

.menu_btn.active > span:after, .menu_btn.active > span:before {
	top: 0;
}

/* Search */
.search_btn {
	cursor: pointer;
	border-radius: 50%;
	height: 2.5rem;
	width: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s ease;
}

.search_btn i {
	font-size: 1.1rem;
}

.search_btn:hover {
	background: var(--color-red);
	transition: 0.4s ease;
}

.searchform {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	background: rgba(0, 0, 0, 0.87);
	z-index: 21;
}

.searchform form {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 3rem;
}

#searchform .box {
	display: flex;
	justify-content: center;
	width: 50%;
}

#searchform .box .form_control {
	margin-right: -1.3rem;
	padding: 0.5rem 1rem;
}

.searchform .close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.36);
	cursor: pointer;
}

.searchform .close:hover {
	color: #fff;
}

.searchform_cs2 {
	position: relative;
}

.searchform_cs2 #searchsubmit {
	position: absolute;
	right: 1rem;
}

.searchform_cs2 #searchsubmit {
	position: absolute;
	right: 1rem;
	border: none;
	background: transparent;
	font-size: 1.9rem;
	cursor: pointer;
}

.searchform_cs2 .form_control {
	padding-right: 4rem;
}

.search-results h3 b {
	text-decoration: underline;
}


/* Content */
.page_head {
	padding: 4rem 0 3rem;
	color: white;
	background-position: center 60% !important;
}

.page_head h1, .page_head .h1 {
	margin-bottom: 1rem;
	text-transform: uppercase;
	margin-bottom: 0;
}

.page_head .text {
	padding: 0 15%;
}

.page_content h2 {
	margin-top: 3.2rem;
}

.page_content h2:first-child {
	margin-top: 0;
}

.page_content h2 {
	font-size: 1.5rem;
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: 2rem;
}

.left_column article .head .container{
	padding-left: var(--padding-main)!important;
}

/* .page_head h1:after {
	margin: 0.5rem auto;
} */

.single-post .page_head {
	background: transparent url("images/head_1.jpg") center top no-repeat scroll;
}

/* Category */
.category_menu {
	background: var(--color-g1);
}

.category_menu ul {
	padding: 0;
	list-style: none;
	margin: 0;
	display: flex;
}

.category_body {
	background:var(--color-4); 
	padding-top: 5rem;
	padding-bottom: 6rem;
}


.category_description {
	padding-bottom: 3rem;
}

.category_description h1 {
	font-size: 2rem;
}

.category_menu a {
	font-family: 'Montserrat-ExtraBold',arial,sans-serif;
	color: white;
	font-size: 0.7rem;
	padding: 1rem 0.5rem;
	display: block;
	position: relative;
	line-height: 1.2;
}

.category_menu .current-cat a:after {
	content: '';
	background: var(--color-g1);
	display: block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 50%) rotate(45deg);
}

/* layout */
.layout_switcher {
	display: flex;
	padding: 0;
	list-style: none;
	gap: 1rem;
	margin: 0;
}

.layout_switcher i {
	cursor: pointer;
	color: var(--color-g1);
}



/*  Posts */
.breadcrumb {
	display: flex;
	align-items: center;
	line-height: 1;
	padding: 1rem 0;
}

.breadcrumb, .breadcrumb a {
	color: white;
	font-size: 80%;
}

.breadcrumb span i {
	display: block;
	font-size: 0.4rem;
	color: white;
	margin: 0 0.5rem;
}

.pagination {
	list-style: none;
	padding: 3rem 0 1rem;
	display: flex;
	justify-content: left;
	align-items: center;
}

.pagination span, .pagination a {
	padding: 0.5rem 0.9rem;
	background: var(--color-3);
	line-height: 1.5;
	margin-right: 0.8rem;
}

.pagination a:hover, .pagination a:hover i {
	text-decoration: none;
	color: var(--color-g1);
}

.pagination .current, .pagination .active {
	background: var(--color-g1);
	color: #fff;
}

.pagination i {
	font-size: 0.8rem;
}

.posts_list_head {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-bottom: 2.5rem;
}

.posts_list_head h1 {
	text-transform: uppercase;
	margin: 0;
}


.posts_list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 5rem;
	grid-row-gap: 2rem;
}

.posts_list .item {
}

.posts_list .item a {
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.posts_list a:hover {
	text-decoration: none;
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.posts_list .img {
	padding-top: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--border-radius);
	order: 2;
}

.posts_list .item .body {
	padding: 3rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.posts_list .title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	order: 1;
}

.posts_list .title_1:after {
	margin: 1rem 0 0.5rem;
}

.posts_list .intro {
	font-size: 80%;
	padding-top: 0.5rem;
	padding-bottom: 2rem;
	order: 3;
}

.posts_list .date {
	color:var(--color-g1);
	font-size: 80%;
	padding-bottom: 0.3rem;
}

.posts_list .image {
	overflow: hidden;
	order: 2;
}

.posts_list .footer {
	margin-top: auto;
}

.blog_layout_list .posts_list {
	grid-template-columns: repeat(1,1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 0;
}

.blog_layout_list .posts_list .item a {
	position: relative;
	padding-left: 14rem;
	min-height: 13rem;
	justify-content: center;
}

.blog_layout_list .posts_list .img {
	width: 12rem;
	padding-top: 12rem;
	order: 1;
	position: absolute;
	left: 0;
}

.blog_layout_list .posts_list .title {
	order: 2;
}

.post_box {
	padding-bottom: 5rem;
	padding-top: 1rem;
}

.post_box .post_body, .category_box .category_body {
	flex: 0 0 70%;
	width: 70%;
}

.post_body .content {
	padding: 0 12%;
}

.post_body .post_thumbnail {
	padding-top: 100%;
	margin-bottom: 2rem;
	border-radius: var(--border-radius);
}

.page_thumbnail {
	text-align: center;
	padding-bottom: 3rem;
}

.page_body .wrapper {
	padding: 0 19%;
}

.post_bottom_nav {
	display: flex;
	justify-content: space-between;
	padding-top: 1rem;
}

.related_posts .item {
	margin-bottom: 2rem;
}

.related_posts .item .post_thumbnail {
	padding-top: 100%;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
}

.related_posts .item .title {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.related_posts .item .excerpt {
	font-size: 80%;
}


/* Carousel  */
.owl-carousel {
}

.owl-carousel .owl-dots {
	position: absolute;
	right: 0;
	top: 0;
}

.owl-carousel .owl-dots {
	display: flex;
	flex-direction: column;
	padding-top: 1rem;
	padding-right: 0.5rem;
}

.owl-carousel .owl-dots button {
	margin-bottom: 0.7rem;
}

.owl-carousel .owl-dots button span {
	background: white;
	display: block;
	border-radius: 50%;
	transition: 0.4s ease;
}

.owl-carousel .owl-dots button span:hover {
	transition: 0.4s ease;
}

.owl-carousel .owl-dots button.active span {
	opacity: 1;
	transition: 0.4s ease;
}

.owl-carousel .owl-nav button span {
	display: flex;
	height: 1.5rem;
	width: 1rem;
	justify-content: center;
	align-items: center;
	transition: 0.4s ease;
}

.owl-carousel .owl-nav button span:hover {
	transition: 0.4s ease;
}

.owl-carousel .owl-nav button span {
	color: var(--color-g1);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.028' height='34.601' viewBox='0 0 18.028 34.601'%3E%3Cg transform='translate(0 0)'%3E%3Cpath d='M0,0V17.3H18.028Z' fill='%23b50069'/%3E%3Cpath d='M0,69.82v17.3l18.028-17.3Z' transform='translate(0 -52.519)' fill='%23d8006b'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center right;
}

.items_carousel .owl-nav button {
	position: absolute;
	top: 50%;
	margin-top: -0.7rem;
}

.items_carousel .owl-prev {
	left:-1.5rem;
	transform: rotate(180deg);
}

.items_carousel .owl-next {
	right:-1.5rem;
}

.items_carousel_cs2 .wrapper {
	padding: 0 2rem;
}

.items_carousel_cs2 .owl-nav button span {
	height: 2rem;
	width: 2.2rem;
}

.type-b4u .items_carousel_cs2 .owl-nav button span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55.319' height='53.087' viewBox='0 0 55.319 53.087'%3E%3Cpath d='M72.753,0V26.544h27.66Z' transform='translate(-45.094 0)' fill='%23e02e13'/%3E%3Cpath d='M0,0V26.544H27.659Z' transform='translate(0 0)' fill='%23eb6531'/%3E%3Cpath d='M0,0,27.659,26.544V0Z' transform='translate(0 0)' fill='%23e85629'/%3E%3Cpath d='M0,96.363H27.659V69.82Z' transform='translate(0 -43.276)' fill='%23ef7841'/%3E%3Cpath d='M72.753,69.82V96.363l27.66-26.543Z' transform='translate(-45.094 -43.276)' fill='%23e74f26'/%3E%3Cpath d='M0,69.82V96.363L27.659,69.82Z' transform='translate(0 -43.276)' fill='%23f79545'/%3E%3C/svg%3E");
}

.items_carousel_cs2 .owl-prev {
	left: -3rem;
}

.items_carousel_cs2 .owl-next {
	right: -3rem;
}


/* Accordion */
.accordion_box .item {
	padding: 0.5rem 0;
	background: white;
	border-bottom: 2px solid;
}

.accordion_box .item:last-child {
	border-bottom: none;
}

.accordion_box .content {
	display: none;
	padding: 2rem 0 0;
	overflow: hidden;
	background: #fff;
}

.accordion_box .title {
	background: #fff;
	/*! padding: 1rem 2rem; */
	transition: all .2s linear 0;
	user-select: none;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.accordion_box .title h2 {
	margin-bottom: 0;
	margin-right: auto;
	padding-right: 15%;
	text-transform: none;
	font-family: 'DMSans-Regular',arial,sans-serif;
	font-size: 1rem;
}

.accordion_box .title:after {
	font-family: 'uniwp';
	content: "\ea0a";
	border: 0;
	border-radius: 50%;
	min-height: 2.3rem;
	min-width: 2.3rem;
	display: flex;
	transform: rotate(-180deg);
	justify-content: center;
	align-items: center;
	font-size: 0.6rem;
}

.accordion_box .active_item:after {
	content: "\ea0b";
}

/* Slider */
.slider {
}

.slider .container {
	display: flex;
	flex-direction: column;
	justify-content: space-around !important;
}

.slider .item .wrapper {
}

.slider .item {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
	display: flex;
	color: #fff;
}

/* .slider .item:after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
} */

.slider .owl-dots {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 1rem;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.slider .owl-dots button {
	outline: 0 !important;
	border: 4px solid #fff !important;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: white !important;
}

.slider .owl-dots span {
	background: #fff;
	height: 100%;
	width: 100%;
	display: block;
	border-radius: 50%;
}

.slider .owl-dots .active span {
	background: #EA602F;
}

.slider .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.slider .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	outline: 0 !important;
}

.slider .owl-nav .owl-prev {
	left: 1.5rem;
}

.slider .owl-nav .owl-next {
	right: 1.5rem;
}


/* Gallery  */
.gallery_simple, .gallery_body {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-column-gap: 0.7rem;
	grid-row-gap: 3.5rem;
}

.gallery:after {
    display: block;
    content: "";
    clear: both;
}

.gallery-icon img {
	border: none!important;
}

/* Tabs & gallery */
.tabs_box {}

.tabs_nav, .gallery_nav {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}

.tabs_nav li, .gallery_nav li {
	font-family: 'Roboto-SemiBold',arial,sans-serif;
	font-size: 1.4rem;
	margin: 0 0.6rem;
	color: var(--color-g1);
	line-height: 1.3;
	cursor: pointer;
	text-transform: uppercase;
	padding: 1rem 2rem;
	border: 2px solid var(--color-g1);
	transition: 0.4s ease;
}

.tabs_nav li:hover, .gallery_nav li:hover {
	color: white;
	background: var(--color-g1);
	border: 2px solid var(--color-g1);
	transition: 0.4s ease;
}

.tabs_nav li.active, .gallery_nav li.active {
	color: white;
	background: var(--color-g1);
	transition: 0.4s ease;
}

/* .tabs_nav li:after, .gallery_nav li:after {
	content: '';
	width: 100%;
	height: 3px;
	display: block;
	transition: 0.4s ease;
	margin-top: 0.5rem;
}

.tabs_nav li.active:after,
.tabs_nav li:hover:after,
.gallery_nav li.active:after,
.gallery_nav li:hover:after  {
	background: var(--color-g1);
	transition: 0.4s ease;
} */

.tabs_box .tabs_body .content {
	display: none;
}

.tabs_box .tabs_body .active {
	display: block !important;
}

.tabs_nav li {
	cursor: pointer;
}

/* Social */
/* .social {
	display: flex;
	align-content: center;
	align-items: center;
	line-height: 1.2;
	list-style: none;
	padding: 0;
}

.social a:hover {
	text-decoration: none;
}

.social i {
	margin-right: 1rem;
	font-size: 1rem;
}

.social em {
	display: none;
} */


/* Footer */



/* Fancybox */
 a[data-fancybox] img {
  cursor: zoom-in;
}

.fancybox-zoomIn {
  animation: 0.25s ease both fancybox-zoomIn;
}

.fancybox-zoomOut {
  animation: 0.15s ease both fancybox-zoomOut;
}

@keyframes fancybox-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fancybox-zoomOut {
  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* icon text */
.icon_text {
	display: flex;
}

.icon_text .text {
	padding-left: 0.5rem;
}

.icon_text i {
	padding-top: 0.1%;
}

/* Classes */
.iconbox_left {
	margin-bottom: 1rem;
}

.iconbox_left .col {
	display: flex;
}

.iconbox_left .icon {
	padding-right: 1rem;
	width: 2.5rem;
	font-size: 1.2rem;
}

.iconbox_left p:last-child {
	margin: 0;
}

/* Cookie Notice */
.cn-text-container {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37.468' height='36.012' viewBox='0 0 37.468 36.012'%3E%3Cpath d='M16.1-.848A18.012,18.012,0,0,1,.12-20.667,18.017,18.017,0,0,1,19.944-36.653a19.126,19.126,0,0,1,2.508.449l1.192.3-.012,1.228A14.025,14.025,0,0,0,34.775-20.861l1.2.249.043,1.224a18.594,18.594,0,0,1-.092,2.555A18.015,18.015,0,0,1,16.1-.848ZM32.826-17.159l.034-.975-.186-.047a17.155,17.155,0,0,1-12.1-15.01l-.007-.191-.956-.172A14.9,14.9,0,0,0,3.219-20.334,14.9,14.9,0,0,0,16.435-3.947,14.9,14.9,0,0,0,32.826-17.159ZM20.014-8.1a1.445,1.445,0,0,1-1.281-1.587,1.445,1.445,0,0,1,1.587-1.281A1.446,1.446,0,0,1,21.6-9.385,1.444,1.444,0,0,1,20.014-8.1Zm-8.3-2.884a1.208,1.208,0,0,1-1.07-1.326,1.209,1.209,0,0,1,1.327-1.07,1.209,1.209,0,0,1,1.07,1.327A1.208,1.208,0,0,1,11.71-10.989Zm15.548-1.866a1.945,1.945,0,0,1-1.724-2.136,1.945,1.945,0,0,1,2.138-1.724A1.945,1.945,0,0,1,29.4-14.577,1.945,1.945,0,0,1,27.258-12.855ZM19.209-18.6a1.291,1.291,0,0,1-1.144-1.418,1.29,1.29,0,0,1,1.418-1.145,1.292,1.292,0,0,1,1.145,1.419A1.293,1.293,0,0,1,19.209-18.6Zm-9.97,0a1.944,1.944,0,0,1-1.724-2.137,1.945,1.945,0,0,1,2.138-1.723,1.943,1.943,0,0,1,1.722,2.137A1.944,1.944,0,0,1,9.239-18.609Zm6.736-8.065a1.791,1.791,0,0,1-1.587-1.968,1.791,1.791,0,0,1,1.968-1.587,1.793,1.793,0,0,1,1.588,1.968A1.792,1.792,0,0,1,15.975-26.674Zm20.1-1.088a.709.709,0,0,1,.778-.627.709.709,0,0,1,.628.778.709.709,0,0,1-.778.627A.709.709,0,0,1,36.074-27.762Zm-4.311.771a1.79,1.79,0,0,1-1.587-1.967,1.789,1.789,0,0,1,1.968-1.587,1.789,1.789,0,0,1,1.586,1.968A1.788,1.788,0,0,1,31.763-26.991Zm-1.858-7.984a1.29,1.29,0,0,1,1.418-1.145A1.293,1.293,0,0,1,32.468-34.7a1.292,1.292,0,0,1-1.42,1.144A1.291,1.291,0,0,1,29.905-34.975Z' transform='translate(-0.016 36.756)' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-position: left center;
	background-repeat: no-repeat;
	padding: 0.5rem 0 0.5rem 3rem;
}


.cn-more-info {
	background-color: rgb(106, 106, 106) !important;
}


/* Animation */
@media (min-width: 1280px) {
	@-webkit-keyframes zoom {
	  from {
		background-size: 100% 100%;
	  }
	  50% {
		background-size: 110% 110%;
	  }
	  to {
		background-size: 100% 100%;
	  }
	}

	@keyframes zoom {
	  from {
		background-size: 100% 100%;
	  }
	  50% {
		background-size: 110% 110%;
	  }
	  to {
		background-size: 100% 100%;
	  }
	}
}

@keyframes spinIn {
  0% {
    opacity: 0;
    transform: rotate(180deg) scale(0);
  }
  20% {
    opacity: 1;
  }
  40% {
    transform: rotate(360deg) scale(1.15)
  }
  70% {
    transform: rotate(360deg) scale(.9)
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}


.page_head {
	position: relative;
}


/* .page_head:after {
	content: '';
	position: absolute;
	background: rgb(255,255,255);
	width: 100%;
	top: 0;
	bottom: 0;
	background-size: 35%;
} */

.page_head .wrapper {
	position: relative;
	z-index: 1;
	padding: 8% 0;
	text-align: center;
}

/* footer */

footer {
}


/* Custom box style */
.slider_cs1 {
	padding: 0;
}

.slider_cs1 .item {
	padding-top: 2rem;
}

.slider_cs1 .col_row .col:first-child .title {
	font-size: 1.8rem;
	text-transform: uppercase;
	line-height: 1.3;
}

.slider_cs1 .col_row .col:first-child {
	flex: 0 0 62%;
}

.slider_cs1 .form_box {
	background: white;
	padding: 0.2rem 1rem;
	border-radius: 0.3rem;
}

.slider_cs1 .wpcf7 span + br {
	display: none;
}

.slider_cs1 .col_row .col:first-child .wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.slider_cs1_1 .col_row .col:first-child .image {
	margin-top: auto;
}

.slider_cs1 .btn_2 {
	font-size: 0.6rem;
	padding: 0.4rem 1.5rem;
	margin-top: 0.5rem;
}

.slider_cs1 .col_row .col:last-child .title {
	text-align: center;
	color: white;
}

.slider_cs1_2 .item {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.slider_cs1_2 .owl-item .img_cs img {
	width: auto;
}

.slider_cs1_2 .col_row .col:first-child .wrapper {
	justify-content: center;
	padding-top: 10%;
}

.slider_cs1_2 .form_box {
	background: rgba(255, 255, 255, 0.36);
	padding: 0.2rem 1rem;
	border-radius: 0.3rem;
}

.slider_cs2 {
	padding: 0;
}

.slider_cs2 .container, .head_3 .container {
	display: flex;
	flex-direction: row;
	justify-content: normal!important;
}

.slider_cs2 .item .wrapper, .head_3 .wrapper {
	display: flex;
	flex-direction: column;
}

.slider_cs2 .item {
	padding: 2rem 0;
	height: 45rem;
}

.slider_cs2 .item .title p, .head_3 .title p {
	font-family: 'DMSans-Bold',arial,sans-serif;
	background: rgba(24, 68, 36, 0.51);
	display: table;
	padding: 0.2rem 0.7rem;
	margin-bottom: 0.3rem;
	border: 1px solid #707070;
	font-size: 1.8rem;
}

.slider_cs2 .item .content, .head_3 .content {
	background: rgba(22, 17, 16, 0.49);
	display: table;
	padding: 0.2rem 0.4rem;
	border: 1px solid #707070;
	margin-top: auto;
	font-size: 1.1rem;
	width: fit-content;
}


.items_list_cs1 .col {
	flex: 0 0 25%;
	margin-bottom: 0.8rem;
}

.items_list_cs1 .wrapper {
	background: var(--color-g2);
	padding: .7rem 1.2rem;
	height: 100%;
}

.items_list_cs1 .wrapper h3 {
	color: var(--color-main);
}

.items_list_cs1 .wrapper img {
	border-radius: 0.2rem;
	margin-bottom: 0.8rem;
}

.items_list_cs1 .wrapper strong {
	color: var(--color-g1);
	font-size: 0.7rem;
	line-height: 1.3;
}

.items_list_cs2 .wrapper .image {
	display: block;
	width: 100%;
	aspect-ratio: 6 / 4;
	overflow: hidden;
	border-radius: var(--border-radius);
	margin-bottom: 0.5rem;
}

.items_list_cs2 .wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0.2rem;
}


.items_list_cs1 .wrapper p {
	font-size: 0.6rem;
}

.items_list_cs2 .col {
	flex: 0 0 33.33%;
	margin-bottom: 1.5rem;
}

.items_list_cs2 .wrapper h3 {
	color: var(--color-main);
	font-size: 1rem;
}

.items_list_cs2 .wrapper p {
	font-size: 0.8rem;
}

.items_list_cs3 {}

.items_list_cs3 .col {
	flex: 0 0 50%;
	width: 50%;
	margin-bottom: 1.5rem;
}

.items_list_cs3 .col .wrapper {
	padding: 1rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--color-g1);
	display: flex;
	font-size: 0.7rem;
}

.type-b4u .items_list_cs3 .col .wrapper {
	border-color: var(--color-g4);
}

.items_list_cs3 .col .image {
	width: 4.2rem;
	flex: 0 0 4.2rem;
	padding-right: 1.5rem;
}

.items_list_cs3 .col .image img {
	width: 4rem;
}

.items_list_cs4 {}

.items_list_cs4 .col {
	flex: 0 0 33.33%;
	width: 33.33%;
	margin-bottom: 1.5rem;
}

.items_list_cs4 .wrapper {
	padding: 1.3rem;
	border-radius: var(--border-radius-lg);
	font-size: 0.7rem;
}

.items_list_cs4 .col:nth-child(2) .wrapper {
	background: var(--color-g1);
	color: white;
}

.items_list_cs4 .col:nth-child(2) img {
	filter: brightness(100);
}

.items_list_cs4 .image img {
	height: 2.3rem;
	margin-bottom: 1rem;
}

.items_list_cs4 h3 {
	font-size: 1rem;
}

.items_list_cs4.cs1 {
	padding-right: 33%;
}

.items_list_cs4.cs1 .col {
	flex: 0 0 50%;
	width: 50%;
	margin-bottom: 1.5rem;
}

.items_list_cs4.cs1 .col:nth-child(2) .wrapper {
	background: var(--color-g1);
}

.map {
	padding-top: 3rem;
}

.map #map {
	height: 20rem;
	border-radius: var(--border-radius-md);
	overflow: hidden;
}



footer .col_2 {
	flex: 0 0 30%;
}

footer .col_3 ul {
	padding-left: 0;
	list-style: none;
}

footer .col_5 .wrapper {
	padding-top: 2rem;
}

footer, footer .title, footer a {
	color: white;
}

footer .tel {
	font-family: 'DMSans-Bold',arial,sans-serif;
	font-size: 1.5rem;
}

footer .social_links {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.5rem;
	font-size: 1.2rem;
}

footer section {
	padding-top: 3rem;
	padding-bottom: 1rem;
}

footer .top_menu li a:after,
footer .top_menu li span:after {
	color: white !important;
}

footer .top_menu .sub-menu {
	bottom: 0;
	top: auto;
}

footer .top_menu .sub-menu a {
	color: var(--color-main);
}

.head_2, .head_1 {
	color: white;
}

.head_bg_rotator {
    position: relative;
    overflow: hidden;
}
.head_bg_rotator_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.head_bg_rotator_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.head_bg_rotator_slide.is_active {
    opacity: 1;
}
.head_bg_rotator .container {
    position: relative;
    z-index: 1;
}

.top_box_cs1, .head_1 {
	padding-bottom: 0;
}

.top_box_cs1 .img_cs1 img, .head_1 .img_cs1 img {
	margin-top: -5rem;
}

.top_box_cs1 h1, .head_1 h1, .head_2 .title, .head_1 .title {
	text-transform: uppercase;
}

.head_3 {
	color: white;
}

.head_3 .content {
	background: rgba(24, 68, 36, 0.51);
}

.head_3 .wrapper {
	height: 28rem;
}

.head_3.cs1 .wrapper {
	height: auto;
}

.head_3.cs1 .content {
	margin-top: 1rem;
}

.head .content + .title {
	padding-top: 1rem;
}



.box_cs1 .wrapper {
	display: flex;
	padding: 2rem;
	gap: 2rem;
	font-size: 80%;
	background-color: #f0eeee;
}

.box_cs1 .wrapper .image {
	flex: 0 0 30%;
	align-self: stretch;
	height: auto;
}

.box_cs2 h2 {
	color: var(--color-main);
}

.box_cs2 .col_cs .col:first-child  {
	flex: 0 0 auto;
}

.box_cs2 .col_cs .col:first-child {
	flex: 0 0 55%;
}

.box_cs2 .link_cs1 .box_cs {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-style: italic;
}

.box_cs2 .link_cs1 a {
	color: var(--color-g1);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.028' height='34.601' viewBox='0 0 18.028 34.601'%3E%3Cg transform='translate(0 0)'%3E%3Cpath d='M0,0V17.3H18.028Z' fill='%23b50069'/%3E%3Cpath d='M0,69.82v17.3l18.028-17.3Z' transform='translate(0 -52.519)' fill='%23d8006b'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 1.5rem;
}

/* New */
.box_cs4 .col {
	flex: 0 0 calc(33.333% - 1rem);
	width: calc(33.333% - 1rem);
	margin: 0.5rem;
	position: relative;
	transition: 0.2s ease;
	border-radius: var(--border-radius-md);
}

.box_cs4 .col:hover {
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.box_cs4 .wrapper {
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
}

.box_cs4 a {
	color: white;
	text-align: center;
	transition: all 0.3s ease;
}

.box_cs4 .col :hover {
	text-decoration: none;
}

.box_cs4 .text {
	margin-top: auto;
}

.box_cs5 .col_cs > .wrapper {
	display: flex;
	gap: 1.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 2px solid #D5CFCF;
	padding-top: 2rem;
}

.box_cs5 .col_cs .image {
	flex: 0 0 13rem;
	width: 13rem;
}
.box_cs5 .box_elements {
	display: flex;
	flex-wrap: wrap;
	padding-top: 1rem;
}

.box_cs5 .title {
	flex: 0 0 100%;
	width: 100%;
}

.box_cs5 .content {
	flex: 0 0 60%;
	width: 60%;
	padding-right: 1rem;
}

.box_cs5 .table {
	flex: 0 0 40%;
	width: 40%;
}

.box_cs5 .table table {
	margin-bottom: 0;
	width: 100%;
}

.box_cs5 .box_btn {
	flex: 0 0 100%;
	width: 100%;
	display: flex;
}

.items_carousel_cs1 .after_content {
	padding-top: 2rem;
}

.items_carousel_cs1 .owl-carousel .item {
	padding: 2rem;
	text-align: center;
	font-size: 80%;
}

.items_carousel_cs1 .owl-carousel .owl-item:nth-child(odd) .item {
	background: #CCE3FD;
}

.items_carousel_cs1 .owl-carousel .owl-item:nth-child(even) .item {
	background: #FDE8F2;
}

.items_carousel_cs2 .owl-carousel .image {
	padding-top: 100%;
	position: relative;
}

.items_carousel_cs2 .owl-carousel .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 80%;
	max-height: 80%;
}

.items_carousel_cs2 .owl-carousel {
	text-align: center;
}

.items_carousel_cs2 .owl-carousel h2 {
	margin-bottom: 0.5rem;
}

.items_carousel_cs2 table {
	font-size: 0.7rem;
	text-align: left;
	margin-bottom: 0;
	width: 100%;
}

.items_carousel_cs2 tr td:first-child {
	text-align: right;
}

.items_carousel_cs2 tr td:last-child, .box_elements .table_1 tr td:last-child {
	white-space: nowrap !important;
}

.price h2 {
	color:var(--color-main);
}

.price td {
	text-align: center;
}

.price th {
	padding: 0.5rem 2rem;
}

/* gallery */

.gallery_cs1 .gallery_simple {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
}

.gallery_cs1 .gallery_simple img {
	border-radius: var(--border-radius);
}

.gallery_cs2 .gallery_simple {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 3rem;
}

.gallery_cs2 .gallery_simple img {
	height: 3rem;
}



/* Sidebar */
.left_column .pl_main .container {
	padding-left: var(--padding-main)!important;
}

.left_column article .container {
	padding-left: 15rem;
}

.left_column article .container > .col_row {
	position: relative;
	z-index: 1;
}

.left_column article .left_nav .container,
.left_column .slider .container {
	padding-left: 1.5rem;
}

.left_nav {
	/* position: absolute; */
	width: 100%;
	/* bottom: 0; */
}

.left_nav .container {
	position: static;
}

.left_nav .content {
	position: absolute;
	top: 3.5rem;
	width: 12rem;
	bottom: 3rem;
	z-index: 1;
}

.left_nav .sidebar_nav {
	position: sticky;
	top: 3rem;
}

.left_nav .title, .left_nav h3 {
	color: rgb(255, 255, 255);
	font-size: 0.8rem;
	text-transform: uppercase;
	padding: 0.2rem 1.2rem;
	display: inline-block;
	margin-bottom: 1rem;
}

.type-b4u .left_nav .title, .type-b4u .left_nav h3 {
	background-color: var(--color-6);
}

.type-magazyn .left_nav .title, .type-magazyn .left_nav h3 {
	background-color: var(--color-g1);
}

.left_nav ul {
	padding: 0;
	list-style: none;
	font-size: 0.85rem;
}

.left_nav ul a.active {
	color: var(--color-g1);
}

.left_nav .current a {
	font-family: 'DMSans-Bold',arial,sans-serif;
}


.left_nav .current a {
	font-family: 'DMSans-Bold',arial,sans-serif;
	color: var(--color-g1);
}

/* modal */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 1.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s;
}

.close-modal {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 0.5rem;
	top: 0;
}

.close-modal:hover {
    color: #000;
}

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

/* footer .nav ul {
	margin: 0;
	padding: 1rem 0 1rem 0;
	list-style: none;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

footer .nav ul a, footer .nav ul span {
	font-size: 0.6rem;
	line-height: 1;
	transition: 0.5s ease;
	display: block;
	font-weight: bold;
	text-transform: uppercase;
} */



@media (max-width: 1600px) {
	.slider_cs2 .item {
		height: 35rem;
	}
}

@media (max-width: 1440px) {
}

@media (max-width: 1366px) {
	.left_nav .content {
		position: absolute;
		padding-right: 2rem;
		width: 8rem;
	}
	.left_nav ul {
		font-size: 0.7rem;
	}
	.left_column article .container {
		padding-left: 10rem;
	}
	.posts_list {
		grid-column-gap: 3rem;
	}
	.slider_cs2 .item .title p, .head_3 .title p {
		font-size: 1.4rem;
	}
}

@media (max-width: 1280px) {
	.container {
		padding-left: 0.8rem;
		padding-right: 0.8rem;
	}
	.col_row,
	.col_px_lg .col_row,
	.col_px_sm .col_row {
		margin-left: -0.8rem;
		margin-right: -0.8rem;
		width: auto;
	}
	.col_row > div,
	.col_px_lg .col_row > div {
		padding-left: 0.8rem;
		padding-right: 0.8rem;
	}
	.col_px_sm .col_row {
		margin-left: -1rem;
		margin-right: -1rem;
	}
	.non_stretched {
		width: calc(100% - 1.6rem);
		padding: 2rem;
	}
	.box_btn {
		display: block;
	}
	.box_btn a {
		margin-bottom: 0.7rem;
	}
	.owl-carousel .owl-dots {
		padding-right: 0;
	}
	.slider_cs1 .col_row .col:first-child .title {
		font-size: 1.5rem;
	}
	.slider .owl-dots {
		right: 0.7rem;
	}
	.left_column .items_list_cs2 .col {
		flex: 0 0 50%;
	}
	.box_cs1 .wrapper {
		flex-direction: column;
	}
	.box_cs1 .wrapper .image {
		height: 14rem;
		overflow: hidden;
		flex: auto;
	}
	.items_carousel .owl-nav button {
		position: static;
		margin-top: 1rem;
	}
	.slider_cs1 .col_row .col:first-child {
		flex: 0 0 50%;
	}
	.slider_cs1_2 .item {
		padding-right: 2rem;
	}
	.slider_cs2 .item {
		height: 30rem;
	}
	.head_3 .wrapper {
		height: 20rem;
	}
}


@media (max-width: 1279px) {
	.box_cs5 .col_cs .image {
		flex: 0 0 8rem;
		width: 8rem;
	}
	.box_cs5 .box_elements > div {
		flex: 0 0 100%;
		width: 100%;
	}
	.box_cs5 .box_btn {
		flex-direction: column;
	}
	.box_cs5 .box_btn > a {
		margin-right: 0;
	}
	.box_cs5 .content {
		padding-bottom: 1rem;
		padding-right: 0;
	}
}

@media (max-width: 1200px) {
	h3, .h3 {
		font-size: 1rem;
	}
	header .logo {
		display: block;
		padding-right: 1.3rem;
		margin-right: auto;
	}
	header .top {
		padding: 1.5rem 0;
	}
	header .logo img {
		position: relative;
		z-index: 9;
	}
	header .container {
		justify-content: space-between;
	}
	header ul li.separator {
		padding-left: 0.5rem;
		margin-left: 0.5rem;
	}
	.menu_btn {
		display: inline-block;
	}
	.top_menu {
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		background: white;
		top: 0;
		border: 0;
		padding: 7rem 1.5rem 1.5rem;
		margin: 0;
		overflow-y: scroll;
		bottom: 0;
		z-index: 2;
	}
	.top_menu li {
		display: block;
		margin-bottom: 0.3rem;
	}
	.top_menu li a, .top_menu li span {
		padding-bottom: 0.2rem;
		padding-top: 0.2rem;
		border-bottom: 4px solid transparent;
		text-align: center;
	}
	.h_scroll .top_menu li {
		padding: 0;
	}
	.top_menu li a, .top_menu li span {
		font-size: 0.6rem;
	}
	.top_menu li a:hover {
		transform: none;
	}
	.top_menu li.icon {
		padding: 1.5rem 0;
	}
	.top_menu .sub-menu {
		display: block;
		box-shadow: none;
		position: static;
		padding: 0.5rem;
	}
	.top_menu .current-menu-ancestor span {
		border-color: transparent;
	}
	.top_menu .sub-menu li a {
		border-bottom: 1px solid #fff;
	}
	.top_menu .sub-menu:before {
		content:none;
	}
	.top_menu .btn_cs {
		margin-left: 0 !important;
	}
	.slider .item .wrapper {
		width: auto;
	}
	.posts_list {
		grid-template-columns: repeat(2,1fr);
	}
	.posts_list img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
	.tabs_nav li, .gallery_nav li {
		font-size: 1.1rem;
		padding: 0.8rem 1.5rem;
	}
	.tabs_nav, .gallery_nav {
		margin-bottom: 3rem;
		margin-top: 3rem;
	}
	header .logo {
		max-width: 10rem;
	}
	header .top .right {
		gap: 0.7rem;
	}
	header .right .tel {
		font-size: 0.8rem;
	}
	header .social_links {
		display: none;
	}
	.top_menu li {
		padding: 0.3rem 0;
	}
	.top_menu .sub-menu {
		min-width: auto;
	}
}

@media (max-width: 1199px) {
	#searchform .box {
		width: 100%;
	}
	.items_list_cs1 .col, .items_list_cs2 .col {
		flex: 0 0 50%;
	}
	.items_list_cs3 .col {
		flex: 0 0 100%;
		width: 100%;
		margin-bottom: 1rem;
	}
}

@media (max-width: 992px) {
	main {
		overflow: hidden;
	}
	section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.py_lg, .pt_lg {
		padding-top: 4rem;
	}
	.py_lg, .pb_lg {
		padding-bottom: 4rem;
	}
	.py_md, .pt_md  {
		padding-top: 2rem;
	}
	.py_md, .pb_md  {
		padding-bottom: 2rem;
	}
	.pt_sm, .py_sm {
		padding-top: 1rem;
	}
	.pb_sm, .py_sm {
		padding-bottom: 1rem;
	}
	.col_center .col_row {
		align-items: start;
	}
	[class^="btn_"], [class*=" btn_"] {
		text-align: center;
	}
	/* #to_top {
		position: static;
		display: inline-block;
		margin-bottom: 3rem;
	} */
	.page_body .wrapper {
		padding: 0 10%;
	}
	.breadcrumb {
		display: block;
	}
	.breadcrumb span {
		display: block;
		padding: 0.3rem;
	}
	.breadcrumb span i {
		display: none;
	}
	.category_menu ul {
		flex-wrap: wrap;
		padding: 1rem 0;
	}
	.category_menu a {
		padding: 0.5rem 0.7rem;
		border: 1px solid;
		border-radius: 1rem;
		margin: 0.2rem 0.5rem 0.2rem 0;
	}
	.category_menu .current-cat a {
		background: white;
		color: var(--color-g1);
	}
	.category_menu .current-cat a:after {
		content:none;
	}
	.products_list {
		grid-template-columns: repeat(2,1fr);
	}
	.items_list_markers .col_row > .col {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
	.offer_list, .reference_list {
		grid-template-columns: repeat(2,1fr);
	}
	.gallery_simple, .gallery_body {
		grid-template-columns: repeat(2,1fr)!important;
	}
	footer .col_row > div {
		margin-bottom: 0;
	}
	.slider_cs1 .title {
		font-size: 1.2rem;
	}
	.top_box_cs1 .img_cs1 img, .head_1 .img_cs1 img {
		margin-top: 0;
	}
	.head_1 {
		padding-top: 3rem;
	}
}


@media (max-width: 768px) {
	h1, .h1 {
		font-size: 1.6rem;
		word-break: break-word;
	}
	h2,.h2 {
		font-size: 1.5rem;
		word-break: break-word;
	}
	.head_1 h1, .head_2 .title, .head_1 .title {
		word-break: break-word;
	}
	main {
		text-align: center;
	}
	section {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	.text_lg {
		font-size: 120%;
	}
	.title_center {
		margin-bottom: 1rem;
	}
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.col_row {
		display: block;
	}
	.col_row > div {
		margin-bottom: 1.5rem;
		width: 100% !important;
		max-width: 100% !important;
	}
	.col_row > *:last-child {
		margin-bottom: 0;
	}
	.btn_lg {
		font-size: 1.2rem;
		padding: 1rem 2rem;
	}
	.slider .item .wrapper {
		padding: 0 1rem;
	}
	.slider .item {
		padding: 10rem 1rem 2rem 1rem;
		height: 40rem;
	}
	.slider .item .wrapper {
		padding: 0;
	}
	.slider .owl-nav {
		display: none;
	}
	.slider .content {
		width: 100%;
	}
	.slider-carousel .owl-dots {
		top: auto;
		flex-direction: row;
		left: 0;
		bottom: 1.5rem;
	}
	.tabs_box .tabs {
		display: block;
	}
	.testimonials {
		margin-top: 0;
		padding-top: 2rem;
		padding-bottom: 5rem;
	}
	.testimonials .container {
		display: block;
	}
	.testimonials .before_content {
		max-width: 100%;
		padding-top: 0;
	}
	.testimonials .wrapper {
		max-width: 100%;
	}
	.testimonials .owl-nav {
		position: static;
		text-align: center;
	}
	.tabs_nav, .gallery_nav {
		flex-direction: column;
		margin-bottom: 1rem;
	}
	.tabs_nav li, .gallery_nav li {
		margin: 0 0 0.5rem;
	}
	.extra_menu span, header .adress {
		display: none !important;
	}
	.extra_menu .email i {
		display: block;
	}
	.contact_form .col_row .col {
		margin-bottom: 0;
	}
	.accordion_box {
		text-align: left;
	}
	footer .col_row {
		display: flex;
		flex-direction: column;
	}
	.posts_list_head {
		justify-content: center;
	}
	.layout_switcher {
		display: none;
	}
	.pagination {
		overflow-x: scroll;
	}
	.category_body {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.category_body  .pagination {
		margin-bottom: 0;
	}
	.slider_cs1 {
		text-align: center;
	}
	.slider_cs1 .item {
		padding: 5rem 1rem 4rem 1rem;
		height: auto;
	}
	.slider_cs1 .item .text {
		width: 100%;
	}
	.box_cs3 .col {
		margin: 0;
	}
	.box_cs3 .title {
		font-size: 1.8rem;
	}
	.col_cs2 .wrapper {
		flex-direction: column;
	}
	.accordion_cs1 .box_cs {
		float: none;
		padding: 0 0 1rem 0;
	}
	header .top .contact {
		padding-top: 0;
	}
	header .logo img {
		max-width: 7rem;
	}
	.title_cs {
		left: auto;
		transform: none;
		margin: 0;
		padding: 0 1rem 1rem;
	}
	.box_cs1 .title_cs {
		margin: 0;
	}
	.list_cs li {
		padding-left: 0;
	}
	.list_cs li:before {
		position: relative;
		display: block;
	}
	.slider_cs1 .col_row .col:first-child .title {
		font-size: 1.2rem;
	}
	.owl-carousel .owl-dots button {
		margin: 0.2rem;
	}
	.items_list_cs1 .wrapper {
		padding: 1.2rem;
	}
	footer {
		text-align: center;
	}
	footer .col_1 {
		padding-bottom: 2rem;
	}
	footer .social_links {
		justify-content: center;
	}
	header .right .tel strong {
		display: none;
	}
	header .right .tel i {
		display: block;
	}
	header .right .btn_1 {
		font-size: 0.5rem;
	}
	.left_column article .container {
		padding-left: 1.5rem;
	}
	.left_nav {
		position: relative;
	}
	.left_nav .content {
		position: static;
		top: 4rem;
		padding: 2rem 2rem 0 2rem;
		width: auto;
	}
	.price table {
		margin: 0 auto 1rem;
	}
	.box_cs2 .link_cs1 .box_cs {
		justify-content: center;
	}
	.items_list_cs2 .wrapper h3 br {
		display: none;
	}
	.items_list_cs3 .col .wrapper {
		padding: 1.5rem 1rem;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.items_list_cs4.cs1 {
		padding-right: 0;
	}
	.box_cs4 .col {
		margin: 1rem 0;
	}
	.box_cs5 .col_cs > .wrapper {
		flex-direction: column;
		padding-top: 1rem;
		padding-bottom: 1.5rem;
	}
	.box_cs5 .col_cs .image {
		flex: auto;
		width: auto;
	}
	.post_sidebar {
		padding-top: 2rem;
	}
	.slider_cs2 .item {
		padding: 3rem 1rem 4rem 1rem;
		height: 30rem;
	}
	.slider_cs2 .item .title p, .head_3 .title p {
		display: inline-block;
		font-size: 1.4rem;
	}
	.slider_cs2 .item .content, .head_3 .content {
		display: block;
		width: 100%;
	}
}

@media (max-width: 576px) {
	h3,.h3 {
		font-size: 1.2rem;
	}
	.extra_menu li + li {
		margin-left: 0.5rem;
	}
	.slider .content {
		padding: 1.5rem;
	}
	.gallery_simple, .gallery_body {
		grid-template-columns: repeat(1,1fr)!important;
	}
	.accordion_box .title:after {
		font-size: 1rem;
	}
	.accordion_box .item {
		padding: 1.5rem 2rem;
	}
	.accordion_box .title h2 {
		font-size: 1rem;
	}
	.owl-carousel .owl-dots button {
		margin-bottom: 0.3rem;
	}
	.posts_list {
		grid-template-columns: repeat(1,1fr);
		grid-row-gap: 1rem;
	}
	.page_body .wrapper {
		padding: 0;
	}
	footer ul.menu {
		flex-direction: column;
		align-items: center;
		margin-bottom: 1.7rem;
	}
	header .top .right {
		gap: 0.3rem;
	}
	header .right .btn_1 {
		font-size: 0.4rem;
		padding: 0.4rem;
	}
}


@media (max-width: 414px) {
	h1, .h1 {
		font-size: 1.3rem;
	}
	h2, .h2 {
		font-size: 1.2rem;
	}
	h3,.h3 {
		font-size: 1rem;
	}
	.slider_cs1 .item .text {
		font-size: 1.1rem;
	}
	header .logo {
		padding-right: 0.5rem;
	}
	.pagination {
		flex-direction: column;
		align-items: normal;
	}
	header .right .tel, header .right .btn_1 {
		display: none;
	}
	.slider_cs1 .item {
		padding: 3rem 0;
	}
	.slider_cs1 .col_row .col:first-child .title {
		font-size: 1rem;
	}
}

@media (max-width: 360px) {
}