/*!
Theme Name: Dodo 2.0 Brand Theme
Theme URI:
Author: Andrew Needham / Muhammad Mansoor
Author URI:
Description: Dodo 2.0 Brand Theme
Template: monstroid2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: monstroid2-child
*/


/*******************************************************************************
OMCSS Helper Classes - OMCSS Framework
*******************************************************************************/

/* ==========================================================================
   Layout
   ========================================================================== */
/**
* Display
*/
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.hide {
    display: none !important;
}

/**
  * Floats
  */
.float-right {
    float: right;
}

.float-left {
    float: left;
}

.float-none {
    float: none;
}

.clearfix {
    overflow: auto;

    &::after {
        content: "";
        display: table;
        clear: both;
    }
}

/**
  * Overflow
  */
.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

/**
  * Positions
  */
.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

/**
  * Visibility
  */
.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/**
  * Vertical Alignment
  */

.v-base {
    vertical-align: baseline;
}

.v-top {
    vertical-align: text-top;
}

.v-middle {
    vertical-align: middle;
}

.v-sub {
    vertical-align: sub;
}

.v-super {
    vertical-align: super;
}

/* Display - Flexbox
     ========================================================================== */
/**
  * Flex Direction
  */
.flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-inline {
    display: inline-flex;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

/**
  * Flex Wrapping
  */
.flex-no-wrap {
    flex-wrap: nowrap;
    flex-wrap: no;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/**
  * Flex Align Items
  */
.flex-align-items-stretch {
    align-items: stretch;
}

.flex-align-items-start {
    align-items: flex-start;
}

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

.flex-align-items-end {
    align-items: flex-end;
}

.flex-align-items-baseline {
    align-items: baseline;
}

/**
  * Flex Justify Content
  */
.flex-justify-content-start {
    justify-content: flex-start;
}

.flex-justify-content-center {
    justify-content: center;
}

.flex-justify-content-end {
    justify-content: flex-end;
}

.flex-justify-content-between {
    justify-content: space-between;
}

.flex-justify-content-around {
    justify-content: space-around;
}

/**
  * Flex Align Content
  */
.flex-align-content-start {
    align-content: flex-start;
}

.flex-align-content-center {
    align-content: center;
}

.flex-align-content-end {
    align-content: flex-end;
}

.flex-align-content-between {
    align-content: space-between;
}

.flex-align-content-around {
    align-content: space-around;
}

/**
  * Flex Align Self
  */
.flex-align-self-auto {
    align-self: auto;
}

.flex-align-self-start {
    align-self: flex-start;
}

.flex-align-self-center {
    align-self: center;
}

.flex-align-self-end {
    align-self: flex-end;
}

.flex-align-self-stretch {
    align-self: stretch;
}

/* ==========================================================================
     Typography
     ========================================================================== */
/**
  * Color
  */
.txt-white {
    color: #FFF;
}

.txt-black {
    color: #000;
}

.txt-green-base {
    color: #38c172;
}

.txt-green-dark {
    color: #1f9d55;
}

.txt-green-darker {
    color: #1a4731
}

.txt-grey-darkest {
    color: #353947;
}

.txt-grey-darker {
    color: #5d616c;
}

.txt-grey-base {
    color: #CCCCCC;
}

.txt-color-primary {
    color: #470A68;
}

.txt-color-secondary {
    color: #47d7ac;
}

.txt-gradient {
    background: linear-gradient(to left, #47d7ac 0%, #470A68 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.txt-color-error {
    color: #d14900;
}


/* Background */

.bg-white {
    background-color: #FFF;
}

.bg-black {
    background-color: #000;
}

.bg-color-primary {
    background-color: #470A68;
}

.bg-color-secondary {
    background-color: #47d7ac;
}

.bg-color-error {
    background-color: #cc032c;
}

/**
  * Text Alignment
  */
.txt-left-align {
    text-align: left;
}

.txt-right-align {
    text-align: right;
}

.txt-center-align {
    text-align: center;
}

.txt-justify {
    text-align: justify;
}

/**
  * Style & Decoration
  */
.italic {
    font-style: italic;
}

.normal {
    font-style: normal;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.underline {
    text-decoration: underline;
}

.line-through {
    text-decoration: line-through;
}

.no-underline {
    text-decoration: none;
}

/**
  * Font Family
  */

.font-primary {
    font-family: 'Source Sans Pro', sans-serif;
}

.font-secondary {
    font-family: 'Open Sans', sans-serif;
}

.font-brand {
    font-family: 'Gilroy Regular', sans-serif;
}

/**
  * Font Weight
  */
.font-hairline {
    font-weight: 100;
}

.font-thin {
    font-weight: 200;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

/**
  * Font Size
  */
.txt-xxs {
    font-size: 1rem;
}

.txt-xs {
    font-size: 1.2rem;
}

.txt-sm {
    font-size: 1.4rem;
}

.txt-base {
    font-size: 1.6rem;
}

.txt-lg {
    font-size: 1.8rem;
}

.txt-xl {
    font-size: 2rem;
}

.txt-xxl {
    font-size: 2.8rem;
}

/**
  * Line Height
  */
.lh-none {
    line-height: 1;
}

.lh-tight {
    line-height: 1.25;
}

.lh-normal {
    line-height: 1.5;
}

.lh-loose {
    line-height: 2;
}

/**
  * Lists
  */
.list-reset {
    list-style: none;
    padding: 0;
}

/**
  * Border
  */
.border-none {
    border: none;
}

/* ==========================================================================
     Sizing
     ========================================================================== */
/**
  * Width
  */
.width-screen {
    width: 100vw;
}

.width-full {
    width: 100%;
}

.width-half {
    width: 50%;
}

.width-auto {
    width: auto;
}

/**
  * Height
  */
.height-screen {
    height: 100vh;
}

.height-full {
    height: 100%;
}

.height-auto {
    height: auto;
}

.height-inherit {
    height: inherit;
}

/* ==========================================================================
     Margin & Padding
     ========================================================================== */
/**
  * Margin
  */
.m0 {
    margin: 0;
}

.mt0 {
    margin-top: 0;
}

.mr0 {
    margin-right: 0;
}

.mb0 {
    margin-bottom: 0;
}

.ml0 {
    margin-left: 0;
}

.mx0 {
    margin-left: 0;
    margin-right: 0;
}

.my0 {
    margin-top: 0;
    margin-bottom: 0;
}

.m1 {
    margin: 0.5rem;
}

.mt1 {
    margin-top: 0.5rem;
}

.mr1 {
    margin-right: 0.5rem;
}

.mb1 {
    margin-bottom: 0.5rem;
}

.ml1 {
    margin-left: 0.5rem;
}

.mx1 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.my1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.m2 {
    margin: 1rem;
}

.mt2 {
    margin-top: 1rem;
}

.mr2 {
    margin-right: 1rem;
}

.mb2 {
    margin-bottom: 1rem;
}

.ml2 {
    margin-left: 1rem;
}

.mx2 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.my2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.m3 {
    margin: 1.5rem;
}

.mt3 {
    margin-top: 1.5rem;
}

.mr3 {
    margin-right: 1.5rem;
}

.mb3 {
    margin-bottom: 1.5rem;
}

.ml3 {
    margin-left: 1.5rem;
}

.mx3 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.my3 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.m4 {
    margin: 2rem;
}

.mt4 {
    margin-top: 2rem;
}

.mr4 {
    margin-right: 2rem;
}

.mb4 {
    margin-bottom: 2rem;
}

.ml4 {
    margin-left: 2rem;
}

.mx4 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.my4 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.m5 {
    margin: 2.5rem;
}

.mt5 {
    margin-top: 2.5rem;
}

.mr5 {
    margin-right: 2.5rem;
}

.mb5 {
    margin-bottom: 2.5rem;
}

.ml5 {
    margin-left: 2.5rem;
}

.mx5 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.my5 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/**
  * Padding
  */
.p0 {
    padding: 0;
}

.pt0 {
    padding-top: 0;
}

.pr0 {
    padding-right: 0;
}

.pb0 {
    padding-bottom: 0;
}

.pl0 {
    padding-left: 0;
}

.px0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py0 {
    padding-top: 0;
    padding-bottom: 0;
}

.p1 {
    padding: 0.5rem;
}

.pt1 {
    padding-top: 0.5rem;
}

.pr1 {
    padding-right: 0.5rem;
}

.pb1 {
    padding-bottom: 0.5rem;
}

.pl1 {
    padding-left: 0.5rem;
}

.px1 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.p2 {
    padding: 1rem;
}

.pt2 {
    padding-top: 1rem;
}

.pr2 {
    padding-right: 1rem;
}

.pb2 {
    padding-bottom: 1rem;
}

.pl2 {
    padding-left: 1rem;
}

.px2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.p3 {
    padding: 1.5rem;
}

.pt3 {
    padding-top: 1.5rem;
}

.pr3 {
    padding-right: 1.5rem;
}

.pb3 {
    padding-bottom: 1.5rem;
}

.pl3 {
    padding-left: 1.5rem;
}

.px3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.p4 {
    padding: 2rem;
}

.pt4 {
    padding-top: 2rem;
}

.pr4 {
    padding-right: 2rem;
}

.pb4 {
    padding-bottom: 2rem;
}

.pl4 {
    padding-left: 2rem;
}

.px4 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p5 {
    padding: 2.5rem;
}

.pt5 {
    padding-top: 2.5rem;
}

.pr5 {
    padding-right: 2.5rem;
}

.pb5 {
    padding-bottom: 2.5rem;
}

.pl5 {
    padding-left: 2.5rem;
}

.px5 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.py5 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* ==========================================================================
     Media Queries
     ========================================================================== */
/**
  * Small Devices Only
  */
@media (min-width: 768px) {
    .sm-only {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .sm-only {
        display: none !important;
    }
}


/**
  * Medium Devices Only
  */
@media (max-width: 767px) {
    .md-only {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .md-only {
        display: none !important;
    }
}

/**
  * Large Devices Only
  */
@media (max-width: 767px) {
    .lg-only {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .lg-only {
        display: none !important;
    }
}


/* Media Queries - Hidden
     ========================================================================== */
@media (max-width: 767px) {
    .sm-hide {
        display: none !important;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {
    .md-hide {
        display: none !important;
    }
}


@media (min-width: 1024px) {
    .lg-hide {
        display: none !important;
    }
}


.footer .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .footer .container {
    width: 95%;
  }
}

@media (min-width: 1024px) {
  .footer .container {
    width: 940px;
  }
}

/*Dodo Header Styles*/
/* Updated CSS */


@font-face {
    font-family: 'Gilroy Regular';

    src: url('https://s3-ap-southeast-2.amazonaws.com/dodo-font-bucket/Radomir+Tinkov+-+Gilroy-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy SemiBold';

    src: url('https://s3-ap-southeast-2.amazonaws.com/dodo-font-bucket/Radomir+Tinkov+-+Gilroy-SemiBold.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy Light';

    src: url('https://s3-ap-southeast-2.amazonaws.com/dodo-font-bucket/Radomir+Tinkov+-+Gilroy-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy Bold';

    src: url('https://s3-ap-southeast-2.amazonaws.com/dodo-font-bucket/Radomir+Tinkov+-+Gilroy-Bold.otf') format('opentype');
}

html {
    min-width: 320px;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #470a68;
    cursor: pointer;
}

.dodo-header--desktop {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    min-height: 70px;
    font-family: "Gilroy Regular", sans-serif;
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.09);
}

.dodo-header--desktop ._navigation {
    flex: 1;
	padding-top:22px;
}

.dodo-header--desktop ._navigation ul li {
    display: inline-block;
    margin: 0 15px;
    font-weight: 600;
    font-size: 14px;
}

.dodo-header--desktop ._contact {
    font-weight: 600;
}

.dodo-header--desktop ._contact .--regular {
    font-weight: 400;
}

.dodo-header--mobile {
    display: none;
}

@media (max-width: 1000px) {
    .dodo-header--desktop {
        display: none;
    }

    .dodo-header--mobile {
        display: flex;
        padding-left: 15px;
        padding-right: 15px;
        align-items: center;
        min-height: 70px;
        font-family: "Gilroy Regular", sans-serif;
        -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.09);
        box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.09);
        justify-content: space-between;
    }

    .dodo-header--mobile ._navigation {
        background-color: #470a68;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        transition: opacity 1s linear;
        opacity: 0;
		z-index:100;
    }

    .dodo-header--mobile ._navigation.show {
        opacity: 1;
        display: block;
    }

    .dodo-header--mobile ._navigation ul {
        list-style-type: none;
        padding: 0 5%;
    }

    .dodo-header--mobile ._navigation ul li {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dodo-header--mobile ._navigation ul li i.fas {
        color: #47d7ac;
    }

    .dodo-header--mobile ._navigation ul li a {
        color: #FFF;
        font-size: 13px;
        font-weight: 600;
    }

    .dodo-header--mobile ._navigation .__header {
        display: flex;
        padding-left: 15px;
        padding-right: 15px;
        align-items: center;
        min-height: 70px;
        font-family: "Gilroy Regular", sans-serif;
        justify-content: space-between;
    }

    .dodo-header--mobile ._hamburger {
        cursor: pointer;
    }


}

/*Dodo Banner Styles*/

.dashboard-banner {
  position: relative;
  height: 126px;
  align-items: center;
  background: #470a68 url("/../wp-content/themes/monstroid2-child/images/m_pattern_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
.dashboard-banner ._content {
  letter-spacing: normal;
  max-width: 260px;
}
.dashboard-banner ._content .__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.08;
  font-family: "Gilroy Regular", sans-serif;
}
.dashboard-banner ._content .__description {
  display: none;
}
.dashboard-banner ._illustration {
  display: none;
}
@media (min-width: 768px) {
  .dashboard-banner {
    height: 285px;
    background-color: #470a68;
    background: #470a68 url("/../wp-content/themes/monstroid2-child/images/d_pattern_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100%;
  }

  .dashboard-banner ._content {
    letter-spacing: normal;
	max-width: 500px;
  }
  .dashboard-banner ._content .__title {
    font-size: 2.6rem;
    line-height: 1.08;
    font-weight: 600;
  }
  .dashboard-banner ._content .__description {
    width: 80%;
    font-size: 1.2rem;
    line-height: 1.44;
    display: block;
  }
  .dashboard-banner ._illustration {
    display: inline;
    position: absolute;
    right: 12%;
    bottom: -23%;
  }
}

@media (min-width: 1024px) {
  .dashboard-banner {
    height: 285px;
    background-color: #470a68;
    background-image: none;
  }

  .dashboard-banner .container {
    background: #470a68 url("/../wp-content/themes/monstroid2-child/images/d_pattern_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }
  .dashboard-banner ._illustration {
    display: inline;
    position: absolute;
    right: 12%;
    bottom: -23%;
  }
    .dashboard-banner ._content {
    letter-spacing: normal;
	max-width: 700px;
  }
}


/*Dodo Footer Styles*/

.footer ._header {
  background-color: #350350;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer ._header .__brand .logo {
  width: 100%;
}

.footer ._header .__social ul {
  display: inline-flex;
  justify-content: space-around;
  font-size: 1.5rem;
  list-style-type: none;
}

.footer ._header .__social ul .___icon {
  margin: 0 0.5rem;
}

.footer ._navigation {
  background-color: #470a68;
}

.footer ._navigation .__accordion {
  font-size: 1.6rem;
  color: #fff;
}

.footer ._navigation .__accordion .card {
  border: none;
  border-radius: unset;
  background-color: inherit;
}

.footer ._navigation .__accordion .card .card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
  padding: 1.25rem 0rem;
}

.footer ._navigation .__accordion .card .card-header .btn {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  padding: 0.375rem 0rem;
}

.footer ._navigation .__accordion .card .card-header .btn:focus,
.footer ._navigation .__accordion .card .card-header .btn.focus {
  text-decoration: none;
}

.footer ._navigation .__accordion .card .card-body {
  padding: 0;
}

.footer ._navigation .__accordion .card .card-body ul li {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
  font-weight: normal;
}

.footer ._navigation .__accordion .card .card-body ul li a {
  cursor: pointer;
}

.footer ._navigation .__accordion .card .card-body ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer ._navigation .__accordion .card .card-body ul li img {
  width: 1rem;
}

.footer ._footer {
  display: block;
  background-color: #470a68;
  border-top: 1px solid rgba(255, 255, 255, 0.125);
  position: relative;
  top: -1px;
}

.footer ._footer .container {
  display: block;
}

.footer ._footer .__legal ul li {
  display: inline-block;
  margin: 1rem 1rem 1rem 0;
  font-size: 0.8rem;
  font-weight: 300;
}

.footer ._footer .__legal ul li a {
  color: rgba(255, 255, 255, 0.75);
}

.footer ._footer .__copyright {
  font-size: 0.8rem;
  line-height: 1.43;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .footer ._header .__social ul .___icon {
    margin: 0 1rem;
  }

  .footer .__desktop {
    padding: 3rem 0;
    color: #fff;
  }

  .footer .__desktop .___title {
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
    line-height: 1.71;
    padding: 1rem 0;
  }

  .footer .__desktop ul {
    font-size: 1.3rem;
    font-weight: normal;
  }

  .footer .__desktop ul li {
    padding: 1rem 0;
  }

  .footer .__desktop ul li a {
    cursor: pointer;
  }

  .footer .__desktop ul li a:hover {
    color: #fff;
    text-decoration: none;
  }

  .footer .__desktop ul li img {
    width: 1rem;
  }
}

@media (min-width: 1024px) {
  .footer ._footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/*Button style overide*/
.btn{
    border-radius: 3px !important;
    box-shadow: 0 3px 0 0 #00c397 !important;
    background-color: #01eac1 !important;
    color: #353947 !important;
    padding: 13px !important;
    min-width: 150px !important;
	font-size: 13px !important;
}
.btn:hover, button:hover, input[type='button']:hover, input[type='reset']:hover, input[type='submit']:hover, input[type='reset']:hover {
    color: #353947 !important;
    background-color: #00c397 !important;
}
/*Even up main grid container buttons and titles*/

@media (min-width: 768px) {
.entry-title{min-height:86px}
.entry-content{min-height:80px}
}

@media (min-width: 1024px) {
.entry-title{min-height:60px}
.entry-content{min-height:75px}
}


/*Remove post title from template as its in the banner*/
.single-post .entry-title {
    display: none;
}

/*Remove post featured image from single-post template - image to be added manually */
.single-post img.wp-post-image {
	display: none;
}

/* Increase post content ol ul padding*/
ul, ol {
  padding-left: 20px;
}
/* Remove menu from admin display*/
.set-menu {display:none;}
/*Remove hyphens */
body, p,  h1, h2, h3, h4, h5, h6 {
 -moz-hyphens: none !important;
-ms-hyphens: none !important;
-webkit-hyphens: none !important;
 hyphens: none !important;}

 /*Adjust theme heading heirachy */
 .single-post h2 { font-weight: 600; font-size: 20px; }
 .single-post h3 { font-weight: 600; font-size: 18px; }
 .single-post h4 { font-weight: 600; font-size: 14px; }
 .single-post .entry-content a { font-weight:bold; }

/*Remove the word 'under' in popular posts plugin */
.wpp-meta.post-stats span.wpp-category {
  padding-top:5px;	
  font-size: 0;
}
.wpp-meta.post-stats span.wpp-category a {
  font-size: 11px;
}
.wpp-list.wpp-list-with-thumbnails a.wpp-post-title {
  font-weight: normal;
}
.wplp_outside .wpcu_block_title {font-size: 14px; font-weight: 600; color: #34314b; text-transform: uppercase; font-family: "Hind", sans-serif;}