*:focus {
	outline: 0 !important;
	box-shadow: none !important;
}

html,
body {
	overflow-x: hidden;
}

body {
	padding-top: 101px;
	font-family: 'Barlow', sans-serif;
}

@media (min-width: 576px) {

	body {
		padding-top: 114px;
	}

}

::-moz-selection {
	background: #22c1c3;
    color: #fff;
}
::selection {
	background: #22c1c3;
    color: #fff;
}

/* ---------------- */
/* ----- TEXT ----- */
/* ---------------- */

h1, .h1 {
	margin-bottom: 1.5rem;
	font-size: 2.2rem;
}

@media (min-width: 992px) {

	h1, .h1 {
		font-size: 2.5rem;
	}

}

h2, .h2 {
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
}

@media (min-width: 992px) {

	h2, .h2 {
		font-size: 2rem;
	}

}

h3, .h3 {
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

@media (min-width: 992px) {

	h3, .h3 {
		font-size: 1.75rem;
	}

}

h4, .h4 {
	font-size: 1.15rem;
}

@media (min-width: 992px) {

	h4, .h4 {
		font-size: 1.5rem;
	}

}

ul, ol {
	margin-bottom: 1.5rem;
}

p {
	margin-bottom: 1.5rem;
}

.lead {
	font-size: 1.1rem;
}

@media (min-width: 992px) {

	.lead {
		font-size: 1.25rem;
	}

}

a,
a:hover,
a.btn-link,
a.btn-link:hover {
	color: #2d9afd;
}

img.lazy {
	opacity: 0;
	-webkit-transition: opacity .3s ease-in;
	transition: opacity .3s ease-in;
}

blockquote {
	position: relative;
	padding: 1.5rem 0 1.5rem 3rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

blockquote:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: rgb(34,193,195);
    background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
}

blockquote > *:last-of-type {
	margin-bottom: 0;
}

/* ------------------ */
/* ----- IMAGES ----- */
/* ------------------ */

.cover-image-wrapper {
	position: relative;
}

.cover-image-wrapper > img {
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}

a.cover-image-wrapper {
	display: block;
}

.cover-image-wrapper.rounded {
	overflow: hidden;
}

.contain-image-wrapper {
	position: relative;
	height: 0;
	padding-top: 100%;
	width: 100%;
}

.contain-image-wrapper > img {
	object-fit: contain;
	object-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

/* ----------------- */
/* ----- FORMS ----- */
/* ----------------- */

input[type="range"]::-webkit-slider-thumb {
	background-color: rgb(34,193,195);
}

input[type="range"]:focus::-webkit-slider-thumb {
	background-color: rgb(45,154,253);
}

/* ------------------ */
/* ----- COLORS ----- */
/* ------------------ */

.bg-dark.text-light a {
	color: #f8f9fa!important;
}

.bg-dark hr {
	border-color: #555;
}

.bg-gradient-primary {
	background: rgb(34,193,195);
    background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
}

.bg-gradient-primary hr {
	border-color: #f8f9fa;
	opacity: .3;
}

/* ------------------- */
/* ----- BUTTONS ----- */
/* ------------------- */

.btn {
	border: 0 none;
	padding: .75rem 1.5rem;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn.btn-primary {
	border: 0 none;
	padding: .75rem 1.5rem;
	background: rgb(34,193,195);
	background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #fff;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.btn.btn-primary:hover {
	-webkit-box-shadow:inset 0px 0px 0px 2px #2d9afd;
    -moz-box-shadow:inset 0px 0px 0px 2px #2d9afd;
    box-shadow:inset 0px 0px 0px 2px #2d9afd;
	color: #2d9afd;
	background: transparent !important;
}

.btn.btn-light {
	border: 0 none;
	padding: .75rem 1.5rem;
	background: #f8f9fa;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #212529;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.btn.btn-light:hover {
	-webkit-box-shadow:inset 0px 0px 0px 2px #f8f9fa;
    -moz-box-shadow:inset 0px 0px 0px 2px #f8f9fa;
    box-shadow:inset 0px 0px 0px 2px #f8f9fa;
	color: #f8f9fa;
	background: transparent !important;
}

.btn.btn-outline-primary {
	border: 0 none;
	-webkit-box-shadow:inset 0px 0px 0px 2px #2d9afd;
    -moz-box-shadow:inset 0px 0px 0px 2px #2d9afd;
    box-shadow:inset 0px 0px 0px 2px #2d9afd;
	padding: .75rem 1.5rem;
	color: #2d9afd;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.btn.btn-outline-primary:hover {
	background: rgb(34,193,195);
	background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.btn-social {
	padding-top: 1rem;
	padding-bottom: 1rem;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}
.btn-social:hover {
	color: #fff;
	opacity: .8;
}

.btn-facebook {
	background-color: #3C5A99;
	color: #fff;
}

.btn-twitter {
	background-color: #1DA1F2;
	color: #fff;
}

.btn-linkedin {
	background-color: #0077B5;
	color: #fff;
}

.btn-pinterest {
	background-color: #bd081c;
	color: #fff;
}

.btn-whatsapp {
	background-color: #25d366;
	color: #fff;
}

.btn-email {
	background-color: #505264;
	color: #fff;
}

/* ------------------- */
/* ----- CLASSES ----- */
/* ------------------- */

.badge {
	padding: .5rem .75rem;
}

.list-group a {
	border-top: 0 none;
	border-left: 0 none;
	border-right: 0 none;
}

.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item.active {
	background-color: #2d9afd;
	color: #fff;
	border-color: #2d9afd;
}

/* ------------------ */
/* ----- RATING ----- */
/* ------------------ */

.rating-block .custom-range {
	padding: 0 14px;
}

.rating-block .rating-emotions {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.rating-block .rating-emotions > img {
	cursor: pointer;
	width: 42px;
	height: 42px;
	opacity: .25;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.rating-block .rating-emotions > img.active,
.rating-block .rating-emotions > img:hover {
	opacity: 1;
}

/* ---------------- */
/* ----- MENU ----- */
/* ---------------- */

nav#nav-main {
	background-color: #fff;
	padding: 0;
	z-index: 1040;
}

nav#nav-main .navbar-brand {
	padding: .45rem;
	height: 49px;
	min-width: 49px;
	color: #fff;
	text-align: center;
	background: rgb(34,193,195);
	background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
}

nav#nav-main .navbar-brand img {
	height: 100%;
	width: auto;
}

nav#nav-main .navbar-nav .nav-item .nav-link {
	position: relative;
	padding: .75rem 1.5rem;
	color: #555;
	text-align: center;
	font-size: .8rem;
    text-transform: uppercase;
    font-weight: 600;
}

nav#nav-main .navbar-nav .nav-item .nav-link.btn-outline-primary {
	-webkit-box-shadow:inset 0px 0px 0px 1px #2d9afd;
    -moz-box-shadow:inset 0px 0px 0px 1px #2d9afd;
    box-shadow:inset 0px 0px 0px 1px #2d9afd;
    color: #2d9afd;
}
nav#nav-main .navbar-nav .nav-item .nav-link.btn-outline-primary:hover {
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	color: #fff;
}

nav#nav-main .navbar-nav .nav-item.show .nav-link {
	background-color: #444;
}

nav#nav-main .navbar-nav .nav-item.nav-item-profile .nav-link {
	background-color: #22c1c3;
	color: #fff;
}

nav#nav-main .navbar-nav .nav-item.nav-item-profile.show .nav-link {
	background-color: #444;
}

nav#nav-main .navbar-nav .nav-item.nav-item-profile .nav-link:after {
	display: none;
}

nav#nav-main .navbar-nav .nav-item.nav-item-search .nav-link {
	background-color: #2d9afd;
	color: #fff;
	border: 0 none;
}

nav#nav-main .navbar-nav .nav-item.nav-item-icon .nav-link {
	padding: .6rem 1rem;
	height: 49px;
	min-width: 49px;
}

nav#nav-main .navbar-nav .nav-item.nav-item-icon .nav-link i {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: .9rem;
}

nav#nav-main .navbar-nav .dropdown-menu {
	background-color: #f8f9fa;
	margin: 0;
	border-radius: 0;
	border: 0 none;
	font-size: .875rem;
	color: #6c757d;
}

nav#nav-main .navbar-nav .btn {
	height: initial;
}

.search-popup-wrapper {
	position: fixed;
	z-index: 3;
    top: 106px;
    width: 100%;
    background-color: #f8f9fa;
}

.search-popup-wrapper .search-popup input.form-control {
	height: initial;
}

@media (min-width: 576px) {

	nav#nav-main .navbar-brand {
		padding: .75rem;
		height: 62px;
		min-width: 62px;
	}

	nav#nav-main .navbar-nav .nav-item .nav-link {
	}

	nav#nav-main .navbar-nav .nav-item.nav-item-icon .nav-link {
		padding: 1rem;
		height: 62px;
		min-width: 62px;
	}

	nav#nav-main .navbar-nav .nav-item.nav-item-icon .nav-link i {
		font-size: 1rem;
	}

}

/* ------------------- */
/* ----- SUBMENU ----- */
/* ------------------- */

.nav-scroller {
	width: 100%;
	z-index: 4;
	height: 2.75rem;
	overflow-y: hidden;
	border-bottom: 1px solid #f8f9fa;
}

.nav-scroller:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 24px;
	height: 100%;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.nav-scroller .nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	color: rgba(255, 255, 255, .75);
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
	padding-top: .75rem;
	padding-bottom: .75rem;
	font-size: .875rem;
	color: #6c757d;
}

.nav-underline .nav-link:hover {
	color: #2d9afd;
}

.nav-underline .active {
	font-weight: 500;
	color: #2d9afd;
}

/* -------------------- */
/* ----- PROGRESS ----- */
/* -------------------- */

progress {
	position: fixed;
	z-index: 1;
	top: 93px;
	height: 8px;
	width: 100%;
	border: 0 none;
	border-radius: 0;
}

progress::-webkit-progress-value {
	border-radius: 0;
	box-shadow: none;
	border: 0 none;
	background-color: #6c757d;
}

progress::-webkit-progress-bar {
	background-color: #f3f3f3;
	border-radius: 0;
}
progress::-webkit-progress-value {
	background: rgb(34,193,195);
	background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
	border-radius: 0;
}
progress::-moz-progress-bar {
	background: rgb(34,193,195);
	background: linear-gradient(308deg, rgba(34,193,195,1) 0%, rgba(45,154,253,1) 100%);
	border-radius: 0;
}

progress[value] {
	-webkit-appearance: none;
   	appearance: none;
	border-radius: 0;
}

@media (min-width: 576px) {

	progress {
		top: 106px;
	}

}

/* ------------------- */
/* ----- ARTICLE ----- */
/* ------------------- */

article.preview {
	position: relative;
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    overflow: hidden;
    -webkit-transition: border-color .5s ease;
    transition: border-color .5s ease;
}

article.preview:hover {
	border-bottom-color: #2d9afd;
}

article.preview:hover .article-image img {
	opacity: .7 !important;
}

article.preview .article-image {
	width: 100%;
	height: 240px;
}

article.preview .article-image img {
	width: 100%;
	height: auto;
	min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

article.preview .article-body {
	padding: 2rem;
}

article.preview .article-body .rating-emotions > img {
	width: 28px;
	height: 28px;
}

/* --------------------------- */
/* ----- CALL TO ACTIONS ----- */
/* --------------------------- */

.cta-signup {
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    overflow: hidden;
    -webkit-transition: border-color .5s ease;
    transition: border-color .5s ease;
}

@media (max-width: 991.98px) {

	.cta-signup .h1 {
		font-size: 1.6rem;
	}

}

.cta-get-started {
	position: relative;
}

.cta-get-started:after {
	content: '\f30b';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; 
	position: absolute;
	bottom: 1rem;
    right: 1.5rem;
}

/* ------------------ */
/* ----- BLOCKS ----- */
/* ------------------ */

.block {
	position: relative;
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
    overflow: hidden;
    -webkit-transition: border-color .5s ease;
    transition: border-color .5s ease;
}

.subcategory-block {
	max-height: 289px;
	overflow-y: scroll;
}

.author-block .author-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.author-block .author-image img {
	width: 100%;
	height: auto;
	min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {

	.author-block .author-image {
		width: 100px;
		height: 100px;
	}

}

@media (min-width: 1200px) {

	.author-block .author-image {
		width: 120px;
		height: 120px;
	}

}

.featured-articles article.preview:after {
	content: '\f5a2';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #ffc543;
	font-size: 1.3rem;
	vertical-align: middle;
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: .5rem .8rem;
	background-color: #fff;
	border-radius: .25rem;
	opacity: .9;
}

/* ----------------------- */
/* ----- PAGE HEADER ----- */
/* ----------------------- */

/* HEADER SLIDER */
body > header.header-slider {
	position: relative;
	min-height: 100vh;
	width: 100%;
}

body > header.header-slider .cover-image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* -------------------------- */
/* ----- CONTENT BLOCKS ----- */
/* -------------------------- */

.block-subsite-links .item {
	position: relative;
	height: 0;
	padding-top: 135%;
	display: block;
	overflow: hidden;
}

.block-subsite-links .item.with-overlay:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, #343a40);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #343a40);
}

.block-subsite-links .item .cover-image-wrapper {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.block-subsite-links .item .cover-image-wrapper > img {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.block-subsite-links .item:hover .cover-image-wrapper > img {
	height: 105%;
	width: 105%;
}

.block-subsite-links .item .item-inner {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}

/* ------------------ */
/* ----- SINGLE ----- */
/* ------------------ */

@media (min-width: 620px) {

	main.single .article-featured-image {
		margin-left: -3rem;
		margin-right: -3rem;
	}

}

/* ---------------------- */
/* ----- PAGINATION ----- */
/* ---------------------- */

.pagination {
	margin-bottom: 3rem;
	border-radius: 0;
}

.pagination .nav-links {
	display: flex;
	width: 100%;
}

.pagination .screen-reader-text {
	display: none;
}

.pagination .page-numbers {
	padding: .5rem 1rem;
	font-size: 1rem;
	color: #2d2d2d;
	border-radius: 5px;
	line-height: 1.4;
	-webkit-transition: background-color .3s ease, color .3s ease;
	transition: background-color .3s ease, color .3s ease;
}

.pagination span.page-numbers.first,
.pagination .page-numbers:first-child.current {
	margin-left: auto;
}

.pagination span.page-numbers.last,
.pagination .page-numbers:last-child.current {
	margin-right: auto;
}

.pagination a.page-numbers:hover {
	text-decoration: none;
	color: #22c1c3;
}

.pagination .page-numbers.current {
	background-color: #22c1c3;
	color: #fff;
	margin: 0 .5rem;
}

.pagination .page-numbers.prev {
	margin-right: auto;
	padding-left: 0;
}

.pagination .page-numbers.next {
	margin-left: auto;
	padding-right: 0;
}

@media (max-width: 575.98px) {

	.pagination .page-numbers.prev,
	.pagination .page-numbers.next {
		font-size: 0px;
	}

	.pagination .page-numbers.prev:after,
	.pagination .page-numbers.next:after {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		font-size: 1rem;
		line-height: 20px;
	}

	.pagination .page-numbers.prev:after {
		content: '\f104';
	}

	.pagination .page-numbers.next:after {
		content: '\f105';
	}

}

/* ------------------ */
/* ----- FOOTER ----- */
/* ------------------ */

footer .list-column {
	column-count: 2;
}

footer .list-column ul li a {
	font-weight: 100;
}

@media (min-width: 768px) {

	footer .list-column {
		column-count: 3;
	}

}

@media (min-width: 992px) {

	footer .list-column {
		column-count: 4;
	}

}

/* ---------------------- */
/* ----- LOGIN PAGE ----- */
/* ---------------------- */

.form-login {
	width: 100%;
	max-width: 500px;
	padding: 7.5rem 1rem;
	margin: auto;
}

.form-login .checkbox {
	font-weight: 400;
}

.form-login .form-control {
	position: relative;
	box-sizing: border-box;
	height: auto;
	padding: 10px;
	font-size: 16px;
	margin-bottom: -1px;
}

.form-login .form-control:focus {
	z-index: 2;
}

.form-login input:first-of-type {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.form-login input {
	border-radius: 0;
}

.form-login input:last-of-type {
	margin-top: -1px;
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* -------------------- */
/* ----- REGISTER ----- */
/* -------------------- */

/* #signup-content */

.mu_register form .custom-ms-fields .input {
	width: 100%;
	font-size: 24px;
	margin: 5px 0;
	box-sizing: border-box;
}












