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

body {
    line-height: 1.6875;
    letter-spacing: .025em;
    color: #20262e;
    background: #fff;
}

body, input, button, textarea {
    font-family: Overpass, 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.25rem;
    font-weight: 700;
}

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

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

a {
    text-decoration: none;
    color: #36a7df;
}

a:hover {
    color: #177db1;
}

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

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

figure img {
    width: 100%;
}

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

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

.container,
.col,
[class="col-"] {
    padding-left: .625rem;
    padding-right: .625rem;
}

/*
	Header
*/

.header {
	position: sticky;
    display: flex;
    align-items: center;
	z-index: 1010;
	top: 0;
	right: 0;
	left: 0;
    height: 3.5rem;
    border-top: 2px solid #ff5100;
    border-bottom: 1px solid rgba(255 255 255 / 50%);
	background: #1e252b;
	transition: all .3s;
}

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

		.header__logo {
			height: 1.75rem;
		}

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

/*
    Navigation
*/

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.25rem;
    height: 1rem;
    margin-left: 2rem;
    transition: all .3s;
}

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
    }

.main-menu {
    display: flex;
    align-items: center;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

    .main-menu ul {
        margin-bottom: 0;
        padding: 0;
        list-style-type: none;
    }

        .main-menu li {
            position: relative;
        }

            .main-menu li a {
                position: relative;
                display: block;
                color: #fff;
            }

            .main-menu li:hover > a,
            .main-menu li.active > a {
                color: #ff5100;
            }

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

        .main-menu > ul > li:not(:first-child) {
            margin-left: 1rem;
        }

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

            .main-menu ul ul a {
                padding: .25rem 1rem;
            }

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


/*
	Footer
*/

.footer {
    padding-top: 2rem;
    font-size: .75rem;
    color: #fff;
    background: #20262e;
}

    .footer a {
        color: inherit;
    }

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

    .footer__inner {
        overflow: hidden;
    }

    .footer__title {
        text-transform: uppercase;
        font-size: .875rem;
    }

    .footer__logo {
        position: relative;
        display: inline-block;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer__logo:after {
        position: absolute;
        content: "";
        top: 50%;
        left: 100%;
        width: 2000px;
        border-bottom: 2px solid #6d7b7b;
    }

        .footer__logo a {
            display: block;
            height: 1.75rem;
        }

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

.copyright {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
    border-top: 2px solid #ff5100;
}

/*
    Offcanvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1rem;
    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 {
                position: relative;
                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;
                transform: rotate(-90deg);
            }

                .offcanvas ul a i:after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 50%;
                    width: 8px;
                    height: 8px;
                    border-left: 2px solid #000;
                    border-bottom: 2px solid #000;
                    transform: rotate(-45deg) translate(1px, -6px);
                    transform-origin: center center 0;
                }

            .offcanvas ul ul {
                margin-left: 1.5rem;
                font-size: .875rem;
            }

            .offcanvas-body > ul ul {
                display: none;
            }

            .offcanvas-body > ul li.active > ul {
                display: block;
            }

            .offcanvas ul li.active > a > i {
                transform: rotate(0);
            }
    
    .offcanvas-body > ul > li > a {
        text-transform: uppercase;
    }

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

/*
    Section
*/

.section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

/*
    Headline
*/

.headline {
    position: relative;
}

.headline .horizontal-line {
    bottom: 0;
    left: 0;
    width: 40%;
    height: 3px;
}

.headline .horizontal-line:after {
    transform: none;
}

.headline .horizontal-line--secondary {
    width: 28%;
    height: 6px;
}

.headline .horizontal-line--secondary:after {
    transform: skewX(40deg);
    transform-origin: right bottom 0;
}

/*
    Hero
*/

.hero-section {
    position: relative;
}

.hero-search {
    position: absolute;
    z-index: 2;
    bottom: 2rem;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 28rem;
    height: calc(100vh - 3.5rem);
    max-height: 31.125rem;
    padding-top: 2rem;
    padding-bottom: 6rem;
    color: #fff;
    background-position: center center;
    background-size: cover;
}

.hero:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #101417;
    opacity: .6;
}

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

    .hero .page-title {
        padding-bottom: .5rem;
        border-bottom: 2px solid #ff5100;
    }

.hero-carousel .swiper-pagination {
    flex-direction: column;
    top: 1rem;
    bottom: auto;
    right: .5rem;
    left: auto;
    width: auto;
}

    .hero-carousel .swiper-pagination-bullets .swiper-pagination-bullet {
        margin-top: .25rem;
    }

/*
    Section Map
*/

.section-map {
    position: relative;
}

    .section-map iframe {
        display: block;
        width: 100%;
        height: 25rem;
    }

    .section-map__content {
        position: relative;
        padding: 1rem;
        color: #fff;
        background: #1c252c;
    }

    .section-map__content:after {
        position: absolute;
        content: "";
        right: .5rem;
        bottom: .5rem;
        border-top: 4rem solid transparent;
        border-right: 3rem solid #ff5100;
    }

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


/*
    Carousels
*/

.swiper-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .swiper-pagination-bullet {
        transition: all .3s;
    }

.swiper-pagination--light .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #36a7df;
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #ff5100;
}

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

    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 1.125rem;
        height: 1.125rem;
        fill: #ff5100;
    }

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

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

.carousel-wrapper {
    position: relative;
    padding-left: 5rem;
    padding-right: 5rem;
}

    .carousel-wrapper .swiper {
        position: static;
    }

/*
    Media Box
*/

.media-box,
.media-box:hover {
    color: inherit;
}

.media-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

    .media-box__title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        min-width: calc(100% - 2rem);
        min-height: 3.125rem;
        padding: .25rem .25rem 0;
        margin: -3.5rem 1rem 1.875rem;
        font-size: 1rem;
        line-height: 1.1;
        color: #20262e;
        background: #fff;
    }

    .media-box figure {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin-bottom: 1.875rem;
    }

    .media-box figure:after {
        display: block;
        content: "";
        padding-bottom: 161.115%;
    }

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

    .media-box figure.bordered {
        border: 2px solid #20262e;
    }

    .media-box__layer {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 2rem 1rem;
        text-align: left;
        font-size: .75rem;
        font-weight: 400;
        color: #fff;
        background-color: rgb(32 38 46 / 80%);
        opacity: 0;
        transition: opacity .3s;
    }

        .media-box__layer > *:last-child {
            margin-bottom: 0;
        }

        .media-box__layer ul {
            padding-left: 1rem;
        }

            .media-box__layer li {
                margin-bottom: .25rem;
            }

        .media-box__layer a {
            color: #fff;
        }

        .media-box__layer a:hover {
            color: #ff5100;
        }

.media-box:hover .media-box__layer {
    opacity: 1;
}

a.media-box:hover .btn-secondary {
    border-color: #0079ad;
    background-color: #0079ad;
}

a.media-box:hover .btn-outline-secondary {
    border-color: #0079ad;
    background-color: #0079ad;
}

.media-box--secondary figure:after {
    padding-bottom: 100%;
}

.media-box--horizontal figure:after {
    padding-bottom: 50%;
}

    .media-box--horizontal .media-box__title {
        position: absolute;
        z-index: 2;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0;
        color: #fff;
        background-color: rgba(255, 81, 0, .85);
    }

.media-box .media-box__title--simple {
    min-height: 5.5rem;
    margin: -1.875rem 0 0;
    font-size: 1.125rem;
    background-color: transparent;
}

.media-box .media-box__title--secondary {
    background-color: rgba(0, 158, 225, .85);
}

/*
    Figure Box
*/

.figure-box {
    position: relative;
    display: flex;
    text-align: center;
}

.figure-box:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

    .figure-box img {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1);
        transition: filter .3s;
    }

    .figure-box__title {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        top: 50%;
        left: 50%;
        width: 13.75rem;
        max-width: 95%;
        min-height: 5.5rem;
        padding: .5rem .5rem .125rem;
        letter-spacing: 0;
        font-size: 1.25rem;
        text-transform: uppercase;
        background-color: rgba(32 38 46 / 75%);
        transform: translate(-50%, -50%);
        transition: opacity .3s;
    }

.figure-box,
.figure-box:hover {
    color: #fff;
}

.figure-box:hover img {
    filter: grayscale(0);
}

.figure-box:hover .figure-box__title {
    opacity: 0;
}

/*
    Icon Box
*/

.icon-box {
    text-align: center;
}

    .icon-box__icon {
        display: block;
        width: 7.5rem;
        height: 7.5rem;
        margin: 0 auto 1.5rem;
    }

    .icon-box__title {
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: 1.25rem;
        letter-spacing: 0;
    }

/*
    Post Box
*/

.post-box,
.post-box:hover {
    color: #20262e;
}

.post-box {
    /*display: flex;*/
	display: block;
    flex-direction: column;
    align-items: flex-start;
    transition: background-color .3s;
}

    .post-box__title {
        font-size: 1.25rem;
        text-transform: uppercase;
    }

    .post-box figure {
        position: relative;
        overflow: hidden;
    }

    .post-box figure:after {
        display: block;
        content: "";
        padding-bottom: 100%;
    }

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

    .post-box time {
        display: block;
        margin-bottom: .875rem;
        font-size: .625rem;
    }

    .post-box__content {
        position: relative;
        height: 100%;
    }

    .post-box__content:after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        border-top: 4rem solid transparent;
        border-left: 3rem solid #ff5100;
    }

.post-box:hover .btn-outline-secondary {
    border-color: #009ee1;
    color: #fff;
    background-color: #009ee1;
}

.post-box--figure {
    padding: .5rem;
}

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

        .post-box--figure .post-box__content .btn {
            position: absolute;
            right: 0;
            bottom: 0;
        }

.post-box--figure:hover {
    padding: .5rem;
    background-color: #f3f3f4;
}

/*
    Product Box
*/

.product-box,
.product-box:hover {
    color: #20262e;
}

.product-box {
    display: block;
}

    .product-box__title {
        font-size: 1.375rem;
    }

    .product-box figure {
        position: relative;
        overflow: hidden;
    }

    .product-box figure:after {
        display: block;
        content: "";
        padding-bottom: 100%;
    }

        .product-box figure img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s;
        }

.product-box:hover figure img {
    transform: scale(1.05);
}

.product-box:hover .btn-secondary {
    border-color: #0079ad;
    background-color: #0079ad;
}

/*
    User Box
*/

.user-box {
    line-height: 1.375;
    text-align: center;
}

    .user-box p {
        margin-bottom: .5rem;
    }

    .user-box figure {
        position: relative;
        overflow: hidden;
        max-width: 15.625rem;
        margin-left: auto;
        margin-right: auto;
    }

    .user-box figure:after {
        display: block;
        content: "";
        padding-bottom: 100%;
    }

        .user-box figure img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 100%;
        }

    .user-box__title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

        .user-box__title .title-line {
            width: 6.25rem;
            margin-top: .25rem;
            margin-bottom: .25rem;
        }

/*
    Catalog Box
*/

.catalog-box,
.catalog-box:hover {
    color: #101417;
}

.catalog-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
}

    .catalog-box figure {
        position: relative;
        overflow: hidden;
        width: 100%;
        transition: transform .3s;
    }

    .catalog-box figure:after {
        display: block;
        content: "";
        padding-bottom: 142.86%;
    }

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

    .catalog-box__title {
        margin-bottom: .25rem;
        font-size: 1rem;
        text-transform: uppercase;
    }

    .catalog-box .btn {
        margin-top: auto;
    }

.catalog-box:hover .btn-secondary {
    border-color: #0079ad;
    background-color: #0079ad;
}

.catalog-box:hover figure {
    transform: scale(1.025);
}

/*
    Galleries
*/

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

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

    .gallery-image a {
        position: absolute;
        z-index: 2;
        right: 1rem;
        bottom: 1rem;
        width: 1.625rem;
        height: 1.625rem;
    }

        .gallery-image a svg {
            display: block;
            width: 100%;
            height: 100%;
            fill: #8e9c9c;
        }

    .gallery-image a:hover {
        opacity: .6;
    }

.gallery-thumbs .swiper-slide-thumb-active .gallery-image {
    opacity: .5;
}

/*
    Section Image
*/

.section-image {
    position: relative;
    margin-bottom: 1.25rem;
    height: 30vh;
}

    .section-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*
    Timeline
*/

.timeline {
    position: relative;
    line-height: 1.2;
}

.timeline:before {
    position: absolute;
    content: "";
    top: 0;
    left: 1rem;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
    background-color: #20262e;
}

.timeline:after {
    position: absolute;
    content: "";
    left: 1rem;
    bottom: -8px;
    margin-left: -7px;
    border-top: 8px solid #20262e;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

    .timeline__item {
        position: relative;
        z-index: 2;
        margin-bottom: 1rem;
    }

        .timeline__header {
            display: flex;
            align-items: center;
        }

            .timeline__icon {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 2rem;
                height: 2rem;
                flex: 0 0 auto;
                background-color: #8e9c9c;
                border-radius: 100%;
            }

            .timeline__icon:after {
                position: absolute;
                content: "";
                z-index: -1;
                top: 50%;
                left: 100%;
                width: 1.75rem;
                border-bottom: 2px solid #8e9c9c;
            }

                .timeline__icon svg {
                    display: block;
                    width: 50%;
                    height: 50%;
                    fill: #fff;
                }

            .timeline__title {
                position: relative;
                padding-top: .125em;
                padding-left: 2.5rem;
                padding-right: 3.5rem;
                min-width: 11.5rem;
                font-size: 2rem;
                line-height: 1;
                font-weight: 700;
            }

            .timeline__title:before,
            .timeline__title:after {
                position: absolute;
                content: "";
                top: 50%;
                right: 0;
                transform: translate(0, -50%);
            }

            .timeline__title:before {
                width: 3rem;
                height: 2px;
                margin-right: 2px;
                background-color: #2f363d;
            }

            .timeline__title:after {
                width: 8px;
                height: 8px;
                background-color: #2f363d;
                border-radius: 100%;
            }

            .timeline figure {
                overflow: hidden;
                width: 3rem;
                height: 3rem;
                flex: 0 0 auto;
                margin: 0 0 0 .75rem;
                border-radius: 100%;
            }

                .timeline figure img {
                    display: block;
                    width: 100%;
                    height: 100%;
                }

        .timeline__text {
            margin-top: .5rem;
            margin-left: 4.5rem;
            color: #8e9c9c;
        }

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

        .timeline__right figure {
            width: 8rem;
            height: 8rem;
            margin: 1.5rem 0 1.5rem 4.5rem;
        }

.timeline__item--primary .timeline__icon {
    background-color: #ff5100;
}

.timeline__item--primary .timeline__icon:after {
    border-bottom-color: #ff5100;
}

.timeline__item--featured {
    color: #36a7df;
}

    .timeline__item--featured .timeline__icon {
        background-color: #36a7df;
        box-shadow: 0 0 0 5px #fff, 0 0 0 6px #36a7df;
    }

    .timeline__item--featured .timeline__icon:after {
        border-bottom-color: #36a7df;
    }

    .timeline__item--featured .timeline__title:before,
    .timeline__item--featured .timeline__title:after {
        background-color: #36a7df;
    }

    .timeline__item--featured figure {
        box-shadow: 0 0 0 8px #fff, 0 0 0 10px #36a7df;
    }

    .timeline__item--featured .timeline__text {
        color: inherit
    }

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

/*
	Buttons
*/

.btn {
    padding: .625rem 1.75rem .375rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    box-shadow: none;
    border-radius: 0;
}

.btn-sm {
    padding: .3125rem 1rem .125rem;
    font-size: .75rem;
    font-weight: 400;
}

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

.btn-primary,
.btn-primary:focus {
    border-color: #ff5100;
    background-color: #ff5100;
}

.btn-primary:hover,
.btn-primary:active:hover {
    border-color: #ce4100;
    background-color: #ce4100;
}

.btn-secondary,
.btn-secondary:focus {
    border-color: #009ee1;
    background-color: #009ee1;
}

.btn-secondary:hover,
.btn-secondary:active:hover {
    border-color: #0079ad;
    background-color: #0079ad;
}

.btn-outline-primary,
.btn-outline-primary:focus {
    border-color: #ff5100;
    color: #20262e;
}

.btn-outline-primary:hover,
.btn-outline-primary:active:hover {
    color: #fff;
    border-color: #ff5100;
    background-color: #ff5100;
}

.btn-outline-secondary,
.btn-outline-secondary:focus {
    border-color: #009ee1;
    color: #20262e;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active:hover {
    color: #fff;
    border-color: #009ee1;
    background-color: #009ee1;
}

.btn--light {
    color: #fff;
}

.btn--icon svg {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: -.25em;
}

/*
	Form components
*/

.form-control,
.form-select {
    padding: .5rem 1rem;
    border-radius: 0;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #2a3238;
}

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

.form-control--light,
.form-control--light:focus,
.form-select--light,
.form-select--light:focus {
    color: #fff;
    background-color: rgba(255 255 255 / 56%);
}

.form-control--light + svg,
.form-select--light + svg {
    fill: #fff;
}

.form-control-sm,
.form-select-sm {
    min-height: 1.6875rem;
    padding: .125rem 1rem 0;
    font-size: .875rem;
}

.form-select {
    padding-right: 2rem;
}

textarea.rounded-pill {
    border-radius: 1.25rem !important;
}

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

    .input-with-icon svg {
        position: absolute;
        top: 50%;
        left: .3125rem;
        width: 1rem;
        height: 1rem;
        transform: translate(0, -50%);
    }

    .input-with-icon .form-control {
        padding-left: 1.75rem;
    }

.form-check {
    padding-left: 2.5em;
    font-size: .875em;
}

    .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.5em;
        margin-top: 0;
        border-width: 1px;
        border-color: #2a3238;
        background-color: #fff;
    }

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

    .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: #ff5100;
        background-color: #ff5100;
    }

/*
    Titles
*/

.page-title {
    position: relative;
    font-size: 2rem;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
}

    .section-title > span {
        position: relative;
        display: inline-block;
        padding-left: 2rem;
        padding-right: 2rem;
    }

.section-title--left-line > span span {
    position: absolute;
    right: 100%;
    top: 50%;
    width: 2000px;
    margin: -.25rem 0 0;
}

.section-secondary-title {
    font-size: 1.375rem;
    font-weight: 400;
}

.article-title {
    position: relative;
    font-size: 1.5rem;
    text-transform: uppercase;
}

    .article-title > span {
        position: relative;
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem;
    }

.article-title--left-line > span span {
    position: absolute;
    right: 100%;
    bottom: .875rem;
    width: 2000px;
    margin: 0;
}

.box-title {
    position: relative;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.title-line {
    position: relative;
    display: block;
    width: 11.25rem;
    height: 3px;
    margin: .5rem auto;
    background: #ff5100;
}

/*
    Lists
*/

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

    .list-with-icon li {
        position: relative;
        padding-left: 1.75rem;
    }

        .list-with-icon li span {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 50%;
            left: 0;
            width: 1.125rem;
            height: 1.125rem;
            margin-top: -1px;
            background-color: #ff5100;
            transform: translate(0, -50%);
            border-radius: 100%;
        }

            .list-with-icon li span svg {
                width: 45%;
                height: 45%;
                fill: #fff;
            }

/*
    Breadcrumb
*/

.breadcrumb {
    font-size: .875rem;
    color: #999;
}

    .breadcrumb a {
        color: inherit;
    }

    .breadcrumb a:hover {
        color: #ff5100;
    }

    .breadcrumb-item + .breadcrumb-item:before {
        content: "››";
        color: inherit;
    }

    .breadcrumb .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.125rem;
        height: 1.125rem;
        margin-top: .125rem;
        background: #ff5100;
        border-radius: 100%;
    }

        .breadcrumb .icon svg {
            width: 60%;
            height: 60%;
            fill: #fff;
        }

/*
    Pagination
*/

.pagination {
    justify-content: center;
    font-size: .8125rem;
}

    .pagination a,
    .pagination span {
        display: block;
        min-width: 1.625rem;
        padding: .25rem .5rem 0;
        text-align: center;
        color: #1f262d;
    }

    .pagination a:hover,
    .pagination .active {
        color: #fff;
        background: #009ee1;
    }
/*
    Links
*/

.link,
.link:hover {
    color: #20262e;
}

.link {
    text-decoration: underline;
}

.link:hover,
.link--text {
    text-decoration: none;
}

.link--text:hover {
    text-decoration: underline;
}

/*
    Decorations
*/

.bg-triangle {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    bottom: 0;
    width: 30%;
    pointer-events: none;
}

.bg-triangle:before {
    display: block;
    content: "";
    padding-bottom: 120%;
}

.bg-triangle:after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 2000px;
    height: 2000px;
    background-color: #C3C6C8;
    transform-origin: bottom left 0;
    opacity: .3;
}

.bg-triangle--start {
    left: 0;
}

.bg-triangle--start:after {
    right: 0;
    transform: skewX(40deg);
}

.bg-triangle--end {
    right: 0;
}

.bg-triangle--end:after {
    left: 0;
    transform: skewX(-40deg);
}

.bg-triangle--secondary:after {
    background-color: #009ee1;
    opacity: .2;
}

.horizontal-line {
    position: absolute;
    display: block;
    overflow: hidden;
    z-index: 1;
    width: 8rem;
    height: 5px;
    bottom: 0;
}

.horizontal-line:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ff5100;
    transform: skewX(-40deg);
    transform-origin: top left 0;
}

.horizontal-line--secondary:after {
    background-color: #009ee1;
}

.horizontal-line--no-skew {
    height: 3px;
}

.horizontal-line--no-skew:after {
    transform: none;
}

.horizontal-line--top-left:after {
    transform: skewX(40deg);
    transform-origin: bottom right 0;
}

.horizontal-line--top-right:after {
    transform-origin: bottom right 0;
}

.vertical-line {
    position: absolute;
    display: block;
    overflow: hidden;
    z-index: 1;
    width: 1rem;
    background: #ff5100;
    transform: skewX(40deg);
    transform-origin: top left 0;
}

.section--about .bg-triangle {
    bottom: -6rem;
}

.section--products .horizontal-line--top-left {
    left: 0;
    bottom: 100%;
}

.section--products .horizontal-line--bottom-right {
    right: 0;
    bottom: 4rem;
    width: 50%;
}

.section--features .bg-triangle {
    width: 50%;
}

.section--news .section-title {
    position: relative;
    z-index: 2;
}

.section--news .bg-triangle {
    width: 45%;
    bottom: -4rem;
}

.section--news .bg-skew {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 50%;
}

    .section--news .bg-skew > span,
    .section--news .bg-skew > span span {
        position: absolute;
        display: block;
        right: 0;
        transform-origin: top left 0;
    }

    .section--news .bg-skew > span {
        overflow: hidden;
        top: 3rem;
        bottom: 3rem;
        left: 3rem;
        transform: skewX(40deg);
        transform-origin: top left 0;
    }
    
        .section--news .bg-skew > span span {
            top: 0;
            bottom: 0;
            left: 0;
            transform: skewX(-40deg);
        }

            .section--news .bg-skew > span span img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: grayscale(1);
                opacity: .45;
            }

    .section--news .bg-skew .vertical-line {
        height: 100%;
    }

.section--catalog .horizontal-line {
    width: 55%;
    height: .75rem;
    top: 3rem;
}

.section--catalog .horizontal-line:after {
    background-color: #1d252c;
}

.section--catalog .vertical-line {
    bottom: 0;
    right: 0;
    height: calc(100% - 3rem);
    transform-origin: bottom right 0;
}

.section--catalog .book {
    margin-left: -5rem;
}

.section--catalog .bg-triangle {
    width: 55%;
}

.section--career .bg-triangle {
    width: 40%;
}

.section--career .horizontal-line {
    width: 55%;
    height: .5rem;
    top: 0;
    right: 0;
    left: auto;
}

.section--product .horizontal-line {
    right: -1rem;
    width: 50%;
}

.section--timeline .bg-triangle {
    width: 60%;
    opacity: .5;
}

.section--timeline .bg-triangle--end {
    bottom: 50%;
}

.icon-decoration {
    position: relative;
    z-index: 2;
}

    .icon-decoration .title-line {
        position: absolute;
        top: 50%;
        right: 100%;
        width: 2000px;
        margin: -1px 0 0;
    }

    .icon-decoration img {
        width: 4.5rem;
        height: 4.5rem;
    }

.bg-pricing {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: -8%;
    bottom: 0;
    width: 50%;
    transform: skewX(-40deg);
}

    .bg-pricing span {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background-position: center center;
        background-size: cover;
        transform: skewX(40deg);
        transform-origin: top right;
    }

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

.z-10 {
    z-index: 10;
}

.w-130 {
    width: 8.125rem;
}

.w-160 {
    width: 10rem;
}

.miw-270 {
    min-width: 16.875rem;
}

.miw-70 {
    min-width: 4.375rem;
}

.bg-dark {
    background-color: #20262e !important;
}

.bg-gray {
    background-color: #e7e7e8 !important;
}

.c-secondary {
    color: #009ee1;
}

.fill-primary {
    fill: #ff5100
}

.text-xs {
    font-size: .625rem;
    letter-spacing: normal;
}

.text-sm {
    font-size: .875rem;
}

.text-lg {
    font-size: 1.25rem;
}

.text-transform-none {
    text-transform: none;
}

/* 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) {
	
}

/*
	MD and up
*/

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

    .c-md-white {
        color: #fff;
    }

    .media-box--horizontal .media-box__title {
        padding: 1.25rem 1rem .75rem;
        font-size: 2.25rem;
    }

}

/*
	LG and up
*/

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

    .hero {
        min-height: 30rem;
        max-height: 36rem;
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .page-title {
        font-size: 4.375rem;
    }

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

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

    .section-secondary-title {
        font-size: 1.875rem;
    }

    .article-title {
        font-size: 2.5rem;
    }

    .icon-box__icon {
        margin-bottom: 3rem;
    }

    .product-box__title {
        font-size: 1.875rem;
    }

    .section-map__content {
        position: absolute;
        top: .5rem;
        left: .5rem;
        width: 17.5rem;
    }

        .section-map iframe {
            height: calc(100vh - 6rem);
        }

    .section-map--half {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
    }

        .section-map--half iframe {
            height: 100%;
        }

    .section-image {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        margin: 0;
    }

    .timeline:before,
    .timeline:after {
        left: 50%;
    }

    .timeline__item {
        padding-left: 50%;
        margin-bottom: .25rem;
    }

        .timeline__header {
            margin-left: -1rem;
        }

        .timeline__title {
            min-width: 15.5rem;
            font-size: 3.5rem;
        }

        .timeline figure {
            width: 5.75rem;
            height: 5.75rem;
        }

        .timeline__text {
            position: relative;
            max-width: 14rem;
            margin-top: -.5rem;
            margin-left: 3.5rem;
        }
    
    .timeline__item--start {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-left: 0;
        padding-right: 50%;
        text-align: right;
    }

        .timeline__item--start .timeline__header {
            justify-content: flex-end;
            margin-left: 0;
            margin-right: -1rem;
        }

            .timeline__item--start .timeline__icon {
                order: 3;
            }

            .timeline__item--start .timeline__icon:after {
                left: auto;
                right: 100%;
            }

            .timeline__item--start .timeline__title {
                order: 2;
                padding-right: 2.5rem;
                padding-left: 3.5rem;
            }

            .timeline__item--start .timeline__title:before,
            .timeline__item--start .timeline__title:after {
                right: auto;
                left: 0;
            }

            .timeline__item--start figure {
                order: 1;
                margin-right: .75rem;
                margin-left: 0;
            }

        .timeline__item--start .timeline__text {
            margin-left: 0;
            margin-right: 3.5rem;
        }
    
    .timeline__item--start + .timeline__item--primary,
    .timeline__item--primary + .timeline__item--start {
        margin-top: -3rem;
    }

    .timeline__item--featured .timeline__left {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
    }

    .timeline__item--featured .timeline__header {
        justify-content: flex-end;
        margin: 0;
    }

        .timeline__item--featured .timeline__icon {
            order: 2;
            width: 3rem;
            height: 3rem;
            margin-right: -1.5rem;
        }

        .timeline__item--featured .timeline__icon:before {
            position: absolute;
            content: "";
            top: 50%;
            left: 5.5rem;
            width: 8px;
            height: 8px;
            background-color: #009ee1;
            transform: translate(0, -50%);
            border-radius: 100%;
        }

        .timeline__item--featured .timeline__icon:after {
            width: 2.5rem;
            border-bottom-width: 1px;
        }

        .timeline__item--featured .timeline__title {
            width: 100%;
            max-width: 20rem;
            order: 1;
            padding-left: 0;
        }

        .timeline__item--featured .timeline__title:before {
            z-index: -1;
            width: 8rem;
            height: 1px;
            transform: translate(0, 0);
        }

        .timeline__item--featured .timeline__title:after {
            right: 8rem;
        }

    .timeline__item--featured .timeline__text {
        max-width: 20rem;
        margin-left: auto;
        margin-right: 1.5rem;
        margin-top: .25rem;
        padding-right: 2rem;
    }

    .timeline__item--featured .timeline__right {
        position: relative;
    }

        .timeline__item--featured .timeline__right figure {
            position: absolute;
            left: 0;
            bottom: 100%;
            width: 11.25rem;
            height: 11.25rem;
            margin: 0 0 -2rem 4rem;
        }

        .timeline__item--featured .timeline__right .timeline__text {
            max-width: 18rem;
            margin: 4.2rem 0 0 3.5rem;
        }

        .timeline__item--featured .timeline__right .timeline__text .lines {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: -1;
            width: 8rem;
            height: 11.25rem;
            border-right: 1px solid #009ee1;
            border-bottom: 1px solid #009ee1;
        }

        .timeline__item--featured .timeline__right .timeline__text .lines:before {
            position: absolute;
            content: "";
            top: 0;
            right: 3rem;
            width: 8px;
            height: 8px;
            margin-top: -4px;
            background: #009ee1;
            border-radius: 100%;
        }

        .timeline__item--featured .timeline__right .timeline__text .lines:after {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            width: 3rem;
            border-bottom: 1px solid #009ee1;
        }

        
    .figure-box--secondary {
        margin-bottom: 2rem;
    }

        .figure-box--secondary img {
            filter: grayscale(0);
        }

        .figure-box--secondary .figure-box__title {
            top: 100%;
            background-color: #36a7df;
        }


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

    .header {
        align-items: flex-end;
        height: 4.75rem;
        padding-bottom: .75rem;
    }

        .header__logo {
            height: 2.625rem;
        }

    .section {
        padding-top: 5rem;
        padding-bottom: 3.75rem;
    }
    
    .hero {
        min-height: 40rem;
        height: calc(100vh - 4.75rem);
        max-height: 45rem;
        padding-bottom: 8.5rem;
    }

        .hero .page-title {
            margin-bottom: 3rem;
        }

    .hero-search {
        bottom: 5rem;
    }

    .hero-carousel .swiper-pagination {
        top: 5rem;
    }

    .catalog-box__title {
        font-size: 1.25rem;
    }

}

/*
	XXXL and up
*/

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

    .container {
        max-width: 1200px;
    }

    .main-menu {
        font-size: .875rem;
    }

}
