/*
Theme Name: Webninja ACF Builder - excellent solution for developers
Author: newbazilik@gmail.com
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: mailto:newbazilik@gmail.com
*/

/* 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-1);
	border-bottom: 8px solid var(--color-1);
	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-1);
	border-right: 8px solid var(--color-1);
	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;
}


:root {
	--padding-left: 5rem;
	--padding-right: 5rem;
	--section-padding-left: 5.5rem;
	--section-padding-right: 5.5rem;
	--border-radius: 0.5rem;
}

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

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

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


html {
    font-size: 16px;
}

body {
    font-family: 'Montserrat',arial,sans-serif;
	font-weight: 500;
	line-height: 1.8;
    color:var(--color-main);
	padding-left: var(--padding-left);
	padding-right: var(--padding-right);
}

main, footer {
	overflow: hidden;
}

p {
	margin-bottom: 1.5rem;
}

a {
    color:var(--color-main);
	text-decoration:none;
}

a:hover {
    color:var(--color-1);
	text-decoration:underline;
}

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

h1, .h1 {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 800;
	font-size: 4.6rem;
	line-height: 1.2;
	margin-bottom: 2rem;
}

h2, .h2 {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 800;
	font-size: 3.4rem;
	line-height: 1.2;
	margin-bottom: 1.4rem;
}

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

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

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

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

.text_light {}

.text_medium {}

.text_sm, small {
	font-size: 85%;
}

.text_md {
	font-size: 110%;
}

.text_lg {
	font-size: 115%;
}

.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 1.2rem 1.5rem;
	line-height: 1.4;
	position: relative;
}

[class^="list_cs"] li:before, [class*=" list_cs"] li:before {
	font-family: 'webninja';
	content: "\e022";
	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;
}

.dark .list_cs li:before {
	color: white;
}


hr {
	border: 1px solid #DDDDDD;
}

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

img.alignright {
	float: right;
}

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

/* 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,
.category header .container {
	max-width: 1400px;
	width: 95%;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

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

section > .container > .col_row > .col > .wrapper {
	padding-left: var(--section-padding-left);
	padding-right: var(--section-padding-right);
}

.section_fixed_width {
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 3rem;
	padding-right: 3rem;
}

.section_fixed_width > .container > .col_row > .col > .wrapper {
	padding-left: 0;
	padding-right: 0;
}


.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: -1.5rem;
	margin-right: -1.5rem;
}

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

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

.pt_lg {
	padding-top: 7rem;
}

.pb_sm {
	padding-bottom: 2rem;
}

.pb_md {
	padding-bottom: 8rem;
}

.pb_lg {
	padding-bottom: 7rem;
}

.mt_sm {
	margin-top: 2rem;
}

.mt_md {
	margin-top: 4rem;
}

.mt_lg {
	margin-top: 6rem;
}

.mb_sm {
	margin-bottom: 2rem;
}

.mb_md {
	margin-bottom: 4rem;
}

.mb_lg {
	margin-bottom: 6rem;
}


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

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

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

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

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

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

.round {
	border-radius: var(--border-radius);
	overflow: hidden;
}


/* advanced */
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: 'Montserrat',arial,sans-serif;
	font-weight: 700;
	padding: 0.9rem 2rem;
	border: 1px solid;
	border-radius: var(--border-radius);
	line-height: 1.3;
	text-align: center;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	transition: all 0.3s ease;
}

[class^="btn_"]:hover, [class*=" btn_"]:hover {
	text-decoration:none;
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

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

[class^="btn_"]:hover:before, [class*=" btn_"]:hover:before {
}

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

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

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

.btn_1 {
    color: white;
    background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
    background-size: 200% 100%;
	border: none;
    transition: all 0.3s ease;
}

.btn_1:hover, .btn_1:focus {
    color: white;
	border: none;
	background-position: 100% 0;
	transition: all 0.3s ease;
}

.btn_2 {
	color: var(--color-1);
	border-color: white;
	background: white;
	transition: all 0.3s ease;
}

.btn_2:hover, .btn_2:focus {
	background: transparent;
	color: white;
	border-color: white;
	transition: all 0.3s ease;
}

.btn_3 {
	background: transparent;
	color: var(--color-1);
	border-color: var(--color-1);
	transition: all 0.3s ease;
}

.btn_3:hover, .btn_3:focus {
	background: var(--color-1);
	color: white;
	border-color: var(--color-1);
	transition: all 0.3s ease;
}

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

.box_btn {
	padding-top: 1.5rem;
}

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

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

.box_btn a i, button i {
	padding-left: 1rem;
	font-size: 0.7rem;
}

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

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

.form_control {
	padding: 0.7rem 1.5rem;
	border: none;
	background: #fff;
	width: 100%;
	transition: 0.4s ease;
	border-radius: var(--border-radius);
}

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: '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: #fff;
	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;
}

form a {
	text-decoration: underline;
}

.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: var(--border-radius);
	display: inline-block;
	min-width: 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	position: absolute;
	left: 0;
}

.checkbox input[type="checkbox"]:checked + span::before {
	font-family: 'webninja';
	content: "\e022";
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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


.dark .form_control {
	background: rgba(255, 255, 255, 0.30);
	color: white;
}

.dark .form_control:hover {
	background: rgba(255, 255, 255, 0.30);
}

.dark .checkbox input[type="checkbox"] + span:before {
	border: 1px solid transparent;
	background:rgba(255, 255, 255, 0.30);
}

.dark form a {
	color: white;
}


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


.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;
	font-size: 0.8rem;
	line-height: 1.3;
}

.box_send {
	position: relative;
}

.box_send #form-send {
	width: 100%;
}

.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: 1rem;
	display: block;
}

.checkbox .wpcf7-list-item-label {
	padding-left: 3.5rem;
	margin: 0;
	position: relative;
}

.wpcf7-list-item {
	display: block;
}

form .col p {
	margin-bottom: 0.5rem;
}



/* Header */
header {
	background: white;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: 0.4s ease;
	width: 100%;
	padding-left: var(--padding-left);
	padding-right: var(--padding-right);
}

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

header .container {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	padding: 0;
}

header .logo {}

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

/* scroll */
.h_scroll {
	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: 1.3rem;
	padding-top: 1.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.8rem;
	transition: 0.4s ease;
}

.top_menu li a, .top_menu li span {
	font-family: 'Montserrat',arial,sans-serif;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	transition: 0.5s ease;
	padding-bottom: 3rem;
	padding-top: 3rem;
	display: block;
	border-bottom: 5px solid transparent;
}

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

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

}

.top_menu .menu-item-has-children > a:after {
	font-family: 'webninja';
	content: "\e905";
	display: inline-block;
	vertical-align: middle;
	font-size: 0.3rem;
	margin-left: 0.5rem;
	color:var(--color-1);
}

.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 {
	border-image: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
	border-image-slice: 1;
}

.top_menu li.menu-item-object-custom a {
	border-color: transparent;
}

.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: 4.5rem;
	border-radius: 1rem;
	box-shadow: 2rem 2rem 2rem rgba(0, 0, 0, 0.13);
	min-width: 12rem;
}

.h_scroll .top_menu .sub-menu {
	top: 2.5rem;
}

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

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

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

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

.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 {
	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: 3rem 0 2rem;
	color: white;
	background-position: center 60% !important;
}

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

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

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


/* .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_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-1);
	display: block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 50%) rotate(45deg);
}

.category_body .top .post_thumbnail {
	padding-top: 55%;
	margin-bottom: 3rem;
	margin: 0;
	border-radius: 0;
}

.category_body .top .post_thumbnail img {
	border-radius: 0;
}

.category_body .top .item {
	background: var(--color-3);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.category_body .top .wrapper {
	padding: 3rem;
}

.category_body .top .excerpt {
	padding-bottom: 2rem;
}

.category_body .more {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 3rem;
	width: auto;
	margin: 0;
	padding-top: 2rem;
}

.category_body .more .post_thumbnail {
	padding-top: 55%;
	margin-bottom: 1rem;
	height: auto;
}

.category_body .more h2 {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

.category_body .head, .top_posts .head {
	padding-bottom: 0.5rem;
	font-size: 80%;
}

.category_body .more .excerpt {
	padding-bottom: 1.5rem;
	font-size: 90%;
}


#load-more-container {
	text-align: center;
	padding-top: 4rem;
}

#load-more-container button  {
	padding: 1rem 3rem;
}

#load-more-container button i,
.list_posts .item i,
.related_posts .item i,
.top_posts .item .btn_1 i {
	font-size: 0.7rem;
	padding-left: 0.5rem;
}

.list_posts .item .btn_1,
.related_posts .item .btn_1,
.top_posts .item .btn_1 {
	border-radius: 2rem;
	padding: 0.7rem 1.5rem;
}

.post_bottom_nav i {
	font-size: 0.7rem;
}

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

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

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

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

.pagination span, .pagination a {
	padding: 0.5rem 0.9rem ;
	border-radius: 50%;
}

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

.pagination .current {
	background: var(--color-2);
	color: #fff;
}

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


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

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

.header_post {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.header_post .container {
	display: flex;
	justify-content: space-between;
}

.header_post .logo {
	padding-right: 1rem;
}

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

.post_body .post_thumbnail {
	padding-top: 55%;
	margin-bottom: 3rem;
}

.post_box .head {
	font-size: 80%;
}

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

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

.related_posts .item {
	padding-bottom: 3rem;
}

.related_posts .post_thumbnail {
	padding-top: 55%;
	margin-bottom: 1.5rem;
}

.related_posts .title {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.related_posts .excerpt {
	margin-bottom: 1.5rem;
}


.top_posts .item {
	background: var(--color-3);
	border-radius: var(--border-radius);
	margin-bottom: 2rem;
	overflow: hidden;
}

.top_posts .post_thumbnail {
	padding-top: 60%;
	border-radius: 0;
}

.top_posts .post_thumbnail img {
	border-radius: 0;
}

.top_posts .wrapper {
	padding: 1.2rem 1.5rem 2rem 1.5rem;
}


/* Carousel  */
.owl-carousel {
}

.owl-carousel .owl-dots {
}

.owl-carousel .owl-dots {
	display: flex;
}

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

.owl-carousel .owl-dots button span {
	padding: 1.2rem;
	background: var(--color-1);
	opacity: 0.2;
	display: block;
	border-radius: 50%;
	transition: 0.4s ease;
}

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

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

.owl-carousel .owl-nav button span {
	background: white;
	display: flex;
	height: 3rem;
	width: 3rem;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	transition: 0.4s ease;
	box-shadow: 0.2rem 0.2rem 0.5rem 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: 'webninja';
}

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

.owl-carousel .owl-prev span:after {
	content: "\e032";
}

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

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

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

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

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

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

.accordion_box .title:after {
	font-family: 'webninja';
	content: "\e903";
	color: var(--color-2);
	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: 1.5rem;
}

.accordion_box .active_item:after {
	transform: rotate(0);
}

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

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

.slider .item .wrapper {
	width: 50%;
}

.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 {
	text-transform: uppercase;
	color: white;
}

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

.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: 2px solid #fff !important;
	height: 1.5rem;
	width: 1.5rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.3rem;
}

.slider .owl-dots span {
	background: transparent;
	height: 1rem;
	width: 1rem;
	display: block;
	border-radius: 50%;
}

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

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

/* 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 */
footer section {
}

footer .copyright {
}

footer .copyright a {
}


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

/* Custom box style */
body.home {
	background: transparent url("images/footer_bgr.svg") bottom right no-repeat scroll;
	background-size: 50%;
}

.checkmark,
.items_list_cs2 .custom_content .image:before,
.items_list_cs9 .image:before,
.box_cs4:before,
.box_cs5:before {
	font-family: 'webninja';
	content: "\e022";
	color: white;
	background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	border: 5px solid white;
}


.gradient_line,
.items_list_cs2 .custom_content .image::after,
.items_list_cs9 .image::after  {
	content: "";
	position: absolute;
	display: block;
	background: linear-gradient(360deg, var(--color-1) 0%, var(--color-2) 100%);
}


.page_head {
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.video_bgr video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

footer {
	padding-top: 5rem;
}

footer .advanced {
	position: relative;
	overflow: visible;
}

footer .advanced h2 {
	margin-bottom: .5rem;
}

footer .advanced .col_cs1 .wrapper {
	padding-left: 10rem !important;
}

footer .advanced .contact {
	padding-top: 1.5rem;
}

footer .advanced .list_cs li:before {
	color: white;
}

footer .col_cs1 .img_cs1 img {
	position: absolute;
	left: 0;
	bottom: 0;
}

footer .copyright {
	text-align: center;
	padding: 1rem 0 3rem;
	color: var(--color-4);
	font-size: 85%;
}

footer .copyright .heart {
	font-size: 1rem;
}

footer .copyright .heart, footer .copyright a {
	color: var(--color-1);
}

footer .copyright a {
	text-decoration: underline;
}

footer .col_cs1 .icon_text_block {
	display: flex;
}

footer .col_cs1 .icon_text_block i {
	flex: 0 0 1.5rem;
}

footer .col_cs1 .icon_text_block p {
	margin-bottom: 0;
}

.top_menu .btn_1 {
	padding: 0.8rem 1.5rem !important;
	border: none !important;
	margin-bottom: 8px;
}

.top_menu .icon a {
	padding: 0 !important;
}

.box_cs1 {
	padding-top: 8rem;
	padding-bottom: 20rem;
	position: relative;
	color: white;
}

.box_cs1_1 {
	padding-top: 8rem;
	padding-bottom: 15rem;
	position: relative;
	color: white;
	text-align: center;
}

.box_cs1 .wrapper {
	padding-right: 30%!important;
	padding-left: 0!important;
}

.box_cs1 .text {
	padding-right: 50%;
}

.box_cs2 .col_cs1,
.box_cs2_1 .col_cs1 {
	margin-top: -20%;
}

.box_cs2 .col_cs1 > .wrapper,
.box_cs2_1 .col_cs1 > .wrapper {
	background: white;
	padding-top: 5rem;
	border-radius: var(--border-radius);
}

.box_cs2 .col_cs1 > .wrapper {
	padding-bottom: 12rem;
}

.box_cs2_1 .col_cs1 > .wrapper {
	padding-bottom: 4rem;
}

.box_cs2 .col_cs2 {
	margin-top: -7rem;
}

.box_cs2_1 .col_cs2 {
	padding-top: 4rem;
}

.gallery_mini_cs1 {
	padding-bottom: 5rem;
}

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

.items_list_cs1 {
	padding-top: 0.5rem;
}

.items_list_cs1, .items_list_cs2 {
	display: flex;
	justify-content: space-between;
	text-align: center;
	gap: 2rem;
}

.items_list_cs1 .title, .items_list_cs2 .title {
	font-weight: 800;
	font-size: 1.4rem;
	line-height: 1.5;
}

.items_list_cs1 a {
	display: block;
	flex: 1;
	min-width: 0;
	padding: 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
}

.items_list_cs1 a:hover {
	border-color: var(--color-2);
	text-decoration: none;
	transform: translateY(-5px)!important;
	transition: all 0.3s ease!important;
}

.items_list_cs1 .image {
	padding-top: 7rem;
	position: relative;
}

.items_list_cs1 .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
}

.items_list_cs2 {
	padding-top: 3rem;
}

.items_list_cs2 .custom_content {
	flex: 1;
}

.items_list_cs2 .custom_content .image {
	padding-bottom: 2rem;
	width: 80%;
	margin: 0 auto 0.8rem;
	position: relative;
}

.items_list_cs2 .custom_content .image:before,
.items_list_cs9 .image:before  {
	position: absolute;
	left: 0rem;
	top: 0;
	z-index: 1;
}

.items_list_cs2 .custom_content .image:after,
.items_list_cs9 .image:after {
	content: "";
	position: absolute;
}

.items_list_cs2 .custom_content .description {
	color: var(--color-4);
	font-size: 85%;
	line-height: 1.7;
}

.items_list_cs2 .custom_content .image::after, .items_list_cs9 .image::after {
	content: "";
	width: 5px;
	height: 4.5rem;
	bottom: -2rem;
	left: 50%;
	transform: translateX(-50%);
}

.items_list_cs3 ul {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	width: auto;
	margin: 0;
	padding-top: 2rem;
	list-style: none;
	padding-left: 0;
}

.items_list_cs3 ul li {
	background: transparent url("images/icon_bullet.svg") left top no-repeat scroll;
	padding-left: 5.5rem;
}

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

.items_list_cs4 .list_cs li, .items_list_cs4_y .list_cs li {
	padding-left: 2.5rem;
}

.items_list_cs4 .list_cs li:before, .items_list_cs4_y .list_cs li:before {
	font-size: 1.5rem;
	top: -0.3rem;
}


.items_list_cs5 ul {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 3rem;
	list-style: none;
	padding:0;
	margin-bottom: 0;
}

.items_list_cs5 ul li {
	padding-left: 2.5rem;
	position: relative;
}

.items_list_cs5 ul li:after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	background: linear-gradient(360deg, var(--color-2) 0%, var(--color-1) 100%);
	left: 0;
	top: 0;
	bottom: 0;
}

.items_list_cs5 ul li p:last-child {
	margin-bottom: 0;
}

.items_list_cs6 ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
	text-align: center;
	gap: 2rem;
}

.items_list_cs6 ul li {
	background: transparent url("images/icon_logo.svg") center top no-repeat scroll;
	padding-top: 4rem;
	flex: 1;
	text-align: center;
}

.items_list_cs6 ul li strong {
	font-weight: 800;
	line-height: 1.4;
	display: block;
}

.items_list_cs7 {
	padding-top: 1.5rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 3rem;
}

.items_list_cs7 .custom_content {
	text-align: center;
}

.items_list_cs7 .title {
	font-weight: 800;
	font-size: 1.2rem;
	line-height: 1.5;
}

.items_list_cs7 .image {
	padding-top: 7rem;
	position: relative;
}

.items_list_cs7 .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
}

.items_list_cs8 {
	position: relative;
}

.items_list_cs8 .wrapper {
	padding-top: 1.5rem;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 4rem;
	grid-row-gap: 3rem;
}


.items_list_cs8 .icon_text_wrapper {
	background: var(--color-3);
	padding: 2rem;
	display: block;
	border-radius: var(--border-radius);
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.items_list_cs8 > .wrapper {
	position: relative;
}

.items_list_cs8 .icon_text_wrapper:hover {
	text-decoration: none;
	color: var(--color-main);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
	/* transform: translateY(-5px); */
}


.items_list_cs8 .icon_text_wrapper::after {
	font-family: 'webninja';
	content: "\e035";
	color: #02CBF2;
	background: white;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	border: 5px solid var(--color-3);
	position: absolute;
	right: -1.3rem;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}

.items_list_cs8 .icon_text_wrapper .text {
	padding-left: 5rem;
	background: transparent url("images/icon_logo_color.svg") left center no-repeat scroll;
}

.items_list_cs8 .icon_text_wrapper h3 {
	font-size: 1.2rem;
	margin-bottom: 0;
}

.items_list_cs8 .icon_text_wrapper .text p:last-child {
	font-size: 80%;
	margin-bottom: 0;
}

.items_list_cs8 .icon_text_block.active {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: white;
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
	cursor: auto;
}

.items_list_cs8 .icon_text_block.active .text {
	display: none;
}

.items_list_cs8 .icon_text_block.active:after {
	content: none;
}

.items_list_cs8 .text_extra {
	display: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 4rem 3rem 3rem 3rem;
}

.items_list_cs8 .box_cs {
	overflow-y: scroll;
	height: 100%;
}

.items_list_cs8 .icon_text_block.active .text_extra {
	display: block;
}

.items_list_cs8 .icon_text_block .icon_cross {
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	color: var(--color-1);
	cursor: pointer;
}



.items_list_cs9 {
	justify-content: center;
}

.items_list_cs9 .col {
	flex: 0 0 25%;
	width: 25%;
	text-align: center;
	margin-bottom: 4rem;
}

.items_list_cs9 .image {
	position: relative;
	padding-top: 90%;
	width: 90%;
	margin: 0 auto 2.5rem;
}

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

.items_list_cs9 .title {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.items_list_cs9 .wrapper > .text {
	color: var(--color-4);
	font-size: 85%;
	line-height: 1.7;
}

.items_list_cs9 p {
	margin-bottom: 0.2rem;
}

.items_list_cs9 .icon_text_block {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.items_list_cs9 .icon_text_block i {
	color:var(--color-1);
}

.box_cs3 {
	position: relative;
}

.box_cs3 .col_cs1 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
}

.page_head + .box_cs4 {
	margin-top: 5rem;
}


article .box_cs4:last-child {
	margin-bottom: 6rem;
}

.box_cs4 {
	overflow: visible;
	position: relative;
	margin-top: 11rem;
	padding-bottom: 0;
}

.box_cs5 {
	overflow: visible;
	position: relative;
	margin-top: 6rem;
}

.box_cs5 .video_bgr video {
	z-index: 0;
}

.box_cs4::before, .box_cs5::before {
	top: -2rem;
	position: absolute;
	right: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.box_cs4 .col_cs1 {
	padding-top: 4rem;
	padding-bottom: 3rem;
}

.box_cs4 .col_cs2:last-child {
	margin-bottom: -6rem;
}

.box_cs4 .col_cs2 + .col_cs2 {
	margin-top: 2.5rem;
}

.box_cs4 .col_cs2 .wrapper, .box_cs5 .col_cs2 .wrapper {
	border-radius: var(--border-radius);
	background: var(--color-1) url("images/dec.svg") bottom right no-repeat scroll;
	padding: 4rem !important;
}

.box_cs5 .col_bgr_img {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	border-radius: var(--border-radius);
	overflow: hidden;
	min-height: 30rem;
}

.box_cs5 .col_content .wrapper {
	padding-bottom: 2.5rem;
}

.box_cs5 .col_cs2 {
	margin-bottom: 4rem;
	position: relative;
}

.box_cs5 .col_cs2 .items_list_cs6 {
	padding-top: 2rem;
}

.box_cs6 {
	padding-top: 0;
	margin-top: -12rem;
	padding-bottom: 3rem;
}


.box_cs6 .col_row .col .wrapper {
	padding: 3.5rem !important;
	border-radius: var(--border-radius);
	background-color: #F8F8F8;
	background-position: bottom center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
}

.box_cs6 h2 {
	font-size: 1.6rem;
}

.box_cs6 h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.box_cs6 p {
	margin-bottom: 0.7rem;
}

.box_cs6 .box_btn {
	padding-top: 22rem;
	margin-top: auto;
}

.box_cs6 .box_btn a {
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.box_cs6 .icon_text_block {
	display: flex;
}

.box_cs6 .icon_text_block i {
	flex: 0 0 1.7rem;
	color: var(--color-1);
}

#gallery_about {
	padding-bottom: 3rem;
}

#gallery_about .before_content {
	padding-bottom: 1rem;
}

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

#gallery_about .gallery_simple .wrapper {
	border-radius: var(--border-radius);
	overflow: hidden;
	margin-bottom: 2rem;
}

#gallery_about .gallery_simple video {
	border-radius: var(--border-radius);
	overflow: hidden;
}

#gallery_about .item {
	transition: all 0.3s ease;
}

#gallery_about .item:hover {
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.social_links {
	position: fixed;
	right: 0;
	bottom: 2rem;
	padding: 0;
	list-style: none;
	margin: 0;
	gap: 0.8rem;
	display: flex;
	flex-direction: column;
}

.social_links a {
	background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
	color: white;
	height: 3rem;
	display: flex;
	width: 3rem;
	justify-content: center;
	align-items: center;
	font-size: 1.7rem;
	transition: all 0.3s ease;
}

.social_links a:hover {
	text-decoration: none;
	transform: translateY(-5px);
}

.social_links .icon_round_linkedin::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26.25' height='26.249' viewBox='0 0 26.25 26.249'%3E%3Cpath d='M-7.249,0h-5.442V-17.525h5.442ZM-9.973-19.916A3.178,3.178,0,0,1-13.125-23.1a3.152,3.152,0,0,1,1.576-2.73,3.152,3.152,0,0,1,3.152,0A3.152,3.152,0,0,1-6.821-23.1a3.178,3.178,0,0,1-3.152,3.182ZM13.119,0H7.689V-8.531c0-2.033-.041-4.641-2.829-4.641C2.03-13.172,1.6-10.963,1.6-8.678V0H-3.84V-17.525h5.22v2.391h.076A5.718,5.718,0,0,1,6.6-17.965c5.508,0,6.52,3.627,6.52,8.338V0Z' transform='translate(13.125 26.249)' fill='%23fff'/%3E%3C/svg%3E");
	content: '';
	height: 1.5rem;
	width: 1.7rem;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}


@media (max-width: 1600px) {
	footer .advanced .col_cs1 .wrapper {
		padding-left: 17rem !important;
	}
}

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

@media (max-width: 1366px) {
	footer .advanced .col_cs1 .wrapper {
		padding-left: 10rem !important;
	}
	footer .col_cs1 .img_cs1 img {
		width: 13rem;
	}
}

@media (max-width: 1280px) {
	h1, .h1, .box_cs1 h1 {
		font-size: 2.5rem;
	}
	h2,.h2 {
		font-size: 2rem;
	}
	h3,.h3 {
		font-size: 1.5rem;
	}
	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;
	}
	.owl-carousel .owl-dots button span {
		padding: 0.7rem;
	}
	.owl-carousel .owl-dots {
		padding-right: 0;
	}
	:root {
		--padding-left: 2rem;
		--padding-right: 2rem;
		--section-padding-left: 2rem;
		--section-padding-right: 2rem;
	}
	.social_links a {
		height: 2rem;
		width: 2rem;
	}
	.social_links a {
		font-size: 1rem;
	}
	.social_links .icon_round_linkedin:before {
		height: 1rem;
		width: 1rem;
	}
}


@media (max-width: 1200px) {
	header {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	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: white;
		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;
		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.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 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;
	}
	.box_cs1 .wrapper {
		padding-right: 0;
	}
	.box_cs1 .text {
		padding-right: 0;
	}
	.box_cs1 {
		padding-bottom: 15rem;
	}
	body.category, body.post-template-single-blog {
		padding-left: 0;
		padding-right: 0;
	}
	.category header .container {
		padding-left: 0;
		padding-right: 0;
		width: auto;
	}
}

@media (max-width: 1199px) {
	footer .col_cs1 .img_cs1 img {
		display: none;
	}
	footer .advanced .col_cs1 .wrapper {
		padding-left: var(--section-padding-left) !important;
	}
	.box_cs6 .col {
		flex: 0 0 100%;
		margin-bottom: 2rem;
		text-align: center;
	}
	.box_cs6 .icon_text_block {
		display: flex;
		justify-content: center;
	}
	.box_cs6 .box_btn a {
		width: auto;
	}
	.box_cs7 {
		padding-top: 0;
	}
	.items_list_cs9 .col {
		flex: 0 0 50%;
		width: 50%;
	}
	.items_list_cs9 .image {
		padding-top: 70%;
		width: 70%;
	}
}

@media (max-width: 992px) {
	section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.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;
	}
	/* #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-1);
	}
	.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%;
	}
	#gallery_about .gallery_simple {
		grid-column-gap: 1rem;
		grid-row-gap: 1rem;
	}
	#gallery_about .gallery_simple .wrapper {
		margin-bottom: 1rem;
	}
	.box_cs1 {
		text-align: center;
	} 
}


@media (max-width: 768px) {
	.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;
	}
	.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%;
	}
	.box_cs1 .wrapper {
		padding-right: 0 !important;
	}
	.items_list_cs1, .items_list_cs2 {
		flex-direction: column;
	}
	.items_list_cs9 .image {
		padding-top: 15em;
		width: 15em;
	}
	.box_cs3 .col_cs1 {
		position: relative;
		height: 25rem;
	}
	.box_cs3 {
		padding-bottom: 0;
	}
	.items_list_cs7, .items_list_cs5 ul, .items_list_cs3 ul, .items_list_cs8 .wrapper  {
		grid-template-columns: repeat(1,1fr);
	}
	.box_cs4 .col_cs1 {
		padding-top: 1rem;
	}
	.items_list_cs6 ul {
		flex-direction: column;
	}
	.items_list_cs4 .list_cs {
		grid-template-columns: repeat(1,1fr);
	}
	.box_cs4 .col_cs2 .wrapper, .box_cs5 .col_cs2 .wrapper {
		padding: 2.5rem !important;
	}
	.section_fixed_width {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.box_cs4 {
		padding-bottom: 3rem;
		margin-top: 8rem;
	}
	.box_cs4 .col_cs1 {
		margin-bottom: 0;
	}
	.box_cs4 .col_cs2 .wrapper, .box_cs5 .col_cs2 .wrapper {
		background-size: cover;
	}
}

@media (max-width: 576px) {
	h1, .h1, .box_cs1 h1 {
		font-size: 2rem;
	}
	h2,.h2 {
		font-size: 1.7rem;
	}
	[class^="btn_"], [class*=" btn_"] {
		padding: 0.7rem 1.2rem;
	}
	.slider .content {
		padding: 1.5rem;
	}
	.slider .item {
		height: 55rem;
	}
	.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;
	}
	.owl-carousel .owl-dots button span {
		padding: 0.4rem;
	}
	.box_cs5 .col_cs2, .box_cs4 .col_cs2 {
		padding: 0;
	}
	.category_body .more {
		grid-template-columns: repeat(1,1fr);
	}
	.box_cs5 .col_row {
		padding-top: 20rem;
	}
	.box_cs5 .col_bgr_img {
		height: 20rem !important;
		min-height: 20rem !important;
	}
}


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

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