/*- Made by DeMETAL (c) 2023 >>> -*/
/* velestbox@gmail.com */

/*** VAR >>> ***/
body {
	font: var(--f1);
	color: var(--fc1);
	background: var(--body_bg);
}
a {
	color: var(--a_c0);
}
a:hover {
	color: var(--a_c1);
	text-decoration: none;
}

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

/* colors >>> */
.fc1{color: var(--fc1) !important}
.fc2{color: var(--fc2) !important}
.fc3{color: var(--fc3) !important}
.cm1{color: var(--cm1) !important}
.cm2{color: var(--cm2) !important}
.cm3{color: var(--cm3) !important}
.cg1{color: var(--cg1) !important}
.cg2{color: var(--cg2) !important}
.cg3{color: var(--cg3) !important}
.cd1{color: var(--cd1) !important}
.cd2{color: var(--cd2) !important}
.cd3{color: var(--cd3) !important}
.bg_cm1{background: var(--cm1) !important}
.bg_cm2{background: var(--cm2) !important}
.bg_cm3{background: var(--cm3) !important}
.bg_cg1{background: var(--cg1) !important}
.bg_cg2{background: var(--cg2) !important}
.bg_cg3{background: var(--cg3) !important}
.bg_cd1{background: var(--cd1) !important}
.bg_cd2{background: var(--cd2) !important}
.bg_cd3{background: var(--cd3) !important}
.cf, .c_white{color: #fff !important}
.c0, .c_black{color: #000 !important}
.bg_cf, .bg_cw, .bg_white{background: #fff !important}
.bg_c0, .bg_cb, .bg_black{background: #000 !important}
.bd_white {border: 1px solid #fff}
.bd_gray {border: 1px solid #ccc}
.bd_black {border: 1px solid #000}
/* colors <<< */

/* size >>> */
.header_in {
	height: var(--header_in);
}
.logo {
	width: var(--logo_w);
}
.h_phone img {
	width: var(--h_phone);
	min-width: var(--h_phone);
}
.soc_bl {
	width: var(--soc_bl);
	min-width: var(--soc_bl);
}
.side_footer  .soc_bl {
	width: var(--soc_wh);
	min-width: var(--soc_wh);
}
.soc_wh {
	width: var(--soc_wh);
	min-width: var(--soc_wh);
}
/* size <<< */
/*** VAR <<< ***/

/*** ELEMENTS >>> ***/
/* buttons >>> */
.btn {
	position: relative;
	display: inline-block;
	font: var(--f1);
	color: #fff;
	padding: 0;
	transition: all .3s ease 0s;
	background: var(--btn_bg0);

	width: var(--btn_w);
	height: var(--btn_h);
	line-height: var(--btn_h);
	border-radius: var(--btn_rad);
}
.btn_ico, .btn_arr {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--btn_ico_c0);
	background: var(--btn_ico_bg0);

	width: 100%;
	font-size: 14px;
	margin: auto;
}
.btn:hover {
	color: var(--btn_c1);
	background: var(--btn_bg1);
}
.btn_ico:hover, .btn_arr:hover {
	color: var(--btn_ico_c1);
	background: var(--btn_ico_bg1);
}
.btn_ico::after {
	content: '';
	width: 14px;
	min-width: 14px;
	height: 14px;
	margin-left: 6px;
	background: #c00;
}

.close_btn {
	position: relative;
	display: inline-block;
	width: var(--ico_hamb);
	height: var(--ico_hamb);
	cursor: pointer;
	transition: all .3s ease 0s;
	border-radius: 50%;
	background: var(--cg2);
}
.close_btn::before, .close_btn::after {
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 2px;
	transform: rotate(45deg);
	transition: all .3s ease 0s;
	background: var(--fc1);
}
.close_btn::before {
	width: 25px;
	height: 3px;
}
.close_btn::after {
	width: 3px;
	height: 25px;
}
.close_btn:hover {
	transform: rotate(180deg);
}

.ico_hamb {
	position: relative;
	display: block;
	display: flex;
	width: var(--ico_hamb);
	height: var(--ico_hamb);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all .3s ease 0s;
	background: var(--cg2);
}
.ico_hamb .l, .ico_hamb::before, .ico_hamb::after {
	display: block;
	content: '';
	width: 50%;
	height: 3px;
	border-radius: 100px;
	transition: all .3s ease 0s;
	background: var(--cm1);
}
.ico_hamb .l {
	margin: 5px 0;
	background: var(--cm3);
}

.tog_btn  {
	z-index: 999;
}
.tog_block {
	visibility: hidden;
	position: absolute;
	top: 100%;
	margin: auto;
	margin-top: 12px;
	border-radius: 2px;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition: all .3s ease 0s;
	background: #fff;
	z-index: 999;
}
.tog_block.active {
	visibility: visible;
	opacity: 1;
}
.tog_block a {
	color: var(--fc1);
}
.tog_block a:hover {
	color: var(--cm1);
}
.tog_block::after, .tog_block::before {
	content: '';
	position: absolute;
	background: #fff;
	z-index: -1;
}
.tog_block::before {
	width: 20px;
	height: 20px;
	top: -10px;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
	transform: rotate(45deg);
}
.tog_block::after {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
/* buttons <<< */

/* overlay >>> */
.js_overlay, .js_overlay_op {
	position: absolute;
	visibility: hidden;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s ease 0s;
	background-color: #000;
	z-index: 998;
}
.js_overlay {
	z-index: 999;
}
.js_overlay.active, .js_overlay_op.active {
	opacity: .3;
	visibility: visible;
}
/* overlay <<< */

/* menu_dd >>> */
.menu_item.dd_tog {
	position: relative;
	padding-right: 20px;
	cursor: pointer;
}
.dd_tog::before, .sub_acc_tog .link i::before {
	content: '';
	display: block;
	transform: rotate(45deg);
	border-right: 2px solid var(--cm1);
	border-bottom: 2px solid var(--cm1);
	transition: all .3s ease 0s;
}
.dd_tog::before {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 4px;
	top: 1px;
}
.sub_acc_tog .link i::before {
	width: 12px;
	height: 12px;
	margin-top: -4px;
}
.dd_tog.active::before {
	top: 6px;
	transform: rotate(-135deg);
}
.dd_tog.active, .dd_tog:hover {
	color: var(--cm2);
}
.dd_wrap {
	display: none;
	position: absolute;
	left: -20px;
	top: 70px;
	padding: 20px;
	background: #fff;
	z-index: 999;
}
.active .dd_wrap {
	display: block;
}
.dd_link {
	display: block;
	color: var(--fc1);
	line-height: 50px;
	white-space: nowrap;
}
.dd_link:hover {
	color: var(--cm2);
}
/* menu_dd <<< */

/* side_wrap >>> */
.side_wrap {
	position: fixed;
	width: 360px;
	height: 100%;
	overflow-y: auto;
	top: 0;
	left: -100%;
	transition: all .5s ease 0s;
	background: var(--cg3);
	z-index: 9999;
}
.side_wrap.active {
	left: 0;
}

.side_header {
	position: relative;
	height: var(--header_in);
	border-bottom: 1px solid var(--cg2);
	background: #fff;
}

.side_menu .link_wrap {
	border-bottom: 1px solid var(--cg2);
}
.side_menu .link, .side_menu .sub_link {
	display: block;
	color: var(--fc1);
	line-height: var(--side_lh);
	text-transform: uppercase;
	padding: 0 1rem;
}
.side_menu .sub_link {
	padding-left: calc(1rem + 15px);
	background: var(--cg1);
	border-bottom: 1px solid var(--cg3);
}

.sub_acc {
	display: none;
}
.sub_acc_tog .link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding-right: 0;
}
.sub_acc_tog .link i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--side_lh);
	height: var(--side_lh);
}

.sub_acc_tog.active .link i::before {
	transform: rotate(-135deg);
	margin-top: 4px;
}
.side_footer {
	/*height: var(--side_lh);*/
}
/* side_wrap <<< */

/* ymap >>> */
#ymap {
	min-height: 400px;
	border: 1px solid #e0e0e0;
}
/* ymap <<< */
/*** ELEMENTS <<< ***/

/* bs >>> */
.container-fluid {
	padding: 0;
}

.row.row-half {
	margin-left: -8px !important;
	margin-right: -8px !important;
}
.row.row-half > [class*="col-"] {
	padding-left: 8px !important;
	padding-right: 8px !important;
}
.row.row-full {
	margin-left: -16px !important;
	margin-right: -16px !important;
}
.row.row-full > [class*="col-"] {
	padding-left: 16px !important;
	padding-right: 16px !important;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
	margin: 0;
	padding: 0;
}
/* bs <<< */

/* common >>> */
.spy {
	position: fixed;
	font: bold 16px/1.2 Arial, sans-serif;
	text-align: center;
	color: #ff0;
	padding: 0 5px;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: 9999;
}
.spy_grn {color: #0c0}

.ovh {overflow: hidden}
.ma {margin: auto}
.m0a {margin: 0 auto}
.cur {cursor: pointer}

.posa {position: absolute}
.posr {position: relative}
.posf {position: fixed}
.dib {display: inline-block}

/*.placeholder::-webkit-input-placeholder {
	opacity: 1;
}
.placeholder:-moz-placeholder {
	opacity: 1;
}
.placeholder::-moz-placeholder {
	opacity: 1;
}
.placeholder:-ms-input-placeholder {
	opacity: 1;
}
.placeholder::-ms-input-placeholder {
	opacity: 1;
}
.placeholder::placeholder {
	opacity: 1;
}*/

.placeholder:focus::-webkit-input-placeholder {
	color: transparent;
}
.placeholder:focus:-ms-input-placeholder {
	color: transparent;
}
.placeholder:focus::-moz-placeholder {
	color: transparent;
}
.placeholder:focus::placeholder {
	color:transparent;
}


a, button:hover, button:focus, button:active, a:hover, a:active, a:focus, .btn, .btn:hover, .btn:active, .btn:focus, input, textarea, form {
	outline: none !important;
	box-shadow: none;
	border: none;
}

.telto {
	white-space: nowrap;
	text-decoration: none !important;
}
.mailto {
	text-decoration: underline;
}
.mailto:hover {
	text-decoration: none;
}
/* common <<< */

/* crumbs >>> */
.crumbs_wrap {
	font-size: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.crumbs_wrap span, .crumbs_wrap a {
	color: #1a171e;
	font-size: 12px;
}
.crumbs_wrap a {
	text-decoration: underline;
}
.crumbs_wrap a:hover {
	text-decoration: none;
}
.crumbs_wrap :nth-child(n+2)::before {
	content: '|';
	display: inline-block;
	color: #1a171e;
	margin: 0 5px;
}
/* crumbs <<< */

/* FORM 2023-02-09 v 3.0 >>> */
.loading, .ajax_response {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.9;
	z-index: 998;
	background: #fff;
}
.loading {
	background: #fff url(/hostcmsfiles/images/ajax_loader.gif) 50% 50% no-repeat;
}
.ajax_msg_wrap {
	position: relative;
	font-weight: bold;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	padding: 15px;
}
.ajax_msg_wrap .title {
	font-size: 22px;
	margin-bottom: 15px;
}
.ajax_msg_wrap .text {
	color: #fff;
	font-size: 16px;
}

.popup_content {
	box-shadow: none;
	border-radius: 0;
	border: none;
	padding: 15px;
	background: var(--pop_bg);
}

.inp_wrap {
	border-radius: var(--pop_inp_rad);
	border: 1px solid var(--pop_inp_bd);
	background: var(--pop_inp);
}
.inp_wrap .inp, .inp_wrap .inp_label, .fz_wrap label, .fz_wrap a {
	color: var(--fc1);
	font: var(--f1);
}
.inp_wrap .inp_label {
	font-size: 12px;
	margin-bottom: 2px;
}
.inp_wrap .inp {
	width: 100%;
	padding: 0;
}
.inp_wrap textarea {
	resize: none;
	height: 100px;
}

.fz_wrap {
	padding: 0;
}
.fz_wrap label, .fz_wrap a {
	font-size: 12px;
	line-height: 20px;
}
.fz_wrap a {
	text-decoration: underline;
}
.fz_label {
	padding-left: 25px;
}
.custom-checkbox .fz_label::after {
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	cursor: pointer;
	box-shadow: none;
	border-radius: 2px;
	background-size: 60% 60%;
	border: none;
	background-color: var(--cg2);
}
.custom-checkbox .fz_label::before {
	content: none;
}
.custom-checkbox .custom-control-input:checked ~ .fz_label::after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23323232' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
/* FORM <<< */

/* pager >>> */
.pager_item {
	position: relative;
	display: inline-block;
	width: 40px;
	min-width: 40px;
	height: 40px;
	color: #353a48;
	line-height: 40px;
	font-weight: bold;
	margin-left: -1px;
	border: 1px solid #e6e6e6;
	background: #fff;
}
.pager_item.active, .pager_item:hover {
	color: #fff;
	border-color: #3f88c5;
	text-decoration: none;
	background: #3f88c5;
}
.pager .pager_nav::before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-top: 2px solid #353a48;
	border-right: 2px solid #353a48;
}
.pager .pager_prev::before {
	left: 6px;
	transform: rotate(-135deg);
}
.pager .pager_next::before {
	left: -6px;
	transform: rotate(45deg);
}
.pager .pager_nav:hover::before, .pager .pager_nav:focus::before {
	border-color: #fff;
}
/* pager >>> */

/* owl >>> */
.owl-nav {
	height: 0;
}
.owl-nav button {
	position: absolute;
	width: 30px;
	height: 30px;
	margin: auto;
	top: 0;
	bottom: 0;
}
.owl-nav button.disabled {
	opacity: 0.6;
}
.owl_nav::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	left: 0;
	top: 0;
	background: url(/templates/template2/images/design/arr_owl.svg) 50% 50%/cover no-repeat;
	z-index: 1;
}
.nav_l::before {
	transform: rotate(180deg);
}
.owl-prev {
	left: -14px;
}
.owl-next {
	right: -14px;
}

.owl-dots {
	position: absolute;
	width: 100%;
	line-height: 0;
	text-align: center;
	padding-top: 20px;
}
.owl-dot {
	display: inline-block;
	line-height: 0 !important;
	outline: none !important;
}
.owl-dots span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	border-radius: 50%;
	border: none;
	background: #333E4F;
}
.owl-dots .active span {
	background: #C44A3E;
}
.dots_fill {
	height: 40px;
}
/* owl <<< */

/* text >>> */
.fw3, .fwl{font-weight: 300 !important}
.fw4, .fwr , .fwn{font-weight: normal !important}
.fw5, .fwm{font-weight: 500 !important}
.fw6, .fwsb{font-weight: 600 !important}
.fw7, .fwb{font-weight: bold !important}
.fw8, .fweb{font-weight: 800 !important}
.fw9, .fwbl{font-weight: 900 !important}
p {
	margin: 0;
}
.ttu {
	text-transform: uppercase;
}
.whs {
	white-space: nowrap;
}
.tal {
	text-align: left !important;
}
.tac {
	text-align: center !important;
}
.tar {
	text-align: right !important;
}
.tdn {
	text-decoration: none;
}
.tdu {
	text-decoration: underline;
}
.lh-1 {
	line-height: 1!important;
}
.lh-12 {
	line-height: 1.2!important;
}
.lh-15 {
	line-height: 1.5!important;
}
.fz-12 {
	font-size: 12px!important;
}
.fz-14 {
	font-size: 14px!important;
}
.fz-16 {
	font-size: 16px!important;
}
.fz-18 {
	font-size: 18px!important;
}
.fz-20 {
	font-size: 20px!important;
}
.fz-22 {
	font-size: 22px!important;
}
.fz-24 {
	font-size: 24px!important;
}
.fz-26 {
	font-size: 26px!important;
}
.fz-28 {
	font-size: 28px!important;
}
.fz-30 {
	font-size: 30px!important;
}
.fz-32 {
	font-size: 32px!important;
}
.fz-34 {
	font-size: 34px!important;
}
.fz-36 {
	font-size: 36px!important;
}
.fz-38 {
	font-size: 38px!important;
}
.fz-40 {
	font-size: 40px!important;
}
.fz-42 {
	font-size: 42px!important;
}
.fz-44 {
	font-size: 44px!important;
}
.fz-46 {
	font-size: 46px!important;
}
.fz-48 {
	font-size: 48px!important;
}
.fz-50 {
	font-size: 50px!important;
}
.fz-60 {
	font-size: 60px!important;
}
.fz-70 {
	font-size: 70px!important;
}
.fz-80 {
	font-size: 80px!important;
}

.text_wrap p,
.text_wrap ul,
.text_wrap ol {
	margin-bottom: 15px;
}
.text_wrap p:last-child {
	margin: 0;
}
.text_wrap ol, .text_wrap ul {
	padding-left: 15px;
}
.text_wrap li {
	margin-bottom: 10px;
}
/* text <<< */

/* SM+ (sm-*) */
@media screen and (min-width: 576px) {
	.sm-tal {
		text-align: left !important;
	}
	.sm-tac {
		text-align: center !important;
	}
	.sm-tar {
		text-align: right !important;
	}
	.sm-fwb {
		font-weight: bold !important;
	}
	.sm-lh-1 {
		line-height: 1 !important;
	}
	.sm-lh-12 {
		line-height: 1.2 !important;
	}
	.sm-lh-15 {
		line-height: 1.5 !important;
	}

	.row.row-sm-half {
		margin-left: -8px !important;
		margin-right: -8px !important;
	}
	.row.row-sm-half > [class*="col-"] {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
	.row.row-sm-full {
		margin-left: -16px !important;
		margin-right: -16px !important;
	}
	.row.row-sm-full > [class*="col-"] {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}
/* MD+ (md-*) */
@media screen and (min-width: 768px) {
	.md-tal {
		text-align: left !important;
	}
	.md-tac {
		text-align: center !important;
	}
	.md-tar {
		text-align: right !important;
	}
	.md-fwb {
		font-weight: bold !important;
	}
	.md-lh-1 {
		line-height: 1 !important;
	}
	.md-lh-12 {
		line-height: 1.2 !important;
	}
	.md-lh-15 {
		line-height: 1.5 !important;
	}

	.fz-md-12 {
		font-size: 12px!important;
	}
	.fz-md-14 {
		font-size: 14px!important;
	}
	.fz-md-16 {
		font-size: 16px!important;
	}
	.fz-md-18 {
		font-size: 18px!important;
	}
	.fz-md-20 {
		font-size: 20px!important;
	}
	.fz-md-22 {
		font-size: 22px!important;
	}
	.fz-md-24 {
		font-size: 24px!important;
	}
	.fz-md-26 {
		font-size: 26px!important;
	}
	.fz-md-28 {
		font-size: 28px!important;
	}
	.fz-md-30 {
		font-size: 30px!important;
	}
	.fz-md-32 {
		font-size: 32px!important;
	}
	.fz-md-34 {
		font-size: 34px!important;
	}
	.fz-md-36 {
		font-size: 36px!important;
	}
	.fz-md-48 {
		font-size: 48px!important;
	}

	.row.row-md-half {
		margin-left: -8px !important;
		margin-right: -8px !important;
	}
	.row.row-md-half > [class*="col-"] {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
	.row.row-md-full {
		margin-left: -16px !important;
		margin-right: -16px !important;
	}
	.row.row-md-full > [class*="col-"] {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}
/* LG+ (lg-*) */
@media screen and (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.telto, .call_btn {
		pointer-events: none;
	}

	.lg-tal {
		text-align: left !important;
	}
	.lg-tac {
		text-align: center !important;
	}
	.lg-tar {
		text-align: right !important;
	}
	.lg-fwb {
		font-weight: bold !important;
	}
	.lg-lh-1 {
		line-height: 1 !important;
	}
	.lg-lh-12 {
		line-height: 1.2 !important;
	}
	.lg-lh-15 {
		line-height: 1.5 !important;
	}

	.row.row-lg-half {
		margin-left: -8px !important;
		margin-right: -8px !important;
	}
	.row.row-lg-half > [class*="col-"] {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
	.row.row-lg-full {
		margin-left: -16px !important;
		margin-right: -16px !important;
	}
	.row.row-lg-full > [class*="col-"] {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}
/* XL+ (xl-*) */
@media screen and (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}

	.xl-tal {
		text-align: left !important;
	}
	.xl-tac {
		text-align: center !important;
	}
	.xl-tar {
		text-align: right !important;
	}
	.xl-fwb {
		font-weight: bold !important;
	}
	.xl-lh-1 {
		line-height: 1 !important;
	}
	.xl-lh-12 {
		line-height: 1.2 !important;
	}
	.xl-lh-15 {
		line-height: 1.5 !important;
	}

	.row.row-xl-half {
		margin-left: -8px !important;
		margin-right: -8px !important;
	}
	.row.row-xl-half > [class*="col-"] {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
	.row.row-xl-full {
		margin-left: -16px !important;
		margin-right: -16px !important;
	}
	.row.row-xl-full > [class*="col-"] {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}

/* XS ONLY (*-xs) */
@media screen and (max-width: 575px) {
	.tal-xs {
		text-align: left !important;
	}
	.tac-xs {
		text-align: center !important;
	}
	.tar-xs {
		text-align: right !important;
	}
	.fwb-xs {
		font-weight: bold !important;
	}
	.lh-1-xs {
		line-height: 1 !important;
	}
	.lh-12-xs {
		line-height: 1.2 !important;
	}
	.lh-15-xs {
		line-height: 1.5 !important;
	}
}
/* SM ONLY (*-sm) */
@media screen and (min-width: 576px) and (max-width: 767px) {
	.tal-sm {
		text-align: left !important;
	}
	.tac-sm {
		text-align: center !important;
	}
	.tar-sm {
		text-align: right !important;
	}
	.fwb-sm {
		font-weight: bold !important;
	}
	.lh-1-sm {
		line-height: 1 !important;
	}
	.lh-12-sm {
		line-height: 1.2 !important;
	}
	.lh-15-sm {
		line-height: 1.5 !important;
	}
}
/* MD ONLY (*-md) */
@media screen and (min-width: 768px) and (max-width: 991px) {
	.tal-md {
		text-align: left !important;
	}
	.tac-md {
		text-align: center !important;
	}
	.tar-md {
		text-align: right !important;
	}
	.fwb-md {
		font-weight: bold !important;
	}
	.lh-1-md {
		line-height: 1 !important;
	}
	.lh-12-md {
		line-height: 1.2 !important;
	}
	.lh-15-md {
		line-height: 1.5 !important;
	}
}
/* LG ONLY (*-lg) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
	.tal-lg {
		text-align: left !important;
	}
	.tac-lg {
		text-align: center !important;
	}
	.tar-lg {
		text-align: right !important;
	}
	.fwb-lg {
		font-weight: bold !important;
	}
	.lh-1-lg {
		line-height: 1 !important;
	}
	.lh-12-lg {
		line-height: 1.2 !important;
	}
	.lh-15-lg {
		line-height: 1.5 !important;
	}
}
/*- Made by DeMETAL (c) 2021 <<< -*/