/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --alori-font: 'Kumbh Sans', sans-serif;
    --alori-font-2: 'Domine', serif;
    --alori-base: #deaf69;
    --alori-base-rgb: 243, 126, 33;
    --alori-black: #392917;
    --alori-black-rgb: 57, 41, 23;
    --alori-gray: #0b0b0c;
    --alori-gray-rgb: 11, 11, 12;
    --alori-primary: #727274;
    --alori-primary-rgb: 114, 114, 116;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

@font-face {

    font-family: "CASTELAR";
    src: url("../vendors/castellar-font/CASTELAR.ttf");
    src: url("../vendors/castellar-font/NotoSerif-Bold.ttf");

}

body {
    font-family: var(--alori-font);
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--alori-black);
    font-weight: 700;
    font-family: var(--alori-font-2);
    margin: 0;
}

p {
    margin: 0;
}

.noSelect {
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}


.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}


/***
=============================================
    Thm Btn
=============================================
***/
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--alori-base);
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 16px 45px 15px;
    border-radius: 40px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--alori-font-2);
    letter-spacing: 0.025em;
    overflow: hidden;
    z-index: 1;
}

.thm-btn:hover {
    color: #ffffff;
}

.thm-btn:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--alori-black);
    border-radius: 40px;
    content: "";
    transform: scaleY(0.0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.thm-btn:hover:after {
    transform: scaleY(1.0) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}



/***
=============================================
    Section Title
=============================================
***/
.sec-title {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-bottom: 61px;
}

.sec-title__tagline {
    position: relative;
    display: inline-block;
    color: var(--alori-primary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--thm-font);
    margin-bottom: 22px;
}

.sec-title__title {
    color: var(--alori-black);
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 27px;
}

.sec-title__text {
    font-size: 20px;
}







.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--thm-base);
}

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/***
=============================================
    Dot Style1
=============================================
***/
.owl-carousel.owl-dot-type1 .owl-stage-outer,
.owl-carousel.owl-nav-type1 .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-type1 .owl-dots {
    position: relative;
    display: block;
    text-align: center;
    line-height: 12px;
    margin-top: 31px !important;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    width: 100%;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #e7e6e5;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot::before {
    position: absolute;
    top: 0px;
    left: -4px;
    bottom: 0px;
    right: -4px;
    background: var(--alori-base);
    content: "";
    transform: scale(0);
    border-radius: 5px;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot.active::before {
    transform: scale(1.0);
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot span {
    display: none;
}

/***
=============================================
    Owl Nav Style1
=============================================
***/
.owl-nav-type1.owl-theme .owl-nav {
    position: absolute;
    max-width: 180px;
    width: 100%;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    left: 0;
    bottom: -36px;
    z-index: 9;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-next,
.owl-nav-type1.owl-carousel .owl-nav button.owl-prev {
    background: transparent;
    padding: 0 !important;
    font: inherit;
    border: 2px solid var(--thm-color-1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    bottom: 0px;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-next span::before,
.owl-nav-type1.owl-carousel .owl-nav button.owl-prev span::before {
    color: var(--thm-color-1);
    font-size: 15px;
    font-weight: 700;
}

.owl-nav-type1.owl-carousel .owl-nav button.owl-prev span::before {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}






/***
=============================================
    Scroll To Top
=============================================
***/
.scroll-to-top {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 70px;
    background: var(--alori-base);
    position: fixed;
    bottom: 91px;
    right: 20px;
    z-index: 99;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.scroll-to-top i {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 70px;
    transform: rotate(-90deg);
}

.scroll-to-top:hover {
    background-color: var(--alori-gray);
}

.scroll-to-top:hover i {
    color: #fff;
}


/***
=============================================
    Main Header One
=============================================
***/
.main-header {
    position: relative;
    display: block;
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
}

.main-menu__inner .left {
    display: flex;
    align-items: center;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 50px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    transition: all 500ms ease;
    font-family: var(--alori-font-2);
    padding-top: 52px;
    padding-bottom: 50px;
    z-index: 1;
}



.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--alori-base);
}

.main-menu .main-menu__list>li.dropdown a,
.stricky-header .main-menu__list>li.dropdown a {
    padding-right: 0px;
}


.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
    margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
    margin-top: 0px;
}



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

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid #f7f7f7;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    position: relative;
    display: block;
    color: rgba(var(--alori-black-rgb), 0.7);
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    font-family: var(--thm-font-2);
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--alori-base);
    color: #ffffff;
}


.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
    display: none;
}



.main-header-one__bottom .right {
    position: relative;
    display: block;
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__right-login-register {
    position: relative;
    display: block;
    margin-right: 26px;
}

.main-menu__right-login-register ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-menu__right-login-register ul li {
    position: relative;
    float: left;
    margin-left: 11px;
    padding-right: 12px;
}

.main-menu__right-login-register ul li::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    background: #e2e4eb;
    width: 1px;
    transform: rotate(20deg);
    content: "";
}

.main-menu__right-login-register ul li:first-child {
    margin-left: 0;
}

.main-menu__right-login-register ul li:last-child {
    padding-right: 0;
}

.main-menu__right-login-register ul li:last-child:before {
    display: none;
}

.main-menu__right-login-register ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu__right-login-register ul li a:hover {
    color: var(--thm-base);
}


.main-menu__right-cart-search {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.main-menu__right-cart-search::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    content: "";
}

.main-menu__right-cart-box {
    position: relative;
    display: block;
}

.main-menu__right-cart-box a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu__right-cart-box a:hover {
    color: var(--thm-base);
}

.main-menu__right-cart-box a span::before {
    font-size: 25px;
    line-height: 35px;
}

.main-menu__right-search-box {
    position: relative;
    display: block;
    margin-left: 29px;
}

.main-menu__right-search-box .thm-btn {
    font-size: 12px;
    padding: 5px 30px 2px;
}



.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: var(--alori-gray);
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.main-menu {
    padding: 0 0px;
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}











@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }

}


@media (max-width: 1199px) {

    .stricky-header {
        display: none !important
    }

}


@media (min-width: 1200px) {

    .mobile-nav__buttons {
        display: none;
    }

}


@media (min-width: 1200px) {

    .main-menu .mobile-nav__toggler {
        display: none;
    }

}





.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: 500ms;
    margin-right: 0px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--alori-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler {
    color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler:hover {
    color: #ffffff;
}

/***
=============================================
    Mobile Nav
=============================================
***/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background: var(--alori-gray);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

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

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li ul {
    padding-left: 10px;
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
    width: 28px;
    height: 28px;
    background-color: var(--thm-base);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    border-radius: 0px;
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-base);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.07em;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-base);
}

.mobile-nav__contact li>i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--alori-base);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/***
=============================================
    Search Popup
=============================================
***/

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.9;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 90px;
}

.search-popup__content .thm-btn2 {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-base);
    border: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__content .thm-btn2::before {
    display: none;
}

.search-popup__content .thm-btn2:hover {
    background-color: var(--thm-black);
    color: #ffffff;
}

.search-popup__content .thm-btn2 i::before {
    margin: 0;
    color: #ffffff;
}




/***
=============================================
    Main Header One
=============================================
***/
.main-header--one {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.main-header--one__wrapper {
    position: relative;
    display: block;
}

.main-header--one .auto-container {
    position: static;
    max-width: 100%;
    width: 100%;
    padding: 0px 30px;
    margin: 0 auto;
}

.main-header--one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header--one__left {
    position: relative;
    display: block;
}

.main-header--one__left .logo {
    position: relative;
    display: inline-block;
    top: -4px;
}

.main-header--one__left .logo a {
    position: relative;
    display: inline-block;
}


.main-menu--1 {
    position: relative;
    display: block;
}



.main-header--one__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header--one__right .number {
    position: relative;
    display: block;
    margin-right: 30px;
}

.main-header--one__right .number a {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    font-family: var(--alori-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__right .number a:hover {
    color: var(--alori-base);
}

.main-header--one__right .social-icon {
    position: relative;
    display: block;
    margin-right: 25px;
}

.main-header--one__right .social-icon ul {
    position: relative;
    display: block;
}

.main-header--one__right .social-icon ul li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.main-header--one__right .social-icon ul li:last-child {
    margin-right: 0;
}

.main-header--one__right .social-icon ul li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__right .social-icon ul li a:hover {
    color: var(--alori-base);
}




.bar-box {
    position: relative;
    display: block;
    float: right;

}

.bar-box a {
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.bar-box a:hover {
    color: #ffffff;
    background: var(--alori-base);
}

.bar-box ul {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 5px;
}

.bar-box ul:last-child {
    margin-bottom: 0;
}

.bar-box ul li {
    position: relative;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 2px solid #484848;
    border-radius: 50%;
    margin: 0 2px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.bar-box:hover ul li {
    border: 2px solid #ffffff;
}



/***
=============================================
    Main Header Two
=============================================
***/
.main-header--one--two {
    position: relative;
    display: block;
}

.main-header--one--two .main-menu .main-menu__list>li>a,
.main-header--one--two .stricky-header .main-menu__list>li>a {
    color: var(--alori-black);
}

.main-header--one--two .main-menu .main-menu__list>li>a:hover,
.main-header--one--two .stricky-header .main-menu__list>li>a:hover,
.main-header--one--two .main-menu .main-menu__list>li.current>a {
    color: var(--alori-base);
}

.main-header--one--two .main-header--one__right .number a {
    color: var(--alori-black);
}

.main-header--one--two .main-header--one__right .number a:hover {
    color: var(--alori-base);
}

.main-header--one--two .main-header--one__right .social-icon ul li a {
    color: var(--alori-black);
}

.main-header--one--two .main-header--one__right .social-icon ul li a:hover {
    color: var(--alori-base);
}

.main-header--one--two .bar-box a {
    background: var(--alori-base);
}

.main-header--one--two .bar-box a:hover {
    background: var(--alori-black);
}

.main-header--one--two .bar-box ul li {
    border: 2px solid #ffffff;
}

.main-header--one--two .main-menu .mobile-nav__toggler {
    color: var(--alori-black);
}

.main-header--one--two .main-menu .mobile-nav__toggler:hover {
    color: var(--alori-base);
}









/***
=============================================
    Slider One
=============================================
***/
.main-slider-one {
    position: relative;
    display: block;
}


.main-slider .swiper-slide {
    position: relative;
    z-index: 1;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
}

.main-slider.main-slider-one .swiper-slide-active .image-layer {
    transform: scale(1.3);
}

.main-slider .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: rgb(28, 12, 6, 0.45);
    z-index: -1;
}


.main-slider .container {
    position: relative;
    padding-top: 292px;
    padding-bottom: 320px;
    z-index: 2;
}

.main-slider-one__inner {
    position: relative;
    display: block;
}

.main-slider-one__text {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 35px;
    opacity: 0;
    transition: all 1000ms ease;
    transform: translateY(80px);
}

.main-slider-one .swiper-slide-active .main-slider-one__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1000ms;
}


.main-slider-one__title {
    color: #ffffff;
    font-size: 85px;
    line-height: 1.2em;
    opacity: 0;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.main-slider-one .swiper-slide-active .main-slider-one__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1200ms;
}

.main-slider-one__btn {
    position: relative;
    display: block;
    margin-top: 57px;
    opacity: 0;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.main-slider-one .swiper-slide-active .main-slider-one__btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1600ms;
}










.main-slider__nav {
    position: absolute;
    display: block;
    align-items: flex-start;
    bottom: 50px;
    right: 0;
    width: 150px;
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin: 10px 0px;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
}


.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
}

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

.main-slider__nav .swiper-button-prev {
    margin-bottom: 0px;
}

.main-slider__nav .swiper-button-prev .icon-left-arrow {
    position: relative;
}

.main-slider__nav .swiper-button-prev {
    position: relative;
    transform: rotate(180deg);
}



.main-slider-one #main-slider-pagination {
    display: none;
}

.main-slider-one--two #main-slider-pagination {
    display: block;
}

#main-slider-pagination {
    position: absolute;
    left: auto;
    bottom: 50px;
    right: 309px;
    width: 120px;
    transform: none;
    counter-reset: count;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 999999;
    line-height: 0;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 45px;
    border-radius: 0%;
    opacity: 1;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    line-height: 45px;
    font-weight: 400;
    border: 0px solid transparent;
    counter-increment: count;
    content: "0"counter(count);
    font-family: var(--alori-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    width: 40px;
    height: 45px;
    opacity: 0;
    content: "";
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    color: #ffffff;
    opacity: 1;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 0px;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0px;
}



#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    color: #ffffff;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:focus,
#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
    outline: none;
    border: none;
}


.main-slider-one--two .main-slider__nav {
    display: none;
}




/***
=============================================
    Slider Two
=============================================
***/

.main-slider.main-slider-one--two .container {
    position: relative;
    padding-top: 303px;
    padding-bottom: 250px;
    z-index: 2;
}

.main-slider-one--two .main-slider-one__inner .border-box {
    position: absolute;
    top: -133px;
    left: -105px;
    border: 1px solid #847365;
    width: 215px;
    height: 600px;
    opacity: 0;
    transform: translateX(-100%);
    z-index: -1;
}

.main-slider.main-slider-one--two .swiper-slide-active .main-slider-one__inner .border-box {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.main-slider.main-slider-one--two .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-image: -moz-linear-gradient(-1deg, rgb(30, 14, 0) 0%, rgba(10, 6, 2, 0) 100%);
    background-image: -webkit-linear-gradient(-1deg, rgb(30, 14, 0) 0%, rgba(10, 6, 2, 0) 100%);
    background-image: -ms-linear-gradient(-1deg, rgb(30, 14, 0) 0%, rgba(10, 6, 2, 0) 100%);
    background-color: transparent;
    opacity: 0.78;
    z-index: -1;
}






/***
=============================================
    Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 123px 0px 171px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(-1deg, rgb(0, 0, 0) 0%, rgba(10, 6, 2, 0) 100%);
    background-image: -webkit-linear-gradient(-1deg, rgb(0, 0, 0) 0%, rgba(10, 6, 2, 0) 100%);
    background-image: -ms-linear-gradient(-1deg, rgb(0, 0, 0) 0%, rgba(10, 6, 2, 0) 100%);
    opacity: 0.78;
    z-index: -1;
}

.page-header__wrapper {
    position: relative;
    display: block;
    padding-top: 80px;
    padding-bottom: 29px;
    z-index: 2;
}

.page-header__content {
    position: relative;
    display: block;
}

.page-header__content h2 {
    color: #ffffff;
    font-size: 76px;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 19px;
}

.page-header__menu {
    position: relative;
    display: block;
}

.page-header__menu ul {
    position: relative;
    display: block;
}

.page-header__menu ul li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    padding-left: 3px;
    padding-right: 7px;
}

.page-header__menu ul li:first-child {
    padding-left: 0;
}

.page-header__menu ul li:last-child {
    padding-right: 0;
}

.page-header__menu ul li::before {
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 9px;
    width: 1px;
    background: #ffffff;
    transform: rotate(20deg);
    content: "";
}

.page-header__menu ul li:last-child:before {
    display: none;
}

.page-header__menu ul li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__menu ul li a:hover {
    color: var(--alori-base);
}



/***
=============================================
    Page Header Services Single One
=============================================
***/
.page-header--services-single-one {
    position: relative;
    display: block;
    padding: 90px 0px 146px;
    z-index: 1;
}

.page-header--services-single-one .page-header__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #141414;
    opacity: 0.46;
    content: "";
    z-index: -1;
}

.page-header--services-single-one .page-header__content {
    position: relative;
    display: block;
}

.page-header--services-single-one .page-header__content h2 {
    color: #ffffff;
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
}

.page-header--services-single-one .page-header__content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
}

.page-header--services-single-one .page-header__content .number {
    position: relative;
    display: block;
    margin-top: 30px;
}

.page-header--services-single-one .page-header__content .number a {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    font-family: var(--alori-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header--services-single-one .page-header__content .number a:hover {
    color: var(--alori-base);
}






















/***
=============================================
    Your Project One
=============================================
***/
.your-project-one {
    position: relative;
    display: block;
}

.your-project-one__wrapper {
    position: relative;
    display: block;
    background: #fff9f1;
    padding: 70px 0px 50px;
    padding-left: 40px;
    padding-right: 35px;
    margin-top: -145px;
    z-index: 2;
}

.your-project-one__wrapper:before {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: -10px;
    border: 1px solid var(--alori-gray);
    content: "";
}

.your-project-one__wrapper ul {
    position: relative;
    display: flex;
    align-items: center;
}

.your-project-one__single {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    z-index: 1;
}

.your-project-one__single:last-child {
    padding-right: 0;
}

.your-project-one__single:first-child {
    padding-left: 0;
}

.your-project-one__single::before {
    content: "";
    position: absolute;
    top: -35px;
    right: 0;
    bottom: -20px;
    width: 1px;
    background: #ece7e3;
    z-index: -1;
}

.your-project-one__single:last-child:before {
    display: none;
}

.your-project-one__single-content-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 40px;
    z-index: 1;
}

.your-project-one__single-content-box a {
    color: inherit;
    transition: all 500ms ease;
}

.your-project-one__single-content-box a:hover {
    color: var(--alori-black);
}

.your-project-one__single-content-box::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--alori-base);
    z-index: -1;
    border-radius: 50%;
    content: "";
}

.your-project-one__single-content-box::after {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    background: #f8ece1;
    z-index: -2;
    border-radius: 50%;
    content: "";
}

.your-project-one__single-content-box h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
}


.your-project-one__single-text-box {
    position: relative;
    display: block;
}

.your-project-one__single-text-box h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
}

.your-project-one__single-text-box p {
    font-size: 20px;
    line-height: 34px;
}

.your-project-one__single-btn {
    position: relative;
    display: block;
    padding-left: 45px;
}

.your-project-one__single-btn .thm-btn {
    background: var(--alori-black);
    color: #ffffff;
}

.your-project-one__single-btn .thm-btn::after {
    background: var(--alori-base);
}






/***
=============================================
    About One
=============================================
***/
.about-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 193px;
    z-index: 1;
}

.about-one .sec-title__title {
    font-size: 48px;
}


.about-one__img {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    z-index: 1;
}

.about-one__img .shape1 {
    position: absolute;
    left: -45px;
    bottom: -170px;
    z-index: -1;
}

.about-one__img1 {
    position: relative;
    display: block;
}

.about-one__img2 {
    position: absolute;
    left: 0px;
    bottom: -120px;
    right: 0;
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.about-one__img2::before {
    position: absolute;
    top: -14px;
    left: -14px;
    bottom: -14px;
    right: -14px;
    background: #ffffff;
    content: "";
    z-index: -1;
}

.about-one__img2 .video-icon {
    position: absolute;
    left: -67px;
    bottom: 75px;
}

.about-one__img2 .video-icon .video-popup {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 130px;
    line-height: 130px;
    background: var(--alori-base);
    border-radius: 10px;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-one__img2 .video-icon .video-popup:hover {
    background: var(--alori-black);
}





.about-one__content {
    position: relative;
    display: block;
    margin-left: 25px;
}

.about-one__content .sec-title {
    margin-bottom: 38px;
}


.about-one__content-text {
    position: relative;
    display: block;
    padding-top: 36px;
    padding-bottom: 45px;
    border-top: 1px solid #e9e9e9;
}



.about-one__content-list {
    position: relative;
    display: block;
    border-top: 1px solid #e9e9e9;
    padding-top: 30px;
}

.about-one__content-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-one__content-list li:last-child {
    margin-bottom: 0;
}

.about-one__content-list li .icon {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 40px;
    line-height: 40px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.about-one__content-list li:hover .icon {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.about-one__content-list li .title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.about-one__content-list li .title h3 {
    font-size: 18px;
    line-height: 28px;
}








/***
=============================================
    Best Logistics One
=============================================
***/
.best-logistics-one {
    position: relative;
    display: block;
    background: #fef7f1;
    padding: 120px 0px 0px;
    z-index: 1;
}

.best-logistics-one .shape2 {
    position: absolute;
    top: 50px;
    left: -110px;
    z-index: -1;
}

.best-logistics-one__content {
    position: relative;
    display: block;
    max-width: 560px;
    width: 100%;
}

.best-logistics-one__content .sec-title {
    margin-bottom: 58px;
}

.best-logistics-one__content-counter {
    position: relative;
    display: block;
}

.best-logistics-one__content-counter li {
    position: relative;
    display: inline-block;
    width: 230px;
    height: 230px;
    padding-top: 45px;
    text-align: center;
    margin-right: 60px;
    z-index: 1;
}


.best-logistics-one__content-counter li:last-child {
    margin-right: 0;
}

.best-logistics-one__content-counter li::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
    content: "";
}

.best-logistics-one__content-counter li::after {
    position: absolute;
    top: -10px;
    left: -3px;
    bottom: 0px;
    right: 0px;
    background: #f8ece1;
    z-index: -2;
    border-radius: 50%;
    content: "";
}



.best-logistics-one__content-counter li h2 {
    color: var(--alori-base);
    font-size: 50px;
    line-height: 1em;
    margin-bottom: 10px;
}

.best-logistics-one__content-counter li h2 .plus-icon {
    position: relative;
    display: inline-block;
    bottom: 3px;
    padding-left: 2px;
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 700;
}

.best-logistics-one__content-counter li h2 .plus-icon.pd-l {
    padding-left: 5px;
}

.best-logistics-one__content-counter-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 2px;
}

.best-logistics-one__content-counter-text {
    color: rgba(var(--alori-gray-rgb), 0.8);
    font-size: 16px;
    line-height: 26px;
}



.best-logistics-one__content-counter li h2 span.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.best-logistics-one__content-counter li h2 span.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: -5px;
    bottom: 0;
    overflow: hidden;
}

.best-logistics-one__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
    overflow: hidden;
    z-index: 1;
}


.best-logistics-one__content-bottom-text {
    position: relative;
    display: block;
}

.best-logistics-one__content-bottom-text h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
}

.best-logistics-one__content-bottom-text p {
    font-size: 20px;
    line-height: 34px;
}

.best-logistics-one__content-bottom-btn {
    position: relative;
    display: block;
}

.best-logistics-one__content-bottom-btn .thm-btn {
    background: #ffffff;
    color: var(--thm-gray);
    font-size: 16px;
    text-transform: capitalize;
    padding: 11px 30px 10px;
}

.best-logistics-one__content-bottom-btn .thm-btn:hover {
    color: #ffffff;
}


.best-logistics-one__img {
    position: relative;
    display: block;
    max-width: 475px;
    width: 100%;
    margin-left: 90px;
    z-index: 1;
}

.best-logistics-one__img .shape1 {
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: -1;
}

.best-logistics-one__img .shape3 {
    position: absolute;
    top: 105px;
    right: -256px;
    z-index: -1;
}

.best-logistics-one__img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.best-logistics-one__img-inner::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.best-logistics-one__img:hover .best-logistics-one__img-inner::before {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}


.best-logistics-one__img-inner img {
    width: 100%;
}

.best-logistics-one__img .overlay-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 270px;
    padding: 21px 0px 19px;
    padding-left: 30px;
    padding-right: 15px;
    z-index: 5;
}

.best-logistics-one__img .overlay-content::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #734c38;
    opacity: 0.4;
    content: "";
    z-index: -1;
}

.best-logistics-one__img .overlay-content::after {
    position: absolute;
    top: -8px;
    left: 8px;
    right: -8px;
    bottom: 8px;
    border: 1px solid #ffffff;
    z-index: -1;
    content: "";
}

.best-logistics-one__img .overlay-content h2 {
    color: #ffffff;
    font-size: 28px;
    line-height: 40px;
}







/***
=============================================
    Services One
=============================================
***/

.services-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    overflow: hidden;
    z-index: 1;
}

.services-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 65px 15px 55px;
    border-radius: 5px;
    margin-bottom: 30px;
    z-index: 1;
}

.services-one__single::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: transparent;
    border: 1px solid var(--alori-black);
    border-radius: 5px;
    transition: all 500ms ease;
    transform: scaleY(0);
    z-index: -1;
}

.services-one__single:hover:before {
    transform: scaleY(1);
}

.services-one__single-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 23px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__single-icon {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.services-one__single-icon::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ecfdfe;
    z-index: -1;
}

.bg2.services-one__single-icon::before {
    background: #ffe9e0;
}

.bg3.services-one__single-icon::before {
    background: #fff6e5;
}

.bg4.services-one__single-icon::before {
    background: #fcebe5;
}

.bg5.services-one__single-icon::before {
    background: #ecf0ec;
}

.bg6.services-one__single-icon::before {
    background: #fcf1f7;
}

.services-one__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 85px;
    line-height: 85px;
}

.services-one__single h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}

.services-one__single h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single h2 a:hover {
    color: var(--alori-base);
}

.services-one__single .text {
    position: relative;
    display: block;
    margin-top: 16px;
}

.services-one__single .text p {
    font-size: 18px;
}






/***
=============================================
    Our Material One
=============================================
***/
.our-material-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
    z-index: 1;
}

.our-material-one__content {
    position: relative;
    display: block;
}

.our-material-one__content .sec-title {
    margin-bottom: 51px;
}




.our-material-one__img {
    position: relative;
    display: block;
    max-width: 565px;
    width: 100%;
}

.our-material-one__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: 7px;
    z-index: 1;
}

.our-material-one__img1::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.our-material-one__img:hover .our-material-one__img1::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.our-material-one__img1 img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.our-material-one__img1:hover img {
    transform: scale(1.1);
}

.our-material-one__img2 {
    position: absolute;
    right: 50px;
    bottom: -45px;
    z-index: 5;
}

.our-material-one__img2 img {
    width: 100%;
}




/***
=============================================
    Work One
=============================================
***/
.work-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 45px 0px 90px;
    counter-reset: count;
    z-index: 1;
}

.work-one .shape1 {
    position: absolute;
    bottom: 0;
    right: -111px;
    z-index: -1;
}

.work-one .sec-title {
    margin-bottom: 83px;
}

.work-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.work-one__single-icon {
    position: relative;
    display: inline-block;
    color: var(--alori-black);
    font-size: 60px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    background: #fcf7e8;
    text-align: center;
    margin-bottom: 22px;
    padding-top: 15px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: 1;
}

.work-one__single-icon::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    border-radius: 50%;
    z-index: -1;
    content: "";
}

.bg2.work-one__single-icon::before {
    background: #faf1f1;
}

.bg3.work-one__single-icon::before {
    background: #eff9ff;
}

.bg4.work-one__single-icon::before {
    background: #f9f5ed;
}


.work-one__single-icon .count-box {
    position: absolute;
    top: -27px;
    left: 0px;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    background: var(--alori-gray);
    color: #ffffff;
    border-radius: 50%;
    font-family: var(--alori-font-2);
    font-weight: 700;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.work-one__single-icon .count-box::before {
    top: -27px;
    left: 0px;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    border-radius: 50%;
    font-family: var(--alori-font-2);
    font-weight: 700;
    counter-increment: count;
    content: "0"counter(count);
}


.work-one__single h2 {
    font-size: 24px;
    line-height: 34px;
}

.work-one__single h2 a {
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.work-one__single h2 a:hover {
    color: var(--alori-base);
}







/***
=============================================
    Projects One
=============================================
***/
.projects-one {
    position: relative;
    display: block;
    padding: 120px 0px 190px;
    background: #fef2e8;
    overflow: hidden;
    z-index: 1;
}

.projects-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
}

.projects-one__top-btn {
    position: relative;
    display: block;
    top: -5px;
}

.projects-one__top-btn .thm-btn {
    background: var(--alori-black);
}

.projects-one__top-btn .thm-btn::after {
    background: var(--alori-base);
}

.projects-one .sec-title {
    margin-bottom: 0px;
}

.projects-one .sec-title__title {
    margin-bottom: 0px;
}

.projects-one .sec-title__title span {
    color: var(--alori-base);

}

.projects-one .sec-title__title .plus {
    position: relative;
    display: inline-block;
    top: 5px;
}






.projects-one .auto-container {
    position: static;
    max-width: 1600px;
    width: 100%;
}



.projects-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.projects-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.projects-one__single-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.projects-one__single:hover .projects-one__single-img::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.projects-one__single-img img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.projects-one__single:hover .projects-one__single-img img {
    transform: scale(1.1);
}




.projects-one__single-content {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 36px 40px 44px;
    z-index: 1;
}

.projects-one__single-content span {
    color: #f25e25;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.projects-one__single-content h2 {
    color: var(--alori-gray);
    font-size: 28px;
    line-height: 38px;
    margin-top: 6px;
    margin-bottom: 16px;
}

.projects-one__single-content h2 a {
    color: var(--alori-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-one__single-content h2 a:hover {
    color: var(--alori-base);
}

.projects-one__single-content p {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}



.projects-one__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 16px;
}

.projects-one__single-content .btn-box a {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background: #a67654;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-one__single-content .btn-box a:hover {
    background: var(--alori-base);
}

.projects-one__single-content .btn-box a span::before {
    color: #ffffff;
}








/***
=============================================
    Video One
=============================================
***/

.video-one {
    position: relative;
    display: block;
    z-index: 1;
}

.video-one__inner {
    position: relative;
    display: block;
    background: var(--alori-base);
    padding: 110px 0px 120px;
    border-radius: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    margin-top: -100px;
}

.video-one__inner h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 28px;
}

.video-one__inner p {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
}

.video-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

.video-one__bottom .text {
    position: relative;
    display: block;
}

.video-one__bottom .text a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 36px;
    text-transform: uppercase;
    font-family: var(--alori-font-2);
}

.video-one__bottom .text a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
    content: "";
}

.video-one__bottom .icon {
    position: relative;
    display: block;
    margin-left: 30px;
}

.video-one__bottom .icon a {
    position: relative;
    display: block;
    width: 105px;
    height: 105px;
    line-height: 105px;
    border-radius: 50%;
    background: #3b332e;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
}







/***
=============================================
    Contact One
=============================================
***/
.contact-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;

}

.contact-one .shape1 {
    position: absolute;
    bottom: 120px;
    right: -100px;
    z-index: -1;
}

.contact-one__img {
    position: absolute;
    top: 120px;
    left: 0%;
    bottom: 120px;
    right: 52%;
    background-attachment: scroll;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.contact-one__img .overlay-content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    bottom: 40px;
    right: 190px;
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: var(--alori-base);
    z-index: 1;
}

.contact-one__img .overlay-content::before {
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    right: 6px;
    border-radius: 50%;
    border: 2px dashed #ffffff;
    content: "";
    z-index: -1;
}

.contact-one__img .overlay-content h2 {
    color: #ffffff;
    font-size: 66px;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-one__img .overlay-content h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}





.contact-one__content {
    position: relative;
    display: block;
}

.contact-one__content-comment-form {
    position: relative;
    display: block;
}

.contact-one__content .comment-form__input-box input[type="text"],
.contact-one__content .comment-form__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: 1px solid #efefef;
    background: #f6f6f6;
    padding: 0 20px;
    margin-bottom: 35px;
    border-radius: 0px;
    outline: none;
    font-size: 16px;
    color: #060315;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.contact-one__content .comment-form__input-box textarea {
    color: #060315;
    font-size: 16px;
    height: 160px;
    width: 100%;
    background: #f6f6f6;
    padding: 16px 20px 30px;
    border: 1px solid #efefef;
    border-radius: 0px;
    outline: none;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: capitalize;
}

.contact-one__content .comment-form__btn {
    position: relative;
    display: block;
}

.contact-one__content .comment-form__btn.thm-btn {
    background: var(--alori-black);
}

.contact-one__content .comment-form__btn.thm-btn::after {
    background: var(--alori-base);
}





/***
=============================================
    Testimonial One
=============================================
***/
.testimonial-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
    z-index: 1;
}


.testimonial-one .sec-title {
    margin-bottom: 56px;
}



.testimonial-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 68px 0px 50px;
    padding-left: 35px;
    padding-right: 60px;
    z-index: 1;
}


.testimonial-one__single .icon {
    color: var(--alori-black);
    font-size: 27px;
    line-height: 20px;
    margin-bottom: 23px;
}

.testimonial-one__single .text {
    position: relative;
    display: block;
}

.testimonial-one__single .text p {
    font-size: 20px;
    line-height: 34px;
}

.testimonial-one__single .client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-one__single .client-info .img {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-one__single .client-info .title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.testimonial-one__single .client-info .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.testimonial-one__single .client-info .title p {
    margin: 0;
}

.testimonial-one__carousel.owl-theme .owl-stage-outer {
    overflow: visible;
}

.testimonial-one__carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.testimonial-one__carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}










/***
=============================================
    Blog One
=============================================
***/
.blog-one {
    position: relative;
    display: block;
    padding: 0px 0px 60px;
    background: #ffffff;
    z-index: 1;
}

.blog-one .sec-title {
    margin-bottom: 56px;
}


.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.blog-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-one__single-img img {
    width: 100%;
}

.blog-one__single-img::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(var(--alori-gray-rgb), 0.7);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    border-radius: 5px;
    z-index: 1;
}

.blog-one__single:hover .blog-one__single-img::before {
    transform: scaleY(1.0);
}

.blog-one__single-img .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: .9s;
    transform: perspective(400px) scaleY(0);
    transform-origin: bottom;
}

.blog-one__single:hover .blog-one__single-img .overlay-icon {
    transform: perspective(400px) scaleY(1.0);
}

.blog-one__single .blog-one__single-img .overlay-icon a {
    position: relative;
    display: inline-block;
}

.blog-one__single .blog-one__single-img .overlay-icon span {
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.blog-one__single .blog-one__single-img .overlay-icon span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: #fff;
    display: block;
}

.blog-one__single .blog-one__single-img .overlay-icon span::after {
    content: '';
    height: 20px;
    width: 2px;
    background-color: #fff;
    transform: translateX(-10px);
    display: block;
}

.blog-one__single-img .overlay-text {
    position: absolute;
    top: 15px;
    left: 10px;
    z-index: 10;
}

.blog-one__single-img .overlay-text span {
    position: relative;
    display: inline-block;
    color: var(--alori-black);
    font-size: 16px;
    line-height: 26px;
    background: #ffffff;
    border-radius: 40px;
    padding: 0px 15px 0px;
}





.blog-one__single-content {
    position: relative;
    display: block;
    padding-top: 33px;
}

.blog-one__single-content .meta-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blog-one__single-content .meta-info li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.blog-one__single-content .meta-info li:last-child {
    margin-right: 0;
}

.blog-one__single-content .meta-info li .icon {
    position: relative;
    display: block;
}

.blog-one__single-content .meta-info li .icon i::before {
    position: relative;
    display: inline-block;
    color: var(--alori-base);
    font-size: 20px;
    top: 2px;
}

.blog-one__single-content .meta-info li .text {
    position: relative;
    display: block;
    padding-left: 7px;
}

.blog-one__single-content .meta-info li .text p {
    color: #0c0d24;
    font-size: 16px;
    line-height: 34px;
}

.blog-one__single-content h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 26px;
}

.blog-one__single-content h2 a {
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content h2 a:hover {
    color: var(--alori-base);
}




/***
=============================================
    Footer One
=============================================
***/

.footer-one {
    position: relative;
    display: block;
    padding: 123px 0px 0px;
    z-index: 1;
    background-color: #141212;
}

.footer-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: -1;
}

.footer-one__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/backgrounds/footer-shadow-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-one--two .footer-one__bg {
    background-position: top center;
}

.footer-one--two .footer-one__bg::before {
    background-image: url(../images/backgrounds/footer-2-shadow-bg.png);
    background-position: top center;

}

.footer-one__top {
    position: relative;
    display: block;
}


.footer-one__subscribe-box {
    position: relative;
    display: block;
    margin-bottom: 70px;
}

.footer-one__subscribe-box-text {
    position: relative;
    display: block;
}

.footer-one__subscribe-box-text h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    font-family: var(--alori-font);
}


.footer-one__subscribe-box-right {
    position: relative;
    display: block;
    max-width: 510px;
    width: 100%;
    margin-top: -25px;
}


.subscribe-form {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 22px;
}

.subscribe-form .input-box {
    position: relative;
    display: block;
}


.subscribe-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    padding: 0 30px;
    padding-right: 100px;
    background: #f3f3f3;
    border: none;
    color: rgba(14, 16, 13, 0.5);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 40px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    text-transform: capitalize;
    outline: none;
}

.subscribe-form input::-webkit-input-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.subscribe-form input:-moz-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.subscribe-form input::-moz-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.subscribe-form input:-ms-input-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.subscribe-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 85px;
    height: 65px;
    color: #ffffff;
    font-size: 20px;
    line-height: 65px;
    font-weight: 700;
    border-radius: 31px;
    background: var(--alori-base);
    transition: all 300ms ease 100ms;
}

.subscribe-form input[type="email"]:focus {
    color: var(--alori-black);
}

.subscribe-form input[type="email"]:focus+button,
.subscribe-form button:hover {
    color: #ffffff;
    background: var(--alori-black);
}

.subscribe-form button img {
    position: relative;
    display: inline-block;
    margin-top: -3px;
}

.checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 23px;
}

.checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: rgb(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.checked-box input[type="checkbox"] {
    display: none;
}

.checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #6b655f;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box label span:before {
    position: absolute;
    top: 2px;
    left: 5px;
    display: block;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    width: 6px;
    height: 11px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.checked-box input[type="checkbox"]:checked+label span {
    border-color: #6b655f;
}

.checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}




.footer-one__top-wrapper {
    position: relative;
    display: block;
    padding-bottom: 56px;
    border-bottom: 1px solid #636261;
}

.footer-widget__column {
    position: relative;
    display: block;
}

.footer-widget__about {
    position: relative;
    display: block;
    max-width: 275px;
    width: 100%;
}

.footer-widget__about-logo {
    position: relative;
    display: block;
    margin-bottom: 27px;
}

.footer-widget__about-logo a {
    position: relative;
    display: inline-block;
}

.footer-widget__about-text {
    color: rgba(255, 0255, 255, 0.90);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-widget__about-email {
    position: relative;
    display: block;
}

.footer-widget__about-email a {
    color: rgba(255, 0255, 255, 0.90);
    font-size: 18px;
    line-height: 28px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-email a:hover {
    color: var(--alori-base);
}

.footer-widget__title {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 24px;
    margin-top: -7px;
}



.footer-widget__services {
    position: relative;
    display: block;
}

.footer-widget__services-list {
    position: relative;
    display: block;
}

.footer-widget__services-list-item {
    position: relative;
    display: block;
}

.footer-widget__services-list-item a {
    color: rgba(255, 0255, 255, 0.90);
    font-size: 18px;
    line-height: 38px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__services-list-item a:hover {
    color: var(--alori-base);
}





.footer-widget__quick-links {
    position: relative;
    display: block;
    margin-left: -30px;
}

.footer-widget__quick-links-list {
    position: relative;
    display: block;
}

.footer-widget__quick-links-list-item {
    position: relative;
    display: block;
}

.footer-widget__quick-links-list-item a {
    color: rgba(255, 0255, 255, 0.90);
    font-size: 18px;
    line-height: 38px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__quick-links-list-item a:hover {
    color: var(--alori-base);
}





.footer-widget__contact-info {
    position: relative;
    display: block;
}

.footer-widget__contact-info-social-links {
    position: relative;
    display: block;
    margin-top: 36px;
}

.footer-widget__contact-info-social-links ul {
    position: relative;
    display: block;
}

.footer-widget__contact-info-social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.footer-widget__contact-info-social-links ul li:last-child {
    margin-right: 0;
}

.footer-widget__contact-info-social-links ul li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--alori-black);
    font-size: 15px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-widget__contact-info-social-links ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: var(--alori-base);
    border-radius: 50%;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.footer-widget__contact-info-social-links ul li a:hover:before {
    transform: scaleX(1.0);
}

.footer-widget__contact-info-social-links ul li a:hover {
    color: #ffffff;
}






.footer-one__bottom {
    position: relative;
    display: block;
}

.footer-one__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 31px 0px 30px;
}

.footer-one__bottom-text {
    position: relative;
    display: block;
}

.footer-one__bottom-text p {
    color: rgba(255, 0255, 255, 0.90);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}



.footer-one__bottom-list {
    position: relative;
    display: block;
}

.footer-one__bottom-list ul {
    position: relative;
    display: block;
}

.footer-one__bottom-list ul li {
    position: relative;
    display: inline-block;
    padding-left: 12px;
    padding-right: 17px;
}

.footer-one__bottom-list ul li:last-child {
    padding-right: 0;
}

.footer-one__bottom-list ul li::before {
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 10px;
    width: 1px;
    background: #ffffff;
    transform: rotate(20deg);
    content: "";
}

.footer-one__bottom-list ul li:last-child:before {
    display: none;
}

.footer-one__bottom-list ul li a {
    position: relative;
    display: inline-block;
    color: rgba(255, 0255, 255, 0.90);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__bottom-list ul li a:hover {
    color: var(--alori-base);
}



/***
=============================================
    Services Two
=============================================
***/

.services-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.services-two__single {
    position: relative;
    display: block;
}

.services-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.services-two__single-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.services-two__single:hover .services-two__single-img::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.services-two__single-img img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.services-two__single:hover .services-two__single-img img {
    transform: scale(1.1);
}

.services-two__single-img .icon {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--alori-base);
    font-size: 45px;
    text-align: center;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.services-two__single:hover .services-two__single-img .icon {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.services-two__single-content {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 37px 20px 50px;
}

.services-two__single-content h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 16px;
}

.services-two__single-content h2 a {
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-two__single-content h2 a:hover {
    color: var(--alori-base);
}

.services-two__single-content p {
    margin: 0;
}




.services-two__carousel.owl-theme .owl-stage-outer {
    overflow: visible;
}

.services-two__carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-two__carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}



/***
=============================================
    About Two
=============================================
***/
.about-one--two {
    position: relative;
    display: block;
    padding: 30px 0px 144px;
}


.about-one--two .about-one__img2 {
    max-width: 380px;
}

.about-two__content-text1 {
    position: relative;
    display: block;
    padding-top: 37px;
    margin-bottom: 26px;
    border-top: 1px solid #e9e9e9;
}

.about-two__content-text1 p {
    color: var(--alori-gray);
    font-weight: 500;
}

.about-two__content-text2 {
    position: relative;
    display: block;
}

.about-two__content-text2 p {
    color: rgba(var(--alori-gray-rgb), 0.8);
}

.about-one--two .about-one__content-list {
    border-top: 1px solid transparent;
    padding-top: 39px;
}

.about-one--two .about-one__content-list li {
    background: #faf1e9;
    padding-top: 15px;
    padding-left: 25px;
    padding-bottom: 12px;
}





/***
=============================================
    Our Material Two
=============================================
***/

.our-material-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.our-material-two__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.our-material-two__inner .shape1 {
    position: absolute;
    top: 350px;
    right: -170px;
    z-index: -1;
}

.our-material-two__img1 {
    position: relative;
    display: block;
}

.our-material-two__img1 img {
    width: 100%;
}


.our-material-two__img2 {
    position: absolute;
    left: 55px;
    bottom: -45px;
    border: 10px solid #ffffff;
    overflow: hidden;
    z-index: 1;
}

.our-material-two__img2::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.our-material-two__img2:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.our-material-two__img2 img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.our-material-two__img2:hover img {
    transform: scale(1.1);
}

.our-material-two__img3 {
    position: absolute;
    bottom: -65px;
    right: 40px;
    border: 5px solid #ffffff;
}



.our-material-two__bottom {
    position: relative;
    display: block;
    margin-top: 150px;
}

.our-material-two__bottom h2 {
    font-size: 50px;
    line-height: 1.2em;
    margin-bottom: 38px;
}

.our-material-two__bottom p {
    font-size: 20px;
    line-height: 34px;
}

.our-material-two__bottom-btn {
    position: relative;
    display: block;
    margin-top: 50px;
}




/***
=============================================
    Projects Two
=============================================
***/

.projects-two {
    position: relative;
    display: block;
    background: #fef2e8;
    padding: 120px 0px 190px;
}

.projects-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}

.projects-two__top .sec-title {
    margin-bottom: 0;
}

.projects-two__top .sec-title__title {
    margin-bottom: 0;
}

.projects-two__top .sec-title__title span {
    color: var(--alori-base);
}

.projects-two__top-btn {
    position: relative;
    display: block;
}

.projects-two__top-btn .thm-btn {
    background: var(--alori-black);
}

.projects-two__top-btn .thm-btn::after {
    background: var(--alori-base);
}

.projects-two__single {
    position: relative;
    display: block;
}

.projects-two__single-img {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 515px;
}

.projects-two__single-img img {
    width: 100%;
}

.projects-two__single-img .overlay-content {
    position: absolute;
    max-width: 315px;
    width: 100%;
    top: 0;
    left: 20px;
    bottom: 0;
    display: flex;
    align-items: center;
}

.projects-two__single-img .overlay-content-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #ffffff;
    max-width: 315px;
    padding: 30px 0px 30px;
    padding-left: 40px;
    padding-right: 35px;
    width: 100%;
}

.projects-two__single-img .overlay-content-inner .text span {
    color: var(--alori-base);
    font-size: 16px;
    line-height: 26px;
}

.projects-two__single-img .overlay-content-inner .text h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 6px;
}

.projects-two__single-img .overlay-content-inner .text h2 a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-two__single-img .overlay-content-inner .text h2 a:hover {
    color: var(--alori-base);
}

.projects-two__single-img .overlay-content-inner .button {
    position: relative;
    display: block;
}


.projects-two__single-img .overlay-content-inner .button a {
    position: relative;
    display: inline-block;
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-two__single-img .overlay-content-inner .button a:hover {
    color: var(--alori-base);
}

.projects-two__single-img .overlay-content-inner .button a span:before {
    position: relative;
    display: inline-block;
    font-size: 20px;
}

.projects-two__single__btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: scale(0);
}

.projects-two__single-img:hover .projects-two__single__btn {
    transform: scale(1);
}

.projects-two__single__btn a {
    position: relative;
    display: inline-block;
    color: var(--alori-gray);
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    font-family: var(--alori-font-2);
    background: #ffffff;
    border-radius: 40px;
    padding: 8px 30px 7px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.projects-two__single__btn a:hover {
    color: #ffffff;
    background: var(--alori-base);
}


.projects-two__carousel {
    position: relative;
}

.projects-two__carousel.owl-carousel .owl-stage-outer {
    margin-right: -375px;
}

.projects-two__carousel.owl-carousel .owl-nav button.owl-next,
.projects-two__carousel.owl-carousel .owl-nav button.owl-prev {
    background: #ffffff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: var(--alori-gray);
    font-size: 25px;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-two__carousel.owl-carousel .owl-nav button.owl-next:hover,
.projects-two__carousel.owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--alori-base);
    color: #ffffff;
}

.projects-two__carousel.owl-carousel .owl-nav button.owl-prev {
    margin-right: 20px;
}

.projects-two__carousel.owl-theme .owl-nav {
    text-align: left;
    margin-top: 45px;
}




















/***
=============================================
    Product One
=============================================
***/

.product-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    overflow: hidden;
    z-index: 1;
}

.product-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.product-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-one__single-img::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.product-one__single:hover .product-one__single-img::before {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.product-one__single-img img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.product-one__single:hover .product-one__single-img img {
    transform: scale(1.1);
}



.product-one__single-content {
    position: relative;
    display: block;
    padding: 27px 0px 0px;
}

.product-one__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 3px;
}

.product-one__single-content h2 a {
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product-one__single-content h2 a:hover {
    color: var(--alori-base);
}

.product-one__single-content p {
    color: var(--alori-black);
}

.product-one__single-content p span {
    position: relative;
    display: inline-block;
    color: rgba(var(--alori-black-rgb), 0.7);
    margin-right: 5px;
}




/***
=============================================
    Team One
=============================================
***/

.team-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 90px;
    z-index: 1;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-one__single-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.team-one__single:hover .team-one__single-img:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}


.team-one__single-img img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.team-one__single:hover .team-one__single-img img {
    transform: scale(1.1);
}

.team-one__single-img .overlay-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    padding: 18px 20px 16px;
    border-radius: 10px;
    z-index: 10;
}

.team-one__single-img .overlay-icon ul {
    position: relative;
    display: block;
}

.team-one__single-img .overlay-icon ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.team-one__single-img .overlay-icon ul li:last-child {
    margin-bottom: 0px;
}

.team-one__single-img .overlay-icon ul li a {
    position: relative;
    display: block;
}

.team-one__single-img .overlay-icon ul li a span::before {
    color: var(--alori-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-img .overlay-icon ul li a:hover span::before {
    color: var(--alori-base);
}




.team-one__single-content {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgb(169, 168, 171, 0.35);
    padding: 28px 0px 25px;
}

.team-one__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 2px;
}

.team-one__single-content h2 a {
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-content h2 a:hover {
    color: var(--alori-base);
}






/***
=============================================
    Footer Two
=============================================
***/
.footer-one--two {
    position: relative;
    display: block;
    padding: 110px 0px 0px;
}

.footer-one--two__contact-box {
    position: relative;
    display: block;
}

.footer-one--two__contact-box-inner {
    position: relative;
    display: block;
    margin-bottom: 90px;
}

.footer-one--two__contact-box-inner h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 54px;
    font-weight: 500;
    font-family: var(--alori-font);
}

.footer-one--two__contact-box-inner h2 a {
    color: var(--alori-base);
}


.footer-one--two__contact-box-btn {
    position: relative;
    display: block;
    margin-top: 37px;
}

.footer-one--two__contact-box-btn .thm-btn {
    background: #ffffff;
    color: var(--alori-black);
}

.footer-one--two__contact-box-btn .thm-btn::after {
    background: var(--alori-base);
}

.footer-one--two__contact-box-btn .thm-btn:hover {
    color: #ffffff;
}

.footer-one--two .footer-widget__contact-info-social-links {
    margin-top: 26px;
}



.footer-widget__contact-info-subscribe-box {
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
}

.footer-widget__contact-subscribe-form {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 22px;
}

.footer-widget__contact-subscribe-form .input-box {
    position: relative;
    display: block;
}


.footer-widget__contact-subscribe-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
    padding: 0 25px;
    padding-right: 75px;
    background: #f3f3f3;
    border: none;
    color: rgba(14, 16, 13, 0.5);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 40px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    text-transform: capitalize;
    outline: none;
}

.footer-widget__contact-subscribe-form input::-webkit-input-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.footer-widget__contact-subscribe-form input:-moz-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.footer-widget__contact-subscribe-form input::-moz-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.footer-widget__contact-subscribe-form input:-ms-input-placeholder {
    color: rgba(14, 16, 13, 0.5);
}

.footer-widget__contact-subscribe-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60px;
    height: 55px;
    color: #ffffff;
    font-size: 20px;
    line-height: 55px;
    font-weight: 700;
    border-radius: 31px;
    background: var(--alori-base);
    transition: all 300ms ease 100ms;
}

.footer-widget__contact-subscribe-form button img {
    position: relative;
    display: inline-block;
    margin-top: -5px;
}

.footer-widget__contact-subscribe-form input[type="email"]:focus {
    color: var(--alori-black);
}

.footer-widget__contact-subscribe-form input[type="email"]:focus+button,
.footer-widget__contact-subscribe-form button:hover {
    color: #ffffff;
    background: var(--alori-black);
}

.footer-one--two .footer-widget__about-email {
    position: relative;
    display: block;
    padding-left: 35px;
    margin-top: 15px;
}

.footer-one--two .footer-widget__about-email::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    width: 25px;
    height: 1px;
    background: var(--alori-base);
}

.footer-one--two .checked-box {
    margin-top: 18px;
}

.footer-one--two .footer-one__top-wrapper {
    padding-bottom: 77px;
}



/***
============================================
	Video Two
============================================
***/
.video-one--two {
    position: relative;
    display: block;
}

.video-one--two .video-one__inner {
    margin-top: -120px;
}



/***
=============================================
    Contact Two
=============================================
***/
.contact-one--two {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
}

.contact-one--two .contact-one__img {
    top: 0px;
}


/***
=============================================
    About Two About
=============================================
***/
.about-one--two--about {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.about-one--two--about .about-one__content-list li .icon {
    color: var(--alori-base);
}




/***
=============================================
    Mission One
=============================================
***/

.mission-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
}

.mission-one__content {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
}

.mission-one__content-single {
    position: relative;
    display: block;
    margin-bottom: 71px;
}

.mission-one__content-single.marb-0 {
    margin-bottom: 0;
}

.mission-one__content-single h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 24px;
}

.mission-one__content-single .text1 {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.mission-one__content-single .text1 p {
    color: var(--alori-gray);
    font-weight: 500;
}

.mission-one__content-single .text2 {
    position: relative;
    display: block;
}

.mission-one__content-single .text2 p {
    margin: 0;
}


.mission-one__img {
    position: relative;
    display: block;
    max-width: 525px;
    width: 100%;
    margin-left: 40px;
    z-index: 1;
}

.mission-one__img .shape1 {
    position: absolute;
    top: 0;
    right: -210px;
    z-index: -1;
}

.mission-one__img-img1 {
    position: relative;
    display: block;
}

.mission-one__img-img1 img {
    width: 100%;
}

.mission-one__img-img2 {
    position: absolute;
    bottom: -225px;
    right: -15px;
}



/***
=============================================
    Video Two About
=============================================
***/
.video-one--two--about {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.video-one--two--about .video-one__inner {
    margin-top: 0px;
    z-index: 1;
    overflow: hidden;
}

.video-one--two--about .video-one__inner .shape1 {
    position: absolute;
    right: -350px;
    bottom: -320px;
    z-index: -1;
}



/***
=============================================
    Team One Team
=============================================
***/

.team-one--team {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}


/***
=============================================
    Video One Team
=============================================
***/
.video-one--two--about--team {
    position: relative;
    display: block;
    padding: 120px 0px 0px;
    z-index: 2;
}

.video-one--two--about--team .video-one__inner {
    margin-bottom: -15px;
    z-index: 2;
}





/***
=============================================
    Work One Services
=============================================
***/
.work-one--services {
    position: relative;
    display: block;
    padding: 120px 0px 80px;
}


/***
=============================================
    Services Two Services Two
=============================================
***/

.services-two--services-two {
    position: relative;
    display: block;
}

.services-two--services-two .services-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}


/***
=============================================
    Work One Services Two
=============================================
***/
.work-one--services-two {
    position: relative;
    display: block;
    padding: 0px 0px 80px;
}





/***
=============================================
    Services Single One
=============================================
***/

.services-single-one {
    position: relative;
    display: block;
    padding: 120px 0px 186px;
    background: #ffffff;
    z-index: 1;
}

.services-single-one__content {
    position: relative;
    display: block;
    max-width: 725px;
    width: 100%;
}

.services-single-one__content .title {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-single-one__content .title h2 {
    font-size: 50px;
    line-height: 1.3em;
}

.services-single-one__content .text1 {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.services-single-one__content .text1 p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}

.services-single-one__content .text2 {
    position: relative;
    display: block;
}

.services-single-one__content .text2 p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}


.services-single-one__content-list {
    position: relative;
    display: block;
    margin-top: 43px;
}

.services-single-one__content-list ul {
    position: relative;
    display: block;
}

.services-single-one__content-list ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 13px;
}

.services-single-one__content-list ul li:last-child {
    margin-bottom: 0;
}

.services-single-one__content-list ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
}

.services-single-one__content-list ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--alori-base);
    font-size: 20px;
    top: 1px;
}

.services-single-one__content-list ul li .text {
    position: relative;
    display: block;
}

.services-single-one__content-list ul li .text p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}


.services-single-one__content .text3 {
    position: relative;
    display: block;
    margin-top: 33px;
}

.services-single-one__content .text3 p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}



.services-single-one__content-bottom {
    position: relative;
    display: block;
    padding-left: 435px;
    margin-top: 66px;
}

.services-single-one__content-bottom-img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 390px;
    width: 100%;
}

.services-single-one__content-bottom-list {
    position: relative;
    display: block;
}

.services-single-one__content-bottom-list ul {
    position: relative;
    display: block;
}

.services-single-one__content-bottom-list ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 13px;
}

.services-single-one__content-bottom-list ul li:last-child {
    margin-bottom: 0;
}

.services-single-one__content-bottom-list ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
}

.services-single-one__content-bottom-list ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--alori-base);
    font-size: 20px;
    top: 1px;
}

.services-single-one__content-bottom-list ul li .text {
    position: relative;
    display: block;
}

.services-single-one__content-bottom-list ul li .text p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}







.services-single__sidebar {
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%;
}

.services-single__sidebar-single {
    position: relative;
    display: block;
}

.services-single__sidebar__title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    padding-bottom: 17px;
}

.services-single__sidebar__title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #dddddd;
    content: "";
}

.services-single__sidebar-services {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 34px 30px 50px;
}



.services-single__sidebarlink {
    position: relative;
    display: block;
    margin-top: 25px;
}

.services-single__sidebarlink li {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #f4f4f4;
    margin-bottom: 20px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.services-single__sidebarlink li:hover,
.services-single__sidebarlink li.active {
    border-color: var(--alori-base);
}

.services-single__sidebarlink li:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: var(--alori-base);
}

.services-single__sidebarlink li:hover:after,
.services-single__sidebarlink li.active:after {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.services-single__sidebarlink li.active a {
    color: #ffffff;
}

.services-single__sidebarlink li:last-child {
    margin-bottom: 0px;
}

.services-single__sidebarlink li a {
    position: relative;
    display: block;
    color: var(--alori-gray);
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    padding: 6px 25px 6px;
    font-family: var(--thm-font);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.services-single__sidebarlink li:hover a {
    color: #ffffff;
}







.services-single__sidebar-contact-info {
    position: relative;
    display: block;
    background: #f99545;
    margin-top: 40px;
    padding: 23px 30px 54px;
    border-radius: 5px;
    z-index: 1;
}

.services-single__sidebar-contact-info .icon-bg {
    position: absolute;
    left: 0;
    bottom: 20px;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.services-single__sidebar-contact-info .icon {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 65px;
    margin-bottom: 37px;
}

.services-single__sidebar-contact-info-title {
    color: #ffffff;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 11px;

}

.services-single__sidebar-contact-info-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 18px;
}

.services-single__sidebar-contact-info a {
    color: #ffffff;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    font-family: var(--alori-font);
}

.services-single__sidebar-contact-info a:hover {
    color: var(--alori-black);
}




/***
=============================================
    Projects One Protfolio
=============================================
***/
.projects-one--protfolio {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}





/***
=============================================
    Portfolio Two
=============================================
***/

.protfolio-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}



.protfolio-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.protfolio-two__single-img {
    position: relative;
    display: block;
}

.protfolio-two__single-img img {
    width: 100%;
}

.protfolio-two__single-img .overlay-content {
    position: absolute;
    max-width: 315px;
    width: 100%;
    top: 0;
    left: 20px;
    bottom: 0;
    display: flex;
    align-items: center;
}

.protfolio-two__single-img .overlay-content-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #ffffff;
    max-width: 315px;
    padding: 30px 0px 30px;
    padding-left: 40px;
    padding-right: 35px;
    width: 100%;
}

.protfolio-two__single-img .overlay-content-inner .text span {
    color: var(--alori-base);
    font-size: 16px;
    line-height: 26px;
}

.protfolio-two__single-img .overlay-content-inner .text h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 6px;
}

.protfolio-two__single-img .overlay-content-inner .text h2 a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.protfolio-two__single-img .overlay-content-inner .text h2 a:hover {
    color: var(--alori-base);
}

.protfolio-two__single-img .overlay-content-inner .button {
    position: relative;
    display: block;
}

.protfolio-two__single-img .overlay-content-inner .button a {
    position: relative;
    display: inline-block;
    color: var(--alori-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.protfolio-two__single-img .overlay-content-inner .button a:hover {
    color: var(--alori-base);
}

.protfolio-two__single-img .overlay-content-inner .button a span:before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    top: 2px;
}



/***
============================================
	Best Logistics One Protfolio Two
============================================
***/
.best-logistics-one--protfolio-two {
    position: relative;
    display: block;
}

.best-logistics-one--protfolio-two .best-logistics-one__img .overlay-content {
    left: -65px;
    bottom: 60px;
}



/***
============================================
	Page Header Protfolio Single
============================================
***/
.page-header--protfolio-single {
    position: relative;
    display: block;
    padding: 130px 0px 156px;
}

.page-header--protfolio-single .page-header__content .number {
    position: relative;
    display: block;
    margin-top: 24px;
}



/***
============================================
 Protfolio Single
============================================
***/

.protfolio-single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.protfolio-single__content {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
}


.protfolio-single__img1 {
    position: relative;
    display: block;
    margin-bottom: 55px;
}

.protfolio-single__img1 img {
    width: 100%;
}

.protfolio-single__content .title {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.protfolio-single__content .title h2 {
    font-size: 50px;
    line-height: 1em;
}

.protfolio-single__content .text1 {
    position: relative;
    display: block;
    max-width: 690px;
    width: 100%;
}

.protfolio-single__content .text1 p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}



.protfolio-single__content-list {
    position: relative;
    display: block;
    margin-top: 23px;
}

.protfolio-single__content-list ul {
    position: relative;
    display: block;
}

.protfolio-single__content-list ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 13px;
}

.protfolio-single__content-list ul li:last-child {
    margin-bottom: 0;
}

.protfolio-single__content-list ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
}

.protfolio-single__content-list ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--alori-base);
    font-size: 20px;
    top: 1px;
}

.protfolio-single__content-list ul li .text {
    position: relative;
    display: block;
}

.protfolio-single__content-list ul li .text p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}


.protfolio-single__bottom-img {
    position: relative;
    display: block;
    margin-top: 46px;
}

.protfolio-single__bottom-img-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.protfolio-single__bottom-img-single img {
    width: 100%;
}



.protfolio-single__content .text2 {
    position: relative;
    display: block;
    max-width: 690px;
    width: 100%;
    margin-top: 12px;
}

.protfolio-single__content .text2 p {
    font-size: 20px;
    color: rgba(var(--alori-gray-rgb), 0.8);
}




.services-single__sidebar--protfolio {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
    margin-left: 30px;
}

.services-single__sidebar--protfolio .services-single__sidebar-contact-info {
    position: relative;
    display: block;
    margin-top: 0;
}


.author-box {
    position: relative;
    display: block;
    margin-top: 38px;
    margin-bottom: 40px;
}

.author-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-box ul li {
    position: relative;
    display: block;
    padding-right: 30px;
    padding-left: 30px;
}

.author-box ul li h6 {
    color: var(--alori-gray);
    font-size: 20px;
    line-height: 44px;
    font-weight: 700;

}

.author-box ul li p {
    color: var(--alori-black);
    font-size: 18px;
    line-height: 44px;
}

.author-box ul li::before {
    position: absolute;
    top: 12px;
    right: 0;
    bottom: 16px;
    width: 1px;
    background: #e5e1de;
    content: "";
}

.author-box ul li:last-child::before {
    display: none;
}

.services-single__sidebar--protfolio-social-link {
    position: relative;
    display: block;
    text-align: center;
}

.services-single__sidebar--protfolio-social-link ul {
    position: relative;
    display: block;
}

.services-single__sidebar--protfolio-social-link ul li {
    position: relative;
    display: inline-block;
}

.services-single__sidebar--protfolio-social-link ul li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: var(--alori-black);
    font-size: 15px;
    text-align: center;
    background: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-single__sidebar--protfolio-social-link ul li a.active {
    background: var(--alori-base);
    color: #ffffff;
}

.services-single__sidebar--protfolio-social-link ul li a:hover {
    background: var(--alori-base);
    color: #ffffff;
}






/***
============================================
	Previous Next One
============================================
***/
.previous-next-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
}

.previous-next-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e2e2;
    padding: 72px 40px 72px;
}

.previous-next-one__inner .previous-box {
    position: relative;
    display: block;
}

.previous-next-one__inner .previous-box p {
    font-size: 20px;
}

.previous-next-one__inner .previous-box p a {
    color: rgba(var(--alori-gray-rgb), 0.8);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.previous-next-one__inner .previous-box p a:hover {
    color: var(--alori-base);
}

.previous-next-one__inner .previous-box h2 {
    font-size: 24px;
    line-height: 34px;
}

.previous-next-one__inner .previous-box h2 a {
    color: var(--alori-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.previous-next-one__inner .previous-box h2 a:hover {
    color: var(--alori-base);
}

.previous-next-one__inner .next-box {
    position: relative;
    display: block;
    text-align: right;
}

.previous-next-one__inner .next-box p {
    font-size: 20px;
}

.previous-next-one__inner .next-box p a {
    color: rgba(var(--alori-gray-rgb), 0.8);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.previous-next-one__inner .next-box p a:hover {
    color: var(--alori-base);
}

.previous-next-one__inner .next-box h2 {
    font-size: 24px;
    line-height: 34px;
}

.previous-next-one__inner .next-box h2 a {
    color: var(--alori-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.previous-next-one__inner .next-box h2 a:hover {
    color: var(--alori-base);
}





/***
=============================================
    Blog One Blog
=============================================
***/
.blog-one--blog {
    position: relative;
    display: block;
    padding: 120px 0px 60px;
}




/***
=============================================
    Blog Page Two
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.blog-page-two__content {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
}





.blog-page-two__single {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.blog-page-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-page-two__single-img::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    background: var(--alori-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.blog-page-two__single:hover .blog-page-two__single-img::before {
    opacity: 0.80;
    transform: scaleY(1.0);
}

.blog-page-two__single-img img {
    width: 100%;
    transition: all 700ms linear;
    transition-delay: 0.1s;
}

.blog-page-two__single:hover .blog-page-two__single-img img {
    transform: scale(1.2);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.blog-page-two__single-content {
    position: relative;
    display: block;
    background: #faf6f4;
    padding: 41px 0px 50px;
    padding-left: 45px;
    padding-right: 20px;
}

.blog-page-two__single-tagline {
    color: var(--alori-base);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3px;
}


.blog-page-two__single-title {
    position: relative;
    display: block;
}

.blog-page-two__single-headding {
    font-size: 40px;
    line-height: 1.4em;
    font-weight: 700;

}

.blog-page-two__single-headding a {
    color: var(--alori-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.blog-page-two__single-headding a:hover {
    color: var(--alori-base);
}

.blog-page-two__single-meta-info {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 17px;
}

.blog-page-two__single-meta-info li {
    position: relative;
    display: inline-block;
    color: #626161;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    padding-left: 15px;
}

.blog-page-two__single-meta-info li:first-child {
    padding-left: 0;
}

.blog-page-two__single-meta-info li i::before {
    color: #626161;
    font-size: 15px;
    padding-right: 11px;
}

.blog-page-two__single-text {
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 16px;
    margin: 0;
}


.blog-page-two__single-btn {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-page-two__single-btn a {
    position: relative;
    display: inline-block;
    background: var(--alori-gray);
    color: #ffffff;
    font-size: 16px;
    padding: 10px 40px 10px;
    border-radius: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.blog-page-two__single-btn a:hover {
    background: var(--alori-base);
}

.blog-page-two__single-btn a img {
    position: relative;
    display: inline-block;
    padding-left: 10px;
}



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

.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 40px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 3px;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ebebeb;
    color: #5c5c66;
    font-size: 20px;
    line-height: 50px;
    font-weight: 400;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    z-index: 1;
}

.styled-pagination li a span::before {
    position: relative;
    display: inline-block;
    top: -4px;
    color: #5c5c66;
    font-size: 10px;
    line-height: 50px;
    font-weight: 700;
    transition: all 500ms ease;
}

.styled-pagination li a:hover span::before {
    color: var(--alori-base);
}

.styled-pagination li a:hover {
    color: var(--alori-base);
    border: 1px solid var(--alori-base);

}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    color: var(--alori-base);
    border: 1px solid var(--alori-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    color: var(--thm-black);
    line-height: 50px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: var(--alori-base);
}







/***
============================================
	Sidebar
============================================
***/
.sidebar {
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%;
    margin-left: 20px;
}

.sidebar__single {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.sidebar__single .title {
    position: relative;
    display: block;
    max-width: 210px;
    width: 100%;
}

.sidebar__single .title h2 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    padding-bottom: 17px;

}

.sidebar__single .title h2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #dddddd;
    content: "";
}

.sidebar__categories {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 34px 30px 50px;
}


.sidebar__categories-link {
    position: relative;
    display: block;
    margin-top: 25px;
}

.sidebar__categories-link li {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #f4f4f4;
    margin-bottom: 20px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar__categories-link li:hover,
.sidebar__categories-link li.active {
    border-color: var(--alori-base);
}

.sidebar__categories-link li:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: var(--alori-base);
}

.sidebar__categories-link li:hover:after,
.sidebar__categories-link li.active:after {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__categories-link li.active a {
    color: #ffffff;
}

.sidebar__categories-link li:last-child {
    margin-bottom: 0px;
}

.sidebar__categories-link li a {
    position: relative;
    display: block;
    color: var(--alori-gray);
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    padding: 6px 25px 6px;
    font-family: var(--thm-font);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__categories-link li:hover a {
    color: #ffffff;
}

.sidebar__categories-link li a span {
    position: relative;
    display: inline-block;
    color: var(--alori-gray);
    font-size: 18px;
    line-height: 32px;
    float: right;
    font-weight: 400;
    font-family: var(--alori-font);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__categories-link li a:hover span {
    color: #ffffff;
}

.sidebar__categories-link li.active a span {
    color: #ffffff;
}





.sidebar__popular-stories {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 26px 0px rgb(215, 212, 212, 0.35);
    padding: 34px 0px 58px;
    padding-left: 30px;
    padding-right: 20px;
}

.sidebar__popular-stories-box {
    position: relative;
    display: block;
    margin-top: 32px;
}

.sidebar__popular-stories-box li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddddd;
    padding-top: 24px;
    padding-bottom: 22px;
}

.sidebar__popular-stories-box li:first-child {
    padding-top: 0;
}

.sidebar__popular-stories-box li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar__popular-stories-box li .img {
    position: relative;
    display: block;
}

.sidebar__popular-stories-box li .img img {
    width: 95px;
    height: 110px;
}

.sidebar__popular-stories-box li .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.sidebar__popular-stories-box li .text h4 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 3px;
}

.sidebar__popular-stories-box li .text h4 a {
    color: var(--alori-black);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__popular-stories-box li .text h4 a:hover {
    color: var(--alori-base);
}

.sidebar__popular-stories-box li .text p {
    color: rgba(var(--alori-gray-rgb), 0.8);
    font-size: 16px;
    line-height: 28px;
}



.sidebar__contact-box {
    position: relative;
    display: block;
}

.sidebar__contact-box .services-single__sidebar-contact-info {
    margin-top: 35px;
}





/***
============================================
	Blog Page Single
============================================
***/
.blog-page-single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 50px 0px 50px;
}

.blog-page-single__content {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
}

.blog-page-single__content .blog-page-two__single-content {
    background: transparent;
    padding: 31px 0px 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.blog-page-single__content .blog-page-two__single-img::before {
    display: none;
}

.blog-page-single__content .blog-page-two__single-meta-info {
    margin-top: 10px;
    margin-bottom: 22px;
}


.blog-page-single__content .text-2 {
    position: relative;
    display: block;
}

.blog-page-single__content .text-2 p {
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 16px;
}

.blog-page-single__content .blog-page-two__single {
    margin-bottom: 15px;
}






.blog-page-single__blockquote {
    position: relative;
    display: flex;
    align-items: center;
    background: #fbfaf7;
    padding: 39px 0px 27px;
    padding-left: 60px;
    padding-right: 40px;
    margin-bottom: 25px;
    margin-top: 45px;
}

.blog-page-single__blockquote::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--alori-base);
    content: "";
}

.blog-page-single__blockquote-icon {
    position: relative;
    display: block;
}

.blog-page-single__blockquote-icon span::before {
    color: var(--alori-gray);
    font-size: 40px;
}

.blog-page-single__blockquote-text {
    position: relative;
    display: block;
    padding-left: 55px;
}

.blog-page-single__blockquote-text p {
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 20px;
    line-height: 38px;
    font-weight: 400;
    margin-bottom: 16px;
}

.blog-page-single__author-name {
    position: relative;
    color: var(--alori-gray);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding-left: 50px;
    font-family: var(--alori-font);
}

.blog-page-single__author-name::before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 35px;
    height: 1px;
    background: #fba819;
    content: "";
}



.blog-page-single__content .text-3 {
    position: relative;
    display: block;
}

.blog-page-single__content .text-3 p {
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 16px;
}


.blog-page-single__content .text-4 {
    position: relative;
    display: block;
    margin-top: 15px;
}

.blog-page-single__content .text-4 p {
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 16px;
}



.blog-page-single__tag-and-share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 25px;
    padding-bottom: 25px;
}

.blog-page-single__tag-and-share .left {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-page-single__tag-and-share .left .icon {
    position: relative;
    display: inline-block;
}

.blog-page-single__tag-and-share .left .icon i::before {
    color: #c2bfbf;
    font-size: 30px;
    padding-right: 10px;
}

.blog-page-single__tag-and-share .left .text {
    position: relative;
    display: block;
}

.blog-page-single__tag-and-share .left .text p {
    color: rgba(var(--alori-gray-rgb), 0.8);
    font-size: 16px;
}

.blog-page-single__tag-and-share .right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-page-single__tag-and-share .right .icon {
    position: relative;
    display: inline-block;
}


.blog-page-single__tag-and-share .right .icon a {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
    background: var(--alori-base);
}

.blog-page-single__tag-and-share .right .icon i::before {
    color: #ffffff;
    font-size: 20px;
}


.blog-page-single__tag-and-share .right .text {
    position: relative;
    display: block;
    padding-left: 30px;
}

.blog-page-single__tag-and-share .right .text p {
    color: var(--alori-gray);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}




.blog-page-single__pagination {
    position: relative;
    display: block;
}

.blog-page-single__pagination ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-page-single__pagination ul li {
    position: relative;
    display: inline-block;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 32px 30px 16px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.blog-page-single__pagination ul li:hover {
    border: 1px solid #2e2b28;
}

.blog-page-single__pagination ul li .text {
    position: relative;
    display: block;
}

.blog-page-single__pagination ul li.text-right {
    position: relative;
    display: block;
    text-align: right;
}

.blog-page-single__pagination ul li .text h4 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

.blog-page-single__pagination ul li .text h4 a {
    color: var(--alori-gray);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.blog-page-single__pagination ul li .text h4 a:hover {
    color: var(--alori-base);
}

.blog-page-single__pagination ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 6px;
}












.add-comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 40px;
}

.add-comment-box .title {
    position: relative;
    display: block;
    padding-bottom: 50px;
}

.add-comment-box .title h2 {
    color: var(--alori-gray);
    font-size: 30px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 6px;
}

.add-comment-box .title p {
    color: rgba(var(--alori-gray-rgb), 0.8);
    font-size: 16px;
    margin: 0;
}


.add-comment-box #add-comment-form input[type="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    background: #f7f7f6;
    border: 0px solid #e5e5e5;
    width: 100%;
    height: 55px;
    color: rgba(24, 21, 44, 0.7);
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 30px;
    transition: all 500ms ease;
    font-family: var(--alori-font);
}

.add-comment-box #add-comment-form textarea {
    height: 190px;
    padding: 13px 20px;
    border: 0px solid #e5e5e5;
    margin-bottom: 30px;
}

.add-comment-box #add-comment-form input[type="text"]:focus {
    outline: none;
}

.add-comment-box #add-comment-form input[type="email"]:focus {
    outline: none;
}

.add-comment-box #add-comment-form textarea:focus {
    outline: none;
}







.blog-page-single .create-acc {
    position: relative;
    display: block;
}

.blog-page-single .create-acc .checkbox {
    position: relative;
    display: block;
}

.blog-page-single .create-acc .checkbox input[type="checkbox"] {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 3px;
    margin-right: 10px;
}

.blog-page-single .create-acc .checkbox label {
    color: rgba(var(--alori-gray-rgb), 0.9);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    padding-left: 10px;
}


.blog-page-single__btn {
    position: relative;
    display: block;
    margin-top: 33px;
}

.blog-page-single__btn {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
}

.blog-page-single__btn img {
    padding-left: 2px;
}




/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
    position: relative;
    display: block;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 600px;
    width: 100%;
}




/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.contact-page__get-in-touch {
    position: relative;
    display: block;
    max-width: 385px;
    width: 100%;
    z-index: 1;
}

.contact-page__get-in-touch .title {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.contact-page__get-in-touch .title h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-page__get-in-touch .title p {
    color: var(--alori-gray);
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 24px;
}



.contact-page__get-in-touch ul {
    position: relative;
    display: block;
}

.contact-page__get-in-touch ul li {
    position: relative;
    display: flex;
    background-color: #f3f3f3;
    border-radius: 5px;
    align-items: center;
    padding: 36px 20px 46px;
    margin-bottom: 30px;
}



.contact-page__get-in-touch ul li:last-child {
    margin-bottom: 0;
}

.contact-page__get-in-touch ul li .icon {
    position: relative;
    display: block;
    width: 75px;
    height: 75px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    background: #fba819;
}

.contact-page__get-in-touch ul li .icon.rotate {
    position: relative;
    display: block;
    transform: rotate(90deg);
}

.contact-page__get-in-touch ul li .icon.bg2 {
    background: #7bcf99;
}

.contact-page__get-in-touch ul li .icon span:before {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 75px;
}

.contact-page__get-in-touch ul li .text {
    position: relative;
    display: block;
    padding-left: 15px;
}

.contact-page__get-in-touch ul li .text p {
    color: var(--alori-gray);
}

.contact-page__get-in-touch ul li .text span {
    position: relative;
    display: block;
    color: var(--alori-gray);
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--alori-font-2);
    margin-bottom: 13px;
}



.contact-page__get-in-touch ul li .text .telephone {
    color: var(--alori-gray);
}

.contact-page__get-in-touch ul li .text .telephone a {
    color: var(--alori-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__get-in-touch ul li .text .telephone a:hover {
    color: var(--alori-base);
}


.contact-page__get-in-touch ul li .text .mobile {
    color: var(--alori-gray);
}

.contact-page__get-in-touch ul li .text .mobile a {
    color: var(--alori-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__get-in-touch ul li .text .mobile a:hover {
    color: var(--alori-base);
}









/***
=============================================
    Contact Page Comment Form
=============================================
***/

.contact-page__comment-form {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 24px 0px rgb(192, 198, 204, 0.35);
    padding: 66px 40px 65px;
    border-radius: 5px;
}

@media(min-width: 1200px) {
    .contact-page__comment-form {
        margin-left: -53px;
    }
}

.contact-page__comment-form .title {
    position: relative;
    display: block;
    margin-bottom: 55px;
}

.contact-page__comment-form .title h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 14px;

}

.contact-page__comment-form .title p {
    color: rgba(var(--alori-gray-rgb), 0.9);
}


.contact-page__comment-form .comment-form__input-box input[type="text"],
.contact-page__comment-form .comment-form__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border: 1px solid transparent;
    background: #f5f4f4;
    padding: 0 20px;
    margin-bottom: 20px;
    border-radius: 0px;
    outline: none;
    font-size: 16px;
    color: rgba(var(--alori-gray-rgb), 0.7);
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__comment-form .comment-form__input-box textarea {
    color: rgba(var(--alori-gray-rgb), 0.7);
    font-size: 16px;
    height: 150px;
    width: 100%;
    background: #f5f4f4;
    padding: 25px 20px 30px;
    border-radius: 0px;
    outline: none;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: capitalize;
    border: 1px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.contact-page__comment-form .comment-form__input-box input[type="text"]:focus {
    color: var(--alori-gray);
    border-color: var(--alori-gray);
    background: #ffffff;
}

.contact-page__comment-form .comment-form__input-box input[type="email"]:focus {
    color: var(--alori-gray);
    border-color: var(--alori-gray);
    background: #ffffff;
}

.contact-page__comment-form .comment-form__input-box textarea:focus {
    color: var(--alori-gray);
    border-color: var(--alori-gray);
    background: #ffffff;
}




.contact-page__comment-form .comment-form__btn.thm-btn {
    text-transform: capitalize;
    background: var(--alori-gray);
}

.contact-page__comment-form .comment-form__btn.thm-btn::after {
    background: var(--alori-base);
}

.contact-page__comment-form .comment-form__btn {
    position: relative;
    display: block;
}






/***
============================================
	Error Page
============================================
***/

.error-page {
    position: relative;
    display: block;
    padding: 280px 0px 225px;
    z-index: 1;
}

.error-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}


.error-page__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(-108deg, rgb(255, 170, 102) 0%, rgba(143, 74, 58, 0.41) 59%, rgba(10, 6, 2, 0) 100%);
    background-image: -webkit-linear-gradient(-108deg, rgb(255, 170, 102) 0%, rgba(143, 74, 58, 0.41) 59%, rgba(10, 6, 2, 0) 100%);
    background-image: -ms-linear-gradient(-108deg, rgb(255, 170, 102) 0%, rgba(143, 74, 58, 0.41) 59%, rgba(10, 6, 2, 0) 100%);
    opacity: 0.78;
    z-index: -2;
}

.error-page__wrapper {
    position: relative;
    display: block;
}

.error-page__content {
    position: relative;
    display: block;
}

.error-page__content h2 {
    color: #ffffff;
    font-size: 170px;
    line-height: 0.8em;
    font-weight: 700;
    font-family: "CASTELAR";
    margin-bottom: 25px;
}

.error-page__content h2 span {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
}

.error-page__content h3 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    font-family: var(--alori-font);
    margin-bottom: 12px;
}

.error-page__content p {
    color: #ffffff;
}

.error-page__btn {
    position: relative;
    display: block;
    margin-top: 50px;
}

.error-page__btn .thm-btn {
    text-transform: capitalize;
    font-family: var(--alori-font);
}



























/***
============================================
	Hidden Sidebar style
============================================
***/
.hidden-bar {
    position: fixed;
    top: 0;
    width: 320px;
    height: 100%;
    background: var(--alori-gray);
    z-index: 9999999999;
    transition: all 700ms ease;
}

.hidden-bar .mCSB_inside>.mCSB_container {
    margin-right: 0px;
}

.hidden-bar.right-align {
    right: -400px;
}

.hidden-bar.right-align.visible-sidebar {
    right: 0px;
    transition-delay: 300ms;
}

.hidden-bar .hidden-bar-closer {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: none;
    color: rgba(255, 255, 255, .7);
    border-radius: 0px;
    text-align: center;
    line-height: 40px;
    transition: all 300ms ease;
    z-index: 999999;
}

.hidden-bar .hidden-bar-closer button {
    background: none;
    display: block;
    font-size: 40px;
    color: rgba(255, 255, 255, .7);
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.hidden-bar .hidden-bar-closer button span:before {
    font-size: 30px;
    line-height: 30px;
}

.hidden-bar .hidden-bar-closer:hover button {
    color: rgba(255, 255, 255, .7);
}

.hidden-bar-wrapper {
    height: 100%;
    padding: 30px 10px 30px 30px;
    overflow-y: auto;
}

.hidden-bar .logo {
    padding: 0px 0px 30px;
}

.hidden-bar .logo a {
    display: inline-block;
}

.hidden-bar .logo img {
    display: inline-block;
    max-width: 100%;
}


.hiddenbar-about-us {
    position: relative;
    display: block;
}

.hiddenbar-about-us h3 {
    color: var(--alori-base);
    font-size: 20px;
    margin: 0 0 18px;
}

.hiddenbar-about-us .text {
    display: block;
}

.hiddenbar-about-us .text p {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}


.hidden-bar .contact-info-box {
    position: relative;
    display: block;
    padding-top: 36px;
}

.hidden-bar .contact-info-box h3 {
    color: var(--alori-base);
    font-size: 20px;
    margin: 0 0 23px;
}

.hidden-bar .contact-info-box ul {
    position: relative;
    display: block;
}

.hidden-bar .contact-info-box ul li {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}

.hidden-bar .contact-info-box ul li:last-child {
    margin-bottom: 0;
}

.hidden-bar .contact-info-box ul li h5 {
    color: var(--alori-base);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin: 0 0 11px;
}

.hidden-bar .contact-info-box ul li p {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    margin: 0;
}

.hidden-bar .contact-info-box ul li p a {
    color: rgba(255, 255, 255, .7);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.hidden-bar .contact-info-box ul li p a:hover {
    color: var(--alori-base);
}

.hidden-bar .newsletter-form-box {
    position: relative;
    display: block;
    padding-top: 26px;
    padding-right: 20px;
}

.hidden-bar .newsletter-form-box h3 {
    color: var(--alori-base);
    font-size: 20px;
    margin: 0 0 24px;
}

.hidden-bar .newsletter-form-box form {
    position: relative;
    display: block;
}

.hidden-bar .newsletter-form-box form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    color: #8b8b8b;
    font-size: 15px;
    padding: 0 20px;
    padding-right: 60px;
    transition: all 500ms ease;
    outline: none;
}

.hidden-bar .newsletter-form-box form button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: auto;
    text-align: center;
}

.hidden-bar .newsletter-form-box form button:before {
    position: absolute;
    top: 12px;
    left: 0;
    bottom: 12px;
    width: 2px;
    background: #eeeeee;
    content: "";
}

.hidden-bar .newsletter-form-box form button i {
    position: relative;
    top: 2px;
    color: var(--alori-black);
    font-size: 20px;
    line-height: 20px;
}

.hidden-bar .copy-right-text {
    position: relative;
    display: block;
    padding-top: 44px;
}

.hidden-bar .copy-right-text p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    margin: 0;
}



/***
=============================================
    Tiny Scrollbar
=============================================
***/
#scrollbar1 {
    width: 270px;
    margin: 0;
}

#scrollbar1 .viewport {
    position: relative;
    width: 270px;
    height: 530px;
    overflow: hidden;
}

#scrollbar1 .overview {
    list-style: none;
    position: absolute;
    left: 15px;
    top: 0;
    padding: 0;
    margin: 0;
    max-width: 500px;
    width: 100%;
    height: 100%;
}

#scrollbar1 .scrollbar {
    position: absolute;
    top: 0;
    right: 0px;
    background: #e7e7e7;
    width: 4px;
}

#scrollbar1 .track {
    background: transparent;
    height: 100%;
    width: 4px;
    position: relative;
    padding: 0;
}

#scrollbar1 .thumb {
    background: #fa401b;
    background-image: none;
    height: 20px;
    width: 4px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0px;
    opacity: 1;
    z-index: 3;
}

#scrollbar1 .thumb .end {
    background: #353742 no-repeat 50% 0;
    overflow: hidden;
    height: 0px;
    width: 4px;
}

#scrollbar1 .disable {
    display: none;
}


.stricky-one-logo {
    position: relative;
    display: none;
}

.stricky-header.main-menu .stricky-one-logo {
    display: block;
}

.stricky-header .main-menu__list>li>a {
    padding-top: 33px;
    padding-bottom: 33px;
}