/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/montserrat-regular.woff2') format('woff2'),
		 url('fonts/Montserrat/montserrat-regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/montserrat-light.woff2') format('woff2'),
		 url('fonts/Montserrat/montserrat-light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/montserrat-medium.woff2') format('woff2'),
		 url('fonts/Montserrat/montserrat-medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/montserrat-semibold.woff2') format('woff2'),
		 url('fonts/Montserrat/montserrat-semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/montserrat-bold.woff2') format('woff2'),
		 url('fonts/Montserrat/montserrat-bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/montserrat-extrabold.woff2') format('woff2'),
		 url('fonts/Montserrat/montserrat-extrabold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 1.667;
	font-weight: normal;
	color: var(--theme-color-text);
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 strong,
h3 strong,
h2 strong,
h4 strong {
	font-weight: 600;
}

h1, .h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
}

h2, .h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
}

h3, .h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
}

h4, .h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 21px;
	line-height: 1.4;
	font-weight: 400;
}

h5, .h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
}

h6, .h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 14px;
}

blockquote {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	display: block;
	position: relative;
}

p {
	padding: 0 0 15px;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
ul:last-child,
ol:last-child,
p:last-child {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/*  */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/*  */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-left: 15px;
	padding-right: 15px;
}

[class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	padding: 0 0 0;
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

header + * {
	padding-top: 140px;
}

.navbar, header, .logo, header + *, .header-top {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .25);
}

.header-fixed .header-top {
	margin: -60px 0 0;
	max-height: 60px;
	overflow: hidden;
}

.logo {
	float: none;
	margin: 0 0 0;
	padding: 0 0 0;
	font-size: 26px;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 0;
}

.logo i {
	font-size: 0;
	color: transparent;
}

.logo img {
	display: block;
}

header a {
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

header strong {
	font-weight: 600;
}

header a .bi {
	font-size: 150%;
}

.header-top {
	padding: 10px 0 10px;
	margin: 0 0 0;
	position: relative;
}

.header-main {
	padding: 21px 0 21px;
	margin: 0 0 0;
	position: relative;
	border-bottom: 2px solid var(--theme-color);
}

/*  */

.form-search {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 340px;
	position: relative;
}

.form-search input {
	padding: 6px 20px 4px 42px;
	margin: 0 0 0;
	font-size: 15px;
	line-height: 30px;
	position: relative;
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
}

.form-search button {
	padding: 3px 0 0;
	margin: 0 5px 0;
	font-size: 13px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	aspect-ratio: 1 / 1;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
}

/*  */

.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	gap: 40px;
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
}

#navbar .nav-link {
	padding: 5px 0 5px;
	margin: 0 0 0;
	font-size: 16px;
	line-height: 20px;
	color: inherit;
	background: transparent;
	font-weight: 600;
	text-transform: none;
	position: relative;
}

#navbar .nav-link.active {
	color: inherit;
	background: transparent;
}

#navbar .nav-link:focus, #navbar .nav-link:hover {
	color: inherit;
	background: transparent;
}

#navbar .nav-link:not(:last-child):after {
	margin: 0 0 0 4px;
	font-size: 15px;
	content: "\f107";
	font-family: "FontAwesome";
}

/*  */

.subnav {
	padding: 10px 5px 10px;
	margin: 0px -5px 0;
	position: absolute;
	left: 0;
	top: 99%;
	display: none;
	background: #000000;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .25);
}

.subnav li {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	list-style: none;
}

.subnav a {
	/* font-size: 14px; */
	padding: 5px 10px 5px;
	margin: 0 0 0;
	font-weight: 400;
	/* position: relative; */
	display: block;
	color: inherit;
	white-space: nowrap;
}

li:hover > .subnav {
	display: block;
}

/*  */

.navbar-toggler {
	position: relative;
	padding: 0 0 0;
	margin: 0 0 0;
	border-radius: 0;
	border: none;
	float: right;
	position: relative;
	z-index: 10;
}

.navbar-toggler:focus, .navbar-toggler:active {
	box-shadow: none;
	outline: none;
}

.navbar-toggler-icon, .navbar-light .navbar-toggler-icon {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 4px 0 0;
	margin: 0 0 0;
	background: transparent;
	z-index: 5;
	position: relative;
	display: inline-block;
	border: none;
}

.navbar-toggler-icon .icon-bar {
	width: 30px;
	height: 2px;
	border-radius: 10px;
	background: #ff0000;
	position: relative;
	display: block;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.navbar-toggler-icon .icon-bar+.icon-bar {
	margin-top: 8px;
}

.navbar-toggler-icon.active .icon-bar {
	margin: 0;
	height: 2px;
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(1) {
	top: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(3) {
	top: 5px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*  */

/* spinner css start */

.spinner-wr {
	background: #FFFFFF;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/*display: none;*/
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: var(--theme-color);
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	width: 36px;
	height: 36px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/icon-arrow-up.svg') no-repeat center center;
	background-size: contain;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 60px 0 80px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

:root {
	--theme-color: rgba(255, 134, 102, 1);
	--theme-color-light: rgba(251, 239, 238, 1);
	--theme-color-secondary: rgba(42, 88, 77, 1);
	--theme-color-text: #272727;
}

/*  */

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-gray {
	background-color: rgba(237, 237, 237, 1);
}

html body .bg-gray-light {
	background-color: #f7f7f7;
}

html body .bg-theme {
	background-color: var(--theme-color);
	color: #ffffff;
}

html body .bg-theme-light {
	background-color: var(--theme-color-light);
}

html body .bg-theme-light-lighter {
	background-color: #f7f7f7;
}

html body .bg-theme-secondary {
	background-color: var(--theme-color-secondary);
	color: #ffffff;
}



/*  */

html body .color-white {
	color: #ffffff;
}

html body .color-gray {
	color: #666666;
}

html body .color-theme {
	color: var(--theme-color);
}

html body .color-theme-light {
	color: var(--theme-color-light);
}

html body .color-theme-secondary {
	color: var(--theme-color-secondary);
}

html body .color-red {
	color: rgba(227, 87, 112, 1);
}



/*  */

.img-wr {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.display-inline-flex {
	display: inline-flex;
	align-items: center;
}

.vertical-align-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

.justify-content-center {
	justify-content: center;
	gap: 10px;
}

/*  */

.tdu {
	text-decoration: underline;
}

.ttu {
	text-transform: uppercase;
}

/*  */

.slide-item {
	outline: none;
}

/*  */

.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 20px;
	position: relative;
	border: none;
}

.bordered-bottom:after {
	width: 80px;
	border-bottom: 4px solid;
	left: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	position: absolute;
}

.text-center.bordered-bottom:after {
	right: 0;
}

body .text-left.bordered-bottom:after {
	right: auto;
}

/*  */

.columns-2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

/*  */

body .gallery-thumb-item {
	margin: 0 0 15px;
	padding: 0 0 0;
	display: block;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.gallery-thumb-item img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.gallery-thumb-item:before {
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	bottom: 100%;
	width: 30px;
	height: 30px;
	line-height: 1;
	font-size: 30px;
	color: #ffffff;
	margin: auto;
	text-shadow: 0px 1px 3px #222222;
	font-family: "FontAwesome";
	content: "\f00e";
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.gallery-thumb-item[href*="youtube"]:before {
	content: "\f01d";
}

.gallery-thumb-item:hover:before {
	top: 0;
	bottom: 0;
}

/*  */

body .padding-0 {
	padding: 0;
}

body .padding-top-0 {
	padding-top: 0;
}

body .padding-bottom-0 {
	padding-bottom: 0;
}

body .margin-0 {
	margin: 0;
}

body .margin-top-0 {
	margin-top: 0;
}

body .margin-bottom-0 {
	margin-bottom: 0;
}

/*  */

.border-radius-5px {
	border-radius: 5px;
}

.border-radius-10px {
	border-radius: 10px;
}

.border-radius-15px {
	border-radius: 15px;
}

.border-radius-20px {
	border-radius: 20px;
}

.border-radius-25px {
	border-radius: 25px;
}

.border-radius-30px {
	border-radius: 30px;
}

.img-rounded {
	border-radius: 500px;
	border-radius: 50%;
}

/*  */









/*  */

body .btn-main {
	padding: 10px 20px 10px;
	margin: 0 auto 20px;
	font-size: 15px;
	line-height: 30px;
	min-width: 200px;
	font-weight: 600;
	letter-spacing: 0.05em;
	width: auto;
	font-style: normal;
	color: #ffffff;
	background: var(--theme-color);
	border: none;
	text-align: center;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 10px;

	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0);
	outline: 1px solid;
	outline-color: var(--theme-color);
	outline-offset: -1px;
	text-shadow: none;
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

html body .btn-main:hover {
	opacity: 1;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15), 0 0 20px -10px var(--theme-color);
	outline-color: rgba(0, 0, 0, 0);
	outline-offset: 15px;
}

.btn-main.bg-white {
	color: var(--theme-color-text);
}

.btn-main.display-flex {
	width: 100%;
}

/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

body input, body textarea, body select {
	display: block;
	margin: 0 0 0;
	padding: 11px 20px 11px;
	font-size: 16px;
	line-height: 20px;
	min-height: 45px;
	color: #333333;
	background-color: #ffffff;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid rgba(39, 39, 39, 0.2);
	border-radius: 10px;
}

body input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

body input[type="checkbox"],
body input[type="radio"] {
	width: auto;
	display: inline-block;
	vertical-align: middle;
}

body input:hover, body textarea:hover, body select:hover {
	color: #333333;
	border-color: #666666;
	opacity: .65;
}

body input:focus, body textarea:focus, body select:focus {
	color: #333333;
	border-color: #666666;
	opacity: 1;
}

body label {
	display: block;
	cursor: pointer;
}

body label h6 {
	font-size: 16px;
	padding: 0 0 5px;
}

*::-webkit-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

/*  */

.breadcrumbs {
	font-size: 15px;
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
	display: flex;
}

.breadcrumbs li {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
}

.breadcrumbs li+li:before {
	content: "»";
	padding: 0 0 0;
	margin: 0 5px 0;
}

.breadcrumbs li a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-weight: 500;
}

.breadcrumbs li:last-child a {
	font-weight: normal;
}

/*  */

.block-author {
	padding: 6px 0 6px;
	margin: 0 0 10px;
	position: relative;
	border-top: 1px solid rgba(0,0,0,.15);
	border-bottom: 1px solid rgba(0,0,0,.15);
}

.block-author h6 {
	margin: 0 0 0;
	padding: 8px 0 0;
	line-height: 1;
}

.block-author img {
	display: block;
}

.block-author strong {
	font-weight: 600;
}

.author-img .display-flex {
	gap: 15px;
}

/*  */

.grid-main-area {
	margin: 0 -42px 0 0;
	padding: 0 0 0;
	position: relative;
}

.grid-main-area > img {
	margin: 0 0 20px;
	display: block;
}

.grid-main-area .img-wr {
	margin: 0 0 20px;
	padding: 0 0 0;
}

.grid-sidebar {
	margin: 0 0 0;
	padding: 0 0 0 50px;
	position: relative;
}

.sidebar-item {
	padding: 0 0 0;
	margin: 0 0 15px;
	position: relative;
}

.sidebar-item img  {
	padding: 0 0 0;
	margin: 0 auto 0;
	display: block;
}

/*  */

.social-links {
	padding: 0 0 0;
	margin: 10px 0 0;
	display: inline-flex;
	gap: 15px;
	line-height: 1;
	align-items: center;
}

/*  */

.tag-items-wr {
	margin: 0 0 10px;
	gap: 20px;
	display: flex;
}

body .tag-item {
	padding: 6px 20px 4px;
	margin: 0 0 15px 0;
	font-size: 90%;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border:  1px solid;
}

/*  */

.togle-more-less {
	padding: 0 0 0;
	margin: 0 0 0;
}

.togle-more-less .label-more-default {
	display: inline;
}

.togle-more-less.active .label-more-default {
	display: none;
}

.togle-more-less .label-more-active {
	display: none;
}

.togle-more-less.active .label-more-active {
	display: inline;
}

.togle-more-less.active .content-toggle-more-less-main {
	display: none;
}

.togle-more-less.active .content-toggle-more-less-main.visisble-on-active {
	display: initial;
}

.togle-more-less:not(.active) .content-toggle-more-less-hidden {
	display: none;
}

/*  */

.block-simple {
	padding: 15px 20px 15px;
	margin: 0 0 20px;
	position: relative;
}

.block-simple .h6 {
	line-height: 1.3;
	padding: 0 0 0;
}

p + .block-simple {
	margin-top: 5px;
}

.img-wr + h4 {
	padding-top: 10px;
}

.block-bordered {
	border:  1px solid var(--theme-color);
}

.border-color-gray {
	border-color: rgba(39, 39, 39, 0.2);
}

/*  */

.table-simple {
	width: 100%;
	padding: 0 0 0;
	font-size: 16px;
	font-weight: 500;
	margin: 0 auto 30px;
	text-align: center;
}

.table-bordered {
	box-shadow: 0px 0px 0px 1px var(--theme-color);
}

.table-simple tbody.border-radius-10px {
	box-shadow: 0px 0px 0px 1px var(--theme-color);
}

.table-simple td:first-child {
	text-align: left;
}

.table-simple td,
.table-simple th {
	padding: 14px 20px 12px;
	margin: 0 0 0;
}

.table-striped tr:nth-child(even) {
	background-color: var(--theme-color-light);
}

/*  */

html body hr.bg-theme {
	opacity: 1;
	height: 2px;
	margin: 5px auto 25px;
}

/*  */

.slider-3-per-row {
	padding: 0 0 0;
	margin: 10px -15px 0;
}

.slider-3-per-row .slide-item {
	padding: 0 15px 0;
	margin: 0 0 0;
}

/*  */

.thumb-item {
	padding: 0 0 0;
	margin: 0 0 15px;
	position: relative;
}

.thumb-item .img-wr {
	padding: 0 0 0;
	margin: 0 0 15px;
	position: relative;
}

.thumb-item .text-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.thumb-item h5 {
	font-size: 15px;
	padding: 0 0 10px;
	border: 2px solid #ff8666;
	border-radius: 30px;
	width: 150px;
	text-align: center;
	vertical-align: ce;
	height: 30px;
	margin-bottom: 20px;
	color: #ff8666;
}

.thumb-item strong {
	font-weight: 600;
}

.thumb-item h4 {
	font-weight: 600;
}

.thumb-item h6 {
	font-size: 14px;
	font-weight: 500;
}

.thumb-item h6 i {
	margin: 0 10px;
}

/*  */

/* BEGIN of CSS for blog-article-page.php page */

.box-blog-article {
	font-size: 110%;
	font-weight: 400;
}

html body hr.display-inline-block {
	display: inline-block;
	margin: 0 auto 25px;
}

.blog-article-author {
	line-height: 1.8;
	margin: 0 0 10px;
	font-size: 90%;
}

.listicle-date {
	display: block;
	margin: 0 0 10px;
}

.blog-article-author .fa {
	margin: -4px 8px 0 0;
}

.blog-article-author i {
	margin: 3px 5px 8px 0;
	display: inline-block;
	vertical-align: middle;
}

.blog-article-author i img {
	display: block;
}

/*  */

.box-blog-article .grid-main-area {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

.box-blog-article .breadcrumbs-wr {
	padding: 0 0 10px;
	margin: 0 0 0;
}

body .breadcrumbs-wr li {
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-block;
}

body .breadcrumbs-wr a {
	padding: 0 0 0;
	margin: 0 0 0;
	color: inherit;
}

body .breadcrumbs-wr li:last-child {
	font-weight: 600;
}

body .breadcrumbs-wr li + li:before {
	content: "> ";
	display: inline-block;
	padding: 0 0 0;
	margin: 0 10px 0;
	font-weight: 100;
}

.box-blog-article .img-wr {
	margin: 0 0 40px;
}

.box-blog-article .video-wr {
	position: relative;
	margin: 15px auto 40px;
	padding: 0 0 0;
}

.box-blog-article .video-wr video {
	margin: 0 auto 0;
	padding: 0 0 0;
	width: 100%;
}

.box-blog-article .grid-main-area {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

.block-angles-bordered {
	padding: 35px 35px 30px;
	margin: 20px 0 30px;
	position: relative;
}

.no-block-angles-bordered {
	background-color: transparent !important;
}

body .sidebar-link-item {
	font-size: 90%;
}

body .block-angles-bordered ul {
	margin-bottom: 0;
}

body .block-angles-bordered h5 {
	padding: 0 0 15px;
	margin: 0 0 0 0;
	font-size: 22px;
	font-weight: 500;
}

body .block-angles-bordered .list-simple {
	margin-bottom: 0;
}

.block-angles-bordered:before, .block-angles-bordered:after {
	position: absolute;
	content: "";
	border: 3px solid var(--theme-color);
	width: 175px;
	height: 40px;
}

.block-angles-bordered:before {
	left: 0;
	top: 0;
	border-bottom-color: transparent;
	border-right-color: transparent;
	border-top-left-radius: 0;
}

.block-angles-bordered:after {
	right: 0;
	bottom: 0;
	border-top-color: transparent;
	border-left-color: transparent;
	border-bottom-right-radius: 0;
}

.list-simple {
	margin: 0 0 15px 35px;
	padding: 0 0 0;
}

.list-simple li {
	margin: 0 0 10px;
	list-style: disc;
}

.list-simple li::marker {
	font-size: 100%;
	color: var(--theme-color);
}

body .block-angles-bordered ul {
	margin: 0 0 15px 35px;
	padding: 0 0 0;
}

body .block-angles-bordered ul li {
	margin: 0 0 15px;
	list-style: disc;
}

body .block-angles-bordered ul li:last-child {
	margin-bottom: 0;
}

body .block-angles-bordered ul li::marker {
	font-size: 100%;
	color: var(--theme-color);
}

img + .block-angles-bordered {
	margin-top: 0;
}

.block-item.border-left,
.block-item.border-right {
	padding: 30px 40px 25px;
	margin: 20px 0 30px;
	position: relative;
	border-radius: 10px;
}

.block-item.border-left h5 {
	padding: 0 0 15px;
	margin: 0 0 0;
}

/*  */

.block-share {
	font-size: 90%;
	padding: 0 0 0;
	margin: 15px 0 0;
	position: relative;
}

body .block-share p {
	padding: 0;
}

.btns-share {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.btns-share a {
	opacity: .6;
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
	padding: 0 0 0;
	margin: 0 0 0 25px;
}

.btns-share a i img {
	width: 20px;
}

.btns-share a:hover {
	opacity: 1;
}

/*  */

.sidebar-nav.border-left {
	padding: 0 0 0 20px;
	margin: 0 0 30px;
	text-align: left;
	list-style: none;
	max-width: 400px;
}

.sidebar-nav.border-left li {
	padding: 10px 0 10px;
	font-weight: 500;
}

.table-of-contents a.active {
	color: var(--theme-color);
}

.table-of-contents {
	font-size: 90%;
}

.table-of-contents h4 {
	font-size: 23px;
	font-weight: 600;
}

/* END of CSS for blog-article-page.php page */

.blog-info-item {
	gap: 10px;
	font-size: 80%;
	align-items: center;
	display: flex;
	font-weight: 500;
	padding: 0 0 2px;
}

.box-blog-article .tag-item {
	margin: 0 10px 20px 0;
	border-width: 1px;
	padding: 3px 20px 3px;
	font-size: 80%;
}

.box-blog-article strong {
	font-weight: 700;
}

.box-blog-article .tag-items-wr {
	padding: 0 0 5px;
}

.box-blog-article img {
	margin: 20px auto 20px;
	width:100%;
}

.box-blog-article .grid-sidebar {
	margin: 0 0 0;
	padding: 0 10px 0 0;
	font-size: 85%;
}

.block-img-with-text {
	padding: 0 0 0;
	margin: 20px 0 30px;
	min-height: 310px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.block-img-with-text .text-wr {
	padding: 25px 15px 25px 50px;
	margin: 0 0 0;
	width: 50%;
	position: relative;
}

body .block-img-with-text .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 50%;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

.block-img-with-text .img-wr img {
	height: 100%;
	padding: 0 0 0;
	margin: 0 0 0 auto;
}

.block-img-with-text h3 {
	font-size: 32px;
}

/*  */

.border-right {
	border-right: 4px solid var(--theme-color);
}

.border-left {
	border-left: 4px solid var(--theme-color);
}

/*  */

.tag-items-wr {
	position: relative;
	padding: 5px 0 5px;
}

.tag-item {
	padding: 6px 23px 6px;
	margin: 10px 2px 10px;
	font-size: 85%;
	font-weight: 600;
	border: 1px solid var(--theme-color);
	border-radius: 50px;
	position: relative;
	display: inline-flex;
}

.tag-item.bg-white {
	color: var(--theme-color-text);
}

html a.tag-item:hover {
	background: var(--theme-color) !important;
	color: #ffffff;
}

.selectedCategory {
	background: var(--theme-color);
}

/*  */

.blog-info-author {
	padding: 0 0 0;
	margin: 15px 0 15px;
	gap: 15px;
	position: relative;
	display: flex;
	align-items: center;
}

.blog-info-author div.img-rounded {
	min-width: 55px;
	width: 55px;
	height: 55px;
	border: 2px solid var(--theme-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-info-author .img-rounded img {
	display: block;
	padding: 0 0 0;
	margin: 0 0 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.blog-info-author h6 {
	font-size: 80%;
	padding: 0 0 0;
	margin: 0 0 0;
	line-height: 1.5;
}

/*  */

.block-header {
	padding: 0 0 50px;
	margin: 0 0 0;
	position: relative;
}

/*  */

body .checkbox-styled-btn {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: flex;
	align-items: center;
}

body .checkbox-styled-btn input {
	display: none;
}

body .btn-checkbox {
	padding: 7px 20px 7px;
	margin: 0 0 0;
	min-width: 110px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: all .3s ease;
}

body .btn-checkbox:hover {
	box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, .15);
}

body input:checked ~ .btn-checkbox {
	background: #000;
	color: #ffffff;
}

/*  */

.block-brofitability-calculator {
	padding: 35px 30px 10px;
	margin: 0 auto 30px;
}

.block-brofitability-calculator h3,
.block-brofitability-calculator h4 {
	padding: 0 0 10px;
}

.block-brofitability-calculator .checkbox-styled-btn {
	padding: 0 0 0;
	margin: 5px 0 0;
}

.block-brofitability-calculator .justify-content-center {
	margin: 0 0 33px;
}

.block-brofitability-calculator .btn-toggle-more-less {
	font-size: 16px;
	margin: 0 0 35px;
	display: inline-flex;
	align-items: center;
}

.block-brofitability-calculator .input-item {
	margin: 0 0 15px;
}

.btn-toggle-more-less i {
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}

body .input-item {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
}

/*  */

.block-thumbs {
	padding: 15px 0 20px;
	margin: 0 0 0;
}

.block-thumbs .text-center p {
	padding: 0 0 2px;
}

.block-thumbs .text-center {
	padding: 0 0 30px;
}

.thumb-item-product {
	padding: 20px 20px 20px;
	margin: 0 0 30px;
}

.thumb-item-product .img-wr {
	padding: 20px;
	margin: 0 0 0;
	min-width: 170px;
	width: 170px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumb-item-product .text-wr {
	padding: 0 25px 0 0;
	margin: 0 0 0;
	position: relative;
}

.thumb-item-product .thumb-item-product-body {
	gap: 25px;
	display: flex;
	align-items: center;
}

.thumb-item-product .thumb-item-product-footer {
	padding: 20px 0 0;
}

.thumb-item-product h4 {
	font-weight: 500;
	line-height: 1.45;
}

.thumb-item-product h6 {
	padding: 0 0 2px
}

.thumb-item-product .tag-item {
	margin: 0 0 0;
	font-weight: 600;
	border-width: 2px;
}

.thumb-item-product hr.display-inline-block {
	display: inline-block;
	height: 3px;
	width: 70px;
	margin: 0 0 0;
}

/*  */

.profit-item {
	padding: 10px 20px 10px;
	margin: 15px 10px 15px;
	min-width: 280px;
	display: inline-flex;
	text-align: left;
	flex-direction: column;
}

.profit-item strong {
	font-weight: 600;
}

.profit-item p {
	padding: 0 0 0;
}

.profit-item h2 {
	line-height: 1.1;
}

/*  */

.profit-row-items-wr {
	padding: 15px 10px 10px;
}

.profit-row-items-wr .row *:first-child .profit-row-cell {
	padding-left: 10px;
}

.profit-row-items-wr .row *:last-child .profit-row-cell {
	padding-right: 10px;
}

.profit-row {
	padding: 0 0 0;
	margin: 0 0 5px;
	font-size: 14px;
	position: relative;
}

.profit-row > .row > *:first-child {
	border-top-left-radius: inherit;
	border-bottom-left-radius: inherit;
}

.profit-row > .row > *:last-child {
	border-top-right-radius: inherit;
	border-bottom-right-radius: inherit;
}

.profit-row > * {
	border-radius: inherit;
	margin: 0 0 0;
}

.profit-row h6 {
	font-size: inherit;
	font-weight: 500;
	padding: 2px 0 2px;
}

.profit-row .row > * + * {
	border-left: 1px solid rgba(39, 39, 39, 0.2);
}

.profit-row h4 {
	padding: 0 0 1px;
}

.profit-row .tag-item {
	margin: 0 0 2px;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 15px 2px;
}

.profit-row p {
	padding: 0 0 3px;
}

.profit-row-cell {
	padding: 5px 0 5px;
	margin: 0 0 0;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*  */

.block-profit-rows {
	padding: 0 0 0;
	margin: 40px 0 40px;
	position: relative;
}

.block-profit-rows .profit-row .row > * + * {
	border-left: none;
}

.block-profit-rows .row *:first-child .profit-row-cell {
	padding-left: 10px;
}

.block-profit-rows .row *:last-child .profit-row-cell {
	margin-right: 10px;
}

.block-profit-rows .profit-row-cell {
	height: auto;
	padding: 0 10px 0 0;
	margin: 20px 0 20px;
}

/*  */

.table-with-heading {
	padding: 0 0 0;
	margin: 0 0 40px;
	font-size: 16px;
	width: 100%;
	position: relative;
}

.img-wr + .table-with-heading {
	margin-top: 40px;
}

.table-with-heading th,
.table-with-heading td {
	padding: 8px 5px 8px;
}

.table-with-heading th {
	font-size: 21px;
	padding: 13px 5px 13px;
}

.table-with-heading strong {
	font-weight: 600;
}

.table-with-heading h5 {
	padding: 12px 0 8px;
	font-size: inherit;
}

.table-with-heading td+td {
	border-left: 2px solid #ffffff;
}

.table-with-heading td.border-bottom {
	border-bottom: 2px solid #ffffff !important;
}

table.border-radius-10px {
	overflow: hidden;
}

.bg-black {
	background-color: #272727 !important;
	color: #ffffff;
}

.table-layout-fixed {
	table-layout: fixed;
}

/*  */

.tradingview-widget-container {
	max-width: 100%;
}

/*  */

.popup-wrapper {
	display: none;
	max-width: 1000px;
	font-size: 90%;
}

.press-release-block h6 {
	color: #677283;
	font-weight: 500;
	margin-bottom: 15px;
}

.press-release-block h4 {
	font-weight: 600;
}

.press-release-block a {
	text-decoration: underline;
}



































/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	font-size: 15px;
	padding: 25px 0 25px;
	margin: 0 0 0;
	position: relative;
}

footer .social-links {
	font-size: 20px;
	line-height: 1;
}








/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1400px) {
	.container {
		max-width: 1210px;
	}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 15px;
}
h1, .h1 {
	padding: 0 0 15px;
	font-size: 35px;
}
h2, .h2 {
	padding: 0 0 15px;
	font-size: 30px;
}
h3, .h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
h4, .h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5, .h5 {
	padding: 0 0 15px;
}
h6, .h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.grid-sidebar {
	margin: 0 0 0;
	padding: 0 0 0;
}
.grid-main-area {
	margin: 0 0 0;
	padding: 0 0 0;
}
.box-wr {
	padding: 60px 0 60px;
}
header a .bi {
	font-size: 140%;
	line-height: 1;
}
.header-main {
	padding: 15px 0 15px;
}
.header-top {
	padding: 5px 0 5px;
}
.form-search {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 300px;
}
.form-search input {
	padding: 4px 10px 2px 35px;
	margin: 0 0 0;
	font-size: 14px;
}
.form-search button {
	padding: 3px 0 0;
	margin: 0 2px 0;
}
#navbar .nav-link {
	padding: 5px 0 5px;
	margin: 0 0 0;
	font-size: 14px;
	line-height: 20px;
}
header + * {
	padding-top: 110px;
}
.breadcrumbs {
	font-size: 13px;
	padding: 0 0 0;
	margin: 0 0 15px;
}
.header-fixed .header-top {
	margin: -45px 0 0;
	max-height: 45px;
}
.thumb-item-product .img-wr {
	padding: 25px;
	min-width: 110px;
	width: 110px;
	overflow: hidden;
}
.profit-row {
	padding: 0 0 0;
	margin: 0 0 5px;
	font-size: 12px;
}



















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 13px;
}
h1, .h1 {
	padding: 0 0 15px;
	font-size: 35px;
}
h2, .h2 {
	padding: 0 0 15px;
	font-size: 30px;
}
h3, .h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
h4, .h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5, .h5 {
	padding: 0 0 15px;
}
h6, .h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
/*  */
.collapse:not(.show) {
	display: flex;
	left: -100vw;
	height: 100vh;
}
.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	position: static;
}
.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
	position: absolute;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 15%);
	top: 0;
	text-align: center;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100vw;
	height: 100vh;
	transition: all .5s ease;
}
.navbar-collapse.collapsing {
	transition: all .5s ease;
}
.navbar-collapse.collapse.show {
	left: 0;
	height: 100vh;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 0 15px 0;
}
#navbar .nav-link {
	padding: 5px 10px 5px;
	margin: 10px 0 10px;
	font-size: 20px;
	line-height: 30px;
}
#navbar .nav-link:before {
	content: none;
	display: none;
}
header .container {
	position: static;
}
.logo {
	position: relative;
	z-index: 5;
}
/*  */
.navbar-nav {
	gap: 0;
}




























}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 15px;
}
h1, .h1 {
	padding: 0 0 15px;
	font-size: 30px;
}
h2, .h2 {
	padding: 0 0 15px;
	font-size: 25px;
}
h3, .h3 {
	padding: 0 0 15px;
	font-size: 20px;
}
h4, .h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5, .h5 {
	padding: 0 0 15px;
}
h6, .h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.breadcrumbs {
	font-size: 11px;
	padding: 0 0 0;
	margin: 0 0 15px;
	flex-wrap: wrap;
}
body .hidden-xs {
	display: none;
}
.box-wr {
	padding: 45px 0 45px;
}
.author-img img {
	width: 30px;
}
.author-img .display-flex {
	gap: 5px;
}
.block-author h6 {
	margin: 0 0 0;
	padding: 3px 0 3px;
}
.table-simple {
	font-size: 12px;
	margin: 0 auto 20px
}
.table-simple td, .table-simple th {
	padding: 6px 6px 6px;
	margin: 0 0 0;
}
.slick-dots {
	bottom: -20px;
}
footer .text-left,
footer .text-right {
	text-align: center;
}
footer .social-links {
	font-size: 20px;
	margin: 15px 0 0;
}
.back-to-top {
	bottom: 5px;
	right: 5px;
	width: 26px;
	height: 26px;
}
i.bi.bi-key.color-theme {
	margin: 3px 0 0;
}
.logo {
	font-size: 25px;
}
.header-fixed ~ * .table-of-contents {
	top: 64px;
}
.table-of-contents {
	font-size: 100%;
	position: fixed;
	left: 0;
	right: 0;
	top: 64px;
	z-index: 50;
	background: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .15);
}
body .table-of-contents h4 {
	font-size: 22px;
	padding: 10px 15px 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0;
	background: var(--theme-color-light);
}
.table-of-contents .sidebar-nav {
	display: none;
}
body .table-of-contents h4:after {
	margin: 0 0 0 4px;
	line-height: 20px;
	font-size: 23px;
	content: "\f107";
	font-family: "FontAwesome";
}
.table-of-contents.active .sidebar-nav {
	display: block;
}
.box-blog-article .tag-item {
	margin: 0 10px 10px 0;
}
.box-blog-article .tag-items-wr {
	margin: 0 0 5px;
}
.block-img-with-text .text-wr {
	padding: 20px 15px 20px 25px;
	margin: 0 0 0;
	width: 50%;
	font-size: 85%;
	line-height: 1.5;
}
.block-img-with-text h3 {
	font-size: 18px;
}
.block-img-with-text .btn-main {
	padding: 5px 6px 5px;
	margin: 0 auto 0;
	font-size: 12px;
	line-height: 30px;
	min-width: 140px;
}
.block-img-with-text {
	padding: 0 0 0;
	margin: 10px 0 25px;
	min-height: 190px;
}
.block-angles-bordered {
	padding: 15px 20px 15px;
	margin: 10px 0 25px;
}
.social-links {
	padding: 0 0 0;
	margin: 2px 0 0;
}
.block-brofitability-calculator {
	padding: 20px 15px 10px;
	margin: 0 auto 20px;
}
.block-brofitability-calculator .justify-content-center {
	margin: 0 0 20px;
}
.justify-content-center {
	gap: 5px;
}
body .btn-checkbox {
	padding: 10px 20px 10px;
	margin: 0 0 0;
	min-width: 70px;
	font-size: 12px;
	line-height: 1.4;
}
body label h6 {
	font-size: 13px;
	padding: 0 0 3px;
}
.block-brofitability-calculator .btn-toggle-more-less {
	font-size: 14px;
	margin: 0 0 20px;
}
.block-simple {
	padding: 15px 15px 15px;
	margin: 0 0 20px;
}
.profit-item {
	padding: 10px 15px 10px;
	margin: 5px 2px 5px;
	min-width: 160px;
}
.profit-row-items-wr {
	padding: 15px 0 10px;
}
.profit-row > .row > [class*="col-"] {
	padding: 0 5px;
}
.profit-row {
	padding: 0 0 0;
	margin: 0 0 5px;
	font-size: 10px;
	line-height: 1.2;
}
.profit-row-items-wr .row *:first-child .profit-row-cell {
	padding-left: 5px;
}
.profit-row-items-wr .row *:last-child .profit-row-cell {
	padding-right: 5px;
}
.profit-row .display-flex {
	justify-content: flex-start;
	flex-direction: column;
}
.profit-row .display-flex.align-items-end {
	align-items: flex-start !important;
}
.profit-row h4 {
	padding: 0 0 0;
	font-size: 15px;
}
.block-thumbs {
	padding: 10px 0 10px;
}
.block-thumbs .text-center {
	padding: 0 0 20px;
}
.thumb-item-product {
	padding: 20px 20px 20px;
	margin: 0 0 15px;
}
.block-profit-rows {
	padding: 0 0 0;
	margin: 25px 0 25px;
}
.block-profit-rows .profit-row h4 {
	padding: 0 0 0;
	font-size: 11px;
}
.block-profit-rows .profit-row > * {
	margin: 0 0 0;
	align-items: center;
}
.block-profit-rows .row *:first-child .profit-row-cell {
	padding: 10px 0 10px 3px;
}
.block-profit-rows .profit-row-cell {
	padding: 0 8px 0 0;
	margin: 10px 0 10px;
}
.table-with-heading th, .table-with-heading td {
	padding: 5px 5px 4px;
	vertical-align: middle;
}
.table-with-heading th {
	font-size: 16px;
	padding: 10px 5px 10px;
}
.table-with-heading h5 {
	padding: 5px 0 5px;
	font-size: 13px;
	line-height: 1.4;
}
.table-with-heading {
	padding: 0 0 0;
	margin: 0 0 25px;
	font-size: 12px;
}
.img-wr + .table-with-heading {
	margin-top: 25px;
}
.fancybox-content {
	padding: 20px;
}
.popup-wrapper {
	font-size: 100%;
}
.tradingview-widget-container {
    max-width: 100%;
    width: 100% !important;
    max-height: 300px;
    height: 300px !important;
}
.height-larger-on-mobile .tradingview-widget-container {
    max-height: 450px;
    height: 450px !important;
}























}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 575px) {













}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
