/*
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: 'Campton';
	src: url('fonts/Campton/campton-book.woff2') format('woff2'),
		 url('fonts/Campton/campton-book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Campton';
	src: url('fonts/Campton/campton-light.woff2') format('woff2'),
		 url('fonts/Campton/campton-light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Campton';
	src: url('fonts/Campton/campton-medium.woff2') format('woff2'),
		 url('fonts/Campton/campton-medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Campton';
	src: url('fonts/Campton/campton-semibold.woff2') format('woff2'),
		 url('fonts/Campton/campton-semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Campton';
	src: url('fonts/Campton/campton-bold.woff2') format('woff2'),
		 url('fonts/Campton/campton-bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Campton';
	src: url('fonts/Campton/campton-black.woff2') format('woff2'),
		 url('fonts/Campton/campton-black.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: 'Campton', sans-serif;
	font-size: 16px;
	line-height: 1.85;
	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 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 68px;
	line-height: 1.05;
	font-weight: 700;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 700;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 34px;
	line-height: 1.2;
	font-weight: 400;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 400;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 18px;
	line-height: 1.667;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 16px;
}

blockquote {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 26px;
	line-height: 1.6;
	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:not(.mega_menu-icons),
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: 25px 0 25px;
	background: transparent;
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

header + * {
	padding-top: 0;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}*/
/*
.header-fixed {
	position: fixed;
	background-color: var(--theme-color-dark);
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .25);
}*/
/*
.logo {
	float: none;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 120px;
	height: 40px;
	color: transparent;
	font-size: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('img/rexmd-logo-light.svg');
}

.logo img {
	display: block;
}*/
/*
header a {
	color: inherit;
}*/
/*
body header .btn-main {
	padding: 5px 10px 5px;
	margin: 0 auto 0;
	font-size: 12px;
	line-height: 30px;
	min-width: 150px;
	letter-spacing: 0.05em;
	gap: 15px;
	border-radius: 5px;
}*/
/*
header .btn-main i {
	font-size: 80%;
}

header {
}

header {
}



*/









.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 {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
	border-top: 1px solid var(--theme-color-brown);
}

.navbar-nav > li:last-child {
	border-bottom: 1px solid var(--theme-color-brown);
}

#navbar .nav-link {
	padding: 0 0 0;
	margin: 0 0 0 10px;
	font-size: 16px;
	line-height: 20px;
	display: flex;
	color: inherit;
	background: transparent;
	font-weight: 400;
	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: 0 0 0;
	margin: 0 0 15px;
	position: relative;
	left: 0;
	top: 0;
	display: none;
	background: transparent;
	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: var(--theme-color);
	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);
}

/*  */

.collapse:not(.show) {
	display: flex;
	right: -100vw;
}
.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;
	right: 0;
	left: auto;
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 15%);
	top: 0;
	text-align: left;
	background: var(--theme-color-secondary);
	background: linear-gradient(128deg, var(--theme-color-dark) 0%, var(--theme-color-secondary) 100%);
	color: #ffffff;
	display: block;
	width: 100vw;
/* 	max-width: 760px; */
	height: 100vh;
	transition: all .3s ease;
}
.navbar-collapse.collapsing {
	transition: all .3s ease;
}
.navbar-collapse.collapse.show {
	left: auto;
	right: 0;
	height: 100vh;
	overflow: auto;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 15px 0 50px;
}
#navbar .nav-link {
	padding: 10px 0 10px;
	margin: 0 0 0;
	font-size: 20px;
	line-height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#navbar .nav-link:before {
	content: none;
	display: none;
}
/*
header .container {
	position: static;
}*/
.logo {
	position: relative;
	z-index: 5;
}
/*  */

body .navbar h2 {
	padding: 0 0 5px;
}

body .navbar h5.color-brown {
	padding: 0 0 10px;
}

body .navbar i.fa.fa-circle {
	font-size: 10px;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 0 0 10px;
}

body .navbar a:hover .fa {
	color: var(--theme-color);
}

.nav-column {
	padding: 100px 50px 50px;
	margin: 0 0 0;
	position: relative;
}

.navbar .bg-black .nav-column {
	margin: 0 0 0;
}

.navbar .scrollbar-styled {
	margin: 15px -30px 0 0;
	padding: 0 30px 0 0;
	max-height: 80vh;
	overflow: auto;
}

body .img-thumb {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

body .img-thumb .img-overlay {
	padding: 10px 15px 20px;
	margin: 0 0 0;
	min-height: 300px;
	aspect-ratio: 19 / 26;
	position: relative;
	border-radius: inherit;
	display: flex;
	flex-direction: column;
}

body .img-thumb .img-overlay > * {
	position: relative;
}

body .img-thumb .img-overlay:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all .3s ease;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(17, 20, 35, 0.16) 0%, rgba(12.01, 63.03, 120.06, 0.80) 100%);
	opacity: 1;
}

body .img-thumb:hover .img-overlay:before {
	opacity: .5;
}

body .img-thumb .btn-info {
	display: inline-flex;
	margin: 0 0 auto auto;
}

body .img-thumb .btn-main {
	margin: 0 0 0;
	max-width: 200px;
	outline-color: var(--theme-color-green);
}

body .img-thumb h5 {
	padding: 0 0 0;
	font-size: 16px;
	font-weight: 500;
}

body .img-thumb h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 13px;
}
/*
header > .container-fluid {
	padding-left: 30px;
	padding-right: 30px;
}
*/
/*  */

/* width */
.scrollbar-styled::-webkit-scrollbar,
.scrollbar-styled *::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

/* Track */
.scrollbar-styled::-webkit-scrollbar-track,
.scrollbar-styled *::-webkit-scrollbar-track {
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, .15);
	border-radius: 10px;
}

/* Handle */
.scrollbar-styled::-webkit-scrollbar-thumb,
.scrollbar-styled *::-webkit-scrollbar-thumb {
	background: var(--theme-color-green);
	border-radius: 10px;
	cursor: pointer;
}

/* Handle on hover */
.scrollbar-styled::-webkit-scrollbar-thumb:hover,
.scrollbar-styled *::-webkit-scrollbar-thumb:hover {
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

/*  */

/* 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: #008d36;
	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;
}

.content > .box-blog-article:not(.box-top-banner):first-child {
	padding-top: 90px;
}
.box-wr {
	padding: 80px 0 80px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

:root {
	--theme-color: rgba(179, 31, 36, 1);
	--theme-color-secondary: rgba(33, 47, 114, 1);
	--theme-color-dark: rgba(18, 22, 40, 1);
	--theme-color-text: #111423;
	--theme-color-brown: #DDBD7C;
	--theme-color-green: #23F197;
}

/*  */

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-gray {
	background-color: #efefef;
	background-color: rgba(17, 20, 35, 0.05);
}

html body .bg-black {
	color: #ffffff;
	background-color: var(--theme-color-text);
}

html body .bg-theme {
	background-color: var(--theme-color);
	color: #ffffff;
}

html body .bg-theme-secondary {
	background-color: var(--theme-color-secondary);
	color: #ffffff;
}

html body .bg-theme-dark {
	background-color: var(--theme-color-dark);
	color: #ffffff;
}

html body .bg-theme-secondary-semitransparent {
	background: linear-gradient(128deg, rgba(18, 22, 40, .8) 0%, rgba(33, 47, 114, .8) 100%);
	color: #ffffff;
}

html body .bg-theme-green {
	background-color: var(--theme-color-green);
	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-brown {
	color: var(--theme-color-brown);
}

html body .color-green {
	color: var(--theme-color-green);
}

.color-semitransparent {
	opacity: .4;
	transition: all .3s ease;
}

.color-semitransparent:hover {
	opacity: 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;
}

/*  */

.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%;
}

/*  */

.bg-fixed {
	background-attachment: fixed;
}

/*  */

.slick-prev, .slick-next {
	width: 55px;
	height: 55px;
	margin: 0 0 0;
	transition: all .3s ease;
	z-index: 5;
	font-size: 0;
	color: transparent;
	cursor: pointer;
	background: transparent;
}

.slick-prev {
	left: 15px;
}

.slick-next {
	right: 15px;
}

.slick-prev:hover,.slick-next:hover {
	opacity: 1;
	margin: 0 -5px;
}

.slick-prev:before, .slick-next:before {
	width: 55px;
	height: 55px;
	line-height: 50px;
	font-size: 35px;
	border-radius: 55px;
	text-align: center;
	font-family: "FontAwesome";
	color: #000000;
	color: var(--theme-color);
	opacity: 1;
	transition: all .3s ease;
	border: 2px solid var(--theme-color);
	display: block;
	box-sizing: border-box;
}

.slick-prev:before {
	content: "\f104";
	padding-right: 4px;
	display: none;
}

.slick-next:before {
	content: "\f105";
	padding-left: 4px;
	display: none;
}

/*  */

.slider-arrow-bottom-left .slick-prev, .slider-arrow-bottom-left .slick-next {
	top: auto;
	bottom: -100px;
}

.slider-arrow-bottom-left .slick-prev {
	left: 15px;
}

.slider-arrow-bottom-left .slick-next {
	left: 75px;
}

.slider-arrow-bottom-left .slick-next:hover {
	margin: 0 5px;
}

.slider-arrow-bottom-left {
	margin-bottom: 120px;
}

/*  */

.slider-arrow-bottom-center .slick-prev, .slider-arrow-bottom-center .slick-next {
	top: auto;
	bottom: -100px;
}

.slider-arrow-bottom-center .slick-prev {
	right: 51%;
	left: auto;
}

.slider-arrow-bottom-center .slick-next {
	left: 51%;
	right: auto;
}

.slider-arrow-bottom-center .slick-prev:hover,
.slider-arrow-bottom-center .slick-next:hover {
	margin: 0 5px;
}

.slider-arrow-bottom-center {
	margin-bottom: 120px;
}

/*  */

.slider-arrow-top-right .slick-prev, .slider-arrow-top-right .slick-next {
	top: -60px;
	bottom: auto;
}

.slider-arrow-top-right .slick-prev {
	right: 80px;
	left: auto;
}

.slider-arrow-top-right .slick-next {
	left: 0;
	left: auto;
	right: 10px;
	background: transparent url(https://res.cloudinary.com/conversion-labs-inc/image/upload/f_auto,q_auto/v1606687279/RexMD/arrow-right_d6wmpy.png) no-repeat center;
}

.slider-arrow-top-right .slick-prev:hover,
.slider-arrow-top-right .slick-next:hover {
	margin: 0 5px;
}

.slider-arrow-top-right .slick-next:hover {
	margin: 0 -5px;
	background: transparent url(https://res.cloudinary.com/conversion-labs-inc/image/upload/f_auto,q_auto/v1606687279/RexMD/arrow-right_d6wmpy.png) no-repeat center;
}

/*  */

body .slider-dots-hide .slick-dots {
	display: none;
	visibility: hidden;
}

body .slider-arrows-hide .slick-arrow {
	display: none;
	visibility: hidden;
}

/*  */

.slider-3-per-row {
	margin: 0 -15px 0;
}

.slider-3-per-row .slide-item {
	padding: 0 15px 0;
}

/*  */

.slick-dots li button:before {
	font-size: 12px;
	line-height: 20px;
	opacity: 1;
	color: #7c7c7c;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--theme-color);
}

/*  */

.row-reverse {
	flex-direction: row-reverse;
}


















/*  */

body .btn-main {
	padding: 12px 30px 12px;
	margin: 0 auto 0;
	font-size: 16px;
	line-height: 30px;
	min-width: 230px;
	font-weight: 400;
	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: 20px;
	border-radius: 5px;

	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.bg-transparent {
	color: inherit;
}

body .btn-main strong {
	font-weight: 600;
}

/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 10px 20px 10px;
	font-size: 16px;
	line-height: 20px;
	color: #333333;
	background-color: #ffffff;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #cccccc;
	border-radius: 3px;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: #333333;
	border-color: #666666;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: #333333;
	border-color: #666666;
	opacity: 1;
}

form label {
	display: block;
}

*::-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;
}

/*  */

body .box-top-banner {
	padding: 0 0 0;
	margin: 0 0 0;
}

.box-top-banner .img-overlay {
	padding: 90px 0 60px;
	margin: 0 0 0;
	min-height: 340px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*  */

.grid-main-area {
	padding: 0 75px 0 0;
	margin: 0 0 0;
	position: relative;
}

.grid-main-area a:not(.btn-main){
	color:var(--theme-color);
}

.grid-sidebar-right {
	padding: 0 0 0;
	margin: 0 0 0 -28px;
	position: relative;
}

/*  */

.blog-thumbs-wr {
	padding: 0 0 0;
	margin: 0 0 60px;
	position: relative;
}

.blog-thumb-item {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.blog-thumb-item .img-wr {
	width: 265px;
	min-width: 265px;
	height: 265px;
	padding: 0 0 0;
	margin: 0 0 0;
}

.blog-thumb-item .text-wr {
	padding: 0 30px 0 0;
	margin: 0 0 0;
}

.blog-thumb-item strong {
	font-weight: 600;
}

.blog-thumb-item .img-wr a:hover {
	opacity: 1;
}

.blog-thumb-item .img-wr a:hover:before {
	opacity: 0;
}

.blog-thumb-item .img-wr a:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all .3s ease;
	z-index: 5;
	border-radius: inherit;
	/*background: linear-gradient(180deg, rgba(17, 20, 35, 0.16) 0%, rgba(12.01, 63.03, 120.06, 0.80) 100%);*/
	opacity: 1;
}

.blog-thumb-item a:hover {
	color: var(--theme-color);
	opacity: 1;
}

.blog-thumb-item h4 {
	font-size: 22px;
	margin: 0 0 15px;
	padding: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-thumb-item p {
	font-size: 18px;
	line-height: 1.65;
	margin: 0 0 15px;
	padding: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-author-info {
	padding: 0 0 0;
	margin: 15px 0 0;
	gap: 12px;
	font-size: 95%;
	display: inline-flex;
	align-items: center;
}

.blog-author-info i.img-rounded {
	width: 30px;
	height: 30px;
	min-width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-author-info i img {
	display: block;
	padding: 0 0 0;
	margin: 0 0 0;
	object-fit: cover;
}

body .blog-thumb-item-vertical {
	flex-direction: column;
}

body .blog-thumb-item-vertical .img-wr {
	width: 100%;
	height: 290px;
	margin: 0 0 15px;
}

body .blog-thumb-item-vertical .img-wr a {
	height: 100%;
	border-radius: 50%;
	max-width: 300px;
	max-height: 300px;
}

body .blog-thumb-item-vertical .img-wr img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	padding: 0 0 0;
	margin: 0 0 0;
}

body .blog-thumb-item-vertical .text-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

/*  */

body .list-with-icons {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .list-with-icons li {
	gap: 20px;
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	list-style: none;
	display: flex;
	align-items: center;
}

body .list-with-icons .icon-item {
	min-width: 60px;
	width: 60px;
	height: 60px;
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

body .list-with-icons .icon-item img {
	display: block;
	padding: 0 0 0;
	margin: 0 0 0;
}

body .list-with-icons .text-item {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.blog-nav {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
}

.blog-nav > .display-flex {
	padding: 20px 35px 20px;
}

.blog-nav > .display-flex h4 {
	display: flex;
	gap: 10px;
	align-items: center;
}

.blog-nav .list-with-icons li {
	padding: 16px 35px 16px;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.blog-nav strong {
	font-weight: 600;
}

/* 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;
}

.grid-main-area li {
	list-style: disc;
}

.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;
}


table, th, td {
	border: 1px solid;
	margin-bottom: 25px;
	margin-top: 10px;
	padding: 8px;
}

table {
	border-collapse: collapse;
}

thead tr {
	background: var(--theme-color);
	color: #fff;
}

/* END of CSS for blog-article-page.php page */

/* BEGIN css for blog article slider */

.slider-3-per-row .slick-arrow {
	background: transparent;
	width: 55px;
	height: 55px;
	margin-top: 0;
}

.block-slider {
	padding: 30px 0 0;
}

.block-slider h4 strong {
	font-size: 28px;
	font-weight: 600;
}

.grid-main-area .slider-3-per-row {
	margin: 5px -5px 30px;
}

.grid-main-area .slider-3-per-row .slide-item {
	padding: 0 5px;
}

.tile-item {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.tile-item h5 {
	font-size: 16px;
	font-weight: 400;
	padding: 8px 0 0;
	line-height: 1;
	margin: 0 0 0;
}

.tile-item h6 {
	font-size: 15px;
	font-weight: 400;
	padding: 0 0 0;
	margin: 0 0 0;
}

.tile-item .tile-item-header {
	padding: 20px 20px 10px;
	margin: 0 0 0;
	min-height: 110px;
}

.tile-item .tile-item-header h4 {
	font-size: 21px;
	line-height: 1.33;
	font-weight: 500;
	padding: 0 0 0;
	margin: 0 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tile-item .tile-item-img {
	padding: 0 0 0;
	margin: 0 0 0;
}

.tile-item .tile-item-img img {
	padding: 0 0 0;
	margin: 0 0 0;
}

.tile-item .tile-item-btns {
	padding: 5px 22px 20px;
	margin: 0 0 0;
}

.tile-item .btn-main {
	margin: 0 0 0;
	padding: 4px 15px 4px;
	margin: 0 auto 0;
	font-size: 14px;
	line-height: 30px;
	min-width: 140px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: inherit;
	border-radius: 10px;
}

.tile-item .display-flex {
	flex-wrap: wrap;
}

.btn-main.bg-theme-green:not(:hover) {
	outline-color: var(--theme-color-green);
}

body .icon-online {
	margin: -2px 5px 0 0;
	padding: 0 0 0;
	width: 10px;
	height: 10px;
	background: var(--theme-color-green);
	border-radius: 50px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
}

/* END css for blog article slider */



.blog-info-item {
	gap: 10px;
	font-size: 85%;
	align-items: center;
	display: flex;
	font-weight: 500;
	padding: 0 0 2px;
}

.box-blog-article .tag-item {
	margin: 0 10px 20px 0;
	border-width: 2px;
	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 .h2 {
	font-size: 42px;
	padding: 0 0 10px;
}

.box-blog-article img {
	margin: 20px auto 20px;
	width:100%;
}

.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;	
	object-fit: cover;
    object-position: top left;
}

.block-img-with-text h3 {
	font-size: 32px;
}

/*  */

.border-right {
	border-right: 3px solid var(--theme-color);
}

.border-left {
	border-left: 3px 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 .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-bordered {
	border: 2px solid var(--theme-color);
}

/*  */

.block-header {
	padding: 0 0 50px;
	margin: 0 0 0;
	position: relative;
}

/*  */

body div.current_promo_banner strong b {
	font-weight: 700;
}

body .header_menu {
	padding: 0 0 0;
}









































/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	margin: 0 0 0;
	padding: 0 0 0;
	position: relative;
}

footer ul {
	font-size: 90%;
	padding: 0 0 20px;
	margin: 0 0 0;
}

footer li {
	padding: 0 0 0;
	margin: 0 0 8px;
	list-style: none;
}

footer h5 {
	font-size: 14px;
}

footer .logo {
	margin: 0 0 20px;
}

.list-inline {
	padding: 0 0 0;
	margin: 0 0 0;
}

.list-inline li {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
	display: inline-block;
}

.list-inline li+li:before {
	content: "| ";
	padding: 0 0 0;
	margin: 0 10px 0;
}

/*.footer-top {
	padding: 120px 0 30px;
	margin: 100px 0 0;
	position: relative;
}

.footer-top:before {
	margin: -90px auto 0;
	width: 540px;
	height: 180px;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background-image: url('img/rexmd-logo-light.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	!* 	filter: drop-shadow(0px 0px 25px var(--theme-color-dark)); *!
	filter: drop-shadow(0px 0px 25px rgba(18,22,40, .4)) drop-shadow(0px 0px 20px rgba(255,255,255, .5));
	!* 	opacity: .5; *!
}

.footer-top:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100px;
	background: var(--theme-color-dark);
	opacity: .6;
}*/

.footer-main {
	padding: 30px 0 20px;
	margin: 0 0 0;
}

.footer-main li a {
	position: relative;
	left: 0;
}

.footer-main li a:hover {
	left: 5px;
}

.footer-bottom {
	margin: 0 0 0;
	padding: 20px 0 50px;
	font-size: 13px;
}

.footer-bottom h6 {
	font-size: 12px;
}

.social-links {
	padding: 0 0 0;
	margin: 0 0 0;
	gap: 20px;
	display: inline-flex;
	align-items: center;
}

.social-links a {
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 50px;
	line-height: 1;
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}



/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (min-width: 1460px) {
.container {
	min-width: 1460px;
}
.container-1300px {
	max-width: 1330px;
	min-width: 1330px;
}
.container-1200px {
	max-width: 1230px;
	min-width: 1230px;
}
.container-1030px {
	max-width: 1060px;
}






}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1459px) {
.grid-main-area {
	padding: 0 30px 0 0;
	margin: 0 0 0;
}
.blog-nav .list-with-icons li {
	padding: 15px 25px 15px;
}
body .navbar h2 {
	padding: 0 0 5px;
	font-size: 35px;
}























}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 14px;
	line-height: 1.85;
}
h1 {
	padding: 0 0 15px;
	font-size: 50px;
	line-height: 1.05;
}
h2 {
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.2;
}
h3 {
	padding: 0 0 15px;
	font-size: 30px;
	line-height: 1.2;
}
h4 {
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
}
h5 {
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.667;
}
h6 {
	padding: 0 0 15px;
	font-size: 13px;
}
blockquote {
	padding: 0 0 15px;
	font-size: 22px;
}
.box-wr {
	padding: 60px 0 60px;
}
.box-top-banner .img-overlay {
	padding: 150px 0 50px;
	margin: 0 0 0;
	min-height: 300px;
}
.blog-nav > .display-flex {
	padding: 20px 20px 20px;
}
.blog-thumb-item {
	padding: 0 0 0;
	margin: 0 0 15px;
}
.blog-thumb-item .img-wr {
	width: 170px;
	min-width: 170px;
	height: 170px;
	padding: 0 0 0;
	margin: 0 0 0;
}
.blog-thumb-item h4 {
	font-size: 19px;
}
.blog-thumb-item p {
	font-size: inherit;
}
.blog-author-info {
	padding: 0 0 0;
	margin: 5px 0 0;
	gap: 10px;
}
body .list-with-icons .icon-item {
	min-width: 50px;
	width: 50px;
	height: 50px;
}
.blog-nav .list-with-icons li {
	padding: 15px 20px 15px;
	gap: 15px;
}
.bg-fixed {
	background-attachment: initial;
}
body .img-thumb .btn-main {
	margin: 0 0 0;
	max-width: 100px;
}
body .img-thumb .img-overlay {
	padding: 10px 15px 20px;
	margin: 0 0 0;
	min-height: 200px;
	aspect-ratio: 19 / 28;
}
body .img-thumb .btn-main {
	margin: 0 0 0;
	max-width: 130px;
	font-size: 10px;
	gap: 10px;
	padding: 2px 10px 2px;
	min-width: 100px;
}
body .img-thumb h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 11px;
}
.nav-column {
	padding: 70px 20px 40px;
}
.navbar .scrollbar-styled {
	margin: 15px -20px 0 0;
	padding: 0 15px 0 0;
	max-height: 80vh;
}














}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 13px;
	line-height: 1.85;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.05;
}
h2 {
	padding: 0 0 15px;
	font-size: 35px;
	line-height: 1.2;
}
h3 {
	padding: 0 0 15px;
	font-size: 25px;
	line-height: 1.2;
}
h4 {
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
}
h5 {
	padding: 0 0 15px;
	font-size: 15px;
	line-height: 1.667;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
blockquote {
	padding: 0 0 15px;
	font-size: 20px;
}

.box-wr {
	padding: 50px 0 50px;
}
.grid-main-area {
	padding: 0 0 35px 0;
	margin: 0 0 0;
}
.grid-sidebar-right {
	padding: 0 0 0;
	margin: 0 0 0;
}
.blog-nav {
	padding: 0 0 0;
	margin: 0 0 15px;
}
.box-blog-article .h2 {
	font-size: 30px;
	padding: 0 0 10px;
}
.block-img-with-text h3 {
	font-size: 20px;
}
body .btn-main {
	padding: 8px 15px 8px;
	margin: 0 auto 0;
	font-size: 14px;
	line-height: 30px;
	min-width: 160px;
	letter-spacing: 0.05em;
	width: auto;
	gap: 10px;
}
.block-img-with-text {
	padding: 0 0 0;
	margin: 10px 0 25px;
	min-height: 250px;
}
.block-img-with-text .text-wr {
	padding: 20px 15px 20px 25px;
	margin: 0 0 0;
	width: 50%;
}
.block-angles-bordered {
	padding: 15px 20px 15px;
	margin: 10px 0 25px;
}
.block-item.border-left, .block-item.border-right {
	padding: 15px 25px 15px;
	margin: 10px 0 25px;
}
.box-blog-article .video-wr {
	margin: 10px auto 20px;
	padding: 0 0 0;
}
.slick-prev:before, .slick-next:before {
	width: 40px;
	height: 40px;
	line-height: 35px;
	font-size: 25px;
}
.slick-prev, .slick-next {
	width: 40px;
	height: 40px;
}
.slider-arrow-top-right .slick-prev {
	right: 65px;
	left: auto;
}
.slider-arrow-top-right .slick-prev, .slider-arrow-top-right .slick-next {
	top: -45px;
	bottom: auto;
}
.block-header {
	padding: 0 0 30px
}
.navbar .scrollbar-styled {
	margin: 15px 0 0;
	padding: 0 0 0;
	max-height: 100000px;
}
















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 14px;
	line-height: 1.85;
}
h1 {
	padding: 0 0 15px;
	font-size: 35px;
	line-height: 1.05;
}
h2 {
	padding: 0 0 15px;
	font-size: 30px;
	line-height: 1.2;
}
h3 {
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
}
h4 {
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
}
h5 {
	padding: 0 0 15px;
	font-size: 15px;
	line-height: 1.667;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
blockquote {
	padding: 0 0 15px;
	font-size: 20px;
}
.box-wr {
	padding: 45px 0 45px;
}
.content > .box-blog-article:not(.box-top-banner):first-child {
	padding-top: 50px;
}

body .blog-thumb-item-vertical .img-wr a {
	height: 100%;
	border-radius: 50%;
	max-width: 250px;
	max-height: 250px;
}

.table-of-contents {
	font-size: 100%;
	position: fixed;
	left: 0;
	right: 0;
	top: 0px;
	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;
}
body header .btn-main {
	padding: 1px 6px 1px;
	margin: 0 auto 0;
	font-size: 11px;
	line-height: 30px;
	min-width: 110px;
	letter-spacing: 0.05em;
	gap: 5px;
	border-radius: 5px;
}
.box-top-banner .img-overlay {
	padding: 150px 0 30px;
	margin: 0 0 0;
	min-height: 270px;
}
.box-blog-article .tag-item {
	margin: 0 10px 10px 0;
}
.block-img-with-text .btn-main {
	padding: 5px 10px 5px;
	margin: 0 auto 0;
	font-size: 12px;
	line-height: 30px;
	min-width: 130px;
	letter-spacing: 0.05em;
	width: auto;
	gap: 10px;
}
.block-img-with-text h3 {
	padding: 0 0 10px;
	font-size: 16px;
}
.block-img-with-text p {
	padding: 0 0 10px;
}
.block-img-with-text {
	padding: 0 0 0;
	margin: 10px 0 25px;
	min-height: 190px;
}
.block-img-with-text .text-wr {
	padding: 20px 15px 20px 25px;
	margin: 0 0 0;
	width: 50%;
	font-size: 85%;
	line-height: 1.5;
}
.blog-thumb-item h4 {
	font-size: 16px;
	padding: 0 0 0;
	margin: 0 0 5px;
}
.blog-thumb-item p {
	margin: 0 0 5px;
	font-size: 90%;
}
.blog-author-info {
	padding: 0 0 0;
	margin: 5px 0 0;
	gap: 5px;
	line-height: 1.3;
	font-size: 85%;
}
.blog-thumb-item .img-wr {
	width: 150px;
	min-width: 150px;
	height: 150px;
	padding: 0 0 0;
	margin: 0 0 0;
}
.blog-info-author {
	padding: 0 0 0;
	margin: 10px 0 0;
}
body .blog-thumb-item-vertical .img-wr {
	width: 100%;
	height: 230px;
	margin: 0 0 15px;
}
body .navbar h2 {
	padding: 0 0 5px;
	font-size: 30px;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 25px;
}
.nav-column {
	padding: 70px 15px 30px;
}
#navbar .nav-link {
	padding: 6px 0 6px;
	margin: 0 0 0;
	font-size: 18px;
	line-height: 30px;
}

.navbar .bg-black .nav-column {
	margin: 0 0 0;
	padding-top: 25px;
}
.navbar .scrollbar-styled [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}
.navbar .scrollbar-styled .row {
	margin-left: -5px;
	margin-right: -5px;
}
body .img-thumb h5 {
	padding: 0 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}
body .img-thumb {
	padding: 0 0 0;
	margin: 0 0 10px;
}
.navbar .scrollbar-styled {
	margin: 15px -10px 0 0;
	padding: 0 0 0;
}
/*.footer-top:before {
	margin: -60px auto 0;
	width: 350px;
	height: 120px;
}
.footer-top {
	padding: 80px 0 20px;
	margin: 50px 0 0;
}*/
footer .text-left, footer .text-right {
	text-align: center;
}
footer .logo {
	margin: 0 auto 15px;
}
.footer-main {
	padding: 10px 0 20px;
	margin: 0 0 0;
}
footer h5 {
	font-size: 14px;
	padding: 0 0 5px;
}
.footer-bottom {
	margin: 0 0 0;
	padding: 10px 0 20px;
	font-size: 12px;
}
footer .col-6 {
	padding-bottom: 30px;
}
footer li {
	padding: 0 0 0;
	margin: 0 0 4px;
}

















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 575px) {













}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
