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

body {
    font-size: 1rem;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
}

body,
input,
button,
textarea {
    font-family: 'Exo 2', Arial, sans-serif;
    font-optical-sizing: auto;
}

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 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

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

a:hover {
    color: #010101;
}

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

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

figure img {
    width: 100%;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.75em;
    color: #a19e9b;
}

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

/*
    Top Bar
*/

.top-bar {
    position: relative;
    z-index: 1011;
    height: 3rem;
    border-bottom: 1px solid #f1f1f1;
    background: var(--bs-body-bg);
}

.top-bar__menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.top-bar__menu li {
    margin-right: 2rem;
}

.top-bar__menu a {
    display: block;
    color: var(--bs-body-color);
}

.top-bar__menu li a:hover,
.top-bar__menu li.active a {
    color: #f27321;
}

.top-bar__menu li.active a {
    font-weight: 700;
}

.top-bar .form-control,
.top-bar .form-control:focus {
    border-color: transparent;
    background: transparent;
}

.top-bar .input-with-icon:hover .form-control,
.top-bar .input-with-icon .form-control:focus {
    /*background-color: #fbf5eb;*/
    background-color: var(--bs-body-bg);
}

.top-bar .form-control {
    width: 14rem;
    transition: all 0.3s;
}

.top-bar--dark {
    background-color: var(--bs-body-color);
}

.top-bar--dark .top-bar__menu a {
    color: #fff;
}

.top-bar--dark .input-with-icon .form-control {
    color: #fff;
}

.top-bar--dark .input-with-icon:hover .form-control,
.top-bar--dark .input-with-icon .form-control:focus {
    background-color: rgba(255 255 255 / 10%);
}

.top-bar--dark .input-with-icon .btn {
    color: #fff;
}

.top-bar--dark .icon-btn {
    color: #fff;
    border-color: #7d7b7a;
}

.top-bar--dark .icon-btn:hover {
    color: #f27321;
}

.top-bar--dark .icon-btn:hover .icon-btn__icon {
    background: #f27321;
}

/*
	Header
*/

.header {
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1010;
    top: 0;
    right: 0;
    left: 0;
    height: 4.5rem;
    background: var(--bs-body-bg);
}

.header__logo {
    height: 2.5rem;
}

.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.5rem;
    height: 1rem;
    transition: all 0.3s;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--bs-body-color);
    border-radius: 4px;
}

.main-menu {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    font-size: 1rem;
}

.main-menu:after {
    position: fixed;
    content: '';
    visibility: hidden;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 26rem;
    background: var(--bs-body-bg);
    opacity: 0;
    transition: all 0.3s;
}

.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;
    padding: 0.5rem;
    color: var(--bs-body-color);
}

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

.main-menu > ul > li {
    flex: 1 1 0;
}

.main-menu > ul > li > a {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-weight: 500;
}

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

.main-menu li.active > a {
    font-weight: 700;
}

.main-menu > ul > li > a i {
    font-size: 0.6875rem;
    margin-left: 0.75rem;
}

.main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 0.9375rem;
    text-align: left;
    opacity: 0;
    transition: all 0.3s;
}

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

/*
	Footer
*/

.footer {
    border-top: 1px solid #eae6e0;
    font-size: 0.9375rem;
    text-align: center;
    background-color: var(--bs-body-bg);
}

.footer a {
    color: #948a84;
}

.footer a:hover {
    color: #3f3c3a;
}

.footer__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer__logo img {
    display: block;
    height: 3.5rem;
    margin: 0 auto;
}

.footer__title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #f27321;
}

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

[data-bs-theme=light] .footer__content--left {
    background: #fbf5eb;
}

.footer__menu {
    padding: 0;
    line-height: 1.4;
    list-style-type: none;
}

.footer__menu li {
    margin-bottom: 0.5rem;
}

.footer .icon-btn {
    padding: 0.25rem;
    font-size: 1.125rem;
}

.footer .icon-btn__icon {
    width: 2.5rem;
    height: 2.5rem;
}

.footer .author {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: #948a84;
}

.footer .author img {
    display: block;
    height: 1rem;
    margin-left: 0.375rem;
}

/*
    Mobile Menu
*/

.mobile-menu {
    max-width: 80%;
    font-size: 1.125rem;
    background: var(--bs-body-bg);
}

.mobile-menu ul {
    padding: 0.5rem 0;
    list-style-type: none;
}

.mobile-menu ul a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.25rem 0.75rem 0.25rem 1.5rem;
    color: var(--bs-body-color);
}

.mobile-menu 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: 0.75rem;
    margin-left: auto;
    border-radius: 100%;
    cursor: pointer;
    transform: rotate(-90deg);
}

.mobile-menu ul a i:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--bs-body-color);
    border-bottom: 2px solid var(--bs-body-color);
    transform: rotate(45deg) translate(-4px, -1px);
    transform-origin: center center 0;
}

.mobile-menu .offcanvas-body > ul ul {
    display: none;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    background-color: rgba(242, 115, 33, 0.075);
}

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

.mobile-menu ul li.active > a > i {
    transform: rotate(90deg);
}

.mobile-menu .offcanvas-body > ul > li > a {
    font-weight: 700;
}

.mobile-menu .offcanvas-body > ul > li.active > a {
    color: #f27321;
}

.mobile-menu .offcanvas-body > ul > li.active > a i:after {
    border-color: #f27321;
}

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

.section {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}

.section--contact {
    background: #fff url('../../img/new/bg-contact.png') right bottom no-repeat;
    background-size: 150% auto;
}

/*
    Hero
*/

.hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 4rem;
    color: #fff;
}

.hero__gradient {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: -10rem;
    width: 100%;
    background: url('../../img/new/bg-primary-gradient.png') center bottom;
    background-size: cover;
}

.hero__bg {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero__bg:after {
    display: block;
    content: '';
    padding-bottom: 70%;
}

.hero__bg--top {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 12.5rem;
    background-position: right top;
}

.hero > .container {
    position: relative;
    z-index: 3;
}

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

.hero .breadcrumb {
    margin-top: -3rem;
}

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

.hero .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.hero .breadcrumb-item span {
    font-style: italic;
}

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

/*
    Carousels
*/

.swiper-slide {
    height: auto;
}

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

.swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
    border: 2px solid #eae6e0;
    background: transparent;
    opacity: 1;
    transition: all 0.3s;
}

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

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0;
    font-size: 1.5rem;
    color: #f27321;
    transform: translate(0, -50%);
    transition: color 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #3f3c3a;
}

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

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

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

.swiper-outer {
    position: relative;
}

.swiper-outer .swiper {
    position: static;
}

.gallery-carousel .swiper-slide a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-carousel .swiper-slide a:after {
    display: block;
    content: '';
    padding-bottom: 100%;
}

.gallery-carousel .swiper-slide a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-carousel .swiper-slide a:hover img {
    transform: scale(1.2);
}

/*
    Post Box
*/

.post-box,
.post-box:hover {
    color: #1c1b1b;
}

.post-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0 2rem rgba(0 0 0 / 5%);
}

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

.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: all 0.3s;
}

.post-box__content {
    padding: 2rem 1.5rem;
}

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

.post-box__title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f27321;
}

.post-box__title i {
    display: block;
    margin-left: auto;
    transition: all 0.3s;
}

.post-box--horizontal figure {
    min-height: 8.75rem;
    height: 100%;
}

.post-box:hover figure img {
    transform: scale(1.1);
}

.post-box:hover .post-box__title i {
    transform: translate(0.5rem, 0);
}

.post-box:hover {
    color: #fff;
    background-color: #3f3c3a;
}

/*
    Icon Box
*/

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

.list-icon-box li:nth-child(1) .icon-box {
    background-image: url(../../img/new/bg-wave-1.png);
}

.list-icon-box li:nth-child(2) .icon-box {
    background-image: url(../../img/new/bg-wave-2.png);
}

.list-icon-box li:nth-child(3) .icon-box {
    background-image: url(../../img/new/bg-wave-3.png);
}

.list-icon-box li:nth-child(4) .icon-box {
    background-image: url(../../img/new/bg-wave-4.png);
}

.list-icon-box li:nth-child(5) .icon-box {
    background-image: url(../../img/new/bg-wave-5.png);
}

.list-icon-box li:nth-child(6) .icon-box {
    background-image: url(../../img/new/bg-wave-6.png);
}

.list-icon-box li:nth-child(7) .icon-box {
    background-image: url(../../img/new/bg-wave-7.png);
}

.list-icon-box li:nth-child(8) .icon-box {
    background-image: url(../../img/new/bg-wave-8.png);
}

.list-icon-box li:nth-child(9) .icon-box {
    background-image: url(../../img/new/bg-wave-9.png);
}

.icon-box {
    height: 100%;
    padding: 2rem 0.75rem 0.75rem;
    font-size: 0.75rem;
    color: #44413f;
    background-color: var(--bs-body-bg);
    background-size: cover;
    border-radius: 0.75rem;
    box-shadow: 0 0 1.5rem rgba(0 0 0 / 10%);
}

.icon-box img {
    display: block;
    height: 2.875rem;
    margin-bottom: 1rem;
}

.icon-box__title {
    display: block;
    line-height: 1.2;
}

.icon-box__title span {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-weight: 700;
    color: #fff;
    background: #ff8732;
    border-radius: 0.25rem;
}

/*
    Icon Box Simple
*/

.icon-box-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 700;
    color: #f27321;
}

.icon-box-simple img {
    display: block;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    object-fit: contain;
}

.icon-box-simple__title {
    font-size: 1.25rem;
}

/*
    Quote Box
*/

.quote-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.75rem;
}

.quote-box figure {
    position: relative;
    overflow: hidden;
    width: 57%;
    max-width: 11.25rem;
    border-radius: 0.5rem;
}

.quote-box figure:after {
    display: block;
    content: '';
    padding-bottom: 120%;
}

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

.quote-box blockquote {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.quote-box blockquote cite {
    margin-top: auto;
}

/*
    Logo Box
*/

.logo-box,
.logo-box:hover {
    color: #3f3c3a;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 5%);
}

.logo-box figure {
    position: relative;
    width: 100%;
    margin: 0 auto 1rem;
}

.logo-box figure:after {
    display: block;
    content: '';
    padding-bottom: 80%;
}

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

.logo-box span {
    display: flex;
    align-items: center;
}

.logo-box span i {
    font-size: 1rem;
}

a.logo-box:hover {
    color: #f27321;
}

/*
    Card
*/

.card {
    --bs-card-border-radius: 0.5rem;
    --bs-card-inner-border-radius: 0.5rem;
    border: 0;
    box-shadow: 0 0 1rem rgba(0 0 0 / 5%);
}

.card-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0;
    /*background-color: #eae6e0;*/
}

.card-title {
    font-size: 1.375rem;
}

.card-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/*
    Features Box
*/

.features-box {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #fbf5eb;
    border-radius: 0.5rem;
    box-shadow: 0 0 2rem rgba(0 0 0 / 4%);
}

.features-box__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f27321;
}

.features-box__table {
    width: 100%;
    line-height: 1.25;
    font-size: 0.875rem;
    text-align: left;
    table-layout: fixed;
}

.features-box tr:nth-child(odd) {
    background-color: #fff;
}

.features-box td {
    padding: 0.5rem;
}

/*
    Accordion
*/

.accordion-item,
.accordion-button {
    border-color: #d5d1c8;
    background-color: transparent;
}

.accordion-button {
    font-size: 1.125rem;
    font-weight: 700;
    color: inherit;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button,
.accordion-body {
    padding: 1.25rem 0;
}

/*
    Address Map
*/

.address-map {
    position: relative;
    display: flex;
    font-size: 3vw;
    line-height: 1.2;
}

.address-map img {
    width: 40vw;
}

.address-map ul {
    margin-top: 7vw;
    padding: 0;
    list-style-type: none;
}

.address-map ul li {
    margin-bottom: 1vw;
}

/*
    User Box
*/

.user-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2.5rem 1rem;
    font-size: 0.75rem;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 5%);
    border-radius: 0.25rem;
}

.user-box figure {
    position: relative;
    overflow: hidden;
    max-width: 70%;
    margin-bottom: 3rem;
    width: 8.75rem;
    border-radius: 100%;
}

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

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

.member-box__title {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/*
    Timeline
*/

.timeline {
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
}

.timeline__step {
    position: relative;
    min-height: 8rem;
    padding-left: 1.5rem;
    padding-bottom: 2rem;
    margin-left: 1rem;
    border-left: 2px dashed #ada9a2;
}

.timeline__step:last-child {
    border-right-color: transparent;
    border-left-color: transparent;
}

.timeline__circle {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0 1.25rem -1px;
    background-color: #f27321;
    transform: translate(-50%, 0);
    border-radius: 100%;
}

.timeline__circle:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #f27321;
    transform: scale(1);
}

.timeline__circle:after {
    animation: scaleUp 1.5s infinite ease-out;
}

.timeline__step:nth-child(even) .timeline__circle:after {
    animation-delay: 0.5s;
}

@keyframes scaleUp {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    90% {
        opacity: 0;
        transform: scale(3);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.timeline__circle span {
    position: absolute;
    content: '';
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #f27321;
    box-shadow: 0 0 0 0.25rem #fff;
}

.timeline__title {
    display: flex;
    align-items: center;
    margin-top: -1.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    border-radius: 20rem;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 5%);
}

.timeline__title figure {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 4rem;
    margin: 0 1rem 0 0;
    border-radius: 100%;
}

.timeline__title figure:after {
    display: block;
    content: '';
    padding-bottom: 100%;
}

.timeline__title h4 {
    margin: 0;
    font-size: 1.125rem;
    color: #f27321;
}

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

.timeline__content {
    padding-left: 1rem;
}

.timeline__year {
    font-size: 1.125rem;
    color: #f27321;
    font-weight: 700;
}

/*
    Product Box
*/

a.product-box,
a.product-box:hover {
    color: #3f3c3a;
}

.product-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 1rem;
    font-size: 0.75rem;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 5%);
    border-radius: 0.5rem;
}

.product-box figure {
    position: relative;
    width: 100%;
}

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

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

.product-box__title {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.product-box__subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #f27321;
}

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

/*
    Pricing Table
*/

.pricing-table__col {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-table__cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 5rem;
    margin: 0;
    padding: 0.5rem;
    font-size: 1rem;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 2%);
}

.pricing-table__cell:first-child {
    font-weight: 700;
    color: #f27321;
    background: #eae6e0;
    border-radius: 0.5rem 0.5rem 0 0;
}

.pricing-table__cell:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.pricing-table__cell:nth-child(2):after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #eae6e0;
}

.pricing-table .btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
}

/*
    Step Boxes
*/

.step-boxes {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style-type: none;
}

.step-boxes__col {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.step-boxes__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 1rem rgba(0 0 0 / 4%);
}

.step-boxes__icon img {
    display: block;
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.step-boxes__icon--primary {
    background-color: #f27321;
}

.step-boxes__col i {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 100%;
    left: 0;
    width: 2rem;
    height: 2rem;
    margin-top: 0.5rem;
    margin-left: 1rem;
    font-size: 1rem;
    color: #f27321;
}

.step-boxes__title {
    font-size: 1rem;
    font-weight: 600;
}

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

/*
	Buttons
*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.625rem 2rem;
    border-width: 2px;
    font-size: 0.9375rem;
    text-align: center;
    font-weight: 600;
    box-shadow: none;
    border-radius: 0.5rem;
}

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

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

.btn-primary:hover,
.btn-primary:first-child:active,
.btn-primary:hover:active,
.btn-primary:focus:active {
    border-color: #3f3c3a;
    color: #fff;
    background-color: #3f3c3a;
}

.btn--white,
.btn--white:focus {
    border-color: #fff;
    color: #f27321;
    background-color: #fff;
}

.btn--white:hover,
.btn--white:first-child:active,
.btn--white:hover:active,
.btn--white:focus:active {
    border-color: #3f3c3a;
    color: #fff;
    background-color: #3f3c3a;
}

/*
    Icon Button
*/

.icon-btn {
    display: flex;
    align-items: center;
    padding: 0.125rem;
    border: 1px solid #f27321;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #f27321;
    border-radius: 3rem;
}

.icon-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    color: #fff;
    background: #f27321;
    border-radius: 100%;
    transition: background-color 0.3s;
}

.icon-btn:hover {
    color: #3f3c3a;
}

.icon-btn:hover .icon-btn__icon {
    background: #3f3c3a;
}

/*
	Form components
*/

.form-control::-ms-input-placeholder {
    color: #aaa;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border-width: 2px;
    border-radius: 0.75rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #eae6e0;
    /*background-color: #fbf5eb;*/
}

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

.form-check {
    padding-left: 2.5em;
    font-size: 0.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: 2px;
    border-color: #eae6e0;
    background-color: var(--bs-body-bg);
}

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

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

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

/*
    Input with Icon
*/

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

.input-with-icon .form-control {
    padding: 0.25rem 2.5rem 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.input-with-icon .btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 0.25rem;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border: 0;
    font-size: 1rem;
    color: #3f3c3a;
    border-radius: 100%;
    transform: translate(0, -50%);
}

.input-with-icon .btn:hover {
    color: #f27321;
}

/*
    Titles
*/

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

.page-title span {
    display: flex;
    font-size: 1rem;
    font-weight: 400;
}

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

.section-title span {
    display: block;
    font-style: italic;
    color: #f27321;
}

/*
    Lists
*/

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

.list-social a:hover {
    opacity: 0.6;
}

.list-social img {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
}

.list-with-icon {
    padding: 0;
    list-style-type: none;
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: 700;
    color: #f27321;
}

.list-with-icon li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.list-with-icon li:not(:last-child) {
    border-bottom: 2px solid #d5d0c8;
}

.list-with-icon li img {
    display: block;
    width: 5rem;
    height: 5rem;
    margin-right: 1.5rem;
    object-fit: contain;
}

/*
    Breadcrumb
*/

.breadcrumb {
    font-size: 0.75rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '|';
}

.breadcrumb a:hover {
    opacity: 0.6;
}

/*
    Table
*/

.table {
    font-size: 0.75rem;
    line-height: 1.25;
}

.table > :not(caption) > * > * {
    border: 0;
}

.table tbody tr:nth-child(even) td,
.table tbody tr:nth-child(even) th {
    /*background-color: #eae6e0;*/
}

/*
    Figure
*/

.figure {
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 0 1.5rem rgba(0 0 0 / 2%);
}

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

.bg-gradients {
    position: relative;
}

.bg-gradients:before,
.bg-gradients:after {
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    width: 100%;
    height: 20rem;
}

.bg-gradients:before {
    bottom: 100%;
}

.bg-gradients:after {
    top: 100%;
}

.bg-gradients--white {
    background-color: var(--bs-body-bg);
}

.bg-gradients--white:before {
    background: linear-gradient(to bottom, rgba(255 255 255 / 0%) 0%, rgba(255 255 255 / 100%) 100%);
}

.bg-gradients--white:after {
    background: linear-gradient(to bottom, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 0%) 100%);
}

.bg-gradient-primary {
    background: linear-gradient(
            to bottom,
            rgba(242, 115, 33, 0%) 0%,
            rgba(242 115 33 / 100%) 45%,
            rgba(242 115 33 / 100%) 55%,
            rgba(242, 115, 33, 0) 100%
    );
}

.c--primary {
    color: #f27321;
}

.miw--160 {
    min-width: 10rem;
}

.text--xl {
    font-size: 1.125rem;
}

.text--md {
    font-size: 1.125rem;
}

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

.text--xs {
    font-size: 0.6875rem;
}

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

/*
	XS
*/

@media screen and (max-width: 575px) {
    .box-2-carousel .swiper-slide,
    .box-3-carousel .swiper-slide,
    .box-4-carousel .swiper-slide {
        width: 16.25rem;
        opacity: 0.5;
        transition: opacity 0.3s;
    }

    .box-2-carousel .swiper-slide-active,
    .box-3-carousel .swiper-slide-active,
    .box-4-carousel .swiper-slide-active {
        opacity: 1;
    }
}

/*
	SM and down
*/

@media screen and (max-width: 767px) {
    .post-box--horizontal .post-box__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding: 0.75rem;
    }

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

/*
	MD and down
*/

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

/*
	LG and down
*/

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

/*
	SM and up
*/

@media screen and (min-width: 576px) {
    .address-map {
        justify-content: center;
        font-size: 0.875rem;
    }

    .address-map img {
        width: 14rem;
    }

    .address-map ul {
        margin-top: 2.5rem;
    }

    .address-map ul li {
        margin-bottom: 0.625rem;
    }
}

/*
	MD and up
*/

@media screen and (min-width: 768px) {
    .footer {
        text-align: left;
    }

    .footer__logo {
        justify-content: flex-start;
    }

    .footer__content--left:before {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        right: 100%;
        width: 2000px;
        background: inherit;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 20rem;
        padding-top: 4rem;
    }

    .hero__bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
    }

    .hero__bg--top {
        height: auto;
        opacity: 1;
    }

    .hero__bg--top:after {
        padding-bottom: 50%;
    }

    .post-box > .row {
        height: 100%;
    }

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

    .section--contact {
        background-size: auto 100%;
    }

    .step-boxes {
        flex-direction: row;
        margin-bottom: 1.5rem;
    }

    .step-boxes__col {
        flex-direction: column;
        flex: 1 1 0;
        margin: 0;
        text-align: center;
    }

    .step-boxes__icon {
        margin: 0 0 1rem;
    }

    .step-boxes__col i {
        top: 1rem;
        left: 100%;
        margin: 0 0 0 -1rem;
        transform: rotate(-90deg);
    }
}

/*
	LG and up
*/

@media screen and (min-width: 992px) {
    .box-2-carousel .post-box figure:after {
        padding-bottom: 46%;
    }

    .post-box--horizontal figure:after {
        padding-bottom: 65%;
    }

    .box-wrapper {
        position: relative;
    }

    .box-wrapper:after {
        position: absolute;
        content: '';
        z-index: 1;
        top: 0;
        right: 0;
        left: 0;
        bottom: 1.5rem;
        background-color: #f88b3c;
        transform: translate(1.5rem, 1.5rem);
        border-radius: 0.5rem;
    }

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

    .timeline__step {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 2rem 0;
        border: 0;
    }

    .timeline__step:after {
        position: absolute;
        content: '';
        top: 0;
        left: 50%;
        height: 100%;
        border-left: 2px dashed #ada9a2;
    }

    .timeline__circle {
        z-index: 1;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(calc(-50% + 1px), -50%);
    }

    .timeline__content {
        width: 43%;
        padding: 0;
    }

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

    .timeline__title {
        width: 43%;
        margin: 0;
        padding: 0.75rem;
    }

    .timeline__title figure {
        width: 6.25rem;
        margin-right: 1.5rem;
    }

    .timeline__year {
        font-size: 1.625rem;
    }

    .timeline__step:nth-child(even) .timeline__content {
        padding-left: 1rem;
    }

    .timeline__step:nth-child(odd) .timeline__content {
        padding-left: 4rem;
    }

    .timeline__step:nth-child(even) .timeline__title {
        margin-right: 6rem;
    }

    .timeline__step:nth-child(odd) .timeline__title {
        order: 2;
        margin-left: 6rem;
    }

    .timeline__step:first-child:after {
        top: 50%;
        height: 50%;
    }

    .table {
        font-size: 1rem;
    }

    .table > :not(caption) > * > * {
        padding: 1rem 2rem;
    }
}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {
    body {
        font-size: 1.125rem;
    }

    .top-bar {
        font-size: 1rem;
        font-weight: 500;
    }

    .header {
        height: 5.25rem;
    }

    .footer__content {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .header__logo {
        height: 3.75rem;
        margin-right: 4rem;
    }

    .footer__logo img {
        height: 4.75rem;
    }

    .footer__content--left {
        font-size: 1rem;
    }

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

    .hero {
        min-height: 35rem;
    }

    .hero__gradient {
        margin-bottom: -15rem;
    }

    .hero .breadcrumb {
        margin-top: -6rem;
    }

    .hero--sm {
        min-height: 25rem;
        padding-top: 7rem;
    }

    .hero--sm .page-title {
        font-size: 3.375rem;
    }

    .post-box__content {
        padding: 3.5rem 2.5rem;
    }

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

    .box-4-carousel .post-box {
        font-size: 0.9375rem;
    }

    .box-4-carousel .post-box__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .icon-box {
        padding: 5rem 1.5rem 2rem;
        font-size: 1.25rem;
    }

    .icon-box img {
        height: 5.75rem;
        margin-bottom: 2rem;
    }

    .icon-box__title {
        font-size: 1.5rem;
    }

    .icon-box__title span {
        padding: 0.5rem 1rem;
    }

    .icon-box-simple img {
        width: 6rem;
        height: 6rem;
    }

    .icon-box-simple__title {
        font-size: 1.625rem;
    }

    .quote-box {
        padding: 3rem;
        font-size: 1.375rem;
    }

    .logo-box {
        padding-bottom: 2rem;
        font-size: 1rem;
    }

    .logo-box span i {
        font-size: 1.25rem;
    }

    .list-with-icon {
        font-size: 1.5rem;
    }

    .list-with-icon li img {
        width: 6rem;
        height: 6rem;
    }

    .card-header,
    .card-body {
        padding: 4rem 3rem;
    }

    .card-title {
        font-size: 1.625rem;
    }

    .features-box {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .features-box__title {
        font-size: 1.625rem;
    }

    .features-box__table {
        font-size: 1.125rem;
    }

    .features-box td {
        padding: 0.75rem;
    }

    .timeline__title h4 {
        font-size: 1.625rem;
    }

    .pricing-table .pricing-table__cell:nth-child(2):after {
        left: -1.5rem;
    }

    .pricing-table__description {
        padding-top: 5rem;
        text-align: right;
        font-weight: 700;
    }

    .pricing-table__description span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: end;
        min-height: 5rem;
    }

    .pricing-table__description span:first-child:after {
        position: absolute;
        content: '';
        right: 0;
        bottom: 0;
        left: 0;
        border-bottom: 2px solid #eae6e0;
    }

    .step-boxes__icon {
        width: 10rem;
        height: 10rem;
    }

    .step-boxes__icon img {
        width: 40%;
        height: 40%;
    }

    .step-boxes__title {
        font-size: 1.125rem;
    }

    .step-boxes__col i {
        margin-top: 3rem;
        font-size: 1.25rem;
    }

    .address-map {
        font-size: 1.125rem;
    }

    .address-map img {
        width: 34.125rem;
    }

    .address-map ul {
        margin-top: 7rem;
    }

    .address-map ul li {
        margin-bottom: 2.25rem;
    }

    .btn {
        min-height: 3.5rem;
        font-size: 1.125rem;
    }

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

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

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

    .text--xl {
        font-size: 1.375rem;
    }

    blockquote {
        font-size: 1.375rem;
    }

    .table {
        font-size: 1.125rem;
    }

    .table > :not(caption) > * > * {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

/*
    XXL and up
*/

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }

    .swiper-button-prev {
        left: -6rem;
    }

    .swiper-button-next {
        right: -6rem;
    }
}
