/* New colors based on the new Fairtrade brand guidelines 2021 */
/* Old colors */
/*$pink: #E0119D; Old pink color that was removed when we updated the brand guidelines*/
/*
Fonts before implementing new brand guidelines 2021
$font: 'Veneer', sans-serif;
$sub_font: 'HelveticaNeueLTStd', sans-serif;
$helv_cb: 'HelveticaNeueCondBd', sans-serif;
*/
/*-=Tablet screens=-*/
@media only screen and (max-width: 1024px) {
  /*max-width 1024px, tablet screens*/
  .top-bar .header-menu li.has-dropdown > a:after {
    /* dropdown arrow */
    border-color: #000 transparent transparent;
    border: none;
    right: 5px;
    top: 7px;
    font-size: 20px;
    content: "\f0d7";
    font-family: 'FontAwesome';
  }

  .top-bar ul.header-menu li[aria-expanded="true"] > a:after {
    top: 30px;
    right: -5px;
    margin-top: 0;
  }
}
/*-=Small screens=-*/
@media only screen and (max-width: 640px) {
  /* TOP BAR Mobile STYLING */
  .title-bar {
    background-color: #fff;
    /* collapsed menu bar color */
    padding: 0;
    line-height: 1;
    height: 120px;
    display: inline-block;
    width: 150px;
    max-width: 34%;
    float: right;
    text-align: center;
    padding-top: 25px;
    margin-top: 44px;
  }
  .title-bar.active {
    background-color: #F5F5F7;
  }
  .title-bar.active .menu-icon span {
    transition: all .3s;
  }
  .title-bar.active .menu-icon span.line-top {
    top: 18px;
    opacity: 0;
    transition-delay: 0s;
  }
  .title-bar.active .menu-icon span.line-mid {
    transform: rotate(45deg);
    transition-delay: .3s;
  }
  .title-bar.active .menu-icon span.line-mid-ghost {
    transform: rotate(-45deg);
    transition-delay: .3s;
  }
  .title-bar.active .menu-icon span.line-bot {
    top: 18px;
    opacity: 0;
    transition-delay: 0s;
  }
  .title-bar .title-bar-title {
    vertical-align: top;
    color: #000;
    font-weight: normal;
    font-size: 23px;
    display: block;
    text-align: center;
  }
  .title-bar .menu-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    width: 44px;
    height: 40px;
    margin-top: 4px;
    background-color: transparent;
    vertical-align: top;
    cursor: pointer;
    outline: none;
  }
  .title-bar .menu-icon span {
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #000;
    width: 44px;
    transform-origin: 50% 50%;
    transition: all .3s;
  }
  .title-bar .menu-icon span.line-top {
    top: 8px;
    transition-delay: .3s;
  }
  .title-bar .menu-icon span.line-mid {
    top: 18px;
  }
  .title-bar .menu-icon span.line-bot {
    top: 28px;
    transition-delay: .3s;
  }
  .title-bar .menu-icon span.line-mid-ghost {
    top: 18px;
  }

  .top-bar {
    height: auto;
    padding: 0;
    background: #F5F5F7;
    /* menu list background color */
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
    padding: 35px 0 45px;
  }
  .top-bar ul li {
    padding: 20px 35px;
  }
  .top-bar ul li > a {
    display: block;
    font-family: "Alegreya Sans", sans-serif;
    color: #000;
    /* menu item text color */
    font-size: 26px;
    background: #F5F5F7;
    /* menu item background color */
    line-height: 1.2;
    padding: 0;
  }
  .top-bar ul li > a:hover {
    background: transparent !important;
    /* menu item background color on hover */
  }
  .top-bar ul li .desc {
    font-size: 12px;
    font-family: "Exo 2", sans-serif;
    font-weight: 500;
  }
  .top-bar ul li.current-menu-item > a, .top-bar ul li.current_page_ancestor > a {
    background: transparent !important;
    /* current/parent menu item background color */
  }
  .top-bar ul li.has-dropdown {
    /* a:after {
    	display: none;
    } */
  }
  .top-bar ul li.has-dropdown .accordion-toggle {
    display: block;
    position: absolute;
    width: 100%;
    height: 31px;
    right: 0;
    top: 0;
    color: #000;
    /* dropdown arrow color */
    z-index: 100;
    text-align: right;
  }
  .top-bar ul li.has-dropdown .accordion-toggle i.fa {
    font-size: 18px;
    line-height: 1;
    height: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .top-bar ul li.has-dropdown .accordion-toggle i.fa:before {
    content: "\f0d7";
  }
  .top-bar ul li[aria-expanded="true"] {
    background-color: #FFF;
  }
  .top-bar ul li[aria-expanded="true"] > a {
    background: transparent;
    /* menu item background color on open dropdown */
    color: #FF4571;
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle {
    width: 50px;
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle i.fa {
    color: #FF4571;
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle i.fa:before {
    content: "\f0d8";
  }
  .top-bar ul li .submenu {
    margin-top: 22px;
    padding: 22px 0 12px;
    position: relative;
  }
  .top-bar ul li .submenu .submenu {
    margin-top: 6px;
    padding-top: 3px;
    padding-bottom: 18px;
    margin-bottom: 22px;
  }
  .top-bar ul li .submenu .submenu:before {
    top: auto;
    bottom: 0;
  }
  .top-bar ul li .submenu .submenu li a {
    font-size: 14px;
    font-weight: bold;
    font-family: "Exo 2", sans-serif;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  .top-bar ul li .submenu:before {
    position: absolute;
    height: 1px;
    background-color: #FF4571;
    left: 0;
    top: 0;
    width: 130px;
    content: '';
    opacity: .3;
  }
  .top-bar ul li .submenu li {
    padding: 0;
  }
  .top-bar ul li .submenu li a {
    background-color: transparent;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .alignright, .alignleft, .aligncenter, .alignnone {
    float: none;
    margin: 0 0 1em;
  }

  .header .logo {
    padding-top: 18px;
    padding-bottom: 18px;
    display: inline-block;
    width: 64%;
    padding-left: 15px;
  }

  .hero .hero-bg {
    height: 250px;
  }
  .hero .hero-bg .caption {
    width: 75%;
  }

  .post-box .article-image {
    height: 225px;
  }

  .quotes {
    padding-bottom: 15px;
  }
  .quotes .portrait-wrap {
    width: 100%;
    position: static;
    display: block;
    background-color: #FFF;
  }
  .quotes .portrait {
    height: 220px;
    background-position: center;
  }
  .quotes blockquote {
    width: 100%;
    margin-left: 0;
    padding: 22px 20px;
    margin-top: 0;
  }

  .world .world-text {
    position: static;
    padding: 20px 15px;
    max-width: 100%;
    background-color: #FFF;
  }
  .world .world-text h2 {
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .menu-sidfot-container {
    margin-bottom: 30px;
  }

  .main-content {
    margin-bottom: 35px;
  }
  .main-content .submenu {
    display: none;
  }
  .main-content .page-content {
    max-width: 100%;
    padding: 0 15px;
    padding-top: 30px;
    margin-left: 0;
    width: 100%;
    font-size: 16px;
  }
  .main-content .page-title {
    font-size: 50px;
  }

  .sidebar {
    padding-top: 35px;
  }
  .sidebar.empty {
    display: none;
  }
  .sidebar:before {
    left: 0;
    right: 0;
  }
  .sidebar .related-posts-block {
    padding: 0 15px;
  }
  .sidebar .related-post__image {
    height: 200px;
  }

  .footer {
    text-align: center;
  }
  .footer .mail-link,
  .footer .social-links {
    text-align: center;
  }

  .category-list.left-sidebar {
    width: 100%;
    display: block;
    padding-top: 35px;
    text-align: left;
    padding-right: 15px;
    padding-left: 15px;
    display: none;
  }
  .category-list.left-sidebar ul {
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .category-list.left-sidebar ul li {
    display: inline-block;
    width: auto;
    margin-right: 25px;
  }

  .cat-list {
    text-align: left;
    position: static;
    margin-bottom: 20px;
  }
  .cat-list a {
    margin-left: 0;
    margin-right: 15px;
    line-height: 1.4;
  }

  .newsfeed .main-content {
    margin-left: 0;
    margin-right: 0;
  }
  .newsfeed .main-content .page-content {
    max-width: 100%;
  }
  .newsfeed .sidebar .inner {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .newsfeed .sidebar .email-sub .es_subscription_form {
    margin-bottom: 30px;
  }

  .contact-block .contact-person {
    width: 100%;
    max-width: 400px;
  }

  .resources-feed .category-title {
    font-size: 35px;
    text-align: center;
    padding-left: 0;
  }
  .resources-feed .resource-box {
    padding-left: 40px;
    padding-bottom: 35px;
    margin-bottom: 10px;
  }
  .resources-feed .resource-box .resource-title:before {
    width: 22px;
    bottom: auto;
    top: 4px;
    right: calc(100% + 10px);
  }

  .related-rapport {
    height: 350px;
  }
  .related-rapport .text-box {
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .related-rapport .text-box h2 {
    font-size: 42px;
    padding-left: 20px;
  }
  .related-rapport .text-box .rapport {
    padding: 30px;
    padding-bottom: 45px;
  }

  .resources-feed .media-container .row {
    margin-left: 10px;
    margin-right: 10px;
  }
  .resources-feed .media-container.filmer-container .category-title {
    margin-bottom: 35px;
  }
  .resources-feed .category-list.left-sidebar {
    padding-top: 15px;
    padding-bottom: 5px;
  }
  .resources-feed .main-content {
    padding-top: 20px;
  }
  .resources-feed .category-title {
    margin-bottom: 20px;
  }
  .resources-feed .rapporter-container .pagination {
    max-width: 100%;
  }
  .resources-feed .rapporter-container .pagination,
  .resources-feed .resource-box {
    margin-left: auto;
    margin-right: auto;
  }

  .videos .video iframe {
    pointer-events: auto;
  }

  .resource .sidebar {
    padding-top: 45px;
    padding-bottom: 20px;
  }
  .resource .main-content {
    margin-bottom: 0;
  }

  .share-btn {
    margin-left: 15px;
  }

  .share {
    text-align: left;
  }

  .header {
    position: relative;
    padding-top: 0;
  }

  .search-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    max-width: 34%;
    padding: 5px 30px;
    background-color: #f5f5f5;
  }

  #micro-menu {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
  }
  #micro-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 1px;
    background-color: #000;
  }
  #micro-menu li {
    padding: 20px 10px;
  }
  #micro-menu li a {
    color: #7B1DAB;
    font-size: 16px;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
  }

  #s {
    padding-right: 20px;
    background-color: transparent;
  }

  #searchform {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    border-color: transparent;
  }
  #searchform.active {
    max-width: 100%;
  }
}
/* max-width 640px and lower. Use this for mobiles only */
/*-=Medium screens=-*/
@media only screen and (min-width: 641px) {
  body.darken section {
    position: relative;
  }
  body.darken section:before {
    content: '';
    position: absolute;
    display: block;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  /* Align Menu to the right
  	 .top-bar .header-menu { float:right; }*/
  /* Align Menu to the center
  	 .top-bar .header-menu { text-align: center; }
  	 .top-bar .header-menu > li{ float: none; display: inline-block; } */
}
/* min-width 641px */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  /* TOP BAR STYLING */
  .title-bar {
    background-color: #fff;
    /* collapsed menu bar color */
    padding: 0;
    line-height: 1;
    height: 150px;
    display: inline-block;
    width: 34%;
    float: right;
    text-align: center;
    padding-top: 40px;
  }
  .title-bar.active {
    background-color: #F5F5F7;
  }
  .title-bar.active .menu-icon span {
    transition: all .3s;
  }
  .title-bar.active .menu-icon span.line-top {
    top: 18px;
    opacity: 0;
    transition-delay: 0s;
  }
  .title-bar.active .menu-icon span.line-mid {
    transform: rotate(45deg);
    transition-delay: .3s;
  }
  .title-bar.active .menu-icon span.line-mid-ghost {
    transform: rotate(-45deg);
    transition-delay: .3s;
  }
  .title-bar.active .menu-icon span.line-bot {
    top: 18px;
    opacity: 0;
    transition-delay: 0s;
  }
  .title-bar .title-bar-title {
    vertical-align: top;
    color: #000;
    font-weight: normal;
    font-size: 23px;
    display: block;
    text-align: center;
  }
  .title-bar .menu-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    width: 44px;
    height: 40px;
    margin-top: 4px;
    background-color: transparent;
    vertical-align: top;
    cursor: pointer;
    outline: none;
  }
  .title-bar .menu-icon span {
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #000;
    width: 44px;
    transform-origin: 50% 50%;
    transition: all .3s;
  }
  .title-bar .menu-icon span.line-top {
    top: 8px;
    transition-delay: .3s;
  }
  .title-bar .menu-icon span.line-mid {
    top: 18px;
  }
  .title-bar .menu-icon span.line-bot {
    top: 28px;
    transition-delay: .3s;
  }
  .title-bar .menu-icon span.line-mid-ghost {
    top: 18px;
  }

  .top-bar {
    height: auto;
    padding: 0;
    background: #F5F5F7;
    /* menu list background color */
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
    padding-bottom: 20px;
  }
  .top-bar ul li {
    padding: 20px 35px 15px;
  }
  .top-bar ul li > a {
    display: block;
    font-family: "Alegreya Sans", sans-serif;
    color: #000;
    /* menu item text color */
    font-size: 26px;
    background: #F5F5F7;
    /* menu item background color */
    line-height: 1.2;
    padding: 0;
  }
  .top-bar ul li > a:hover {
    background: transparent !important;
    /* menu item background color on hover */
  }
  .top-bar ul li .desc {
    font-size: 12px;
    font-family: "Exo 2", sans-serif;
    font-weight: 500;
  }
  .top-bar ul li.current-menu-item > a, .top-bar ul li.current_page_ancestor > a {
    background: transparent !important;
    /* current/parent menu item background color */
  }
  .top-bar ul li.has-dropdown {
    /* a:after {
    	display: none;
    } */
  }
  .top-bar ul li.has-dropdown .accordion-toggle {
    display: block;
    position: absolute;
    width: 100%;
    height: 31px;
    right: 0;
    top: 0;
    color: #000;
    /* dropdown arrow color */
    z-index: 100;
    text-align: right;
  }
  .top-bar ul li.has-dropdown .accordion-toggle i.fa {
    font-size: 18px;
    line-height: 1;
    height: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .top-bar ul li.has-dropdown .accordion-toggle i.fa:before {
    content: "\f0d7";
  }
  .top-bar ul li[aria-expanded="true"] {
    background-color: #FFF;
  }
  .top-bar ul li[aria-expanded="true"] > a {
    background: transparent;
    /* menu item background color on open dropdown */
    color: #FF4571;
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle {
    width: 50px;
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle i.fa {
    color: #FF4571;
  }
  .top-bar ul li[aria-expanded="true"] > a .accordion-toggle i.fa:before {
    content: "\f0d8";
  }
  .top-bar ul li .submenu {
    margin-top: 22px;
    padding: 22px 0 12px;
    position: relative;
  }
  .top-bar ul li .submenu .submenu {
    margin-top: 6px;
    padding-top: 3px;
    padding-bottom: 18px;
    margin-bottom: 22px;
  }
  .top-bar ul li .submenu .submenu:before {
    top: auto;
    bottom: 0;
  }
  .top-bar ul li .submenu .submenu li a {
    font-size: 14px;
    font-weight: bold;
    font-family: "Exo 2", sans-serif;
    line-height: 1.4;
  }
  .top-bar ul li .submenu:before {
    position: absolute;
    height: 1px;
    background-color: #FF4571;
    left: 0;
    top: 0;
    width: 130px;
    content: '';
    opacity: .3;
  }
  .top-bar ul li .submenu li {
    padding: 0;
  }
  .top-bar ul li .submenu li a {
    background-color: transparent;
    font-size: 24px;
    margin-bottom: 3px;
  }

  .header .logo {
    padding-top: 19px;
    padding-left: 15px;
    padding-bottom: 19px;
    display: inline-block;
    width: 115px;
  }
  .header .logo img {
    max-height: 110px;
  }

  .title-bar {
    width: 150px;
  }

  .hero.single-post .hero-bg {
    height: 400px;
  }

  .main-content .page-title {
    font-size: 50px;
  }
  .main-content .page-content {
    max-width: calc(100% - 80px);
    margin-left: 40px;
    padding-top: 40px;
    width: 800px;
  }

  .default-post .main-content .submenu {
    text-align: center !important;
    padding-right: 0;
    margin: auto;
    width: 100%;
  }
  .default-post .sidebar {
    display: none;
  }

  .default-page .main-content .submenu {
    display: none;
  }

  .sidebar .related-post__title {
    font-size: 22px;
  }

  .quotes .portrait-wrap {
    position: static;
    width: 100%;
  }
  .quotes .portrait {
    background-position: center;
  }
  .quotes cite {
    display: none;
  }
  .quotes blockquote {
    padding: 22px 32px;
    width: 90%;
    margin-left: 5%;
    margin-top: -100px;
  }

  .box-block__text h3 {
    font-size: 24px;
  }
  .box-block__text p {
    font-size: 15px;
  }

  .category-list.left-sidebar {
    width: 100%;
    display: block;
    padding-top: 35px;
    text-align: left;
    padding-right: 0;
    display: none;
  }
  .category-list.left-sidebar ul {
    margin: 0;
    padding: 0;
  }
  .category-list.left-sidebar ul li {
    display: inline-block;
    width: auto;
    margin-right: 25px;
  }
  .category-list.left-sidebar.resource-list {
    text-align: right;
    padding-right: 10px;
  }
  .category-list.left-sidebar.resource-list ul li {
    width: 100%;
  }

  .cat-list {
    text-align: left;
    position: static;
    margin-bottom: 20px;
  }
  .cat-list a {
    margin-left: 0;
    margin-right: 15px;
    line-height: 1.4;
  }

  .newsfeed .main-content .page-content {
    padding-top: 25px;
    max-width: 100%;
    margin-left: 0;
    padding-right: 15px;
  }
  .newsfeed .main-content .post-box .article__title {
    font-size: 24px;
  }
  .newsfeed .main-content .category-title {
    margin-bottom: 15px;
  }
  .newsfeed .sidebar .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .newsfeed .sidebar .email-sub .es_subscription_form {
    margin-bottom: 30px;
  }
  .newsfeed .sidebar .sidebar-social a {
    font-size: 16px;
  }
  .newsfeed .sidebar .sidebar-social a i {
    margin-left: 9px;
  }

  .hero-resource .hero-bg {
    height: 315px;
  }

  .related-rapport {
    height: 350px;
  }
  .related-rapport .text-box {
    width: 420px;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .related-rapport .text-box h2 {
    font-size: 42px;
    padding-left: 20px;
  }
  .related-rapport .text-box .rapport {
    padding: 30px;
    padding-bottom: 45px;
  }

  .resource .sidebar {
    padding-top: 45px;
    padding-bottom: 20px;
  }
  .resource .sidebar:before {
    left: 0;
    right: 0;
  }

  .faq .sidebar:before {
    left: 0;
    right: 0;
  }

  .header {
    position: relative;
  }

  .search-box {
    position: absolute;
    top: 30px;
    right: 170px;
  }

  #micro-menu {
    position: relative;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
  }
  #micro-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 1px;
    background-color: #FF4571;
  }
  #micro-menu li a {
    color: #7B1DAB;
    font-size: 20px;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
  }

  /* min-width 641px and max-width 1024px, use when QAing tablet-only issues*/
}
/*-=Large screens=-*/
@media only screen and (min-width: 1025px) {
  .search-box {
    margin-bottom: 20px;
  }

  #main-menu > div {
    display: inline-block;
    width: 75%;
  }

  #main-menu #sub-menu {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: right;
    max-width: 24%;
  }
  #main-menu #sub-menu #micro-menu {
    list-style: none;
    margin: 0;
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
  }
  #main-menu #sub-menu #micro-menu li a {
    font-size: 16px;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    color: #7B1DAB;
    text-transform: uppercase;
    padding-left: 16px;
  }

  .title-bar {
    display: none;
  }

  .top-bar {
    padding: 0;
    background-color: transparent;
    /* Dropdown item styling */
  }
  .top-bar ul {
    background: transparent;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .top-bar .header-menu {
    position: relative;
  }
  .top-bar .header-menu > .is-dropdown-submenu-parent {
    position: static;
  }
  .top-bar .header-menu > li {
    text-align: center;
  }
  .top-bar .header-menu li {
    float: left;
    background-color: transparent;
    padding: 30px 20px 20px 10px;
    margin-bottom: 15px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .top-bar .header-menu li.is-active {
    background-color: #F6F5F7;
  }
  .top-bar .header-menu li.is-active > a {
    color: #FF4571;
  }
  .top-bar .header-menu li > a {
    /* Regular menu item style */
    display: inline-block;
    padding: 0 15px;
    background: transparent;
    position: relative;
    font-size: 24px;
    line-height: 40px;
    color: #000;
    font-family: "Alegreya Sans", sans-serif;
    cursor: default;
  }
  .top-bar .header-menu li.current-menu-item > a, .top-bar .header-menu li.current_page_ancestor > a, .top-bar .header-menu li.current_page_parent > a {
    /* Style of Current page and Ancestor page */
    color: #FF4571;
  }
  .top-bar .header-menu li.has-dropdown > a {
    /* Style of item with dropdown */
    padding: 0 15px;
  }
  .top-bar .header-menu li.has-dropdown > a:after {
    /* dropdown arrow */
    border: none;
    right: -5px;
    top: 16px;
    font-size: 20px;
    font-family: 'FontAwesome';
    content: "\f0d7";
    width: 10px;
    height: 10px;
    line-height: 10px;
    margin-top: 0;
  }
  .top-bar .header-menu li.has-dropdown.is-active > a:after {
    color: #FF4571;
    transition: all .3s;
    /* content: '';
    display: none;
    width: 10px;
    height: 10px;
    background-image: url('../images/close.png');
    background-repeat: no-repeat;
    -webkit-background-size: contain;
         -o-background-size: contain;
            background-size: contain;
    top: 18px;
    right: -7px; */
  }
  .top-bar .header-menu li.has-dropdown li.has-dropdown > a:after {
    display: none !important;
  }
  .top-bar .header-menu li > a:hover {
    /* menu item style on hover */
    background: transparent;
    color: #FF4571;
  }
  .top-bar .header-menu:after {
    content: '';
    display: table;
    clear: both;
  }
  .top-bar ul li:hover > a {
    /* Parent link style on dropdown hover */
    background: transparent;
    color: #000;
  }
  .top-bar .submenu .submenu,
  .top-bar .submenu:not(.first-sub) {
    position: static;
    padding: 0;
    padding-right: 45px;
  }
  .top-bar .submenu .submenu li.current-menu-item > a, .top-bar .submenu .submenu li.current_page_ancestor > a, .top-bar .submenu .submenu li.current_page_parent > a,
  .top-bar .submenu:not(.first-sub) li.current-menu-item > a,
  .top-bar .submenu:not(.first-sub) li.current_page_ancestor > a,
  .top-bar .submenu:not(.first-sub) li.current_page_parent > a {
    background: #fff;
    color: #FF4571;
    padding: 3px 5px !important;
  }
  .top-bar .submenu .submenu li > a,
  .top-bar .submenu:not(.first-sub) li > a {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    padding: 0;
    white-space: nowrap;
    border: none;
    margin: 0;
    cursor: pointer;
  }
  .top-bar .submenu .submenu li > a:hover,
  .top-bar .submenu:not(.first-sub) li > a:hover {
    color: #FF4571;
  }
  .top-bar .submenu .submenu.js-dropdown-active,
  .top-bar .submenu:not(.first-sub).js-dropdown-active {
    display: flex;
    justify-content: space-between;
    position: static;
    top: 0 !important;
    left: 0 !important;
  }
  .top-bar .submenu .submenu.js-dropdown-active .submenu,
  .top-bar .submenu:not(.first-sub).js-dropdown-active .submenu {
    display: block;
  }
  .top-bar .submenu {
    border: none;
    padding: 50px 0 25px 60px;
    background-color: #f6f5f7;
    z-index: 101;
    border-radius: 4px;
  }
  .top-bar .submenu.js-dropdown-active {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(100% - 20px) !important;
    left: 0 !important;
  }
  .top-bar .submenu.js-dropdown-active .submenu {
    display: block;
  }
  .top-bar .submenu li {
    display: block;
    padding: 0;
    position: static;
    text-align: left;
    margin-bottom: 0;
  }
  .top-bar .submenu li.current-menu-item > a, .top-bar .submenu li.current_page_ancestor > a, .top-bar .submenu li.current_page_parent > a {
    background: transparent;
    color: #FF4571;
  }
  .top-bar .submenu li.is-active > a {
    color: #000;
  }
  .top-bar .submenu li:hover a {
    color: #000;
  }
  .top-bar .submenu li > a {
    /* Regular link in dropdown */
    background: transparent;
    color: #000;
    line-height: 1.2;
    padding: 3px 5px 5px !important;
    border-bottom: 1px solid #f0d1e3;
    font-size: 24px;
    font-family: "Alegreya Sans", sans-serif;
    display: inline-block;
    margin-right: 45px;
    margin-bottom: 15px;
  }
  .top-bar .submenu li > a:hover {
    /* Dropdown link on hover */
    color: #000;
    border-radius: 4px;
    text-decoration: none;
  }
  .top-bar .submenu li > a:hover:after {
    border-color: #FF4571 transparent transparent !important;
  }
  .top-bar .submenu li > a:after {
    right: 25px !important;
  }
  .top-bar .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: 0;
  }
  .top-bar .is-dropdown-submenu .is-dropdown-submenu li a {
    /* Styles for 2nd level dropdown menu link */
  }

  .text-section {
    background-attachment: fixed;
  }

  .blocks-section .box-block--highlighted .box-block__image {
    height: 245px;
  }
  .blocks-section .box-block--highlighted .box-block__text {
    padding-bottom: 70px;
  }
  .blocks-section .box-block--shaded .box-block__wrap {
    margin: 25px 0;
  }
  .blocks-section .box-block--shaded:first-child .box-block__wrap {
    border-right: none;
  }
  .blocks-section .box-block--shaded:first-child .box-block__text {
    box-shadow: inset -22px 0px 20px -10px rgba(0, 0, 0, 0.1);
  }
  .blocks-section .box-block--shaded:last-child .box-block__wrap {
    border-left: none;
  }
  .blocks-section .box-block--shaded:last-child .box-block__text {
    box-shadow: inset 22px 0px 20px -10px rgba(0, 0, 0, 0.1);
  }

  .search.newsfeed .main-content {
    margin-right: 0;
  }

  /*min-width 1025px, large screens*/
}
@media only screen and (min-width: 1201px) {
  /* min-width 1201px, large screens*/
}
@media only screen and (min-width: 1025px) and (max-width: 1420px) {
  .cat-list {
    text-align: left;
    position: static;
    margin-bottom: 20px;
  }
  .cat-list a {
    margin-left: 0;
    margin-right: 15px;
  }

  .newsfeed .main-content .category-title {
    margin-bottom: 15px;
  }
  .newsfeed .sidebar .sidebar-social a {
    font-size: 16px;
  }
  .newsfeed .sidebar .sidebar-social a i {
    margin-left: 9px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1360px) {
  .newsfeed .sidebar .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .newsfeed .sidebar .email-sub .es_subscription_form {
    margin-bottom: 20px;
  }
  .newsfeed .main-content .page-content {
    margin-left: 30px;
    max-width: calc(100% - 225px);
  }

  .category-list.left-sidebar ul {
    margin-left: 0;
    font-size: 14px;
  }

  .main-content .left-sidebar {
    width: 150px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1310px) {
  .search-box {
    margin-bottom: 0;
  }

  .header .logo img {
    max-height: 110px;
  }

  #sub-menu #micro-menu {
    flex-wrap: wrap;
  }
  #sub-menu #micro-menu li a {
    padding-left: 9px;
    font-size: 13px;
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
  }

  .top-bar .header-menu > li {
    padding: 30px 17px 20px 13px;
    width: auto;
  }
  .top-bar .header-menu li > a {
    font-size: 19px;
  }
  .top-bar .header-menu li span.desc {
    padding: 0 10px;
    font-size: 10px;
  }
  .top-bar .header-menu li.is-active:after {
    left: 30px;
    right: 30px;
  }
  .top-bar .header-menu li.has-dropdown > a {
    padding: 0 10px;
  }
  .top-bar .header-menu li.has-dropdown > a:after {
    font-size: 16px;
  }
  .top-bar .header-menu li.has-dropdown li.has-dropdown > a:after {
    top: 10px;
  }
  .top-bar .submenu {
    padding: 35px;
    padding-right: 0;
  }
  .top-bar .submenu li > a {
    font-size: 18px;
    margin-right: 30px;
  }
  .top-bar .submenu .submenu li > a {
    font-size: 16px;
  }

  .is-dropdown-submenu {
    min-width: 160px;
  }
}
@media only screen and (min-width: 1311px) and (max-width: 1440px) {
  .logo img {
    max-height: 100px;
  }

  .search-box {
    margin-bottom: 0;
  }

  .top-bar .header-menu li > a {
    font-size: 20px;
  }
  .top-bar .header-menu li.is-active:after {
    left: 30px;
    right: 30px;
  }
  .top-bar .header-menu li.has-dropdown > a {
    padding: 0 15px;
  }
  .top-bar .header-menu li.has-dropdown > a:after {
    font-size: 16px;
  }
  .top-bar .header-menu li.has-dropdown li.has-dropdown > a:after {
    top: 10px;
  }
  .top-bar .submenu {
    padding: 35px;
    padding-right: 0;
  }
  .top-bar .submenu li > a {
    font-size: 20px;
    margin-right: 30px;
  }
  .top-bar .submenu .submenu li > a {
    font-size: 16px;
  }

  .is-dropdown-submenu {
    min-width: 160px;
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1550px) {
  .top-bar .header-menu li > a {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1421px) {
  .newsfeed .sidebar .inner {
    padding-top: 50px;
  }

  .top-bar .header-menu > li {
    padding: 30px 17px 20px 13px;
    width: auto;
  }
  .top-bar .header-menu > li > .submenu > li > a {
    font-size: 22px;
  }
  .top-bar .header-menu li > a {
    font-size: 24px;
  }

  #main-menu #sub-menu #micro-menu li a {
    padding-left: 20px;
  }
}
