:root {
  --deo-primary-color: #fa6262;
  --deo-secondary-color: #f8875f;
  --deo-tertiary-color: #4c86e7;
  --deo-text-color: #6a798c;
  --deo-links-color: #4c86e7;
  --deo-meta-color: #6a798c;
  --deo-heading-color: #333b69;
  --deo-border-color: #e8eced;
  --deo-background-color--light: #f7f9fa;
  --deo-background-color--dark: #282e38;
  --deo-body-font: "Roboto", sans-serif;
  --deo-heading-font: "Roboto", sans-serif;
  --deo-nav-height: 72px;
}

/*
Theme Name: Margin
Theme URI: https://margin.deothemes.com
Author: DeoThemes
Author URI: https://deothemes.com
Description: Margin is a clean modern WordPress theme for Marketing, SEO experts and Digital Agencies.
Version: 2.10.3
Tested up to: 6.7
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: margin
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
2. Typography
3. Grid
4. Layout
5. Navigation
6. Footer
7. Responsive
8. Spacings
9. Widgets
10. Shop
11. Helper Classes
12. Gutenberg

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/
html {
  font-size: 100%;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}

::-moz-selection {
  background-color: #fdf0b2;
}

::-webkit-selection {
  background-color: #fdf0b2;
}

::selection {
  background-color: #fdf0b2;
}

:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--deo-body-font);
  font-size: 15px;
  line-height: 1.75;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  background: #fff;
  text-align: left;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--deo-text-color);
}
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;
}

a {
  text-decoration: none;
  color: var(--deo-primary-color);
  transition: color 0.1s ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
  color: var(--deo-heading-color);
}

p {
  margin: 0 0 10px;
}

video {
  height: 100%;
  width: 100%;
}

hr {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--deo-border-color);
}

/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 5px;
  width: 5em;
  height: 5em;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  border-top: 0.5em solid var(--deo-tertiary-color);
  border-right: 0.5em solid rgba(245, 245, 245, 0.5);
  border-bottom: 0.5em solid rgba(245, 245, 245, 0.5);
  border-left: 0.5em solid rgba(245, 245, 245, 0.5);
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/
ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--deo-heading-font);
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--deo-heading-color);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

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

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

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

h5, .h5 {
  font-size: 1.3125rem;
}

h6, .h6 {
  font-size: 1.125rem;
}

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.625rem;
  }
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: inherit;
}
h1 > a:hover, h1 > a:focus,
h2 > a:hover,
h2 > a:focus,
h3 > a:hover,
h3 > a:focus,
h4 > a:hover,
h4 > a:focus,
h5 > a:hover,
h5 > a:focus,
h6 > a:hover,
h6 > a:focus {
  color: var(--deo-primary-color);
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: var(--deo-heading-color);
  font-size: 85%;
}

.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;
  }
}
.section-headings p {
  margin-bottom: 40px;
}

.title-row {
  margin-bottom: 48px;
  position: relative;
}
.title-row--boxed {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  font-size: 18px;
  line-height: 1.56;
  font-weight: 500;
}

.highlight {
  color: var(--deo-primary-color);
}

.lead {
  font-size: 18px;
  line-height: 30px;
}

address {
  font-style: normal;
  margin-bottom: 0;
}

/*-------------------------------------------------------*/
/* Grid
/*-------------------------------------------------------*/
.container {
  max-width: 1140px;
}

.section-wrap {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 991px) {
  .section-wrap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-wrap {
    padding: 60px 0;
  }
}
.section-wrap--pb-large {
  padding-bottom: 180px;
}
@media only screen and (max-width: 767px) {
  .section-wrap--pb-large {
    padding-bottom: 60px;
  }
}

.container-semi-fluid {
  padding: 0 50px;
}
@media only screen and (max-width: 767px) {
  .container-semi-fluid {
    padding: 0 20px;
  }
}

.main-container {
  margin: auto;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* Columns Gutters
-------------------------------------------------------*/
.row-16 {
  margin: 0 -8px;
}

.row-16 > [class*=col-] {
  padding: 0 8px;
}

.row-20 {
  margin: 0 -10px;
}

.row-20 > [class*=col-] {
  padding: 0 10px;
}

.row-30 {
  margin: 0 -15px;
}

.row-30 > [class*=col-] {
  padding: 0 15px;
}

.row-40 {
  margin: 0 -20px;
}

.row-40 > [class*=col-] {
  padding: 0 20px;
}

.row-50 {
  margin: 0 -25px;
}

.row-50 > [class*=col-] {
  padding: 0 25px;
}

.row-60 {
  margin: 0 -30px;
}

.row-60 > [class*=col-] {
  padding: 0 30px;
}

/* Flexbox
-------------------------------------------------------*/
.flex-parent {
  display: flex;
  flex-flow: row nowrap;
}

.flex-child {
  flex: 1 0 0;
}

/* Columns With No Gutters
-------------------------------------------------------*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* Layout Grid
-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
  .left-sidebar .shop-content,
.left-sidebar .page-content,
.left-sidebar .blog__content {
    order: 2;
  }
}
/*-------------------------------------------------------*/
/* Buttons
/*-------------------------------------------------------*/
.btn {
  font-weight: 700;
  font-family: var(--deo-body-font);
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  color: #fff;
  background-color: var(--deo-primary-color);
  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;
  border-color: transparent;
}
.btn:focus {
  outline: none;
  color: #fff;
}
.btn--lg, .btn--lg.btn--button {
  font-size: 15px;
  padding: 12px 24px;
}
.btn--md, .btn--md.btn--button {
  font-size: 15px;
  padding: 10px 24px;
}
.btn--color {
  background-color: var(--deo-primary-color);
  box-shadow: 0 5px 15px rgba(250, 98, 98, 0.4);
}
.btn--color:hover {
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(250, 98, 98, 0.4);
}
.btn--alt-color {
  background-color: var(--deo-tertiary-color);
  box-shadow: 0 5px 15px rgba(76, 134, 231, 0.4);
}
.btn--alt-color:hover {
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(76, 134, 231, 0.4);
}
.btn--dark {
  background-color: var(--deo-background-color--dark);
}
.btn--white {
  background-color: #fff;
  color: var(--deo-heading-color);
}
.btn--light {
  background-color: var(--deo-background-color--light);
  color: var(--deo-heading-color);
}
.btn--wide {
  width: 100%;
}
.btn--dark:hover, .btn--dark:focus, .btn--white:hover, .btn--white:focus, .btn--light:hover, .btn--light:focus {
  background-color: var(--deo-primary-color);
  border-color: transparent;
}
.btn i {
  font-size: 12px;
  position: relative;
  margin-left: 40px;
  line-height: 1;
}

/* Input Buttons
-------------------------------------------------------*/
.btn--button {
  border: none;
  margin-bottom: 0;
  width: auto;
  height: auto;
}
.btn--button:focus {
  background-color: var(--deo-primary-color);
}
.btn--button.btn--color, .btn--button.btn-dark {
  color: #fff;
  box-shadow: none;
}
.btn--button.btn--wide {
  width: 100%;
}

/*-------------------------------------------------------*/
/* Form Elements
/*-------------------------------------------------------*/
input,
select,
textarea,
.select2-container--default .select2-selection--single {
  height: 46px;
  border-radius: 5px;
  border: 1px solid var(--deo-border-color);
  background-color: var(--deo-background-color--light);
  color: var(--deo-text-color);
  width: 100%;
  margin-bottom: 24px;
  padding: 0 12px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--deo-border-color);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
  padding-left: 0;
}

.select2-container--default .select2-selection--single,
.select2-search--dropdown .select2-search__field {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
  right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--deo-text-color) transparent transparent transparent;
}

textarea {
  height: auto;
  display: block;
  padding: 8px 16px;
  margin-bottom: 24px;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  height: auto;
  background-color: var(--deo-primary-color);
  border-color: transparent;
  padding: 11px 24px;
  color: #fff;
  font-weight: 700;
}

input[type=search] {
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  border-color: var(--deo-primary-color);
  background-color: #fff;
  outline: none;
  box-shadow: none;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
/* Change Color of Placeholders */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--deo-text-color);
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--deo-text-color);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--deo-text-color);
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--deo-text-color);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: var(--deo-heading-color);
  padding-left: 12px;
  background-image: url(assets/img/dropdown.png);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

select::-ms-expand {
  display: none;
}

label {
  color: var(--deo-heading-color);
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
  line-height: 1.5;
}
label input[type=checkbox],
label input[type=radio] {
  float: left;
}

.input-underline {
  position: relative;
  display: block;
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: var(--deo-primary-color);
  transition: 0.2s ease all;
}

.form-group {
  position: relative;
}

.form-input:focus ~ .input-underline {
  width: 100%;
}

/* Checkboxes & Radio Buttons
-------------------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  margin-right: 8px;
  text-align: center;
  line-height: 18px;
  border: 1px solid var(--deo-border-color);
  background-color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  border-color: var(--deo-border-color);
  background-color: var(--deo-background-color--light);
}

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: 22px;
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked:after {
  content: "";
  width: 8px;
  height: 8px;
  position: relative;
  top: -1px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--deo-background-color--dark);
}

/*-------------------------------------------------------*/
/* Icon Font
/*-------------------------------------------------------*/
[class^=ui-]:before,
[class*=" ui-"]:before {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  line-height: normal;
}

/*-------------------------------------------------------*/
/* Card
/*-------------------------------------------------------*/
.card {
  display: flex;
  flex: 1 0 0%;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.card-row > div {
  margin-bottom: 48px;
}
.card-row .card {
  height: 100%;
  margin-bottom: 0;
}
.card__img-holder {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}
.card__body {
  background-color: #fff;
  padding: 40px;
  flex: 1 1 auto;
}
.card--small .card__body {
  padding: 24px 16px;
}
.card--small .entry__title {
  font-size: 16px;
  margin-bottom: 0;
}

/*-------------------------------------------------------*/
/* Tables
/*-------------------------------------------------------*/
.table-wrap {
  margin-bottom: 34px;
}

/*-------------------------------------------------------*/
/* 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 var(--deo-border-color);
  padding: 10px;
}

table > thead > tr > th {
  border-bottom: none;
}

table thead tr th {
  font-size: 12px;
  color: var(--deo-heading-color);
  font-family: var(--deo-heading-font);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/*-------------------------------------------------------*/
/* Layout
/*-------------------------------------------------------*/
.main-wrapper {
  overflow: hidden;
  position: relative;
}

/*-------------------------------------------------------*/
/* Page Title
/*-------------------------------------------------------*/
.page-title {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  padding: 200px 0 115px;
  background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--deo-background-color--light);
}
.page-title__holder {
  max-width: 878px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.page-title__title {
  line-height: 1.3;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .page-title .entry-title {
    font-size: 2rem;
  }
}
.page-title.bg-color-overlay .page-title__title, .page-title.bg-color-overlay .page-title__subtitle,
.page-title .entry__meta li,
.page-title .entry__meta a {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .page-title {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-title {
    padding: 40px 0;
  }
}

/*-------------------------------------------------------*/
/* Newsletter
/*-------------------------------------------------------*/
.newsletter {
  /* Change Color of Placeholders */
}
.newsletter .title-row {
  margin-bottom: 20px;
}
.newsletter .section-title {
  font-size: 36px;
  margin-bottom: 30px;
}
.newsletter .subtitle {
  font-size: 21px;
  font-weight: 400;
}
.newsletter__form {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__row {
  display: flex;
}
.newsletter__row > .form-group {
  order: 0 /*!rtl:1*/;
  margin-right: 8px;
}
@media only screen and (max-width: 575px) {
  .newsletter__row > .form-group {
    margin-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .newsletter__row {
    display: block;
  }
}
.newsletter input[type=email],
.newsletter input[type=text] {
  color: #fff;
  height: 50px;
  background-color: transparent;
  border-color: rgba(213, 217, 237, 0.36);
}
.newsletter input[type=email]:focus,
.newsletter input[type=text]:focus {
  border-color: #fff;
}
.newsletter__submit .btn {
  width: 100%;
}
.newsletter .consent-checkbox {
  text-align: center;
}
.newsletter .consent-checkbox .wpcf7-list-item-label {
  color: #fff;
}
.newsletter .consent-checkbox .wpcf7-list-item-label a {
  color: var(--deo-primary-color);
}
.newsletter input[type=email]::-webkit-input-placeholder,
.newsletter input[type=text]::-webkit-input-placeholder {
  color: #fff;
}
.newsletter input[type=email]:-moz-placeholder,
.newsletter input[type=text]:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.newsletter input[type=email]::-moz-placeholder,
.newsletter input[type=text]::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.newsletter input[type=email]:-ms-input-placeholder,
.newsletter input[type=text]:-ms-input-placeholder {
  color: #fff;
}

div.wpcf7-response-output {
  border: none;
  border-radius: 5px;
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
  background-color: #f2dede;
  color: #a94442;
}

div.wpcf7-mail-sent-ok {
  background-color: #dff0d8;
  color: #3c763d;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-spam-blocked {
  background-color: #fcf8e3;
  color: #8a6d3b;
}

/* Read More
-------------------------------------------------------*/
.read-more {
  color: var(--deo-tertiary-color);
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
}
.read-more__icon {
  font-size: 0.75rem;
  margin-left: 20px;
}

/*-------------------------------------------------------*/
/* Breadcrumbs
/*-------------------------------------------------------*/
.breadcrumbs a {
  color: var(--deo-heading-color);
}
.breadcrumbs a:hover {
  color: var(--deo-primary-color);
}
.breadcrumbs__separator {
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  margin: 0 10px;
}
.page-title.bg-color-overlay .breadcrumbs, .page-title.bg-color-overlay .breadcrumbs a {
  color: #fff;
}

.rtl .breadcrumbs__separator {
  transform: rotate(180deg);
}

/* Cookies banner
-------------------------------------------------------*/
.cc-container {
  display: flex;
  justify-content: center;
  padding: 0;
}

.cc-window {
  background-color: var(--deo-background-color--dark) !important;
}

.cc-message {
  margin-right: 20px;
  flex: 0 1 auto !important;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.cc-link {
  opacity: 1;
  font-weight: 700;
}
.cc-link:hover, .cc-link:focus {
  color: #fff;
}

.cc-link:active,
.cc-link:visited {
  color: #fff;
}

a.cc-btn.cc-dismiss {
  font-family: var(--deo-body-font);
  font-size: 15px !important;
  background-color: var(--deo-primary-color);
  height: 26px;
  line-height: 26px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  min-width: auto !important;
}
a.cc-btn.cc-dismiss:hover, a.cc-btn.cc-dismiss:focus {
  opacity: 0.9;
}

/*-------------------------------------------------------*/
/* Contact
/*-------------------------------------------------------*/
.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
  margin-bottom: 14px;
}

/*-------------------------------------------------------*/
/* Blog
/*-------------------------------------------------------*/
.single-post .content-wrapper {
  padding-top: 132px;
}
@media only screen and (max-width: 991px) {
  .single-post .content-wrapper {
    padding-top: 20px;
  }
}

.content-wrapper--pt-large {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .content-wrapper--pt-large {
    padding-top: 0;
  }
}

.entry {
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
}
.entry__img {
  width: 100%;
}
.entry__date {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #fff;
  color: var(--deo-heading-color);
  padding: 12px 16px;
  border-radius: 5px;
  text-align: center;
  pointer-events: none;
}
.entry__date-day {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  line-height: 1;
}
.entry__date-month {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  font-size: 10px;
  font-weight: 500;
}
.entry__title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
}
.entry__excerpt {
  margin-top: 20px;
}
.entry__excerpt p {
  margin-bottom: 0;
}

/* Blog meta
-------------------------------------------------------*/
.entry__meta li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-right: 18px;
  color: var(--deo-meta-color);
}
.entry__meta li:last-child {
  margin-right: 0;
}
.entry__meta a {
  color: var(--deo-heading-color);
}
.entry__meta a:hover, .entry__meta a:focus {
  color: var(--deo-primary-color);
}
.entry__meta span {
  color: var(--deo-heading-color);
}
.entry__meta i {
  color: var(--deo-primary-color);
  font-size: 15px;
  display: inline-block;
  margin-right: 3px;
}

/*-------------------------------------------------------*/
/* Pagination
/*-------------------------------------------------------*/
.pagination,
.woocommerce-pagination {
  text-align: center;
  padding: 16px 0;
}
.pagination ul,
.woocommerce-pagination ul {
  list-style: none;
  clear: both;
  display: flex;
  justify-content: center;
}
.pagination span,
.pagination a,
.woocommerce-pagination span,
.woocommerce-pagination a {
  font-size: 15px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  margin-right: 2px;
  border-radius: 5px;
  text-align: center;
  color: var(--deo-text-color);
  background-color: #fff;
  border: 1px solid var(--deo-border-color);
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}
.pagination span:not(span):hover,
.pagination a:not(span):hover,
.woocommerce-pagination span:not(span):hover,
.woocommerce-pagination a:not(span):hover {
  background-color: var(--deo-primary-color);
  border-color: transparent;
  color: #fff;
}
.pagination span.current,
.pagination a.current,
.woocommerce-pagination span.current,
.woocommerce-pagination a.current {
  background-color: var(--deo-primary-color);
  color: #fff;
  border-color: transparent;
}
.pagination span i,
.pagination a i,
.woocommerce-pagination span i,
.woocommerce-pagination a i {
  font-size: 0.75rem;
  display: inline-block;
}
.rtl .pagination span i,
.rtl .pagination a i,
.rtl .woocommerce-pagination span i,
.rtl .woocommerce-pagination a i {
  transform: rotate(180deg);
}

.pagination .page-numbers {
  margin: 0;
}

/*-------------------------------------------------------*/
/* Featured Image
/*-------------------------------------------------------*/
.blog-featured-img {
  padding: 52px 0;
  background-color: var(--deo-background-color--dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-featured-img .entry__meta li {
  font-size: 18px;
  margin-right: 6px;
}
.blog-featured-img .entry__meta li span {
  color: #fff;
}
.blog-featured-img .entry__meta li:after {
  content: "-";
  display: inline-block;
  margin-left: 6px;
}
.blog-featured-img .entry__meta li:last-child:after {
  display: none;
}
.blog-featured-img .entry__meta-author-img {
  margin-right: 16px;
  border-radius: 50%;
}
@media only screen and (max-width: 575px) {
  .blog-featured-img .entry__meta-author-img {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .blog-featured-img {
    padding: 80px 0;
  }
}

/*-------------------------------------------------------*/
/* Single Post
/*-------------------------------------------------------*/
.breadcrumbs + .single-post__title {
  margin-top: 20px;
}
.single-post__entry {
  overflow: visible;
}
.single-post__entry-meta {
  margin-bottom: 20px;
}

.entry__article {
  font-size: 1.125rem;
  line-height: 1.8;
}
.entry__article > h1, .entry__article > h2, .entry__article > h3, .entry__article > h4, .entry__article > h5, .entry__article > h6 {
  margin-top: 36px;
  margin-bottom: 18px;
}
.entry__article > p,
.entry__article ul,
.entry__article ol {
  margin-bottom: 34px;
}
.entry__article > p:last-child {
  margin-bottom: 0;
}
.entry__article p a,
.entry__article li:not(.wp-social-link) a {
  color: var(--deo-links-color);
}
.entry__article p a:hover,
.entry__article li:not(.wp-social-link) a:hover {
  color: var(--deo-primary-color);
}
.entry__article figure {
  margin-bottom: 24px;
}
.entry__article ol,
.entry__article ul {
  padding-left: 18px;
  line-height: 30px;
}

figure {
  margin: 0;
}

figcaption {
  font-family: var(--deo-body-font);
  font-size: 12px;
  margin-top: 10px;
  color: var(--deo-meta-color);
}

/* Entry Share
/*-------------------------------------------------------*/
.entry__article-wrap {
  position: relative;
}

.entry__share-socials {
  padding-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .entry__share {
    position: absolute !important;
    height: 100%;
    margin-left: -100px;
  }
  .entry__share-socials {
    width: 40px;
  }
}

@media only screen and (min-width: 992px) {
  .left-sidebar .entry__share,
.right-sidebar .entry__share {
    position: relative !important;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .left-sidebar .entry__share-socials,
.right-sidebar .entry__share-socials {
    width: auto;
  }
}
/* Entry Tags
/*-------------------------------------------------------*/
.entry__tags {
  margin-top: 30px;
}
.entry__tags-label {
  color: var(--deo-heading-color);
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-right: 4px;
}

/* Related Posts 
/*-------------------------------------------------------*/
.related-posts {
  margin-top: 48px;
}
.related-posts .entry {
  margin-bottom: 24px;
}

/* Comments
/*-------------------------------------------------------*/
.entry__comments {
  margin-top: 32px;
}

.comment {
  list-style: none;
}
@media only screen and (min-width: 576px) {
  .comment .children {
    padding-left: 8%;
  }
}
.comment-list > li:first-child > .comment-body {
  border-top: 0;
  padding-top: 0;
}
.comment-body {
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--deo-border-color);
}
.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-family: var(--deo-heading-font);
  font-size: 15px;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 8px;
}
.comment-metadata {
  display: inline-block;
}
.comment-date, .comment-edit-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9aa5b5;
}
.comment-edit-link {
  margin-left: 5px;
  margin-bottom: 0;
  color: var(--deo-primary-color);
}
.comment-reply-link {
  color: var(--deo-heading-color);
  font-weight: 500;
}
.comment-reply-link:hover {
  color: var(--deo-primary-color);
}

/* Comment Form
/*-------------------------------------------------------*/
.comment-form p {
  margin: 0;
}
.comment-form .comment-form-cookies-consent {
  margin-bottom: 24px;
}

.comment-respond {
  margin-top: 40px;
}

/* Entry Navigation
/*-------------------------------------------------------*/
.entry-navigation {
  padding-top: 48px;
}
.entry-navigation__row {
  margin: 0 -15px;
  display: flex;
}
.entry-navigation__col {
  padding: 0 15px;
}
.entry-navigation__item {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
}
.entry-navigation__item-img {
  min-width: 147px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 1199px) {
  .entry-navigation__item-img {
    min-width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .entry-navigation__item-img {
    display: none;
  }
}
.entry-navigation__item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.entry-navigation--left {
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.entry-navigation--left i {
  margin-right: 7px;
}
.entry-navigation--right {
  margin-bottom: 12px;
  text-align: right;
  float: right;
  margin-left: auto;
  width: 50%;
}
.entry-navigation--right i {
  display: inline-block;
  margin-left: 7px;
}
.rtl .entry-navigation--right i {
  transform: rotate(180deg);
}
.entry-navigation__body {
  padding: 16px 24px;
  background-color: var(--deo-background-color--light);
  width: 100%;
}
.entry-navigation i {
  font-size: 12px;
  color: var(--deo-text-color);
}
.entry-navigation__label {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--deo-meta-color);
  font-size: 13px;
}
@media only screen and (max-width: 575px) {
  .entry-navigation__row {
    display: block;
  }
  .entry-navigation__col {
    width: 100%;
    float: none;
  }
  .entry-navigation--right {
    text-align: left;
  }
}

/*-------------------------------------------------------*/
/* Navigation
/*-------------------------------------------------------*/
.nav {
  backface-visibility: hidden;
  z-index: 120;
  min-height: var(--deo-nav-height);
  position: relative;
  /* Dropdowns (large screen) */
}
@media only screen and (min-width: 992px) {
  .nav {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.nav__wrap {
  padding-left: 44px;
}
@media only screen and (min-width: 992px) {
  .nav__container {
    padding: 0 82px;
  }
}
.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-weight: 700;
  color: var(--deo-heading-color);
  font-size: 15px;
  padding: 0 17px;
  line-height: var(--deo-nav-height);
  display: block;
  position: relative;
}
.nav__menu > li > a:hover {
  color: var(--deo-primary-color);
}
.nav__menu > .active > a {
  color: var(--deo-primary-color);
}
@media only screen and (min-width: 992px) {
  .nav__wrap {
    height: auto !important;
  }
  .nav__wrap.collapse {
    display: block;
  }
  .nav__menu > li {
    display: inline-block;
    text-align: center;
  }
  .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: var(--deo-text-color);
    padding: 5px 30px;
    line-height: 21px;
    display: block;
  }
  .nav__dropdown-menu > li > a:hover, .nav__dropdown-menu > li > a:focus {
    color: var(--deo-primary-color);
  }
  .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: "\e804" /*!rtl:"\f124"*/;
    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 .current-menu-item > a {
  color: var(--deo-primary-color);
}

/* Logo
-------------------------------------------------------*/
.logo {
  line-height: 1;
  display: block;
  max-height: 60px;
}

/* 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 Icon Toggle (mobile nav)
-------------------------------------------------------*/
.nav__icon-toggle {
  display: block;
  position: relative;
  padding: 9px !important;
  width: 36px;
  height: 32px;
  margin-right: -9px;
  background-color: transparent;
  border: none;
  z-index: 50;
  box-shadow: none;
}
.nav__icon-toggle.eversor-nav-menu__icon-toggle, .nav__mobile .nav__icon-toggle {
  background-color: transparent;
}
.nav__icon-toggle.eversor-nav-menu__icon-toggle:hover, .nav__icon-toggle.eversor-nav-menu__icon-toggle:focus, .nav__mobile .nav__icon-toggle:hover, .nav__mobile .nav__icon-toggle:focus {
  background-color: transparent;
}
@media only screen and (min-width: 992px) {
  .nav__icon-toggle {
    display: none;
  }
}
.nav__icon-toggle-bar {
  background-color: var(--deo-heading-color);
  width: 18px;
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 1px;
}
.nav__icon-toggle span:nth-child(2) {
  top: 9px;
  transition: top 0.2s 0.2s ease-in, opacity 0.1s ease-in;
}
.nav__icon-toggle span:nth-child(3) {
  top: 15px;
  transition: opacity 0.1s ease-in;
}
.nav__icon-toggle span:nth-child(4) {
  bottom: 9px;
  transition: bottom 0.2s 0.2s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.nav__icon-toggle--is-opened span:nth-child(2) {
  top: 15px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.nav__icon-toggle--is-opened span:nth-child(3) {
  opacity: 0;
}
.nav__icon-toggle--is-opened span:nth-child(4) {
  bottom: 15px;
  transform: rotate(-45deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav__icon-toggle:focus .nav__icon-toggle-bar, .nav__icon-toggle:hover .nav__icon-toggle-bar {
  background-color: var(--deo-primary-color);
}
.nav__icon-toggle:focus {
  outline: none;
}

/* Sticky Nav
-------------------------------------------------------*/
.nav__holder.offset {
  transform: translate3d(0, -100%, 0);
  transition: all 0.2s ease-in-out;
}
.nav__holder.scrolling {
  transform: translate3d(0, 0px, 0);
}
.nav__holder.sticky {
  position: fixed;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
}
.nav__holder.sticky.scrolling {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 992px) {
  .nav--transparent {
    position: absolute;
    width: 100%;
    top: 0;
  }
}
/* Nav Button
-------------------------------------------------------*/
.nav__btn {
  background: #f8875f;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #f8875f 0%, var(--deo-primary-color) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  padding: 10px 17px;
  text-align: center;
}
.nav__btn span {
  display: block;
  color: #fff;
}
.nav__btn-text {
  font-size: 12px;
  line-height: 18px;
}
.nav__btn-phone {
  font-size: 18px;
  line-height: 27px !important;
}

/* 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: var(--deo-background-color--light);
  box-shadow: 0px 1px 4px 0px rgba(154, 161, 171, 0.4);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
#back-to-top i {
  transition: all 0.2s ease-in-out;
}
#back-to-top a {
  display: block;
  color: var(--deo-heading-color);
}
#back-to-top.show {
  bottom: 20px;
}
#back-to-top:hover {
  background-color: var(--deo-primary-color);
  bottom: 24px;
}
#back-to-top:hover i {
  color: #fff;
}

/*-------------------------------------------------------*/
/* Nav Mobile Styles
/*-------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .nav {
    min-height: var(--deo-nav-height);
    margin-top: 0;
    background-color: #fff;
  }
  .nav__wrap {
    padding-left: 0;
  }
  .nav__header {
    height: var(--deo-nav-height);
    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 var(--deo-border-color);
  }
  .nav__dropdown-menu a {
    color: var(--deo-text-color);
  }
  .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;
    background-color: transparent;
    padding: 0;
    border: 0;
    width: 20px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50;
    cursor: pointer;
  }
  .nav__dropdown-trigger-icon {
    fill: var(--deo-text-color);
  }
  .nav__dropdown-trigger.active svg {
    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: var(--deo-nav-height);
  }

  .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 {
  position: relative;
}
.footer ul {
  list-style: none;
}

/* Footer Widgets
-------------------------------------------------------*/
.footer__widgets {
  padding: 100px 0 70px;
}
.footer__widgets a {
  color: var(--deo-text-color);
}
.footer__widgets a:hover {
  color: var(--deo-primary-color);
}
@media only screen and (max-width: 991px) {
  .footer__widgets .row > div:not(:last-child) {
    margin-bottom: 60px;
  }
}

/* Bottom Footer
-------------------------------------------------------*/
.footer__bottom {
  padding: 48px 0;
}

.copyright {
  display: inline-block;
  font-size: 15px;
  color: var(--deo-text-color);
}
.copyright a {
  color: inherit;
}
.copyright a:hover, .copyright a:focus {
  color: var(--deo-primary-color);
}

/*-------------------------------------------------------*/
/* WordPress Styles
/*-------------------------------------------------------*/
body.admin-bar .nav--sticky {
  top: 46px;
}

@media only screen and (min-width: 768px) {
  body.admin-bar .nav--sticky {
    top: 32px;
  }
}
.site-title {
  font-size: 30px;
  margin-bottom: 0;
}

.gallery-caption {
  display: block;
}

img {
  height: auto;
}

/* 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 2em;
}

.aligncenter {
  display: block;
  margin: 0.5em auto;
  text-align: center;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.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;
}

/* Text meant only for screen readers. */
.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;
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  border: 1px solid var(--deo-border-color);
  padding: 2px;
}

.widget_recent_entries ul li a {
  color: var(--deo-text-color);
}
.widget_recent_entries ul li a:hover {
  color: var(--deo-primary-color);
}

/*-------------------------------------------------------*/
/* Calendar
/*-------------------------------------------------------*/
#wp-calendar {
  width: 100%;
}
#wp-calendar th,
#wp-calendar td {
  text-align: center;
}
#wp-calendar tbody td {
  line-height: 1;
}
#wp-calendar > tfoot > tr {
  border: 1px solid var(--deo-border-color);
}
#wp-calendar > tfoot > tr > td {
  border: 0;
}

/*-------------------------------------------------------*/
/* Search
/*-------------------------------------------------------*/
.search-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  border: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  background-color: transparent;
  font-size: 20px;
  color: var(--deo-text-color);
}

/*-------------------------------------------------------*/
/* Password
/*-------------------------------------------------------*/
.post-password-form label > input {
  margin-bottom: 24px;
}

.post-password-form label + input {
  line-height: 41px;
  font-size: 15px;
  font-weight: 700;
  padding: 0 24px;
  font-family: var(--deo-heading-font);
  border: none;
  background-color: var(--deo-primary-color);
  color: #fff;
  position: relative;
  top: -3px;
  width: auto;
}

/*-------------------------------------------------------*/
/* Sticky Post
/*-------------------------------------------------------*/
.post.sticky .entry__title:before {
  content: "\e801";
  font-family: "ui-icons";
  display: inline-block;
  margin-right: 12px;
  position: relative;
  top: -2px;
  font-size: 18px;
  color: var(--deo-text-color);
  max-height: 20px;
}

/*-------------------------------------------------------*/
/* Article styles
/*-------------------------------------------------------*/
dt,
dd {
  padding: 10px 0;
  border-bottom: 1px solid var(--deo-border-color);
}

/*-------------------------------------------------------*/
/* Comments Multipages Pagination
/*-------------------------------------------------------*/
.comment-navigation {
  margin: 20px 0;
}
.comment-navigation .nav-previous {
  float: left;
}
.comment-navigation .nav-next {
  float: right;
}

/*-------------------------------------------------------*/
/* 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;
}

.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;
}

@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;
  }
}
/*-------------------------------------------------------*/
/* Widgets
/*-------------------------------------------------------*/
.widget li {
  list-style: none;
}
.widget-title {
  margin-bottom: 18px;
  font-size: 15px;
  position: relative;
}

.sidebar .widget {
  margin-bottom: 48px;
}
.sidebar .widget .widget-title {
  text-transform: uppercase;
  color: var(--deo-text-color);
}
.sidebar .widget .sub-menu,
.sidebar .widget .children {
  padding-left: 15px;
  padding-top: 10px;
}
.sidebar .widget .sub-menu li:first-child,
.sidebar .widget .children li:first-child {
  border-top: 1px solid var(--deo-border-color);
  padding-top: 10px;
}

.widget_recent_entries a,
.widget_recent_comments a,
.widget_nav_menu a,
.widget_archive a,
.widget_pages a,
.widget_categories a,
.widget_meta a {
  color: var(--deo-text-color);
}
.widget_recent_entries a:hover,
.widget_recent_comments a:hover,
.widget_nav_menu a:hover,
.widget_archive a:hover,
.widget_pages a:hover,
.widget_categories a:hover,
.widget_meta a:hover {
  color: var(--deo-primary-color);
}

/* Widget RSS
-------------------------------------------------------*/
.widget_rss li {
  padding: 16px 0;
  border-bottom: 1px solid var(--deo-border-color);
}
.widget_rss li:first-child {
  padding-top: 0;
}
.widget_rss .rsswidget {
  color: var(--deo-heading-color);
}
.widget_rss .rsswidget:hover {
  color: var(--deo-primary-color);
}
.widget_rss .rss-date {
  display: block;
  color: var(--deo-meta-color);
  font-size: 0.875rem;
  margin: 6px 0 12px;
}

/* Widgets select (Categories, Archives, Text Widget)
-------------------------------------------------------*/
.widget_categories select,
.widget_archive select,
.widget_text select {
  margin-bottom: 0;
}

/* Widget Recent Comments
-------------------------------------------------------*/
.widget_recent_comments .recentcomments a {
  color: var(--deo-heading-color);
}
.widget_recent_comments .recentcomments a:hover {
  color: var(--deo-primary-color);
}

/* 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: var(--deo-text-color);
  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: #aaa;
}
#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 td:hover {
  background: #fff;
}
#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 Search
-------------------------------------------------------*/
.widget_search .search-input {
  margin-bottom: 0;
}

.widget-search-button,
.search-button,
.woocommerce-product-search button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  padding: 0 !important;
  background-color: transparent;
  color: var(--deo-text-color);
  border: 0;
  font-size: 1.25rem;
  vertical-align: middle;
  border-radius: 0;
}

.search-form {
  position: relative;
}

/* Widget Categories, Recent Entries, Comments, Archives, Meta
-------------------------------------------------------*/
.widget_product_categories li,
.widget_categories li,
.widget_recent_entries li,
.widget_nav_menu li,
.widget_archive li,
.widget_pages li,
.widget_meta li,
.widget-address {
  line-height: 2;
}

.sidebar .widget_categories li,
.sidebar .widget_recent_entries li,
.sidebar .widget_nav_menu li,
.sidebar .widget_archive li,
.sidebar .widget_pages li,
.sidebar .widget_meta li {
  padding: 10px 0;
  border-bottom: 1px solid var(--deo-border-color);
}
.sidebar .widget_categories li:first-child,
.sidebar .widget_recent_entries li:first-child,
.sidebar .widget_nav_menu li:first-child,
.sidebar .widget_archive li:first-child,
.sidebar .widget_pages li:first-child,
.sidebar .widget_meta li:first-child {
  padding-top: 0;
}
.sidebar .widget_categories li:last-child,
.sidebar .widget_recent_entries li:last-child,
.sidebar .widget_nav_menu li:last-child,
.sidebar .widget_archive li:last-child,
.sidebar .widget_pages li:last-child,
.sidebar .widget_meta li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recentcomments {
  padding: 10px 0;
  border-bottom: 1px solid var(--deo-border-color);
}
.recentcomments:first-child {
  padding-top: 0;
}
.recentcomments:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Widget Newsletter 
-------------------------------------------------------*/
.sidebar .widget_mc4wp_form_widget {
  background-color: #f7f7f7;
  padding: 32px;
  border-radius: 10px;
}
.sidebar .widget_mc4wp_form_widget .widget-title {
  border-bottom: 0;
  padding-bottom: 0;
}
.sidebar .widget_mc4wp_form_widget .mc4wp-form-fields input[type=email],
.sidebar .widget_mc4wp_form_widget .mc4wp-form-fields input[type=text] {
  border: 0;
  background-color: #fff;
}
.sidebar .widget_mc4wp_form_widget .deo-newsletter-gdpr-checkbox__label {
  line-height: 1.2;
}

.mc4wp-form-fields {
  position: relative;
}

.mc4wp-form-fields input[type=email],
.mc4wp-form-fields input[type=text] {
  margin-bottom: 8px;
}

.mc4wp-form-fields input[type=submit] {
  margin-bottom: 0;
  width: auto;
}
.mc4wp-form-fields input[type=submit]:focus {
  background-color: var(--deo-primary-color);
}

/* Newsletter wide
-------------------------------------------------------*/
.newsletter-wide {
  text-align: center;
  padding: 72px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.newsletter-wide__container {
  max-width: 460px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.newsletter-wide__title {
  margin-bottom: 16px;
  font-size: 1.75rem;
  color: #fff;
}
.newsletter-wide__text {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 28px;
}
.newsletter-wide input[type=email],
.newsletter-wide input[type=text],
.newsletter-wide .newsletter__btn {
  height: 56px;
}
.newsletter-wide .mc4wp-form-fields i {
  line-height: 56px;
}
.newsletter-wide .deo-newsletter-gdpr-checkbox {
  margin-top: 20px;
}
.newsletter-wide .deo-newsletter-gdpr-checkbox__text,
.newsletter-wide .deo-newsletter-gdpr-checkbox__text a {
  color: #fff;
}
.newsletter-wide .deo-newsletter-gdpr-checkbox__text a {
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  .newsletter-wide {
    flex-direction: column;
  }
  .newsletter-wide .newsletter__btn {
    position: relative;
    top: auto;
    right: auto;
  }
  .newsletter-wide__text {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter-wide .mc4wp-form-fields {
    display: block;
  }
  .newsletter-wide__form {
    width: 70%;
  }
  .newsletter-wide .form-group {
    margin-right: 0;
  }
  .newsletter-wide input[type=email],
.newsletter-wide input[type=text] {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .newsletter-wide {
    text-align: left;
  }
  .newsletter-wide__form {
    width: 100%;
  }
  .newsletter-wide__text {
    text-align: left;
  }
}

/* Widget Popular Posts
-------------------------------------------------------*/
.widget-popular-posts__list > li {
  padding: 15px 0;
  border-bottom: 1px solid var(--deo-border-color);
}
.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: 88px;
  float: left;
  margin-right: 20px;
}
@media only screen and (max-width: 575px) {
  .widget-popular-posts__img-holder {
    width: 60px;
  }
}
.widget-popular-posts__entry {
  overflow: hidden;
}
.widget-popular-posts__entry-title {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1px;
}
.widget-popular-posts__entry-meta-date {
  color: var(--deo-meta-color);
  display: inline-block;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Widget Tags / Entry Tags
-------------------------------------------------------*/
.entry__tags a {
  line-height: 1;
  color: var(--deo-text-color);
  display: inline-block;
  font-size: 18px;
}
.entry__tags a:hover {
  color: var(--deo-primary-color);
}

.tagcloud {
  overflow: hidden;
}

.widget_tag_cloud a,
.widget_product_tag_cloud a {
  float: left;
  padding: 4px 8px;
  margin: 0 4px 4px 0;
  border-radius: 5px;
  line-height: 1.2;
  border: 1px solid var(--deo-border-color);
  transition: all 0.1s ease-in-out;
}
.widget_tag_cloud a:hover,
.widget_product_tag_cloud a:hover {
  background-color: var(--deo-primary-color);
  border-color: transparent;
  color: #fff !important;
}

/*-------------------------------------------------------*/
/* Helper classes
/*-------------------------------------------------------*/
.clear {
  clear: both;
}

.oh {
  overflow: hidden;
}

.relative {
  position: relative;
}

.bg-color {
  background-color: var(--deo-tertiary-color);
}

.block {
  display: block;
}

/* Box Shadow
-------------------------------------------------------*/
.box-shadow {
  box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
}

.box-shadow-large {
  box-shadow: 0 20px 40px rgba(61, 65, 84, 0.15);
}

/* Hovers
-------------------------------------------------------*/
.hover-up {
  top: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.hover-up:hover {
  box-shadow: 0 20px 40px rgba(61, 65, 84, 0.15);
  top: -2px;
}

.hover-line:before {
  content: "";
  display: block;
  height: 5px;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--deo-tertiary-color);
  transition: all 0.2s ease-in-out;
}
.hover-line:hover:before {
  width: 100%;
}

/* Gradients / Overlays
-------------------------------------------------------*/
.bg-gradient:before {
  content: "";
  top: 0;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: #b939e5;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to top, #b939e5 0%, #4c86e7 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}

.bg-color-overlay:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--deo-tertiary-color), 0.87);
}

.bg-color-overlay--1:before {
  background-color: rgba(51, 59, 105, 0.48);
}

.bg-color-overlay--2:before {
  background-color: rgba(51, 59, 105, 0.75);
}

.bottom-gradient::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  pointer-events: none;
  background: rgba(12, 16, 43, 0.75);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to top, rgba(12, 16, 43, 0.75) 0%, transparent 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}

.bg-color-overlay .section-title,
.bg-color-overlay .subtitle {
  color: #ffff;
}

/* Section Dividers
-------------------------------------------------------*/
.top-divider {
  border-top: 1px solid var(--deo-border-color);
}

.bottom-divider {
  border-bottom: 1px solid var(--deo-border-color);
}

/* Flexbox
-------------------------------------------------------*/
.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

/*-------------------------------------------------------*/
/* Gutenberg Front-end Styles
/*-------------------------------------------------------*/
:root .has-bittersweet-background-color {
  background-color: #fa6262;
}

:root .has-blue-background-color {
  background-color: #2d7bfd;
}

:root .has-violet-background-color {
  background-color: #ad3df3;
}

:root .has-turquoise-background-color {
  background-color: #30dca5;
}

:root .has-light-blue-background-color {
  background-color: #f3f2f5;
}

:root .has-dark-background-color {
  background-color: #232329;
}

:root .has-bittersweet-color {
  color: #fa6262;
}

:root .has-blue-color {
  color: #2d7bfd;
}

:root .has-violet-color {
  color: #ad3df3;
}

:root .has-turquoise-color {
  color: #30dca5;
}

:root .has-light-blue-color {
  color: #f3f2f5;
}

:root .has-dark-color {
  color: #232329;
}

/* Buttons
-------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
  padding: 14px 32px;
  font-size: 0.9375rem;
  border-radius: 5px;
  font-weight: 700;
  line-height: 1.5 !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: var(--deo-primary-color);
}

/* Full-width Images
-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
  .fullwidth .entry__article .alignwide {
    margin-left: -120px;
    margin-right: -120px;
    width: auto;
  }
  .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: var(--deo-meta-color);
}

.wp-block-image figcaption {
  margin-top: 1em;
}

/* Separators
-------------------------------------------------------*/
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  opacity: 1;
  border-top: 1px solid var(--deo-border-color);
}

.wp-block-separator {
  border-top: 0;
  border-color: var(--deo-border-color);
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots),
.wp-block-separator.is-style-default {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-separator.is-style-dots:before {
  font-weight: 700;
}

/* Blockquote / Pullquote
-------------------------------------------------------*/
blockquote {
  margin: 0;
  line-height: 1.6;
}
blockquote p {
  margin-bottom: 5px;
}
blockquote cite {
  color: var(--deo-meta-color);
  font-size: 0.9375rem;
  margin-top: 1em;
  display: inline-block;
}

.wp-block-quote {
  padding: 40px;
  background-color: var(--deo-background-color--light);
  margin-bottom: 40px;
  margin-top: 40px;
}
.wp-block-quote p {
  color: var(--deo-heading-color);
  font-family: var(--deo-heading-font);
}
.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-style: normal;
  position: relative;
}
.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: 0.9375rem;
}

.wp-block-pullquote {
  padding: 0;
  text-align: left;
  line-height: 1.5;
  padding: 3em 0;
  border-top: 4px solid var(--deo-border-color);
  border-bottom: 4px solid var(--deo-border-color);
  color: var(--deo-heading-color);
}
.wp-block-pullquote p {
  margin-bottom: 5px;
}
.wp-block-pullquote cite {
  opacity: 0.7;
  font-size: 0.9375rem;
}
@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: 20px;
}

/* 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;
}