/*
Theme Name: webkapitan ACF Builder - excellent solution for developers
Author: webkapitan.pl
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webkapitan 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: https://webkapitan.pl/
*/

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

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

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

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

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



html {
    font-size: 20px;
}

body {
    font-family: 'Montserrat',arial,sans-serif;
	line-height: 1.5;
	font-weight: 300;
    color:var(--color-main);
}

main, footer {
	overflow: hidden;
}

p {
	margin-bottom: 1rem;
}

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

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

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

h1, .h1 {
	font-family: 'Montserrat',arial,sans-serif;
	font-size: 4.3rem;
	line-height: 1.3;
	font-weight: 800;
	margin-bottom: 1.8rem;
}

h2, .h2 {
	font-family: 'Montserrat',arial,sans-serif;
	font-size: 2.4rem;
	line-height: 1.3;
	font-weight: 800;
	margin-bottom: 1.8rem;
}

h3,.h3 {
	font-family: 'Montserrat',arial,sans-serif;
	font-size: 2rem;
	line-height: 1.3;
	font-weight: 800;
}

h4,h5,.h4,.h5 {
	font-family: 'Montserrat',arial,sans-serif;
	font-size: 1.2rem;
	line-height: 1.3;
	font-weight: 800;
}

.title_center {
	display: inline-block;
	margin: 0 auto 2rem;
}

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

b, strong {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 800;
}

.text_light, h1 .text_light, .h1 .text_light, h2 .text_light, .h2 .text_light {
    font-family: 'Montserrat',arial,sans-serif;
	font-weight: 300;
}

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

.text_md {
	font-size: 115%;
}

.text_lg {
	font-size: 130%;
}

.uppercase {
	text-transform: uppercase;
}

.text_center {
   text-align: center;
}

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

.nowrap {
	white-space: nowrap;
}

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

[class^="list_cs"] li, [class*=" list_cs"] li {
	padding: 0 0 0.7rem 1.5rem;
	position: relative;
}

[class^="list_cs"] li:before, [class*=" list_cs"] li:before {
	font-family: 'webkapitan';
	content: "\e021";
	position: absolute;
	margin-right: 0;
	left: 0rem;
	color: var(--color-1);
}

[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-1);
	text-decoration:none;
}

ol {
	padding-left: 1.3rem;
	margin-bottom: 0;
}

ol li {
	padding: 0 0 1.2rem 0.5rem;
}

.text ul {
	padding: 0 0 0 1rem;
}


hr {
	border: 1px solid #DDDDDD;
}

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

img.alignright {
	float: right;
}

.round img {
	border-radius: 3rem;
}

/* .title + * {
	padding-top: 2rem;
} */

.title_bgr {
  position: relative;
  z-index: 1;
}

.title_bgr::before {
  content: attr(data-bg);
  position: absolute;
  left: -3rem;
  top: -5rem;
  font-size: 7rem;
  font-weight: 900;
  color: var(--color-main);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: -1;
  line-height: 1;
  transition: opacity 0.12s ease, transform 0.8s ease;
}

/* Pokazywanie tła — bez animacji pulsowania */
.title_bgr.visible::before {
  opacity: 0.08;
  transform: scale(1);
}

/* === Animacje === */

/* Animacja dla NIE-centrowanych nagłówków */
.title.title_bgr:not(.text_center)::before {
  animation: pulseBg 12s ease-in-out infinite;
}

/* Animacja dla centrowanych nagłówków — z zachowaniem centrowania */
.text_center.title_bgr::before {
  left: 50%;
  /* transform zostanie nadpisany przez animację, ale podajemy go dla spójności */
  transform: translateX(-50%) scale(1);
  animation: pulseBgCentered 12s ease-in-out infinite;
}

/* --- Keyframes --- */

@keyframes pulseBg {
  0%   { opacity: 0.02; transform: scale(1); }
  50%  { opacity: 0.04; transform: scale(1.2); }
  100% { opacity: 0.02; transform: scale(1); }
}

@keyframes pulseBgCentered {
  0%   { opacity: 0.02; transform: translateX(-50%) scale(1); }
  50%  { opacity: 0.04; transform: translateX(-50%) scale(1.2); }
  100% { opacity: 0.02; transform: translateX(-50%) scale(1); }
}



/* table */
table {
	border-collapse: collapse;
	width: 100%;
}

table td, table th {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}

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


/* Main grid */
.container, .full_width .col_container .wrapper {
	max-width: 1350px;
	width: 95%;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

section {
	padding-top: 8rem;
	padding-bottom: 8rem;
	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% - 3rem);
}

.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% + 4rem);
	margin-left: -2rem;
	margin-right: -2rem;
}

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

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

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

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

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

.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: 2rem;
	padding-bottom: 2rem;
}

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

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

.p_0 {
	padding:0;
}

.pt_0 {
	padding-top: 0;
}

.pb_0 {
	padding-bottom: 0;
}

.pt_sm {
	padding-top: 2rem;
}

.pt_md {
	padding-top: 10rem;
}

.pt_lg {
	padding-top: 12rem;
}

.pb_sm {
	padding-bottom: 2rem;
}

.pb_md {
	padding-bottom: 10rem;
}

.pb_lg {
	padding-bottom: 12rem;
}

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

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

.text h2, .text h3 {
	margin-bottom: 1.8rem;
}

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

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

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

.video_bgr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video_bgr video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

.video_bgr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -2;
}


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

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

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

/* Btn */
[class^="btn_"], [class*=" btn_"] {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 700;
	padding: 0.8rem 1.8rem;
	border: 1px solid;
	border-radius: 1rem;
	line-height: 1.3;
	text-align: center;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	transition: 0.4s ease;
	font-size: 1rem;
	text-transform: uppercase;
	gap: 0.3rem;
}

[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_"] i, [class*=" btn_"] i {
	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: 1.2rem 2.4rem;
}

.btn_md {
	font-size: 1.3rem;
	padding: 1rem 2.4rem;
}

.btn_sm {
	padding: 0.8rem 1.5rem;
	font-size: 0.9rem;
}

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

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

.btn_1:hover i {
	transform: translate(-0.2rem, 0.2rem);
	display: block;
}

.btn_2 {
	color: var(--color-main)!important;
	background: white;
	border-color: white;
}

.btn_2:hover, .btn_2:focus {
	background: transparent;
	color: white!important;
	border-color: white;
}

.btn_3 {
	background: transparent;
	color: var(--color-1);
	border-color: var(--color-1);
}

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

.btn_4 {
	color: white;
	background: var(--color-1);
	border-color: var(--color-1);
}

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

.dark .btn_1 {
	color: white;
}

.box_btn {
	padding-top: 1.5rem;
}

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

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

.btn_round_0_1 {
	border-radius: 0 1.2rem 0 1.2rem;
}

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

.btn_1 .icon_arrow:before {
	transform: rotate(135deg);
	display: block;
	transition: 0.4s ease;
}

.btn_1:hover .icon_arrow:before {
	color: var(--color-1);
}



/* 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 white;
	width: 100%;
	transition: 0.4s ease;
}

.dark .form_control {
	color:white;
	background: transparent;
}

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-1);
    font-family: 'Montserrat-Regular',arial,sans-serif;
}

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

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

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

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

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

::-webkit-input-placeholder {color:white!important;}
::-moz-placeholder {color:white!important; opacity: 1;}
:-moz-placeholder {color:white!important; opacity: 1;}
:-ms-input-placeholder {color:white!important;}

.wpcf7-acceptance input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 1rem;
    height: 1rem;
    border: 1px solid white;
    border-radius: 0.3rem;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    background: transparent;
}

.wpcf7-acceptance input[type="checkbox"]:checked::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;

    background-color: var(--color-1);
    border-radius: 0.7rem;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wpcf7-acceptance label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    color: #fff;
}

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

.wpcf7-not-valid-tip {
	font-size: 0.7rem;
	padding-top: 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: 1.3rem;
	display: block;
}


/* Header */
header {
	background: transparent;
	position: fixed;
	top: 0;
	z-index: 11;
	transition: 0.4s ease;
	width: 100%;
	padding: 1rem 0;
}

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

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

/* header .logo img {
	transition: 0.4s ease;
} */

header .right {
	display: flex;
	align-items: center;
	margin-left: auto;
	flex-direction: column;
}

header a i {
	color: #cccccc;
	font-size: 1.6rem;
	transition: 0.4s ease;
}

header a:hover i {
	color: var(--color-1);
	transition: 0.4s ease;
}

header .logo img {
  transform-origin: 50% 50%;
  transform: rotate(0deg); 
  display: block; 
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

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

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

/* Nav */
.top_menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	width: 100%;
	justify-content: end;
	align-items: center;
}

.top_menu li {
	position: relative;
	padding: 0 0.6rem;
	transition: 0.4s ease;
}

.top_menu li a, .top_menu li span {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	text-transform: uppercase;
	line-height: 1;
	transition: 0.5s ease;
	display: block;
	color: white;
}

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

.top_menu > li.menu-item  > a {
	padding: 0.5rem 0;
}

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

}

.top_menu .menu-item-has-children > a:after {
	font-family: 'webkapitan';
	content: "\e031";
	display: inline-block;
	vertical-align: middle;
	font-size: 0.3rem;
	margin-left: 0.5rem;
	color: white;
}

.top_menu .menu-item-has-children > a:hover:after {
	animation: rubberScaleBig 0.45s ease-out;
}

.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 {
	/* color:var(--color-1); */
}

.top_menu li.menu-item-object-custom a {
}

.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: var(--color-1);
	padding: 1rem;
	top: 100%;
	border-radius: 0.5rem;
	box-shadow: 2rem 2rem 2rem rgba(0, 0, 0, 0.13);
	min-width: 12rem;
}

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

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

.top_menu .sub-menu a {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	background: transparent;
	position: relative;
	padding: 0.3rem 0;
	font-size: 0.6rem;
	border-bottom-width: 0;
	color: white;
}

.top_menu .sub-menu .current-menu-item a {
	font-weight: 700;
}


.top_menu .anchor a {
	color: white;
}

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

.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;
	border: none;
}

.menu_btn span {
	background: white;
	display: block;
	height: 1px;
	position: relative;
	transition: background .2s ease-out;
	width: 1.7rem;
}

.menu_btn span:before, .menu_btn span:after {
	background: white;
	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 {
	background: var(--color-main);
	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 {
	color: #fff;
	font-size: 0.9rem;
}

.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: 0.5rem;
}

.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: 9rem 0 8rem;
	color: white;
	background-position: center center !important;
	text-align: center;
}

.page_head h1, .page_head .h1 {
	margin-bottom: 1rem;
}

.single-post .page_head h1 {
	font-size: 2.5rem;
}

.page_head .text {
	padding: 0 15%;
	font-size: 130%;
}

.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;
}


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

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

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

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

.category_body {
	padding-top: 5rem;
	padding-bottom: 6rem;
}


.category_description {
	padding-bottom: 3rem;
}

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

.category_menu a {
	font-family: 'Montserrat',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-1);
	display: block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 50%) rotate(45deg);
}

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

/* .breadcrumb, .breadcrumb a {
	color: white;
} */

.breadcrumb span i {
	display: block;
	font-size: 0.4rem;
	color: var(--color-1);
	margin: 0 0.5rem;
}

.pagination {
	list-style: none;
	padding: 2rem 0 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	flex-wrap: wrap;
}

.pagination span, .pagination a {
	padding: 0.4rem 0.5rem;
	border-radius: 1.5rem;
	min-width: 2.5rem;
	display: inline-block;
	text-align: center;
	line-height: 1.2;
	background: var(--color-main);
	color: white;
	font-size: 0.7rem;
	font-weight: 700;
}

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

.pagination .current {
	background: var(--color-1);
	color: white;
	font-family: 'Montserrat',arial,sans-serif;
	padding-left: 2rem;
	padding-right: 2rem;
}

.pagination i {
	color: #D0D0D0;
	font-size: 1.3rem;
}

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

.posts_list .body .date {
	color: #646464;
	margin-bottom: 0.5rem;
	padding-top: 0.5rem;
}

.posts_list .item {
	border-radius: 2.5rem 0 2.5rem 0;
	overflow: hidden;
	background: white;
	display: flex;
	flex-direction: column;
}

.posts_list .item a {

}

.posts_list a:hover {

}

.posts_list .image {
	aspect-ratio: 10 / 8;
	overflow: hidden;
	margin-bottom: 1rem;
	position: relative;
}

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

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

.posts_list .title {
	text-transform: none;
	font-size: 1rem;
	margin-bottom: 0.5rem;
	font-family: 'Montserrat',arial,sans-serif;
}

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

.posts_list .date {
	color: #8F8F8F;
	font-size: 80%;
}

.posts_list .image {
	overflow: hidden;
}

.posts_list .post_link {
	padding-bottom: 1rem;
	display: block;
}

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

/* .posts_list img {
	transition: transform .2s;
}

.posts_list img:hover {
	transform: scale(1.1);
} */

article.post .container {
	max-width: 1000px;
}

.post .head .wrapper {
	color: white;
}

.post .head .excerpt {
	padding-top: 1.5rem;
}

.post .head .meta {
	display: flex;
	gap: 1.2rem;
	padding-top: 1rem;
	border-top: 1px solid;
	margin-top: 2rem;
	font-size: 0.8rem;
}

.post .head .meta a {
	color: white;
	text-decoration: underline;
}

.post .head {
	position: relative;
	padding-bottom: 7rem;
}

.post .head::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient( to bottom, rgba(0, 38, 153, 0.9) 0%, rgba(0, 142, 255, 0.86) 50%, rgba(42, 6, 170, 0.57) 100% );
	z-index: 1;
}

.post .container {
	z-index: 2;
	position: relative;
}


.post .head .meta .reading_time {
	display: flex;
	gap: 0.5rem;
}

.post .content_wrapper .thumbnail {
	text-align: center;
	padding: 4rem 0;
}

.post .content_wrapper .thumbnail img {
	border-radius: 0.5rem;
	z-index: 1;
	position: relative;
}

.post .content_wrapper .thumbnail .content {
	padding: 0 12%;
}

.related_title {
	font-size: 1.3rem;
	padding-bottom: 1rem;
}

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

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

.owl-carousel .owl-dots button {
	outline: 0 !important;
	border: 8px solid transparent !important;
	height: 1.7rem;
	width: 1.7rem;
	border-radius: 50%;
	display: block;
	justify-content: center;
	align-items: center;
	margin: 0.2rem;
	line-height: 1;
	position: relative;
}

.owl-carousel .owl-dots button span {
	background: rgba(255, 255, 255, 0.60);
	height: 100%;
	width: 100%;
	display: block;
	border-radius: 50%;
	transition: 0.4s ease;
	line-height: 0;
	position: absolute;
	top: 0;
}

.owl-carousel .owl-dots .active span {
	background: #fff;
}

.owl-carousel .owl-dots button span:hover {
	background: rgba(255, 255, 255, 0.90);
	transition: 0.4s ease;
}

.owl-carousel .owl-dots button.active {
	border-color: white!important;
}

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

.owl-carousel .owl-nav button span {
	background: var(--color-1);
	display: flex;
	height: 3rem;
	width: 3rem;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	transition: 0.4s ease;
	box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.18);
}

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

.owl-carousel .owl-nav button span:after {
	font-family: 'webkapitan';
	color: white;
}

.owl-carousel .owl-nav button span:hover:after {
	color: var(--color-1);
}

.owl-carousel .owl-prev span:after {
	content: "<";
	transform: rotate(-180deg);
}

.owl-carousel .owl-next span:after {
	content: ">";
}


/* Accordion */
.accordion_box .item {
	margin-bottom: 1.5rem;
	border-radius: 2rem;
	background: white;
	border-radius: 2.5rem 0 2.5rem 0;
	margin: 0;
}

.accordion_box .content {
	display: none;
	padding: 2rem 0 0;
	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-size: 1.2rem;
}

.accordion_box .title::after {
    font-family: 'webkapitan';
    content: "\e905";
    border: 0;
    border-radius: 50%;
    min-height: 2.3rem;
    min-width: 2.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    transform: rotate(-180deg);
    transition: color .2s ease;
}


.accordion_box .title:hover::after {
    animation: rubberScale 0.45s ease-out;
}


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


.accordion_1 .before_content {
	padding-bottom: 2rem;
}

.accordion_1 .before_content .title {
	margin-bottom: 0.5rem;
}

.accordion_1 .item .title {
	position: relative;
	z-index: 1;
	color: white;
	padding: 3rem 0;
}

.accordion_1 .item .title h2 {
	font-size: 2.2rem;
}

.accordion_1 .item .title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%; 
    margin-left: -50vw; 
    width: 100vw;
    height: 100%;
    background: var(--color-1);
    z-index: -1;
    pointer-events: none; 
}

.accordion_1 .item:nth-child(3n+1) .title::before {
	background: var(--color-1);
}

.accordion_1 .item:nth-child(3n+2) .title::before {
	background: var(--color-main);
}

.accordion_1 .item:nth-child(3n+3) .title::before {
	background: var(--color-2);
}

.accordion_1 .item .col_row {
	padding: 3rem 0;
}

.accordion_1 .accordion_box .content:has(.box_full_width) {
	padding: 0;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.accordion_1 .item .col_row .col:first-child  {
	flex: 0 0 35%;
	width: 35%;
}


/* Slider */
.slider {
	background: black;
	position: relative;
}

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

.slider .item {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
	height: 45rem;
	padding: 10rem 4rem 5.5rem 4rem;
	display: flex;
	color: #fff;
}

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

.slider .item:after {
	background: rgba(3, 3, 3, 0.56);
} */

.slider .subtitle, .slider h2 {
	color: white;
}

.slider .container {
	z-index: 1;
}

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

.slider .owl-dots span {
}

.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: 1rem;
	grid-row-gap: 1rem;
}

.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: 'Montserrat-SemiBold',arial,sans-serif;
	font-size: 1.4rem;
	margin: 0 0.6rem;
	color: var(--color-1);
	line-height: 1.3;
	cursor: pointer;
	text-transform: uppercase;
	padding: 1rem 2rem;
	border: 2px solid var(--color-1);
	transition: 0.4s ease;
}

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

.tabs_nav li.active, .gallery_nav li.active {
	color: white;
	background: var(--color-1);
	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-1);
	transition: 0.4s ease;
} */

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

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

.tabs_nav li {
	cursor: pointer;
}

/* Video */
.video_wrapper { position: relative; }
.video_item { width: 100%; height: auto; }
.video_box {display: flex;}


.video_box video::-webkit-media-controls {
    display: none !important;
}

.video_btn_playpause {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 6rem;
    z-index: 10;
    border-radius: 0.5rem;
}

.video_box.playing .video_btn_playpause {
    display: none;
}


/* Counter */
.counter_number {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity .6s ease, transform .6s ease;
}

.counter_number[data-animated="1"] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.counter_number {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}




/* Social */
.social_links {
	padding: 0;
	list-style: none;
	display: flex;
	gap: 0.7rem;
}

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


/* Footer */
footer {
	background: var(--color-main);
}

footer section {
	padding: 0;
}

footer, footer a {
	color: white;
}

footer section .contact .wrapper {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	padding: 3rem 0;
}

footer section .contact strong {
	font-size: 1.6rem;
}

footer section .contact p {
	margin: 0;
}

footer .contact .social_links {
	padding: 0;
	list-style: none;
	display: flex;
	gap: 0.7rem;
	margin: 0.4rem 0 0 0;
}

footer .offer {
	position: relative;
	z-index: 1;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

footer .offer .wrapper:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background: var(--color-1);
	z-index: -1;
}

footer .title {
	padding-bottom: 1rem;
}

footer .offer ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

footer .offer ul li a {
	display: block;
	padding: 0 0.7rem 0.7rem 0;
}

footer .offer ul li a:hover {
	color: var(--color-2);
}

footer .bottom {
	padding: 3rem 0;
}

footer .bottom .container {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.footer_menu {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
	gap: 1.5rem;
	font-weight: 800;
}




/* 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;
}


/* Head */
.col_row.head > .col:first-child {
	flex: 0 0 70%;
	width: 70%;
}

.col_row.head > .col:last-child {
	text-align: right;
}


/* Custom box style */
/* Video bgr */

section:has(.video_bgr) {
  position: relative;
  overflow: hidden;
}

section > .video_bgr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

.slider_cs1 {
	padding: 0;
	position: relative;
	text-align: right;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
}


.slider_cs1 .owl-carousel {
    position: relative;
    z-index: 5;
    height: 100%;
}

.slider_cs1 h2.title {
	font-size: clamp(1rem, 8vw, 7rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.slider_cs1 .wrapper {
	padding-left: 30%;
}

.slider_cs1 span.title {
	font-size: 2.4rem;
	margin-bottom: 0.5rem;
	display: block;
}

.slider_cs1 .title + .text {
	padding-top: 0;
}

.slider_cs2 {
	padding: 0;
}

.slider_cs2 .owl-stage {
	display: flex;
}

.slider_cs2 .owl-item .item {
	height: 100%;
	padding: 10rem 0 10rem 0;
}

.slider_cs2 .owl-item .container {
	display: flex;
	align-items: end;
}

.slider_cs2 .owl-item .wrapper {
	flex: 0 0 50%;
	width: 50% !important;
	padding: 0 2rem 0 5rem;
}

.slider_cs2 .owl-item .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
}

.slider_cs2 .owl-item .icon {
	padding-top: 0.5rem;
	padding-bottom: 1.5rem;
	font-size: 0.8rem;
}

/* Animation slider_cs2 */
.slider_cs2 .slider-carousel .item,
.slider_cs1 .slider-carousel .item {
    opacity: 0.7;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider_cs2 .slider-carousel .owl-item.active .item,
.slider_cs1 .slider-carousel .owl-item.active .item {
    opacity: 1;
}

.slider_cs2 .owl-item .img {
	filter: brightness(1);
	background-size: cover;
	background-position: center center;
}

.slider_cs2 .slider-carousel .img {
    transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1),
                filter 2s ease;
    filter: brightness(0);
}

.slider_cs2 .slider-carousel .owl-item.active .img {
	filter: brightness(1);
}

.slider_cs2 .slider-carousel .wrapper,
.slider_cs1 .slider-carousel .wrapper {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slider_cs2 .slider-carousel .owl-item.active .wrapper,
.slider_cs1 .slider-carousel .owl-item.active .wrapper {
    transform: translateY(0);
    opacity: 1;
}

.slider_cs2 .owl-item .icon,
.slider_cs1 .owl-item .icon {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.slider_cs2 .slider-carousel .owl-item.active .icon,
.slider_cs1 .slider-carousel .owl-item.active .icon {
    transform: translateY(0);
    opacity: 1;
}

.slider_cs2 .slider-carousel .btn_1,
.slider_cs1 .slider-carousel .btn_1 {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.slider_cs2 .slider-carousel .owl-item.active .btn_1,
.slider_cs1 .slider-carousel .owl-item.active .btn_1 {
    transform: translateX(0);
    opacity: 1;
}

.counter_cs1 {
	padding: 5rem 0;
	background: var(--color-1);
	color: white;
	text-align: center;
}

.counter_cs1 .counter_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}

.counter_cs1 .counter_number {
	font-weight: 800;
	font-size: 4.2rem;
}

.counter_cs1 .counter_label {
	font-weight: 700;
}

.box_cs1 {
  background: linear-gradient(
    to right,
    var(--color-1) 0%,
    var(--color-1) 50%,
    var(--color-main) 50%,
    var(--color-main) 100%
  );
	padding: 0;
}


.box_cs1 > .container > .col_row > .col {
  position: relative;
}

.box_cs1 > .container > .col_row > .col:first-child .wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.box_cs1 > .container > .col_row > .col:first-child::after {
	content: '';
	position: absolute;
	top: 0;
	right: -2.95rem;
	width: 3rem;
	height: 100%;
	background: var(--color-1);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	pointer-events: none;
	z-index: 1;
}

.box_cs1 > .container > .col_row > .col:last-child .wrapper {
	padding: 7rem 0 7rem 5rem;
}

.box_cs1 h1, .box_cs1 h2 {
	font-size: 2.5rem;
	text-align: center;
}

.box_cs2 > .container > .col_row > .col:first-child .wrapper {
	padding: 0 10%;
}

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

.box_cs4 .wrapper {
	padding: 0 10%;
	text-align: center;
}

.box_cs5 .wrapper {
	padding: 0 15%;
	text-align: center;
}

.box_cs5 .title {
	padding-bottom: 3rem;
}

.box_cs5 .text {
	padding-bottom: 2rem;
}

.box_cs5 .text_lg {
	padding-bottom: 0;
	display: block;
}


.carousel_cs1 .before_content {
	padding-bottom: 4rem;
}

.carousel_cs1 .after_content {
	padding-top: 4rem;
}

.carousel_cs1 .wrapper {
	width: calc(100vw - ((100vw - 1450px) / 2));
}

.carousel_cs1 .image_carousel .item {
    aspect-ratio: 1 / 1;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    padding: 10px;
}

.carousel_cs1 .image_carousel .item img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    display: block;
}

.carousel_cs1 .owl-carousel .owl-dots {
	right: auto;
	left: -10%;
}

.gallery_simple_cs1, .gallery_simple_cs1 .container {
	padding: 0;
}

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

/* .gallery_simple_cs1 .gallery_simple .item  {
	border: 1px solid white;
} */

.gallery_simple_cs1 .gallery_simple .item img  {
	width: 100%;
}

.title_cs1:after {
	font-family: 'webkapitan' !important;
	content: "\e90c";
	transform: rotate(180deg);
	display: inline-block;
	font-size: 1rem;
	padding-right: 2rem;
}

.call_action_box {
	color: white;
	padding: 5rem 0;
}

.call_action_box .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.call_action_box .wrapper .box_btn {
	order: 2;
}

.call_action_box .wrapper .text {
	order: 1;
}

.call_action_box .wrapper .box_btn a {
	font-size: 4rem;
	color: white;
	padding: 3rem;
	line-height: 1;
	border: 5px solid;
	border-radius: 50%;
}

.call_action_box .wrapper .box_btn a:hover {
	animation: rubberScale 0.45s ease-out;
}

.call_action_box .wrapper .text .text_md {
	font-size: 2rem;
}

.call_action_box .wrapper .text .text_lg {
	font-size: clamp(1rem, 10vw, 8rem);
	line-height: 0.8;
}

.call_action_box .wrapper .box_btn i:before {
	transform: rotate(35deg);
}

.map {
	padding-top: 10rem;
	padding-bottom: 0;
}

.map .map_wrapper {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.accordion_1.cs1 {
	padding: 0;
}

.accordion_1.cs1 .content {
	padding: 4rem 0;
}




/* Animation */
@keyframes rubberScale {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.25); }
    55%  { transform: scale(0.92); }
    75%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes rubberScaleBig {
    0%   { transform: scale(1); }
    30%  { transform: scale(2); }
    55%  { transform: scale(0.92); }
    75%  { transform: scale(2.5); }
    100% { transform: scale(1); }
}




@media (min-width: 1921px) {
	.container, .full_width .col_container .wrapper {
		max-width: 1750px;
	}
	.slider_cs1 h2.title {
		font-size: clamp(1rem, 8vw, 20rem);
	}
}

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

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

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

@media (max-width: 1280px) {
	h1, .h1 {
		font-size: 2.6rem;
	}
	h2,.h2, .box_cs1 h1, .box_cs1 h2, .accordion_1 .item .title h2 {
		font-size: 1.8rem;
	}
	h3,.h3 {
		font-size: 1.3rem;
	}
	h4,h5,.h4,.h5 {
		font-size: 1.1rem;
	}
	.container {
		padding-left: 2rem;
		padding-right: 2rem;
		width: 100%;
	}
	.col_row,
	.col_px_lg .col_row,
	.col_px_sm .col_row {
		margin-left: -2rem;
		margin-right: -2rem;
		width: auto;
	}
	.col_row > div,
	.col_px_lg .col_row > div,
	.col_px_sm .col_row > div {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.col_px_sm .col_row {
		margin-left: -1rem;
		margin-right: -1rem;
	}
	.col_px_sm .col_row > div {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.non_stretched {
		width: calc(100% - 3rem);
		padding: 2rem;
	}
	.box_btn {
		display: block;
	}
	.box_btn a {
		margin-bottom: 0.7rem;
	}
	.slider .owl-dots {
		right: 0.5rem;
	}
	.top_menu li {
		padding: 0 0.4rem;
	}
	.top_menu li a, .top_menu li span {
		font-size: 0.65rem;
	}
	.top_menu .btn_2 {
		padding-left: 1.3rem;
		padding-right: 1.3rem;
	}
	.title_bgr::before {
		left: 0;
		font-size: 5.5rem;
	}
}


@media (max-width: 1200px) {
	header {
		padding: 1.3rem 0;
	}
	header .logo {
		display: block;
		padding-right: 1.3rem;
		margin-right: auto;
	}
	header .logo img {
		position: relative;
		z-index: 9;
	}
	header .right {
		background: transparent;
	}
	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: var(--color-main);
		top: 0;
		border: 0;
		padding: 7rem 1.5rem 1.5rem;
		margin: 0;
		overflow-y: scroll;
		bottom: 0;
	}
	.top_menu li {
		display: block;
		margin-bottom: 0.3rem;
	}
	.top_menu li a, .top_menu li span {
		padding-bottom: 0.5rem;
		padding-top: 0.5rem;
		text-align: center;
	}
	.h_scroll .top_menu li {
		padding: 0;
	}
	.top_menu li a, .top_menu li span {
		font-size: 0.9rem;
	}
	.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: 1rem;
	}
	.top_menu .current-menu-ancestor span {
		border-color: transparent;
	}
	.top_menu .sub-menu:before {
		content:none;
	}
	.top_menu .btn_cs {
		margin-left: 0 !important;
	}
	.slider .item .wrapper {
		width: auto;
	}
	.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;
	}
	.slider_cs2 .owl-item .wrapper {
		padding: 0 2rem 0 3rem;
	}
}

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

@media (max-width: 992px) {
	section {
		padding-top: 4rem;
		padding-bottom: 4rem;
		text-align: center;
	}
	.py_lg, .pt_lg {
		padding-top: 5rem;
	}
	.py_lg, .pb_lg {
		padding-bottom: 5rem;
	}
	.py_md, .pt_md  {
		padding-top: 4rem;
	}
	.py_md, .pb_md  {
		padding-bottom: 4rem;
	}
	.pt_sm, .py_sm {
		padding-top: 2rem;
	}
	.pb_sm, .py_sm {
		padding-bottom: 2rem;
	}
	.col_center .col_row {
		align-items: start;
	}
	[class^="btn_"], [class*=" btn_"] {
		padding: 1rem 1.7rem;
	}
	.page_body .wrapper {
		padding: 0 10%;
	}
	.breadcrumb {
		display: block;
		text-align: center;
	}
	.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-1);
	}
	.category_menu .current-cat a:after {
		content:none;
	}
	.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;
	}
	.slider_cs1 .wrapper {
		padding-left: 0;
	}
	footer section .contact .wrapper {
		justify-content: center;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	footer .offer {
		text-align: center;
	}
	footer .offer ul {
		justify-content: center;
	}
	footer .bottom .container {
		flex-direction: column;
		text-align: center;
	}
	.footer_menu {
		justify-content: center;
		text-align: center;
	}
	.counter_cs1 .counter_number {
		font-size: 3rem;
	}
	.carousel_cs1 .owl-carousel .owl-dots {
		display: none;
	}
}


@media (max-width: 768px) {
	h1, .h1 {
		font-size: 2.2rem;
	}
	h2,.h2, .box_cs1 h1, .box_cs1 h2, .slider_cs1 span.title {
		font-size: 1.6rem;
	}
	.title_center {
		margin-bottom: 1rem;
	}
	.container {
		max-width: 100% !important;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.col_row {
		display: block;
	}
	.col_row > div {
		margin-bottom: 2.5rem;
		width: 100% !important;
		max-width: 100% !important;
	}
	.col_row > *:last-child {
		margin-bottom: 0;
	}
	.btn_lg {
		font-size: 1.2rem;
		padding: 1rem 2rem;
	}
	.btn_md {
		font-size: 1.1rem;
		padding: 0.8rem 1.5rem;
	}
	.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;
	}
	.contact_form .col_row .col {
		margin-bottom: 0;
	}
	.accordion_box {
		text-align: left;
	}
	.pagination {
		overflow-x: scroll;
	}
	.category_body {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.category_body  .pagination {
		margin-bottom: 0;
	}
	section.advanced .cover {
		padding-top: 100%;
	}
	.posts_list {
		grid-template-columns: repeat(1,1fr);
	}
	.page_head {
		padding-bottom: 4rem;
	}
	.post .head {
		padding-top: 8rem;
	}
	.post .head .excerpt {
		padding-top: 0;
	}
	.post .head .meta {
		justify-content: center;
	}
	.box_cs1 {
		background: var(--color-main);
	}
	.box_cs1 .col_row .col:first-child {
		background: var(--color-1);
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.box_cs1 > .container > .col_row > .col:last-child .wrapper {
		padding: 2rem 0;
		text-align: center;
	}
	.title_bgr::before {
		font-size: 3.5rem;
		top: -2rem;
	}
	.accordion_1 {
		padding-top: 2.5rem;
	}
	.accordion_1 .before_content {
		text-align: center;
	}
	.accordion_1 .item .col_row {
		text-align: center;
	}
	.title.title_bgr:not(.text_center)::before {
		left: 50%;
		transform: translateX(-50%) scale(1);
		animation: pulseBgCentered 12s ease-in-out infinite;
	}
	.accordion_1 .item .title {
		padding: 2rem 0;
	}
	.accordion_1 .image img {
		max-width: 12rem;
	}
	.accordion_1 .item .title h2 {
		font-size: 1.2rem;
	}
	.accordion_box .title::after {
		font-size: 1.8rem;
	}
	.col_row.head > .col:last-child {
		text-align: left;
	}
	.carousel_cs1 .box_btn {
		padding: 0;
	}
	.carousel_cs1 .box_btn a, .col_row.head .box_btn a {
		padding: 0;
	}
	.col_row.head .box_btn {
		padding: 0 0 2rem;
	}
	.carousel_cs1 .before_content {
		padding-bottom: 1.5rem;
	}
	.carousel_cs1 .wrapper {
		width: 100%;
	}
	.gallery_simple, .gallery_body {
		grid-template-columns: repeat(1,1fr) !important;
	}
	.counter_cs1 .counter_wrapper {
		gap: 2rem;
		flex-direction: column;
	}
	.slider_cs1 .item {
		height: auto;
	}
	.slider_cs2 .owl-item .img {
		width: 100%;
		height: 25rem;
	}
	.slider_cs2 .owl-item .item {
		padding: 28rem 0 6rem 0;
	}
	.slider_cs2 .owl-item .wrapper {
		flex: 0 0 100%;
		width: 100% !important;
	}
	.map {
		padding-top: 4rem;
	}
}

@media (max-width: 576px) {
	.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: 0;
	}
	.accordion_box .title h2 {
		font-size: 1rem;
	}
	.owl-carousel .owl-dots button {
		margin-bottom: 0.3rem;
	}
	.owl-carousel .owl-dots button span {
		padding: 0.4rem;
	}
	.posts_list {
		grid-template-columns: repeat(1,1fr);
	}
	.page_body .wrapper {
		padding: 0;
	}
	.call_action_box .wrapper {
		flex-direction: column;
	}
	.title_bgr::before {
		font-size: 2rem;
		top: -2rem;
	}
	.footer_menu {
		gap: 1rem;
		flex-direction: column;
		margin-bottom: 2rem;
	}
	.title_bgr::before {
		top: -1rem;
	}
	.accordion_1.cs1 .content {
		padding: 4rem 0 0;
	}
	.category .container .container {
		padding: 0;
	}
}


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

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