/* BASE
================================================== */

body {
    font-size: 1rem;
    line-height: 1.5;
    color: #131313;
    background: #F8F8F8;
}

body, input, button, textarea {
    font-family: Montserrat, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a, input, textarea, button {
    transition: color .3s, background-color .3s, border-color .3s, opacity .3s;
}

a {
    text-decoration: none;
    color: #FF8128;
}

a:hover {
    color: #000;
}

*, *:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

strong {
    font-weight: 600;
}

hr {
    background-color: #d1ccc6;
    opacity: 1;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
	position: sticky;
	z-index: 1010;
	top: 0;
	right: 0;
	left: 0;
    font-size: .875rem;
	background: #131313 url("../img/bg-dark.jpg") center center no-repeat;
    background-size: cover;
	transition: all .3s;
}

	.header > .container {
		display: flex;
        justify-content: space-between;
		align-items: center;
        height: 4.25rem;
	}

		.header__logo {
            display: block;
			height: 1.75rem;
            margin-right: 1rem;
		}

            .header__logo a,
            .header__logo img,
            .header__logo svg {
                display: block;
                width: auto;
                height: 100%;
            }

        .header .input-start-icon {
            width: calc(6.25rem + 16vw);
            max-width: 25rem;
            margin-left: auto;
            margin-right: auto;
        }

        .header__menu {
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
            font-weight: 600;
            list-style-type: none;
        }

            .header__menu li {
                margin-left: 1rem;
            }

                .header__menu li a {
                    color: rgba(255, 255, 255, .5);
                }

                .header__menu li.active a,
                .header__menu li a:hover {
                    color: #fff;
                }

        .header .list-icons {
            margin-left: .5rem;
        }

            .header .list-icons li {
                margin: 0 0 0 1rem;
            }

                .header .list-icons svg {
                    fill: #fff;
                }

/*
    Navigation
*/

.main-menu {
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    font-size: 1rem;
    background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
}

    .main-menu > .container {
        position: relative;
    }
    
        .main-menu > .container > ul {
            display: flex;
            align-items: center;
        }

            .main-menu > .container > ul > li > a {
                padding: 1.125rem;
                font-weight: 600;
                color: #fff; 
            }

            .main-menu > .container > ul > li:hover > a,
            .main-menu > .container > ul > li.current-menu-item > a,
            .main-menu > .container > ul > li.current-menu-ancestor > a {
                color: #fff;
                background-color: rgba(255, 255, 255, .2);
            }

            .main-menu > .container > ul > li.alternative > a {
                padding-left: calc(1rem * 2 + .5rem);
                background: url("../img/icon-alternative.svg") 1rem center no-repeat, linear-gradient(-45deg, #9dd001 0%, #3eaf00 100%);
                background-size: 1rem 1rem, auto;
            }
            
    .main-menu ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .main-menu li {
            position: relative;
        }

            .main-menu li a {
                position: relative;
                display: flex;
            }

                .main-menu li a .submenu-icon {
                    position: relative;
                    display: block;
                    width: 1.5rem;
                    height: 1.5rem;
                    margin-left: .5rem;
                    background-color: rgba(255, 255, 255, .3);
                    border-radius: 100%;
                    transition: transform .3s;
                }

                .main-menu li a .submenu-icon:after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 50%;
                    border-top: 7px solid #fff;
                    border-right: 4px solid transparent;
                    border-left: 4px solid transparent;
                    transform: translate(-50%, -50%);
                }

                .main-menu li:hover > a > .submenu-icon {
                    transform: rotate(180deg);
                }

    .main-menu ul ul {
        position: absolute;
        z-index: 1;
        visibility: hidden;
        top: 100%;
        left: 0;
        min-width: 15rem;
        padding: .75rem 0;
        text-align: left;
        font-weight: 500;
        background: #fff;
        border-radius: 0 0 .375rem .375rem;
        opacity: 0;
        transition: all .3s;
    }

        .main-menu ul ul li > a {
            padding: .5rem 1.125rem;
            color: #000;
        }

        .main-menu ul ul li:hover > a,
        .main-menu ul ul li.current-menu-item > a,
        .main-menu ul ul li.current-menu-ancestor > a {
            color: #FF8128;
        }

            .main-menu ul ul li a .submenu-icon {
                margin-left: auto;
                background-color: rgba(0, 0, 0, .1);
            }

            .main-menu ul ul li a .submenu-icon:after {
                border-top: 4px solid transparent;
                border-right: 0;
                border-bottom: 4px solid transparent;
                border-left: 7px solid #000;
                opacity: .5;
            }

    .main-menu li:hover > ul {
        visibility: visible;
        opacity: 1;
    }

    .main-menu ul ul ul {
        top: -.75rem;
        left: 100%;
        border-radius: 0 .375rem .375rem .375rem;
    }

.main-menu .menu-item-has-megamenu {
    position: static;
}

    .main-menu .menu-item-has-megamenu > ul {
        display: flex;
        align-items: flex-start;
        right: 1.125rem;
        left: 1.125rem;
        width: auto;
        padding: 2rem 2rem .5rem;
        margin: 0 .125rem;
        background-color: #fff;
    }

        .main-menu .menu-item-has-megamenu > ul > li {
            width: 20%;
        }

            .main-menu .menu-item-has-megamenu > ul > li > a {
                text-transform: uppercase;
                font-weight: 500;
                color: rgba(0, 0, 0, .5);
            }

            .main-menu .menu-item-has-megamenu > ul > li.more > a {
                display: inline-block;
                text-transform: none;
                padding-right: 1.25rem;
                font-weight: 600;
                color: #FF8128;
                background: url("../img/icon-arrow-primary-right.svg") right center no-repeat;
                background-size: .75rem 1.25rem;
            }

            .main-menu .menu-item-has-megamenu > ul > li.more > a:hover {
                color: #131313;
            }

                .main-menu .menu-item-has-megamenu > ul > li ul {
                    position: relative;
                    top: 0;
                    left: 0;
                }

    .main-menu .menu-item-has-megamenu ul .submenu-icon {
        display: none;
    }

    .main-menu .menu-item-has-megamenu ul ul {
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .main-menu .menu-item-has-megamenu:hover ul ul {
        visibility: visible;
        opacity: 1;
    }

/*
	Footer
*/

.footer {
    position: relative;
    font-size: .75rem;
    font-weight: 500;
}

.footer:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    height: .625rem;
    background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
}

    .footer__top {
        padding-top: 2.625rem;
        color: rgba(255, 255, 255, .5);
        background: url("../img/bg-dark.jpg") center center no-repeat;
        background-size: cover;
    }

        .footer__logo {
            height: 1.75rem;
            margin-bottom: 1.5rem;
        }

            .footer__logo a,
            .footer__logo img {
                display: block;
                width: auto;
                height: 100%;
            }

        .footer__title {
            margin-bottom: .75rem;
            font-size: .75rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .footer .menu {
            padding: 0;
            list-style-type: none;
        }

            .footer .menu li {
                margin-bottom: .5rem;
            }

                .footer .menu a {
                    color: #fff;
                }

                .footer .menu a:hover {
                    color: #FF8128;
                }

        .footer__submenu {
            padding: 0;
            list-style-type: none;
        }

            .footer__submenu a {
                color: rgba(255, 255, 255, .5);
            }

            .footer__submenu a:hover {
                color: rgba(255, 255, 255, 1);
            }

.copyright {
    padding-top: 1rem;
    padding-bottom: 0;
    color: rgba(0, 0, 0, .5);
    background-color: #fff;
    background-size: auto 100%;
}

    .copyright__logo {
        height: 1.875rem;
    }

    .copyright__menu {
        padding: 2rem 0 .75rem;
        font-size: .875rem;
        font-weight: 600;
        list-style-type: none;
        background: url("../img/bg-footer-primary-mobile.svg") center center no-repeat;
        background-size: cover;
    }

        .copyright__menu li {
            margin-bottom: 1.25rem;
        }

        .copyright__menu a {
            color: #fff;
        }

        .copyright__menu a:hover {
            opacity: .7;
        }

/* SECTIONS
================================================== */

.section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.page-top > *:last-child {
    margin-bottom: 0;
}

/*
    Entry
*/

/*.entry {
    word-wrap: break-word;
    line-height: 2;
}*/
.entry {
    word-wrap: break-word;
    line-height: 1.65;
}
    .entry p {
      font-size: 0.95rem;
    }

    .entry h1 {
        font-size: 1.6875rem;
    }

    .entry h2 {
        font-size: 1.5rem;
    }

    .entry h3 {
        font-size: 1.375rem;
    }

    .entry h4 {
        font-size: 1.25rem;
    }

    .entry h5 {
        font-size: 1.125rem;
    }

    .entry h6 {
        font-size: 1rem;
    }

    .entry a {
        font-weight: 500;
    }

    .entry .btn {
        font-weight: 700;
    }

    .entry .swipebox:not(.button) {
        display: block;
        overflow: hidden;
        text-align: center;
        border-radius: .375rem;
    }

    .entry .swipebox:not(.button):hover {
        opacity: .7;
    }

        .entry .swipebox:not(.button) img {
            width: auto;
        }

/*
    Hero
*/

.hero-wrapper {
    position: relative;
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 15rem;
    height: 100%;
    padding: 1rem 1rem 5rem;
    color: #fff;
    background-position: center center;
    background-size: cover;
}

.hero:before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
}

.hero:after {
    position: absolute;
    content: "";
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%);
}

    .hero > * {
        position: relative;
        z-index: 2;
    }

    .hero__subtitle {
        margin-bottom: .75rem;
        font-size: .75rem;
        text-transform: uppercase;
    }

    .hero__title {
        margin-bottom: .5rem;
        font-size: 1.125rem;
    }

    .hero__text {
        font-size: 1rem;
        line-height: 1.25;
        font-weight: 500;
    }

    .hero .btn--next {
        font-size: 1rem;
    }

    .hero .btn--next:hover {
        color: #fff;
    }

a.hero:hover {
    color: #fff;
}

/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 5rem;
    padding-left: 5rem;
}

    .swiper-pagination-bullet {
        position: relative;
        width: 30px;
        height: 4px;
        background: #fff;
        opacity: .2;
        transition: all .3s;
        border-radius: 0;
    }

    .swiper-pagination-bullet:after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
        transition: all .3s;
        opacity: 0;
    }

    .swiper-pagination-bullet-active,
    .swiper-pagination-bullet-active:after {
        opacity: 1;
    }

    .swiper-horizontal > .swiper-pagination-bullets
    .swiper-pagination-bullet, 
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 1px;
    }

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    margin: 0;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 100%;
    backdrop-filter: blur(.5rem);
    transform: translate(0, -50%);
    transition: opacity .3s;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

    .swiper-button-prev svg,
    .swiper-button-next svg {
        display: flex;
        width: 1rem;
        height: 1rem;
        fill: #131313;
    }

.swiper-button-prev--light,
.swiper-button-next--light {
    background-color: rgba(255, 255, 255, .2);
}

    .swiper-button-prev--light svg,
    .swiper-button-next--light svg {
        fill: #fff;
    }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: .7;
}

.swiper-slide {
    height: auto;
}

/*
    Hero Carousel
*/

.hero-wrapper .swiper-button-prev,
.hero-wrapper .swiper-button-next {
    top: auto;
    bottom: 2.5rem;
    transform: translate(0, 50%);
}

.hero-wrapper .swiper-button-prev {
    left: 1rem;
}

.hero-wrapper .swiper-button-next {
    right: 1rem;
}

.hero-carousel .swiper-pagination {
    bottom: 2.5rem;
    transform: translate(0, 50%);
}

.hero-carousel .swiper-slide {
    background-color: #131313;
}

/*
    User Item
*/

.user-item {
    display: flex;
    align-items: center;
    font-size: .75rem;
    font-weight: 600;
}

    .user-item figure {
        overflow: hidden;
        width: 1.875rem;
        height: 1.875rem;
        margin: 0 .5rem 0 0;
        border-radius: 100%;
    }

/*
    Post Box
*/

.post-box > a {
    display: flex;
    flex-direction: column;
}

.post-box > a,
.post-box > a:hover {
    color: #131313;
}

    .post-box__figure {
        position: relative;
        overflow: hidden;
        margin: 0;
        border-radius: .375rem;
    }

    .post-box__figure:after {
        display: block;
        content: "";
        padding-bottom: 75%;
    }

        .post-box__figure img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

    .post-box__title {
        transition: color .3s;
    }

    .post-box .btn--next {
        margin-left: auto;
    }

.post-box > a:hover .post-box__title {
    color: #ff8128;
}

.post-box > a:hover .post-box__figure img {
    transform: scale(1.05);
}

/*
    Post Box Small ans Extra Small
*/

.post-box--horizontal-sm .post-box__title,
.post-box--horizontal-xs .post-box__title {
    margin-bottom: .25rem;
    font-size: 1rem;
}

/*
    Post Box Horizontal Card
*/

.post-box--card {
    height: 100%;
    font-size: .75rem;
    background-color: #fff;
    border-radius: .375rem;
    box-shadow: 0 .125rem .25rem rgba(228, 225, 221, .5);
}

    .post-box--card > a {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .post-box--card .post-box__figure {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .post-box--card .post-box__figure:after {
        padding-bottom: 56.25%;
    }

    .post-box--card .post-box__content {
        position: relative;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
        padding: 1.5rem;
    }

        .post-box--card .badge {
            position: absolute;
            z-index: 1;
            top: 0;
            left: 1.5rem;
            margin-top: calc(0px - .375rem / 2);
            margin-left: -.75rem;
            transform: translate(0, -50%);
        }

        .post-box--card .post-box__title {
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .post-box--card .post-box__content .post-meta {
            width: 100%;
            margin-top: auto;
        }

.post-box--card.important .post-box__figure:before {
    position: absolute;
    content: "";
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: .375rem;
    background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
}

.post-box--card > a:hover .btn--next {
    color: #131313;
}

    .post-box--card > a:hover .btn--next img {
        transform: translate(.25rem, 0);
    }

.post-box.alternative .post-box__content .badge {
    padding-left: calc(.75rem * 2 + .5rem);
    color: #fff;
    background: url("../img/icon-alternative.svg") .75rem center no-repeat, linear-gradient(-45deg, #9dd001 0%, #3eaf00 100%);
    background-size: .875rem .875rem, auto;
}

.post-box.important .badge {
    color: #fff;
    background: #ff4128;
}

.post-box--card-horizontal {
    height: auto;
}

/*
    Post Box Leader
*/

.post-box--leader {
    position: relative;
}

    .post-box--leader > a,
    .post-box--leader > a:hover {
        color: #fff;
    }

    .post-box--leader .post-box__figure:before {
        position: absolute;
        content: "";
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .6) 100%);
    }

    .post-box--leader .post-box__figure:after {
        padding-bottom: 100%;
    }

    .post-box--leader .post-box__content {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 47rem;
        padding: 1.5rem;
        font-size: 1.25rem;
        line-height: 1.2;
        font-weight: 500;
    }

        .post-box--leader .post-box__content .badge {
            margin-bottom: .75rem;
        }

        .post-box--leader .post-box__title {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .post-box--leader .post-meta time {
            margin-right: 3rem;
        }

        .post-box--leader .post-meta .btn--next {
            margin-left: 0;
            font-size: 1rem;
        }

.post-box--leader > a:hover .post-meta .btn--next {
    color: #fff;
}

/*
    Post Meta
*/

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: .75rem;
    font-weight: 600;
}

    .post-meta .user-item {
        margin-right: .875rem;
    }

    .post-meta time {
        opacity: .5;
    }

/*
    Article
*/

.article .post-meta {
    padding: .875rem;
    border: 1px solid #d1ccc6;
    border-radius: .375rem;
}

    .article .post-meta .list-social {
        width: 100%;
    }

.article__title {
    font-size: 1.625rem;
}

/*
    Card
*/

.card {
    border: 0;
    background-color: #fff;
    border-radius: .375rem;
    box-shadow: 0 .125rem .25rem rgba(228, 225, 221, .5);
}

.card-header,
.card-body,
.card-footer {
    padding: 1.5rem;
}

/*
    Info Box
*/

.info-box {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    font-size: .875rem;
    background: #fff;
    border-radius: .375rem;
    box-shadow: 0 .125rem .25rem rgb(228, 225, 221, .5);
}

    .info-box > *:last-child {
        margin-bottom: 0;
    }

    .info-box .wp-caption {
        background-color: #F8F8F8;
    }

.info-box--border {
    border-left: 5px solid #FF8128;
    padding-right: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: .9375rem 1.5rem;
    border: 0;
    font-size: .875rem;
    font-weight: 700;
    box-shadow: none;
    border-radius: .375rem;
    transition: color .3s, background-color .3s, border-color .3s, opacity .3s;
}

.btn-sm {
    padding: .5rem 1rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 .25rem rgba(0 0 0 / 10%);
}

.btn-primary,
.btn-primary:focus {
    background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
}

.btn-primary:hover {
    opacity: .8;
}

.btn--gray,
.btn--gray:focus {
    color: #131313;
    background: #e3d9cd;
}

.btn--gray:hover {
    color: #fff;
    background-color: #ff8128;
    opacity: 1;
}

.btn--next {
    display: inline-flex;
    align-items: center;
    padding: 0;
    font-size: .875rem;
    color: #ff8128;
}

    .btn--next img {
        display: block;
        width: .75rem;
        height: 1.25rem;
        margin-left: .75rem;
        object-fit: contain;
        transition: transform .3s;
    }

a.btn--next:hover,
button.btn--next:hover {
    color: #131313;
}

    a.btn--next:hover img,
    button.btn--next:hover img {
        transform: translate(.25rem, 0);
    }

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    opacity: .4;
}

/*
	Form components
*/

.form-label {
    display: block;
    margin-bottom: .25rem;
    padding-left: 1rem;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
}

.form-control,
.form-select {
    padding: .875rem 1rem;
    font-weight: 500;
    font-size: .875rem;
    border-radius: .375rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    color: #131313;
    border-color: #d1ccc6;
    background-color: rgba(237, 234, 230, .2);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .05);
}

.form-check {
    padding-left: 2.75em;
    font-weight: 500;
    font-size: .875rem;
}

    .form-check .form-check-input {
        width: 2.142857em;
        height: 2.142857em;
        margin-left: -2.75em;
        margin-top: -.3125em;
        border-color: #d1ccc6;
        background-color: rgba(237, 234, 230, .2);
    }

    .form-check .form-check-input[type="checkbox"] {
        border-radius: .375rem;
    }

    .form-check .form-check-input:focus {
        box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .05);
    }

    .form-check .form-check-input:checked {
        border-color: #FF8128;
        background-color: #FF8128;
    }

.form-control--white,
.form-control--white:focus,
.form-select--white,
.form-select--white:focus {
    background-color: #fff;
}

.form-control--dark,
.form-control--dark:focus,
.form-select--dark,
.form-select--dark:focus {
    color: #fff;
    border-color: transparent;
    background-color: rgba(255, 255, 255, .1);
}

.form-control--dark:focus,
.form-select--dark:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .05);
}

.input-daterange .form-control {
    text-align: left;
    background-image: url("../img/icon-calendar.svg");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem 1rem;
}

.input-daterange .form-control:first-child,
.input-daterange .form-control:last-child {
    border-radius: .375rem;
}

.input-start-icon {
    position: relative;
}

    .input-start-icon .form-control {
        padding-left: 3.25rem;
    }

    .input-start-icon svg {
        position: absolute;
        top: 50%;
        left: 1rem;
        width: 1.25rem;
        height: 1.25rem;
        fill: #131313;
        transform: translate(0, -50%);
        opacity: .5;

    }

.input-start-icon--dark svg {
    fill: #fff;
}

/*
    Contact Form 7
*/

.wpcf7 form .wpcf7-response-output {
    margin: 0 0 2rem;
    padding: 1rem 1.5rem;
    border-radius: .375rem;
}

.wpcf7-not-valid-tip {
    margin-top: .25rem;
    font-size: .75rem;
    font-weight: 600;
}

/*
    Datepicker
*/

.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover:active {
    background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
}

/*
    Titles
*/

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
}

    .section-title img {
        display: block;
        width: 1.125rem;
        height: 1.875rem;
        margin-right: .5rem;
        object-fit: contain;
    }

.section-title--text {
    text-transform: none;
    font-weight: 500;
}

.section-title.section-title--user img {
    width: 3.125rem;
    height: 3.125rem;
    margin-right: 1rem;
    object-fit: cover;
    border-radius: 100%;
}

.section-subtitle {
    display: block;
    font-size: .875rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(0, 0, 0, .5);
}

/*
    Lists
*/

.list-icons {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .list-icons li {
        margin: 0 1rem 1rem 0;
    }

        .list-icons li a:hover {
            opacity: .5;
        }

        .list-icons svg {
            display: block;
            width: 1.25rem;
            height: 1.25rem;
        }

.list-links {
    padding: 0;
    font-size: .875rem;
    font-weight: 500;
    list-style-type: none;
}

    .list-links li {
        margin-bottom: 1rem;
    }

        .list-links a {
            color: #131313;
        }

        .list-links a:hover {
            color: #FF8128;
        }

.list-social {
    display: flex;
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
    font-size: .75rem;
    line-height: 1.25;
}

    .list-social li {
        margin-bottom: 1.25rem;
    }

        .list-social li a {
            display: flex;
            align-items: center;
            color: #131313;
        }

            .list-social li a svg {
                display: block;
                flex: 0 0 auto;
                width: 3.125rem;
                height: 3.125rem;
                fill: #131313;
            }

            .list-social li a span {
                display: none;
            }

        .list-social li a:hover {
            opacity: .6;
        }

.list-social--white li a {
    color: #fff;
}

    .list-social--white li a svg {
        fill: #fff;
    }

    .list-social--inline li {
        margin-bottom: .5rem;
    }

        .list-social--inline li a svg {
            width: 1.875rem;
            height: 1.875rem;
            margin-right: .5rem;
        }

        .list-social--inline li a span {
            display: block;
            font-weight: 600;
        }

.list-circle-icon {
    margin-bottom: 3rem;
    padding: 0;
    font-size: .875rem;
    font-weight: 600;
    list-style-type: none;
}

    .list-circle-icon li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

        .list-circle-icon__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            width: 3.125rem;
            height: 3.125rem;
            margin-right: 1rem;
            border: 1px solid #D1CCC6;
            border-radius: 100%;
        }

            .list-circle-icon__icon svg {
                display: block;
                width: 1.375rem;
                height: 1.375rem;
            }

        .list-circle-icon li > div {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

            .list-circle-icon__title {
                display: block;
                margin-bottom: .25rem;
                font-size: .75rem;
                font-weight: 400;
                text-transform: uppercase;
            }

            .list-circle-icon__title + span {
                word-wrap: break-word;
            }

.list-tags {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
}

    .list-tags li {
        margin: 0 .375rem .375rem 0;
    }

        .list-tags a {
            display: block;
            padding: .5rem .75rem;
            font-size: .875rem;
            font-weight: 600;
            color: #131313;
            background: #e3d9cd;
            border-radius: .375rem;
        }

        .list-tags a:hover {
            color: #fff;
            background-color: #ff8128;
        }

/*
    Pagination
*/

.navigation.pagination {
    display: block;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: .875rem;
}

    .pagination .nav-links a,
    .pagination .nav-links span {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: .375rem;
    }

    .pagination .nav-links a {
        color: #131313;
    }

    .pagination .nav-links a:hover {
        opacity: .5;
    }

    .pagination .nav-links .page-numbers.dots {
        width: auto;
        opacity: .3;
    }

    .pagination .nav-links .current {
        color: #fff;
        background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
    }

    .pagination .nav-links .prev img,
    .pagination .nav-links .next img {
        width: .75rem;
        height: 1.25rem;
    }

.post-box + .navigation.pagination {
    margin-top: 3rem;
}

/*
    Badge
*/

.badge {
    font-size: .75rem;
    font-weight: 600;
    padding: .5rem .75rem;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
    background: #fff;
    border-radius: .375rem;
}

/*
    Cover
*/

.cover {
    position: relative;
    overflow: hidden;
    border-radius: .375rem;
}

.cover:after {
    display: block;
    content: "";
    padding-bottom: 57.75%;
}

    .cover img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*
    Alerts
*/

.alert {
    border: 0;
    border-radius: .375rem;
}

/*
    Quote
*/

blockquote {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 50px;
    font-style: italic;
}

blockquote:before {
    position: absolute;
    content: "\f10e";
    top: 0;
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-size: 30px;
    opacity: .2;
}

    blockquote cite {
        font-size: .875em;
        font-style: normal;
        font-weight: 700;
    }

    blockquote > *:last-child {
        margin-bottom: 0;
    }

/* GLOBALS
================================================== */

.bg--gradient-top-gray {
    background: linear-gradient(to bottom, #e4e1dd 0%, rgba(255, 255, 255, 0) 18.75rem);
}

.fill--facebook {
    fill: #1977f2 !important;
}

.fill--twitter {
    fill: #1da1f2 !important;
}

.mb--gutter {
    margin-bottom: 1.5rem;
}

.text--leader {
    font-size: 1.25rem;
    font-weight: 500;
}

.rounded {
    border-radius: .375rem;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {

    .post-box--card-horizontal .btn--next,
    .post-box--card-vertica .btn--next,
    .post-box--leader .btn--next {
        display: none;
    }

    .post-box--leader .post-meta time {
        margin-right: 0;
    }

}

/*
	SM and down
*/

@media screen and (max-width: 767px) {

}

/*
	MD and down
*/

@media screen and (max-width: 991px) {

    .footer__logo {
        margin-bottom: 2.5rem;
    }

    .footer .menu,
    .footer__title,
    .footer__submenu {
        font-size: .875rem;
    }

    .footer .menu,
    .footer__submenu {
        margin-bottom: 2.5rem;
    }

        .footer .menu li,
        .footer__submenu li {
            margin-bottom: 1rem;
        }

    .footer__title {
        margin-bottom: 1.5rem;
    }

    .footer .list-social {
        margin-bottom: 1rem;
    }

    .post-box .btn--next {
        font-size: .75rem;
    }

        .post-box .btn--next img {
            width: .625rem;
            height: 1rem;
            margin-left: .5rem;
        }


}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {

    .main-menu {
        display: none;
    }

    /*
        Mobile Menu
    */

    .mobile-menu-btn {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
    }

        .mobile-menu-btn span {
            position: absolute;
            top: 50%;
            right: 0;
            left: 0;
            height: 3px;
            margin-top: -1px;
            background: #fff;
            transition: all .3s;
            border-radius: 3px;
        }

        .mobile-menu-btn span:nth-child(1) {
            transform: translate3d(0, -8px, 0);
        }

        .mobile-menu-btn span:nth-child(3) {
            transform: translate3d(0, 8px, 0);
        }

    .mobile-menu-btn--active span {
        right: 3px;
        left: 3px;
        height: 2px;
    }

    .mobile-menu-btn--active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn--active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn--active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .mobile-menu {
        position: fixed;
        visibility: hidden;
        z-index: 1100;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        font-size: .75rem;
        color: rgba(255, 255, 255, .5);
        background: #131313;
        opacity: 0;
        transition: visibility .3s, opacity .3s;
    }

        .mobile-menu a {
            color: #fff;
        }

        .mobile-menu__header > .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4.25rem;
        }

            .mobile-menu__headline {
                width: 100%;
            }

                .mobile-menu__title {
                    display: none;
                    align-items: center;
                    font-size: 1rem;
                    line-height: 1.25;
                    font-weight: 600;
                }

                    .mobile-menu__title img {
                        display: block;
                        width: .625rem;
                        height: 1rem;
                        margin-right: 1rem;
                    }

        .mobile-menu__wrapper {
            overflow: auto;
            height: calc(100vh - 4.25rem);
        }

            .mobile-menu .form-control--dark {
                padding: .25rem 0 .25rem 2rem;
                font-size: 1rem;
                background: transparent;
            }

            .mobile-menu .form-control--dark:focus {
                box-shadow: none;
            }

            .mobile-menu .input-start-icon--dark svg {
                left: 0;
                opacity: 1;
            }

            .mobile-menu__list {
                font-size: 1rem;
                font-weight: 600;
            }

            .mobile-menu__list,
            .mobile-menu__list ul {
                margin: 0;
                padding: 0;
                list-style-type: none;
            }

                .mobile-menu__list a {
                    display: inline-block;
                    padding: 1em 0;
                }

                .mobile-menu__list .alternative {
                    padding-top: 1rem;
                    padding-bottom: 1rem;
                }

                    .mobile-menu__list .alternative a {
                        padding: .5rem 1rem .5rem calc(1rem + .75rem + .5rem);
                        background: url("../img/icon-alternative.svg") .75rem center no-repeat, linear-gradient(-45deg, #9dd001 0%, #3eaf00 100%);
                        background-size: 1rem 1rem, auto;
                        border-radius: .375rem;
                    }

                .mobile-menu__list > .menu-item-has-children > a {
                    padding-right: 1.25rem;
                    background: url("../img/icon-arrow-primary-right.svg") right center no-repeat;
                    background-size: .625rem 1rem;
                }

                .mobile-menu__list .menu-item-has-children > .submenu {
                    position: fixed;
                    display: none;
                    overflow: auto;
                    z-index: 1;
                    top: 4.25rem;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    padding-bottom: 2rem;
                    background: #131313;
                }

                    .mobile-menu__list .menu-item-has-children > .submenu > .container > ul > li > a {
                        text-transform: uppercase;
                        font-size: .875rem;
                        font-weight: 500;
                        color: rgba(255, 255, 255, .5);
                    }

                    .mobile-menu__list .menu-item-has-children > .submenu > .container > ul > li ul {
                        margin-bottom: 1rem;
                    }

            .mobile-menu__sublist {
                font-weight: 600;
                font-size: .875rem;
                padding: 0;
                list-style-type: none;
            }

                .mobile-menu__sublist a {
                    display: inline-block;
                    padding-top: .5rem;
                    padding-bottom: .5rem;
                    color: rgba(255, 255, 255, .5);
                }

                .mobile-menu__sublist .current-menu-item a {
                    color: #fff;
                }

            .mobile-menu__footer {
                padding-bottom: .5rem;
            }

    .mobile-menu--submenu-active .header__logo {
        display: none;
    }

    .mobile-menu--submenu-active .mobile-menu__title {
        display: flex;
    }

    .mobile-menu-active {
        overflow: hidden;
    }

        .mobile-menu-active .mobile-menu {
            visibility: visible;
            opacity: 1;
        }

        .mobile-menu__header--active .header__logo {
            display: none;
        }

        .mobile-menu__header--active .mobile-menu__title {
            display: flex;
        }

        .mobile-menu__list .menu-item-has-children.active > .submenu {
            display: block;
        }
}

/*
    MD and up
*/

@media screen and (min-width: 768px) {

    .post-box--leader .post-box__figure:after {
        padding-bottom: 57.75%;
    }

    .post-box--leader .post-box__content {
        padding: 3rem;
    }

}

/*
	LG and up
*/

@media screen and (min-width: 992px) {

    html {
        font-size: 87.5%;
    }

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

        .footer__submenu li {
            margin-left: 1.5rem;
        }

    .copyright {
        padding-top: 2rem;
        padding-bottom: .5rem;
        background: #fff url("../img/bg-footer-primary.svg") right center no-repeat;
        background-size: auto 100%;
    }

        .copyright__logo {
            height: 2.5rem;
        }

        .copyright__menu {
            display: flex;
            justify-content: flex-end;
            padding: 0;
            background: transparent;
        }

            .copyright__menu li {
                margin-left: 2.5rem;
            }

    /*
        Hero Carousel
    */

    .hero-wrapper > .container {
        position: absolute;
        z-index: 4;
        right: 0;
        bottom: 11.25rem;
        left: 0;
    }

        .hero-wrapper > .container > .swiper-button-prev,
        .hero-wrapper > .container > .swiper-button-next {
            right: 1.25rem;
            bottom: 0;
            margin: 0;
        }

        .hero-wrapper > .container > .swiper-button-prev {
            right: calc(3.125rem + .75rem + 1.25rem);
            left: auto;
        }

    /*
        Hero Thumbnail Carousel
    */

    .hero-thumbnail-carousel {
        position: relative;
        padding-top: .625rem;
    }

    .hero-thumbnail-carousel:before {
        position: absolute;
        content: "";
        top: .625rem;
        right: calc(3.125rem * 2 + .75rem + 1rem);
        left: 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    /*
        Hero
    */

    .hero {
        align-items: center;
        padding-bottom: calc(11.25rem + 2rem);
    }

    /*
        Hero Thumbnails
    */

    .hero-thumbnails {
        position: absolute;
        z-index: 3;
        right: 0;
        bottom: 0;
        left: 0;
    }

        .hero-thumbnails > .container {
            position: relative;
        }

        .hero-thumbnail {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 11.25rem;
            padding: 2.5rem 1.25rem 1rem;
            font-size: .75rem;
            color: #fff;
            cursor: pointer;
        }

            .hero-thumbnail > * {
                position: relative;
                z-index: 2;
            }

            .hero-thumbnail__title {
                margin-bottom: .5rem;
                font-size: .875rem;
            }

            .hero-thumbnail time {
                position: relative;
                margin-top: auto;
                font-weight: 600;
                color: rgba(255, 255, 255, .5);
            }

            .hero-thumbnail time:after {
                position: absolute;
                content: "";
                opacity: 0;
                top: 50%;
                right: 0;
                width: .75rem;
                height: 1.25rem;
                background: url("../img/icon-arrow-primary-right.svg") right center no-repeat;
                background-size: contain;
                transform: translate(0, -50%);
                transition: opacity .3s;
            }

            .hero-thumbnail__bg {
                position: absolute;
                z-index: 1;
                visibility: hidden;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background-size: cover;
                background-position: center center;
                opacity: 0;
                transition: all .3s;
            }

            .hero-thumbnail__bg:before {
                position: absolute;
                content: "";
                z-index: 2;
                right: 0;
                bottom: 100%;
                left: 0;
                height: .625rem;
                background: linear-gradient(-45deg, #ffa428 0%, #ff4128 100%);
            }

            .hero-thumbnail__bg:after {
                position: absolute;
                content: "";
                z-index: 1;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: #000;
                opacity: .4;
            }

        .hero-thumbnail:hover .hero-thumbnail__bg,
        .swiper-slide-thumb-active .hero-thumbnail__bg {
            visibility: visible;
            opacity: 1;
        }

        .hero-thumbnail:hover time:after,
        .swiper-slide-thumb-active .hero-thumbnail time:after {
            opacity: 1;
        }

    .post-box--card-horizontal .post-box__figure {
        height: 100%;
        border-radius: .375rem 0 0 .375rem;
    }

    .post-box--card-horizontal .post-box__figure:before {
        display: none;
    }

    .post-box--card.post-box--card-horizontal .post-box__content {
        align-items: flex-start;
        height: 100%;
        padding-left: .5rem;
        font-size: 1rem;
    }

        .post-box--card.post-box--card-horizontal .badge {
            position: relative;
            top: 0;
            left: 0;
            margin: 0 0 .75rem;
            transform: none;
        }

        .post-box--card.post-box--card-horizontal:not(.alternative):not(.important) .badge {
            padding: 0;
            background-color: transparent;
        }

        .post-box--card-horizontal .post-box__title {
            font-size: 1.5rem;
        }

    .list-social {
        display: block;
        margin-bottom: 0;
        padding: 0;
        list-style-type: none;
        font-size: .75rem;
        line-height: 1.25;
    }

        .list-social li {
            margin-bottom: 1.25rem;
        }

            .list-social li a svg {
                width: 1.875rem;
                height: 1.875rem;
                margin-right: 1rem;
            }

            .list-social li a span {
                display: block;
            }

}
 
/*
    XL and up
*/
 
@media screen and (min-width: 1200px) {

    .mb-lg--n1 {
        margin-bottom: -1rem;
    }

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

        .header > .container {
            height: 6.25rem;
            padding-top: 0;
        }

            .header__logo {
                height: 2.5rem;
            }

    .footer__logo {
        height: 1.875rem;
    }

    .hero {
        min-height: calc(100vh - 6.25rem - 3.75rem);
    }

        .hero__title {
            font-size: 3.125rem;
            margin-bottom: 1rem;
        }

        .hero__text {
            font-size: 1.5rem;
        }

    .post-box--card .post-box__content {
        padding: 2rem;
    }

        .post-box--card .badge {
            left: 2rem;
        }

        .post-box--card .post-box__title {
            font-size: 1.5rem;
        }

    .post-box--horizontal-sm .post-box__title {
        margin-bottom: .5rem;
        font-size: 1.25rem;
    }

    .post-box--horizontal-xs .post-box__title {
        font-size: .875rem;
    }

    .post-box--leader .post-box__title {
        font-size: 1.875rem;
    }

    .post-meta .user-item {
        margin-right: 1.25rem;
    }

    .article__title {
        font-size: 3.125rem;
    }

    .article .post-meta {
        font-size: .875rem;
    }

        .article .post-meta .list-social {
            width: auto;
            margin-left: auto;
            white-space: nowrap;
            font-size: inherit;
        }

        .article .post-meta .user-item {
            font-size: inherit;
        }

            .article .post-meta .user-item figure {
                width: 3.125rem;
                height: 3.125rem;
            }

    .card-header,
    .card-body,
    .card-footer {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

        .section-title img {
            width: 1.375rem;
            height: 2.5rem;
            margin-right: 1rem;
        }

    .section-title--sm {
        font-size: 1.25rem;
    }

        .section-title--sm img {
            width: 1rem;
            height: 1.875rem;
        }

    .text--leader {
        font-size: 1.5rem;
    }

    /*
        Quote
    */

    blockquote {
        padding-left: 70px;
        font-size: 1.25rem;
    }

    blockquote:before {
        top: calc(1rem - .5em);
        font-size: 50px;
    }

}

/*
    XXL and up
*/
 
@media screen and (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl,
    .col,
    [class*="col-"] {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .row {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }

    .mb--gutter {
        margin-bottom: 2.5rem;
    }

    .hero-thumbnail__title {
        font-size: 1rem;
    }

}

/*
	XXXL and up
*/

@media screen and (min-width: 1500px) {

    html {
        font-size: 100%;
    }

    .container {
        max-width: 1440px;
    }

    .header__menu li {
        margin-left: 1.5rem;
    }

}

/*
    Facebook
*/

.fb-post > span,
.fb-post iframe {
    display: block;
    max-width: 100% !important;
}