/*
1. Variables
2. AJAX Page Animations
3. Keyframe Animations
4. Basics
5. Typography
6. Inputs
7. Buttons
8. Inline Form
9. Top Bar
10. Page Nav
11. Entry Content
12. Header
13. Footer
14. Cookie Policy
15. Dropdown
 */

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

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

    --main-bg-color: #F8F8F8;

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

/* 2. 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%);
}

/* 3. Keyframe Animations */

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@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);
    }
}

/* 4. Basics */
html, body {
    min-height: 100%
}

html {
    font-size: 62.5%;
}

body {
    background: var(--main-bg-color);
    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: var(--main-bg-color);
}

body.mobile-menu-open {
    overflow-y: hidden;
}

.page-preloader,
.page-preloader:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
}

.page-preloader {
    opacity: 0;
    transition: opacity 200ms ease;
}

.page-preloader.fade-in {
    opacity: 1;
}

.page-preloader:before {
    content: "";
    background: rgba(244, 244, 244, 0.52);
}

.page-preloader:after {
    content: "";
    background: url('../images/preloader.svg') no-repeat center center;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 39px;
    height: 39px;
    margin-top: calc(var(--hh) - 39px - 19.5px);
    margin-left: -19.5px;
    z-index: 99;
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
    -ms-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

.grecaptcha-badge {
    visibility: hidden;
}

figure {
    margin: 0;
    padding: 0;
}

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

img.lazyloaded {
    opacity: 1;
}

.otgs-development-site-front-end {
    display: none !important;
}

/* 5. Typography */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

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('../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;
}

/* 6. 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;
    position: relative;
}

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

label.custom-checkbox span:before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid var(--grey);
    margin-right: 10px;
    margin-top: -2px;
    font-size: 1.2rem;
    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;
}

/* 7. 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;
    background-color: transparent;
    font-weight: bold;
    box-sizing: border-box;
    white-space: nowrap;
    font-family: var(--sans-serif);
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.btn svg {
    flex-shrink: 0;
}

.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.btn-white {
    color: var(--black);
}

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

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

.btn-secondary {
    padding-left: 20px;
    padding-right: 20px;
    height: 34px;
    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 {
    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,
.btn-bordered.btn-white {
    border-color: var(--white);
    color: var(--white);
}

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

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

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

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

    .btn-outline.btn-white:not(.btn-no-hover):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:not(.btn-no-hover):after {
    background-color: var(--orange);
}

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

.btn.btn-orange .icon-external path {
    fill: var(--white);
}

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

/* 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.has-label:hover {
        width: 140px;
    }

    .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.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 {
    justify-content: space-between;
}

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

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

.btn-link {
    background-color: transparent;
    color: var(--black);
    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;
}

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

.btn.btn-outline-black {
    border: 1px solid var(--black);
    color: var(--black);
    background-color: var(--main-bg-color);
}

/* Button Toggle */
.btn.btn-toggle {
    background-color: #E5E5E5;
    color: #646464;
}

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

.btn.btn-toggle:not(.btn-no-hover):after {
    background-color: #E5E5E5;
}

input:checked + .btn.btn-toggle {
    color: var(--white);
}

input:checked + .btn.btn-toggle:after,
input:checked + .btn.btn-toggle:before {
    background-color: var(--blue);
}

input:checked[data-unchecked="1"] + .btn.btn-toggle:after,
input:checked[data-unchecked="1"] + .btn.btn-toggle:before {
    background-color: var(--black);
}

input[disabled] + .btn.btn-toggle {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

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

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

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

    .btn.btn-outline-black[disabled]:hover {
        color: var(--black);
    }
}

/* Button back */
.btn-back {
    width: 60px;
    justify-content: flex-start;
}

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

.btn-back.right .icon-arrow {
    margin-right: 18px;
}

.btn.btn-back:hover .icon-arrow path:first-child {
    fill: transparent;
}

.btn-back .icon-arrow-path {
    fill: var(--black);
}

.btn-back .label {
    color: var(--black);
}

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

/* END: Buttons */

/* 8. Inline form */
.form-inline label:not(.show-label) {
    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.fullwidth {
    width: 100%;
}

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

.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;
    width: 100%;
}

.form-inline .radio-list,
.form-inline .checkbox-list {
    display: flex;
    gap: 16px;
}

.form-inline .radio-list .field,
.form-inline .checkbox-list .field {
    padding-bottom: 0;
    padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

input.mce_inline_error[type='radio'] + span,
input.mce_inline_error[type='checkbox'] + span {
    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(../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;
}

/* 9. Top Bar */
.header-top-bar {
    display: none;
    background-color: var(--blue);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.header-top-bar__inner {
    display: flex;
    align-items: center;
    height: 30px;
}

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

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

.header-top-bar-text a {
    color: var(--white);
    white-space: nowrap;
    display: flex;
    padding-top: 5px;
    padding-bottom: 6px;
    padding-right: 40px;
    align-items: center;
    gap: 40px;
}

.header-top-bar-text a:after {
    content: "";
    display: block;
    width: 18px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}

.header-top-bar-text.envelope a:after {
    background-image: url(../images/mail.svg);
}

.header-top-bar-text.megaphone a:after {
    background-image: url(../images/megaphone.svg);
}

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

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

/* END: Top Bar */

/* 10. Page Nav */
.page-nav {
    position: sticky;
    top: var(--hh);
    width: 100%;
    box-sizing: border-box;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: var(--white);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    z-index: 100;
    margin-top: -68px;
    border-bottom: 1px solid #e5e5e5;
}

.page-nav__item {
    padding-left: 25px;
    padding-right: 25px;
}

.page-nav a {
    display: block;
    white-space: nowrap;
}

.page-nav a.active {
    text-decoration: underline;
}

/* END: Page Nav */

/* 11. Entry Content */
.entry-header {
    justify-content: center;
    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 {
    padding-left: 80px;
    padding-right: 80px;
    font-size: 3rem;
    margin-bottom: 0;
}

.entry-sub-title {
    font-size: 2rem;
    color: #212121;
    letter-spacing: -0.03em;
    margin-bottom: 0.5em;
}

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

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

.entry-header .btn-back {
    position: absolute;
    left: 0;
}

@media (hover: hover) {
    .entry-header .btn-back:hover {
        width: 60px;
    }

    .entry-header .btn-back:hover .label {
        opacity: 0;
    }
}

.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: 1.36em;
}

.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;
    display: block;
}

.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-content img.alignleft {
    display: inline;
    float: left;
    margin-right: 30px;
}

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

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

/* END: Entry Content */

/* 12. Header */
.header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 101;
    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);
    min-height: 62px;
    box-sizing: border-box;
}

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

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

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

/* 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;
    white-space: nowrap;
}

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

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

.footer a:not(.btn) {
    color: var(--black);
    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 path,
.footer-some polygon {
    fill: var(--black) !important;
}

.footer-some a.mastadon {
    color: var(--white);
    height: 0;
    display: inherit;
    pointer-events: none;
}

.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(--orange);
    position: absolute;
    top: 0;
    left: 15px;
}

.copyright {
    text-align: right;
}

/* 14. 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 {
    line-height: 1.7;
    padding-left: 0;
}

@media (max-width: 640px) {

    /* Entry Header */
    .entry-header {
        margin-bottom: 15px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .entry-header .entry-title {
        font-size: 2.4rem;
    }

    /* Footer */
    .footer, .footer a:not(.btn):not(.mastadon) {
        color: var(--black);
    }

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

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

    .footer .row-top .content-column .footer-menu li + li {
        margin-top: 8px;
    }

    .footer .footer-newsletter {
        display: none;
    }

    .footer .footer-some .content-column {
        display: flex;
        flex-wrap: wrap;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer .footer-some .content-column p {
        width: 50%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        text-align: center;
    }

    .footer .row-top .columns.footer-some {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 12px;
    }

    .footer .footer-some h3 {
        padding-bottom: 10px;
        border-bottom: 1px solid var(--main-bg-color);
    }

    .footer .row-bottom {
        font-size: 1.2rem;
    }

    .footer .footer-toggle {
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;
    }

    .footer .footer-toggle:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-top: 5px solid var(--black);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        margin-left: -10px;
    }

    .footer .footer-toggle.open:after {
        transform: rotate(180deg);
    }

    /* END: Footer */

}

/* 15. 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: 24px;
    border: 1px solid var(--blue);
    padding: 0 24px 17px;
    font-size: 1.6rem;
    color: var(--grey);
    width: 100%;
    height: 45px;
    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;
}

.dropdown .btn-outline-black + .dropdown-menu {
    border-color: var(--black);
}

.header-link .nav-item-download {
    width: calc(100% + 2px);
}

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

.header-link .dropdown-menu {
    border-color: var(--orange);
    font-size: 1.2rem;
    padding: 0;
}

.header-link .dropdown-menu .dropdown-item {
    display: block;
    padding: 5px 20px;
    position: relative;
}

.header-link .dropdown-menu li:last-child .dropdown-item {
    padding-bottom: 10px;
}

.header-link .dropdown-toggle.show,
.header-link .dropdown-toggle.show:before {
    border-radius: 20px 20px 0 0;
}

.header-link .dropdown-menu .dropdown-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #fff4ec;
    pointer-events: none;
    transition: width .3s ease;
}

.header-link .dropdown .dropdown-menu li + li {
    margin-top: 0;
}

.header-link .dropdown-menu .dropdown-item:hover {
    text-decoration-line: none;
}

.header-link .dropdown-menu .dropdown-item:hover:before {
    width: 100%;
}

.header-link .btn.dropdown-toggle svg {
    margin-left: 5px;
}

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

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

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

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

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

@media (max-width: 640px) {
    .header-link {
        margin-left: 7px;
    }

    .header-link .btn {
        padding-left: 10px;
        padding-right: 6px;
        font-size: 1.1rem;
        height: 29px;
    }

    .header-link .dropdown .dropdown-menu:before {
        height: 27px;
    }

    .header-link .btn.dropdown-toggle svg,
    .header-link .btn.btn-has-icon svg {
        margin-left: 5px;
    }

    .header-link .dropdown .dropdown-menu {
        padding-bottom: 0;
    }

    .header-link .dropdown-menu .dropdown-item {
        padding-inline: 10px;
        line-height: 1.4;
    }

    .header-link .dropdown .btn-secondary + .dropdown-menu {
        height: 29px;
    }

    .header-link .dropdown .btn-secondary + .dropdown-menu.show {
        height: var(--height);
    }

    .header-link .icon-arrow {
        width: 14px;
        height: auto;
        margin-top: 1px;
    }
}

@media (max-width: 480px) {
    .header-link .dropdown .btn {
        text-transform: capitalize;
    }
}

@media (max-width: 400px) {
    .header-link .dropdown .btn span {
        max-width: 80px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

@media (max-width: 350px) {
    .header-link .dropdown .btn span {
        max-width: 50px;
    }
}