/*------------------------------------------------------------------
 * This is main css file for theme. It is broken into following sections:
 * 1.  Global styles and reset
 * 2.  Widgets styles
 * 3.  Plugins styles
 * 4.  Blog styles
 * 5.  Footer styles
 * 6.  Header styles
 * 7.  Side area styles
 * 8.  Search styles
 * 9.  Title area styles
 * 10. Shortcodes styles
 * 11. Custom Post Types styles
-------------------------------------------------------------------*/
/* Colors
   ========================================================================== */
.turquoise {
  color: #4ed6d2 !important; }

.green {
  color: #a6e062 !important; }

.red {
  color: #fc7b7b !important; }

.purple {
  color: #e2a1ff !important; }

.darkBlue {
  color: #3ea3dd !important; }

.yellow {
  color: #ffc459 !important; }

.light {
  color: #fff; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

@-webkit-keyframes drop_down_in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes drop_down_in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@-webkit-keyframes drop_down_out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); } }

@keyframes drop_down_out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); } }

/* Basic Style
   ========================================================================== */
html body {
  line-height: 1.6;
  overflow-x: hidden; }

body {
  background-color: #fff;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  margin-bottom: 20px;
  line-height: 1.7; }
  p.lead {
    font-size: 1.125rem;
    line-height: 1.6; }

a {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  a:hover, a:focus {
    text-decoration: none; }
  a:focus {
    outline: none; }

.lead {
  font-size: 1.125rem;
  font-weight: normal; }
  .lead p {
    line-height: 1.6; }

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, .h6 a, h6 a,
.heading-font a {
  color: inherit;
  font-family: inherit; }

h1 {
  font-size: 52px; }

h2 {
  font-size: 40px; }

h3 {
  font-size: 32px;
  font-weight: 400; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 21px; }

h6 {
  font-size: 17px; }

blockquote {
  border-left: 2px solid;
  padding: 20px 40px;
  font-size: 1.0625rem;
  line-height: 1.6em;
  margin: 20px 0 35px;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 42px 5px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 42px 5px rgba(0, 0, 0, 0.02); }
  blockquote p:last-of-type {
    margin-bottom: 0; }

label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  margin: .28rem 0 .11rem 0;
  cursor: pointer; }

em {
  font-style: italic; }

big {
  font-size: larger; }

abbr {
  color: #d62432;
  text-decoration: none;
  border-bottom: 1px dotted; }

acronym {
  text-decoration: none;
  border-bottom: 1px dotted; }

.required {
  color: #E01020;
  font-size: 16px;
  line-height: 1;
  border: none; }

abbr[title] {
  border: none; }

dl {
  margin-bottom: 20px; }

strong {
  font-weight: 600; }

mark {
  display: inline-block;
  background-color: transparent; }

code,
kbd {
  background-color: #f6f8fa;
  padding: 2px 5px; }

code, kbd, pre, samp {
  font-family: monospace, serif;
  -webkit-hyphens: none;
  -ms-hyphens: none;
      hyphens: none; }

ins {
  text-decoration: none; }

pre {
  background: #f9f9f9;
  text-align: left;
  padding: 20px;
  margin-bottom: 20px;
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em;
  margin-left: 2px; }

table {
  max-width: 100%;
  width: auto;
  overflow-x: auto;
  font-size: 17px;
  line-height: 1.1875;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 0;
  border-bottom: 0;
  border-collapse: collapse;
  margin: 25px 0; }
  table td, table th {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 0;
    border-top: 0;
    font-size: 15px;
    padding: 15px;
    vertical-align: middle;
    text-align: left; }
  table th {
    font-weight: 600; }

dt {
  font-weight: 600; }

dd {
  margin: 0 1.5em 1.5em; }

.wp-block-table.is-style-stripes {
  border-spacing: 0;
  border-collapse: inherit;
  background-color: transparent; }
  .wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th {
    border-color: rgba(0, 0, 0, 0.1); }

.wp-block-table.has-fixed-layout {
  table-layout: fixed;
  width: 100%; }

caption, td, th {
  text-align: left;
  font-weight: 400;
  vertical-align: middle; }

var {
  font-style: italic; }

small {
  font-size: 80%; }

hr {
  width: 35px;
  border-top: rgba(0, 0, 0, 0.1);
  margin-top: 0;
  margin-bottom: 20px; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

iframe,
embed {
  max-width: 100%; }

cite {
  display: block;
  margin-top: 20px;
  font-size: 0.9375rem;
  color: #a6a6a6; }
  .color-scheme-light cite {
    color: rgba(255, 255, 255, 0.7); }

.color-scheme-light {
  color: #fff; }
  .color-scheme-light h1, .color-scheme-light h2, .color-scheme-light h3, .color-scheme-light h4, .color-scheme-light h5, .color-scheme-light h6 {
    color: #fff; }
  .color-scheme-light a {
    color: #fff; }
    .color-scheme-light a:hover {
      color: rgba(255, 255, 255, 0.75); }

.page-comments {
  margin-top: 30px; }

/* Page PreLoader Spinner
   ========================================================================== */
.page-preloader {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .6s ease-in-out, visibility .6s ease-in-out;
  transition: opacity .6s ease-in-out, visibility .6s ease-in-out; }
  .page-preloader .spinner:after {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px;
    bottom: auto;
    left: auto;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #262b44;
    border-right: 2px solid #262b44;
    -webkit-animation: 0.7s rotateSpinner cubic-bezier(0.45, 0.44, 0.35, 1.13) infinite;
            animation: 0.7s rotateSpinner cubic-bezier(0.45, 0.44, 0.35, 1.13) infinite; }
  .page-preloader.loaded {
    opacity: 0;
    visibility: hidden; }

@-webkit-keyframes rotateSpinner {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotateSpinner {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* CodeBean Grid
   ========================================================================== */
.cdb-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px; }
  .cdb-row.cdb-one-cols .cdb-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 767.98px) {
      .cdb-row.cdb-one-cols .cdb-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  .cdb-row.cdb-two-cols .cdb-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 767.98px) {
      .cdb-row.cdb-two-cols .cdb-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  .cdb-row.cdb-three-cols .cdb-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 767.98px) {
      .cdb-row.cdb-three-cols .cdb-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  .cdb-row.cdb-four-cols .cdb-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 767.98px) {
      .cdb-row.cdb-four-cols .cdb-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  .cdb-row.cdb-five-cols .cdb-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 767.98px) {
      .cdb-row.cdb-five-cols .cdb-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  .cdb-row.cdb-six-cols .cdb-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 767.98px) {
      .cdb-row.cdb-six-cols .cdb-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }

.cdb-five {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%; }

.default-page-formating {
  padding-top: 60px;
  padding-bottom: 60px; }

/* Forms (inputs, labels, textareas)
   ========================================================================== */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea,
.form-control {
  color: #6e6e6e;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  width: 100%;
  font-size: 0.9375rem;
  padding: 0.875rem 0.9375rem;
  margin-bottom: 16px;
  height: 50px;
  line-height: 1.4;
  border-radius: 0;
  position: relative;
  -webkit-appearance: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease; }
  input[type="text"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  .form-control::-webkit-input-placeholder {
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s; }
  input[type="text"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  textarea::-moz-placeholder,
  .form-control::-moz-placeholder {
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s; }
  input[type="text"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  textarea::-moz-placeholder,
  .form-control::-moz-placeholder {
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s; }
  input[type="text"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  .form-control:-ms-input-placeholder {
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s; }
  input[type="text"]:hover,
  input[type="password"]:hover,
  input[type="email"]:hover,
  input[type="tel"]:hover,
  textarea:hover,
  .form-control:hover {
    cursor: pointer; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus,
  .form-control:focus {
    background: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none; }
    input[type="text"]:focus::-webkit-input-placeholder,
    input[type="password"]:focus::-webkit-input-placeholder,
    input[type="email"]:focus::-webkit-input-placeholder,
    input[type="tel"]:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder,
    .form-control:focus::-webkit-input-placeholder {
      opacity: 0; }
    input[type="text"]:focus::-moz-placeholder,
    input[type="password"]:focus::-moz-placeholder,
    input[type="email"]:focus::-moz-placeholder,
    input[type="tel"]:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder,
    .form-control:focus::-moz-placeholder {
      opacity: 0; }
    input[type="text"]:focus::-moz-placeholder,
    input[type="password"]:focus::-moz-placeholder,
    input[type="email"]:focus::-moz-placeholder,
    input[type="tel"]:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder,
    .form-control:focus::-moz-placeholder {
      opacity: 0; }
    input[type="text"]:focus:-ms-input-placeholder,
    input[type="password"]:focus:-ms-input-placeholder,
    input[type="email"]:focus:-ms-input-placeholder,
    input[type="tel"]:focus:-ms-input-placeholder,
    textarea:focus:-ms-input-placeholder,
    .form-control:focus:-ms-input-placeholder {
      opacity: 0; }
  .light-form input[type="text"],
  .color-scheme-light input[type="text"], .light-form
  input[type="password"],
  .color-scheme-light
  input[type="password"], .light-form
  input[type="email"],
  .color-scheme-light
  input[type="email"], .light-form
  input[type="tel"],
  .color-scheme-light
  input[type="tel"], .light-form
  textarea,
  .color-scheme-light
  textarea, .light-form
  .form-control,
  .color-scheme-light
  .form-control {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2) !important; }
    .light-form input[type="text"]::-webkit-input-placeholder,
    .color-scheme-light input[type="text"]::-webkit-input-placeholder, .light-form
    input[type="password"]::-webkit-input-placeholder,
    .color-scheme-light
    input[type="password"]::-webkit-input-placeholder, .light-form
    input[type="email"]::-webkit-input-placeholder,
    .color-scheme-light
    input[type="email"]::-webkit-input-placeholder, .light-form
    input[type="tel"]::-webkit-input-placeholder,
    .color-scheme-light
    input[type="tel"]::-webkit-input-placeholder, .light-form
    textarea::-webkit-input-placeholder,
    .color-scheme-light
    textarea::-webkit-input-placeholder, .light-form
    .form-control::-webkit-input-placeholder,
    .color-scheme-light
    .form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.7); }
    .light-form input[type="text"]::-moz-placeholder,
    .color-scheme-light input[type="text"]::-moz-placeholder, .light-form
    input[type="password"]::-moz-placeholder,
    .color-scheme-light
    input[type="password"]::-moz-placeholder, .light-form
    input[type="email"]::-moz-placeholder,
    .color-scheme-light
    input[type="email"]::-moz-placeholder, .light-form
    input[type="tel"]::-moz-placeholder,
    .color-scheme-light
    input[type="tel"]::-moz-placeholder, .light-form
    textarea::-moz-placeholder,
    .color-scheme-light
    textarea::-moz-placeholder, .light-form
    .form-control::-moz-placeholder,
    .color-scheme-light
    .form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.7); }
    .light-form input[type="text"]::-moz-placeholder,
    .color-scheme-light input[type="text"]::-moz-placeholder, .light-form
    input[type="password"]::-moz-placeholder,
    .color-scheme-light
    input[type="password"]::-moz-placeholder, .light-form
    input[type="email"]::-moz-placeholder,
    .color-scheme-light
    input[type="email"]::-moz-placeholder, .light-form
    input[type="tel"]::-moz-placeholder,
    .color-scheme-light
    input[type="tel"]::-moz-placeholder, .light-form
    textarea::-moz-placeholder,
    .color-scheme-light
    textarea::-moz-placeholder, .light-form
    .form-control::-moz-placeholder,
    .color-scheme-light
    .form-control::-moz-placeholder {
      color: rgba(255, 255, 255, 0.7); }
    .light-form input[type="text"]:-ms-input-placeholder,
    .color-scheme-light input[type="text"]:-ms-input-placeholder, .light-form
    input[type="password"]:-ms-input-placeholder,
    .color-scheme-light
    input[type="password"]:-ms-input-placeholder, .light-form
    input[type="email"]:-ms-input-placeholder,
    .color-scheme-light
    input[type="email"]:-ms-input-placeholder, .light-form
    input[type="tel"]:-ms-input-placeholder,
    .color-scheme-light
    input[type="tel"]:-ms-input-placeholder, .light-form
    textarea:-ms-input-placeholder,
    .color-scheme-light
    textarea:-ms-input-placeholder, .light-form
    .form-control:-ms-input-placeholder,
    .color-scheme-light
    .form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.7); }

select {
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 0;
  padding: 0.875rem 0.9375rem;
  border: 1px solid transparent;
  margin-bottom: 10px;
  line-height: 1.4;
  background: #f4f4f4 url("../images/select-arrow.png") calc(100% - 20px) 22px no-repeat;
  background-size: 7px 4px;
  -webkit-appearance: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease; }
  select:hover {
    cursor: pointer; }
  select:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    border-color: #6e6e6e; }

textarea {
  min-height: 120px; }

input[type="submit"],
button {
  border-color: transparent; }
  input[type="submit"].cdb-btn-style-default,
  button.cdb-btn-style-default {
    border: 0; }

.search-form {
  position: relative;
  margin-bottom: 10px; }
  .search-form button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: none;
    position: absolute;
    font-family: 'Material Icons';
    text-transform: none;
    height: 100%;
    width: 52px;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 1.125rem;
    text-align: center;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .search-form button:after {
      content: "";
      position: absolute;
      left: 0;
      height: 24px;
      top: calc(50% - 12px);
      display: inline-block;
      vertical-align: middle;
      width: 1px;
      -webkit-transform: none;
      transform: none;
      background: rgba(0, 0, 0, 0.1); }
    .search-form button:hover, .search-form button:focus {
      -webkit-box-shadow: none;
              box-shadow: none;
      opacity: 0.7;
      -webkit-transform: none;
              transform: none; }
    .color-scheme-light .search-form button {
      color: #fff; }
      .color-scheme-light .search-form button:after {
        background-color: rgba(255, 255, 255, 0.2); }

/* Main Menu
   ========================================================================== */
.header-navigation,
.cdb-main-menu {
  position: relative; }

.cdb-main-menu ul li {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  .cdb-main-menu ul li a {
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
    .cdb-main-menu ul li a i {
      font-size: 1rem;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      vertical-align: middle; }
    .cdb-main-menu ul li a .menu-item-text {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .cdb-main-menu ul li a small {
      display: block;
      margin-top: 6px;
      font-size: 13px;
      color: #a6a6a6; }
  .cdb-main-menu ul li:hover > .submenu-active {
    -webkit-animation: drop_down_in .3s ease-in-out;
            animation: drop_down_in .3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-transform-origin: center top;
            transform-origin: center top; }

.cdb-main-menu > ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; }
  .cdb-main-menu > ul > li {
    display: block;
    margin: 0 1rem; }
    .cdb-main-menu > ul > li > a {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 1.25rem 0;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      height: 100%;
      color: #fff;
      white-space: nowrap;
      font-weight: 500; }
      .cdb-main-menu > ul > li > a:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        left: 0;
        height: 2px;
        top: 0;
        -webkit-transform-origin: right top;
                transform-origin: right top;
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
        transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1); }
      .header-navigation:hover .cdb-main-menu > ul > li > a {
        opacity: .5; }
      .cdb-main-menu > ul > li > a .sub-menu-arrow {
        font-size: 1rem;
        margin-left: 3px; }
      .cdb-main-menu > ul > li > a:hover {
        opacity: 1 !important; }
        .cdb-main-menu > ul > li > a:hover .sub-menu-arrow {
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg); }
    .cdb-main-menu > ul > li.is-dropdown-active a {
      opacity: 1 !important; }
    .cdb-main-menu > ul > li.cdb-active-menu-item > a:after, .cdb-main-menu > ul > li:hover > a:after {
      -webkit-transform-origin: left top;
              transform-origin: left top;
      -webkit-transform: scaleX(1);
              transform: scaleX(1); }

.cdb-main-menu .sub-menu {
  opacity: 0;
  width: 240px;
  height: auto;
  max-height: calc(100vh - 2.7rem);
  position: absolute;
  top: 100%;
  left: -15px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  text-align: left;
  white-space: normal;
  margin: 0;
  padding: 1.25rem 0.9375rem;
  -webkit-animation: drop_down_out 0.2s ease-in-out 0s;
          animation: drop_down_out 0.2s ease-in-out 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: center top;
          transform-origin: center top; }
  @media (max-width: 1199.98px) {
    .cdb-main-menu .sub-menu {
      width: 260px; } }
  .cdb-main-menu .sub-menu > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    color: #6e6e6e;
    padding: 0.5625rem 0.9375rem;
    font-size: 0.875rem;
    font-weight: normal; }
    .cdb-main-menu .sub-menu > li a:hover {
      background-color: #f6f8fa; }
  .cdb-main-menu .sub-menu .sub-menu {
    top: -20px;
    left: 100%;
    right: auto; }
    .cdb-main-menu .sub-menu .sub-menu.right {
      left: -100%; }

.cdb-main-menu .submenu-active > li {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

/* Page Title
   ========================================================================== */
.cdb-page-heading {
  position: relative; }
  .cdb-page-heading .page-title-main {
    position: relative;
    background: #262b44;
    color: #fff;
    padding-top: 180px;
    padding-bottom: 80px;
    overflow: hidden; }
    .cdb-page-heading .page-title-main .cdb-parallax-bg {
      position: absolute;
      width: 100%;
      height: 105%;
      top: 0;
      left: 0;
      background-size: cover;
      background-position: center; }
    .top-header-on .cdb-page-heading .page-title-main {
      padding-top: calc(180px + 40px); }
    .cdb-page-heading .page-title-main h1.h2 {
      font-size: 2rem;
      margin-bottom: 0;
      color: currentColor; }
    @media (max-width: 767.98px) {
      .cdb-page-heading .page-title-main .cdb-btn {
        margin-top: 30px; } }
  .cdb-page-heading .page-subtitle {
    font-size: 1.125rem;
    margin-top: 0.625rem; }
  .cdb-page-heading .breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    color: #fff; }
    .cdb-page-heading .breadcrumbs a {
      color: #fff; }
      .cdb-page-heading .breadcrumbs a:hover {
        opacity: 0.7; }
    .cdb-page-heading .breadcrumbs .breadcrumbs-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      font-size: 0.8125rem; }
      .cdb-page-heading .breadcrumbs .breadcrumbs-inner > span {
        display: inline-block; }
      .cdb-page-heading .breadcrumbs .breadcrumbs-inner .sep {
        display: inline-block;
        margin-left: 10px;
        margin-right: 10px; }

/* Mobile Navigation Style
   ========================================================================== */
.cdb-mobile-nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 99999;
  overflow: hidden;
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  opacity: 0;
  visibility: hidden; }
  .cdb-mobile-nav.is-open {
    opacity: 1;
    visibility: visible; }
    .cdb-mobile-nav.is-open .mobile-menu-container {
      -webkit-transform: translateX(0);
              transform: translateX(0); }
    .cdb-mobile-nav.is-open .cdb-close-mobile-nav i {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
  .cdb-mobile-nav .cdb-close-mobile-nav {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 4;
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .cdb-mobile-nav .cdb-close-mobile-nav i {
      -webkit-transform: rotate(80deg);
              transform: rotate(80deg);
      -webkit-transform-origin: center;
              transform-origin: center;
      -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
    .admin-bar .cdb-mobile-nav .cdb-close-mobile-nav {
      top: calc( 25px + 25px); }
  .cdb-mobile-nav .overlay {
    position: fixed;
    background: rgba(38, 43, 68, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    cursor: pointer; }
  .cdb-mobile-nav .mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    width: calc(100% - 30px);
    height: 100vh;
    overflow-y: auto;
    padding: 85px 20px 20px 20px;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s; }
    .cdb-mobile-nav .mobile-menu-container .mobile-menu-list > li {
      margin: 0 -20px; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list > li > a {
        font-size: 1rem !important; }
        .cdb-mobile-nav .mobile-menu-container .mobile-menu-list > li > a:before {
          content: '';
          display: block;
          position: absolute;
          height: 100%;
          width: 0;
          left: 0;
          top: 0;
          opacity: 1;
          -webkit-transition: width 0.25s ease;
          transition: width 0.25s ease; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list > li.is-open-sub > a {
        background-color: #f6f8fa; }
    .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li {
      position: relative; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li a {
        position: relative;
        display: block;
        font-size: 0.9375rem;
        line-height: 2.125rem;
        font-weight: 400;
        padding: 5px 20px; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li .sub-menu-arrow {
        display: inline-block;
        position: absolute;
        color: currentColor;
        text-align: center;
        top: 23px;
        right: 20px;
        font-size: 1.0625rem;
        line-height: 0;
        cursor: pointer;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
        -webkit-transform-origin: center center;
                transform-origin: center center;
        z-index: 10; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li .menu-items-counter {
        margin-left: 5px; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li.is-open-sub > a:before {
        width: 2px; }
      .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li.is-open-sub > .sub-menu-arrow {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
    .cdb-mobile-nav .mobile-menu-container .mobile-menu-list .sub-menu {
      display: none;
      padding-left: 15px; }
    .cdb-mobile-nav .mobile-menu-container .copyright {
      padding-top: 30px; }
    @media (min-width: 576px) {
      .cdb-mobile-nav .mobile-menu-container {
        width: 340px; } }

.mobile-toggle-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-right: 5px; }
  .mobile-toggle-btn > span {
    position: absolute;
    right: 14px;
    top: 18px;
    width: 22px;
    border-bottom: 2px solid currentColor; }
    .mobile-toggle-btn > span.ham-line-2 {
      top: 24px; }
    .mobile-toggle-btn > span.ham-line-3 {
      top: 30px;
      width: 14px; }
  @media (min-width: 1200px) {
    .mobile-toggle-btn {
      display: none; } }

/* Header Widgets
   ========================================================================== */
.header-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .header-widgets a {
    color: #fff; }
    .header-widgets a:hover {
      color: rgba(255, 255, 255, 0.7); }
    .header-widgets a svg {
      fill: currentColor; }

.cdb-burger-menu {
  position: relative;
  width: 50px;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .cdb-burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: .1875rem 0; }

.cdb-lang-switcher {
  position: relative;
  margin-right: 1.5rem;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15); }
  .cdb-lang-switcher .lang-item a {
    line-height: 1;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
    .cdb-lang-switcher .lang-item a:after {
      display: none; }
  .cdb-lang-switcher .lang-item img {
    display: block;
    margin: 0 8px 0 0; }
  .cdb-lang-switcher .sub-menu {
    width: 160px;
    left: -10px; }
    .cdb-lang-switcher .sub-menu > li a {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }

/* Top Header
   ========================================================================== */
.cdb-top-header {
  display: none;
  position: relative;
  background-color: rgba(12, 13, 22, 0.4);
  font-size: 0.8125rem;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.7); }
  @media (min-width: 1200px) {
    .cdb-top-header {
      display: block; } }
  .cdb-top-header a {
    color: currentColor; }
    .cdb-top-header a:hover {
      color: #fff; }
  .cdb-top-header p {
    margin-bottom: 0; }
  .cdb-top-header .widget {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cdb-top-header .widget + .widget {
      margin-left: 15px; }
      .cdb-top-header .widget + .widget:before {
        content: '|';
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        opacity: 0.3;
        margin-right: 15px; }
  .cdb-top-header .cdb-top-header-right {
    text-align: right; }

/* Default Header Styles
   ========================================================================== */
.cdb-site-header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 900;
  background-color: rgba(12, 13, 22, 0.3);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0, 1); }
  @media (min-width: 768px) {
    .admin-bar .cdb-site-header {
      top: 32px; } }
  .cdb-site-header.fixed-header {
    position: fixed; }
  .cdb-site-header.is-fixed {
    position: fixed;
    top: 0;
    background-color: #1a1d30; }
    @media (min-width: 1200px) {
      .top-header-on .cdb-site-header.is-fixed {
        margin-top: -42px; } }
    @media (min-width: 768px) {
      .admin-bar .cdb-site-header.is-fixed {
        top: 32px; } }
    .cdb-site-header.is-fixed .header-wrapper {
      height: 80px; }
  .cdb-site-header .header-wrapper {
    position: relative;
    z-index: 1;
    height: 100px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
  .cdb-site-header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%; }
  .cdb-site-header [class*="header-col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .cdb-site-header .header-col-center {
    display: none; }
  @media (min-width: 768px) {
    .cdb-site-header .header-col-center {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .cdb-site-header.menu-alginment-center .header-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .cdb-site-header.menu-alginment-center .header-col-left,
  .cdb-site-header.menu-alginment-center .header-col-right {
    width: 50%; }
    @media (min-width: 1200px) {
      .cdb-site-header.menu-alginment-center .header-col-left,
      .cdb-site-header.menu-alginment-center .header-col-right {
        width: 25%; } }
  .cdb-site-header.menu-alginment-center .header-col-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .cdb-site-header.menu-alginment-center .header-col-center {
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  @media (min-width: 1200px) {
    .cdb-site-header.menu-alignment-center .header-col-left, .cdb-site-header.menu-alginment-left .header-col-left {
      width: 75%; } }
  .cdb-site-header.menu-alignment-center .header-col-right, .cdb-site-header.menu-alginment-left .header-col-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 50%; }
    @media (min-width: 1200px) {
      .cdb-site-header.menu-alignment-center .header-col-right, .cdb-site-header.menu-alginment-left .header-col-right {
        width: 25%; } }
  .cdb-site-header .cdb-logo-holder {
    position: relative; }
    @media (min-width: 1200px) {
      .cdb-site-header .cdb-logo-holder {
        padding-right: 60px; } }
    .cdb-site-header .cdb-logo-holder .logo-img {
      -webkit-transition: opacity .25s ease, visibility .25s ease;
      transition: opacity .25s ease, visibility .25s ease; }
    .cdb-site-header .cdb-logo-holder .light-logo {
      position: absolute;
      left: 0;
      opacity: 0;
      visibility: hidden; }
    .cdb-site-header .cdb-logo-holder .cdb-logo-link {
      color: #fff; }
      .cdb-site-header .cdb-logo-holder .cdb-logo-link .logo-text {
        font-size: 26px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1px;
        white-space: nowrap; }
      .cdb-site-header .cdb-logo-holder .cdb-logo-link:hover {
        opacity: .7; }
  .cdb-site-header .header-navigation {
    display: none; }
  .cdb-site-header .header-tools {
    display: none;
    padding-left: 20px; }

@media (min-width: 1200px) {
  .header-navigation,
  .header-tools {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

/* Archive Layout
   ========================================================================== */
.archive-wrapper {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 70px; }
  @media (min-width: 768px) {
    .archive-wrapper {
      padding-top: 100px; } }
  @media (min-width: 768px) {
    .archive-wrapper.sidebar-left .cdb-posts-wrapper {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      padding-left: 3.125rem; }
    .archive-wrapper.sidebar-left .cdb-sidebar-area {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  @media (min-width: 768px) {
    .archive-wrapper.sidebar-right .cdb-posts-wrapper {
      padding-right: 3.125rem; } }

/* Blog Styles
   ========================================================================== */
.cdb-blog-posts {
  position: relative; }
  .cdb-blog-posts .cdb-preloader {
    position: absolute;
    width: 100%;
    top: 20%;
    font-size: 16px;
    color: #ddd;
    padding: 15px;
    text-align: center; }

.cdb-blog-post .cdb-post-inner {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); }

/* Post Single Styles
   ========================================================================== */
.single-post-content {
  padding-bottom: 60px; }
  .single-post-content .post-single-header {
    -ms-word-wrap: break-word;
    word-wrap: break-word; }
    .single-post-content .post-single-header .post-header-excerpt {
      margin-top: 30px;
      font-size: 1.125rem; }
    .single-post-content .post-single-header .single-post-meta {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding-bottom: 30px;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .single-post-content .post-single-header .single-post-meta > * {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: #a6a6a6;
        margin-right: 30px; }
        .single-post-content .post-single-header .single-post-meta > * i {
          font-size: 1rem;
          margin-right: 8px; }
      .single-post-content .post-single-header .single-post-meta ul.post-categories {
        list-style: none !important;
        margin-bottom: 0; }
        .single-post-content .post-single-header .single-post-meta ul.post-categories li {
          display: inline-block;
          margin: 0 !important;
          padding: 0 !important; }
          .single-post-content .post-single-header .single-post-meta ul.post-categories li + li:before {
            content: ',';
            display: inline-block;
            margin-right: 5px;
            margin-left: -3px; }
          .single-post-content .post-single-header .single-post-meta ul.post-categories li a {
            border: none;
            color: #a6a6a6; }
            .single-post-content .post-single-header .single-post-meta ul.post-categories li a:hover {
              color: #262b44; }
  .single-post-content .post-single-body {
    padding-top: 80px; }
    .single-post-content .post-single-body .cdb-post-single-thumbnail {
      display: inline-block;
      overflow: hidden;
      margin-bottom: 30px; }
    .single-post-content .post-single-body .main-content p {
      margin-bottom: 30px; }
    .single-post-content .post-single-body .main-content ol, .single-post-content .post-single-body .main-content ul {
      list-style: none;
      margin: 0 0 23px; }
      .single-post-content .post-single-body .main-content ol ul, .single-post-content .post-single-body .main-content ol ol, .single-post-content .post-single-body .main-content ul ul, .single-post-content .post-single-body .main-content ul ol {
        margin: 10px 0 0; }
    .single-post-content .post-single-body .main-content ul {
      list-style: disc;
      list-style-position: inside; }
      .single-post-content .post-single-body .main-content ul ul, .single-post-content .post-single-body .main-content ul ol {
        margin: 10px 0 0; }
      .single-post-content .post-single-body .main-content ul li:not(.blocks-gallery-item) {
        margin: 0 0 10px;
        padding: 0 0 0 25px;
        position: relative; }
    .single-post-content .post-single-body .main-content ol {
      list-style: decimal;
      list-style-position: inside; }
      .single-post-content .post-single-body .main-content ol > li {
        margin: 0 0 10px;
        padding: 0 0 0 25px;
        position: relative; }
    .single-post-content .post-single-body .main-content .wp-block-cover-text a {
      color: #fff !important; }
    .single-post-content .post-single-body .main-content a:not(.wp-block-button__link) {
      border-bottom: 1px solid currentColor; }
      .single-post-content .post-single-body .main-content a:not(.wp-block-button__link):hover {
        border-color: transparent; }
    .single-post-content .post-single-body .post-tags {
      padding-top: 30px;
      padding-bottom: 20px;
      margin-top: 40px;
      border-top: 1px solid rgba(0, 0, 0, 0.1); }

.cdb-related-posts {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 50px;
  padding-bottom: 34px; }
  .cdb-related-posts .row {
    margin-left: -8px;
    margin-right: -8px; }
    .cdb-related-posts .row .cdb-related-post {
      padding-left: 8px;
      padding-right: 8px;
      padding-bottom: 16px; }
  .cdb-related-posts .cdb-related-post .cdb-post-inner {
    position: relative;
    background-color: #262b44;
    overflow: hidden;
    color: #fff;
    min-height: 200px; }
    .cdb-related-posts .cdb-related-post .cdb-post-inner .post-thumbnail {
      position: absolute;
      top: -1px;
      left: -1px;
      width: calc(100% + 2px);
      height: calc(100% + 2px);
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      background-position: center;
      background-size: cover;
      opacity: .3; }
    .cdb-related-posts .cdb-related-post .cdb-post-inner .post-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      height: 100%; }
      .cdb-related-posts .cdb-related-post .cdb-post-inner .post-content .cdb-post-title {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 500;
        margin-bottom: 0; }
        .cdb-related-posts .cdb-related-post .cdb-post-inner .post-content .cdb-post-title a {
          color: #fff; }
          .cdb-related-posts .cdb-related-post .cdb-post-inner .post-content .cdb-post-title a:hover {
            opacity: .7; }

/* Post Single Sidebar
   ========================================================================== */
.post-single-sidebar {
  display: block;
  font-size: 0.9375rem; }
  @media (min-width: 768px) {
    .post-single-sidebar .sidebar-inner {
      margin-right: 30px; } }
  @media (max-width: 991.98px) {
    .post-single-sidebar {
      padding-bottom: 30px; }
      .post-single-sidebar .sidebar-inner {
        margin-top: 20px;
        padding-top: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.1); } }
  .post-single-sidebar .widget {
    margin-bottom: 40px; }
    .post-single-sidebar .widget .widget-title {
      font-size: 16px; }
    .post-single-sidebar .widget.cdb-cf7-widget {
      margin-bottom: 20px; }
  .post-single-sidebar .cdb-post-share {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    left: 0;
    padding: 6px;
    background-color: #f8f8f8;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.07);
            box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.07);
    text-align: center;
    float: right; }
    .post-single-sidebar .cdb-post-share li {
      width: 32px;
      height: 32px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 1rem;
      margin-bottom: 5px; }
      .post-single-sidebar .cdb-post-share li a {
        color: #262b44; }
    @media (min-width: 768px) {
      .post-single-sidebar .cdb-post-share {
        margin-right: 30px; } }
    @media (max-width: 991.98px) {
      .post-single-sidebar .cdb-post-share {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        float: none;
        margin-top: 10px;
        padding: 12px 10px; }
        .post-single-sidebar .cdb-post-share li {
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex; } }

/* Comment Form
   ========================================================================== */
.cdb-comment-form {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .cdb-comment-form .first-form-row {
    margin-top: 30px; }
  .cdb-comment-form .comment-reply-title {
    font-size: 1.25rem;
    margin-bottom: 10px; }
  .cdb-comment-form .comment-notes,
  .cdb-comment-form .logged-in-as {
    color: #a6a6a6;
    font-size: 0.9375rem; }
    .cdb-comment-form .comment-notes a,
    .cdb-comment-form .logged-in-as a {
      font-weight: normal; }
  .cdb-comment-form .form-submit {
    margin: 0; }

/* Comment List
   ========================================================================== */
.cdb-comment-holder {
  padding-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .cdb-comment-holder .comments-title {
    font-size: 1.25rem; }

.commentlist {
  list-style: none;
  margin: 0;
  display: block;
  padding: 0; }
  .commentlist .pingback .comment-body,
  .commentlist .trackback .comment-body {
    padding-left: 0; }
  .commentlist .comment-body,
  .commentlist .comment-text {
    position: relative;
    padding-left: 58px;
    padding-bottom: 0;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .commentlist .comment-body,
      .commentlist .comment-text {
        padding-left: 83px; } }
    .commentlist .comment-body .star-rating,
    .commentlist .comment-text .star-rating {
      float: right; }
    .commentlist .comment-body p.meta,
    .commentlist .comment-text p.meta {
      display: block;
      font-size: 13px;
      font-style: normal;
      font-weight: 700;
      color: #343434; }
    .commentlist .comment-body a:hover,
    .commentlist .comment-text a:hover {
      text-decoration: underline; }
  .commentlist .comment-body ol, .commentlist .comment-body ul {
    list-style: none;
    margin: 0 0 23px; }
    .commentlist .comment-body ol ul, .commentlist .comment-body ol ol, .commentlist .comment-body ul ul, .commentlist .comment-body ul ol {
      margin: 10px 0 0; }
  .commentlist .comment-body ul {
    list-style: disc;
    list-style-position: inside; }
    .commentlist .comment-body ul ul, .commentlist .comment-body ul ol {
      margin: 10px 0 0; }
    .commentlist .comment-body ul li:not(.blocks-gallery-item) {
      margin: 0 0 10px;
      padding: 0 0 0 25px;
      position: relative; }
  .commentlist .comment-body ol {
    list-style: decimal;
    list-style-position: inside; }
    .commentlist .comment-body ol > li {
      margin: 0 0 10px;
      padding: 0 0 0 25px;
      position: relative; }
  .commentlist .comment {
    margin: 0; }
    .commentlist .comment:before {
      display: none !important; }
    .commentlist .comment .comment-meta {
      line-height: 1;
      font-size: 12px;
      color: #a6a6a6;
      margin-bottom: 15px;
      font-weight: 400; }
      .commentlist .comment .comment-meta a {
        color: #a6a6a6; }
    .commentlist .comment .vcard {
      display: inline-block;
      border: 0;
      padding: 0;
      margin: 0 0 10px;
      line-height: 12px; }
      .commentlist .comment .vcard .fn {
        font-style: normal;
        font-weight: 500; }
        .commentlist .comment .vcard .fn:before {
          display: none; }
      .commentlist .comment .vcard .says {
        display: none; }
    .commentlist .comment .avatar {
      width: 40px;
      height: 40px;
      position: absolute;
      top: 20px;
      left: 0;
      border-radius: 4px; }
      @media (min-width: 768px) {
        .commentlist .comment .avatar {
          width: 64px;
          height: 64px; } }
    .commentlist .comment p {
      font-size: 15px;
      word-break: break-word;
      margin-bottom: 10px; }
    .commentlist .comment .reply {
      font-size: 12px;
      font-weight: 500;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .commentlist .comment .children {
      list-style: none;
      margin-left: 10px;
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .commentlist .comment .children {
          margin-left: 83px; } }
    .commentlist .comment .comment-respond {
      margin: 30px 0;
      padding: 40px;
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 3px; }

.comment-respond .first-form-row {
  margin-top: 30px; }

.comment-respond .comment-reply-title {
  font-size: 1.25rem;
  margin-bottom: 10px; }

/* Post Pagination
   ========================================================================== */
.cdb-post-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .cdb-post-pagination ul li {
    margin: 0 2px;
    text-align: center; }
    .cdb-post-pagination ul li .page-numbers {
      display: block;
      padding: 10px 16px;
      line-height: 1.3;
      color: inherit; }
      .cdb-post-pagination ul li .page-numbers.current {
        cursor: not-allowed; }
      .cdb-post-pagination ul li .page-numbers:hover, .cdb-post-pagination ul li .page-numbers.current {
        color: #fff; }

/* Footer Style
   ========================================================================== */
.site-footer .widgetized-footer-area {
  background: #f6f8fa;
  padding: 100px 0 75px; }
  @media (max-width: 767.98px) {
    .site-footer .widgetized-footer-area {
      padding-top: 70px;
      padding-bottom: 35px; } }
  .site-footer .widgetized-footer-area.color-scheme-light {
    background-color: #262b44;
    background-image: url("../images/map-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto; }
  .site-footer .widgetized-footer-area.full-width .container {
    max-width: 100%;
    width: 100%; }
    @media (min-width: 768px) {
      .site-footer .widgetized-footer-area.full-width .container {
        padding-left: 50px;
        padding-right: 50px; } }
  @media (min-width: 768px) {
    .site-footer .widgetized-footer-area.footer-fourcolumns .first-col {
      padding-right: 12%;
      padding-bottom: 2px;
      border-right: 1px solid rgba(255, 255, 255, 0.1); } }
  .site-footer .widgetized-footer-area .widget {
    margin-bottom: 45px; }
    .site-footer .widgetized-footer-area .widget .widget-title {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 25px; }
    @media (min-width: 768px) {
      .site-footer .widgetized-footer-area .widget {
        padding-right: 15px; } }
  .site-footer .widgetized-footer-area.color-scheme-light .widget-title {
    color: #fff; }
  .site-footer .widgetized-footer-area.color-scheme-light .widget {
    color: rgba(255, 255, 255, 0.8); }
  .site-footer .widgetized-footer-area.color-scheme-light a:not(.btn):not(.cdb-social-profile) {
    color: #fff; }
  @media (min-width: 768px) {
    .site-footer .widgetized-footer-area .extra-space-col {
      padding-left: 50px; } }

.site-footer .subfooter {
  background-color: #f6f8fa;
  padding: 25px 0; }
  .site-footer .subfooter.full-width .container {
    max-width: 100%;
    width: 100%; }
    @media (min-width: 768px) {
      .site-footer .subfooter.full-width .container {
        padding-left: 50px;
        padding-right: 50px; } }
  .site-footer .subfooter p.copyright {
    margin-bottom: 0; }
    @media (max-width: 767.98px) {
      .site-footer .subfooter p.copyright {
        text-align: center;
        margin-bottom: 20px; } }
  .site-footer .subfooter .footer-menu-list {
    text-align: center;
    margin-top: 20px; }
    @media (min-width: 768px) {
      .site-footer .subfooter .footer-menu-list {
        margin-top: 0;
        text-align: right; }
        .site-footer .subfooter .footer-menu-list li {
          display: inline-block; }
          .site-footer .subfooter .footer-menu-list li + li {
            margin-left: 15px; } }
  .site-footer .subfooter a {
    font-weight: normal; }
  .site-footer .subfooter.color-scheme-light {
    background-color: #191e34;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px; }
    .site-footer .subfooter.color-scheme-light a {
      color: #fff; }

/* Off Canvas Sidebar
   ========================================================================== */
.off-canvas-sidebar {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 99999;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0, 1);
  opacity: 0;
  visibility: hidden; }
  .admin-bar .off-canvas-sidebar {
    top: 32px; }
    @media (max-width: 767.98px) {
      .admin-bar .off-canvas-sidebar {
        top: 46px; } }
  .off-canvas-sidebar.is-open {
    visibility: visible;
    opacity: 1; }
    .off-canvas-sidebar.is-open .sidebar-inner {
      -webkit-transform: none;
              transform: none;
      visibility: visible; }
  .off-canvas-sidebar .close-off-canvas {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 28px;
    right: 40px;
    text-align: right;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .off-canvas-sidebar .close-off-canvas i {
      -webkit-transform-origin: center;
              transform-origin: center;
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
    .off-canvas-sidebar .close-off-canvas:hover i {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .off-canvas-sidebar .sidebar-inner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    visibility: hidden;
    width: 430px;
    height: 100%;
    padding: 56px;
    background-color: #fff;
    background-image: url("../images/off-canvas-sidebar-img.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    -webkit-transform: translate3d(430px, 0, 0);
            transform: translate3d(430px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: visibility 0.5s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0, 1);
    transition: visibility 0.5s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), visibility 0.5s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), visibility 0.5s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0, 1); }
  .off-canvas-sidebar .overlay {
    position: fixed;
    background: rgba(12, 13, 22, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    cursor: pointer; }
  .off-canvas-sidebar .widget {
    margin-bottom: 40px; }
    .off-canvas-sidebar .widget .widget-title {
      font-size: 16px;
      margin-bottom: 10px; }
    .off-canvas-sidebar .widget p {
      margin-bottom: 20px; }
      .off-canvas-sidebar .widget p:last-of-type {
        margin-bottom: 0; }

/* Search Tweak
   ========================================================================== */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

input[type="search"]::-ms-clear {
  display: none; }

input[type=text]::-ms-clear {
  display: none; }

/* Sidebar Area Styles
   ========================================================================== */
.cdb-sidebar-area .widget .widget-title,
.wpb_widgetised_column .widget .widget-title {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600; }

.cdb-sidebar-area,
.wpb_widgetised_column,
.post-single-sidebar {
  position: relative;
  z-index: 10; }
  @media (max-width: 767.98px) {
    .cdb-sidebar-area,
    .wpb_widgetised_column,
    .post-single-sidebar {
      padding-top: 70px; } }
  .cdb-sidebar-area .widget,
  .wpb_widgetised_column .widget,
  .post-single-sidebar .widget {
    margin-bottom: 2.625rem; }
    .cdb-sidebar-area .widget:last-child,
    .wpb_widgetised_column .widget:last-child,
    .post-single-sidebar .widget:last-child {
      margin-bottom: 0; }

.widget.widget_nav_menu ul, .widget.widget_archive ul, .widget.widget_categories ul, .widget.widget_pages ul, .widget.widget_meta ul, .widget.widget_recent_entries ul {
  padding-top: 5px; }
  .widget.widget_nav_menu ul li, .widget.widget_archive ul li, .widget.widget_categories ul li, .widget.widget_pages ul li, .widget.widget_meta ul li, .widget.widget_recent_entries ul li {
    margin-bottom: 10px; }
    .widget.widget_nav_menu ul li:before, .widget.widget_archive ul li:before, .widget.widget_categories ul li:before, .widget.widget_pages ul li:before, .widget.widget_meta ul li:before, .widget.widget_recent_entries ul li:before {
      font-weight: 900;
      font-family: "Font Awesome 5 Free";
      content: '\f105';
      display: inline-block;
      margin-right: 10px; }
    .widget.widget_nav_menu ul li ul, .widget.widget_archive ul li ul, .widget.widget_categories ul li ul, .widget.widget_pages ul li ul, .widget.widget_meta ul li ul, .widget.widget_recent_entries ul li ul {
      margin: 10px 0 0 15px; }

.widget.widget_recent_comments ul li {
  margin-bottom: 6px; }
  .widget.widget_recent_comments ul li .comment-author-link,
  .widget.widget_recent_comments ul li .comment-author-link a {
    color: #a6a6a6; }

.widget.widget_media_image img {
  width: auto !important; }

.widget.widget_calendar .calendar_wrap table {
  width: 100%;
  border: none; }
  .widget.widget_calendar .calendar_wrap table caption {
    font-size: 15px;
    color: #6e6e6e;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    caption-side: top; }
    .color-scheme-light .widget.widget_calendar .calendar_wrap table caption {
      border-color: rgba(255, 255, 255, 0.1);
      color: #fff; }
  .widget.widget_calendar .calendar_wrap table td, .widget.widget_calendar .calendar_wrap table th {
    text-align: center;
    font-size: 15px;
    padding: 10px 5px;
    border: none; }
  .widget.widget_calendar .calendar_wrap table thead {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .widget.widget_calendar .calendar_wrap table thead th {
      background-color: #f6f8fa;
      color: #262b44; }
    .color-scheme-light .widget.widget_calendar .calendar_wrap table thead {
      border-color: rgba(255, 255, 255, 0.1); }
      .color-scheme-light .widget.widget_calendar .calendar_wrap table thead th {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff; }
  .widget.widget_calendar .calendar_wrap table tbody {
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .color-scheme-light .widget.widget_calendar .calendar_wrap table tbody {
      border-color: rgba(255, 255, 255, 0.1); }
    .widget.widget_calendar .calendar_wrap table tbody a:hover {
      text-decoration: underline; }
  .widget.widget_calendar .calendar_wrap table tfoot #prev {
    text-align: left; }
  .widget.widget_calendar .calendar_wrap table tfoot #next {
    text-align: right; }

.widget.cdb-cf7-widget {
  margin-bottom: 0; }

.widget p a {
  font-weight: 500; }

.cdb-icon-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .cdb-top-header .cdb-icon-widget {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .cdb-icon-widget .cdb-icon-el {
    line-height: 1.6;
    margin-right: 10px; }

/* 404 Page
   ========================================================================== */
.page-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 100px;
  padding-bottom: 80px; }
  @media (min-width: 768px) {
    .page-404 {
      padding-top: 200px;
      padding-bottom: 180px;
      padding-left: 20px;
      padding-right: 20px; }
      .page-404 .error-holder {
        padding-right: 10%; }
        .page-404 .error-holder .search-form {
          max-width: 320px; } }
  .page-404 .error-title {
    font-size: 9.375rem;
    display: inline-block;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.125rem;
    border-bottom: 4px solid; }
    @media (max-width: 991.98px) {
      .page-404 .error-title {
        font-size: 6.25rem;
        margin-bottom: 30px; } }
  .page-404 .error-heading {
    font-size: 2rem;
    line-height: 1.3; }
  .page-404 .error-text {
    margin-bottom: 27px; }

/* Search Page
   ========================================================================== */
.cdb-search-post-list {
  margin-top: 30px;
  margin-bottom: 30px; }
  .cdb-search-post-list .post-title {
    font-size: 22px;
    margin: 10px 0; }

.cdb-search-empty {
  position: relative;
  text-align: center; }
  .cdb-search-empty .icon {
    display: inline-block;
    margin: 35px 0 6px;
    width: 140px;
    height: 90px; }
    .cdb-search-empty .icon svg {
      width: 100%;
      height: 100%;
      fill: #ddd; }
  .cdb-search-empty h3 {
    margin-bottom: 6px; }

/* GDPR Banner
   ========================================================================== */
.gdpr-banner {
  position: fixed;
  bottom: 15px;
  left: 15px;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11);
  padding: 20px;
  font-size: 13px;
  z-index: 300;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .gdpr-banner.show {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .gdpr-banner .gdpr-banner-info a {
    border-bottom: 1px dotted; }
  .gdpr-banner .close-btn {
    cursor: pointer;
    margin-left: 10px; }
    .gdpr-banner .close-btn:hover {
      opacity: .7; }
    .gdpr-banner .close-btn i {
      line-height: 1;
      vertical-align: middle; }

/* Reading Indicator
   ========================================================================== */
.cdb-reading-indicator {
  background: rgba(255, 255, 255, 0);
  border: none;
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  -webkit-transition: opacity,.2s;
  transition: opacity,.2s; }
  .cdb-reading-indicator::-webkit-progress-bar {
    background-color: transparent; }
  .cdb-reading-indicator::-webkit-progress-value {
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out; }

/* Go Top
   ========================================================================== */
.cdb-go-top {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }
  .cdb-go-top span {
    display: inline-block;
    line-height: 1;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .cdb-go-top:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
    .cdb-go-top:hover span {
      -webkit-animation: cdbBackTopArrow .6s ease both alternate;
              animation: cdbBackTopArrow .6s ease both alternate; }
  .cdb-go-top:active {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-box-shadow: none;
            box-shadow: none; }

@-webkit-keyframes cdbBackTopArrow {
  40% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 0; }
  41% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes cdbBackTopArrow {
  40% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 0; }
  41% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute !important;
  height: 0;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }
  .screen-reader-text:focus {
    display: block;
    top: 5px;
    left: 5px;
    width: auto;
    height: auto;
    padding: 15px 23px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    z-index: 100000;
    /* Above WP toolbar. */ }

/* Page Pagination
   ========================================================================== */
.cdb-page-pagination {
  margin: 30px 0; }
  .cdb-page-pagination .cdb-page-links-title {
    margin-right: 7px; }
  .cdb-page-pagination span.cdb-page-link,
  .cdb-page-pagination a span.cdb-page-link {
    min-width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    background-color: #f6f8fa; }
  .cdb-page-pagination > span.current .cdb-page-link {
    color: #fff; }

/* WordPress Styles
   ========================================================================== */
.bypostauthor {
  color: inherit;
  background-color: #f6f8fa;
  padding: 5px 20px 5px 20px; }

figure {
  display: block;
  margin: 0; }
  figure img {
    display: block;
    height: auto;
    max-width: 100%; }

.alignleft {
  float: left;
  margin: 0 30px 30px 0; }

.alignright {
  float: right;
  margin: 0 0 30px 30px; }
  p .alignright {
    margin-top: 30px; }

.wp-caption {
  max-width: 100% !important; }
  .wp-caption.alignnone {
    margin: 5px 0 30px 0; }

.alignright img,
.alignleft img,
.aligncenter img {
  width: 100%;
  max-width: 100%; }

.wp-block-cover {
  margin-bottom: 30px; }

.aligncenter {
  display: block;
  clear: both;
  margin: 0 auto; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0; }

.wp-caption {
  color: #a6a6a6;
  margin-bottom: 24px;
  max-width: 100% !important; }
  .wp-caption.alignnone {
    margin: 5px 0 30px 0; }
  .color-scheme-light .wp-caption {
    color: rgba(255, 255, 255, 0.75); }

.wp-caption-text {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px 0;
  padding-right: 10px; }

.gallery {
  display: block;
  margin: 0 -2px;
  clear: both;
  overflow: hidden; }
  .gallery.gallery-columns-2 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-2 .gallery-item {
        max-width: 50%; } }
  .gallery.gallery-columns-3 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-3 .gallery-item {
        max-width: 33.33%; } }
  .gallery.gallery-columns-4 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-4 .gallery-item {
        max-width: 50%; } }
    @media (min-width: 768px) {
      .gallery.gallery-columns-4 .gallery-item {
        max-width: 25%; } }
  .gallery.gallery-columns-5 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-5 .gallery-item {
        max-width: 50%; } }
    @media (min-width: 768px) {
      .gallery.gallery-columns-5 .gallery-item {
        max-width: 20%; } }
  .gallery.gallery-columns-6 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-6 .gallery-item {
        max-width: 33.33%; } }
    @media (min-width: 768px) {
      .gallery.gallery-columns-6 .gallery-item {
        max-width: 16.66%; } }
  .gallery.gallery-columns-7 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-7 .gallery-item {
        max-width: 25%; } }
    @media (min-width: 768px) {
      .gallery.gallery-columns-7 .gallery-item {
        max-width: 14.28%; } }
  .gallery.gallery-columns-8 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-8 .gallery-item {
        max-width: 25%; } }
    @media (min-width: 768px) {
      .gallery.gallery-columns-8 .gallery-item {
        max-width: 12.5%; } }
  .gallery.gallery-columns-9 .gallery-item {
    max-width: 50%; }
    @media (min-width: 576px) {
      .gallery.gallery-columns-9 .gallery-item {
        max-width: 25%; } }
    @media (min-width: 768px) {
      .gallery.gallery-columns-9 .gallery-item {
        max-width: 11.11%; } }
  .gallery .gallery-item {
    display: inline-block;
    width: 100%;
    padding: 0 2px;
    margin: 0 0 1.5em;
    vertical-align: top;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease; }
    .gallery .gallery-item:hover {
      opacity: 0.8; }
    .gallery .gallery-item img {
      max-width: 100%;
      display: block;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
    .gallery .gallery-item a {
      line-height: 0;
      display: block;
      border: none !important;
      width: 100%; }
    .gallery .gallery-item .gallery-caption {
      color: rgba(51, 51, 51, 0.7);
      font-size: 12px;
      line-height: 1.5;
      padding: 0.5em 0; }

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

.tag-link:not(.cdb-blog-post),
.tag-cloud-link:not(.cdb-blog-post) {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 10px 0;
  padding: 8px 10px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 12px !important;
  line-height: 1em;
  letter-spacing: 0.05em; }
  .tag-link:not(.cdb-blog-post):hover,
  .tag-cloud-link:not(.cdb-blog-post):hover {
    color: #fff !important; }
  .color-scheme-light .tag-link:not(.cdb-blog-post), .color-scheme-light
  .tag-cloud-link:not(.cdb-blog-post) {
    border-color: rgba(255, 255, 255, 0.2); }

.entry-content ol, .entry-content ul {
  list-style: none;
  margin: 0 0 23px; }
  .entry-content ol ul, .entry-content ol ol, .entry-content ul ul, .entry-content ul ol {
    margin: 10px 0 0; }

.entry-content ul {
  list-style: disc;
  list-style-position: inside; }
  .entry-content ul ul, .entry-content ul ol {
    margin: 10px 0 0; }
  .entry-content ul li:not(.blocks-gallery-item) {
    margin: 0 0 10px;
    padding: 0 0 0 25px;
    position: relative; }

.entry-content ol {
  list-style: decimal;
  list-style-position: inside; }
  .entry-content ol > li {
    margin: 0 0 10px;
    padding: 0 0 0 25px;
    position: relative; }

.wp-block-search {
  margin-bottom: 20px; }

.wp-block-cover-text {
  color: #fff !important; }

.wp-block-rss__item {
  display: block;
  padding-left: 0 !important; }

.wp-block-search__input {
  background: #f6f8fa;
  width: auto;
  padding: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid transparent; }
  .wp-block-search__input:focus {
    border-color: #262b44; }

.wp-block-button__link {
  margin-bottom: 10px; }

.wp-block-search__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  border: 1px solid transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0, 1);
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 0.875rem 1.5625rem 0.75rem 1.5625rem;
  color: #ffffff;
  border: 0; }
  .wp-block-search__button:focus {
    outline: none; }
  .wp-block-search__button:hover {
    -webkit-box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1); }
  .wp-block-search__button:hover, .wp-block-search__button:focus {
    color: #ffffff; }

.blocks-gallery-grid,
.blocks-gallery-caption {
  margin: 0 0 30px; }

.blocks-gallery-item a {
  border: 0 !important; }

.comment-form-cookies-consent {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .comment-form-cookies-consent input[type="checkbox"] {
    margin-right: 10px; }
  .comment-form-cookies-consent label {
    font-weight: 400; }

/* Courses
   ========================================================================== */
.courses-wrap.col-space-0 > .row {
  margin: 0; }
  .courses-wrap.col-space-0 > .row .course-item-wrapper {
    padding: 0 0px;
    margin: 0 0 0px; }

.courses-wrap.col-space-2 > .row {
  margin: 0 -2px; }
  .courses-wrap.col-space-2 > .row .course-item-wrapper {
    padding: 0 2px;
    margin: 0 0 4px; }

.courses-wrap.col-space-6 > .row {
  margin: 0 -6px; }
  .courses-wrap.col-space-6 > .row .course-item-wrapper {
    padding: 0 6px;
    margin: 0 0 12px; }

.courses-wrap.col-space-10 > .row {
  margin: 0 -10px; }
  .courses-wrap.col-space-10 > .row .course-item-wrapper {
    padding: 0 10px;
    margin: 0 0 20px; }

.courses-wrap.col-space-20 > .row {
  margin: 0 -20px; }
  .courses-wrap.col-space-20 > .row .course-item-wrapper {
    padding: 0 20px;
    margin: 0 0 40px; }

.courses-wrap.col-space-30 > .row {
  margin: 0 -30px; }
  .courses-wrap.col-space-30 > .row .course-item-wrapper {
    padding: 0 30px;
    margin: 0 0 60px; }

.courses-wrap.col-space-40 > .row {
  margin: 0 -40px; }
  .courses-wrap.col-space-40 > .row .course-item-wrapper {
    padding: 0 40px;
    margin: 0 0 80px; }

.course-item-wrapper {
  position: relative; }
  .course-item-wrapper .course-item-inner {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.05); }
    @media (min-width: 768px) {
      .course-item-wrapper .course-item-inner:hover .course-item-over {
        visibility: visible;
        opacity: 1;
        -webkit-transform: none;
                transform: none;
        -webkit-transition-delay: 0.35s;
                transition-delay: 0.35s; } }
  .course-item-wrapper .course-item-title {
    font-size: 1.25rem; }
    .course-item-wrapper .course-item-title:before {
      content: '';
      display: block;
      width: 32px;
      height: 3px;
      margin-bottom: 20px; }
  .course-item-wrapper .course-item-details {
    text-align: center;
    padding: 25px; }
    .course-item-wrapper .course-item-details .course-item-title {
      font-size: 1rem;
      margin-bottom: 0; }
      .course-item-wrapper .course-item-details .course-item-title:before {
        margin: 0 auto 20px; }
  .course-item-wrapper .course-item-over {
    position: absolute;
    top: -25px;
    left: -40px;
    right: -40px;
    padding: 35px 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 20px 4px rgba(38, 43, 68, 0.1);
            box-shadow: 0 2px 20px 4px rgba(38, 43, 68, 0.1);
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    z-index: 150;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease; }
    @media (max-width: 1400px) {
      .course-item-wrapper .course-item-over {
        top: -15px;
        left: -15px;
        right: -15px;
        padding: 20px 30px; } }
    @media (max-width: 1200px) {
      .course-item-wrapper .course-item-over {
        display: none; } }
    .course-item-wrapper .course-item-over .course-author {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 25px; }
      .course-item-wrapper .course-item-over .course-author .avatar {
        border-radius: 50%;
        min-width: 40px;
        width: 40px;
        margin-right: 15px; }
      .course-item-wrapper .course-item-over .course-author span {
        font-size: 14px; }
    .course-item-wrapper .course-item-over .read-more {
      margin-top: 25px; }
    .course-item-wrapper .course-item-over .item-over-bottom {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 25px;
      color: #a6a6a6; }
      .course-item-wrapper .course-item-over .item-over-bottom a {
        color: currentColor; }
      .course-item-wrapper .course-item-over .item-over-bottom .course-category {
        font-size: 14px; }
      .course-item-wrapper .course-item-over .item-over-bottom .course-price {
        font-size: 1rem;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .course-item-wrapper .course-item-over .item-over-bottom .course-price .price {
          color: #262b44;
          font-weight: 500; }
        .course-item-wrapper .course-item-over .item-over-bottom .course-price .price-off {
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-weight: 500; }
          .course-item-wrapper .course-item-over .item-over-bottom .course-price .price-off:before {
            content: '';
            display: inline-block;
            width: 10px;
            height: 1px;
            background-color: #ddd;
            margin-left: 8px;
            margin-right: 8px; }
        .course-item-wrapper .course-item-over .item-over-bottom .course-price.on-sale .price {
          font-weight: normal;
          color: #a6a6a6; }

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.cdb-owl-carousel,
.owl-carousel {
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .cdb-owl-carousel .owl-stage,
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .cdb-owl-carousel .owl-stage:after,
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .cdb-owl-carousel .owl-stage-outer,
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .cdb-owl-carousel .owl-wrapper,
  .cdb-owl-carousel .owl-item,
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .cdb-owl-carousel .owl-item,
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .cdb-owl-carousel .owl-nav.disabled,
  .cdb-owl-carousel .owl-dots.disabled,
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .cdb-owl-carousel .owl-nav .owl-prev,
  .cdb-owl-carousel .owl-nav .owl-next,
  .cdb-owl-carousel .owl-dot,
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .cdb-owl-carousel.owl-loaded,
  .owl-carousel.owl-loaded {
    display: block; }
  .cdb-owl-carousel.owl-loading,
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .cdb-owl-carousel.owl-hidden,
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .cdb-owl-carousel.owl-refresh .owl-item,
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .cdb-owl-carousel.owl-drag .owl-item,
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .cdb-owl-carousel.owl-grab,
  .owl-carousel.owl-grab {
    cursor: -webkit-grab;
    cursor: grab; }
  .cdb-owl-carousel.owl-rtl,
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .cdb-owl-carousel.owl-rtl .owl-item,
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

.owl-carousel:after, .owl-carousel:before,
.cdb-owl-carousel:after,
.cdb-owl-carousel:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px; }

.owl-carousel:before,
.cdb-owl-carousel:before {
  right: -50px; }

.owl-carousel:after,
.cdb-owl-carousel:after {
  left: -50px; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* Owl Carousel - Auto Height Plugin */
.owl-height {
  -webkit-transition: height 500ms cubic-bezier(0.02, 0.54, 0.58, 1);
  transition: height 500ms cubic-bezier(0.02, 0.54, 0.58, 1); }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-nav {
  font-size: 0; }
  .owl-nav > button {
    position: absolute;
    top: 50%;
    color: rgba(0, 0, 0, 0.8);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: transparent;
    border: 1px solid #262b44;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 250;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .owl-nav > button[class*="prev"] {
      padding-right: 2px;
      -webkit-transform: translateX(-30px);
              transform: translateX(-30px); }
    .owl-nav > button[class*="next"] {
      padding-left: 2px;
      -webkit-transform: translateX(30px);
              transform: translateX(30px); }
    .color-scheme-light .owl-nav > button {
      color: #fff;
      border-color: #fff; }
    .owl-nav > button:hover {
      opacity: 0.6 !important; }

.owl-nav > button[class*="prev"] {
  left: -60px; }

.owl-nav > button[class*="next"] {
  right: -60px; }

.owl-carousel:hover .owl-nav > button,
.cdb-owl-carousel:hover .owl-nav > button {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible; }

.owl-dots {
  text-align: center;
  margin-top: 5px; }
  .owl-dots .owl-dot {
    display: inline-block;
    background: none;
    padding: 0;
    margin-top: 10px; }
    .owl-dots .owl-dot span {
      display: block;
      width: 10px;
      height: 10px;
      margin: 5px 5px;
      border-radius: 50%;
      border: 2px solid rgba(0, 0, 0, 0.2);
      -webkit-transition: all 0.25s ease;
      transition: all 0.25s ease; }
    .owl-dots .owl-dot:not(.active):hover span {
      border-color: #262b44; }
    .owl-dots .owl-dot.active span {
      border-color: #262b44;
      background-color: #262b44; }
  .color-scheme-light .owl-dots .owl-dot span {
    border-color: rgba(255, 255, 255, 0.4); }
  .color-scheme-light .owl-dots .owl-dot:not(.active):hover span {
    border-color: rgba(255, 255, 255, 0.8); }
  .color-scheme-light .owl-dots .owl-dot.active span {
    border-color: white;
    background-color: white; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 104200;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 104300;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 104500; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute !important;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  color: #fff !important;
  font-style: normal;
  z-index: 2; }
  .mfp-close i {
    position: relative;
    z-index: -1; }

button.mfp-close:hover, .mfp-close:focus {
  opacity: 1 !important;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 55px 0 55px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 55px;
  bottom: 55px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -40px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
         * Remove all paddings around the image on small screen
         */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.mfp-bg {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-zoom-in .mfp-with-anim, .mfp-zoom-in .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: scale(0.93);
          transform: scale(0.93); }

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-zoom-in.mfp-ready.mfp-image-loaded .mfp-with-anim, .mfp-zoom-in.mfp-ready .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1); }

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.85; }

.mfp-removing .mfp-iframe-scaler {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
  opacity: 0 !important; }

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

.mfp-wrap.mfp-removing .mfp-arrow-left, .mfp-wrap.mfp-removing .mfp-arrow-right {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  opacity: 0; }

/* Contact Form 7
   ========================================================================== */
div.wpcf7 .wpcf7-form .ajax-loader {
  width: 30px;
  height: 6px;
  border: 6px solid;
  background-image: url("../images/loader.svg") !important;
  background-size: 100% !important;
  background-position: center !important;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0; }
  div.wpcf7 .wpcf7-form .ajax-loader.is-active {
    visibility: visible; }

input.wpcf7-submit {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25rem;
  padding: 15px 25px;
  border: none;
  padding: 15px 40px; }
  input.wpcf7-submit:hover {
    -webkit-box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1); }
  input.wpcf7-submit:hover, input.wpcf7-submit:focus {
    color: #ffffff; }

div.wpcf7-validation-errors {
  display: none !important; }

.wpcf7-form {
  position: relative;
  text-align: left; }
  .wpcf7-form p {
    margin-bottom: 0; }
    .wpcf7-form p.small {
      margin-bottom: 15px; }

.cdb-cf-style-inline .wpcf7-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 30px; }
  @media (max-width: 767.98px) {
    .cdb-cf-style-inline .wpcf7-form p {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.cdb-cf-style-inline .wpcf7-form .ajax-loader {
  position: absolute;
  right: 0;
  margin: 0;
  top: 55px; }

.cdb-cf-style-inline .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  margin-left: 10px; }
  @media (max-width: 767.98px) {
    .cdb-cf-style-inline .wpcf7-form-control-wrap {
      margin-left: 0;
      margin-bottom: 10px; } }
  .cdb-cf-style-inline .wpcf7-form-control-wrap:first-child {
    margin-left: 0; }
  .cdb-cf-style-inline .wpcf7-form-control-wrap input {
    margin-bottom: 0; }

.cdb-cf-style-inline .wpcf7-submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  height: 50px;
  line-height: 1;
  margin: 0 0 0 10px; }
  @media (max-width: 767.98px) {
    .cdb-cf-style-inline .wpcf7-submit {
      margin-left: 0;
      text-align: center; } }

.cf7-style-underline input[type="text"],
.cf7-style-underline input[type="password"],
.cf7-style-underline input[type="email"],
.cf7-style-underline input[type="tel"],
.cf7-style-underline textarea,
.cf7-style-underline .form-control {
  background: transparent;
  padding-left: 0;
  border: 0;
  border-bottom: 1px solid #262b44; }
  .cf7-style-underline input[type="text"]::-webkit-input-placeholder,
  .cf7-style-underline input[type="password"]::-webkit-input-placeholder,
  .cf7-style-underline input[type="email"]::-webkit-input-placeholder,
  .cf7-style-underline input[type="tel"]::-webkit-input-placeholder,
  .cf7-style-underline textarea::-webkit-input-placeholder,
  .cf7-style-underline .form-control::-webkit-input-placeholder {
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    color: #262b44; }
  .cf7-style-underline input[type="text"]::-moz-placeholder,
  .cf7-style-underline input[type="password"]::-moz-placeholder,
  .cf7-style-underline input[type="email"]::-moz-placeholder,
  .cf7-style-underline input[type="tel"]::-moz-placeholder,
  .cf7-style-underline textarea::-moz-placeholder,
  .cf7-style-underline .form-control::-moz-placeholder {
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
    color: #262b44; }
  .cf7-style-underline input[type="text"]::-moz-placeholder,
  .cf7-style-underline input[type="password"]::-moz-placeholder,
  .cf7-style-underline input[type="email"]::-moz-placeholder,
  .cf7-style-underline input[type="tel"]::-moz-placeholder,
  .cf7-style-underline textarea::-moz-placeholder,
  .cf7-style-underline .form-control::-moz-placeholder {
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
    color: #262b44; }
  .cf7-style-underline input[type="text"]:-ms-input-placeholder,
  .cf7-style-underline input[type="password"]:-ms-input-placeholder,
  .cf7-style-underline input[type="email"]:-ms-input-placeholder,
  .cf7-style-underline input[type="tel"]:-ms-input-placeholder,
  .cf7-style-underline textarea:-ms-input-placeholder,
  .cf7-style-underline .form-control:-ms-input-placeholder {
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
    color: #262b44; }

.newsletter-email {
  position: relative;
  display: inline-block;
  width: 100%; }
  .newsletter-email input {
    margin-bottom: 0; }
  .newsletter-email .wpcf7-submit {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0;
    height: 50px;
    width: 50px;
    padding: 0;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -webkit-transform: none !important;
            transform: none !important; }
  .newsletter-email span.material-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #fff;
    pointer-events: none; }

.vc_page_container .cdb-grid-section > .vc_row[data-vc-full-width-init=true] {
  left: 0 !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important; }

.vc_page_container .cdb-grid-section .cdb-grid-section {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; }

.vc_page_container .cdb-grid-section .vc_column_container {
  padding-left: 15px;
  padding-right: 15px; }

.vc_page_container .cdb-grid-section .vc_column-inner {
  padding-left: 0;
  padding-right: 0; }

.vc_page_container .cdb-grid-section.row-stretch_row > .vc_row {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .vc_page_container .cdb-grid-section.row-stretch_row > .vc_row {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .vc_page_container .cdb-grid-section.row-stretch_row > .vc_row {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .vc_page_container .cdb-grid-section.row-stretch_row > .vc_row {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .vc_page_container .cdb-grid-section.row-stretch_row > .vc_row {
      max-width: 1300px; } }

.vc_page_container .cdb-grid-section.row-stretch_row_content_no_spaces .vc_column_container,
.vc_page_container .cdb-grid-section .no-padding .vc_column_container {
  padding-left: 0;
  padding-right: 0; }

.vc_page_container .cdb-grid-section .no-padding {
  margin-left: 0;
  margin-right: 0; }

.col-small-shadow > .vc_column-inner {
  -webkit-box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05); }

.col-medium-shadow > .vc_column-inner {
  -webkit-box-shadow: 0 0 42px 4px rgba(38, 43, 68, 0.32);
          box-shadow: 0 0 42px 4px rgba(38, 43, 68, 0.32); }

.col-large-shadow > .vc_column-inner {
  -webkit-box-shadow: 0 48px 90px rgba(0, 0, 0, 0.06), 0 -25px 65px rgba(0, 0, 0, 0.06);
          box-shadow: 0 48px 90px rgba(0, 0, 0, 0.06), 0 -25px 65px rgba(0, 0, 0, 0.06); }

body .cdb-bg-left-top,
body .cdb-bg-left-top > .vc_column-inner {
  background-position: left top !important; }

body .cdb-bg-left-center,
body .cdb-bg-left-center > .vc_column-inner {
  background-position: left center !important; }

body .cdb-bg-left-bottom,
body .cdb-bg-left-bottom > .vc_column-inner {
  background-position: left bottom !important; }

body .cdb-bg-right-top,
body .cdb-bg-right-top > .vc_column-inner {
  background-position: right top !important; }

body .cdb-bg-right-center,
body .cdb-bg-right-center > .vc_column-inner {
  background-position: right center !important; }

body .cdb-bg-right-bottom,
body .cdb-bg-right-bottom > .vc_column-inner {
  background-position: right bottom !important; }

body .cdb-bg-center-top,
body .cdb-bg-center-top > .vc_column-inner {
  background-position: center top !important; }

body .cdb-bg-center-center,
body .cdb-bg-center-center > .vc_column-inner {
  background-position: center center !important; }

body .cdb-bg-center-bottom,
body .cdb-bg-center-bottom > .vc_column-inner {
  background-position: center bottom !important; }

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important; }

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto; }

.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  bottom: 0px;
  position: absolute; }

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  right: 0;
  position: absolute; }

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent; }

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6; }

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9; }

.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  bottom: 2px;
  position: absolute; }

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  right: 2px;
  position: absolute; }

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px; }

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px; }

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important; } }

/* Recent Posts Widget Style
   ========================================================================== */
.widget.codebean-recent-posts ul li {
  padding-bottom: 20px !important; }
  .widget.codebean-recent-posts ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .widget.codebean-recent-posts ul li .recent-posts-thumbnail {
    overflow: hidden;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 15px;
    width: 60px;
    height: 60px; }
  .widget.codebean-recent-posts ul li .recent-posts-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  .widget.codebean-recent-posts ul li .entry-title {
    margin: 0 0 5px;
    display: block;
    line-height: 1.4;
    -webkit-transition: color 0.15s linear;
    transition: color 0.15s linear; }
  .widget.codebean-recent-posts ul li .recent-posts-time {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #a6a6a6; }

/* Search Opener Widget
   ========================================================================== */
.cdb-search-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.cdb-search-holder {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s; }
  .cdb-search-holder.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .cdb-search-holder .cdb-search-close {
    position: relative;
    top: 28px;
    right: 40px;
    text-align: right; }
    .admin-bar .cdb-search-holder .cdb-search-close {
      top: 60px; }
    .cdb-search-holder .cdb-search-close .close-search-button {
      position: relative;
      width: 50px;
      height: 50px;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.1); }
      .cdb-search-holder .cdb-search-close .close-search-button i {
        -webkit-transform-origin: center;
                transform-origin: center;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease; }
      .cdb-search-holder .cdb-search-close .close-search-button:hover i {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
  .cdb-search-holder .search-wrap-inner {
    position: absolute;
    width: 100%;
    top: 30vh;
    left: 0; }
  .cdb-search-holder .search-form-holder {
    max-width: 600px;
    margin: 0 auto; }
    .cdb-search-holder .search-form-holder .search-form {
      position: relative;
      margin-bottom: 30px; }
    .cdb-search-holder .search-form-holder label {
      font-size: 20px;
      font-weight: normal;
      margin-bottom: 10px; }
    .cdb-search-holder .search-form-holder .search-widgets-holder {
      padding-top: 30px;
      border-top: 1px dashed rgba(0, 0, 0, 0.1); }
      .cdb-search-holder .search-form-holder .search-widgets-holder .widget-title {
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 500;
        color: #a6a6a6; }

/* Social Profiles Widget
   ========================================================================== */
.cdb-social-profiles .cdb-social-profile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .cdb-social-profiles .cdb-social-profile + .cdb-social-profile {
    margin-left: 0.9375rem; }

.cdb-social-profiles.cdb-square-icons .cdb-social-profile {
  width: 40px;
  height: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 13px 0 rgba(50, 50, 50, 0.05);
          box-shadow: 0 0 13px 0 rgba(50, 50, 50, 0.05); }
  .cdb-social-profiles.cdb-square-icons .cdb-social-profile + .cdb-social-profile {
    margin-left: 0; }

.cdb-social-profiles.cdb-circle-icons .cdb-social-profile {
  width: 36px;
  height: 36px;
  background-color: #fff;
  color: #262b44;
  -webkit-box-shadow: 0 0 13px 0 rgba(50, 50, 50, 0.15);
          box-shadow: 0 0 13px 0 rgba(50, 50, 50, 0.15);
  border-radius: 50%; }
  .cdb-social-profiles.cdb-circle-icons .cdb-social-profile + .cdb-social-profile {
    margin-left: 6px; }

.cdb-social-profiles.colored .cdb-social-profile.brand-facebook:hover {
  background-color: #3b5998;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-facebook-f:hover {
  background-color: #3b5998;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-google-plus:hover {
  background-color: #dd4b39;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-linkedin:hover {
  background-color: #007bb6;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-pinterest:hover {
  background-color: #cb2027;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-twitter:hover {
  background-color: #00aced;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-instagram:hover {
  background-color: #405de6;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-vk:hover {
  background-color: #45668e;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-tumblr:hover {
  background-color: #35465c;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-xing:hover {
  background-color: #cfdc00;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-soundcloud:hover {
  background-color: #f80;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-dribbble:hover {
  background-color: #ea4c89;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-youtube:hover {
  background-color: #e52d27;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-spotify:hover {
  background-color: #7ab800;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-behance:hover {
  background-color: #1769ff;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-deviantart:hover {
  background-color: #4e6252;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-vimeo:hover {
  background-color: #1ab7ea;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-flickr:hover {
  background-color: #0063dc;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-rss:hover {
  background-color: #f26522;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-twitch:hover {
  background-color: #6441a5;
  color: #fff !important; }

.cdb-social-profiles.colored .cdb-social-profile.brand-fivehundred:hover {
  background-color: #0099e5;
  color: #fff !important; }

.cdb-social-profiles.cdb-dark-skin.cdb-square-icons .cdb-social-profile, .cdb-social-profiles.cdb-dark-skin.cdb-circle-icons .cdb-social-profile {
  color: #fff; }
  .cdb-social-profiles.cdb-dark-skin.cdb-square-icons .cdb-social-profile:hover, .cdb-social-profiles.cdb-dark-skin.cdb-circle-icons .cdb-social-profile:hover {
    color: rgba(255, 255, 255, 0.8); }

/* Accordions & Toggles
   ========================================================================== */
.cdb-accordion .accordion-title-wrapper {
  cursor: pointer; }

.cdb-accordion .accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .cdb-accordion .accordion-title i {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.cdb-accordion .accordion-item.is-open .accordion-title i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.cdb-accordion .accordion-content {
  display: none; }

.cdb-accordion.cdb-accordion-boxed .accordion-title {
  font-size: 18px;
  padding: 18px 30px;
  margin-bottom: 0;
  border-radius: 4px;
  border: 1px solid #ededed; }

.cdb-accordion.cdb-accordion-boxed .accordion-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff; }
  .cdb-accordion.cdb-accordion-boxed .accordion-item + .accordion-item {
    margin-top: 20px; }
  .cdb-accordion.cdb-accordion-boxed .accordion-item.is-open {
    -webkit-box-shadow: 0 -5px 70px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 -5px 70px 0 rgba(0, 0, 0, 0.1); }
    .cdb-accordion.cdb-accordion-boxed .accordion-item.is-open .accordion-title {
      color: #fff;
      border-color: transparent;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }

.cdb-accordion.cdb-accordion-boxed .accordion-content {
  padding: 25px 30px 25px; }

.cdb-accordion.cdb-accordion-boxed.color-scheme-light .accordion-item {
  background-color: transparent; }

.cdb-accordion.cdb-accordion-boxed.color-scheme-light .accordion-content {
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7); }
  .cdb-accordion.cdb-accordion-boxed.color-scheme-light .accordion-content * {
    color: inherit; }

.cdb-accordion.cdb-accordion-boxed.color-scheme-light .accordion-title {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1); }

.cdb-accordion.cdb-accordion-simple .accordion-item {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #ededed;
  padding: 7px 0; }

.cdb-accordion.cdb-accordion-simple .accordion-content {
  padding: 10px 45px 25px; }

.cdb-accordion.cdb-accordion-simple .accordion-title {
  position: relative;
  font-size: 20px;
  color: #a6a6a6;
  padding: 20px 30px 20px 45px;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .cdb-accordion.cdb-accordion-simple .accordion-title i {
    position: absolute;
    top: 21px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    color: #a6a6a6; }

.cdb-accordion.cdb-accordion-simple.color-scheme-light .accordion-item {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1); }

.cdb-accordion.cdb-accordion-simple.color-scheme-light .accordion-content {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7); }
  .cdb-accordion.cdb-accordion-simple.color-scheme-light .accordion-content * {
    color: inherit; }

.cdb-accordion.cdb-accordion-simple.color-scheme-light .accordion-title {
  color: #fff; }

/* Animated Box
   ========================================================================== */
.cdb-animated-box {
  opacity: 0;
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }
  .cdb-animated-box.visible {
    opacity: 1; }
  .cdb-animated-box[data-anim-delay="200"] {
    -webkit-animation-delay: .2s;
            animation-delay: .2s; }
  .cdb-animated-box[data-anim-delay="400"] {
    -webkit-animation-delay: .4s;
            animation-delay: .4s; }
  .cdb-animated-box[data-anim-delay="600"] {
    -webkit-animation-delay: .6s;
            animation-delay: .6s; }
  .cdb-animated-box[data-anim-delay="800"] {
    -webkit-animation-delay: .8s;
            animation-delay: .8s; }
  .cdb-animated-box[data-anim-delay="1000"] {
    -webkit-animation-delay: 1s;
            animation-delay: 1s; }

@-webkit-keyframes cdb-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

@keyframes cdb-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

.zoomIn.visible {
  -webkit-animation-name: cdb-zoomIn;
          animation-name: cdb-zoomIn; }

@-webkit-keyframes cdb-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes cdb-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn.visible {
  -webkit-animation-name: cdb-fadeIn;
          animation-name: cdb-fadeIn; }

@-webkit-keyframes cdb-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes cdb-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInDown.visible {
  -webkit-animation-name: cdb-fadeInDown;
          animation-name: cdb-fadeInDown; }

@-webkit-keyframes cdb-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes cdb-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInLeft.visible {
  -webkit-animation-name: cdb-fadeInLeft;
          animation-name: cdb-fadeInLeft; }

@-webkit-keyframes kd-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes kd-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInRight.visible {
  -webkit-animation-name: kd-fadeInRight;
          animation-name: kd-fadeInRight; }

@-webkit-keyframes cdb-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes cdb-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInUp.visible {
  -webkit-animation-name: cdb-fadeInUp;
          animation-name: cdb-fadeInUp; }

/* Buttons Style
   ========================================================================== */
.cdb-btn,
button,
.button,
[type="submit"],
[type="button"],
.wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  border: 1px solid transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0, 1);
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 0.875rem 1.5625rem 0.75rem 1.5625rem; }
  .cdb-btn:focus,
  button:focus,
  .button:focus,
  [type="submit"]:focus,
  [type="button"]:focus,
  .wpcf7-submit:focus {
    outline: none; }
  .cdb-btn[disabled],
  button[disabled],
  .button[disabled],
  [type="submit"][disabled],
  [type="button"][disabled],
  .wpcf7-submit[disabled] {
    opacity: 0.5 !important; }
  .cdb-btn.cdb-btn-color-default,
  button.cdb-btn-color-default,
  .button.cdb-btn-color-default,
  [type="submit"].cdb-btn-color-default,
  [type="button"].cdb-btn-color-default,
  .wpcf7-submit.cdb-btn-color-default {
    color: #262b44;
    background-color: #f8f5f2;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    box-shadow: none; }
    .cdb-btn.cdb-btn-color-default:hover, .cdb-btn.cdb-btn-color-default:focus,
    button.cdb-btn-color-default:hover,
    button.cdb-btn-color-default:focus,
    .button.cdb-btn-color-default:hover,
    .button.cdb-btn-color-default:focus,
    [type="submit"].cdb-btn-color-default:hover,
    [type="submit"].cdb-btn-color-default:focus,
    [type="button"].cdb-btn-color-default:hover,
    [type="button"].cdb-btn-color-default:focus,
    .wpcf7-submit.cdb-btn-color-default:hover,
    .wpcf7-submit.cdb-btn-color-default:focus {
      color: #fff; }
      .cdb-btn.cdb-btn-color-default:hover:hover, .cdb-btn.cdb-btn-color-default:focus:hover,
      button.cdb-btn-color-default:hover:hover,
      button.cdb-btn-color-default:focus:hover,
      .button.cdb-btn-color-default:hover:hover,
      .button.cdb-btn-color-default:focus:hover,
      [type="submit"].cdb-btn-color-default:hover:hover,
      [type="submit"].cdb-btn-color-default:focus:hover,
      [type="button"].cdb-btn-color-default:hover:hover,
      [type="button"].cdb-btn-color-default:focus:hover,
      .wpcf7-submit.cdb-btn-color-default:hover:hover,
      .wpcf7-submit.cdb-btn-color-default:focus:hover {
        -webkit-box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
                box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1); }
  .cdb-btn.cdb-btn-color-primary,
  button.cdb-btn-color-primary,
  .button.cdb-btn-color-primary,
  [type="submit"].cdb-btn-color-primary,
  [type="button"].cdb-btn-color-primary,
  .wpcf7-submit.cdb-btn-color-primary {
    color: #ffffff; }
    .cdb-btn.cdb-btn-color-primary:hover,
    button.cdb-btn-color-primary:hover,
    .button.cdb-btn-color-primary:hover,
    [type="submit"].cdb-btn-color-primary:hover,
    [type="button"].cdb-btn-color-primary:hover,
    .wpcf7-submit.cdb-btn-color-primary:hover {
      -webkit-box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
              box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1); }
    .cdb-btn.cdb-btn-color-primary:hover, .cdb-btn.cdb-btn-color-primary:focus,
    button.cdb-btn-color-primary:hover,
    button.cdb-btn-color-primary:focus,
    .button.cdb-btn-color-primary:hover,
    .button.cdb-btn-color-primary:focus,
    [type="submit"].cdb-btn-color-primary:hover,
    [type="submit"].cdb-btn-color-primary:focus,
    [type="button"].cdb-btn-color-primary:hover,
    [type="button"].cdb-btn-color-primary:focus,
    .wpcf7-submit.cdb-btn-color-primary:hover,
    .wpcf7-submit.cdb-btn-color-primary:focus {
      color: #ffffff; }
  .cdb-btn.cdb-btn-color-alt,
  button.cdb-btn-color-alt,
  .button.cdb-btn-color-alt,
  [type="submit"].cdb-btn-color-alt,
  [type="button"].cdb-btn-color-alt,
  .wpcf7-submit.cdb-btn-color-alt {
    color: #ffffff; }
    .cdb-btn.cdb-btn-color-alt:hover, .cdb-btn.cdb-btn-color-alt:focus,
    button.cdb-btn-color-alt:hover,
    button.cdb-btn-color-alt:focus,
    .button.cdb-btn-color-alt:hover,
    .button.cdb-btn-color-alt:focus,
    [type="submit"].cdb-btn-color-alt:hover,
    [type="submit"].cdb-btn-color-alt:focus,
    [type="button"].cdb-btn-color-alt:hover,
    [type="button"].cdb-btn-color-alt:focus,
    .wpcf7-submit.cdb-btn-color-alt:hover,
    .wpcf7-submit.cdb-btn-color-alt:focus {
      color: #ffffff; }
      .cdb-btn.cdb-btn-color-alt:hover:hover, .cdb-btn.cdb-btn-color-alt:focus:hover,
      button.cdb-btn-color-alt:hover:hover,
      button.cdb-btn-color-alt:focus:hover,
      .button.cdb-btn-color-alt:hover:hover,
      .button.cdb-btn-color-alt:focus:hover,
      [type="submit"].cdb-btn-color-alt:hover:hover,
      [type="submit"].cdb-btn-color-alt:focus:hover,
      [type="button"].cdb-btn-color-alt:hover:hover,
      [type="button"].cdb-btn-color-alt:focus:hover,
      .wpcf7-submit.cdb-btn-color-alt:hover:hover,
      .wpcf7-submit.cdb-btn-color-alt:focus:hover {
        -webkit-box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
                box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1); }
  .cdb-btn.cdb-btn-color-black,
  button.cdb-btn-color-black,
  .button.cdb-btn-color-black,
  [type="submit"].cdb-btn-color-black,
  [type="button"].cdb-btn-color-black,
  .wpcf7-submit.cdb-btn-color-black {
    background-color: #262b44;
    color: #fff; }
  .cdb-btn.cdb-btn-color-white,
  button.cdb-btn-color-white,
  .button.cdb-btn-color-white,
  [type="submit"].cdb-btn-color-white,
  [type="button"].cdb-btn-color-white,
  .wpcf7-submit.cdb-btn-color-white {
    background-color: #fff;
    color: #262b44; }
    .cdb-btn.cdb-btn-color-white:hover, .cdb-btn.cdb-btn-color-white:focus,
    button.cdb-btn-color-white:hover,
    button.cdb-btn-color-white:focus,
    .button.cdb-btn-color-white:hover,
    .button.cdb-btn-color-white:focus,
    [type="submit"].cdb-btn-color-white:hover,
    [type="submit"].cdb-btn-color-white:focus,
    [type="button"].cdb-btn-color-white:hover,
    [type="button"].cdb-btn-color-white:focus,
    .wpcf7-submit.cdb-btn-color-white:hover,
    .wpcf7-submit.cdb-btn-color-white:focus {
      color: #262b44 !important;
      background-color: #fff !important;
      -webkit-box-shadow: none;
              box-shadow: none;
      opacity: 0.9; }
  .cdb-btn.cdb-btn-style-bordered,
  button.cdb-btn-style-bordered,
  .button.cdb-btn-style-bordered,
  [type="submit"].cdb-btn-style-bordered,
  [type="button"].cdb-btn-style-bordered,
  .wpcf7-submit.cdb-btn-style-bordered {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .cdb-btn.cdb-btn-style-link,
  button.cdb-btn-style-link,
  .button.cdb-btn-style-link,
  [type="submit"].cdb-btn-style-link,
  [type="button"].cdb-btn-style-link,
  .wpcf7-submit.cdb-btn-style-link {
    position: relative;
    padding: 0 0 4px;
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .cdb-btn.cdb-btn-style-link:after,
    button.cdb-btn-style-link:after,
    .button.cdb-btn-style-link:after,
    [type="submit"].cdb-btn-style-link:after,
    [type="button"].cdb-btn-style-link:after,
    .wpcf7-submit.cdb-btn-style-link:after {
      display: block;
      content: '';
      position: absolute;
      top: auto;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      z-index: 1;
      border-bottom: 1px solid currentColor;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      pointer-events: none;
      -webkit-transform-origin: left;
              transform-origin: left;
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9);
      transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9);
      transition: transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9);
      transition: transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9), -webkit-transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9); }
    .cdb-btn.cdb-btn-style-link:hover, .cdb-btn.cdb-btn-style-link:focus,
    button.cdb-btn-style-link:hover,
    button.cdb-btn-style-link:focus,
    .button.cdb-btn-style-link:hover,
    .button.cdb-btn-style-link:focus,
    [type="submit"].cdb-btn-style-link:hover,
    [type="submit"].cdb-btn-style-link:focus,
    [type="button"].cdb-btn-style-link:hover,
    [type="button"].cdb-btn-style-link:focus,
    .wpcf7-submit.cdb-btn-style-link:hover,
    .wpcf7-submit.cdb-btn-style-link:focus {
      background-color: transparent !important;
      -webkit-box-shadow: none;
              box-shadow: none;
      -webkit-transform: none;
              transform: none; }
      .cdb-btn.cdb-btn-style-link:hover:after, .cdb-btn.cdb-btn-style-link:focus:after,
      button.cdb-btn-style-link:hover:after,
      button.cdb-btn-style-link:focus:after,
      .button.cdb-btn-style-link:hover:after,
      .button.cdb-btn-style-link:focus:after,
      [type="submit"].cdb-btn-style-link:hover:after,
      [type="submit"].cdb-btn-style-link:focus:after,
      [type="button"].cdb-btn-style-link:hover:after,
      [type="button"].cdb-btn-style-link:focus:after,
      .wpcf7-submit.cdb-btn-style-link:hover:after,
      .wpcf7-submit.cdb-btn-style-link:focus:after {
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: right;
                transform-origin: right; }
  .cdb-btn.cdb-btn-style-round,
  button.cdb-btn-style-round,
  .button.cdb-btn-style-round,
  [type="submit"].cdb-btn-style-round,
  [type="button"].cdb-btn-style-round,
  .wpcf7-submit.cdb-btn-style-round {
    border-radius: 2.1875rem; }

body .cdb-btn.cdb-btn-style-default:hover,
body button.cdb-btn-style-default:hover,
body .button.cdb-btn-style-default:hover,
body [type="submit"].cdb-btn-style-default:hover,
body [type="button"].cdb-btn-style-default:hover {
  -webkit-box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1); }

body .cdb-btn.cdb-btn-style-bordered,
body button.cdb-btn-style-bordered,
body .button.cdb-btn-style-bordered,
body [type="submit"].cdb-btn-style-bordered,
body [type="button"].cdb-btn-style-bordered {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  -webkit-box-shadow: none;
          box-shadow: none; }

body .cdb-btn.cdb-btn-style-link,
body button.cdb-btn-style-link,
body .button.cdb-btn-style-link,
body [type="submit"].cdb-btn-style-link,
body [type="button"].cdb-btn-style-link {
  position: relative;
  padding: 0 0 4px;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none; }
  body .cdb-btn.cdb-btn-style-link:after,
  body button.cdb-btn-style-link:after,
  body .button.cdb-btn-style-link:after,
  body [type="submit"].cdb-btn-style-link:after,
  body [type="button"].cdb-btn-style-link:after {
    display: block;
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
    border-bottom: 1px solid currentColor;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    pointer-events: none;
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9);
    transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9);
    transition: transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9);
    transition: transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9), -webkit-transform 0.3s cubic-bezier(0.23, 0.06, 0.37, 0.9); }
  body .cdb-btn.cdb-btn-style-link:hover, body .cdb-btn.cdb-btn-style-link:focus,
  body button.cdb-btn-style-link:hover,
  body button.cdb-btn-style-link:focus,
  body .button.cdb-btn-style-link:hover,
  body .button.cdb-btn-style-link:focus,
  body [type="submit"].cdb-btn-style-link:hover,
  body [type="submit"].cdb-btn-style-link:focus,
  body [type="button"].cdb-btn-style-link:hover,
  body [type="button"].cdb-btn-style-link:focus {
    background-color: transparent !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
            transform: none; }
    body .cdb-btn.cdb-btn-style-link:hover:after, body .cdb-btn.cdb-btn-style-link:focus:after,
    body button.cdb-btn-style-link:hover:after,
    body button.cdb-btn-style-link:focus:after,
    body .button.cdb-btn-style-link:hover:after,
    body .button.cdb-btn-style-link:focus:after,
    body [type="submit"].cdb-btn-style-link:hover:after,
    body [type="submit"].cdb-btn-style-link:focus:after,
    body [type="button"].cdb-btn-style-link:hover:after,
    body [type="button"].cdb-btn-style-link:focus:after {
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: right;
              transform-origin: right; }

body .cdb-btn.cdb-btn-style-round,
body button.cdb-btn-style-round,
body .button.cdb-btn-style-round,
body [type="submit"].cdb-btn-style-round,
body [type="button"].cdb-btn-style-round {
  border-radius: 2.1875rem; }

.cdb-btn-size-extra-small {
  font-size: 0.625rem;
  line-height: 1rem;
  padding: 0.375rem 0.625rem; }

.cdb-btn-size-small {
  font-size: 0.6875rem;
  line-height: 1rem;
  padding: 0.75rem 0.875rem; }

.cdb-btn-size-default {
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 0.875rem 1.5625rem 0.75rem 1.5625rem; }

.cdb-btn-size-large {
  font-size: 16px;
  line-height: 1.25rem;
  padding: 15px 25px; }

.cdb-btn-size-extra-large {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 1.0625rem 2.5rem; }

.cdb-btn-style-bordered.cdb-btn-size-extra-small {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.25rem 0.5rem; }

.cdb-btn-style-bordered.cdb-btn-size-small {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.625rem 1rem; }

.cdb-btn-style-bordered.cdb-btn-size-default {
  line-height: 1.125rem;
  padding: 0.625rem 1.125rem; }

.cdb-btn-style-bordered.cdb-btn-size-large {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  padding: 13px 25px; }

.cdb-btn-style-bordered.cdb-btn-size-extra-large {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 0.9375rem 2.375rem; }

.cdb-btn-style-bordered.cdb-btn-color-default {
  color: #262b44;
  border-color: #e9e9e9; }
  .cdb-btn-style-bordered.cdb-btn-color-default:hover, .cdb-btn-style-bordered.cdb-btn-color-default:focus {
    color: #fff;
    background-color: #262b44;
    border-color: #262b44; }

.cdb-btn-style-bordered.cdb-btn-color-primary:hover, .cdb-btn-style-bordered.cdb-btn-color-primary:focus {
  color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none; }

.cdb-btn-style-bordered.cdb-btn-color-alt:hover, .cdb-btn-style-bordered.cdb-btn-color-alt:focus {
  color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none; }

.cdb-btn-style-bordered.cdb-btn-color-black {
  border-color: #262b44;
  color: #262b44; }
  .cdb-btn-style-bordered.cdb-btn-color-black:hover, .cdb-btn-style-bordered.cdb-btn-color-black:focus {
    background-color: #262b44;
    border-color: #262b44;
    color: white;
    -webkit-box-shadow: none;
            box-shadow: none; }

.cdb-btn-style-bordered.cdb-btn-color-white {
  border-color: rgba(255, 255, 255, 0.5);
  color: white; }
  .cdb-btn-style-bordered.cdb-btn-color-white:hover, .cdb-btn-style-bordered.cdb-btn-color-white:focus {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
    opacity: 1; }

.cdb-btn-style-link.cdb-btn-color-default {
  color: #262b44;
  border-color: #dfdfdf; }
  .cdb-btn-style-link.cdb-btn-color-default:hover, .cdb-btn-style-link.cdb-btn-color-default:focus {
    color: #262b44; }

.cdb-btn-style-link.cdb-btn-color-alt {
  color: #25b05f; }
  .cdb-btn-style-link.cdb-btn-color-alt:hover, .cdb-btn-style-link.cdb-btn-color-alt:focus {
    color: #25b05f; }

.cdb-btn-style-link.cdb-btn-color-black {
  color: #000; }
  .cdb-btn-style-link.cdb-btn-color-black:hover, .cdb-btn-style-link.cdb-btn-color-black:focus {
    color: #000;
    opacity: 0.6; }

.cdb-btn-style-link.cdb-btn-color-white {
  color: #fff; }
  .cdb-btn-style-link.cdb-btn-color-white:after {
    border-color: #fff !important; }
  .cdb-btn-style-link.cdb-btn-color-white:hover {
    color: #fff !important; }

.cdb-btn-full {
  display: block;
  width: 100%;
  text-align: center; }

/* Instagram Shortcode
   ========================================================================== */
.cdb-instagram-el {
  position: relative; }
  .cdb-instagram-el .instagram-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el .instagram-content {
        display: none; } }
  .cdb-instagram-el .instagram-content-inner {
    z-index: 5;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
    max-width: 300px;
    width: 100%;
    padding: 30px; }
    .cdb-instagram-el .instagram-content-inner :last-child {
      margin-bottom: 0; }
  .cdb-instagram-el .instagram-placeholder {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .cdb-instagram-el .instagram-placeholder:hover .instagram-hover {
      opacity: 1;
      visibility: visible; }
    .cdb-instagram-el .instagram-placeholder img,
    .cdb-instagram-el .instagram-placeholder > a {
      display: block;
      width: 100%; }
    .cdb-instagram-el .instagram-placeholder > a {
      position: relative;
      overflow: hidden;
      color: #fff; }
      .cdb-instagram-el .instagram-placeholder > a:hover {
        color: #fff; }
    .cdb-instagram-el .instagram-placeholder .instagram-hover {
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      text-align: center;
      background-color: rgba(18, 18, 18, 0.7);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity .3s, visibility .3s;
      transition: opacity .3s, visibility .3s;
      z-index: 3; }
      .cdb-instagram-el .instagram-placeholder .instagram-hover > span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        cursor: pointer;
        padding: 4px 10px;
        -webkit-transition: color 0.25s;
        transition: color 0.25s; }
        .cdb-instagram-el .instagram-placeholder .instagram-hover > span i {
          margin-right: 6px; }
        .cdb-instagram-el .instagram-placeholder .instagram-hover > span:hover {
          color: rgba(255, 255, 255, 0.7); }
  .cdb-instagram-el.has-no-hover .instagram-placeholder a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 29, 0.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s; }
  .cdb-instagram-el.has-no-hover .instagram-placeholder:hover a:after {
    opacity: 1;
    visibility: visible; }
  .cdb-instagram-el .grid-layout {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .cdb-instagram-el.cdb-no-col-gap {
    margin: 0; }
    .cdb-instagram-el.cdb-no-col-gap .grid-layout {
      margin: 0; }
      .cdb-instagram-el.cdb-no-col-gap .grid-layout .instagram-placeholder {
        padding: 0 0px;
        margin: 0 0 0px; }
  .cdb-instagram-el.cdb-tiny-col-gap {
    margin: 0 0 -4px; }
    .cdb-instagram-el.cdb-tiny-col-gap .grid-layout {
      margin: 0 -2px; }
      .cdb-instagram-el.cdb-tiny-col-gap .grid-layout .instagram-placeholder {
        padding: 0 2px;
        margin: 0 0 4px; }
  .cdb-instagram-el.cdb-small-col-gap {
    margin: 0 0 -10px; }
    .cdb-instagram-el.cdb-small-col-gap .grid-layout {
      margin: 0 -5px; }
      .cdb-instagram-el.cdb-small-col-gap .grid-layout .instagram-placeholder {
        padding: 0 5px;
        margin: 0 0 10px; }
  .cdb-instagram-el.cdb-normal-col-gap {
    margin: 0 0 -20px; }
    .cdb-instagram-el.cdb-normal-col-gap .grid-layout {
      margin: 0 -10px; }
      .cdb-instagram-el.cdb-normal-col-gap .grid-layout .instagram-placeholder {
        padding: 0 10px;
        margin: 0 0 20px; }
  .cdb-instagram-el.cdb-medium-col-gap {
    margin: 0 0 -40px; }
    .cdb-instagram-el.cdb-medium-col-gap .grid-layout {
      margin: 0 -20px; }
      .cdb-instagram-el.cdb-medium-col-gap .grid-layout .instagram-placeholder {
        padding: 0 20px;
        margin: 0 0 40px; }
  .cdb-instagram-el.cdb-large-col-gap {
    margin: 0 0 -50px; }
    .cdb-instagram-el.cdb-large-col-gap .grid-layout {
      margin: 0 -25px; }
      .cdb-instagram-el.cdb-large-col-gap .grid-layout .instagram-placeholder {
        padding: 0 25px;
        margin: 0 0 50px; }
  .cdb-instagram-el.cdb-huge-col-gap {
    margin: 0 0 -60px; }
    .cdb-instagram-el.cdb-huge-col-gap .grid-layout {
      margin: 0 -30px; }
      .cdb-instagram-el.cdb-huge-col-gap .grid-layout .instagram-placeholder {
        padding: 0 30px;
        margin: 0 0 60px; }
  .cdb-instagram-el.cdb-one-cols .grid-layout .instagram-placeholder {
    width: 100%; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el.cdb-one-cols .grid-layout .instagram-placeholder {
        width: 33.33333%; } }
    @media (max-width: 767.98px) {
      .cdb-instagram-el.cdb-one-cols .grid-layout .instagram-placeholder {
        width: 50%; } }
  .cdb-instagram-el.cdb-two-cols .grid-layout .instagram-placeholder {
    width: 50%; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el.cdb-two-cols .grid-layout .instagram-placeholder {
        width: 33.33333%; } }
    @media (max-width: 767.98px) {
      .cdb-instagram-el.cdb-two-cols .grid-layout .instagram-placeholder {
        width: 50%; } }
  .cdb-instagram-el.cdb-three-cols .grid-layout .instagram-placeholder {
    width: 33.33333%; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el.cdb-three-cols .grid-layout .instagram-placeholder {
        width: 33.33333%; } }
    @media (max-width: 767.98px) {
      .cdb-instagram-el.cdb-three-cols .grid-layout .instagram-placeholder {
        width: 50%; } }
  .cdb-instagram-el.cdb-four-cols .grid-layout .instagram-placeholder {
    width: 25%; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el.cdb-four-cols .grid-layout .instagram-placeholder {
        width: 33.33333%; } }
    @media (max-width: 767.98px) {
      .cdb-instagram-el.cdb-four-cols .grid-layout .instagram-placeholder {
        width: 50%; } }
  .cdb-instagram-el.cdb-five-cols .grid-layout .instagram-placeholder {
    width: 20%; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el.cdb-five-cols .grid-layout .instagram-placeholder {
        width: 33.33333%; } }
    @media (max-width: 767.98px) {
      .cdb-instagram-el.cdb-five-cols .grid-layout .instagram-placeholder {
        width: 50%; } }
  .cdb-instagram-el.cdb-six-cols .grid-layout .instagram-placeholder {
    width: 16.66667%; }
    @media (max-width: 991.98px) {
      .cdb-instagram-el.cdb-six-cols .grid-layout .instagram-placeholder {
        width: 33.33333%; } }
    @media (max-width: 767.98px) {
      .cdb-instagram-el.cdb-six-cols .grid-layout .instagram-placeholder {
        width: 50%; } }

/* Icon Box
   ========================================================================== */
.cdb-icon-box {
  position: relative;
  display: block;
  border-radius: 4px; }
  .cdb-icon-box .read-more {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-weight: 500;
    margin-top: 20px; }
    .cdb-icon-box .read-more:hover {
      color: currentColor; }
  .cdb-icon-box .icon-box-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .cdb-icon-box .icon-box-font-icon {
    font-size: 42px;
    line-height: 1;
    padding-bottom: 20px; }
  .cdb-icon-box .icon-box-img {
    padding-bottom: 20px; }
  .cdb-icon-box .icon-svg-wrapper svg {
    width: 100%;
    height: 100%; }
  .cdb-icon-box .icon-box-title.small-title {
    font-size: 15px;
    margin-bottom: 15px; }
  .cdb-icon-box .icon-box-title.large-title {
    font-size: 18px; }
  .cdb-icon-box p:last-of-type {
    margin-bottom: 0; }
  .cdb-icon-box.icon-box-wrapped .icon-box-inner {
    padding: 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .cdb-icon-box.icon-place-left .icon-box-img {
    margin-right: 25px; }
  .cdb-icon-box.icon-place-left .icon-box-font-icon {
    margin-right: 25px; }
  .cdb-icon-box.icon-place-left .small-title {
    margin-bottom: 20px; }
  .cdb-icon-box.icon-place-left .icon-box-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .cdb-icon-box.icon-place-top .icon-box-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .cdb-icon-box.content-align-right {
    text-align: right; }
    .cdb-icon-box.content-align-right .icon-box-img {
      margin-left: auto; }
  .cdb-icon-box.content-align-center {
    text-align: center; }
    .cdb-icon-box.content-align-center .icon-box-img {
      margin-left: auto;
      margin-right: auto; }
    .cdb-icon-box.content-align-center .icon-box-font-icon,
    .cdb-icon-box.content-align-center .icon-box-img {
      padding-top: 10px;
      padding-bottom: 30px; }
  .cdb-icon-box.has-hover {
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease; }
    .cdb-icon-box.has-hover:hover {
      -webkit-transform: translateY(-3px);
              transform: translateY(-3px);
      -webkit-box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.15);
              box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.15); }

/* List Shortcode
   ========================================================================== */
.cdb-list ul {
  list-style: none; }
  .cdb-list ul li {
    line-height: 1.2; }

.cdb-list.horizontal-list ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .cdb-list.horizontal-list ul li + li {
    margin-left: 30px; }
  @media (max-width: 767.98px) {
    .cdb-list.horizontal-list ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .cdb-list.horizontal-list ul li + li {
        margin-left: 0; } }

.cdb-list.list-size-default li {
  font-size: 16px;
  margin-bottom: 15px; }

.cdb-list.list-size-large li {
  font-size: 20px;
  margin-bottom: 26px; }

.cdb-list.list-size-large.list-type-unordered li {
  padding-left: 25px; }
  .cdb-list.list-size-large.list-type-unordered li:before {
    width: 6px;
    height: 6px; }

.cdb-list.list-type-icon li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .cdb-list.list-type-icon li .list-icon {
    margin-right: 10px; }

.cdb-list.list-type-ordered ul {
  counter-reset: list_item; }

.cdb-list.list-type-ordered li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }
  .cdb-list.list-type-ordered li:before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    content: counter(list_item);
    counter-increment: list_item;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px; }

.cdb-list.list-type-unordered li {
  position: relative;
  display: block;
  padding-left: 20px; }
  .cdb-list.list-type-unordered li:before {
    position: absolute;
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    margin-right: 10px; }

/* Extended Tabs
   ========================================================================== */
.ui-state-active, .ui-state-hover, .ui-state-focus {
  background: none;
  border: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 0; }

.cdb-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .cdb-tabs.cdb-tab-pos-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .cdb-tabs.cdb-tab-title-right .cdb-tab-menu {
    text-align: right; }
  .cdb-tabs.cdb-tab-title-center .cdb-tab-menu {
    text-align: center; }
  .cdb-tabs.cdb-tab-title-left .cdb-tab-menu {
    text-align: left; }

.cdb-extended-tabs .cdb-tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1); }
  @media (max-width: 767.98px) {
    .cdb-extended-tabs .cdb-tab-menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .cdb-extended-tabs .cdb-tab-menu li {
    width: 100%;
    text-align: center; }
  .cdb-extended-tabs .cdb-tab-menu .cdb-tab-menu-link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 38px 0;
    border-top: 2px solid transparent;
    -webkit-transition: border-color .2s ease, color .2s ease;
    transition: border-color .2s ease, color .2s ease;
    color: #a6a6a6; }

.cdb-extended-tabs.cdb-tab-pos-bottom .cdb-tab-menu {
  -webkit-transform: translate(0, 48px);
          transform: translate(0, 48px); }

.cdb-extended-tabs.cdb-tab-pos-top .cdb-tab-menu {
  -webkit-transform: translate(0, -48px);
          transform: translate(0, -48px); }

.cdb-simple-tabs .cdb-tab-menu {
  display: block; }
  .cdb-simple-tabs .cdb-tab-menu li {
    display: inline-block; }
    .color-scheme-light .cdb-simple-tabs .cdb-tab-menu li.ui-state-active a {
      border-color: #fff; }
    .cdb-simple-tabs .cdb-tab-menu li a {
      display: inline-block;
      margin-left: 15px;
      margin-right: 15px;
      border-bottom: 2px solid transparent;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 500;
      padding-bottom: 7px;
      -webkit-transition: none;
      transition: none; }

.cdb-simple-tabs.cdb-tab-title-right .cdb-tab-menu li:last-child a {
  margin-right: 0; }

.cdb-simple-tabs.cdb-tab-title-left .cdb-tab-menu li:first-child a {
  margin-left: 0; }

.cdb-simple-tabs.color-scheme-light .cdb-tab-menu li.ui-state-active a {
  border-color: #fff; }

.cdb-simple-tabs.color-scheme-light .cdb-tab-menu li a {
  color: #fff; }

.cdb-standard-tabs.cdb-tab-pos-bottom .cdb-tab-menu {
  margin-top: 30px; }

.cdb-standard-tabs.cdb-tab-pos-top .cdb-tab-menu {
  margin-bottom: 30px; }

.cdb-standard-tabs .cdb-tab-menu {
  display: block;
  font-size: 0; }
  .cdb-standard-tabs .cdb-tab-menu li {
    display: inline-block; }
    .cdb-standard-tabs .cdb-tab-menu li:first-child a {
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .cdb-standard-tabs .cdb-tab-menu li:last-child a {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; }
    .cdb-standard-tabs .cdb-tab-menu li a {
      color: #a6a6a6;
      display: inline-block;
      padding: 20px 22px 21px 22px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-left-color: transparent;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 500;
      -webkit-transition: all .25s ease;
      transition: all .25s ease; }

.cdb-standard-tabs.color-scheme-light .cdb-tab-menu li:first-child a {
  border-left-color: rgba(255, 255, 255, 0.2); }

.cdb-standard-tabs.color-scheme-light .cdb-tab-menu li a {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: transparent;
  color: rgba(255, 255, 255, 0.7); }
  .cdb-standard-tabs.color-scheme-light .cdb-tab-menu li a:hover {
    color: #fff; }

.cdb-standard-tabs.color-scheme-light .cdb-tab-menu li.ui-state-active a {
  color: #fff;
  border-color: #fff; }

/* Video Modal
   ========================================================================== */
.cdb-video-modal.style1 {
  position: relative;
  min-height: 100px; }
  .cdb-video-modal.style1 img {
    display: block;
    margin: auto; }
  .cdb-video-modal.style1 .play-button {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    line-height: 1; }
    .cdb-video-modal.style1 .play-button .play-icon {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 50%;
      width: 78px;
      height: 78px;
      background-color: #262b44;
      color: #fff;
      z-index: 10;
      -webkit-transition: -webkit-transform 0.8s ease;
      transition: -webkit-transform 0.8s ease;
      transition: transform 0.8s ease;
      transition: transform 0.8s ease, -webkit-transform 0.8s ease; }
      .cdb-video-modal.style1 .play-button .play-icon i {
        font-size: 40px; }
      .cdb-video-modal.style1 .play-button .play-icon:before {
        display: block;
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #262b44;
        border-radius: 50%;
        z-index: 4;
        -webkit-transition: all 0.8s ease;
        transition: all 0.8s ease; }
    .cdb-video-modal.style1 .play-button:hover .play-icon {
      -webkit-transform: scale(0.85);
              transform: scale(0.85); }
      .cdb-video-modal.style1 .play-button:hover .play-icon:before {
        opacity: 0;
        -webkit-transform: scale(1.3);
                transform: scale(1.3); }
  .cdb-video-modal.style1.light-skin .play-icon {
    background-color: #fff;
    color: #262b44; }
    .cdb-video-modal.style1.light-skin .play-icon:before {
      border-color: #fff; }
  .cdb-video-modal.style1.primary-skin .play-icon {
    color: #fff; }

.cdb-video-modal.style2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }

.img-round-0 > img {
  border-radius: 0px; }

.img-round-3 > img {
  border-radius: 3px; }

.img-round-5 > img {
  border-radius: 5px; }

.img-round-10 > img {
  border-radius: 10px; }

.img-round-15 > img {
  border-radius: 15px; }

.img-round-20 > img {
  border-radius: 20px; }

.cdb-play-btn .play-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1; }
  .cdb-play-btn .play-button:hover .play-icon {
    color: #fff;
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  .cdb-play-btn .play-button:hover .play-text {
    border-color: #262b44; }

.cdb-play-btn .play-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid #262b44;
  -webkit-transition: background-color .4s ease, -webkit-transform .6s ease;
  transition: background-color .4s ease, -webkit-transform .6s ease;
  transition: background-color .4s ease, transform .6s ease;
  transition: background-color .4s ease, transform .6s ease, -webkit-transform .6s ease; }
  .cdb-play-btn .play-icon:after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #262b44;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-animation: 1s cdbPulse linear infinite;
            animation: 1s cdbPulse linear infinite; }

.cdb-play-btn .play-text {
  font-size: 16px;
  font-weight: 600;
  padding: 3px 0;
  margin-left: 15px;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease; }

.cdb-play-btn.primary-skin .play-button:hover .play-icon i {
  color: #fff; }

.cdb-play-btn.light-skin .play-button {
  color: #fff; }
  .cdb-play-btn.light-skin .play-button:hover .play-icon {
    background-color: #fff;
    color: #262b44; }
  .cdb-play-btn.light-skin .play-button:hover .play-text {
    border-color: #fff; }

.cdb-play-btn.light-skin .play-icon {
  border-color: #fff; }
  .cdb-play-btn.light-skin .play-icon:after {
    border-color: #fff; }

@-webkit-keyframes cdbPulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: .6; }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.3);
            transform: translate(-50%, -50%) scale(1.3);
    opacity: 0; } }

@keyframes cdbPulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: .6; }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.3);
            transform: translate(-50%, -50%) scale(1.3);
    opacity: 0; } }

/* Counter
   ========================================================================== */
.cdb-counter .cdb-counter-title {
  margin: 10px 0;
  font-size: 18px; }

.cdb-counter .cdb-counter-icon {
  line-height: 1; }

.cdb-counter.icon-pos-top .cdb-counter-icon {
  margin-bottom: 15px; }

.cdb-counter.icon-pos-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .cdb-counter.icon-pos-left .cdb-counter-icon {
    margin-right: 25px; }

.cdb-counter.cdb-default-counter .cdb-counter-icon {
  font-size: 42px; }

.cdb-counter.cdb-default-counter .cdb-count-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  font-size: 38px;
  margin-bottom: 0; }

.cdb-counter.cdb-default-counter .cdb-counter-prefix {
  line-height: 1; }

.cdb-counter.cdb-default-counter .cdb-counter-title {
  color: #6e6e6e;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px; }

.cdb-counter.cdb-large-counter .cdb-counter-icon {
  font-size: 45px; }

.cdb-counter.cdb-large-counter .cdb-count-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: normal;
  margin-bottom: 0;
  line-height: 1;
  font-size: 64px;
  letter-spacing: -0.15625rem; }

/* Section Title
   ========================================================================== */
.cdb-section-heading .cdb-section-title {
  font-size: 38px;
  margin-bottom: 12px; }

.cdb-section-heading .section-title-desc {
  font-size: 17px; }

.cdb-section-heading .cdb-subtitle {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09375rem; }

/* Progress Bar
   ========================================================================== */
.cdb-progress-bar {
  position: relative;
  margin: 0 0 30px; }
  .cdb-progress-bar .pb-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    margin-bottom: 10px; }
  .cdb-progress-bar .pb-title {
    font-size: 16px; }
  .cdb-progress-bar .pb-title,
  .cdb-progress-bar .pb-percentage {
    color: currentColor;
    font-weight: 600;
    margin: 0; }
  .cdb-progress-bar .pb-line {
    width: 100%;
    height: 5px;
    position: relative;
    background-clip: padding-box;
    background-color: rgba(190, 190, 190, 0.2);
    border-radius: 2px;
    margin-bottom: 15px; }
  .cdb-progress-bar .pb-line-filled {
    width: 1%;
    height: 5px;
    font-size: 0;
    text-align: right;
    background-clip: padding-box;
    border-radius: 2px;
    overflow: visible !important;
    background-color: currentColor; }
  .cdb-progress-bar.pb-style-thin .pb-line,
  .cdb-progress-bar.pb-style-thin .pb-line-filled {
    height: 2px; }
  .cdb-progress-bar.pb-style-thick .pb-line,
  .cdb-progress-bar.pb-style-thick .pb-line-filled {
    height: 12px; }

/* Pricing Table
   ========================================================================== */
.cdb-pricing-table {
  position: relative;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 50px 40px; }
  .cdb-pricing-table.is-highlighted {
    z-index: 2;
    -webkit-box-shadow: 0 0 20px 1px rgba(60, 60, 60, 0.08);
            box-shadow: 0 0 20px 1px rgba(60, 60, 60, 0.08); }
  .cdb-pricing-table .pricing-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 24px; }
  .cdb-pricing-table .pricing-title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px; }
  .cdb-pricing-table .pricing-period {
    color: #a6a6a6;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0; }
  .cdb-pricing-table .pricing-value {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 48px;
    letter-spacing: -0.0625rem;
    line-height: 1;
    margin: 8px 0 12px; }
    .cdb-pricing-table .pricing-value .currency {
      margin: 0 6px; }
  .cdb-pricing-table .pricing-features {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 17px;
    margin-top: 30px;
    padding-top: 30px; }
    .cdb-pricing-table .pricing-features li {
      padding: 7px 0;
      text-align: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .cdb-pricing-table .pricing-features li i {
        font-size: 20px;
        color: #8cbd7b; }
      .cdb-pricing-table .pricing-features li.disabled i {
        color: #f75f5f; }
  .cdb-pricing-table .pricing-button {
    margin-top: 30px; }

/* Testimonials Carousel
   ========================================================================== */
.cdb-testimonials-carousel {
  margin-left: -10px;
  margin-right: -10px; }
  .cdb-testimonials-carousel .owl-item {
    padding-left: 10px;
    padding-right: 10px; }

.testimonial-style-carousel {
  background-color: #fff;
  padding: 40px 50px;
  margin: 10px 0 20px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s ease;
  transition: opacity 0.2s, -webkit-transform 0.3s ease;
  transition: opacity 0.2s, transform 0.3s ease;
  transition: opacity 0.2s, transform 0.3s ease, -webkit-transform 0.3s ease; }
  .testimonial-style-carousel .star-rating {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: 18px;
    line-height: 18px;
    letter-spacing: 6px;
    width: 110px; }
    .testimonial-style-carousel .star-rating span {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      font-size: 0;
      overflow: hidden; }
      .testimonial-style-carousel .star-rating span strong,
      .testimonial-style-carousel .star-rating span span {
        display: none; }
      .testimonial-style-carousel .star-rating span:before {
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
        content: "\f005\f005\f005\f005\f005";
        position: absolute;
        top: 0;
        left: 0;
        font-size: 13px; }
    .light .testimonial-style-carousel .star-rating:before {
      color: #fff; }
  .testimonial-style-carousel .testimonial-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px; }
    .testimonial-style-carousel .testimonial-info .testimonial-image {
      width: 40px;
      height: 40px;
      overflow: hidden;
      border-radius: 50%;
      margin-right: 15px; }
    .testimonial-style-carousel .testimonial-info .testimonial-author {
      font-size: 15px;
      margin-bottom: 0; }
      .testimonial-style-carousel .testimonial-info .testimonial-author .author-name {
        font-weight: 500; }
      .testimonial-style-carousel .testimonial-info .testimonial-author cite {
        font-size: 12px;
        margin-top: 5px; }

/* Team Member
   ========================================================================== */
.cdb-team-member .cdb-team-image {
  position: relative;
  display: block;
  overflow: hidden; }
  .cdb-team-member .cdb-team-image img {
    min-width: 100%;
    width: 100%;
    display: block; }

.cdb-team-member .social-icons .social-icon-item {
  width: 36px;
  height: 36px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.35s;
  transition: all 0.35s; }
  .cdb-team-member .social-icons .social-icon-item:hover {
    background-color: rgba(255, 255, 255, 0.6); }

.cdb-team-minimal {
  position: relative;
  padding: 0 10px;
  margin-bottom: 30px; }
  .cdb-team-minimal .cdb-team-image {
    position: relative; }
  .cdb-team-minimal .social-icons {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px; }
    .cdb-team-minimal .social-icons .social-icon-item {
      opacity: 0;
      -webkit-transform: translateY(10px);
              transform: translateY(10px); }
  .cdb-team-minimal:hover .social-icons .social-icon-item {
    opacity: 1;
    -webkit-transform: none;
            transform: none; }
    .cdb-team-minimal:hover .social-icons .social-icon-item:nth-child(2) {
      -webkit-transition-delay: 100ms;
              transition-delay: 100ms; }
    .cdb-team-minimal:hover .social-icons .social-icon-item:nth-child(3) {
      -webkit-transition-delay: 150ms;
              transition-delay: 150ms; }
    .cdb-team-minimal:hover .social-icons .social-icon-item:nth-child(4) {
      -webkit-transition-delay: 200ms;
              transition-delay: 200ms; }
    .cdb-team-minimal:hover .social-icons .social-icon-item:nth-child(5) {
      -webkit-transition-delay: 250ms;
              transition-delay: 250ms; }
  .cdb-team-minimal .cdb-team-content {
    margin-top: 25px;
    text-align: center; }
    .cdb-team-minimal .cdb-team-content .team-name {
      font-size: 16px;
      margin-bottom: 0; }
    .cdb-team-minimal .cdb-team-content .team-role {
      font-size: 14px;
      margin-bottom: 20px; }

.cdb-team-classic .cdb-team-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 767.98px) {
    .cdb-team-classic .cdb-team-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .cdb-team-classic .cdb-team-inner .cdb-team-info {
        text-align: center; } }

.cdb-team-classic .cdb-team-image {
  display: inline-block;
  min-width: 110px;
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 25px; }
  @media (max-width: 767.98px) {
    .cdb-team-classic .cdb-team-image {
      margin-right: 0;
      margin-bottom: 20px; } }

.cdb-team-classic .cdb-team-info .team-name {
  margin-bottom: 10px; }

.cdb-team-classic .cdb-team-info .team-position {
  font-size: 14px;
  color: #a6a6a6; }

.cdb-team-classic .cdb-team-info p {
  font-size: 14px; }
  .cdb-team-classic .cdb-team-info p:last-child {
    margin-bottom: 0; }

/* Clients
   ========================================================================== */
.cdb-clients-carousel {
  overflow: hidden; }
  .cdb-clients-carousel .cdb-client-item {
    padding-left: 15px;
    padding-right: 15px; }
    .cdb-clients-carousel .cdb-client-item img {
      display: inline-block;
      width: auto;
      opacity: 0.2;
      -webkit-transition: opacity 0.2s;
      transition: opacity 0.2s; }

.cdb-client-item {
  position: relative;
  text-align: center; }
  .cdb-client-item img {
    display: inline-block;
    width: auto;
    opacity: 0.2;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s; }
  .cdb-client-item:hover img {
    opacity: 1; }

.tooltip-inner {
  max-width: 18.4375rem;
  padding: 6px;
  color: #fff;
  font-size: 0.8125rem;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 52px rgba(16, 21, 23, 0.12);
          box-shadow: 0 0 52px rgba(16, 21, 23, 0.12); }

.bs-tooltip-bottom {
  top: 20px !important; }
  .bs-tooltip-bottom .arrow {
    left: 50%;
    margin-left: -.4rem; }

/* Blog List Shortcode
   ========================================================================== */
.cdb-blog-post .post-image img {
  max-width: 100%;
  display: block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.cdb-blog-post .post-content {
  word-break: break-word; }

.cdb-blog-post.style-list .cdb-post-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: #fff;
  -webkit-box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px; }
  .cdb-blog-post.style-list .cdb-post-inner .post-image,
  .cdb-blog-post.style-list .cdb-post-inner .post-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .cdb-blog-post.style-list .cdb-post-inner .post-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 7%; }
  .cdb-blog-post.style-list .cdb-post-inner .post-category {
    margin-top: 40px; }
    .cdb-blog-post.style-list .cdb-post-inner .post-category a {
      display: inline-block;
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 8px 10px;
      line-height: 1.2;
      font-size: 12px;
      text-transform: lowercase;
      letter-spacing: 1px;
      color: #a6a6a6; }
  .cdb-blog-post.style-list .cdb-post-inner .post-title {
    font-size: 1.0625rem;
    line-height: 1.6;
    display: block;
    margin-bottom: 0; }
    .cdb-blog-post.style-list .cdb-post-inner .post-title:before {
      content: '';
      display: block;
      width: 30px;
      height: 3px;
      margin-bottom: 30px; }
  .cdb-blog-post.style-list .cdb-post-inner .post-date {
    display: inline-block;
    padding-top: 20px;
    font-size: 0.875rem;
    color: #a6a6a6; }
    .cdb-blog-post.style-list .cdb-post-inner .post-date i {
      margin-right: 8px; }
  @media (max-width: 991.98px) {
    .cdb-blog-post.style-list .cdb-post-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .cdb-blog-post.style-list .cdb-post-inner .post-content {
        padding: 20px; }
      .cdb-blog-post.style-list .cdb-post-inner .post-image,
      .cdb-blog-post.style-list .cdb-post-inner .post-content {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }

.cdb-blog-post.style-classic.sticky .post-title a {
  border-bottom: 1px solid currentColor;
  display: inline-block; }
  .cdb-blog-post.style-classic.sticky .post-title a:hover {
    border-bottom-color: transparent; }

.cdb-blog-post.style-classic .cdb-post-inner {
  margin-bottom: 50px; }

.cdb-blog-post.style-classic.has-thumb .cdb-post-inner {
  margin-bottom: 35px; }

.cdb-blog-post.style-classic .post-category a {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
  line-height: 1.2;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a6a6a6; }

.cdb-blog-post.style-classic .post-title {
  font-size: 1.875rem;
  margin-bottom: 15px; }

.cdb-blog-post.style-classic .post-info {
  margin-bottom: 15px; }
  .cdb-blog-post.style-classic .post-info span:not(.post-category) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    color: #a6a6a6; }
    .cdb-blog-post.style-classic .post-info span:not(.post-category) i {
      margin-right: 10px; }
    .cdb-blog-post.style-classic .post-info span:not(.post-category):after {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 10px;
      background-color: #ddd;
      display: inline-block;
      margin-left: 10px; }
    .cdb-blog-post.style-classic .post-info span:not(.post-category):last-of-type:after {
      display: none; }

.cdb-blog-post.style-classic .read-more {
  margin-top: 20px; }

@media (min-width: 768px) {
  .cdb-blog-post.style-classic.has-thumb .post-content {
    position: relative;
    max-width: 88%;
    margin: -10% auto 0;
    padding: 30px 45px 20px;
    background-color: #fff;
    z-index: 2; } }

.cdb-blog-post.style-masonry .cdb-post-inner {
  margin-bottom: 40px; }

.cdb-blog-post.style-masonry.sticky .post-title a {
  border-bottom: 1px solid currentColor;
  display: inline-block; }
  .cdb-blog-post.style-masonry.sticky .post-title a:hover {
    border-bottom-color: transparent; }

.cdb-blog-post.style-masonry .post-image {
  position: relative; }
  .cdb-blog-post.style-masonry .post-image img {
    width: 100%; }
  .cdb-blog-post.style-masonry .post-image:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 50%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#262b44), to(rgba(38, 43, 68, 0)));
    background-image: linear-gradient(to top, #262b44, rgba(38, 43, 68, 0)); }
  .cdb-blog-post.style-masonry .post-image .post-category {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 5; }
    .cdb-blog-post.style-masonry .post-image .post-category a {
      display: inline-block;
      border: 1px solid #fff;
      padding: 8px 10px;
      line-height: 1.2;
      font-size: 12px;
      text-transform: lowercase;
      letter-spacing: 1px;
      color: #fff; }
      .cdb-blog-post.style-masonry .post-image .post-category a:hover {
        opacity: .7; }

.cdb-blog-post.style-masonry .post-content {
  background-color: #fff;
  padding: 40px;
  -webkit-box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05); }
  .cdb-blog-post.style-masonry .post-content .post-excerpt p:last-child {
    margin-bottom: 0; }
  .cdb-blog-post.style-masonry .post-content .read-more {
    margin-top: 25px; }

.cdb-blog-post.style-masonry .post-info {
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: #a6a6a6;
  margin-left: -1px; }
  .cdb-blog-post.style-masonry .post-info span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cdb-blog-post.style-masonry .post-info span + span {
      margin-left: 10px; }
    .cdb-blog-post.style-masonry .post-info span i {
      vertical-align: middle;
      margin-right: 5px; }
  .cdb-blog-post.style-masonry .post-info a {
    color: currentColor; }
    .cdb-blog-post.style-masonry .post-info a:hover {
      color: #262b44; }

.cdb-blog-post.style-masonry .post-title {
  font-size: 1.375rem;
  margin-bottom: 20px; }

.cdb-divider-sector {
  margin-left: -15px;
  margin-right: -15px; }
  .cdb-divider-sector.overlay-on {
    position: relative; }
    .cdb-divider-sector.overlay-on svg {
      position: absolute;
      left: 0;
      right: 0; }
    .cdb-divider-sector.overlay-on.cdb-divider-top svg {
      top: 0; }
    .cdb-divider-sector.overlay-on.cdb-divider-bottom svg {
      bottom: 0; }

/* Google Map shortcode style
   ========================================================================== */
.cdb-google-map {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle; }
  .cdb-google-map .google-map-inner {
    display: block;
    width: 100%;
    height: 300px; }
    .cdb-google-map .google-map-inner iframe,
    .cdb-google-map .google-map-inner object,
    .cdb-google-map .google-map-inner embed {
      width: 100%;
      display: block; }
    .cdb-google-map .google-map-inner img {
      max-width: none; }
  .cdb-google-map .predefined-map-style {
    display: none; }
  .cdb-google-map .disable-map-scrollwheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000; }

/* Icon Inline ShortCode
   ========================================================================== */
.cdb-icon-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .cdb-icon-list-item .cdb-list-icon-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    position: relative; }
    @media (max-width: 767.98px) {
      .cdb-icon-list-item .cdb-list-icon-wrap {
        margin-bottom: 20px; } }
  .cdb-icon-list-item .cdb-list-icon-content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .cdb-icon-list-item .cdb-list-icon-content .cdb-list-icon-title {
      margin-bottom: 0; }
      .cdb-icon-list-item .cdb-list-icon-content .cdb-list-icon-title:not(:only-child) {
        margin-right: 15px; }
    .cdb-icon-list-item .cdb-list-icon-content .cdb-list-icon-subtitle {
      display: inline-block; }

/* Contact Info
   ========================================================================== */
.cdb-contact-info .contact-info-inner {
  position: relative;
  padding: 25px 37px 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .cdb-contact-info .contact-info-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: -1;
    right: -1px;
    width: 102%;
    height: 2px;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
  .cdb-contact-info .contact-info-inner:hover {
    -webkit-box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 42px 4px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
    .cdb-contact-info .contact-info-inner:hover:before {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: left;
              transform-origin: left; }
    .cdb-contact-info .contact-info-inner:hover .contact-info-content,
    .cdb-contact-info .contact-info-inner:hover .cdb-contact-icon {
      -webkit-transform: translate3d(0, -67px, 0);
              transform: translate3d(0, -67px, 0); }
    .cdb-contact-info .contact-info-inner:hover .cdb-contact-icon {
      opacity: 0; }
    .cdb-contact-info .contact-info-inner:hover .contact-info-content p {
      opacity: 1; }

.cdb-contact-info .cdb-contact-icon {
  font-size: 40px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.cdb-contact-info .contact-info-content {
  display: inline-block;
  vertical-align: bottom;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
  .cdb-contact-info .contact-info-content .contact-info-title {
    font-size: 1.125rem; }
  .cdb-contact-info .contact-info-content p {
    margin-bottom: -40px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }

body {
  font-family: "Rubik", Arial, Helvetica, sans-serif; }

.wp-block-search__button, .cdb-btn,
button,
.button,
[type="submit"],
[type="button"],
.wpcf7-submit, .cdb-icon-box .read-more, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, .h6, h6,
.heading-font {
  font-family: "Poppins", Arial, Helvetica, sans-serif; }

blockquote, mark, code,
kbd, .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li.is-open-sub > a, .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li.is-open-sub > .sub-menu-arrow, .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li.cdb-active-menu-item > a, .page-404 .error-title, .course-item-wrapper .course-item-over .item-over-bottom a:hover, .course-item-wrapper .course-item-over .item-over-bottom .course-price .price-off, .cdb-accordion.cdb-accordion-simple .accordion-item.is-open .accordion-title, .cdb-accordion.cdb-accordion-simple .accordion-item.is-open .accordion-title i, .cdb-accordion.cdb-accordion-simple .accordion-title:hover, .cdb-accordion.cdb-accordion-simple .accordion-title:hover i, .cdb-btn-style-bordered.cdb-btn-color-primary, .cdb-btn-style-link.cdb-btn-color-primary, .cdb-btn-style-link.cdb-btn-color-primary:hover, .cdb-btn-style-link.cdb-btn-color-primary:focus, .cdb-icon-box .icon-box-font-icon, .cdb-play-btn.primary-skin .play-icon i, .cdb-counter .cdb-counter-icon, .cdb-progress-bar, .cdb-pricing-table .pricing-value, .testimonial-style-carousel .star-rating span:before, .cdb-blog-post.style-list .cdb-post-inner .post-category a:hover, .cdb-blog-post.style-classic.sticky .post-title a, .cdb-blog-post.style-classic .post-category a:hover, .cdb-blog-post.style-classic .post-info span:not(.post-category) a:hover, .cdb-blog-post.style-masonry.sticky .post-title a, .cdb-contact-info .cdb-contact-icon {
  color: #25b05f; }

.cdb-main-menu > ul > li > a:after, .cdb-mobile-nav .mobile-menu-container .mobile-menu-list > li > a:before, .cdb-post-pagination ul li .page-numbers:hover, .cdb-post-pagination ul li .page-numbers.current, .wp-block-search__button, .course-item-wrapper .course-item-title:before, div.wpcf7 .wpcf7-form .ajax-loader, input.wpcf7-submit, .newsletter-email .wpcf7-submit, .cdb-accordion.cdb-accordion-boxed .accordion-item.is-open .accordion-title, .cdb-btn.cdb-btn-color-primary,
button.cdb-btn-color-primary,
.button.cdb-btn-color-primary,
.cdb-btn-color-primary[type="submit"],
.cdb-btn-color-primary[type="button"],
.wpcf7-submit.cdb-btn-color-primary, .cdb-btn-style-bordered.cdb-btn-color-primary:hover, .cdb-btn-style-bordered.cdb-btn-color-primary:focus, .cdb-list.list-type-ordered li:before, .cdb-video-modal.style1.primary-skin .play-icon, .cdb-play-btn.primary-skin .play-button:hover .play-icon, .cdb-blog-post.style-list .cdb-post-inner .post-title:before, .cdb-contact-info .contact-info-inner:before {
  background: #25b05f; }

blockquote, .page-404 .error-title, div.wpcf7 .wpcf7-form .ajax-loader, .cdb-accordion.cdb-accordion-simple .accordion-item.is-open .accordion-title i, .cdb-accordion.cdb-accordion-simple .accordion-title:hover i, .cdb-btn-style-bordered.cdb-btn-color-primary, .cdb-btn-style-bordered.cdb-btn-color-primary:hover, .cdb-btn-style-bordered.cdb-btn-color-primary:focus, .cdb-extended-tabs .cdb-tab-menu li.ui-state-active .cdb-tab-menu-link, .cdb-video-modal.style1.primary-skin .play-icon:before, .cdb-play-btn.primary-skin .play-icon, .cdb-play-btn.primary-skin .play-icon:after, .cdb-blog-post.style-list .cdb-post-inner .post-category a:hover, .cdb-blog-post.style-classic .post-category a:hover {
  border-color: #25b05f; }

.screen-reader-text:focus, .cdb-btn-style-bordered.cdb-btn-color-alt {
  color: #25b05f; }

.cdb-reading-indicator::-webkit-progress-value, .cdb-page-pagination > span.current .cdb-page-link, .tag-link:not(.cdb-blog-post):hover,
.tag-cloud-link:not(.cdb-blog-post):hover, .cdb-btn.cdb-btn-color-alt,
button.cdb-btn-color-alt,
.button.cdb-btn-color-alt,
.cdb-btn-color-alt[type="submit"],
.cdb-btn-color-alt[type="button"],
.wpcf7-submit.cdb-btn-color-alt, .cdb-btn-style-bordered.cdb-btn-color-alt:hover, .cdb-btn-style-bordered.cdb-btn-color-alt:focus, .cdb-list.list-type-unordered li:before {
  background: #25b05f; }

.tag-link:not(.cdb-blog-post):hover,
.tag-cloud-link:not(.cdb-blog-post):hover, .cdb-btn-style-bordered.cdb-btn-color-alt, .cdb-btn-style-bordered.cdb-btn-color-alt:hover, .cdb-btn-style-bordered.cdb-btn-color-alt:focus {
  border-color: #25b05f; }

a, h1 a:hover, .h1 a:hover, h2 a:hover, .h2 a:hover, h3 a:hover, .h3 a:hover, h4 a:hover, .h4 a:hover, h5 a:hover, .h5 a:hover, .h6 a:hover, h6 a:hover,
.heading-font a:hover, .cdb-main-menu .sub-menu > li a:hover, .cdb-mobile-nav .mobile-menu-container .copyright a:hover, .single-post-content .post-single-body .main-content a:not(.wp-block-button__link), .post-single-sidebar .cdb-post-share li a:hover, .commentlist .comment .reply a:hover, .site-footer .widgetized-footer-area a:not(.btn):not(.cdb-social-profile):hover, .site-footer .widgetized-footer-area.color-scheme-light a:not(.btn):not(.cdb-social-profile):hover, .site-footer .subfooter.color-scheme-light a:hover, .off-canvas-sidebar .close-off-canvas:hover, .cdb-sidebar-area .widget a:hover,
.wpb_widgetised_column .widget a:hover,
.post-single-sidebar .widget a:hover, .widget.widget_calendar .calendar_wrap table tbody a, .widget.codebean-recent-posts ul li a:hover .entry-title, .cdb-search-holder .cdb-search-close .close-search-button:hover {
  color: #25b05f; }

.grey, body, .site-footer .widgetized-footer-area a:not(.btn):not(.cdb-social-profile), .cdb-sidebar-area .widget a,
.wpb_widgetised_column .widget a,
.post-single-sidebar .widget a, .widget.codebean-recent-posts ul li .entry-title, .cdb-progress-bar .pb-content {
  color: #6e6e6e; }

.dark, a:hover, a:focus, label, .cdb-mobile-nav .cdb-close-mobile-nav, .cdb-mobile-nav .mobile-menu-container .mobile-menu-list li a, .cdb-mobile-nav .mobile-menu-container .copyright a, .commentlist .comment .vcard .fn, .commentlist .comment .vcard .fn .url, .commentlist .comment .reply a, .site-footer .subfooter a, .off-canvas-sidebar .close-off-canvas, .gdpr-banner .close-btn, .tag-link:not(.cdb-blog-post),
.tag-cloud-link:not(.cdb-blog-post), .cdb-search-open, .cdb-search-holder .cdb-search-close .close-search-button, .cdb-extended-tabs .cdb-tab-menu li.ui-state-active .cdb-tab-menu-link, .cdb-extended-tabs .cdb-tab-menu .cdb-tab-menu-link:hover, .cdb-simple-tabs .cdb-tab-menu li a, .cdb-standard-tabs .cdb-tab-menu li.ui-state-active a, .cdb-standard-tabs .cdb-tab-menu li a:hover, .cdb-play-btn .play-button, .cdb-team-member .social-icons .social-icon-item, .cdb-blog-post.style-classic .post-info span:not(.post-category) a, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, .h6, h6,
.heading-font {
  color: #262b44; }

.cdb-social-profiles.cdb-dark-skin.cdb-square-icons .cdb-social-profile, .cdb-social-profiles.cdb-dark-skin.cdb-circle-icons .cdb-social-profile, .cdb-play-btn .play-button:hover .play-icon {
  background-color: #262b44; }

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
.form-control:focus, .cdb-simple-tabs .cdb-tab-menu li.ui-state-active a, .cdb-standard-tabs .cdb-tab-menu li.ui-state-active a {
  border-color: #262b44; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, .h6, h6,
.heading-font {
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3; }

@-webkit-keyframes signalAnimation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .6; }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0; } }

@keyframes signalAnimation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .6; }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0; } }
