/*
Theme Name: Emaus
Theme URI: https://emaus.deothemes.com
Author: DeoThemes
Author URI: https://deothemes.com
Description: Emaus is a flexible WordPress theme for SaaS and Web Apps websites based on Elementor Page Builder.
Version: 1.3.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emaus
Tags: blog, translation-ready, theme-options, custom-logo, grid-layout, footer-widgets, featured-images

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*-------------------------------------------------------*/
/* Table of Content

1.General
  1.1.Typography
  1.2.Grid
2.Common Elements
3.Layout
4.Blog
5.Navigation
6.Footer
7.Helper CLasses
8.WordPress styles
9.Gutenberg
10.Widgets

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/
.clearfix {
	*zoom: 1;
}

.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
}

.oh {
	overflow: hidden;
}

.relative {
	position: relative;
}

.img-fullwidth {
	width: 100%;
}

.uppercase {
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.nocaps {
	text-transform: none;
	letter-spacing: 0;
}

::-moz-selection {
	color: #333;
	background: #fbedc4;
}

::-webkit-selection {
	color: #333;
	background: #fbedc4;
}

::selection {
	color: #333;
	background: #fbedc4;
}

a {
	text-decoration: none;
	color: #FF3465;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #353f58;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	background: #fff;
	outline: 0;
	overflow-x: hidden;
	overflow-y: auto;
	color: #656970;
}
body img {
	border: none;
	max-width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}

video {
	width: 100%;
}

figure {
	margin: 0;
}

figcaption {
	font-size: 0.9375rem;
	margin-top: 10px;
	color: #a5adb8;
	text-align: center;
}

/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/
.loader-mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 99999;
}

.loader {
	display: block;
	position: absolute;
	font-size: 0;
	color: #FF3465;
	left: 50%;
	top: 50%;
	width: 42px;
	height: 42px;
	transform: translateY(-50%) translateX(-50%);
}

.loader > div {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 100%;
	display: inline-block;
	float: none;
	width: 38px;
	height: 38px;
	background: transparent;
	border-style: solid;
	border-width: 2px;
	border-right-color: transparent;
	border-left-color: transparent;
	-webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
	animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes ball-clip-rotate-pulse-rotate {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	50% {
		transform: translate(-50%, -50%) rotate(180deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes ball-clip-rotate-pulse-rotate {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	50% {
		transform: translate(-50%, -50%) rotate(180deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@-webkit-keyframes ball-clip-rotate-pulse-scale {
	0%, 100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	30% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(0.15);
	}
}
@keyframes ball-clip-rotate-pulse-scale {
	0%, 100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	30% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(0.15);
	}
}
/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/
ul {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Rubik", sans-serif;
	margin-top: 0;
	margin-bottom: 10px;
	color: #353f58;
	line-height: 1.3;
	letter-spacing: -0.05em;
	font-weight: 500;
}

h1, .h1 {
	font-size: 2.375rem;
}

h2, .h2 {
	font-size: 2rem;
}

h3, .h3 {
	font-size: 1.75rem;
}

h4, .h4 {
	font-size: 1.5rem;
}

h5, .h5 {
	font-size: 1.25rem;
}

h6, .h6 {
	font-size: 1rem;
}

@media only screen and (max-width: 575px) {
	h1, .h1, .page-content > h1 {
		font-size: 2rem;
	}

	h2, .h2, .page-content > h2 {
		font-size: 1.7rem;
	}

	h3, .h3, .page-content > h3 {
		font-size: 1.5rem;
	}
}
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
	color: inherit;
}

address {
	font-style: normal;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

@media only screen and (max-width: 1199px) {
	.text-lg-center {
		text-align: center;
	}
}
@media only screen and (max-width: 991px) {
	.text-md-center {
		text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	.text-sm-center {
		text-align: center;
	}
}
@media only screen and (max-width: 575px) {
	.text-xs-center {
		text-align: center;
	}
}
/*-------------------------------------------------------*/
/* Grid
/*-------------------------------------------------------*/
.container {
	max-width: 1300px;
}
@media only screen and (max-width: 767px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.container-semi-fluid {
	padding: 0 50px;
}
@media only screen and (max-width: 767px) {
	.container-semi-fluid {
		padding: 0 15px;
	}
}

/* Flexbox
-------------------------------------------------------*/
.flex-parent {
	display: flex;
	flex-flow: row nowrap;
}

.flex-child {
	flex: 1 0 0;
}

/* Row Gutters
-------------------------------------------------------*/
.row-8 {
	margin: 0 -4px;
}
.row-8 > div {
	padding: 0 4px;
}

.row-10 {
	margin: 0 -5px;
}
.row-10 > div {
	padding: 0 5px;
}

.row-16 {
	margin: 0 -8px;
}
.row-16 > div {
	padding: 0 8px;
}

.row-20 {
	margin: 0 -10px;
}
.row-20 > div {
	padding: 0 10px;
}

.row-50 {
	margin: 0 -25px;
}
.row-50 > div {
	padding: 0 25px;
}

/*-------------------------------------------------------*/
/* Buttons
/*-------------------------------------------------------*/
.btn {
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	overflow: hidden;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	border: 1px solid transparent;
	border-radius: 50px;
	line-height: 1.1;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
	color: #fff;
	background-color: #FF3465;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
	z-index: 1;
	white-space: nowrap;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.btn:hover {
	color: #fff;
	background-color: #FF3465;
	border-color: transparent;
}
.btn:focus {
	outline: none;
	color: #fff;
}
.btn--lg, .btn--lg.btn--button {
	font-size: 1rem;
	padding: 14px 30px;
}
.btn--md, .btn--md.btn--button {
	font-size: 1rem;
	padding: 12px 38px;
}
.btn.btn--sm, .btn--sm.btn--button {
	font-size: 0.875rem;
	padding: 9px 24px;
}
.btn--color {
	background-color: #FF3465;
}
.btn--color:hover {
	opacity: 0.92;
}
.btn--stroke {
	border: 1px solid #FF3465;
	background-color: transparent;
	color: #FF3465;
}
.btn--dark {
	background-color: #282e38;
}
.btn--white {
	background-color: #fff;
	color: #353f58;
}
.btn--light {
	background-color: #f7fbff;
	color: #353f58;
}
.btn--light:hover, .btn--light:focus {
	background-color: #FF3465;
}
.btn--white:focus {
	color: #353f58;
}
.btn--stroke:focus {
	background-color: #FF3465;
}
.btn--wide {
	width: 100% !important;
}

.rounded,
.rounded:before {
	border-radius: 70px;
}

.section-buttons {
	margin-bottom: 50px;
}
.section-buttons a {
	margin-bottom: 10px;
}

/* Input Buttons
-------------------------------------------------------*/
.btn--button {
	border: none;
	margin-bottom: 0;
	width: auto;
}
.btn--button:hover, .btn--button:focus {
	background-color: #FF3465;
}
.btn--button.btn--color, .btn--button.btn--dark {
	color: #fff;
}

/*-------------------------------------------------------*/
/* Form Elements
/*-------------------------------------------------------*/
input,
select,
textarea {
	height: 48px;
	border: 1px solid #e7eaf0;
	border-radius: 3px;
	width: 100%;
	margin-bottom: 16px;
	font-size: 0.9375rem;
	padding: 0 16px;
	transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

textarea {
	height: auto;
	display: block;
	padding: 8px 16px;
}

button,
input[type=button],
input[type=reset],
input[type=submit],
.button {
	cursor: pointer;
	white-space: normal;
	height: auto;
	background-color: #FF3465;
	border-color: transparent;
	padding: 11px 24px;
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
}
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
.button:focus {
	border-color: transparent;
	background-color: #FF3465;
	color: #fff;
}

input[type=search] {
	box-sizing: border-box;
}

input:focus,
textarea:focus {
	border-color: #FF3465;
	background-color: #fff;
	outline: none;
	box-shadow: none;
}

.elementor-field-group input, .elementor-field-group select, .elementor-field-group textarea {
	margin-bottom: 0;
}

/* Change Color of Placeholders */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #656970;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #656970;
	opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #656970;
	opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #656970;
}

label {
	color: #353f58;
	font-family: "Rubik", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 10px;
}
label input {
	float: left;
}

.form-group {
	position: relative;
}

/* Checkboxes & Radio Buttons
-------------------------------------------------------*/
input[type=checkbox],
input[type=radio] {
	min-width: 20px;
	width: 20px;
	height: 20px;
	margin-bottom: 0;
	margin-right: 8px;
	text-align: center;
	line-height: 18px;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #d7dce6;
	-moz-appearance: none;
	-webkit-appearance: none;
}
input[type=checkbox]:focus,
input[type=radio]:focus {
	border-color: #d7dce6;
	background-color: #f7fbff;
}

input[type=checkbox]:checked:after {
	content: "\f383";
	font-family: "ui-icons";
}

input[type=checkbox] + label,
input[type=radio] + label {
	cursor: pointer;
	margin-bottom: 0;
	position: relative;
	line-height: 20px;
	color: #a5adb8;
}

input[type=radio] {
	border-radius: 50%;
}
input[type=radio]:checked:after {
	content: "";
	width: 8px;
	height: 8px;
	position: relative;
	top: -2px;
	border-radius: 50%;
	display: inline-block;
	background-color: #282e38;
}

.consent-checkbox {
	margin-top: 12px;
	margin-bottom: 32px;
	overflow: hidden;
	display: flex;
}
.consent-checkbox__label {
	line-height: 20px;
	display: inline-block;
	color: #656970;
}

/*-------------------------------------------------------*/
/* Tables
/*-------------------------------------------------------*/
table th {
	font-weight: normal;
}

table caption {
	margin-bottom: 10px;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
	border: 1px solid #e7eaf0;
	padding: 10px;
}

table > thead > tr > th {
	border-bottom: none;
}

table thead tr th,
table tbody tr th {
	font-size: 1rem;
	color: #353f58;
	font-family: "Rubik", sans-serif;
	font-weight: 600;
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

/*-------------------------------------------------------*/
/* Blockquote
/*-------------------------------------------------------*/
blockquote {
	line-height: 1.6;
	padding: 12px 40px;
	margin-bottom: 40px;
	margin-top: 40px;
	border-left: 3px solid #FF3465;
}
blockquote p {
	margin-bottom: 0;
	color: #353f58;
	font-family: "Rubik", sans-serif;
	font-style: italic;
	font-size: 1.5rem;
}
blockquote cite {
	color: #a5adb8;
	font-style: normal;
	font-size: 0.875rem;
	margin-top: 1em;
	line-height: 1.8;
	display: inline-block;
}

/*-------------------------------------------------------*/
/* Alerts
/*-------------------------------------------------------*/
.alert {
	border-radius: 5px;
}
.alert-info {
	background-color: #d9edf7;
	border-color: transparent;
	border-left: 5px solid #bcdff1;
}
.alert-success {
	background-color: #dff0d8;
	border-color: transparent;
	border-left: 5px solid #cae6be;
}
.alert-warning {
	background-color: #fcf8e3;
	border-color: transparent;
	border-left: 5px solid #f9f0c3;
}
.alert-danger {
	background-color: #f2dede;
	border-color: transparent;
	border-left: 5px solid #e8c4c4;
}

.close {
	font-weight: 400;
}

/*-------------------------------------------------------*/
/* Social Icons
/*-------------------------------------------------------*/
.socials--white a {
	color: #fff;
}
.socials--base a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 0 6px 6px 0;
	color: #fff;
}
.socials--base a:hover {
	color: #fff !important;
	opacity: 0.9;
}
.socials--rounded a {
	border-radius: 50%;
}

.social {
	display: inline-block;
	color: #656970;
	text-align: center;
	margin-right: 24px;
	font-size: 1.25rem;
	transition: all 0.1s ease-in-out;
}
.social:last-child {
	margin-right: 0;
}

.social.social-facebook:hover {
	color: #39599f;
}

.social.social-twitter:hover {
	color: #55ACEE;
}

.social.social-blogger:hover {
	color: #f57d00;
}

.social.social-deviantart:hover {
	color: #05cc47;
}

.social.social-digg:hover {
	color: #005be2;
}

.social.social-skype:hover {
	color: #00aff0;
}

.social.social-soundcloud:hover {
	color: #ff3300;
}

.social.social-spotify:hover {
	color: #1db954;
}

.social.social-whatsapp:hover {
	color: #25d366;
}

.social.social-yahoo:hover {
	color: #410093;
}

.social.social-yelp:hover {
	color: #af0606;
}

.social.social-youtube:hover {
	color: #c61d23;
}

.social.social-snapchat:hover {
	color: #fffb01;
}

.social.social-linkedin:hover {
	color: #0e76a8;
}

.social.social-pinterest:hover {
	color: #c8232c;
}

.social.social-instagram:hover {
	color: #e1306c;
}

.social.social-rss:hover {
	color: #ef822a;
}

.social.social-pocket:hover {
	color: #ef4056;
}

.social.social-email:hover {
	color: #333333;
}

.social.social-vkontakte:hover {
	color: #45668e;
}

.social.social-reddit:hover {
	color: #ff4500;
}

.social.social-dribbble:hover {
	color: #ea4c89;
}

.social.social-tumblr:hover {
	color: #35465c;
}

.social.social-behance:hover {
	color: #1769ff;
}

.social.social-slack:hover {
	color: #6ecadc;
}

.social.social-github:hover {
	color: #333333;
}

.social.social-flickr:hover {
	color: #ff0084;
}

.social.social-xing:hover {
	color: #026466;
}

.social.social-vimeo:hover {
	color: #1ab7ea;
}

.social.social-facebook-messenger:hover {
	color: #0084ff;
}

.social.social-viber:hover {
	color: #8f5db7;
}

.social.social-telegram:hover {
	color: #0088cc;
}

.social.social-line:hover {
	color: #00c300;
}

.socials--base .social-facebook {
	background-color: #39599f;
}

.socials--base .social-twitter {
	background-color: #55ACEE;
}

.socials--base .social-blogger {
	background-color: #f57d00;
}

.socials--base .social-deviantart {
	background-color: #05cc47;
}

.socials--base .social-digg {
	background-color: #005be2;
}

.socials--base .social-skype {
	background-color: #00aff0;
}

.socials--base .social-soundcloud {
	background-color: #ff3300;
}

.socials--base .social-spotify {
	background-color: #1db954;
}

.socials--base .social-whatsapp {
	background-color: #25d366;
}

.socials--base .social-yahoo {
	background-color: #410093;
}

.socials--base .social-yelp {
	background-color: #af0606;
}

.socials--base .social-youtube {
	background-color: #c61d23;
}

.socials--base .social-snapchat {
	background-color: #fffb01;
}

.socials--base .social-linkedin {
	background-color: #0e76a8;
}

.socials--base .social-pinterest {
	background-color: #c8232c;
}

.socials--base .social-instagram {
	background-color: #e1306c;
}

.socials--base .social-rss {
	background-color: #ef822a;
}

.socials--base .social-pocket {
	background-color: #ef4056;
}

.socials--base .social-email {
	background-color: #333333;
}

.socials--base .social-vkontakte {
	background-color: #45668e;
}

.socials--base .social-reddit {
	background-color: #ff4500;
}

.socials--base .social-dribbble {
	background-color: #ea4c89;
}

.socials--base .social-tumblr {
	background-color: #35465c;
}

.socials--base .social-behance {
	background-color: #1769ff;
}

.socials--base .social-slack {
	background-color: #6ecadc;
}

.socials--base .social-github {
	background-color: #333333;
}

.socials--base .social-flickr {
	background-color: #ff0084;
}

.socials--base .social-xing {
	background-color: #026466;
}

.socials--base .social-vimeo {
	background-color: #1ab7ea;
}

.socials--base .social-facebook-messenger {
	background-color: #0084ff;
}

.socials--base .social-viber {
	background-color: #8f5db7;
}

.socials--base .social-telegram {
	background-color: #0088cc;
}

.socials--base .social-line {
	background-color: #00c300;
}

/*-------------------------------------------------------*/
/* Main Wrapper
/*-------------------------------------------------------*/
.main-wrapper {
	overflow: hidden;
	position: relative;
}

/* GDPR Checkbox
-------------------------------------------------------*/
.deo-newsletter-gdpr-checkbox {
	margin-top: 16px;
}
.deo-newsletter-gdpr-checkbox__label {
	display: flex;
	font-family: "Roboto", sans-serif;
	color: #656970;
	font-size: 0.875rem !important;
	text-align: left;
	margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
	.deo-newsletter-gdpr-checkbox__label {
		justify-content: center;
	}
}

/*-------------------------------------------------------*/
/* Case Study
/*-------------------------------------------------------*/
.masonry-grid__case-study {
	margin-left: -19px;
	margin-right: -19px;
}

.case-study {
	padding-left: 19px;
	padding-right: 19px;
}
.case-study__entry {
	margin-bottom: 50px;
}
.case-study__body {
	margin-top: 20px;
}
.case-study__categories {
	margin-bottom: 10px;
}
.case-study__category {
	color: #a5adb8;
	font-weight: 600;
	font-size: 0.875rem;
	margin: 0 6px 6px 0;
}
.case-study__category:hover, .case-study__category:focus {
	color: #FF3465;
}
.case-study__img-holder {
	border-radius: 5px;
	overflow: hidden;
}
.case-study__read-more {
	font-size: 0.875rem;
	font-weight: 600;
	color: #353f58;
}

/* Filter
-------------------------------------------------------*/
.project-filter {
	margin-bottom: 48px;
}
.project-filter a {
	display: inline-block;
	position: relative;
	padding: 4px 12px;
	border-radius: 5px;
	margin-right: 12px;
	margin-bottom: 12px;
	font-size: 1.125rem;
	font-weight: 500;
	font-family: "Rubik", sans-serif;
	color: #656970;
}
.project-filter a.active, .project-filter a:hover, .project-filter a:focus {
	background-color: #FF3465;
	color: #fff;
}
.project-filter a:last-child {
	margin-right: 0;
}

/*-------------------------------------------------------*/
/* Page Title
/*-------------------------------------------------------*/
.page-title {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: block;
	padding: 90px 0 115px;
	border-bottom: 1px solid #e7eaf0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
@media only screen and (max-width: 991px) {
	.page-title {
		padding: 60px 0;
	}
}
.page-title .container {
	height: 100%;
}
.page-title__outer {
	width: 100%;
	height: 100%;
	display: table;
}
.page-title__inner {
	display: table-cell;
	vertical-align: middle;
}
.page-title__holder {
	max-width: 570px;
	margin-left: auto;
	margin-right: auto;
}
.page-title__title {
	font-size: 1.75rem;
	line-height: 1.3;
	margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
	.page-title__title {
		font-size: 2.375rem;
	}
}
.page-title__subtitle {
	margin-top: 24px;
	margin-bottom: 0;
	font-size: 1.25rem;
}

/* Breadcrumbs
-------------------------------------------------------*/
.page-title__title + .breadcrumbs {
	margin-top: 6px;
	margin-bottom: 16px;
}
.breadcrumbs-wrap {
	padding: 12px 0;
	background-color: #f7fbff;
}
.breadcrumbs a {
	color: #353f58;
}
.breadcrumbs a:hover {
	color: #FF3465;
}
.breadcrumbs > span {
	font-size: 0.875rem;
}
.breadcrumbs__separator {
	font-size: 0.6875rem;
	opacity: 0.8;
	margin: 0 8px;
	vertical-align: middle;
}
.page-title.bg-overlay .breadcrumbs, .page-title.bg-overlay .breadcrumbs a {
	color: #fff;
}

/* Cookies notication bar
-------------------------------------------------------*/
.cc-container {
	display: flex;
	justify-content: center;
	padding: 0;
}

.cc-window.cc-banner {
	background-color: #282e38;
}

.cc-message {
	margin-right: 20px;
	flex: 0 1 auto !important;
	color: #fff;
	font-weight: 500;
	font-size: 15px;
}

.cc-link {
	opacity: 1;
}
.cc-link:hover, .cc-link:focus {
	color: #fff;
}

.cc-link,
.cc-link:active,
.cc-link:visited {
	color: #fff;
}

a.cc-btn.cc-dismiss {
	font-family: "Rubik", sans-serif;
	font-size: 0.8125rem !important;
	background-color: #FF3465;
	height: 28px;
	line-height: 28px;
	padding: 0 14px;
	border: 0;
	color: #fff;
	border-radius: 50px;
	min-width: auto !important;
}
a.cc-btn.cc-dismiss:hover, a.cc-btn.cc-dismiss:focus {
	opacity: 0.9;
}

/*-------------------------------------------------------*/
/* Blog
/*-------------------------------------------------------*/
.blog-section--front-page {
	padding-top: 72px;
}

.entry {
	overflow: hidden;
	border-radius: 3px;
	position: relative;
	margin-bottom: 30px;
	word-wrap: break-word;
}
@media only screen and (max-width: 991px) {
	.entry {
		margin-bottom: 30px;
	}
}
.entry__img-holder {
	overflow: hidden;
}
.entry__img-holder:hover img {
	transform: scale(1.1);
}
.entry__img, .entry__bg-img {
	width: 100%;
	transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) !important;
}
.entry__bg-img {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.entry__body {
	padding: 40px;
	background-color: #fff;
	border: 1px solid #e7eaf0;
}
.entry__img-holder + .entry__body {
	border-top: 0;
}
.entry__title {
	font-size: 1.5rem;
	margin-bottom: 12px;
	position: relative;
}
@media only screen and (min-width: 992px) {
	.entry__title {
		font-size: 2rem;
	}
}
.entry__title--small {
	font-size: 1.25rem;
}
.entry__excerpt {
	margin-top: 20px;
}
.entry__excerpt p {
	margin-bottom: 0;
}

.masonry-grid .entry__title {
	font-size: 1.25rem;
}

/*-------------------------------------------------------*/
/* First Post
/*-------------------------------------------------------*/
.entry--first-post {
	margin-bottom: 30px;
}
.entry--first-post .entry__body,
.entry--first-post .entry__img-holder {
	flex: 0 0 100%;
	max-width: 100%;
}
.entry--first-post .entry__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
}
.entry--first-post .entry__img-holder {
	min-height: 360px;
	position: relative;
}
.entry--first-post .entry__img-holder a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.entry--first-post .entry__title {
	font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
	.entry--first-post .entry {
		display: flex;
	}
	.entry--first-post .entry__body {
		padding: 80px;
		border-top: 1px solid #e7eaf0;
	}
	.entry--first-post .entry__img-holder,
.entry--first-post .entry__img-holder + .entry__body {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.entry--first-post .entry__title {
		font-size: 1.75rem;
	}
}
@media only screen and (min-width: 992px) {
	.entry--first-post .entry__img-holder {
		min-height: 484px;
	}
	.entry--first-post .entry__title {
		font-size: 1.875rem;
	}
}

/*-------------------------------------------------------*/
/* Post Creative
/*-------------------------------------------------------*/
.post-creative .entry {
	border-radius: 3px;
	overflow: hidden;
}
.post-creative .entry__body {
	min-height: 403px;
	padding: 48px 48px 20px 48px;
	display: flex;
	background-color: #282e38;
	flex-direction: column;
}
.post-creative .entry__body:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	/* Old browsers */
	/* FF3.6+ */
	/* Chrome,Safari4+ */
	/* Chrome10+,Safari5.1+ */
	/* Opera 11.10+ */
	/* IE10+ */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
	/* IE6-9 */
}
.post-creative .entry__category,
.post-creative .entry__title,
.post-creative .entry__footer-meta {
	position: relative;
	z-index: 1;
}
.post-creative .entry__title {
	margin-top: auto;
	margin-bottom: 18px;
	font-size: 1.5rem;
}
.post-creative .entry__title:hover a,
.post-creative .entry__title a {
	background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
}
.post-creative .entry__category {
	align-self: flex-start;
	z-index: 2;
}
.post-creative .entry__category-item {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50px;
	padding: 4px 12px;
}
.post-creative .entry__category-item:hover {
	background-color: #FF3465;
}
.post-creative .entry__meta-item,
.post-creative .entry__meta-item a,
.post-creative .entry__meta-item a:hover,
.post-creative .entry__meta-item a:focus,
.post-creative .entry__title,
.post-creative .entry__title a,
.post-creative .entry__title:hover a,
.post-creative .entry__title:focus a,
.post-creative .entry__title a:focus,
.post-creative .entry__category-item,
.post-creative .entry__category-item:hover,
.post-creative .entry__category-item:focus,
.post-creative .entry__meta-author-name {
	color: #fff;
}
.post-creative .entry__footer-meta {
	padding-top: 18px;
	margin-top: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.entry__url,
.entry__bg-img {
	position: absolute;
	display: block;
	width: 100%;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
}

.entry:hover .entry__bg-img {
	transform: scale(1.1);
}

/*-------------------------------------------------------*/
/* Meta
/*-------------------------------------------------------*/
.entry__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}
.entry__meta-item {
	font-family: "Roboto", sans-serif;
	display: inline-flex;
	font-size: 0.875rem;
	color: #a5adb8;
}
.entry__meta-item a {
	color: #a5adb8;
}
.entry__meta a:hover, .entry__meta a:focus {
	color: #353f58;
}

/* Meta author
-------------------------------------------------------*/
.entry__meta-author {
	margin-right: 10px;
}
.entry__meta-author-img {
	border-radius: 50px !important;
	margin-right: 10px;
}
.entry__meta-author-name {
	color: #353f58;
}
.entry__meta-author span {
	vertical-align: middle;
}

/* Meta category
-------------------------------------------------------*/
.entry__category {
	margin-bottom: 8px;
}
.entry__category-item {
	font-family: "Rubik", sans-serif;
	margin-right: 8px;
	margin-bottom: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #FF3465;
	display: inline-block;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
}
.entry__category-item:hover, .entry__category-item:focus {
	color: #353f58;
}
.entry__category-item:last-child {
	margin-right: 0;
}

/* Footer entry meta
-------------------------------------------------------*/
.entry__footer-meta {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.entry__footer-meta .entry__meta-item {
	margin-bottom: 5px;
}

/*-------------------------------------------------------*/
/* Pagination
/*-------------------------------------------------------*/
.pagination {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 24px;
}

.post-pagination {
	margin-top: 24px;
}

.page-numbers,
.post-page-numbers {
	font-size: 0.875rem;
	display: inline-block;
	padding: 0 10px;
	height: 40px;
	min-width: 40px;
	line-height: 38px;
	margin: 0 2px;
	text-align: center;
	color: #656970;
	vertical-align: middle;
	white-space: nowrap;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #e7eaf0;
	list-style: none;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
}
.page-numbers:not(span):hover,
.post-page-numbers:not(span):hover {
	background-color: #FF3465;
	border-color: transparent;
	color: #fff;
}
.page-numbers.current,
.post-page-numbers.current {
	background-color: #FF3465;
	color: #fff;
	border-color: transparent;
}
.page-numbers i,
.post-page-numbers i {
	font-size: 0.75rem;
}

/* Post Pagination
-------------------------------------------------------*/
.post-pagination > span:first-child {
	margin-right: 10px;
}

/*-------------------------------------------------------*/
/* Single Post
/*-------------------------------------------------------*/
/* Featured Image
-------------------------------------------------------*/
.blog-featured-img {
	padding: 120px 0;
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #656970;
}
@media only screen and (min-width: 768px) {
	.blog-featured-img {
		padding: 196px 0;
	}
}

.single-post__entry-header {
	z-index: 1;
	text-align: center;
}
.single-post__entry-header .entry__meta-author {
	margin-right: 20px;
}
.single-post__entry-title, .single-post__entry-header .entry__meta-item, .single-post__entry-header .entry__meta-item a, .single-post__entry-header .entry__category-item:hover, .single-post__entry-header .entry__category-item:focus, .single-post__entry-header .entry__meta-author-name {
	color: #fff;
}

/* Single post article
-------------------------------------------------------*/
.single-post__entry {
	overflow: visible;
	margin-bottom: 40px;
}
.single-post__entry-title {
	word-wrap: break-word;
}

.entry__article {
	font-size: 1.125rem;
	line-height: 1.8;
}
@media only screen and (max-width: 991px) {
	.entry__article {
		margin-top: 16px;
	}
}
.entry__article > h1, .entry__article > h2, .entry__article > h3, .entry__article > h4, .entry__article > h5, .entry__article > h6 {
	margin-top: 36px;
	margin-bottom: 20px;
}
.entry__article > p, .entry__article > ul, .entry__article > ol {
	margin-bottom: 34px;
}
.entry__article p a,
.entry__article li:not(.wp-social-link) a {
	color: #2d95e3;
	text-decoration: underline;
}
.entry__article p a:hover,
.entry__article li:not(.wp-social-link) a:hover {
	color: #353f58;
}
.entry__article ol {
	padding-left: 26px;
}
.entry__article ul {
	padding-left: 20px;
}

/* Sidebar
/*-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
	.right-sidebar .sidebar {
		padding-left: 60px;
	}

	.left-sidebar .sidebar {
		padding-right: 60px;
	}
}
@media only screen and (min-width: 992px) {
	.left-sidebar .sidebar:not(.elementor-column) {
		padding-right: 60px;
	}
	.left-sidebar .page-content,
.left-sidebar .blog__content {
		order: 2;
	}

	.right-sidebar .sidebar:not(.elementor-column) {
		padding-left: 60px;
	}
}
.elementor-widget-sidebar .widget-title,
.sidebar .widget-title {
	font-size: 1.125rem;
}

/* Entry Share
-------------------------------------------------------*/
.entry__share {
	margin-bottom: 32px;
}
.entry__share-label {
	text-transform: uppercase;
	font-size: 0.8125rem;
	font-family: "Rubik", sans-serif;
	margin-right: 8px;
}
.entry__share-socials {
	display: inline-block;
}
@media only screen and (min-width: 992px) {
	.entry__share--right {
		text-align: right;
	}
}

/* Entry Tags
/*-------------------------------------------------------*/
.entry__tags {
	overflow: hidden;
	margin-top: 8px;
	margin-bottom: 16px;
}

/* Author
/*-------------------------------------------------------*/
.entry-author {
	margin-top: 24px;
	margin-bottom: 48px;
	padding: 40px 0;
	border-top: 1px solid #e7eaf0;
	border-bottom: 1px solid #e7eaf0;
}
.entry-author__url {
	display: inline-flex;
	float: left;
	align-items: center;
}
.entry-author__img {
	height: 90px;
	width: 90px;
	display: block;
	margin-right: 24px;
	border-radius: 50%;
}
@media only screen and (max-width: 575px) {
	.entry-author__img {
		width: 50px;
		height: 50px;
	}
}
.entry-author__img-holder {
	display: block;
	float: left;
}
@media only screen and (max-width: 575px) {
	.entry-author__img-holder {
		float: none;
		margin-bottom: 24px;
	}
}
.entry-author__info {
	overflow: hidden;
}
.entry-author__name {
	margin-bottom: 12px;
	font-size: 1.25rem;
}
.entry-author__description {
	margin-bottom: 20px;
}

/* Related Posts
/*-------------------------------------------------------*/
.related-posts {
	margin-top: 60px;
	margin-bottom: 30px;
}
.related-posts__entry {
	margin-bottom: 20px;
}
.related-posts__title {
	padding-right: 80px;
}
.related-posts__entry-img-holder {
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 20px;
}
.related-posts__entry-title {
	font-size: 1rem;
}
.related-posts__entry-title:hover a {
	color: #FF3465;
}

.entry__bg-img-holder {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 198px;
}

.thumb-bg {
	margin-bottom: 0;
}
.thumb-text-holder {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 3;
	padding: 16px 24px;
	pointer-events: none;
}
.thumb-entry-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0;
}
.thumb-url {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

/* Comments
/*-------------------------------------------------------*/
.related-posts__title,
.entry-comments__title,
.comment-respond__title {
	font-size: 1.75rem;
	margin-bottom: 32px;
}

.comment-content > h1, .comment-content > h2, .comment-content > h3, .comment-content > h4, .comment-content > h5, .comment-content > h6 {
	margin-top: 36px;
	margin-bottom: 20px;
}
.comment-content ol {
	padding-left: 26px;
}
.comment-content ul {
	padding-left: 20px;
}

.comment-list {
	padding-left: 0;
}
.comment-list, .comment-list .children {
	list-style: none;
}
.comment .children {
	padding-left: 8%;
}
.comment-list > li:first-child > .comment-body {
	border-top: 0;
	padding-top: 0;
}
.comment-body {
	margin-bottom: 32px;
	padding-top: 32px;
	border-top: 1px solid #e7eaf0;
}
.comment-text {
	overflow: hidden;
}
.comment-text p {
	margin-bottom: 10px;
}
.comment-avatar {
	float: left;
	margin-right: 20px;
	display: block;
	border-radius: 50%;
	overflow: hidden;
}
.comment-author {
	font-size: 1rem;
}
.comment-author__name {
	font-family: "Rubik", sans-serif;
	color: #353f58;
}
.comment-author__post-author-label {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	margin-bottom: 3px;
	background-color: #FF3465;
	color: #fff;
	padding: 3px 8px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.6875rem;
}
.comment-author a {
	color: inherit;
}
.comment-metadata {
	display: inline-block;
}
.comment-date, .comment-edit-link {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 0.75rem;
	font-weight: 500;
	font-family: "Rubik", sans-serif;
	color: #a5adb8;
	text-transform: uppercase;
}
.comment-edit-link {
	margin-left: 5px;
	margin-bottom: 0;
	color: #FF3465;
}

/* Comment Form
/*-------------------------------------------------------*/
.comment-respond {
	margin-top: 60px;
}

.comment-form .logged-in-as {
	margin-bottom: 26px;
	margin-top: -20px;
}

/* Entry Navigation
/*-------------------------------------------------------*/
.entry-navigation {
	background-color: #f7fbff;
	padding: 40px 0 112px;
}
.entry-navigation__row {
	display: flex;
}
.entry-navigation__img-holder {
	overflow: hidden;
	border-radius: 5px;
	margin-top: -108px;
	height: 100%;
	width: 334px;
}
.entry-navigation__img-holder:hover .entry-navigation__img {
	transform: scale(1.1);
}
.entry-navigation__img {
	transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1);
}
.entry-navigation__body {
	padding: 4px 90px;
	flex: 2 0 0;
}
.entry-navigation__label {
	display: inline-block;
	margin-bottom: 32px;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Rubik", sans-serif;
}
.entry-navigation__title {
	font-size: 2.125rem;
	margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
	.entry-navigation {
		padding-bottom: 60px;
	}
	.entry-navigation__row {
		display: block;
	}
	.entry-navigation__img-holder {
		width: 200px;
	}
	.entry-navigation__body {
		padding: 0;
		margin-top: 40px;
	}
	.entry-navigation__title {
		font-size: 1.5rem;
	}
}

/*-------------------------------------------------------*/
/* Newsletter
/*-------------------------------------------------------*/
.deo-mailchimp-newsletter .mc4wp-form-fields {
	display: flex;
	flex-wrap: wrap;
}

.deo-field-group {
	flex-wrap: wrap;
	align-items: center;
}
.deo-field-group input {
	margin-bottom: 0;
}

.mc4wp-response {
	margin-top: 8px;
}

.mc4wp-error {
	color: #ff3465;
}

.mc4wp-notice {
	color: #2ce6ef;
}

.mc4wp-success {
	color: #46d19b;
}

.newsletter {
	padding: 110px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.newsletter__form {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.newsletter__form {
		max-width: 80%;
	}
}
.newsletter__subtitle, .newsletter__title {
	color: #fff;
}
.newsletter__title {
	font-size: 2.375rem;
}
.newsletter__subtitle {
	font-size: 1.25rem;
	margin-bottom: 44px;
}
.newsletter__form, .newsletter__input, .newsletter__submit {
	display: inline-block;
}
.newsletter .deo-field-type-input,
.newsletter .deo-field-type-submit {
	flex-basis: 100%;
}
.newsletter .deo-field-type-input {
	margin-bottom: 10px;
}
@media only screen and (min-width: 576px) {
	.newsletter .deo-field-type-input {
		margin-right: 15px;
		margin-bottom: 0;
		flex: 2 0 0;
	}
	.newsletter .deo-field-type-submit {
		flex: 1 0 0;
	}
}
@media only screen and (max-width: 767px) {
	.newsletter .deo-field-type-submit input {
		position: relative;
		width: 100%;
	}
}

/*-------------------------------------------------------*/
/* Navigation
/*-------------------------------------------------------*/
.nav {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 120;
	min-height: 72px;
	position: relative;
	/* Dropdowns (large screen) */
}
.nav__wrap {
	margin-left: 30px;
}
.nav__menu, .nav__dropdown-menu {
	list-style: none;
}
.nav__menu {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
}
.nav__menu li {
	position: relative;
}
.nav__menu li a {
	font-family: "Rubik", sans-serif;
}
.nav__menu > li > a {
	font-weight: 400;
	color: #353f58;
	font-size: 1rem;
	line-height: 72px;
	display: block;
	position: relative;
	transition: 0.1s color;
}
.nav__menu > li > a:hover {
	opacity: 0.9;
}
@media only screen and (min-width: 992px) {
	.nav__wrap {
		display: block !important;
		height: auto !important;
	}
	.nav__menu > li {
		display: inline-block;
		text-align: center;
		padding: 0 17px;
	}
	.nav__menu > li:last-child {
		padding-right: 0;
	}
	.nav__dropdown-menu {
		position: absolute;
		left: -5px;
		top: 100%;
		z-index: 1000;
		min-width: 220px;
		width: 100%;
		text-align: left;
		padding: 20px 0;
		list-style: none;
		background-color: #fff;
		box-shadow: 0 4px 20px rgba(154, 161, 171, 0.25);
		border-radius: 5px;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		display: block;
		visibility: hidden;
		opacity: 0;
		transition: all 0.2s ease-in-out;
	}
	.nav__dropdown-menu > li > a {
		color: #656970;
		padding: 5px 30px;
		line-height: 21px;
		display: block;
	}
	.nav__dropdown-menu > li > a:hover, .nav__dropdown-menu > li > a:focus {
		color: #2550de;
	}
	.nav__menu > .nav__dropdown > .nav__dropdown-menu:before {
		content: "";
		display: block;
		width: 14px;
		height: 14px;
		background-color: #fff;
		position: absolute;
		top: -7px;
		left: 35px;
		transform: rotate(45deg);
	}
	.nav__dropdown-menu.hide-dropdown {
		visibility: hidden !important;
		opacity: 0 !important;
	}
	.nav__dropdown-menu--right {
		right: 0;
	}
	.nav__dropdown:hover > .nav__dropdown-menu {
		opacity: 1;
		visibility: visible;
	}
	.nav__dropdown-menu .nav__dropdown-menu {
		left: 100%;
		top: -20px;
	}
	.nav__dropdown .nav__dropdown {
		position: relative;
	}
	.nav__dropdown .nav__dropdown > a:after {
		content: "\f006";
		font-family: "ui-icons";
		font-size: 10px;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	.nav__dropdown-trigger {
		display: none;
	}
}

.mobile body {
	cursor: pointer;
}

.nav__menu > li.active > a,
.nav__menu > .current_page_parent > a,
.nav__menu .current-menu-item > a {
	color: #2550de;
}

/* Logo
-------------------------------------------------------*/
.logo {
	line-height: 1;
	display: block;
	max-height: 60px;
}
.logo-url {
	vertical-align: middle;
	color: #353f58;
}

.nav--default .logo-light,
.nav--transparent .logo-light {
	display: none;
}

@media only screen and (min-width: 992px) {
	.nav--transparent .logo-dark,
.nav--transparent .sticky .logo-light {
		display: none;
	}

	.nav--transparent .logo-light,
.nav--transparent .sticky .logo-dark {
		display: inline-block;
	}
}
/* Nav Flexbox
-------------------------------------------------------*/
header .flex-parent {
	align-items: center;
}
@media only screen and (max-width: 991px) {
	header .flex-parent {
		display: block;
	}
}

.nav--align-right {
	margin-left: auto;
}

.nav--align-left {
	margin-right: auto;
}

/* Nav Right / Button
-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
	.nav__right {
		margin-left: auto;
	}
}

.nav__btn-holder--mobile {
	margin-top: 20px;
}

/* Nav Icon Toggle (mobile nav)
-------------------------------------------------------*/
.nav__icon-toggle {
	position: relative;
	padding: 9px 0 9px 10px;
	background-color: transparent;
	border: none;
	z-index: 50;
	margin-left: auto;
}
@media only screen and (min-width: 992px) {
	.nav__icon-toggle {
		display: none;
	}
}
.nav__icon-toggle-bar {
	background-color: #353f58;
	width: 18px;
	display: block;
	height: 2px;
	border-radius: 1px;
	margin-bottom: 4px;
}
.nav__icon-toggle-bar:last-child {
	margin-bottom: 0;
}
.nav__icon-toggle:focus .nav__icon-toggle-bar, .nav__icon-toggle:hover .nav__icon-toggle-bar {
	opacity: 0.9;
}
.nav__icon-toggle:focus {
	outline: none;
	background-color: transparent;
}

/* Custom Header Logo
-------------------------------------------------------*/
.deo-logo-container {
	display: inline-block;
	vertical-align: middle;
}

/* Sticky Nav
-------------------------------------------------------*/
.nav--sticky.offset {
	transform: translate3d(0, -100%, 0);
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95) !important;
}
.nav--sticky.scrolling {
	transform: translate3d(0, 0px, 0);
}
.nav--sticky.sticky {
	position: fixed !important;
	background-color: #fff;
	visibility: hidden;
	opacity: 0;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0 0 5px rgba(62, 64, 69, 0.1);
}
.nav--sticky.sticky.scrolling {
	opacity: 1;
	visibility: visible;
}

/* Transparent Nav
-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
	.nav--transparent {
		background-color: transparent;
		position: absolute !important;
		width: 100%;
		top: 0;
	}

	.nav--sticky.sticky .nav__menu > li > a {
		color: #353f58;
	}
	.nav--sticky.sticky .nav__menu > li > a:hover {
		color: #2550de;
	}
}
/* Go to Top
-------------------------------------------------------*/
#back-to-top {
	display: block;
	z-index: 100;
	width: 34px;
	height: 34px;
	text-align: center;
	font-size: 12px;
	position: fixed;
	bottom: -34px;
	right: 20px;
	line-height: 34px;
	background-color: #f7fbff;
	box-shadow: 0px 1px 4px 0px rgba(154, 161, 171, 0.4);
	border-radius: 50%;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
	text-decoration: none;
}
#back-to-top i {
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
}
#back-to-top a {
	display: block;
	color: #353f58;
}
#back-to-top.show {
	bottom: 20px;
}
#back-to-top:hover {
	background-color: #FF3465;
	bottom: 24px;
}
#back-to-top:hover i {
	color: #fff;
}

/*-------------------------------------------------------*/
/* Nav Mobile Styles
/*-------------------------------------------------------*/
@media only screen and (max-width: 991px) {
	.nav__wrap {
		margin-left: 0;
	}
	.nav__header {
		height: 72px;
		display: flex;
		align-items: center;
	}
	.nav__menu {
		display: block;
	}
	.nav__menu li a {
		padding: 0;
		line-height: 46px;
		height: 46px;
		display: block;
		border-bottom: 1px solid #e7eaf0;
	}
	.nav__dropdown-menu a {
		color: #656970;
	}
	.nav__dropdown-menu a:hover {
		color: #000;
	}
	.nav__dropdown-menu > li > a {
		padding-left: 10px;
	}
	.nav__dropdown-menu > li > ul > li > a {
		padding-left: 20px;
	}
	.nav__dropdown-trigger {
		display: block;
		width: 20px;
		height: 46px;
		line-height: 46px;
		font-size: 12px;
		text-align: center;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 50;
		cursor: pointer;
	}
	.nav__dropdown-trigger--is-open {
		transform: rotate(180deg);
	}
	.nav__dropdown-menu {
		display: none;
		width: 100% !important;
	}
	.nav__dropdown-trigger.active + .nav__dropdown-menu {
		display: block;
	}

	.logo-wrap {
		float: left;
	}
	.logo-wrap a {
		display: table-cell;
		vertical-align: middle;
		height: 72px;
	}

	.nav__btn {
		width: 100%;
		margin-bottom: 18px;
	}

	.sticky-on-mobile .navbar {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}
}
/*-------------------------------------------------------*/
/* Footer
/*-------------------------------------------------------*/
.footer {
	background-color: #101523;
}
.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer__widgets {
	padding: 80px 0 40px;
}
.footer .widget.widget_calendar a {
	color: #FF3465;
}

/* Footer Menu Bar
-------------------------------------------------------*/
.footer__menu-bar {
	padding: 24px 0;
	border-bottom: 1px solid #2c3242;
}

@media only screen and (max-width: 767px) {
	.footer__nav-menu {
		text-align: center;
	}
	.footer .footer__nav-menu {
		margin-bottom: 18px;
	}
}
.footer__nav-menu li {
	display: inline-block;
	margin-right: 24px;
	line-height: 30px;
}
.footer__nav-menu li:last-child {
	margin-right: 0;
}
.footer__nav-menu li a {
	color: #656970;
}
.footer__nav-menu li a:hover {
	color: #FF3465;
}

/* Footer Address
-------------------------------------------------------*/
.footer__address {
	font-size: 1.25rem;
}

/* Footer Socials
-------------------------------------------------------*/
.footer__socials {
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.footer__socials {
		text-align: right;
	}
}

/* Footer Widgets
-------------------------------------------------------*/
.footer__widgets .widget-title,
.footer__widgets .widget_rss .rsswidget {
	color: #ffffff;
}
.footer__widgets .widget_recent_comments a,
.footer__widgets #wp-calendar thead th,
.footer__widgets .widget_tag_cloud a {
	color: #b8c1cc;
}
.footer__widgets .widget_tag_cloud a {
	background-color: #2c3242;
}
.footer__widgets .widget_categories li,
.footer__widgets .widget_pages li,
.footer__widgets .widget_archive li,
.footer__widgets .widget_meta li,
.footer__widgets .widget_nav_menu li {
	padding: 3px 0;
	border: 0 !important;
}
.footer__widgets .widget_recent_entries li,
.footer__widgets .widget_recent_comments li,
.footer__widgets .widget_rss li {
	border-color: #2c3242;
}
.footer__widgets .widget a:hover {
	color: #FF3465;
}
.footer__widgets .widget .sub-menu li:first-child,
.footer__widgets .widget .children li:first-child {
	padding-top: 0;
}

/* Bottom Footer
-------------------------------------------------------*/
.footer__bottom {
	padding: 27px 0;
	font-size: 0.875rem;
}
.footer__bottom a {
	color: #656970;
}
.footer__bottom a:hover {
	color: #FF3465;
}

.copyright {
	font-size: 0.8125rem;
	color: #7e828a;
}

/*-------------------------------------------------------*/
/* Spacings
/*-------------------------------------------------------*/
.m-0 {
	margin: 0 !important;
}

.p-0 {
	padding: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-8 {
	margin-top: 8px;
}

.mt-16 {
	margin-top: 16px;
}

.mt-24 {
	margin-top: 24px;
}

.mt-32 {
	margin-top: 32px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-48 {
	margin-top: 48px;
}

.mt-56 {
	margin-top: 56px;
}

.mt-64 {
	margin-top: 64px;
}

.mt-72 {
	margin-top: 72px;
}

.mt-80 {
	margin-top: 80px;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-8 {
	margin-bottom: 8px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-24 {
	margin-bottom: 24px;
}

.mb-32 {
	margin-bottom: 32px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-48 {
	margin-bottom: 48px;
}

.mb-56 {
	margin-bottom: 56px;
}

.mb-64 {
	margin-bottom: 64px;
}

.mb-72 {
	margin-bottom: 72px;
}

.mb-80 {
	margin-bottom: 80px;
}

.pt-0 {
	padding-top: 0;
}

.pt-8 {
	padding-top: 8px;
}

.pt-16 {
	padding-top: 16px;
}

.pt-24 {
	padding-top: 24px;
}

.pt-32 {
	padding-top: 32px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-48 {
	padding-top: 48px;
}

.pt-56 {
	padding-top: 56px;
}

.pt-64 {
	padding-top: 64px;
}

.pt-72 {
	padding-top: 72px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-120 {
	padding-top: 120px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-8 {
	padding-bottom: 8px;
}

.pb-16 {
	padding-bottom: 16px;
}

.pb-24 {
	padding-bottom: 24px;
}

.pb-32 {
	padding-bottom: 32px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-48 {
	padding-bottom: 48px;
}

.pb-56 {
	padding-bottom: 56px;
}

.pb-64 {
	padding-bottom: 64px;
}

.pb-72 {
	padding-bottom: 72px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-120 {
	padding-bottom: 120px;
}

@media only screen and (max-width: 1199px) {
	.mt-lg-0 {
		margin-top: 0 !important;
	}

	.mt-lg-8 {
		margin-top: 8px;
	}

	.mt-lg-16 {
		margin-top: 16px;
	}

	.mt-lg-24 {
		margin-top: 24px;
	}

	.mt-lg-32 {
		margin-top: 32px;
	}

	.mt-lg-40 {
		margin-top: 40px;
	}

	.mt-lg-48 {
		margin-top: 48px;
	}

	.mt-lg-56 {
		margin-top: 56px;
	}

	.mt-lg-64 {
		margin-top: 64px;
	}

	.mt-lg-72 {
		margin-top: 72px;
	}

	.mt-lg-80 {
		margin-top: 80px;
	}

	.mb-lg-0 {
		margin-bottom: 0 !important;
	}

	.mb-lg-8 {
		margin-bottom: 8px;
	}

	.mb-lg-16 {
		margin-bottom: 16px;
	}

	.mb-lg-24 {
		margin-bottom: 24px;
	}

	.mb-lg-32 {
		margin-bottom: 32px;
	}

	.mb-lg-40 {
		margin-bottom: 40px;
	}

	.mb-lg-48 {
		margin-bottom: 48px;
	}

	.mb-lg-56 {
		margin-bottom: 56px;
	}

	.mb-lg-64 {
		margin-bottom: 64px;
	}

	.mb-lg-72 {
		margin-bottom: 72px;
	}

	.mb-lg-80 {
		margin-bottom: 80px;
	}

	.pt-lg-0 {
		padding-top: 0;
	}

	.pt-lg-8 {
		padding-top: 8px;
	}

	.pt-lg-16 {
		padding-top: 16px;
	}

	.pt-lg-24 {
		padding-top: 24px;
	}

	.pt-lg-32 {
		padding-top: 32px;
	}

	.pt-lg-40 {
		padding-top: 40px;
	}

	.pt-lg-48 {
		padding-top: 48px;
	}

	.pt-lg-56 {
		padding-top: 56px;
	}

	.pt-lg-64 {
		padding-top: 64px;
	}

	.pt-lg-72 {
		padding-top: 72px;
	}

	.pt-lg-80 {
		padding-top: 80px;
	}

	.pb-lg-0 {
		padding-bottom: 0;
	}

	.pb-lg-8 {
		padding-bottom: 8px;
	}

	.pb-lg-16 {
		padding-bottom: 16px;
	}

	.pb-lg-24 {
		padding-bottom: 24px;
	}

	.pb-lg-32 {
		padding-bottom: 32px;
	}

	.pb-lg-40 {
		padding-bottom: 40px;
	}

	.pb-lg-48 {
		padding-bottom: 48px;
	}

	.pb-lg-56 {
		padding-bottom: 56px;
	}

	.pb-lg-64 {
		padding-bottom: 64px;
	}

	.pb-lg-72 {
		padding-bottom: 72px;
	}

	.pb-lg-80 {
		padding-bottom: 80px;
	}
}
@media only screen and (max-width: 991px) {
	.mt-md-0 {
		margin-top: 0 !important;
	}

	.mt-md-8 {
		margin-top: 8px;
	}

	.mt-md-16 {
		margin-top: 16px;
	}

	.mt-md-24 {
		margin-top: 24px;
	}

	.mt-md-32 {
		margin-top: 32px;
	}

	.mt-md-40 {
		margin-top: 40px;
	}

	.mt-md-48 {
		margin-top: 48px;
	}

	.mt-md-56 {
		margin-top: 56px;
	}

	.mt-md-64 {
		margin-top: 64px;
	}

	.mt-md-72 {
		margin-top: 72px;
	}

	.mt-md-80 {
		margin-top: 80px;
	}

	.mb-md-0 {
		margin-bottom: 0 !important;
	}

	.mb-md-8 {
		margin-bottom: 8px;
	}

	.mb-md-16 {
		margin-bottom: 16px;
	}

	.mb-md-24 {
		margin-bottom: 24px;
	}

	.mb-md-32 {
		margin-bottom: 32px;
	}

	.mb-md-40 {
		margin-bottom: 40px;
	}

	.mb-md-48 {
		margin-bottom: 48px;
	}

	.mb-md-56 {
		margin-bottom: 56px;
	}

	.mb-md-64 {
		margin-bottom: 64px;
	}

	.mb-md-72 {
		margin-bottom: 72px;
	}

	.mb-md-80 {
		margin-bottom: 80px;
	}

	.pt-md-0 {
		padding-top: 0;
	}

	.pt-md-8 {
		padding-top: 8px;
	}

	.pt-md-16 {
		padding-top: 16px;
	}

	.pt-md-24 {
		padding-top: 24px;
	}

	.pt-md-32 {
		padding-top: 32px;
	}

	.pt-md-40 {
		padding-top: 40px;
	}

	.pt-md-48 {
		padding-top: 48px;
	}

	.pt-md-56 {
		padding-top: 56px;
	}

	.pt-md-64 {
		padding-top: 64px;
	}

	.pt-md-72 {
		padding-top: 72px;
	}

	.pt-md-80 {
		padding-top: 80px;
	}

	.pb-md-0 {
		padding-bottom: 0;
	}

	.pb-md-8 {
		padding-bottom: 8px;
	}

	.pb-md-16 {
		padding-bottom: 16px;
	}

	.pb-md-24 {
		padding-bottom: 24px;
	}

	.pb-md-32 {
		padding-bottom: 32px;
	}

	.pb-md-40 {
		padding-bottom: 40px;
	}

	.pb-md-48 {
		padding-bottom: 48px;
	}

	.pb-md-56 {
		padding-bottom: 56px;
	}

	.pb-md-64 {
		padding-bottom: 64px;
	}

	.pb-md-72 {
		padding-bottom: 72px;
	}

	.pb-md-80 {
		padding-bottom: 80px;
	}
}
@media only screen and (max-width: 767px) {
	.mt-sm-0 {
		margin-top: 0 !important;
	}

	.mt-sm-8 {
		margin-top: 8px;
	}

	.mt-sm-16 {
		margin-top: 16px;
	}

	.mt-sm-24 {
		margin-top: 24px;
	}

	.mt-sm-32 {
		margin-top: 32px;
	}

	.mt-sm-40 {
		margin-top: 40px;
	}

	.mt-sm-48 {
		margin-top: 48px;
	}

	.mt-sm-56 {
		margin-top: 56px;
	}

	.mt-sm-64 {
		margin-top: 64px;
	}

	.mt-sm-72 {
		margin-top: 72px;
	}

	.mt-sm-80 {
		margin-top: 80px;
	}

	.mb-sm-0 {
		margin-bottom: 0 !important;
	}

	.mb-sm-8 {
		margin-bottom: 8px;
	}

	.mb-sm-16 {
		margin-bottom: 16px;
	}

	.mb-sm-24 {
		margin-bottom: 24px;
	}

	.mb-sm-32 {
		margin-bottom: 32px;
	}

	.mb-sm-40 {
		margin-bottom: 40px;
	}

	.mb-sm-48 {
		margin-bottom: 48px;
	}

	.mb-sm-56 {
		margin-bottom: 56px;
	}

	.mb-sm-64 {
		margin-bottom: 64px;
	}

	.mb-sm-72 {
		margin-bottom: 72px;
	}

	.mb-sm-80 {
		margin-bottom: 80px;
	}

	.pt-sm-0 {
		padding-top: 0;
	}

	.pt-sm-8 {
		padding-top: 8px;
	}

	.pt-sm-16 {
		padding-top: 16px;
	}

	.pt-sm-24 {
		padding-top: 24px;
	}

	.pt-sm-32 {
		padding-top: 32px;
	}

	.pt-sm-40 {
		padding-top: 40px;
	}

	.pt-sm-48 {
		padding-top: 48px;
	}

	.pt-sm-56 {
		padding-top: 56px;
	}

	.pt-sm-64 {
		padding-top: 64px;
	}

	.pt-sm-72 {
		padding-top: 72px;
	}

	.pt-sm-80 {
		padding-top: 80px;
	}

	.pb-sm-0 {
		padding-bottom: 0;
	}

	.pb-sm-8 {
		padding-bottom: 8px;
	}

	.pb-sm-16 {
		padding-bottom: 16px;
	}

	.pb-sm-24 {
		padding-bottom: 24px;
	}

	.pb-sm-32 {
		padding-bottom: 32px;
	}

	.pb-sm-40 {
		padding-bottom: 40px;
	}

	.pb-sm-48 {
		padding-bottom: 48px;
	}

	.pb-sm-56 {
		padding-bottom: 56px;
	}

	.pb-sm-64 {
		padding-bottom: 64px;
	}

	.pb-sm-72 {
		padding-bottom: 72px;
	}

	.pb-sm-80 {
		padding-bottom: 80px;
	}
}
@media only screen and (max-width: 575px) {
	.mt-xs-0 {
		margin-top: 0 !important;
	}

	.mt-xs-8 {
		margin-top: 8px;
	}

	.mt-xs-16 {
		margin-top: 16px;
	}

	.mt-xs-24 {
		margin-top: 24px;
	}

	.mt-xs-32 {
		margin-top: 32px;
	}

	.mt-xs-40 {
		margin-top: 40px;
	}

	.mt-xs-48 {
		margin-top: 48px;
	}

	.mt-xs-56 {
		margin-top: 56px;
	}

	.mt-xs-64 {
		margin-top: 64px;
	}

	.mt-xs-72 {
		margin-top: 72px;
	}

	.mt-xs-80 {
		margin-top: 80px;
	}

	.mb-xs-0 {
		margin-bottom: 0 !important;
	}

	.mb-xs-8 {
		margin-bottom: 8px;
	}

	.mb-xs-16 {
		margin-bottom: 16px;
	}

	.mb-xs-24 {
		margin-bottom: 24px;
	}

	.mb-xs-32 {
		margin-bottom: 32px;
	}

	.mb-xs-40 {
		margin-bottom: 40px;
	}

	.mb-xs-48 {
		margin-bottom: 48px;
	}

	.mb-xs-56 {
		margin-bottom: 56px;
	}

	.mb-xs-64 {
		margin-bottom: 64px;
	}

	.mb-xs-72 {
		margin-bottom: 72px;
	}

	.mb-xs-80 {
		margin-bottom: 80px;
	}

	.pt-xs-0 {
		padding-top: 0;
	}

	.pt-xs-8 {
		padding-top: 8px;
	}

	.pt-xs-16 {
		padding-top: 16px;
	}

	.pt-xs-24 {
		padding-top: 24px;
	}

	.pt-xs-32 {
		padding-top: 32px;
	}

	.pt-xs-40 {
		padding-top: 40px;
	}

	.pt-xs-48 {
		padding-top: 48px;
	}

	.pt-xs-56 {
		padding-top: 56px;
	}

	.pt-xs-64 {
		padding-top: 64px;
	}

	.pt-xs-72 {
		padding-top: 72px;
	}

	.pt-xs-80 {
		padding-top: 80px;
	}

	.pb-xs-0 {
		padding-bottom: 0;
	}

	.pb-xs-8 {
		padding-bottom: 8px;
	}

	.pb-xs-16 {
		padding-bottom: 16px;
	}

	.pb-xs-24 {
		padding-bottom: 24px;
	}

	.pb-xs-32 {
		padding-bottom: 32px;
	}

	.pb-xs-40 {
		padding-bottom: 40px;
	}

	.pb-xs-48 {
		padding-bottom: 48px;
	}

	.pb-xs-56 {
		padding-bottom: 56px;
	}

	.pb-xs-64 {
		padding-bottom: 64px;
	}

	.pb-xs-72 {
		padding-bottom: 72px;
	}

	.pb-xs-80 {
		padding-bottom: 80px;
	}
}
/*-------------------------------------------------------*/
/* Helper Classes
/*-------------------------------------------------------*/
.bg-light {
	background-color: #f7fbff;
}

.bg-dark {
	background-color: #282e38;
}

/* Gradients / Overlays
-------------------------------------------------------*/
.bg-overlay:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(37, 80, 222, 0.93);
}

.bg-overlay--dark:before {
	background-color: rgba(40, 46, 56, 0.45);
}

.bottom-gradient {
	position: relative;
}
.bottom-gradient:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 70%;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.7);
	/* Old browsers */
	/* FF3.6+ */
	/* Chrome,Safari4+ */
	/* Chrome10+,Safari5.1+ */
	/* Opera 11.10+ */
	/* IE10+ */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
	/* IE6-9 */
}

/* Box Shadow
-------------------------------------------------------*/
.box-shadow {
	box-shadow: 0px 10px 27px 0px rgba(154, 161, 171, 0.18);
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
	position: relative;
	display: block;
	top: 0;
}

/* Title Underline
-------------------------------------------------------*/
.title-underline a {
	background-image: linear-gradient(to right, #353f58 0%, #353f58 100%);
	background-size: 0px 2px;
	background-position: 0px 95%;
	background-repeat: no-repeat;
	transition: all 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	padding: 0.5% 0px;
}
.title-underline:hover a {
	background-size: 100% 2px;
}

/* Link Underline
-------------------------------------------------------*/
.link-underline {
	position: relative;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
}
.link-underline:after {
	content: "";
	position: absolute;
	display: inline-block;
	background-color: #FF3465;
	height: 2px;
	width: 62px;
	left: 0;
	bottom: -8px;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
}
.link-underline:hover, .link-underline:focus {
	color: #FF3465;
}
.link-underline:hover:after, .link-underline:focus:after {
	width: 100%;
}

/* Flexbox
-------------------------------------------------------*/
.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

/*-------------------------------------------------------*/
/* WordPress Styles
/*-------------------------------------------------------*/
body.admin-bar .modal {
	top: 46px;
}
@media only screen and (min-width: 768px) {
	body.admin-bar .modal {
		top: 32px;
	}
}
body.admin-bar .nav--sticky.sticky,
body.admin-bar .deo-header__sticky-holder.sticky {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .nav--sticky.sticky,
body.admin-bar .deo-header__sticky-holder.sticky {
		top: 46px;
	}
}
@media screen and (max-width: 600px) {
	body.admin-bar .nav--sticky.sticky,
body.admin-bar .deo-header__sticky-holder.sticky {
		top: 0;
	}
}

.site-title {
	font-size: 30px;
	margin-bottom: 0;
}
.nav--transparent .site-title--light {
	color: #ffffff;
}
.nav--transparent .site-title--dark {
	color: #353f58;
}

img {
	height: auto;
}

/* Accessibility
-------------------------------------------------------*/
.screen-reader-text,
.says {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/* Skip link focus fix
-------------------------------------------------------*/
.skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #FF3465;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 700;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}
.skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}

/* Alignment
-------------------------------------------------------*/
.alignleft,
.alignright {
	max-width: 100% !important;
	float: none;
}

@media only screen and (min-width: 576px) {
	.alignleft {
		float: left;
		margin: 0.5em 2em 2em 0;
	}

	.alignright {
		float: right;
		margin: 0.5em 0 2em 2em;
	}

	.alignleft,
.alignright {
		max-width: 40% !important;
	}
}
@media only screen and (max-width: 575px) {
	.alignleft,
.alignright {
		margin-left: 0;
		margin-right: 0;
		float: none;
	}
}
.alignnone {
	margin: 0.5em 0;
}

.aligncenter {
	display: block;
	margin: 0.5em auto;
	text-align: center;
}

.wp-caption,
.gallery-caption {
	max-width: 100%;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	border: 1px solid #e7eaf0;
	padding: 2px;
}

/*-------------------------------------------------------*/
/* Galleries
/*-------------------------------------------------------*/
ul.wp-block-gallery {
	padding-left: 0;
}

@media only screen and (min-width: 576px) {
	div[class^=gallery-columns-],
div[class*=" gallery-columns-"] {
		display: flex;
		flex-wrap: wrap;
		margin-left: -10px;
		margin-right: -10px;
	}
}
.gallery-caption {
	display: block;
	text-align: left;
	padding: 0 10px 0 0;
	margin-bottom: 0;
}

.gallery-item {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin-bottom: 20px;
	padding: 0 10px;
	width: 100%;
}
.gallery-item img {
	width: 100%;
}
.gallery-item a {
	overflow: hidden;
}
@media only screen and (max-width: 575px) {
	.gallery-item {
		max-width: 100%;
		padding: 0;
	}
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus,
.widget-area .gallery-item a,
.widget-area .gallery-item a:hover,
.widget-area .gallery-item a:focus {
	box-shadow: none;
	background: none;
	max-width: 100%;
	display: block;
}

.gallery-item a img {
	display: block;
	transition: all 0.2s cubic-bezier(0.43, 0.07, 0.61, 0.95);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gallery-item a:hover img,
.gallery-item a:focus img {
	transform: scale(1.1);
}

/* Gallery Columns
/*-------------------------------------------------------*/
.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

@media only screen and (min-width: 576px) {
	.gallery-columns-3 .gallery-item {
		max-width: 33.33%;
	}

	.gallery-columns-4 .gallery-item {
		max-width: 25%;
	}
}
@media only screen and (min-width: 768px) {
	.gallery-columns-5 .gallery-item {
		max-width: 20%;
	}

	.gallery-columns-6 .gallery-item {
		max-width: 16.66%;
	}

	.gallery-columns-7 .gallery-item {
		max-width: 14.28%;
	}

	.gallery-columns-8 .gallery-item {
		max-width: 12.5%;
	}

	.gallery-columns-9 .gallery-item {
		max-width: 11.11%;
	}
}
.gallery-columns-5 .gallery-caption,
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/*-------------------------------------------------------*/
/* Password
/*-------------------------------------------------------*/
.post-password-form label > input {
	margin-bottom: 24px;
}

.post-password-form label + input {
	line-height: 48px;
	font-weight: 700;
	padding: 0 24px;
	font-family: "Rubik", sans-serif;
	border: none;
	position: relative;
	top: -3px;
	width: auto;
}

/*-------------------------------------------------------*/
/* Sticky Post
/*-------------------------------------------------------*/
.post.sticky .entry__title:before {
	content: "\e801";
	font-family: "ui-icons";
	display: inline-block;
	position: absolute;
	top: 6px;
	left: -21px;
	font-size: 0.9375rem;
	color: #989ca3;
	max-height: 20px;
}

/* Meta date updated
/*-------------------------------------------------------*/
.updated:not(.published) {
	display: none;
}

/*-------------------------------------------------------*/
/* Comments Multipages Pagination
/*-------------------------------------------------------*/
.comment-navigation {
	margin: 20px 0;
}
.comment-navigation .nav-links:before,
.comment-navigation .nav-links:after {
	display: table;
	content: "";
	clear: both;
}
.comment-navigation .nav-previous {
	float: left;
}
.comment-navigation .nav-next {
	float: right;
}

/*-------------------------------------------------------*/
/* Gutenberg Front-end Styles
/*-------------------------------------------------------*/
:root .has-orange-background-color {
	background-color: #ff3467;
}

:root .has-blue-background-color {
	background-color: #2550de;
}

:root .has-light-blue-background-color {
	background-color: #287ac7;
}

:root .has-dark-blue-background-color {
	background-color: #3e4045;
}

:root .has-silver-background-color {
	background-color: #8b95a3;
}

:root .has-clouds-background-color {
	background-color: #f7fbff;
}

:root .has-white-background-color {
	background-color: #ffffff;
}

:root .has-black-background-color {
	background-color: #000000;
}

:root .has-orange-color {
	color: #ff3467;
}

:root .has-blue-color {
	color: #2550de;
}

:root .has-light-blue-color {
	color: #287ac7;
}

:root .has-dark-blue-color {
	color: #3e4045;
}

:root .has-silver-color {
	color: #8b95a3;
}

:root .has-clouds-color {
	color: #f7fbff;
}

:root .has-white-color {
	color: #ffffff;
}

:root .has-black-color {
	color: #000000;
}

/* Buttons
-------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
	padding: 14px 30px;
	font-size: 1rem;
	border-radius: 50px;
	font-weight: 700;
	font-family: "Rubik", sans-serif;
	line-height: 1.1 !important;
}

.wp-block-button__link:not(.has-background),
.wp-block-button__link:not(.has-background):active,
.wp-block-button__link:not(.has-background):focus,
.wp-block-button__link:not(.has-background):hover,
.wp-block-button__link:not(.has-background):visited {
	background-color: #FF3465;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
}

/* Full-width Images
-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
	.fullwidth .entry__article .alignwide {
		margin-left: -120px;
		margin-right: -120px;
		width: auto;
		max-width: none;
	}
	.fullwidth .entry__article .alignfull {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: 100vw;
		position: relative;
		z-index: 1;
	}
	.fullwidth .entry__article .alignfull img {
		width: 100vw;
	}
}
/* Images
-------------------------------------------------------*/
@media only screen and (max-width: 575px) {
	.wp-block-image .alignleft {
		float: none;
		margin-right: 0;
	}
	.wp-block-image .alignright {
		float: none;
		margin-left: 0;
	}
}

/* Cover
-------------------------------------------------------*/
.wp-block-cover {
	margin: 0 0 1.5em;
	font-size: 1rem;
	line-height: 1.3;
}
.wp-block-cover.alignleft {
	margin: 0.5em 2em 1.5em 0;
}
.wp-block-cover.alignright {
	margin: 0.5em 0 1.5em 2em;
}

/* Tables
-------------------------------------------------------*/
.wp-block-table {
	width: 100%;
	margin-bottom: 2rem;
}

/* Latest Comments
-------------------------------------------------------*/
ol.wp-block-latest-comments {
	padding-left: 0;
}

/* Galleries
-------------------------------------------------------*/
ul.wp-block-gallery,
.wp-block-gallery ul {
	list-style: none;
	padding-left: 0;
}

/* Captions
-------------------------------------------------------*/
.wp-block-image figcaption,
.wp-block-embed figcaption,
.wp-block-audio figcaption {
	color: #a5adb8;
}

.wp-block-image figcaption {
	margin-top: 1em;
}

/* Separators
-------------------------------------------------------*/
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #e7eaf0;
}

.wp-block-separator {
	border-color: #e7eaf0;
	border-top: none;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots),
.wp-block-separator.is-style-default {
	max-width: 100px;
}

.wp-block-separator.is-style-dots:before {
	font-weight: 700;
	color: #656970;
}

/* Blockquote / Pullquote
-------------------------------------------------------*/
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
	padding: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
	font-size: 2rem;
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer, .wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
	font-size: 1rem;
}

.wp-block-pullquote {
	font-size: 1rem;
	padding: 0;
	text-align: left;
	line-height: 1.5;
	padding: 3em 1em;
	margin-bottom: 40px;
	border-top: 4px solid #e7eaf0;
	border-bottom: 4px solid #e7eaf0;
	color: #353f58;
}
.wp-block-pullquote blockquote {
	margin: 0;
	border: 0;
	padding: 0;
	line-height: normal;
}
.wp-block-pullquote cite {
	opacity: 0.7;
}
.wp-block-pullquote blockquote:not(.has-text-color) cite {
	color: #656970;
}
@media only screen and (min-width: 576px) {
	.wp-block-pullquote.alignleft {
		margin-right: 2em;
	}
	.wp-block-pullquote.alignright {
		margin-left: 2em;
	}
}
@media only screen and (max-width: 575px) {
	.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
		max-width: 100%;
		float: none;
		margin-left: 0;
		margin-right: 0;
	}
}

.wp-block-pullquote.is-style-solid-color.alignleft blockquote p, .wp-block-pullquote.is-style-solid-color.alignright blockquote p {
	font-size: 1.25rem;
}

/* Social Icons
-------------------------------------------------------*/
ul.wp-block-social-links {
	padding: 0;
}
ul.wp-block-social-links .wp-social-link a:focus {
	color: currentColor;
	fill: currentColor;
}

/* Latest Posts
-------------------------------------------------------*/
.wp-block-latest-posts.wp-block-latest-posts__list {
	padding: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
	margin-bottom: 24px;
}
.wp-block-latest-posts__featured-image {
	margin-bottom: 10px;
}
.wp-block-latest-posts a {
	display: inline-block;
	line-height: 1.3;
}

/*-------------------------------------------------------*/
/* Widgets
/*-------------------------------------------------------*/
.footer .widget {
	margin-bottom: 40px;
}
.sidebar .widget, .elementor-widget-sidebar .widget {
	background-color: #fff;
	border-radius: 5px;
	padding: 36px;
	margin-bottom: 54px;
	border: 1px solid #e7eaf0;
}
.widget li {
	list-style: none;
}
.widget-title {
	font-size: 1rem;
	margin-bottom: 20px;
}

.widget .sub-menu,
.widget .children {
	padding-top: 10px;
}
.widget .sub-menu li:first-child,
.widget .children li:first-child {
	border-top: 1px solid #e7eaf0;
	padding-top: 10px;
}

/* Widget Categories, Recent Entries, Comments, Archives, Meta
----------------------------------------------------------------*/
.elementor-widget-wp-widget-recent-posts a,
.widget_recent_entries a,
.elementor-widget-wp-widget-nav_menu a,
.widget_nav_menu a,
.elementor-widget-wp-widget-categories a,
.widget_categories a,
.elementor-widget-wp-widget-pages a,
.widget_pages a,
.elementor-widget-wp-widget-pages-archives a,
.widget_archive a,
.elementor-widget-wp-widget-meta a,
.widget_meta a {
	color: #656970;
}
.elementor-widget-wp-widget-recent-posts a:hover,
.widget_recent_entries a:hover,
.elementor-widget-wp-widget-nav_menu a:hover,
.widget_nav_menu a:hover,
.elementor-widget-wp-widget-categories a:hover,
.widget_categories a:hover,
.elementor-widget-wp-widget-pages a:hover,
.widget_pages a:hover,
.elementor-widget-wp-widget-pages-archives a:hover,
.widget_archive a:hover,
.elementor-widget-wp-widget-meta a:hover,
.widget_meta a:hover {
	color: #FF3465;
}

.elementor-widget-wp-widget-recent-comments a,
.widget_recent_comments a {
	color: #353f58;
}
.elementor-widget-wp-widget-recent-comments a:hover,
.widget_recent_comments a:hover {
	color: #FF3465;
}

.elementor-widget-wp-widget-recent-posts li,
.widget_recent_entries li,
.elementor-widget-wp-widget-nav_menu li,
.widget_nav_menu li,
.elementor-widget-wp-widget-categories li,
.widget_categories li,
.elementor-widget-wp-widget-pages li,
.widget_pages li,
.elementor-widget-wp-widget-pages-archives li,
.widget_archive li,
.elementor-widget-wp-widget-meta li,
.widget_meta li,
.elementor-widget-wp-widget-recent-comments li,
.widget_recent_comments li {
	padding: 10px 0;
	border-bottom: 1px solid #e7eaf0;
}
.elementor-widget-wp-widget-recent-posts li:first-child,
.widget_recent_entries li:first-child,
.elementor-widget-wp-widget-nav_menu li:first-child,
.widget_nav_menu li:first-child,
.elementor-widget-wp-widget-categories li:first-child,
.widget_categories li:first-child,
.elementor-widget-wp-widget-pages li:first-child,
.widget_pages li:first-child,
.elementor-widget-wp-widget-pages-archives li:first-child,
.widget_archive li:first-child,
.elementor-widget-wp-widget-meta li:first-child,
.widget_meta li:first-child,
.elementor-widget-wp-widget-recent-comments li:first-child,
.widget_recent_comments li:first-child {
	padding-top: 0;
}
.elementor-widget-wp-widget-recent-posts li:last-child,
.widget_recent_entries li:last-child,
.elementor-widget-wp-widget-nav_menu li:last-child,
.widget_nav_menu li:last-child,
.elementor-widget-wp-widget-categories li:last-child,
.widget_categories li:last-child,
.elementor-widget-wp-widget-pages li:last-child,
.widget_pages li:last-child,
.elementor-widget-wp-widget-pages-archives li:last-child,
.widget_archive li:last-child,
.elementor-widget-wp-widget-meta li:last-child,
.widget_meta li:last-child,
.elementor-widget-wp-widget-recent-comments li:last-child,
.widget_recent_comments li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

/* Recent Comments / Recent Posts
-------------------------------------------------------*/
.recentcomments,
.widget_recent_entries li {
	position: relative;
	padding-left: 16px !important;
}
.recentcomments::before,
.widget_recent_entries li::before {
	content: "\f006";
	font-family: "ui-icons";
	display: block;
	position: absolute;
	left: 0;
	font-size: 0.625rem;
	margin-top: 4px;
}

/* Widget RSS
-------------------------------------------------------*/
.widget_rss li {
	padding: 16px 0;
	border-bottom: 1px solid #e7eaf0;
}
.widget_rss li:first-child {
	padding-top: 0;
}
.widget_rss .rsswidget {
	color: #353f58;
}
.widget_rss .rsswidget:hover {
	color: #FF3465;
}
.widget_rss .rss-date {
	display: block;
	color: #a5adb8;
	font-size: 0.875rem;
	margin: 6px 0 12px;
}
.widget_rss .rssSummary {
	margin-bottom: 8px;
}
.widget_rss .rssSummary + cite {
	font-size: 15px;
	color: #a5adb8;
}
.widget_rss .widget-title .rsswidget:last-child {
	vertical-align: middle;
	margin-left: 5px;
	margin-top: 2px;
	display: inline-block;
}

/* Widgets select (Categories, Archives, Text Widget)
-------------------------------------------------------*/
.widget_categories select,
.widget_archive select,
.widget_text select {
	margin-bottom: 0;
}

/* Widget Calendar
-------------------------------------------------------*/
#wp-calendar {
	width: 100%;
}
#wp-calendar > thead > tr > th, #wp-calendar > tbody > tr > th, #wp-calendar > tfoot > tr > th, #wp-calendar > thead > tr > td, #wp-calendar > tbody > tr > td, #wp-calendar > tfoot > tr > td {
	border: 0;
}
#wp-calendar caption {
	caption-side: top;
	text-align: right;
	color: #656970;
	font-size: 12px;
	padding: 0;
	margin-bottom: 15px;
	padding-right: 10px;
}
#wp-calendar thead {
	font-size: 10px;
}
#wp-calendar thead th {
	padding: 8px;
	text-align: center;
}
#wp-calendar thead th:first-child {
	padding-left: 0;
}
#wp-calendar thead th:last-child {
	padding-right: 0;
}
#wp-calendar tbody {
	color: #a5adb8;
}
#wp-calendar tbody td {
	text-align: center;
	padding: 8px;
}
#wp-calendar tbody td:first-child {
	padding-left: 0;
}
#wp-calendar tbody td:last-child {
	padding-right: 0;
}
#wp-calendar tbody .pad {
	background: none;
}
#wp-calendar tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
	padding-right: 4px;
}
#wp-calendar tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
	padding-left: 4px;
}

/* Widget Popular Posts
-------------------------------------------------------*/
.widget-popular-posts__first-post .widget-popular-posts__img-holder {
	width: 100%;
	float: none;
	margin-bottom: 24px !important;
}
.widget-popular-posts__list > li {
	padding: 20px 0;
	border-bottom: 1px solid #e7eaf0;
}
.widget-popular-posts__list > li:first-child {
	padding-top: 0;
}
.widget-popular-posts__list > li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.widget-popular-posts__img-holder {
	width: 80px;
	float: left;
	position: relative;
	margin-right: 16px !important;
	border-radius: 7px;
	overflow: hidden;
}
@media only screen and (max-width: 991px) {
	.widget-popular-posts__img-holder {
		width: 50px;
	}
}
.widget-popular-posts__entry {
	min-height: 60px;
	overflow: hidden;
}
.widget-popular-posts__entry-title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 5px;
}
.widget-popular-posts__entry-title a {
	color: #353f58;
}
.widget-popular-posts__entry-title a:hover {
	color: #FF3465;
}

/* Widget Search
-------------------------------------------------------*/
.widget-search-input {
	background-color: #fff;
}

.widget_search .search-input {
	margin-bottom: 0;
}

.widget-search-button,
.search-form__button,
.search-button {
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	line-height: 48px;
	padding: 0 !important;
	background-color: transparent;
	color: #656970;
	border: 0;
	font-size: 1.25rem;
	vertical-align: middle;
	border-radius: 0;
}

.search-form {
	position: relative;
}

/* Widget Tags / Entry Tags
-------------------------------------------------------*/
.widget_tag_cloud a,
.entry__tags a {
	line-height: 1;
	margin: 0 8px 8px 0;
	padding: 6px 10px;
	border-radius: 50px;
	font-size: 0.8175rem !important;
	font-weight: 700;
	background-color: #f3f4f7;
	color: #353f58;
	display: inline-block;
	float: left;
	transition: all 0.1s ease-in-out;
}
.widget_tag_cloud a:hover,
.entry__tags a:hover {
	background-color: #FF3465;
	border-color: transparent;
	color: #fff;
}

.tagcloud {
	overflow: hidden;
}

/* Widget Mailchimp
-------------------------------------------------------*/
.elementor-widget-sidebar .deo-field-type-input,
.sidebar .deo-field-type-input,
.footer .deo-field-type-input {
	margin-bottom: 16px;
}
.elementor-widget-sidebar .newsletter-subtitle,
.sidebar .newsletter-subtitle,
.footer .newsletter-subtitle {
	margin-top: -12px;
	margin-bottom: 24px;
}

/*-------------------------------------------------------*/
/* Page 404
/*-------------------------------------------------------*/
.page-404__title {
	font-size: 2rem;
	font-weight: 700;
}
.page-404__text {
	font-size: 1.5rem;
}
.page-404__img {
	max-height: 366px;
}
@media (max-width: 1170px) {
	.page-404__img {
		max-height: 240px;
	}
}
@media only screen and (min-width: 768px) {
	.page-404__title {
		font-size: 3.75rem;
	}
}
/*# sourceMappingURL=style.css.map */
