/*
Theme Name: Insure Our Future - Global & US
Theme URI: http://rubystudio.dk/
Author: Ruby Studio
Author URI: http://rubystudio.dk/
Description: Custom Theme
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ruby_studio
Template: insureourfuture
 */

/*
1. Variables
2. Basic
3. Typography
4. Form Elements
    4.1. Buttons
    4.2. Inputs
    4.3. Dropdown
5. Header
6. Footer
7. Scorecard Table
8. Sections
    8.1. Earlier Reports
    8.2. Our partners
    8.3. Page Intro
    8.4. Methodology
    8.5. Statistic
    8.6. Exit Policies
    8.7. Testimonials
    8.8. Demands
    8.9. Latest News
    8.10. Related articles
    8.11. Report
    8.12. Contact
9. Filter
10. Single Company
11. Page
12. Newsletter
13. Single Post
14. Latest Page
15. About Page
16. Campaigns Page
17. Get involved Page
*/

/* 1. Variables */
:root {
    /* fonts */
    --sans-serif: 'Helvetica', Arial, sans-serif;

    /* colors */
    --black: #000000;
    --white: #FFFFFF;
    --grey: #666666;
    --blue: #00AEEF;
    --orange: #F99D33;

    /* hover colors */
    --blue-hover: #019dd7;
    --orange-hover: #e5902a;
}

/* 2. Basic */
html, body {
    min-height: 100%
}

html {
    font-size: 62.5%;
}

body {
    background: #F8F8F8;
    font-family: var(--sans-serif);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--black);
    overflow-x: hidden;
    position: relative;
}

#main, #main-snd {
    padding-top: 68px;
    padding-bottom: 60px;
    min-height: calc(var(--vh, 1vh) * 100 - 439px);
    background: #F8F8F8;
}

/* AJAX Page Animations */
.js.anim [data-anim*='fade'] {
    opacity: 0;
}

.js.anim [data-anim*='fade'].animated {
    opacity: 1;
}

.js.anim [data-anim*='zoom-in'] {
    transform: scale(0.85);
    transform-origin: bottom;
}

.js.anim [data-anim*='slide-up'] {
    transform: translateY(75px);
}

.js.anim [data-anim*='slide-up'].animated {
    transform: none;
}

.js.anim [data-anim*='slide-right'] {
    transform: translateX(100%);
}

/* Scorecard AJAX Page */

.ajax-page #main {
    position: absolute;
    top: 66px;
    width: 100%;
}

/*.top-bar-active .ajax-page #main {
    top: 95px;
}*/

.ajax-page.forward #main {
    left: 100%;
}

.ajax-page.backward #main {
    right: 100%;
}

.wrapper.ajax-page {
    transition: transform 0.7s ease-in-out;
    transform: translateX(0);
    z-index: 10;
}

.wrapper.ajax-page.ajax-animate.forward {
    transform: translateX(-100%);
}

.wrapper.ajax-page.ajax-animate.backward {
    transform: translateX(100%);
}

.wrapper {
    position: relative;
    /*z-index: 1;*/
    padding-top: 66px;
}

.top-bar-active .wrapper {
    padding-top: 95px;
}

.read-more-toggle {
    display: none;
}

.page-container {
    padding-top: 30px;
}

figure {
    margin: 0;
    padding: 0;
}

img[data-lazy-src] {
    opacity: 0;
}

img.lazyloaded {
    opacity: 1;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 400;
}

h1 {
    margin-bottom: 20px;
    font-size: 5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

h5 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: var(--black);
    text-decoration: none;
}

.external-link {
    display: inline-flex;
    align-items: center;
}

.external-link:after {
    content: "";
    display: block;
    margin-left: 2px;
    width: 16px;
    height: 16px;
    background: url('./assets/images/arrow.svg') no-repeat;
    background-size: 100%;
    transform: rotate(135deg);
}

p {
    margin: 0;
}

blockquote {
    font-style: normal;
    margin: 0;
    padding: 0;
}

hr {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 1px;
    background-color: var(--black);
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Entry Content */

.entry-header {
    margin-bottom: 30px;
}

.entry-intro {
    font-size: 2rem;
}

.entry-header {
    display: flex;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--black);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.entry-header .entry-title {
    font-size: 3rem;
    margin-bottom: 0;
}

.entry-header .dropdown {
    margin-left: auto;
}

.entry-description {
    font-size: 1.6rem;
    letter-spacing: -0.03rem;
}

/* 4. Form Elements */

/* 4.1. Buttons */
button {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.btn {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    font-size: 1.3rem;
    color: var(--white);
    text-align: center;
    padding: 0 24px;
    border: 1px solid transparent;
    font-weight: bold;
    box-sizing: border-box;
    white-space: nowrap;
    font-family: var(--sans-serif);
    line-height: 1.4;
    height: 41px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn:not(.btn-no-hover):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    border-radius: 40px;
    z-index: -2;
}

.btn:not(.btn-no-hover):before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--blue-hover);
    transition: all .3s ease;
    border-radius: 40px;
    z-index: -1;
}

@media (hover: hover) {
    .btn:not(.btn-no-hover):hover:before {
        width: 100%;
    }
}

.btn-secondary {
    padding-left: 20px;
    padding-right: 20px;
    height: 34px;
    background-color: var(--white);
    border: none;
    color: var(--orange);
    font-size: 1.2rem;
    transition: color 0.25s ease;
}

.btn.btn-secondary:not(.btn-no-hover):before {
    background-color: #fff4ec;
}

.btn.btn-secondary:not(.btn-no-hover):after {
    background-color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--blue);
    color: var(--blue);
    transition: color 0.25s ease;
}

.dropdown.show .btn-outline {
    color: var(--blue);
}

.btn-outline .icon-arrow-path,
.btn-outline .icon-triangle-path,
.btn-outline .svg-icon__close path,
.btn-outline .icon-arrow .icon-arrow-path,
.btn-outline .download-icon .download-icon__fill {
    transition: fill 0.25s ease;
    fill: var(--blue);
}

.btn-outline:not(.btn-no-hover):after {
    background-color: transparent;
}

.btn-outline:not(.btn-no-hover):before {
    background-color: var(--blue);
    height: calc(100% + 2px);
    bottom: -1px;
    left: -1px;
}

@media (hover: hover) {
    .btn-outline:not(.btn-no-hover):hover:before {
        width: calc(100% + 2px);
    }

    .dropdown.show .btn-outline:not(.btn-no-hover):hover:before {
        width: 0;
    }

    .btn-outline:hover {
        color: var(--white);
    }
}

.btn-outline path {
    transition: fill 0.25s ease;
}

@media (hover: hover) {
    .btn-outline:hover .icon-arrow-path,
    .btn-outline:hover .icon-triangle-path,
    .btn-outline:hover .svg-icon__close path,
    .btn-outline:hover .icon-arrow .icon-arrow-path,
    .btn-outline:hover .download-icon .download-icon__fill {
        fill: var(--white);
    }

    .dropdown.show .btn-outline:hover .icon-triangle-path {
        fill: var(--blue);
    }
}

.btn-outline.btn-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline.btn-white .icon-arrow .icon-arrow-path {
    fill: var(--white);
}

.btn-outline.btn-white:not(.btn-no-hover):before {
    background-color: var(--white);
}

@media (hover: hover) {
    .btn-outline.btn-white:hover {
        color: var(--black);
    }

    .btn-outline.btn-white:hover .icon-arrow-path {
        fill: var(--black);
    }
}

/*.btn-outline.btn-white:before,*/
/*.btn-outline.btn-white:after {*/
/*    content: none;*/
/*}*/

.btn.dropdown-toggle {
    padding-right: 17px;
    position: relative;
    border-color: transparent;
    z-index: 11;
    width: 100%;
}

.btn.dropdown-toggle .icon-triangle {
    margin-left: 15px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.btn-secondary.dropdown-toggle .icon-triangle-path {
    fill: var(--orange);
}

.btn.dropdown-toggle.show .icon-triangle {
    transform: rotate(180deg);
}

.btn.btn-orange {
    background-color: var(--orange);
}

.btn.btn-orange:not(.btn-no-hover):after {
    background-color: var(--orange);
}

.btn.btn-orange:not(.btn-no-hover):before {
    background-color: var(--orange-hover);
}

.btn-icon, .quotes-slider .slick-arrow {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-close {
    width: 21px;
    height: 21px;
}

.btn-close svg {
    width: 17px;
    height: auto;
}

.buttons-wrap {
    display: flex;
    align-items: center;
    margin-left: -5px;
    margin-right: -5px;
}

.buttons-wrap .btn {
    flex-grow: 1;
    margin-left: 5px;
    margin-right: 5px;
}

.btn.new-tab-link .icon-arrow {
    transform: rotate(135deg) translateY(1px);
}

/* Back Button */

.btn-back {
    width: 41px;
    padding: 0;
    margin-right: 18px;
    flex-shrink: 0;
    transition: width 0.25s ease;
    overflow: hidden;
    justify-content: flex-start;
}

.section-score-rank-chart .btn-back {
    display: none;
}

@media (hover: hover) {
    .btn-back:hover {
        width: 130px;
    }

    .btn-back:hover .label {
        opacity: 1;
    }
}

.btn-back .label {
    position: absolute;
    left: 42px;
    opacity: 0;
    transition: opacity 0.3s linear;
    pointer-events: none;
}

.btn-back .icon-arrow {
    margin-left: 10px;
}

.btn-back.right .icon-arrow {
    transform: rotate(180deg);
    margin-left: auto;
    margin-right: 10px;
}

.btn-back.right .label {
    left: auto;
    right: 42px;
}

/* Button has icon */

.btn-has-icon {
    padding-right: 18px;
    justify-content: space-between;
}

.btn-has-icon svg {
    margin-left: 10px;
}

.btn-has-icon .icon-arrow {
    transform: rotate(180deg);
}

.btn-link {
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.btn .icon-plus {
    margin-left: 5px;
}

.btn:disabled {
    background-color: var(--grey);
    cursor: default;
    opacity: 0.4;
}

.btn:disabled:before,
.btn:disabled:after {
    content: none;
}

/* 4.2. Inputs */
:focus {
    outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--black);
    opacity: 1 !important;
}

::-moz-placeholder { /* Firefox 19+ */
    color: var(--black);
    opacity: 1 !important;
}

:-ms-input-placeholder { /* IE 10+ */
    color: var(--black);
    opacity: 1 !important;
}

:-moz-placeholder { /* Firefox 18- */
    color: var(--black);
    opacity: 1 !important;
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="search"], textarea {
    border: none;
    background-color: var(--white);
    font-size: 1.4rem;
    padding: 12px 18px;
    margin: 0;
    font-family: var(--sans-serif);
    border-radius: 4px;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

select {
    position: relative;
    cursor: pointer;
    border: none;
    font-size: 1.4rem;
    height: 40px;
    padding-left: 18px;
    padding-right: 35px;
    -webkit-appearance: none;
    appearance: none;
    width: 240px;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: var(--white);
}

input[type='checkbox'] {
    margin: 0;
    padding: 0;
    cursor: pointer;
}

/* Custom checkbox */
label.custom-checkbox {
    display: block;
    width: fit-content;
}

label.custom-checkbox span {
    display: flex;
    align-items: center;
    line-height: 13px;
    cursor: pointer;
}

label.custom-checkbox span:before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9px;
    height: 9px;
    border: 1px solid var(--grey);
    margin-right: 7px;
    margin-top: -2px;
    font-size: 1rem;
    font-weight: bold;
    font-family: system-ui, sans-serif;
    flex-shrink: 0;
}

label.custom-checkbox :checked + span:before {
    content: "✓";
    color: var(--blue);
    border-color: var(--blue);
}

label.custom-checkbox :disabled + span {
    opacity: 0.5;
    cursor: default;
}

label.custom-checkbox input {
    position: absolute;
    opacity: 0;
}

/* Custom radio */
label.custom-radio {
    display: block;
    width: fit-content;
}

label.custom-radio span {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
}

label.custom-radio span:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--black);
    border-radius: 50%;
    margin-right: 5px;
}

label.custom-radio span:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background-color: var(--black);
    opacity: 0;
    transition: opacity 0.3s ease;
}

label.custom-radio :checked + span:after {
    opacity: 1;
}

label.custom-radio :disabled + span {
    opacity: 0.5;
    cursor: default;
}

label.custom-radio input {
    display: none;
}

/* Inline form */
.form-inline label:not(.custom-checkbox) {
    display: none;
}

.form-inline a {
    text-decoration: underline;
}

.form-inline .fields-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.form-inline .fields-wrap .field.fullwidth {
    width: 100%;
}

.form-inline .field:not(.field-checkbox) {
    position: relative;
    padding: 7px 5px;
    width: 50%;
    box-sizing: border-box;
}

.form-inline .field-checkbox {
    padding-top: 7px;
    padding-bottom: 15px;
    font-size: 1.1rem;
}

.form-inline .field input,
.form-inline .field textarea,
.form-inline .field select {
    width: 100%;
}

.form-inline .field textarea {
    resize: vertical;
    max-height: 500px;
    min-height: 100px;
}

.form-inline .field-select:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--black);
    margin-top: -2px;
}

.form-content-thank-you {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    padding: 30px 30px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-thank-you .email-address {
    margin: 25px 0;
}

.success .newsletter-form-container {
    opacity: 0;
}

.success .form-content-thank-you {
    opacity: 1;
    pointer-events: all;
}

.form-inline .action {
    text-align: right;
}

input.wpcf7-not-valid::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ff5a70;
}

input.wpcf7-not-valid::-moz-placeholder { /* Firefox 19+ */
    color: #ff5a70;
}

input.wpcf7-not-valid:-ms-input-placeholder { /* IE 10+ */
    color: #ff5a70;
}

input.wpcf7-not-valid:-moz-placeholder { /* Firefox 18- */
    color: #ff5a70;
}

.form-inline .field-checkbox.invalid a {
    color: #ff5a70;
}

.field-checkbox.invalid input[type='checkbox'] + span:before {
    border-color: #ff5a70;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    display: none;
}

/* wpcf7 spinner */
.wpcf7 .action {
    position: relative;
}

.wpcf7 .action .wpcf7-spinner {
    visibility: hidden;
    opacity: 0.75;
    border: none;
    border-radius: 100%;
    padding: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(./assets/images/dots-loader-white.svg) no-repeat center;
    background-size: 30px 20px;
    width: 40px;
    height: 20px;
    pointer-events: none;
    margin: 0;
    z-index: 10;
}

.wpcf7 .action .wpcf7-spinner::before {
    content: none;
}

.wpcf7-form.submitting .action .wpcf7-submit {
    font-size: 0;
}

.wpcf7-form.submitting .wpcf7-spinner {
    visibility: visible;
}

/* Dataset toggle */
.chart-dataset-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chart-dataset-toggle .custom-radio-hidden {
    cursor: pointer;
}

.chart-dataset-toggle .custom-radio-hidden input {
    display: none;
}

.dataset-toggle-input {
    position: relative;
    display: block;
    width: 27px;
    height: 14px;
    border: 1px solid var(--black);
    border-radius: 8px;
    box-sizing: border-box;
    margin-left: 8px;
    margin-right: 8px;
}

.dataset-toggle-input:after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    width: 10px;
    height: 10px;
    background-color: var(--black);
    border-radius: 50%;
    transition: transform 0.3s ease;
    left: 1px;
}

.right .dataset-toggle-input:after {
    transform: translateX(13px);
}

/* 4.3. Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown.show {
    z-index: 99;
}

.dropdown.showing {
    z-index: 100;
}

.dropdown-shown {
    z-index: var(--z-index);
}

.dropdown .dropdown-menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    margin: 0;
    border-radius: 20px;
    border: 1px solid var(--blue);
    padding: 0 24px 17px;
    font-size: 1.2rem;
    color: var(--grey);
    width: 100%;
    height: 41px;
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
    transition: 0.3s background-color 0.2s ease, height 0.3s ease;
}

.dropdown.showing .dropdown-menu {
    transition: background-color 0.2s ease, height 0.3s ease;
}

.dropdown .btn-secondary + .dropdown-menu {
    height: 34px;
    background-color: var(--white);
    transition: height 0.3s ease;
}

.nav-item-download .dropdown-toggle {
    border: none;
    width: calc(100% - 2px);
    margin-left: 1px;
}

.nav-item-download .dropdown-toggle + .dropdown-menu {
    border-color: var(--orange);
}

.dropdown.showing .btn-secondary + .dropdown-menu {
    transition: height 0.3s ease;
}

/*.dropdown .btn-secondary + .dropdown-menu:before {
    height: 41px;
}*/

.dropdown .dropdown-menu:before {
    content: "";
    display: block;
    width: 100%;
    height: 34px;
}

.btn-outline + .dropdown-menu:before {
    height: 39px;
}

.dropdown .dropdown-menu a {
    color: var(--orange);
}

.dropdown .btn-outline + .dropdown-menu a {
    color: var(--blue);
}

@media (hover: hover) {
    .dropdown .dropdown-menu a:hover {
        text-decoration: underline;
    }
}

.dropdown .dropdown-menu li + li {
    margin-top: 7px;
}

.dropdown .dropdown-menu li.active:first-child + li {
    margin-top: 0;
}

.dropdown .dropdown-menu li.active {
    display: none;
}

.dropdown .dropdown-menu.show {
    height: var(--height);
    background-color: var(--white);
    pointer-events: all;
}

.dropdown.compare-dropdown {
    width: 125px;
    transition: width 0.3s ease;
}

.dropdown.companies-dropdown {
    width: 185px;
    transition: width 0.3s ease;
}

.dropdown.compare-dropdown.show {
    width: 210px;
}

.compare-dropdown.dropdown .dropdown-toggle + .dropdown-menu {
    padding: 0;
}

.compare-dropdown.dropdown.showing .dropdown-toggle + .dropdown-menu {
    transition: 0.3s background-color 0.2s ease, 0.3s height 0.3s ease;
}

.compare-dropdown.dropdown.showing .dropdown-toggle:after,
.companies-dropdown.dropdown.showing .dropdown-toggle:after {
    transition: 0.3s transform 0.2s ease;
}

.companies-dropdown.dropdown.showing .dropdown-toggle + .dropdown-menu {
    transition: background-color 0.2s ease, height 0.3s ease;
}

.companies-dropdown.dropdown.showing .dropdown-toggle:after {
    transition: transform 0.2s ease;
}

.dropdown .companies-search,
.dropdown .compare-search {
    position: relative;
    border-bottom: 1px solid #F4F4F4;
}

.dropdown .companies-search input,
.dropdown .compare-search input {
    font-size: 1.2rem;
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 9px 10px 9px 35px;
}

.dropdown .companies {
    max-height: 140px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.dropdown .compare-companies {
    padding: 13px;
    height: 200px;
    overflow-y: auto;
    position: relative;
}

.dropdown .compare-companies ul {
    position: absolute;
    padding-bottom: 12px;
}

.dropdown .companies-search .icon-search,
.dropdown .compare-search .icon-search {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.dropdown .compare-action {
    padding: 14px 25px 14px;
    border-top: 1px solid #F4F4F4;
}

.dropdown .compare-action .btn {
    height: 34px;
    font-size: 1.2rem;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
}

.companies-dropdown .dropdown-menu {
    padding-left: 13px;
    padding-right: 13px;
}

.dropdown .companies-search {
    margin-left: -13px;
    margin-right: -13px;
    margin-bottom: 13px;
}

.companies-dropdown .companies a {
    color: var(--black) !important;
    display: flex;
}

.companies-dropdown .companies .company-title {
    font-weight: 700;
}

.companies-dropdown .companies .year {
    margin-left: auto;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.companies-dropdown .companies .year .icon-arrow {
    transform: rotate(135deg);
    width: 17px;
    height: auto;
    margin-left: 10px;
}

.companies-dropdown .companies .year .icon-arrow-path {
    fill: var(--blue);
}

.companies-dropdown .btn.dropdown-toggle {
    justify-content: space-between;
}

/* 5. Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.header.sticky-header-out {
    transform: translateY(-100%);
    opacity: 0;
}

.animated .header.sticky-header-out {
    opacity: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 16px 48px;
    background-color: var(--orange);
}

.header .logo {
    margin-top: -36px;
    margin-bottom: -58px;
    flex-shrink: 0;
    width: 190px;
}

.header .logo .logo-img-mobile {
    display: none;
    width: 115px;
}

.header .logo img {
    display: block;
    box-shadow: 0 0 35px -25px #000;
}

.header .logo .logo-img {
    max-width: 86px;
}

.header .report .dropdown-toggle:after {
    border-top-color: var(--orange);
}

.header .nav-button .btn {
    padding-right: 10px;
}

.header .nav-button .short-title {
    display: none;
}

.header .nav-button .icon-arrow,
.header .header-button .icon-arrow {
    width: 17px;
    height: auto;
    margin-top: -1px;
}

.header .nav-button .icon-arrow-path {
    fill: var(--orange);
}

.header .header-button .icon-arrow-path {
    fill: var(--blue);
}

.header .header-button .btn {
    color: var(--blue);
    height: 41px;
}

.burger-button {
    display: none;
    padding: 10px;
    width: 44px;
    height: 36px;
    position: relative;
    transform: rotate(0deg);
    transition: .3s ease-in-out;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
    background: none;
}

.burger-button span {
    display: block;
    position: absolute;
    height: 2px;
    width: 22px;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .2s ease-in-out;
    background-color: var(--white);
}

.burger-button span:nth-child(1) {
    top: 10px;
    left: 10px;
}

.burger-button span:nth-child(2), .burger-button span:nth-child(3) {
    top: 16px;
    left: 10px;
}

.burger-button span:nth-child(4) {
    top: 22px;
    left: 10px;
}

.burger-button.btn-open span:nth-child(1) {
    top: 16px;
    width: 0;
    left: 50%;
}

.burger-button.btn-open.btn-close span {
    background-color: var(--white) !important;
}

.burger-button.btn-open span:nth-child(2) {
    transform: rotate(45deg);
}

.burger-button.btn-open span:nth-child(3) {
    transform: rotate(-45deg);
}

.burger-button.btn-open span:nth-child(4) {
    top: 10px;
    width: 0;
    left: 50%;
    opacity: 0;
}

/* Top Bar */
.header-top-bar {
    display: none;
    background-color: var(--blue);
    position: relative;
    padding-top: 5px;
    padding-bottom: 6px;
}

.top-bar-active .header-top-bar {
    display: block;
}

.header-top-bar-text {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.header-top-bar-text a {
    color: var(--white);
}

.header-top-bar .btn-close {
    position: absolute;
    top: 49%;
    right: 3px;
    transform: translateY(-50%);
}

.header-top-bar .btn-close path {
    fill: var(--white);
}

/* Main Menu */
.header .nav {
    display: flex;
    align-items: center;
}

.header .header-button,
.header .contact {
    display: none;
}

.main-menu {
    display: flex;
    font-weight: 700;
}

.main-menu li {
    margin-left: 28px;
    margin-right: 28px;
}

.main-menu a {
    color: var(--white);
    text-decoration: underline;
    transition: text-decoration-color .25s ease-out;
    text-decoration-color: transparent;
    -webkit-text-decoration-color: transparent;
    -moz-text-decoration-color: transparent;
}

.main-menu a:hover {
    text-decoration-color: inherit;
    -webkit-text-decoration-color: inherit;
    -moz-text-decoration-color: inherit;
}

.main-menu .current-menu-item a,
.main-menu .current_page_parent a,
.main-menu .current-page-ancestor a {
    text-decoration: underline;
}

/* 6. Footer */
.footer {
    background-color: var(--orange);
    color: var(--white);
    position: relative;
}

.footer a:not(.btn) {
    color: var(--white);
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .footer a:not(.btn):hover {
        opacity: 0.8;
    }
}

.footer h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-contact p + p {
    margin-top: 15px;
}

.footer-some p + p {
    margin-top: 3px;
}

.footer-some a {
    display: inline-flex;
    align-items: center;
}

.footer-some .svg-icon {
    margin-right: 8px;
    width: 15px;
    max-height: 15px;
    height: auto;
    transform: translateY(-1px);
}

.footer-newsletter .btn {
    min-width: 190px;
    padding-right: 12px;
}

.footer .row-top {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer .row-top .content-column {
    font-size: 1.2rem;
}

.footer .row-bottom {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.footer .row-bottom:before {
    content: "";
    width: calc(100% - 30px);
    height: 1px;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 15px;
}

.copyright {
    text-align: right;
}

/* Share buttons */

.sticky-share {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    color: var(--orange);
    font-size: 1.2rem;
    width: 30px;
    transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
    z-index: 10;
}

.sticky-share.fixed {
    position: absolute;
    bottom: calc(25px + var(--padding-bottom));
}

.entry-share .share-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-share .btn-share {
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    border: none;
    transition: 0.4s ease;
}

@media (hover: hover) {
    .entry-share .btn-share:hover {
        transform: scale(1.1);
    }
}

.entry-share .btn-share.toggle {
    z-index: 1;
    position: absolute;
    bottom: 0;
}

.sticky-share .btn-share + .btn-share {
    margin-top: 6px;
}

.entry-share .btn-share svg {
    max-height: 11px;
}

.entry-share .btn-share path,
.entry-share .btn-share polygon {
    fill: var(--orange);
}

.entry-share .btn-share.copied {
    animation: bounce 0.5s linear;
}

.share-buttons.collapsing .btn-share[data-type="copy"],
.share-buttons.collapsed .btn-share[data-type="copy"],
.share-buttons.expanding .btn-share[data-type="copy"] {
    transform: translateY(0);
}

.share-buttons.collapsing .btn-share[data-type="linkedin"],
.share-buttons.collapsed .btn-share[data-type="linkedin"],
.share-buttons.expanding .btn-share[data-type="linkedin"] {
    transform: translateY(36px);
}

.share-buttons.collapsing .btn-share[data-type="twitter"],
.share-buttons.collapsed .btn-share[data-type="twitter"],
.share-buttons.expanding .btn-share[data-type="twitter"] {
    transform: translateY(72px);
}

.share-buttons.collapsing .btn-share[data-type="facebook"],
.share-buttons.collapsed .btn-share[data-type="facebook"],
.share-buttons.expanding .btn-share[data-type="facebook"] {
    transform: translateY(108px);
}

.share-buttons.collapsing .btn-share.toggle {
    opacity: 1 !important;
}

.share-buttons.collapsed .btn-share.toggle {
    transform: scale(1.35);
    opacity: 1;
}

@media (hover: hover) {
    .share-buttons.collapsed .btn-share.toggle:hover {
        transform: scale(1.45);
    }
}

.share-buttons.expanding .btn-share.toggle {
    transform: scale(1);
    opacity: 1;
}

@media (hover: hover) {
    .share-buttons.expanding .btn-share.toggle:hover {
        transform: scale(1);
        opacity: 1;
    }
}

.share-buttons.expanded .btn-share.toggle {
    opacity: 0;
    pointer-events: none;
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(1.15);
    }
    34% {
        transform: scale(1.35);
    }
    65% {
        transform: scale(0.9);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1.15);
    }
    34% {
        transform: scale(1.35);
    }
    65% {
        transform: scale(0.9);
    }
}

/* 7. Scorecard Table */

.page-scorecard .page-intro {
    margin-top: -68px;
    margin-bottom: 30px;
    min-height: 480px;
    background-position: 60% bottom;
    height: 40vw;
}

.top-bar-active .page-scorecard .page-intro {
    height: 40vw;
}

.page-scorecard .page-intro .page-intro-title {
    font-size: 5rem;
    line-height: 1.15;
    letter-spacing: -2px;
    max-width: 720px;
    margin-bottom: 20px;
}

.page-scorecard .page-intro .page-intro-subtitle {
    max-width: 670px;
    font-size: 1.6rem;
}

.companies-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.companies-head > .btn {
    margin-left: 10px;
    margin-right: 10px;
}

.companies-table-wrap {
    margin-bottom: 60px;
    min-width: 1050px;
}

#companies-table th:first-child,
#companies-table td:first-child {
    min-width: 180px;
}

#companies-table tr {
    cursor: pointer;
    background-color: var(--white);
}

#companies-table td {
    transition: background-color 0.2s ease;
}

#companies-table tr:hover td {
    background-color: rgba(242, 242, 242, 0.4);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.scrollable-wrap .table,
.scrollable-wrap.disabled .table {
    table-layout: fixed;
}

.scrollable-wrap.initialized .table {
    table-layout: auto;
}

.table th,
.table td {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 400;
    padding: 15px 22px;
}

.table th:first-child,
.table td:first-child {
    text-align: left;
}

.table th {
    background-color: #F2F2F2;
}

.table td {
    background-color: #FFFFFF;
    border-bottom: 2px solid #F8F8F8;
}

.table .col-country img {
    width: 32px;
}

.table .col-rank {
    font-weight: 700;
}

@media (hover: hover) {
    .table .col-rank a:hover {
        text-decoration: none;
    }
}

.table .company-score {
    font-size: 1.8rem;
}

.table .score-max {
    font-size: 1rem;
    color: #666666;
}

.table .company-risk {
    font-size: 1rem;
    margin-top: 2px;
}

.table .sortable span {
    cursor: pointer;
    white-space: nowrap;
}

.table .sortable.asc path.icon-sort-down {
    fill: var(--black);
}

.table .sortable.desc path.icon-sort-up {
    fill: var(--black);
}

.table td .company-score .score-current {
    font-size: 1.8rem;
    padding: 2px 5px;
    border-radius: 10px;
    font-family: arial, sans-serif;
}

.table td.low .company-score .score-current {
    color: #fff;
    background-color: #FECC4E;
}

.table td.moderate .company-score .score-current {
    color: #fff;
    background-color: var(--orange);
}

.table td.high .company-score .score-current {
    color: #fff;
    background-color: #E64126;
}

#companies .scroll-arrows {
    display: none;
}

/* 8. Sections */

.section-head {
    text-align: center;
    padding-bottom: 20px;
}

.section-title {
    font-size: 5rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.section-notice {
    font-size: 1.2rem;
    color: #707070;
    margin-bottom: -15px;
    padding-top: 15px;
    font-style: italic;
}

.section-head .text {
    font-size: 2rem;
    padding-bottom: 30px;
    padding-top: 10px;
}

.section-head .section-subtitle {
    font-size: 3rem;
}

.section-head .text + .section-subtitle {
    padding-top: 30px;
}

/* 8.1. Earlier Reports */
.section-earlier-reports {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--black);
}

.section-earlier-reports .section-head {
    padding-bottom: 0;
}

.section-earlier-reports .section-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.report-items {
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 5px;
}

.report-item {
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* 8.2. Our partners */
.section-our-partners {
    /*margin-top: 50px;*/
    margin-bottom: 50px;
    padding: 40px 35px;
    background-color: var(--white);
}

.section-our-partners .section-title {
    text-align: center;
    font-size: 3rem;
}

.section-our-partners .section-subtitle {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.partner-item img {
    transition: filter 0.3s ease;
    filter: grayscale(1);
    display: block;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    max-height: 78px;
    width: auto;
}

@media (hover: hover) and (min-width: 641px) {
    .partner-item:hover img {
        filter: grayscale(0);
    }
}

.partners-row {
    justify-content: center;
}

/* 8.3. Page Intro */
.page-intro {
    position: relative;
    margin-top: -68px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 480px;
    background-position: right bottom;
    height: calc(var(--vh, 1vh) * 100 - 66px);
}

.top-bar-active .page-intro {
    height: calc(var(--vh, 1vh) * 100 - 86px);
}

.page-intro:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent linear-gradient(243deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 100%) 0 0 no-repeat;
}

.page-intro .container {
    position: relative;
    flex-grow: 1;
}

.page-intro-header {
    color: var(--white);
}

.page-intro-title {
    letter-spacing: -2px;
    max-width: 900px;
    font-size: 7rem;
    margin-bottom: 20px;
    line-height: 1;
}

.page-intro-subtitle {
    max-width: 670px;
    font-size: 1.6rem;
}

.page-intro-content {
    color: var(--white);
    font-size: 2rem;
    max-width: 850px;
}

.page-intro-content a {
    color: var(--white);
}

.page-intro-content .btn {
    margin-top: 30px;
    min-width: 150px;
}

@media (min-width: 641px) {
    .page-intro-subtitle {
        height: auto !important;
    }
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 2;
}

.scroll-down.bounce {
    animation: shake 2.5s 0s infinite;
}

.scroll-down.show {
    opacity: 1;
    pointer-events: all;
}

.scroll-down-btn {
    display: flex;
    padding: 5px;
}

.scroll-down-btn .icon-arrow {
    transform: rotate(-90deg);
    width: 30px;
    height: auto;
}

@keyframes shake {
    0% {
        transform: translateY(-0px);
    }
    75% {
        transform: translateY(-0px);
    }
    85% {
        transform: translateY(-7px);
    }
    90% {
        transform: translateY(3px);
    }
    95% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(-0px);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: translateY(-0px);
    }
    75% {
        transform: translateY(-0px);
    }
    85% {
        transform: translateY(-7px);
    }
    90% {
        transform: translateY(3px);
    }
    95% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(-0px);
    }
}

/* 8.4. Methodology */
.white-bg {
    background-color: var(--white);
    padding: 25px 15px;
}

.section-methodology {
    margin-bottom: 15px;
}

.page-scorecard .section-methodology {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--black);
    margin-bottom: 40px;
}

.section-methodology .section-head {
    padding-bottom: 0;
}

.section-methodology .section-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.section-methodology .section-text {
    margin-bottom: 15px;
}

/* 8.5. Statistic */
.section-statistic .section-head {
    padding-bottom: 15px;
}

.section-statistic .section-title {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.section-statistic {
    padding-bottom: 35px;
}

.section-statistic .content-area-inner svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

.section-statistic .section-head {
    display: flex;
    align-items: flex-end;
}

.section-statistic .years {
    display: flex;
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: 700;
}

.section-statistic .years li {
    display: flex;
    align-items: center;
}

.section-statistic .years li + li {
    margin-left: 10px;
}

.section-statistic .years li:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 3px;
}

.section-statistic .years li:nth-child(1):before {
    background-color: #DF3423;
}

.section-statistic .years li:nth-child(2):before {
    background-color: #F28C1B;
}

.section-statistic .years li:nth-child(3):before {
    background-color: #F7A823;
}

.section-statistic .years li:nth-child(4):before {
    background-color: #FACA53;
}

.section-statistic .years li:nth-child(5):before {
    background-color: #FFE452;
}

/* 8.6. Exit Policies */

.section-exit-policies {
    padding-bottom: 40px;
}

.page-template-front-page .section-exit-policies {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-exit-policies .section-title {
    text-align: center;
    font-size: 3rem;
}

.section-exit-policies .policy-item {
    text-align: center;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-left: 6px;
    padding-right: 6px;
}

.section-exit-policies .number-company {
    font-size: 1rem;
    text-transform: uppercase;
}

.section-exit-policies .number {
    font-size: 1.6rem;
}

.section-exit-policies .name {
    font-size: 2rem;
    letter-spacing: -0.05rem;
}

.section-exit-policies .exit-policies {
    max-width: 842px;
    margin-left: auto;
    margin-right: auto;
}

.section-exit-policies .lines {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 6px;
    padding-bottom: 12px;
}

.section-exit-policies .lines span {
    display: block;
    border-radius: 2px;
    height: 4px;
    background-color: #FECC4E;
    user-select: none;
}

.section-exit-policies .lines span + span {
    margin-top: 4px;
}

.section-exit-policies .policy-item:nth-child(2) .lines span {
    background-color: var(--orange);
}

.section-exit-policies .policy-item:nth-child(3) .lines span {
    background-color: #E64126;
}

/* 8.7. Testimonials */

.section-testimonials {
    position: relative;
    color: var(--white);
    padding-top: 75px;
    padding-bottom: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.section-testimonials:before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(184deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) 0% 0% no-repeat padding-box;
}

.section-testimonials .container {
    position: relative;
}

.section-testimonials .content-area-inner {
    padding-top: 40px;
}

.section-testimonials .section-title {
    max-width: 810px;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 20px;
}

.section-testimonials .section-text {
    font-size: 2rem;
    max-width: 750px;
}

.section-testimonials .section-text p {
    margin-bottom: 10px;
}

.section-testimonials .section-text h2 {
    font-size: 2rem;
}

.quotes-slider {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.quote-item {
    text-align: center;
    display: none;
}

.quote-item:first-child {
    display: block;
}

.slick-initialized .quote-item {
    display: block;
}

.quote-item .text {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.quote-item .text:before {
    content: '“';
    font-size: 20rem;
    letter-spacing: -4px;
    color: var(--orange);
    line-height: 1;
    display: inline-block;
    width: 76px;
    height: 77px;
    overflow: hidden;
    transform: translateY(-20px);
}

.quote-item .name {
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 700;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.quotes-slider .slick-arrow {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background: url('./assets/images/arrow-right.svg') no-repeat center center;
}

.quotes-slider .slick-prev {
    transform: rotate(180deg);
}

.quotes-slider .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.quotes-slider .paged {
    font-size: 1.3rem;
    padding-right: 10px;
    padding-left: 10px;
}

/* 8.8. Demands */

.section-demands .section-title {
    font-size: 4rem;
    margin-bottom: 0;
}

.section-demand-title {
    color: var(--white);
    padding-top: 25px;
}

.section-demands {
    color: var(--white);
    padding-top: 25px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.section-demands .container {
    padding-top: 50px;
}

.section-demands .section-head {
    border-top: 1px solid var(--white);
    padding-top: 65px;
    padding-bottom: 50px;
}

.section-demands .section-head h4 {
    line-height: 1.2;
}

.section-demand-title .section-head {
    padding-top: 50px;
    padding-bottom: 40px;
}

.demands-item .number {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
}

.demands-item .text {
    font-size: 2rem;
}

.demands-button-wrap {
    text-align: center;
    padding-top: 45px;
}

/* 8.9. Latest News */
.section-latest-news {
    padding-top: 70px;
}

.section-latest-news .section-head {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--black);
}

.section-latest-news .section-head .btn {
    margin-right: 10px;
}

.section-latest-news .section-head .btn.right {
    margin-right: 0;
    margin-left: auto;
}

.section-latest-news .section-title {
    font-size: 4rem;
    padding-right: 40px;
    margin-bottom: 0;
}

.article-post {
    display: flex;
}

.article-post + .article-post {
    margin-top: 34px;
}

.article-post .entry-thumbnail {
    margin-right: 40px;
    flex-basis: 35%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.article-post .entry-thumbnail img {
    display: block;
    border-radius: 8px;
    will-change: transform;
    transition: transform .25s ease-out;
    width: 100%;
}

.article-post .entry-post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 100%;
}

.article-post.has-post-thumbnail .entry-post {
    flex-basis: 65%;
}

.article-post .entry-date {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.article-post .entry-title {
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color .25s ease;
}

.article-post:hover .entry-thumbnail img {
    transform: scale(1.025);
}

.article-post:hover .entry-title {
    color: var(--orange);
}

.article-post .entry-excerpt,
.article-post .entry-bottom-meta,
.article-post .entry-bottom-meta a {
    color: var(--grey);
}

.article-post .entry-bottom-meta {
    font-size: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
}

.article-post .entry-bottom-meta .separator {
    margin-left: 6px;
    margin-right: 6px;
}

/* 8.10. Related articles */

.section-related .section-head {
    padding-bottom: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--black);
}

.section-related .section-title {
    font-size: 3rem;
    margin-bottom: 0;
}

/* 8.11. Report section */

.entry-section.section-report {
    margin-bottom: 0;
}

.section-report {
    margin-bottom: 50px;
}

.section-report .section-head {
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-report .section-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.section-report .section-text {
    margin-bottom: 15px;
}

.section-report .btn .icon-arrow {
    transform: rotate(135deg);
    width: 17px;
    height: auto;
    margin-top: -1px;
}

/* 8.12. Contact */

.section-contact .section-head {
    padding-bottom: 0;
}

.section-contact .section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-contact .content-area-inner {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid var(--black);
}

.section-contact .text a {
    color: var(--blue);
    text-decoration: underline;
}

.section-contact .text a:hover {
    text-decoration: none;
}

.section-contact-buttons {
    padding-top: 15px;
}

.section-contact-buttons .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.section-contact .wpcf7-form {
    max-width: 850px;
}

.section-contact .form-inline .wpcf7-submit {
    min-width: 160px;
}

.section-contact .form-inline .field-textarea label {
    display: inline-block;
    margin-bottom: 10px;
}

.wpcf7 form .wpcf7-response-output {
    display: none;
}

/* 9. Filter */
.sidebar-body .filter-body {
    display: flex;
    width: 100%;
}

.sidebar-body .filter-body > form {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.sidebar-body .filter-footer {
    margin-top: auto;
    padding: 13px 20px 20px;
    text-align: center;
    border-top: 1px solid var(--black);
}

.filter-footer .total-posts {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 10px;
}

.sidebar-body .filter-wrapper {
    max-height: calc(var(--vh, 1vh) * 100 - 180px);
    overflow-y: auto;
    padding: 20px;
}

.sidebar-body .filter-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.sidebar-body .filter-terms {
    padding-bottom: 12px;
}

.sidebar-body .taxonomy-filter ul {
    padding-left: 11px;
}

.taxonomy-filter .term-label {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--grey);
}

.btn-reset-filter {
    background-color: var(--white);
    color: var(--grey);
    font-weight: 400;
}

.taxonomy-search-wrap + .taxonomy-filter {
    background-color: var(--white);
    padding: 12px;
    border-radius: 0 0 4px 4px;
    display: none;
}

#filter_countries .taxonomy-filter {
    display: block;
}

.taxonomy-search-wrap + .taxonomy-filter > li > .term-label {
    color: var(--black);
}

.hierarchy .taxonomy-search-wrap + .taxonomy-filter > li {
    padding-bottom: 5px;
    display: none;
}

.taxonomy-search-wrap + .taxonomy-filter li {
    display: none;
}

#filter_countries .taxonomy-filter li {
    display: block;
}

.taxonomy-search-wrap + .taxonomy-filter > li > label.custom-checkbox span:before {
    border-color: var(--black);
}

.taxonomy-search-wrap + .taxonomy-filter > li > label.custom-checkbox :checked + span:before {
    border-color: var(--blue);
}

.taxonomy-search-wrap {
    background-color: var(--white);
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #F8F8F8;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
}

.taxonomy-search-wrap .icon-search {
    flex-shrink: 0;
    margin-right: 6px;
}

.taxonomy-search-wrap input {
    padding: 9px 0;
    flex-grow: 1;
    font-size: 1.2rem;
}

/* 10. Single Company */
.page-company .section-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    letter-spacing: normal;
}

.chart-container {
    position: relative;
    height: 100%;
    width: 100%;
}

#scorecard-criteria-modal .modal-dialog {
    width: 745px;
}

.modal-dialog p {
    margin-bottom: 20px;
}

.modal-dialog ul {
    list-style: disc;
    margin-bottom: 20px;
    margin-left: 15px;
}

.modal-dialog ul:last-child {
    margin-bottom: 0;
}

.modal-dialog ul li {
    line-height: 1.7;
}

/* Section Score Rank Chart */
.section-score-rank-chart,
.section-rank-over-time {
    background-color: var(--white);
    padding: 30px 15px;
    margin-bottom: 50px;
}

.chart-container .chart-tooltip {
    color: var(--black);
    position: absolute;
    transform: translate(-50%, -100%);
    transition: opacity .1s ease;
    opacity: 1;
    pointer-events: none;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 4px;
    background-color: var(--white);
    white-space: nowrap;
}

.chart-container .chart-tooltip .company-score {
    font-size: 2rem;
}

.chart-container .chart-tooltip .score-max {
    font-size: 1rem;
    color: var(--grey);
}

.chart-tooltip.chart-label {
    opacity: 0;
}

.chart-tooltip.chart-tooltip-rank {
    text-align: left;
}

.chart-tooltip .chart-tooltip-point {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.chart-tooltip .chart-tooltip-point .icon {
    width: 10px;
    height: 10px;
    display: block;
    margin-right: 5px;
    border-radius: 50%;
}

.chart-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.chart-categories-dropdown {
    display: none;
}

.chart-categories-dropdown .btn.dropdown-toggle {
    min-width: 225px;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--black);
    padding-left: 21px;
    padding-right: 16px;
    height: 34px;
    justify-content: space-between;
}

.chart-categories-dropdown .btn.dropdown-toggle .icon-triangle-path {
    fill: var(--black);
}

.dropdown.chart-categories-dropdown .dropdown-menu:before {
    height: 34px;
}

.chart-categories-dropdown .btn.dropdown-toggle:after {
    border-top-color: var(--black);
}

.chart-categories-dropdown .dropdown-menu {
    border-color: transparent;
    background-color: var(--white);
    text-align: left;
    height: 34px;
    padding-left: 21px;
    padding-right: 16px;
}

.dropdown.chart-categories-dropdown .dropdown-menu a {
    color: var(--black);
}

.chart-categories li {
    margin: 8px 15px;
}

.section-score-rank-chart .scroll-arrows {
    right: 50%;
    transform: translateX(50%);
    top: 35px;
}

.page-company .content-area-footer ul {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-company .content-area-footer ul li {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    line-height: 1.4rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.page-company .content-area-footer .icon {
    width: 14px;
    height: 14px;
    display: block;
    margin-right: 8px;
    border-radius: 50%;
}

.section-rank-over-time .chart-container .company-rank {
    white-space: nowrap;
}

.chart-container .chart-tooltip.chart-tooltip-first {
    transform: translate(7px, -100%);
}

.chart-container .chart-tooltip.chart-tooltip-last {
    transform: translate(calc(-100% - 7px), -100%);
}


/* Section Company Data */

.section-company-data {
    margin-bottom: 60px;
}

.section-company-data a {
    color: var(--orange);
    text-decoration: underline;
    white-space: nowrap;
}

.section-company-data a:hover {
    text-decoration: none;
}

.section-company-data p {
    font-size: 1.4rem;
}

/* Table View */
.table-view {
    border-radius: 4px 4px 0 0;
    background-color: var(--white);
    margin-bottom: 20px;
}

.table-view .table__head {
    background-color: #F2F2F2;
    font-size: 1.4rem;
}

.table-view .table__col {
    padding: 22px;
}

.table-view .table__row:not(.table__head) .table__col:first-child {
    font-weight: 700;
}

.table-view .table__head .table__col {
    padding-top: 15px;
    padding-bottom: 15px;
}

.table-view .table__row {
    display: flex;
}

.table-view .table__row:not(.table__head) {
    border-bottom: 2px solid #F8F8F8;
}

.table-view-2-column .table__col {
    width: 50%;
}

.table-view-2-column.table-company-info .table__col {
    width: 100%;
}

.table-view-3-column .table__col {
    width: 33.333%;
}

.table-view-3-column.table-company-policy .table__col:nth-child(1) {
    width: 50%;
}

.table-view-3-column.table-company-policy .table__col:nth-child(2) {
    width: 25%;
    text-align: center;
}

.table-view-3-column.table-company-policy .table__col:nth-child(3) {
    width: 25%;
    text-align: center;
}

.table-view .icon-arrow {
    transform: rotate(135deg);
    width: 22px;
    height: 22px;
    display: block;
}

.table-view .icon-arrow-path {
    fill: var(--blue);
}

.table-view .table__col-view {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 11. Page */
.page-template-default .container {
    max-width: 800px;
}

/* 12. Newsletter */
.page-template-newsletter .page-container .container {
    position: relative;
    max-width: 824px;
}

.newsletter-form-wrapper {
    padding-top: 20px;
    position: relative;
}

.newsletter-subtext {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--grey);
}

/* Past Issues section */
.section-past-issues {
    padding-top: 50px;
}

.section-past-issues .section-head {
    border-bottom: 1px solid var(--black);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.section-past-issues .section-title {
    font-size: 3rem;
    margin-bottom: 0;
}

.section-past-issues .issue-item {
    display: flex;
    margin-bottom: 30px;
    min-height: 180px;
}

.section-past-issues .issue-item .icon {
    position: absolute;
    bottom: 5px;
    right: 16px;
    opacity: 0.15;
}

.section-past-issues .issue-item .icon svg {
    width: auto;
    height: 100px;
}

.section-past-issues .issue-item-container {
    background-color: var(--blue);
    border-radius: 8px;
    padding: 30px;
    color: var(--white);
    flex-grow: 1;
    position: relative;
    transition: background 0.3s ease;
}

.section-past-issues .issue-item-container:hover {
    background-color: var(--blue-hover);
}

.section-past-issues .issue-item .icon-arrow {
    transform: rotate(135deg);
    position: absolute;
    top: 20px;
    right: 20px;
    width: 17px;
    height: 17px;
}

.section-past-issues .issue-item a {
    color: var(--white);
}

.section-past-issues .issue-item .date {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: block;
}

.section-past-issues .issue-item .title {
    font-size: 2.4rem;
    line-height: 1.1;
    letter-spacing: -0.05rem;
}

/* Cookie Policy */
.cookie-policy article {
    background-color: #fff;
    padding: 20px;
}

.cookie-policy article p {
    margin-bottom: 20px;
}

.cookie-policy article ul {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 20px;
}

.cookie-policy article ul li {
    padding-left: 12px;
    line-height: 1.7;
    padding-left: 0;
}

/* 13. Single Post */
.single-post .btn-back {
    position: absolute;
    left: 48px;
}

.entry-container {
    max-width: 824px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
}

.entry-meta {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.entry-meta a,
.entry-meta span + span {
    color: #848484;
}

.entry-meta .separator.bar {
    margin-left: 10px;
    margin-right: 10px;
}

.entry-content {
    font-size: 1.6rem;
}

.entry-content a {
    color: var(--orange);
    text-decoration: underline;
}

.entry-content a:hover {
    text-decoration: none;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2 {
    margin-bottom: 15px;
}

.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 30px;
}

.entry-content figure {
    padding-top: 10px;
    padding-bottom: 30px;
    max-width: 100%;
}

.entry-content figcaption {
    font-size: 1.2rem;
    color: #ADADAD;
}

.entry-content img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.entry-content ul {
    list-style: disc outside;
    margin-bottom: 20px;
    margin-left: 50px;
}

.entry-content ol {
    list-style: decimal outside;
    margin-bottom: 20px;
    margin-left: 50px;
}

.entry-content ul li,
.entry-content ol li {
    line-height: 1.7;
    padding-left: 0;
    margin-bottom: 10px;
}

.entry-quote-item {
    display: flex;
    margin: 40px 0;
    margin-left: -90px;
    clear: both;
}

.quote-author {
    flex-shrink: 0;
    flex-basis: 190px;
    box-sizing: border-box;
    border-right: 4px solid var(--orange);
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-right: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    line-height: 1.2;
}

.quote-author .photo {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.quote-author .photo img {
    display: block;
}

.quote-author .name {
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 4px;
}

.quote-author .title {
    font-size: 1.2rem;
    color: #6C6C6C;
}

.quote-text {
    font-size: 1.6rem;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: -0.05rem;
}

.quote-text p {
    margin-bottom: 9px;
}

.entry-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--black);
}

.entry-section .section-head {
    padding-bottom: 15px;
}

.entry-section .section-title {
    font-size: 2rem;
    letter-spacing: -0.05rem;
    margin-bottom: 0;
}

.entry-section.press-release-section a {
    color: var(--blue);
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

.entry-section.press-release-section a:hover {
    text-decoration: none;
}

.entry-section.companies-section {
    padding-top: 30px;
}

.entry-section.companies-section .btn {
    margin-right: 6px;
    margin-bottom: 10px;
}

.entry-container .entry-share {
    display: none;
}

/* WP Editor styles */

.entry-content img.alignleft {
    margin-right: 30px;
    margin-bottom: 30px;
    display: inline;
    float: left;
}

.entry-content img.alignright {
    margin-left: 1em;
    display: inline;
    float: right;
}

.entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}

/* 14. Latest Page */

.page-header.has-filter {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--black);
    margin-bottom: 30px;
}

.page-header.has-filter .page-title {
    font-size: 4rem;
    margin-right: 25px;
    margin-bottom: 0;
}

.page-header .filter-btn {
    margin-left: 20px;
    min-width: 90px;
}

.filter-selected-terms {
    overflow: hidden;
    width: 100%;
}

.header-selected-terms .filter-selected-terms {
    display: none;
}

.selected-terms-list {
    display: flex;
}

.selected-terms-list .term-label {
    margin-right: 10px;
}

.term-label .term {
    display: none;
}

.term-label .svg-icon__close {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.term-label .svg-icon__close path {
    fill: var(--blue);
}

.term-label .btn {
    padding-right: 16px;
}

.load-more-pagination {
    text-align: center;
    padding-top: 30px;
}

.load-more-progress {
    margin-bottom: 10px;
}

/* 15. About Page */
.page-template-about .page-intro:before {
    background: transparent linear-gradient(184deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) 0 0 no-repeat padding-box;
}

.home .page-container,
.page-template-about .page-container,
.page-template-newsletter .page-container,
.page-template-scorecard .page-container,
.page-template-campaign .page-container {
    padding-top: 0;
}

.page-template-about .section-demands .section-head,
.page-template-about .section-demand-title .section-head {
    max-width: 800px;
    padding-bottom: 20px;
}

.page-template-about .section-demands,
.page-template-about .section-demands .container,
.page-template-about .section-demands .section-head {
    padding-top: 0;
}

.page-template-about .section-demands .section-head {
    padding-top: 20px;
    border-top: none;
}

.page-template-about .section-demand-title .section-head {
    padding-bottom: 0;
}

.page-template-about .container-partners {
    padding-top: 50px;
}

.page-template-about .demands-item {
    margin-bottom: 30px;
    display: flex;
}

.page-template-about .demands-item-container {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
}

.page-template-about .section-demands {
    padding-bottom: 60px;
}

/* 16. Campaigns Page */

.page-template-campaign .page-intro:before {
    background: transparent linear-gradient(
            184deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) 0 0 no-repeat padding-box;
}

.page-template-campaign .page-intro-title {
    font-size: 6rem;
}

.page-template-campaign .page-intro-content {
    font-size: 3.2rem;
    font-style: italic;
}

.section-sectors {
    background-color: var(--black);
    color: var(--white);
    padding-top: 50px;
}

.section-sectors .section-head {
    position: sticky;
    top: 200px;
    padding-bottom: 55px;
}

.section-sectors .section-title {
    font-size: 4rem;
    padding-right: 5px;
}

.sectors-item {
    padding-bottom: 70px;
}

.sectors-item .head {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--white);
    display: flex;
    align-items: center;
}

.sectors-item .head .icon {
    margin-left: auto;
    padding-left: 10px;
    margin-right: 15px;
    margin-bottom: -7px;
}

.sectors-item .head .icon svg {
    width: 90px;
    height: auto;
    display: block;
}

.sectors-item .head .icon-oil-gas path:not(.icon-oil-gas-fill-none),
.sectors-item .head .icon-coal path:not(.icon-coal-fill-none),
.sectors-item .head .icon-tar-sand path:not(.icon-tar-sand-fill-none) {
    fill: #fff;
}

.sectors-item .title {
    margin-bottom: 0;
    font-size: 4rem;
}

.sectors-item .subtitle {
    font-size: 2.4rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sectors-item .text {
    font-size: 1.6rem;
}

.sectors-item .text p {
    margin-bottom: 20px;
}

.sectors-item .text h4 {
    padding: 15px;
    border-radius: 8px;
    font-size: 2rem;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    line-height: 1.3;
}

.sectors-item .text a {
    color: var(--orange);
    text-decoration: underline;
}

.sectors-item .text a:hover {
    text-decoration: none;
}

/* Campaigns Section */

.section-campaigns .section-title {
    font-size: 4rem;
}

.section-campaigns .issue-item-container {
    min-height: 195px;
    display: flex;
    box-sizing: border-box;
}

.section-campaigns .issue-item-container .title {
    margin-bottom: 10px;
}

.section-campaigns .issue-item-container a {
    display: flex;
    flex-direction: column;
}

.section-campaigns .issue-item-container .sector {
    margin-top: auto;
    padding-top: 10px;
}

/* Exit Policies Section */

.section-exit-policies {
    padding-top: 30px;
}

.section-exit-policies .section-title {
    margin-bottom: 0;
    font-size: 4rem;
}

.section-exit-policies .content-area-inner .text {
    max-width: 800px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.section-exit-policies .summary-item .title {
    font-size: 3rem;
    margin-bottom: 0;
}

.section-exit-policies .summary-item .head {
    border-bottom: 1px solid var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-exit-policies .summary-item .head .icon {
    padding-left: 5px;
    margin-left: auto;
    margin-bottom: -5px;
}

.section-exit-policies .summary-item .head svg {
    width: auto;
    height: 58px;
    display: block;
    position: relative;
}

.section-exit-policies .summary-item .head svg.us {
    top: -6px;
}

.section-exit-policies .summary-item .text {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.2;
    max-width: 72%;
}

/* 17. Get involved Page */
.page-template-get-involved #main,
.page-template-get-involved #main-snd {
    padding-top: 0;
    padding-bottom: 0;
}

.page-template-get-involved #main,
.page-template-get-involved #main-snd {
    padding-top: 0;
    padding-bottom: 0;
}

.involved-page-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.involved-page-container a.content-item {
    position: relative;
    display: flex;
    width: 50%;
    height: calc(50vh - 47px);
    aspect-ratio: 2/1;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.involved-page-container a.content-item:before {
    content: "";
    background: #000000;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.involved-page-container .content-item__inner {
    z-index: 1;
    max-width: 60%;
    text-align: center;
}

.involved-page-container a.content-item h3 {
    color: var(--white);
    font-size: 3rem;
    text-align: center;
}

.involved-page-container a.content-item .icon-arrow {
    opacity: 0;
    transition: opacity 0.2s ease;
    transform: rotate(180deg);
}

.involved-page-container a.content-item:hover .icon-arrow {
    opacity: 1;
}