/* BASE
================================================== */

body {
    line-height: 1.75;
    color: #323232;
    background: #fff;
}

body, input, button, textarea {
    font-family: "Open Sans", 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: 700;
    font-family: Montserrat, Arial, sans-serif;
}

p,
ul,
ol,
table,
figure,
blockquote {
    margin-bottom: 2rem;
}

a, input, textarea, button {
    transition: color .5s, background-color .5s, border-color .5s, opacity .5s;
}

a {
    text-decoration: none;
    color: #f5333f;
}

a:hover {
    color: #323232;
}

*, *:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
	position: sticky;
    display: flex;
    align-items: center;
	z-index: 1010;
	top: 0;
	right: 0;
	left: 0;
    height: 4rem;
	background: #fff;
	transition: all .5s;
}

	.header > .container {
		display: flex;
		align-items: center;
	}

		.header__logo {
			display: flex;
            align-items: center;
            margin-right: auto;
		}

			.header__logo > a > img,
            .header__logo > a > svg {
                width: auto;
				height: 2.25rem;
			}

            .header__logo__by {
                margin-left: .5rem;
                padding-left: .5rem;
                text-align: center;
                line-height: 1;
                border-left: 1px solid #e4e4e4;
            }

                .header__logo__by span {
                    display: block;
                    margin-bottom: .25rem;
                    font-size: .625rem;
                    text-transform: uppercase;
                }

                .header__logo__by img {
                    height: .75rem;
                }

        .header__options {
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

            .header__options li {
                margin-left: 1.5rem;
            }

                .header__options li a,
                .header__options li img {
                    display: flex;
                }

                .header__options li a:hover {
                    opacity: .6;
                }

                .header__options li img {
                    max-height: 1.5rem;
                }

.header__search {
    position: relative;
}

    .header__search form {
        position: fixed;
        display: flex;
        align-items: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 4rem;
        background: #fff;
    }

        .header__search .container {
            display: flex;
            align-items: center;
        }

        .header__search form .form-control {
            border: 0;
            border-radius: 0;
        }

        .header__search form .btn {
            flex: 0 0 auto;
            height: 1.5rem;
            margin-right: .25rem;
            padding: 0;
            border: 0;
        }

            .header__search form .btn img {
                width: auto;
                height: 100%;
            }

        .header__search form .form-control {
            padding-left: 0;
        }

        .header__search form .form-control:focus {
            box-shadow: none;
        }

/*
    Headline
*/

.headline {
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #fff;
    background: #f5333f;
}

    .headline a:not(.btn),
    .headline .breadcrumb-item span,
    .headline .breadcrumb-item + .breadcrumb-item::before {
        color: inherit;
    }

/*
    Navigation
*/

.main-menu {
    display: flex;
    align-items: center;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

    .main-menu ul {
        margin-bottom: 0;
    }

        .main-menu li {
            position: relative;
        }

            .main-menu li a {
                position: relative;
                display: block;
                color: #323232;
            }
    
    .main-menu > ul {
        display: flex;
        align-items: center;
        padding: 0;
        list-style-type: none;
    }

        .main-menu > ul > li > a {
            padding: 0 1.5rem;
            text-transform: uppercase;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        .main-menu > ul > li:hover > a,
        .main-menu > ul > li.active > a {
            border-bottom-color: #f5333f;
            color: #f5333f;
        }

        .main-menu > ul > li > ul,
        .main-menu > ul > li > ul ul {
            position: absolute;
            z-index: 1;
            visibility: hidden;
            min-width: 12rem;
            padding: 1rem 0;
            list-style-type: none;
            text-align: left;
            background: #fff;
            opacity: 0;
            box-shadow: 0 0 1rem rgba(0 0 0 / 5%);
            transition: all .5s;
        }

        .main-menu > ul > li > ul {
            top: 100%;
            left: 0;
        }

            .main-menu > ul > li > ul ul {
                top: -1rem;
                left: 100%;
            }

            .main-menu > ul > li > ul a {
                padding: .25rem 1.5rem;
            }

            .main-menu > ul > li > ul li:hover > a,
            .main-menu > ul > li > ul li.active > a {
                color: #f5333f;
            }

        .main-menu .megamenu {
            position: fixed;
            visibility: hidden;
            overflow: auto;
            z-index: 1;
            right: 0;
            left: 0;
            top: 6.25rem;
            max-height: calc(100vh - 6.25rem);
            padding-top: 2rem;
            padding-bottom: 2rem;
            border-top: 1px solid #e5e5e5;
            background: #fff;
            box-shadow: 0 .5rem .5rem rgba(0 0 0 / 5%);
            opacity: 0;
        }

            .main-menu .megamenu a img {
                display: block;
                width: 4.375rem;
                height: 4.375rem;
                object-fit: cover;
                margin-bottom: 1rem;
                border-radius: 100%;
            }

            .main-menu .megamenu > .container > ul li a {
                padding: .25rem 0;
            }

            .main-menu .megamenu > .container > ul li:hover > a,
            .main-menu .megamenu > .container > ul li.active > a {
                color: #f5333f;
            }

            .main-menu .megamenu > .container > ul > li > a {
                text-transform: uppercase;
                font-weight: 700;
            }

            .main-menu .megamenu > .container > ul > li > ul {
                padding: 0;
                list-style-type: none;
            }

        .main-menu li:hover > ul,
        .main-menu li:hover > .megamenu {
            visibility: visible;
            opacity: 1;
        }

/*
	Footer
*/

.footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
    line-height: 1.5;
    color: #fff;
    background: #323232;
}

    .footer li {
        margin-bottom: .5rem;
    }

    .footer a {
        color: inherit;
    }

    .footer a:hover {
        opacity: .6;
    }

    .footer .list-social {
        border-bottom: 1px solid rgba(255 255 255 / 20%);
    }

/*
    Sidebar
*/

.sidebar {
    height: 100%;
    font-size: .875rem;
    background-color: #e0e0e0;
}

    .sidebar .border-bottom--white {
        border-bottom-width: 3px;
    }

/*
    Offcanvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1rem;
    font-family: Montserrat, Arial, sans-serif;
    background: #fff;
}

    .offcanvas ul {
        padding: 0;
        list-style-type: none;
    }

        .offcanvas ul a {
            display: flex;
            align-items: center;
            min-height: 3rem;
            padding: .25rem 0;
            color: #000;
        }

            .offcanvas ul a i {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 0 0 auto;
                width: 2.5rem;
                height: 2.5rem;
                font-size: .75rem;
                margin-left: auto;
                background: rgba(0, 0, 0, .1);
                border-radius: 100%;
                cursor: pointer;
            }

            .offcanvas ul ul {
                margin-left: 1.5rem;
                font-size: .875rem;
            }

            .offcanvas-body > ul ul {
                display: none;
            }
            
            .offcanvas-body ul ul ul {
                display: block;
            }

            .offcanvas-body > ul li.active > ul {
                display: block;
            }

            .offcanvas ul li.active > a > i {
                transform: rotate(90deg);
            }
    
    .offcanvas-body > ul > li > a {
        text-transform: uppercase;
        font-weight: 500;
    }

/* SECTIONS
================================================== */

.section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/*
    Section Media
*/

.section-media .section-title {
    position: relative;
    z-index: 1;
}

.section-media .section-title span {
    position: relative;
    display: inline-block;
    padding-top: 3rem;
    padding-right: 2rem;
}

.section-media .section-title span:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    right: 0;
    width: 200%;
    padding-bottom: 110%;
    background: #f5333f;
}

.section-media .panel {
    position: relative;
    z-index: 2;
}

/*
    Hero
*/

.hero {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 400px;
    padding: 2rem;
    text-align: center;
    color: #fff;
}

    .hero > * {
        position: relative;
        z-index: 2;
    }

    .hero__bg {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-position: center center;
    }

    .hero .btn {
        max-width: 100%;
        min-width: auto;
    }

.hero--default .page-title {
    text-shadow: 0 0 .5rem rgba(0 0 0 / 100%);
}

.hero--bottom .hero__title,
.hero--bottom .hero__content {
    width: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

.hero-carousel .swiper-button-prev,
.hero-carousel .swiper-button-next {
    width: 3rem;
    height: 3rem;
    margin: 0;
    color: #fff;
    background: rgba(255 255 255 / 30%);
    border-radius: 100%;
    transition: opacity .5s;
}

.hero-carousel .swiper-button-prev {
    left: 0;
    padding-left: .75rem;
    transform: translate(-40%, -50%);
}

.hero-carousel .swiper-button-next {
    right: 0;
    padding-right: .75rem;
    transform: translate(40%, -50%);
}

.hero-carousel .swiper-button-prev:hover,
.hero-carousel .swiper-button-next:hover {
    color: #fff;
    opacity: .7;
}

/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-button-prev,
.swiper-button-next {
    color: #c6c6c6;
    transition: color .5s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #323232;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.partner-carousel {
    position: static;
    text-align: center;
}

    .partner-carousel .swiper-slide {
        margin: 0px !important;
        padding: 15px;
    }

    .partner-carousel img {
        max-width: 100%;
        height: 5rem;
        object-fit: contain;
    }

    .partner-carousel .swiper-button-prev {
        left: -.75rem;
    }

    .partner-carousel .swiper-button-next {
        right: -.75rem;
    }

/*
    Post Box
*/

.post-box,
.post-box:hover,
.post-box:focus {
    color: #323232;
}

.post-box {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

    .post-box__category {
        padding: .75rem 1.5rem;
        font-size: 1rem;
    }

    .post-box figure {
        position: relative;
        overflow: hidden;
        margin-bottom: 1rem;
    }

    .post-box figure:before {
        display: block;
        content: "";
        padding-bottom: 55%;
    }

    .post-box figure:after {
        position: absolute;
        content: "";
        z-index: 2;
        top: 50%;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(to bottom, rgba(0 0 0 / 0%) 0%, rgba(0 0 0 / 100%) 100%);
        opacity: .5;
    }

        .post-box figure img {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

    .post-box__content {
        flex: 1 1 auto;
        transition: background-color .5s, color .5s;
    }

    .post-box__content > *:last-child {
        margin-bottom: 0;
    }

    .post-box__title {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        line-height: 1.5;
        font-weight: 500;
        
    }

    .post-box time {
        display: inline-block;
        margin-bottom: 1.5rem;
        padding: 0 .5rem;
        font-size: .875rem;
        font-family: Montserrat, Arial, sans-serif;
        font-weight: 500;
        background: rgba(0 0 0 / 10%);
    }

.post-box:not(.post-box--card) .post-box__title {
    transition: color .5s;
}

.post-box:not(.post-box--card):hover .post-box__title {
    color: #f5333f;
}

.post-box:hover figure img {
    transform: scale(1.1);
}

.post-box--lg .post-box figure:before {
    padding-bottom: 48.8515%;
}

.post-box--lg .post-box__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.post-box--card {
    box-shadow: 0 0 1rem rgba(0 0 0 / 10%);
}

    .post-box.post-box--card figure {
        margin-bottom: 0;
    }

    .post-box--card .post-box__content {
        padding: 2rem;
        background-color: #fff;
    }

.post-box--card:hover .post-box__content {
    color: #fff;
    background-color: #f5333f;
}

.post-box--vertical {
    flex-direction: row;
    min-height: 21.25rem;
}

    .post-box--vertical .post-box__content {
        height: 100%;
    }

.post-box--sm {
    font-size: .6875rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 10%);
}

    .post-box--sm time {
        font-size: inherit;
    }

    .post-box--sm .post-box__title {
        font-size: 1.125rem;
    }

    .post-box--sm .post-box__content {
        padding: 1.5rem;
    }

/*
    Profile Box
*/

.profile-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2rem 1rem;
    text-align: center;
    font-size: .875rem;
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

    .profile-box > *:last-child {
        margin-bottom: 0;
    }

    .profile-box figure {
        overflow: hidden;
        width: 6rem;
        height: 6rem;
        margin-bottom: 1rem;
        border-radius: 100%;
    }

        .profile-box figure img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .profile-box__title {
        margin-bottom: .25rem;
        font-size: 1rem;
        color: #f5333f;
    }

/*
    Icon Box
*/

.icon-box {
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.5;
}

    .icon-box > *:last-child {
        margin-bottom: 0;
    }

    .icon-box__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 4rem;
        margin: 0 auto 1.5rem;
        background: #f5333f;
        border-radius: 100%;
    }

        .icon-box__icon img {
            display: block;
            width: 50%;
            height: 50%;
            object-fit: contain;
        }

    .icon-box__title {
        margin-bottom: .75rem;
        font-size: 1.25rem;
        text-transform: uppercase;
        color: #f5333f;
    }

.icon-box--sm .icon-box__icon {
    width: 4.8125rem;
    height: 4.8125rem;
    margin-bottom: .5rem;
}

    .icon-box--sm .icon-box__icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .icon-box--sm .icon-box__title {
        font-size: 1rem;
        text-transform: none;
        font-weight: 500;
        color: #323232;
    }

/*
    Link Box
*/

.link-box {
    display: flex;
    align-items: center;
    min-height: 9.375rem;
    padding: 1.5rem;
    line-height: 1.5;
    color: #f5333f;
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

    .link-box__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 6.25rem;
        height: 6.25rem;
        margin-right: 1.5rem;
        background: #f5333f;
        border-radius: 100%;
        transition: all .5s;
    }

        .link-box__icon img {
            max-width: 2.875rem;
            max-height: 2.875rem;
            object-fit: contain;
        }

.link-box:hover .link-box__icon {
    transform: scale(1.1);
}

/*
    Job Box
*/

.job-box,
.job-box:hover {
    color: #323232;
}

.job-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
    border-radius: .75rem;
}

    .job-box__header {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 8rem;
        padding: 1.25rem 1rem 1.25rem 6rem;
    }

        .job-box__header figure {
            position: absolute;
            overflow: hidden;
            flex: 0 0 auto;
            top: 50%;
            left: 1rem;
            width: 4rem;
            height: 4rem;
            border: 8px solid #fff;
            border-radius: 100%;
            box-shadow: 0 0 0 1px #e6e6e6;
            transform: translate(0, -50%);
        }

            .job-box__header figure img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .job-box__title {
            font-size: 1rem;
            margin: 0;
            color: #f5333f;
        }

        .job-box__header .badge {
            z-index: 2;
            left: 6rem;
            transform: translate(0, 50%);
        }

    .job-box__body {
        flex: 1 1 auto;
        padding: 3rem 1rem 2rem;
        background: #f4f4f4;
    }

        .job-box__body > *:last-child {
            margin-bottom: 0;
        }

/*
    Award
*/

.award {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 700;
}

    .award__image {
        box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
        border: 2px solid #fff;
    }

/*
    Document
*/

.document,
.document:hover {
    color: #fff;
}

.document {
    display: flex;
    align-items: center;
    overflow: hidden;
    line-height: 1.5;
    font-size: .875rem;
    background: #323232;
    border-radius: .5rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 10%);
}

    .document__cover {
        padding: 1rem 1.5rem;
        background: #fff;
    }

        .document__cover img {
            min-width: 80px;
            width: 80px;
        }

    .document__content {
        padding: 1rem 1.5rem;
    }

        .document__content i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.5rem;
            height: 1.5rem;
            margin-bottom: .5rem;
            font-size: .75rem;
            border: 1px solid #fff;
            border-radius: 100%;
        }

.document:hover {
    background: #f5333f;
}

.document--light {
    border: 1px solid #d5d5d5;
    color: #f5333f;
    background-color: #fff;
}

    .document--light .document__cover {
        border-right: 1px solid #d5d5d5;
    }

.document--post,
.document--post:hover {
    color: #323232;
    background: #efefef;
}

.document--post {
    align-items: stretch;
    height: 100%;
    border: 1px solid #d5d5d5;
}

    .document--post .document__cover {
        display: flex;
        align-items: flex-start;
        padding: 1.5rem 1rem;
        border-right: 1px solid #d5d5d5;
    }

    .document--post .document__content {
        display: flex;
        flex-direction: column;
        padding: 1.5rem 1rem;
    }

        .document--post .document__title {
            font-size: 1.125rem;
            color: #f5333f;
            transition: color .5s;
        }

        .document--post .document__list {
            display: flex;
            flex-wrap: wrap;
            margin: auto 0 0;
            padding: 0;
            list-style-type: none;
            text-transform: uppercase;
            font-weight: 700;
            font-size: .75rem;
            color: #f5333f;
        }

            .document--post .document__list li:not(:last-child):after {
                content: '|';
                margin: 0 .25rem;
            }

.document--post:hover .document__title {
    color: #323232;
}

/*
    Panel
*/

.panel {
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.panel--symbol {
    text-align: center;
}

    .panel--symbol img {
        height: 6.25rem;
        object-fit: contain;
    }

.panel--on-header {
    margin-top: -2.5rem;
}

.panel--icon {
    margin-top: 3rem;
    padding-top: 1px;
    padding-bottom: 2rem;
}

    .panel--icon .panel__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8.75rem;
        height: 8.75rem;
        margin: -3rem auto 2.5rem;
        border: 5px solid #f5333f;
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 .5rem 1rem rgba(0 0 0 / 20%);
    }

        .panel--icon .panel__icon img {
            max-width: 2.75rem;
            max-height: 2.75;
            object-fit: contain;
        }

/*
    Tab Bar
*/

.tab-bar ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    font-size: .6875rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}

    .tab-bar li {
        flex: 1 0 0;
    }

        .tab-bar li a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: .75rem .25rem;
            text-align: center;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        .tab-bar li.active a {
            border-bottom-color: #f5333f;
        }

/*
    Accordion
*/

.accordion-item {
    border-color: rgba(0 0 0 / 3%);
}

.accordion-item,
.accordion-button {
    background: transparent;
}

.accordion-button,
.accordion-body {
    padding-left: 0;
    padding-right: 0;
}

.accordion-button {
    font-weight: 700;
    color: #f5333f;
}

.accordion-body > *:last-child {
    margin-bottom: 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5333f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
    color: #323232;
    background: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23323232'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button--no-arrow:after {
    display: none;
}

.accordion--box .accordion-item {
    overflow: hidden;
    margin-bottom: .75rem;
    border: 1px solid #fff;
    background: #fff;
    border-radius: .25rem;
}

    .accordion--box .accordion-button {
        padding: 1rem;
        font-size: .875rem;
        font-weight: 400;
        color: #fff;
        background: #949494;
    }

    .accordion--box .accordion-body {
        padding: 1rem;
    }

    .accordion--box .accordion-button::after,
    .accordion--box .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

/*
    Map
*/

.map {
    position: relative;
    min-height: 500px;
    height: calc(100vh - 6.25rem);
}

    .map iframe {
        position: relative;
        display: block;
        z-index: 1;
        width: 100%;
        height: 100%;
    }

    .map__popup {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        width: calc(100% - 2rem);
        max-width: 1000px;
        padding: 1.25rem;
        background: #fff;
        transform: translate(-50%, -50%);
    }

        .map__popup .close {
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

        .map__popup__title {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: #f5333f;
        }

            .map__popup__title img {
                display: block;
                width: 3.375rem;
                height: 3.375rem;
                margin-right: 1.5rem;
            }

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: .875rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: uppercase;
    box-shadow: none;
    border-radius: .5rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 .25rem rgba(0 0 0 / 10%);
}

.btn-primary,
.btn-primary:focus {
    color: #fff;
    border-color: #f5333f;
    background-color: #f5333f;
}

.btn-primary:active,
.btn-primary:hover {
    border-color: #323232;
    color: #fff;
    background-color: #323232;
}

.btn-outline-primary,
.btn-outline-primary:focus {
    color: #f5333f;
    border-color: #f5333f;
}

.btn-outline-primary:active,
.btn-outline-primary:hover {
    border-color: #f5333f;
    color: #fff;
    background-color: #f5333f;
}

.btn-outline-primary--shadow {
    text-transform: none;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.btn--outline-white,
.btn--outline-white:focus {
    color: #fff;
    border-color: #fff;
}

.btn--outline-white:active,
.btn--outline-white:hover {
    border-color: #fff;
    color: #323232;
    background-color: #fff;
}

.btn--white,
.btn--white:focus {
    color: #f5333f;
    border-color: #fff;
    background-color: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.btn--white:active,
.btn--white:hover {
    border-color: #323232;
    color: #fff;
    background-color: #323232;
}

/*
	Form components
*/

.form-label {
    font-weight: 700;
    margin-bottom: .125rem;
    color: #949494;
}

.form-control,
.form-select {
    padding: 1rem 1.5rem;
    border-radius: .625rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #d5d5d5;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(0 0 0 / 10%);
}

.form-check {
    padding-left: 2.125em;
    font-size: .875rem;
}

    .form-check a {
        text-decoration: underline;
        color: inherit;
    }

    .form-check a:hover {
        text-decoration: none;
    }

    .form-check .form-check-input {
        width: 1.5em;
        height: 1.5em;
        margin-left: -2.125em;
        margin-top: 0;
        border-color: #d5d5d5;
        background-color: #fff;
    }

    .form-check .form-check-input[type="checkbox"] {
        border-radius: .25rem;
    }

    .form-check .form-check-input:focus {
        box-shadow: 0 0 0 .25rem rgba(0 0 0 / 10%);
    }

    .form-check .form-check-input:checked {
        border-color: #f5333f;
        background-color: #f5333f;
    }

.input-with-icon {
    position: relative;
}

    .input-with-icon .form-control {
        padding-right: 2.5rem;
    }

    .input-with-icon img,
    .input-with-icon svg {
        position: absolute;
        top: 50%;
        right: 1rem;
        width: 1.5rem;
        height: 1.5rem;
        transform: translate(0, -50%);
        object-fit: contain;
    }

/*
    Close
*/

.close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.75rem;
    border: 1px solid #e2e2e2;
    color: #f5333f;
    background-color: transparent;
    border-radius: 100%;
}

.close:hover {
    background-color: #e2e2e2;
}

/*
    Titles
*/

.page-title {
    font-size: 2rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.5rem;
}

    .section-title span {
        color: #f5333f;
    }

/*
    Lists
*/

.list-social {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    font-size: 1.25rem;
    list-style-type: none;
}

    .list-social li {
        margin: 0 .75rem .75rem;
    }

    .list-social li:last-child {
        margin-right: 0;
    }

.list-social--circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    color: #7f7f7f;
    border-radius: 100%;
}

.list-social--circle a:hover {
    border-color: #7f7f7f;
    color: #fff;
    background-color: #7f7f7f;
}

.list-check {
    padding: 0;
    list-style-type: none;
}

    .list-check li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 1rem;
    }

    .list-check li:last-child {
        margin-bottom: 0;
    }

        .list-check li:before {
            position: absolute;
            content: "\f00c";
            top: .25em;
            left: 0;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: .75em;
            color: #f5333f;
        }

.list-ul {
    padding: 0;
    list-style-type: none;
}

    .list-ul li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 1rem;
    }

    .list-ul li:last-child {
        margin-bottom: 0;
    }

        .list-ul li:before {
            position: absolute;
            content: "";
            top: .75em;
            left: 0;
            width: .375em;
            height: .375em;
            background-color: #f5333f;
            border-radius: 100%;
        }

.list-with-icon {
    padding: 0;
    list-style-type: none;
}

    .list-with-icon li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: .75rem;
    }

    .list-with-icon li:last-child {
        margin-bottom: 0;
    }

        .list-with-icon li img {
            position: absolute;
            top: 50%;
            left: 0;
            width: 1.5rem;
            height: 1.5rem;
            object-fit: contain;
            transform: translate(0, -50%);
        }

.list-with-icon--lg {
    font-size: 1.125rem;
}

.list-separated {
    padding: 0;
    list-style-type: none;
}

    .list-separated li span {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #d4d4d4;
    }

/*
    Breadcrumbs
*/

.breadcrumb-item + .breadcrumb-item::before {
    content: "|";
    color: #f5333f;
}

.breadcrumb-item span {
    font-style: italic;
    color: #f5333f;
}

/*
    Table
*/

.table--lg,
.table-responsive--lg {
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.table--lg {
    margin-bottom: 0;
    line-height: 1.5;
    border-color: #fff;
}

    .table--lg th {
        background-color: #d1d1d1;
    }

    .table--lg tr:nth-child(even) td,
    .table--lg tr:nth-child(even) th {
        background-color: #e9e9e9;
    }

.table--lg > :not(:last-child) > :last-child > * {
    border-bottom-color: #fff;
}

/*
    Quotes
*/

blockquote {
    position: relative;
    font-style: italic;
}

blockquote:before,
blockquote:after {
    position: absolute;
    content: '„';
    z-index: 1;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 10rem;
    line-height: 1;
    font-weight: 700;
    font-style: normal;
    color: #e8e8e8;
}

blockquote:before {
    top: -.85em;
    left: -.1em;
}

blockquote:after {
    right: 0;
    bottom: 0;
}

    blockquote > * {
        position: relative;
        z-index: 2;
    }

    blockquote > *:last-child {
        margin-bottom: 0;
    }

    blockquote cite {
        font-style: normal;
        line-height: 1.25;
    }

        blockquote cite span {
            display: block;
            text-transform: uppercase;
            color: #f5333f;
        }

blockquote:has(cite):after {
    bottom: .25em;
}

.bg--gray blockquote:before,
.bg--gray blockquote:after {
    color: #fff;
}

/*
    Badge
*/

.badge {
    padding: .625rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0;
}

/*
    Color
*/

.color {
    display: inline-block;
    width: 1rem;
    height: 1rem;
}

/*
    Page-numbers
*/

.page-numbers {
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center;
}

    .page-numbers a,
    .page-numbers span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 3rem;
        text-align: center;
        border: 1px solid transparent;
        border-radius: .5rem;
    }

    .page-numbers span.current {
        color: #f5333f;
        border-color: #f5333f;
    }

/* GLOBALS
================================================== */

.c--dark {
    color: #323232 !important;
}

.c--primary {
    color: #f5333f !important;
}

.c--gray {
    color: #747474 !important;
}

.c--inherit {
    color: inherit !important;
}

a.c--gray:hover,
a.c--inherit:hover {
    opacity: .7;
}

.bg--success {
    background-color: #6bba3b !important;
}

.bg--primary {
    background-color: #f5333f !important;
}

.bg--white {
    background-color: #fff !important;
}

.bg--gray {
    background-color: #ededed !important;
}

.bg--gray-2 {
    background-color: #dbdbdb !important;
}

.bg--gray-3 {
    background-color: #c7c7c7 !important;
}

.bg--around-shape {
    background: url("../img/bg-shape-left-1.png") left center no-repeat,
        url("../img/bg-shape-right-1.png") right center no-repeat,
        #f5333f;
    background-size: auto 100%;
}

.bg--right-shape {
    background: url("../img/bg-shape-right-1.png") right center no-repeat,
        #f5333f;
    background-size: auto 100%;
}

.text--sm {
    font-size: .75rem;
    line-height: 1.5;
}

    .text--sm p {
        margin-bottom: 1rem;
    }

.text--lg {
    font-size: 1.25rem;
}

.text--xl {
    font-size: 1.5rem;
    line-height: 1.5;
}

.miw--240 {
    min-width: 240px;
}

.miw--300 {
    min-width: 300px;
}

.maw--270 {
    max-width: 270px;
}

.maw--610 {
    max-width: 610px;
}

.object-fit-contain {
    object-fit: contain !important;
}

.border-bottom--white {
    border-bottom: 1px solid #fff;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {

}

/*
	SM and down
*/

@media screen and (max-width: 767px) {

}

/*
	MD and down
*/

@media screen and (max-width: 991px) {

}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {

    /*
		Navigation
	*/

	.mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 1.25rem;
		height: 1rem;
		transition: all .5s;
	}

        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 2px;
            background: #000;
        }

    .main-menu {
        display: none;
    }

}

/*
	LG and up
*/

@media screen and (min-width: 992px) {

    .hero--split {
        text-align: left;
    }

    .hero--split:before {
        position: absolute;
        content: "";
        z-index: 2;
        top: 0;
        bottom: 0;
        left: 0;
        width: 50%;
        background: #f5333f;
    }

        .hero--split .hero__bg {
            left: 50%;
        }

    .hero--bottom {
        justify-content: flex-end;
        padding: 0;
    }

        .hero--bottom .page-title {
            position: relative;
            padding: 1rem 0;
            margin: 0;
            text-align: left;
            background: #323232;
        }

        .hero--bottom .page-title:before {
            position: absolute;
            content: "";
            top: 0;
            right: 100%;
            bottom: 0;
            width: 2000px;
            background: #323232;
        }

        .hero--bottom .page-title:after {
            position: absolute;
            content: "";
            z-index: -1;
            top: 0;
            right: 0;
            bottom: 0;
            width: 300px;
            background: #323232;
            transform: skew(45deg, 0) translate(50%, 0);
        }

        .hero--bottom .hero__content {
            padding-top: 2rem;
            padding-bottom: .5rem;
            background: #f5333f;
        }

    .partner-carousel img {
        height: 9.375rem;
    }

    .partner-carousel .swiper-button-prev {
        left: -2rem;
    }

    .partner-carousel .swiper-button-next {
        right: -2rem;
    }

    .split-section {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 35rem;
    }

        .split-section__content {
            padding-top: 2rem;
            padding-bottom: 2rem;
            padding-left: 4rem;
        }

            .split-section__content > *:last-child {
                margin-bottom: 0;
            }

        .split-section > figure {
            position: absolute;
            overflow: hidden;
            z-index: 1;
            top: 0;
            bottom: 0;
            left: 0;
            width: 50%;
            margin: 0;
        }

            .split-section > figure img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .split-section > .container {
            position: relative;
            z-index: 2;
        }

    .split-section--reverse figure {
        right: 0;
        left: auto;
    }
    
    .split-section--reverse .split-section__content {
        padding-left: 0;
        padding-right: 4rem;
    }

    .award {
        display: flex;
        align-items: center;
        max-width: 600px;
    }

    blockquote:before,
    blockquote:after {
        font-size: 15.625rem;
    }

    .border-right-lg--white {
        border-right: 1px solid #fff;
    }

}
 
/*
    XL and up
*/
 
@media screen and (min-width: 1200px) {

    .header {
        height: 6.25rem;
    }

        .header__logo > a > img,
        .header__logo > a > svg {
            height: 4.5rem;
        }

        .header__logo__by {
            margin-left: 2rem;
            padding-left: 1.5rem;
        }

            .header__logo__by span {
                margin-bottom: .75rem;
            }

            .header__logo__by img {
                height: 1.125rem;
            }

        .header__options {
            margin-left: 2rem;
        }

        .header__search form {
            height: 6.25rem;
        }

    .headline {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .main-menu > ul > li > a {
        display: flex;
        align-items: center;
        height: 6.25rem;
    }

    .section {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .section-media .section-title span {
        padding-right: 4rem;
    }

    .hero {
        height: 700px;
        padding-top: 4rem;
        padding-bottom: 4rem;
        font-size: 1.25rem;
        line-height: 1.25;
    }

    .hero--default p,
    .hero--split p {
        margin-bottom: 3rem;
    }

    .hero--default {
        font-size: 2.25rem;
    }

        .hero--default .page-title {
            font-size: 4.5rem;
        }

    .hero--bottom {
        padding-bottom: 0;
        font-size: 1.875rem;
        text-align: left;
    }

    .hero--bottom .page-title {
        padding-top: 2rem;
        padding-bottom: 2rem;
        font-size: 2.5rem;
    }

    .hero--bottom .hero__content {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }

    .hero-carousel .swiper-button-prev,
    .hero-carousel .swiper-button-next {
        width: 5rem;
        height: 5rem;
    }

    .hero-carousel .swiper-button-prev {
        padding-left: 1rem;
    }

    .hero-carousel .swiper-button-next {
        padding-right: 1rem;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.75rem;
    }

    .post-box figure {
        margin-bottom: 2.5rem;
    }

    .post-box--lg .post-box__title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .profile-box {
        padding: 3rem 1.5rem;
        font-size: 1rem;
    }

        .profile-box figure {
            width: 11.25rem;
            height: 11.25rem;
            margin-bottom: 2rem;
        }

        .profile-box__title {
            font-size: 1.5rem;
        }

    .job-box__header {
        min-height: 11.875rem;
        padding-left: 9.25rem;
    }

        .job-box__header figure {
            width: 6.25rem;
            height: 6.25rem;
            left: 1.5rem;
        }

        .job-box__header .badge {
            left: 9.25rem;
        }

    .job-box__body {
        padding: 4rem 1.5rem 3rem 7.25rem;
    }

    .job-box__title {
        font-size: 1.5rem;
    }

    .icon-box__icon {
        width: 12.5rem;
        height: 12.5rem;
    }

    .icon-box__title {
        font-size: 1.5rem;
    }

    .icon-box--lg {
        font-size: 1.5rem;
        line-height: 1.25;
        font-weight: 500;
    }

        .icon-box--lg .icon-box__icon {
            margin-bottom: 4rem;
        }

        .icon-box--lg .icon-box__title {
            margin-bottom: 1.5rem;
            text-transform: none;
            font-size: 2.75rem;
        }
            
    .link-box {
        font-size: 1.125rem;
    }

    .document {
        font-size: 1.5rem;
    }

        .document__cover img {
            width: 9rem;
            min-width: 9rem;
        }

        .document__content i {
            width: 3.25rem;
            height: 3.25rem;
            margin-bottom: .75rem;
            font-size: 1.5rem;
        }

    .document--post {
        font-size: 1rem;
    }

        .document--post .document__cover {
            align-items: center;
        }

        .document--post .document__title {
            font-size: 1.25rem;
        }

    .tab-bar ul {
        font-size: 1rem;
    }

        .tab-bar ul li {
            flex: 0 0 auto;
        }

        .tab-bar ul a {
            min-height: 8.125rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            border-width: 5px;
        }

    .panel--symbol img {
        height: 9.375rem;
    }

    .panel--on-header {
        margin-top: -8rem;
    }

    .accordion-button {
        font-size: 1.25rem;
    }

    .icon-box--sm .icon-box__title {
        font-size: 1.25rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title.text-uppercase {
        font-size: 2.25rem;
    }

    .form-control,
    .form-select {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .btn {
        padding: 1.125rem 2rem;
    }

    .btn-lg {
        padding: 2rem 3rem;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .badge {
        font-size: 1.125rem;
    }

    .page-numbers a,
    .page-numbers span {
        width: 4.375rem;
        height: 4.125rem;
        font-size: 1.125rem;
    }

    .text--md {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .text--lg {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .text--xl {
        font-size: 1.875rem;
        line-height: 1.25;
    }

}

/*
	XXL and up
*/

@media screen and (min-width: 1400px) {

    .footer {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }

    .hero {
        height: 700px;
        font-size: 1.5rem;
    }

    .hero--simple {
        font-size: 2.25rem;
    }

        .hero--simple .page-title {
            font-size: 4.5rem;
        }

    .hero--split .page-title {
        font-size: 3.375rem;
    }

    .document--post .document__cover img {
        width: 12.5rem;
        min-width: 12.5rem;
    }
    
    .table--lg {
        font-size: 1.5rem;
    }

        .table--lg th,
        .table--lg td {
            padding: 1rem 1.5rem;
        }

    .gx-xxl-6 {
        --bs-gutter-x: 6rem;
    }

    .ms-xxl-6 {
        margin-left: 5rem !important;
    }

}

/*
	XXXL and up
*/

@media screen and (min-width: 1500px) {

    .container {
        max-width: 1464px;
    }

}

@media screen and (min-width: 1600px) {

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 2.75rem;
    }

    .partner-carousel .swiper-button-prev {
        left: -5rem;
    }

    .partner-carousel .swiper-button-next {
        right: -5rem;
    }

    .hero-carousel .swiper-button-prev,
    .hero-carousel .swiper-button-next {
        width: 8.75rem;
        height: 8.75rem;
    }

    .hero-carousel .swiper-button-prev {
        padding-left: 2.5rem;
    }

    .hero-carousel .swiper-button-next {
        padding-right: 2.5rem;
    }

}
