/* -----------------------------------------
    Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Hero Area
.. 05. Modules
.. 06. Footer
.. 07. Comments
.. 08. Widgets Styling
.. 09. WordPress defaults
.. 10. Mobile Menu
.. 11. External Plugins
.. 12. Grid Effects
.. 13. Utilities
.. 14. Site Notice Dismissable Bar
*/

@-webkit-keyframes rot {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rot {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* -----------------------------------------
    01. General
----------------------------------------- */

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
    font-weight: 400;
}

* {
    box-sizing: inherit;
}

*::before,
*::after {
    box-sizing: inherit;
}

[tabindex="-1"]:focus {
    outline: none !important;
}

[hidden] {
    display: none !important;
}

/* Basic Typography
=================================== */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
}

/* @font-face {
  font-family: 'Inter';
  src:  url('../fonts/Inter-Italic.woff2') format('woff2'),
        url('../fonts/Inter-Italic.woff') format('woff');
} */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.woff2') format('woff2'),
        url('../fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
}

body {
    line-height: 1.71429;
    font-size: 16px;
    background-color: #fff;
    color: #232323;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    margin: 0 0 15px;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #232323;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0 0 15px;
}

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

a {
    -webkit-transition: color .18s ease, background-color .18s ease, border-color .18s ease;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
    color: #e4564a;
    text-decoration: none;
}

a:hover {
    color: #FF5E54;
    text-decoration: none;
}

a:focus {
    outline: 1px dotted #FF5E54;
}

.group::after {
    content: "";
    display: table;
    clear: both;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.has-red-color {
    color: #e4564a;
}

.has-red-background-color {
    background-color: #e4564a;
}

.has-light-gray-color {
    color: #f9f9f9;
}

.has-light-gray-background-color {
    background-color: #f9f9f9;
}

.has-dark-gray-background-color {
    background-color: #232323;
}


.figcaption {
    line-height: 1;
    font-size: 10px;
    color: #232323;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* General Element Styling
=================================== */

/* Reset figure margin from normalize.css */

figure {
    margin: 0;
}

/* Lists */

ul,
ol {
    padding-left: 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

dl {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 0 15px;
}

/* Blockquotes */

blockquote {
    margin: 20px 0;
    padding-left: 15px;
    border-left: 3px solid #e1e1e1;
    font-size: 17px;
    font-weight: 300;
}

blockquote cite {
    display: block;
    font-weight: bold;
    font-style: normal;
    margin: 10px 0 0;
    color: rgba(40, 40, 40, 0.8);
    font-size: 14px !important;
}

/* Tables */

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.entry-content table {
    border-width: 1px 0 0 1px;
    margin-bottom: 24px;
}

.entry-content th,
.entry-content td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-content th:first-child,
.entry-content td:first-child {
    padding-left: 0;
}

.entry-content caption,
.entry-content th,
.entry-content td {
    font-weight: normal;
    text-align: left;
    padding: 5px;
    vertical-align: middle;
}

.entry-content th {
    border-width: 0 1px 1px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 85%;
}

.entry-content td {
    border-width: 0 1px 1px 0;
}

/* Code */

code,
kbd,
tt,
var,
samp,
pre {
    font-family: monospace, sans-serif;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    font-style: normal;
}

pre {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: auto;
}

/* Various */

address {
    margin: 0 0 15px;
    font-style: normal;
    line-height: inherit;
}

.anchor-masterhome {
    font-size: 90%;
    color: white;
    margin-top: 15px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 0;
        border-top-color: currentcolor;
        border-top-style: none;
        border-top-width: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.075);
}

/* Embeds and iframes
=================================== */

embed,
iframe,
object,
video,
audio {
    margin-bottom: 15px;
    max-width: 100%;
    border: 0;
}

p > embed,
p > iframe,
p > object,
p > audio,
p > video,
span > embed,
span > iframe,
span > object,
span > audio,
span > video {
    margin-bottom: 0;
}

#map *,
.map * {
    max-width: none !important;
}

.site-notice {
    line-height: 1;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background-color: #e4564a;
    color: #222;
}

.site-notice a {
    color: #222;
    font-weight: 900;
}

/* General Form Styling
=================================== */

label {
    display: block;
    margin: 0 0 4px;
    font-weight: 700;
    letter-spacing: -0.025em;
    font-family: 'Inter', sans-serif;
    color: #122744;
    text-transform: uppercase;
    font-size: 11px;
}

input,
textarea {
    display: inline-block;
    font-size: inherit;
    width: 100%;
    max-width: 100%;
    height: 40px;
    padding: 5px 12px;
    box-shadow: none;
    line-height: normal;
    border: 2px solid #e1e1e1;
    background-color: #fff;
    background-image: none;
    border-radius: 0;
    font-family: monospace;
    font-weight: 400;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #e4564a;
}

input[type="search"] {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    height: auto;
    resize: vertical;
}

select {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 4px 0 0;
    line-height: normal;
    width: auto;
    height: auto;
}

fieldset {
    margin: 0 0 15px;
    padding: 0;
    border: 0;
    min-width: 0;
}

/* Placeholder text color */

::-webkit-input-placeholder {
    font-weight: normal;
    opacity: .8;
    font-size: 12px;
}

:-moz-placeholder {
    font-weight: normal;
    opacity: .8;
    font-size: 12px;
}

::-moz-placeholder {
    font-weight: normal;
    opacity: .8;
    font-size: 12px;
}

:-ms-input-placeholder {
    font-weight: normal;
    opacity: .8;
    font-size: 12px;
}

/* Buttons
=================================== */

.btn,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button {
    display: inline-block;
    font-weight: normal;
    margin: 0;
    line-height: normal;
    border: 0;
    box-shadow: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
    transition: .18s background-color ease, .18s color ease, .18s border-color ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
    width: auto;
    height: auto;
    background-image: none;
    color: white;
    background-color: #e4564a;
    border: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 13px 30px;
    font-size: 12px;
}

.btn.disabled,
.btn:disabled,
.comment-reply-link.disabled,
.comment-reply-link:disabled,
input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
button.disabled,
button:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.btn:hover,
.comment-reply-link:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
    text-decoration: none;
    color: #fff;
    background-color: #A10000;
}

.btn:focus,
.comment-reply-link:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
    outline: 0;
    box-shadow: 0 0 10px rgba(228, 43, 100, 0.7);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 12px;
}

.btn-lg {
    padding: 21px 54px;
    font-size: 12px;
}

.btn-transparent {
    background-color: transparent;
    border: 2px solid #e1e1e1;
}

.btn-transparent:hover {
    color: inherit;
    background-color: inherit;
    border-color: #e4564a;
}

.btn-black {
    background-color: #111;
    color: #dcdcdc;
}

.btn-black:hover {
    background-color: white;
    color: #111;
}

.btn-block {
    min-width: 100%;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}

#btn--floatbutton a {
    color: #fff;
}


#btn--floatbutton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 1.1rem;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 16px;
    border-radius: none;
    font-weight: 900;
    margin: 0;
    line-height: normal;
    border: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
    transition: .18s background-color ease, .18s color ease, .18s border-color ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 0;
    width: auto;
    height: auto;
    color: white;
    background-color: #232323;
    border: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    padding: 21px 54px;
    font-size: 12px;
    border: 2px solid #fff;
}

#btn--floatbutton:hover {
    background-color: #e4564a;
    border: 2px solid #232323;
}

#btn--floatbutton:hover a {
    color: #232323;
}

/* Magnific Popup Overrides
=================================== */

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

.mfp-preloader {
    color: #fff;
}

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

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

.mfp-container:not(.mfp-s-error) .mfp-preloader {
    border: 6px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.875);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    -webkit-animation: rot .8s infinite linear;
    animation: rot .8s infinite linear;
    background-color: transparent;
    text-indent: -999em;
    margin: 0 auto;
}

button.mfp-close,
button.mfp-arrow {
    border: 0;
    opacity: 1;
}

button.mfp-close:hover,
button.mfp-arrow:hover {
    background: none;
    border: 0;
}

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

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

.mfp-arrow {
    line-height: .3;
}

.mfp-arrow::before,
.mfp-arrow::after {
    border: 0;
}

.mfp-arrow::after {
    font-family: FontAwesome;
    font-size: 70px;
    color: #fff;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mpf-a {
    content: "\f105";
}

.mfp-arrow-left::after,
.mfp-arrow-left .mpf-a {
    content: "\f104";
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */

.nav {
    display: block;
}

.navigation-main {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
}

.navigation-main::after {
    content: "";
    display: table;
    clear: both;
}

.head-mast [class^="col-lg-12"] .navigation-main {
    margin-top: 10px;
}

.navigation-main li {
    position: relative;
}

.navigation-main > li {
    display: inline-block;
}

.navigation-main a {
    display: block;
    white-space: nowrap;
}

.navigation-main ul {
    text-align: left;
    position: absolute;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
    transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
    transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s;
    transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    margin-left: 12px;
}

.navigation-main ul ul {
    top: -12px;
    left: 100%;
    margin: 0;
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
}

.navigation-main > li:first-child ul {
    margin-left: 0;
}

.navigation-main li:hover > ul {
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
    visibility: visible;
    opacity: 1;
}

.navigation-main li:hover ul {
    z-index: 15;
}

.navigation-main > li:hover > ul {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.navigation-main li li:hover > ul {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.navigation-main ul {
    padding: 12px 0;
    list-style: none;
    background-color: #fff;
    min-width: 170px;
    border-radius: 3px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.navigation-main a {
    position: relative;
    color: #282828;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.navigation-main > li > a {
    padding: 10px 0;
    margin: 0 12px;
}

.navigation-main > li:first-child > a {
    margin-left: 0;
}

.navigation-main > li:hover > a,
.navigation-main > li > a:focus,
.navigation-main > .current-menu-item > a,
.navigation-main > .current-menu-parent > a,
.navigation-main > .current-menu-ancestor > a {
    color: #e4564a;
}

.navigation-main li li a {
    padding: 6px 15px;
}

.navigation-main li li:hover > a,
.navigation-main li li > a:focus,
.navigation-main li .current-menu-item > a,
.navigation-main li .current-menu-parent > a,
.navigation-main li .current-menu-ancestor > a {
    color: #e4564a;
}

.navigation-main .menu-item-has-children > a::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    position: relative;
    top: -4px;
    right: -3px;
    line-height: normal;
}

.navigation-main li .menu-item-has-children > a {
    padding-right: 25px;
}

.navigation-main li .menu-item-has-children > a::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navigation-main .nav-button > a {
    border: 2px solid currentColor;
    padding: 7px 28px;
    margin-left: 10px;
}

.navigation-main .nav-button > a::before {
    display: none;
}

.navigation-main .nav-button:last-child > a {
    margin-right: 0;
}

.navigation-main-right {
    text-align: right;
}

.navigation-main-right ul ul {
    left: auto;
    right: 100%;
}

.navigation-main-right > li:last-child ul {
    right: 0;
}

.navigation-main-right > li:last-child ul ul {
    left: auto;
    right: 100%;
}

.navigation-main-right li .menu-item-has-children > a::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.15em;
}

.mm-listview a:hover {
    color: #e4564a;
}

/* -----------------------------------------
	03. Header
----------------------------------------- */

.header {
    position: relative;
    z-index: 20;
}

.site-logo {
    line-height: normal;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    color: #474747;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.site-logo a {
    color: #282828;
}

.site-logo img {
    max-width: 120px;
}

.site-tagline {
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
}

.head-intro {
    font-size: 13px;
    padding: 6px 0;
    background-color: #282828;
    color: #dcdcdc;
}

.head-intro a {
    color: inherit;
}

.head-intro-info {
    text-transform: uppercase;
    font-size: 11px;
}

.head-intro-info span {
    margin-right: 15px;
}

.head-intro-addons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.head-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.head-search:not(:only-child)::before {
    content: "\007c";
    margin: 0 15px;
    opacity: .5;
}

.head-search-form {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
    padding: 20px;
    background-color: #282828;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    z-index: 25;
}

.head-search-form.head-search-expanded {
    max-width: 100%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.head-search-input {
    height: 56px;
}

.head-mast {
    padding: 13px 0;
    background-color: #fff;
}

.head-sticky.is-stuck {
    z-index: 99;
    padding: 15px 0;
}

/* -----------------------------------------
    04. Hero Area
----------------------------------------- */

/* Basic Styles
=================================== */

.page-hero {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 45px 0;
    background-color: #f9f9f9;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12;
}

.overlay-primary::before {
    background-color: #232323 !important;
}

.overlay-70::before {
    opacity: .7 !important;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.page-hero.page-header {
    background-color: #f9f9f9;
}

.slick-initialized .page-hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.page-hero .btn {
    font-size: 11px;
    margin-top: 25px;
}

.page-hero-lg {
    height: 750px;
    overflow: hidden;
    text-align: center;
    padding: 140px 0;
}

.page-hero-slideshow .page-hero-lg {
    height: 100%;
}

.page-hero-align-center {
    text-align: center;
}

.page-hero-align-left {
    text-align: left;
}

.page-hero-align-right {
    text-align: right;
}

.page-hero-align-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.page-hero-align-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-hero-align-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.page-hero-content {
    position: relative;
    z-index: 15;
}

.page-hero-lg .page-hero-content {
    color: #fff;
}

.page-hero-title {
    color: inherit;
    margin: 0;
    font-size: 32px;
}

.page-hero-title--rtl {
    text-align: right !important;
}

.page-hero-lg .page-hero-title {
    font-size: 42px;
    font-weight: 900;
}

.page-hero-title--large {
    font-size: 42px;
    text-align: center;
}

.page-hero-subtitle {
    margin: 0;
    font-size: 0.875rem;
    color: #232323;
    width: 50%;
    display: inline-block;
}

.page-hero--masterhome {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: white;
    line-height: 1.4;
    font-size: 1.875rem;
    margin: 0 auto 1.5rem;
    max-width: 39.5rem;
}

.page-hero--masterhome a {
    color: white;
}

.page-hero--masterhome a:hover {
    color: white;
    text-decoration: underline;
}

.lwc-africa-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* -----------------------------------------
    05. Modules
----------------------------------------- */

/* General Layout
=================================== */

.main {
    padding: 100px 0;
}

.main--insights {
    background-color: #f9f9f9;
}

.post-template-default .main {
    padding-top: 50px;
}

/* Sections
=================================== */

.widget-sections {
    padding: 0;
}

.widget-section {
    padding: 100px 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.widget-section:not(.widget-section-padded) + .widget-section:not(.widget-section-padded) {
    margin-top: -100px;
}

.widget-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.widget-section.null-instagram-feed {
    padding-bottom: 0;
}

.widget-section-parallax {
    background-attachment: fixed;
}

.section-heading {
    margin-bottom: 45px;
    text-align: left;
}

.section-title {
    font-size: 30px;
    margin: 0;
}

.section-subtitle {
    margin: 0;
    text-transform: capitalize;
    font-size: 11px;
    letter-spacing: .2em;
}

.section-subtitle a {
    color: #282828;
}

.call-to-action-section {
    background-color: #e4564a;
}

.section-padded {
    background-color: #fff;
    padding: 2.5rem;
}

.section-padded p:last-of-type {
    margin-bottom: 45px;
}

/* SECTION: Theme - Newsletter
========================================= */

.widget_ci-newsletter.widget-section-padded {
    padding: 30px 0;
}

.form-newsletter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-newsletter input {
    margin-right: 15px;
    border: 0;
}

.call-to-action-title {
    margin-bottom: 0;
    line-height: normal;
    color: #232323;
    margin-bottom: 1rem;
}

.call-to-action-subtitle {
    margin-bottom: 0;
    color: #232323;
    line-height: normal;
}

/* SECTION: Theme - Twitter banner
========================================= */
.twitter-background {
    background-color: #1da1f2;
}

.twitter-banner {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    margin-bottom: -15px;
}

.twitter-banner-link {
    display: flex;
    color: #fff;
}

a.twitter-banner-link:hover,
.twitter-background {
    color: #fff;
}

.twitter-banner i {
    margin-left: 1rem;
    font-size: 122%;
}

/* Section Network
=================================== */
.grid-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-gap: 3rem;
}

.grid-logos > div {
    padding: 1rem;
    position: relative;
}

.grid-logos > div::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.grid-logos > div img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grid-logos > div img:hover {
    filter: grayscale();
}

/* Entry Styles
=================================== */

.entry {
    margin: 0 0 50px;
}

.entry--results {
    padding: 20px;
    background-color: #eff3f6;
    position: relative;
    display: block;
}

.entry--results:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    transition: opacity 300ms ease;
}

.entry--results:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.single .entry {
    margin-bottom: 0;
}

.entry-header {
    margin-bottom: 10px;
    text-align: left;
}

[class^="col-sm-6"] .entry-header,
[class^="col-lg-4"] .entry-header {
    margin-bottom: 5px;
}

.entry-title {
    font-size: 24px;
    text-transform: uppercase;
}

.entry-title a {
    color: #122744;
}

.entry-title a:hover {
    color: #e4564a;
}

[class^="col-sm-6"] .entry-title,
[class^="col-lg-4"] .entry-title {
    font-size: 18px;
}

.entry-meta,
.entry-categories {
    font-size: 0.825rem;
}

.entry-meta a,
.entry-categories a {
    color: #122744;
}

.entry-categories {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.entry-meta {
    letter-spacing: .05em;
}

.entry-meta span {
    margin: 0 5px;
}

.entry-comments-link {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.entry-thumb {
    margin-bottom: 50px;
}

.entry-thumb.alignnone,
.entry-thumb.alignleft,
.entry-thumb.alignright,
.entry-thumb.aligncenter {
    margin-top: 0;
}

[class^="col-sm-6"] .entry-thumb,
[class^="col-lg-4"] .entry-thumb {
    margin-bottom: 30px;
}

.entry-content::after {
    content: "";
    display: table;
    clear: both;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 35px 0 30px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
    margin-top: 0;
}

.entry-content .fluid-width-video-wrapper,
.entry-content audio,
.entry-content video,
.entry-content blockquote {
    margin: 40px 0;
}

.entry-content .fluid-width-video-wrapper:first-child,
.entry-content audio:first-child,
.entry-content video:first-child,
.entry-content blockquote:first-child {
    margin-top: 0;
}

.entry-content .fluid-width-video-wrapper:last-child,
.entry-content audio:last-child,
.entry-content video:last-child,
.entry-content blockquote:last-child {
    margin-bottom: 0;
}

.entry-content blockquote {
    font-size: 18px;
    position: relative;
    padding-left: 40px;
    border: 0;
}

.entry-content blockquote::before {
    content: "\00201C";
    color: #e4564a;
    font-size: 4em;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 40px;
}

.entry-content--people--heading {
    border-bottom: 1px solid #232323;
    margin: 40px 0 20px 0;
}

.entry-content--people--heading:first-of-type {
    margin-top: 0;
}

.entry-content-intro {
    font-size: 16px;
    margin-bottom: 40px;
}

.entry-content-column-split {
    margin: 30px 0;
}

.entry-content-column-split:first-child {
    margin-top: 0;
}

.entry-more-wrap {
    text-align: center;
    position: relative;
    margin-top: 25px;
}

.entry-more-btn {
    background-color: #fff;
}

.entry-more-btn:hover {
    background-color: #fff;
}

.entry-more-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    z-index: -1;
}

.entry-tags {
    margin-top: 15px;
}

.entry-people-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
}

.entry-people-thumbnail {
    width: 90px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    margin-right: 30px;
    filter: grayscale();
}

.entry-people-title {
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.025em;
}

.entry-author-position {
    margin-bottom: 0;
}

.facebook {
    background-color: #4267B2 !important;
}

.twitter {
    background-color: #1DA1F2 !important;
}

.linkedin {
    background-color: #2867B2 !important;
}

.email {
    background-color: #555 !important;
}

/* Items & Item Listings
=================================== */

.row-items {
    margin-bottom: -30px;
}

.row-items.no-gutters {
    margin-bottom: 0;
}

.item {
    margin-bottom: 30px;
}

.item--card {
    background-color: #fdf1e5;
    padding: 24px;
    transition: box-shadow 300ms ease;
    margin-bottom: 24px;
}

.item--language {
    background-color: #f9f9f9;
    padding: 24px;
    transition: ease;
    margin-bottom: 24px;
}

.item--language:hover {
    background-color: #e0e0e0;
    border: solid 1px #232323;
    padding: 23px;
    margin-bottom: 24px;
}

.no-gutters .item {
    margin-bottom: 0;
}

.item-thumb {
    margin-bottom: 20px;
}

.item-title {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    margin-bottom: 7px;
    font-size: 21px;
    font-weight: 900;
    line-height: normal;
}

.item-title a {
    color: #232323;
}

.item-title a:hover {
    color: #e4564a;
}

.item--language .item-title {
    margin: 0px;
    font-weight: 400;
    font-size: 1rem;
}

.item-subtitle {
    line-height: normal;
}

.item-filters {
    margin-bottom: 30px;
}

.item-filter {
    background-color: transparent;
    border: 2px solid #e1e1e1;
    color: #282828;
    padding: 10px 18px;
    font-size: 11px;
    margin: 0 5px 5px;
}

.item-filter:hover {
    color: inherit;
    background-color: inherit;
    border-color: #e4564a;
}

.filter-active {
    color: #fff;
    border-color: #e4564a;
    background-color: #e4564a;
}

/* Pagination
=================================== */

.navigation {
    margin: 20px 0 0;
}

.navigation a,
.navigation .page-numbers {
    display: inline-block;
    padding: 9px 15px;
    font-size: 12px !important;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: #232323;
    background: none;
}

.navigation a:hover,
.navigation .current {
    border-color: #e4564a;
}

.navigation .nav-links::after {
    content: "";
    display: table;
    clear: both;
}

.navigation .nav-previous {
    float: left;
}

.navigation .nav-next {
    float: right;
}

.comment-navigation {
    margin: 30px 0;
}

.page-links {
    margin: 35px 0;
}

.page-links .page-number {
    display: inline-block;
    padding: 9px 15px;
    font-size: 12px !important;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: #122744;
    background: none;
}

.page-links .page-number:hover {
    border-color: #e4564a;
}

.page-links > .page-number {
    border-color: #e4564a;
}

.page-links > a:first-child,
.page-links > span:first-child {
    margin-left: 10px;
}

/* Social Icons
=================================== */
.list-social-links {
    padding: 0;
    list-style: none;
    display: flex;
}

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

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.list-social-links a {
    display: block;
    padding: 0.125rem .5rem;
    background: #f9f9f9;
    color: #232323;
    border-radius: 0.375rem;
    transition: background-color 0.1s linear, color 0.1s linear;
}

.list-social-links > li:last-child {
    margin: 0 0.1875rem;
}

.list-social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-social-icons li {
    display: inline-block;
    margin: 3px 5px;
}

.social-icon {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    color: #282828;
    border-radius: 50%;
}

.social-icon:hover {
    color: #e4564a;
}

.header .social-icon {
    color: inherit;
    font-size: inherit;
}

.footer .social-icon {
    color: #dcdcdc;
}

.entry-sharing {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.entry-sharing a {
    flex-grow: 1;
}

.profile-photo img {
    filter: grayscale(100%);
}

@media (max-width: 767px) {
    .profile-photo {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        margin-bottom: 40px;
    }
}

/* -----------------------------------------
    06. Footer
----------------------------------------- */

.footer {
    background-color: #232323;
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer h3 {
    color: #fff !important;
    font-size: 19px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    margin-bottom: 7px;
    font-weight: 700;
    line-height: normal;
}

.footer-widgets {
    padding: 100px 0 40px;
}

.footer-info {
    padding: 25px 0;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #f9f9f9;
}

.footer-copy {
    margin-bottom: 0;
}

#menu-footer, #menu-footer-news {
    margin: 0;
}

#menu-footer a:hover, #menu-footer-news a:hover {
    text-decoration: underline;
}

/* -----------------------------------------
    07. Comments
----------------------------------------- */

.comments-area {
    margin: 0;
}

.comments-title,
.comment-reply-title {
    margin-bottom: 30px;
}

.comment-list {
    margin: 0;
    list-style: none;
    padding: 0;
}

.comment-list ol {
    list-style: none;
}

.comment-list .comment-body {
    margin-bottom: 30px;
    padding-top: 30px;
}

.comment-list > .comment:first-child > .comment-body {
    border-top: 0;
    padding-top: 0;
}

.post-comments {
    margin: 0 0 45px;
}

.comment-author .fn {
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
}

.comment-author .avatar {
    width: 64px;
    height: 64px;
    float: left;
    margin: 0 15px 15px 0;
    overflow: visible;
}

.comment-content {
    overflow: hidden;
    zoom: 1;
    font-size: 13px;
}

.comment-metadata {
    font-size: 12px;
    margin: 0 0 5px;
}

.comment-reply-link {
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-left: 80px;
    height: auto;
    width: auto;
}

.bypostauthor > article .fn::before {
    font-family: FontAwesome;
    content: "\f005";
    margin: 0 2px 0 -2px;
    position: relative;
    top: -1px;
    font-size: 11px;
}

.comment-respond {
    margin-top: 80px;
}

#cancel-comment-reply-link {
    font-size: 13px;
    font-weight: normal;
    margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
    font-size: 12px;
    line-height: 1.5;
    opacity: .75;
}

.form-submit {
    margin: 25px 0 0;
}

.no-comments {
    border: 2px solid #e1e1e1;
    padding: 15px;
    margin-top: 40px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.025em;
    font-family: 'Inter', sans-serif;
    color: #122744;
    text-transform: uppercase;
    font-size: 11px;
}

/* -----------------------------------------
    08. Widgets Styling
----------------------------------------- */

.widget {
    margin: 0 0 60px;
    /* Nullify bottom margin for last elements in widgets and sidebars */
}

#sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.widget p:last-child {
    margin-bottom: 0;
}

.widget select {
    width: 100%;
    padding: 5px 10px;
    border-radius: 0;
    border: 1px solid #e1e1e1;
}

.widget-title {
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: -0.025em;
    font-weight: 400;
}

.widget-title label {
    text-transform: none;
    display: block;
    font-size: inherit;
    margin: 0;
    line-height: inherit;
    font-weight: inherit;
}

.footer .widget-title {
    color: #fff;
}

/* WIDGET: Theme - Contact Widget
========================================= */

.ci-contact-widget-title {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.ci-contact-widget-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.ci-contact-widget-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 5px;
}

.ci-contact-widget-item i {
    text-align: center;
    min-width: 26px;
    margin-right: 10px;
}

/* WIDGET: Theme - Opening Hours
========================================= */

.ci-schedule-widget-intro {
    margin-bottom: 20px;
}

.ci-schedule-widget-table {
    font-size: 11px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.ci-schedule-widget-table th,
.ci-schedule-widget-table td {
    padding: 7px 0;
}

.ci-schedule-widget-table tr {
    border-bottom: 1px solid #e1e1e1;
}

/* WIDGET: List Widgets
========================================= */

.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_nav_menu ul ul {
    margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_nav_menu li {
    line-height: normal;
    display: block;
    position: relative;
}

.widget_meta li a,
.widget_pages li a,
.widget_categories li a,
.widget_archive li a,
.widget_nav_menu li a {
    display: inline-block;
    margin-bottom: 5px;
    color: #122744;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
}

.footer .widget_meta li a,
.footer .widget_pages li a,
.footer .widget_categories li a,
.footer .widget_archive li a,
.footer .widget_nav_menu li a {
    color: #fff;
}

.widget_recent_comments ul,
.widget_rss ul,
.widget_recent_entries ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_recent_comments li,
.widget_rss li,
.widget_recent_entries li {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}

.widget_pages select,
.widget_categories select,
.widget_archive select {
    display: block;
    width: 100%;
    padding: 6px 15px;
    border-radius: 0;
    font-size: 14px;
    height: 40px;
    font-weight: normal;
    border: 1px solid #e1e1e1;
    background: #fff;
}

.widget_recent_entries .post-date {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.entry-tags a,
.tag-cloud-link {
    display: inline-block;
    padding: 4px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 11px !important;
    text-transform: uppercase;
    border: 1px solid #282828;
    color: #282828;
    margin-bottom: 3px;
}

.entry-tags a:hover,
.tag-cloud-link:hover {
    border-color: #e4564a;
    background-color: #e4564a;
    color: #fff;
}

/* WIDGET: #Search
========================================= */

.searchform > div {
    position: relative;
}

.searchform .searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

/* WIDGET: #Text Widget
========================================= */

.widget_text p:last-child {
    margin-bottom: 0;
}

/* WIDGET: #Calendar
================================================== */

#wp-calendar {
    width: 100%;
}

#wp-calendar a {
    font-weight: bold;
    font-style: italic;
}

#wp-calendar caption {
    text-align: left;
    margin-top: 10px;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
    padding: 9px;
}

#wp-calendar thead {
    font-size: 10px;
}

#wp-calendar thead th {
    background: rgba(0, 0, 0, 0.1);
    font-weight: bold;
    padding: 8px;
}

#wp-calendar tbody td {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 3px;
}

#wp-calendar tbody td:hover {
    background: rgba(0, 0, 0, 0.1);
}

#wp-calendar tbody .pad {
    background: none;
}

#wp-calendar tfoot #next {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
}

#wp-calendar tfoot #prev {
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 10px;
}

/* -----------------------------------------
    09. WordPress Defaults
----------------------------------------- */

/* WordPress Galleries
=================================== */

.gallery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    margin: 40px 0;
}

.gallery:first-child {
    margin-top: 0;
}

.gallery:last-child {
    margin-bottom: 0;
}

.gallery-item {
    margin-bottom: 10px;
}

.gallery-item img {
    width: 100%;
    max-width: 100%;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-columns-1 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.gallery-columns-2 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 14.28571%;
    -ms-flex: 0 0 14.28571%;
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 12.5%;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 11.11111%;
    -ms-flex: 0 0 11.11111%;
    flex: 0 0 11.11111%;
    max-width: 11.11111%;
}

.gallery-caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 0 5px;
    max-height: 50%;
    opacity: 0;
    padding: 6px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    width: calc(100% - 10px);
    -webkit-transition: opacity .18s ease;
    transition: opacity .18s ease;
}

.gallery-caption::before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/* WordPress Classes
=================================== */

/* Alignment */

.alignnone {
    margin: 5px 0 20px;
}

p .alignnone {
    margin-bottom: 0;
}

.aligncenter {
    display: block;
    margin: 7px auto;
}

.alignright {
    float: right;
    margin: 7px 0 7px 24px;
}

.alignleft {
    float: left;
    margin: 7px 24px 7px 0;
}

/* Captions */

.wp-caption {
    max-width: 100%;
    margin-bottom: 15px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text {
    font-size: 12px;
    line-height: 17px;
    margin: 3px 0 5px;
    padding: 5px 0 0;
    text-align: left;
    font-style: italic;
}

.sticky {
    /* Provide sticky styles if necessary */
}

/* -----------------------------------------
    10. Mobile menu
----------------------------------------- */

.mm-page {
    position: static;
}

.mm-opened .mm-page {
    position: relative;
}

#mobilemenu {
    display: none;
}

.mobile-nav-trigger {
    float: right;
    text-transform: uppercase;
    font-weight: 900;
    display: none;
    color: #232323;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-trigger:hover {
    color: #e4564a;
}

/* -----------------------------------------
    11. External Plugins
----------------------------------------- */

/* Jetpack Sharing */

.sharedaddy {
    margin-top: 30px;
}

/* WP Instagram */

.null-instagram-feed p:not(.section-subtitle) {
    padding-top: 10px;
}

.partners-slider {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partners-slider li {
    width: 33.33333333333%;
}

.partners-slider li a {
    display: block;
    color: #282828;
}

/* FacetWP */
.facet-form {
  padding: 2rem 0;
}

.facetwp-facet {
  margin: 0 auto;
  padding: 0;
}

.facetwp-facet input {
  border: none;
}

.facetwp-facet.facetwp-facet-lang.facetwp-type-autocomplete {
  display: flex;
}

.facetwp-autocomplete.ready {
  flex-basis: 75%;
  border-bottom: 1px solid #232323;
}

.facetwp-autocomplete-update {
  margin-left: 1rem;
  flex-basis: calc( 25% - 1rem );
  background: #232323;
  color: #fff;
}

/* -----------------------------------------
    12. Grid Effects
----------------------------------------- */

.row-effect {
    position: relative;
}

.row-effect::before {
    border: 6px solid rgba(40, 40, 40, 0.35);
    border-top-color: rgba(40, 40, 40, 0.875);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    -webkit-animation: rot .8s infinite linear;
    animation: rot .8s infinite linear;
    content: "";
    position: absolute;
    left: 50%;
    top: 30px;
    margin-left: -20px;
}

.row-effect.row-images-loaded::before {
    display: none;
}

.row-effect > [class^="col"] {
    opacity: 0;
}

.row-effect > [class^="col"].ci-grid-shown {
    opacity: 1;
}

/* Fade In
========================================= */

@-webkit-keyframes ci-fade-in {
    0% {}

    100% {
        opacity: 1;
    }
}

@keyframes ci-fade-in {
    0% {}

    100% {
        opacity: 1;
    }
}

.row-effect-fade-in .ci-grid-animate {
    -webkit-animation: ci-fade-in .65s ease forwards;
    animation: ci-fade-in .65s ease forwards;
}

/* Move Up
========================================= */

@-webkit-keyframes ci-move-up {
    0% {}

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ci-move-up {
    0% {}

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.row-effect-move-up .ci-grid-animate {
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-animation: ci-move-up .65s ease forwards;
    animation: ci-move-up .65s ease forwards;
}

/* Scale Up
========================================= */

@-webkit-keyframes ci-scale-up {
    0% {}

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ci-scale-up {
    0% {}

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.row-effect-scale-up .ci-grid-animate {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: ci-scale-up .65s ease-in-out forwards;
    animation: ci-scale-up .65s ease-in-out forwards;
}

/* Fall Perspective
========================================= */

@-webkit-keyframes ci-fall-perspective {
    0% {}

    100% {
        -webkit-transform: translateZ(0) translateY(0) rotateX(0);
        transform: translateZ(0) translateY(0) rotateX(0);
        opacity: 1;
    }
}

@keyframes ci-fall-perspective {
    0% {}

    100% {
        -webkit-transform: translateZ(0) translateY(0) rotateX(0);
        transform: translateZ(0) translateY(0) rotateX(0);
        opacity: 1;
    }
}

.row-effect-fall-perspective {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.row-effect-fall-perspective .ci-grid-animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    -webkit-animation: ci-fall-perspective .8s ease-in-out forwards;
    animation: ci-fall-perspective .8s ease-in-out forwards;
}

/* Fly Up
========================================= */

@-webkit-keyframes ci-fly-up {
    0% {}

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}

@keyframes ci-fly-up {
    0% {}

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}

.row-effect-fly-up {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.row-effect-fly-up .ci-grid-animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -300px;
    -ms-transform-origin: 50% 50% -300px;
    transform-origin: 50% 50% -300px;
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    -webkit-animation: ci-fly-up .8s ease-in-out forwards;
    animation: ci-fly-up .8s ease-in-out forwards;
}

/* Flip
========================================= */

@-webkit-keyframes ci-flip {
    0% {}

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}

@keyframes ci-flip {
    0% {}

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}

.row-effect-flip {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.row-effect-flip .ci-grid-animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    -webkit-animation: ci-flip .8s ease-in-out forwards;
    animation: ci-flip .8s ease-in-out forwards;
}

/* Pop Up
========================================= */

@-webkit-keyframes ci-pop-up {
    0% {}

    70% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .8;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ci-pop-up {
    0% {}

    70% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .8;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.row-effect-pop-up {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.row-effect-pop-up .ci-grid-animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
    -webkit-animation: ci-pop-up .8s ease-in forwards;
    animation: ci-pop-up .8s ease-in forwards;
}

/* -----------------------------------------
    13. Utilities
----------------------------------------- */

.align-items-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus,
.screen-reader-text-focusable:active,
.screen-reader-text-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden-xs-up {
    display: none !important;
}

.hidden-xl-down {
    display: none !important;
}

.text-muted {
    color: #999 !important;
}

@media (min-width: 576px) {
    .gallery {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gallery-columns-1 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-2 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-3 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-4 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-5 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-6 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-7 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-8 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-9 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    .hidden-sm-up {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .entry-content-column-split {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }

    .gallery {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gallery-columns-1 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-2 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-3 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-4 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-5 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-6 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-7 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-8 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-9 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .hidden-md-up {
        display: none !important;
    }

}

@media (min-width: 992px) {
    .gallery {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gallery-columns-1 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-2 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-3 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-4 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-5 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-6 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-7 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-8 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-9 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .hidden-lg-up {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .header-fullwidth .container {
        width: 1600px;
    }

    .main > .container > .row > .col-lg-8 {
        padding-right: 45px;
    }

    .main > .container > .row > .push-lg-4 {
        padding-right: 15px;
        padding-left: 45px;
    }

    .footer-fullwidth .container {
        width: 1600px;
    }

    .gallery {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gallery-columns-1 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-2 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-3 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-4 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-5 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-6 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-7 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-8 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery-columns-9 .gallery-item {
        padding-right: 5px;
        padding-left: 5px;
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    .hidden-xl-up {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-lg-down {
        display: none !important;
    }

    .navigation-main a {
        font-size: 10px;
    }
}

@media (max-width: 1080px) {
    .ci-video-wrap::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .widget_ci-newsletter.widget-section-padded .btn-black {
        margin-top: 20px;
    }

    .nav {
        display: none;
    }

    .head-sticky.is-stuck {
        position: static !important;
        padding: 0;
    }

    .stuck {
        display: none !important;
    }

    .page-hero {
        padding: 40px 0;
    }

    .page-hero-lg {
        height: 620px;
        padding: 90px 0;
    }

    .page-hero-align-top {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-hero-align-bottom {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-lg .page-hero-title {
        font-size: 36px;
    }

    .page-hero-slideshow {
        height: 620px;
    }

    .main {
        padding: 70px 0;
    }

    .sidebar {
        margin-top: 80px;
    }

    .widget-section {
        padding: 70px 0;
    }

    .widget-section:not(.widget-section-padded) + .widget-section:not(.widget-section-padded) {
        margin-top: -70px;
    }

    .form-newsletter {
        margin-top: 30px;
    }

    .entry-people-box {
        margin-bottom: 40px;
    }

    .entry-people-thumbnail {
        width: 100px;
        margin-right: 15px;
    }

    .item-filters {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .item-filter {
        margin: 1px;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 49%;
        -ms-flex: 1 0 49%;
        flex: 1 0 49%;
    }

    .footer-widgets {
        padding: 70px 0 20px;
    }

    .widget {
        margin-bottom: 50px;
    }

    .gallery-columns-6 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .gallery-columns-7 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .gallery-columns-8 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .gallery-columns-9 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    #mobilemenu {
        display: block;
    }

    .mobile-nav-trigger {
        display: inline-block;
    }

    .hidden-md-down {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .page-hero-lg .page-hero-title {
        font-size: 32px;
    }

    .head-intro {
        text-align: center;
    }

    .head-intro-info span {
        margin: 0 3px;
    }

    .head-intro-addons {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .page-hero-lg {
        height: 500px;
        padding: 60px 0;
    }

    .page-hero-slideshow {
        height: 500px;
    }

    .ci-theme-slick-slider .slick-arrow {
        display: none !important;
        visibility: hidden;
    }

    .main {
        padding: 50px 0;
    }

    .widget-section {
        padding: 50px 0;
    }

    .widget-section:not(.widget-section-padded) + .widget-section:not(.widget-section-padded) {
        margin-top: -50px;
    }

    .section-title {
        font-size: 26px;
    }

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

    .entry-title {
        font-size: 18px;
    }

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

    .entry-author-box {
        margin-bottom: 50px;
    }

    .footer-widgets {
        padding: 50px 0 10px;
    }

    .comment-list ol {
        margin: 0;
        padding: 0;
    }

    .comment-reply-link {
        margin: 0;
    }

    .widget {
        margin-bottom: 40px;
    }

    .gallery-columns-1 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-2 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-3 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-4 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-5 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-6 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-7 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-8 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-columns-9 .gallery-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hidden-sm-down {
        display: none !important;
    }

}

@media (max-width: 575px) {

    input,
    textarea {
        width: 100%;
    }

    .container {
        width: 100%;
    }

    .form-newsletter {
        display: block;
    }

    .form-newsletter input {
        margin-bottom: 15px;
    }

    .form-newsletter button {
        display: block;
        width: 100%;
    }

    .comment-author .avatar {
        display: none;
    }

    .hidden-xs-down {
        display: none !important;
    }
}

@media (max-aspect-ratio: 16 / 9) {
    .page-hero-lg .ci-video-background {
        height: 100%;
        top: 0;
        width: 300%;
        left: -100%;
    }
}