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

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --hauzo-font: 'Barlow', sans-serif;
    --hauzo-font-two: 'Roboto', sans-serif;
    --hauzo-font-three: 'Rubik', sans-serif;
    --hauzo-font-four: 'Playfair Display', serif;
    --hauzo-gray: #444444;
    --hauzo-gray-rgb: 68, 68, 68;
    --hauzo-white: #ffffff;
    --hauzo-white-rgb: 255, 255, 255;
    --hauzo-base: #3a3d2b;
    --hauzo-base-rgb: 217, 4, 41;
    --hauzo-black: #3a3d2b;
    --hauzo-black-rgb: 5, 29, 62;
    --hauzo-primary: #4c3f37;
    --hauzo-primary-rgb: 27, 89, 194;
    --hauzo-bdr-radius: 7px;
}

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

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

body {
    font-family: var(--hauzo-font);
    color: var(--hauzo-gray);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--hauzo-gray);
}

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

::-webkit-input-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,
h4,
h5,
h6 {
    color: #ffffff;
    margin: 0;
    font-family: var(--hauzo-font-two);
}
h3 {
    color: #4c3f37;
    margin: 0;
    font-family: var(--hauzo-font-two);
}


p {
    margin: 0;
}

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

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

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

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

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

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

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

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

::-webkit-input-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(--hauzo-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--hauzo-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--hauzo-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--hauzo-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
}


.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background: #7d8359;
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    /*background-image: -webkit-linear-gradient(0deg, rgb(60 63 45) 0%, rgb(62 63 45) 57%, rgb(61 63 45) 100%);*/
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    color: var(--hauzo-white);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--hauzo-font-two);
    padding-top: 15px;
    padding-bottom: 14px;
    padding-left: 36px;
    letter-spacing: 0.1em;
    padding-right: 26px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
}

    .thm-btn span {
        position: relative;
        display: inline-block;
        height: 20px;
        width: 20px;
        border: 2px solid var(--hauzo-white);
        border-radius: 50%;
        color: var(--hauzo-white);
        font-size: 10px;
        text-align: center;
        line-height: 17px;
        top: -1px;
        margin-left: 13px;
        transition: all 0.5s linear;
    }

    .thm-btn:hover span {
        border: 2px solid var(--hauzo-white);
        color: var(--hauzo-white);
    }

    .thm-btn::before {
        position: absolute;
        content: '';
        background-color: #3a3d2b;
        width: 100%;
        height: 0%;
        left: 50%;
        top: 50%;
        border-radius: 0px;
        transform: translate(-50%, -50%) rotate(-37deg);
        z-index: -1;
        transition: all 500ms ease;
    }

    .thm-btn:hover {
        color: var(--hauzo-white);
    }

        .thm-btn:hover:before {
            height: 380%;
        }


.section-title {
    position: relative;
    display: block;
    margin-top: -12px;
    margin-bottom: 49px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: var(--hauzo-base);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--hauzo-font-two);
    margin-left: 38px;
    z-index: 1;
}

    .section-title__tagline:before {
        position: absolute;
        left: -40px;
        top: 7px;
        width: 30px;
        height: 2px;
        background-color: var(--hauzo-base);
        content: "";
    }

.section-title__title {
    margin: 0;
    color: #4c3f37;
    font-size: 45px;
    line-height: 54px;
    font-weight: 900;
    margin-top: 13px;
}

.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 {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    -webkit-box-shadow: none !important;
    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(--hauzo-primary);
        color: #fff;
    }

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

        .bootstrap-select .dropdown-menu > li > a:hover {
            background: var(--hauzo-black);
            color: var(--hauzo-white);
            cursor: pointer;
        }





/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

    .handle-preloader .animation-preloader {
        position: absolute;
        z-index: 100;
    }

        .handle-preloader .animation-preloader .spinner {
            height: 150px;
            width: 150px;
            border-radius: 50%;
            margin: 0 auto 45px auto;
            animation: spinner 1s infinite linear;
        }

        .handle-preloader .animation-preloader .txt-loading {
            text-align: center;
            user-select: none;
        }


            .handle-preloader .animation-preloader .txt-loading .letters-loading {
                position: relative;
                display: inline-block;
                font-family: var(--hauzo-font);
                font-weight: 700;
                letter-spacing: 15px;
                font-size: 70px;
                line-height: 70px;
                text-transform: uppercase;
                color: transparent;
                -webkit-text-stroke-width: 1px;
                -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
            }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
                    animation: letters-loading 4s infinite;
                    content: attr(data-text-preloader);
                    position: absolute;
                    top: 0;
                    left: 0;
                    opacity: 0;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
                    animation-delay: 0.1s;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
                    animation-delay: 0.2s;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
                    animation-delay: 0.3s;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
                    animation-delay: 0.4s;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
                    animation-delay: 0.5s;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
                    animation-delay: 0.6s;
                }

                .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
                    animation-delay: 0.7s;
                }

    .handle-preloader .loader-section {
        background-color: #ffffff;
        height: 100%;
        position: fixed;
        top: 0;
        width: calc(50% + 1px);
    }

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciÃƒÂ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #7d8359;
}






/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--hauzo-primary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
}

    .scroll-to-top i {
        color: var(--hauzo-white);
        font-size: 18px;
        line-height: 50px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .scroll-to-top:hover {
        background-color: var(--hauzo-base);
    }

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




/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.png), pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .6;
    visibility: visible;
    transition-delay: 0.3s;
    right: 100%;
    background-color: #000000;
}

.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 700ms ease 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition: all 500ms ease 800ms;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 700ms ease 1500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}



.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

    .xs-sidebar-group .widget-heading a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--hauzo-black);
        border-radius: 50%;
        color: var(--hauzo-black);
        font-size: 20px;
        font-weight: 400;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

        .xs-sidebar-group .widget-heading a:hover {
            color: var(--hauzo-base);
            border-color: var(--thn-base);
        }


.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

    .xs-sidebar-group .content-inner .logo a {
        position: relative;
        display: inline-block;
    }

.xs-sidebar-group .content-inner h3 {
    color: var(--hauzo-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

    .xs-sidebar-group .content-inner .content-box .inner-text {
        position: relative;
        display: block;
    }

    .xs-sidebar-group .content-inner .content-box p {
        color: #444444;
    }



.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

    .xs-sidebar-group .content-inner .sidebar-contact-info h3 {
        color: var(--hauzo-black);
        font-size: 25px;
        line-height: 30px;
        font-weight: 700;
        margin: 0 0 27px;
    }

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

    .sidebar-contact-info ul li {
        position: relative;
        display: block;
        margin-bottom: 26px;
    }

        .sidebar-contact-info ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar-contact-info ul li .inner {
            position: relative;
            display: block;
            padding-left: 45px;
        }

            .sidebar-contact-info ul li .inner .icon {
                position: absolute;
                top: 3px;
                left: 0;
            }

        .sidebar-contact-info ul li:first-child .inner .icon {
            top: 11px;
        }

        .sidebar-contact-info ul li .inner .icon span {
            position: relative;
            display: block;
            color: var(--hauzo-base);
            font-size: 32px;
            line-height: 25px;
        }

            .sidebar-contact-info ul li .inner .icon span.map-marker {
                position: relative;
                top: 11px;
                font-size: 34px;
            }

        .sidebar-contact-info ul li .inner .text {
            position: relative;
            display: block;
        }

            .sidebar-contact-info ul li .inner .text p {
                line-height: 24px;
                color: #444444;
            }

                .sidebar-contact-info ul li .inner .text p a {
                    color: #444444;
                }


.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

    .xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
        color: var(--hauzo-black);
        font-size: 25px;
        line-height: 30px;
        font-weight: 700;
        margin: 0 0 24px;
    }

.side-content-newsletter-box .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--hauzo-font);
    outline: none;
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
    border: none;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    background-color: #444b32;
    transition: all 500ms ease;
    padding: 30px 0 0;
    z-index: 999;
}

.main-header--one {
    background-color: transparent;
    padding: 0;
}



.main-header__top {
    position: relative;
    display: block;
    padding: 30px 0 43px;
    z-index: 1;
}

    .main-header__top .top-border {
        position: absolute;
        top: 5px;
        left: 0;
        right: 0;
        height: 1px;
        border-bottom: 1px dashed rgba(245, 245, 245, .23);
    }

    .main-header__top .bottom-border {
        position: absolute;
        left: 0;
        bottom: 5px;
        right: 0;
        height: 1px;
        border-bottom: 1px dashed rgba(245, 245, 245, .23);
    }


    .main-header__top:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #3a3d2b;
        z-index: -1;
    }

.main-header__top-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: multiply;
    opacity: 0.30;
    z-index: -1;
}


.main-header__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
    z-index: 1;
}

.main-header__top-left {
    position: relative;
    display: block;
}

.main-header__logo {
    position: relative;
    display: block;
}

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

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

    .main-header__address-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .main-header__address-list li:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: -40px;
            width: 1px;
            background-color: #50637f;
        }

        .main-header__address-list li:first-child:before {
            display: none;
        }

        .main-header__address-list li + li {
            margin-left: 80px;
        }

        .main-header__address-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .main-header__address-list li .icon img {
                width: auto;
            }

        .main-header__address-list li .content {
            margin-left: 20px;
        }

            .main-header__address-list li .content p {
                font-size: 16px;
                color: white;
                line-height: 20px;
            }

            .main-header__address-list li .content h4 {
                font-size: 20px;
                font-weight: 500;
                line-height: 20px;
                margin-top: 8px;
            }

        .main-header__address-list li:last-child .content h4 {
            font-weight: 700;
            font-size: 25px;
            margin-top: 13px;
        }

        .main-header__address-list li .content h4 a {
            color: #ffffff;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .main-header__address-list li .content h4 a:hover {
                color: var(--hauzo-base);
            }




.main-menu--one {
    margin-top: -29px;
    margin-bottom: -29px;
}







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

.main-menu__wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 2px;
    padding-left: 30px;
    z-index: 1;
}

    .main-menu__wrapper-inner:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 29px;
        background-color: #d1d1d1;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
        opacity: .60;
    }

.main-menu__wrapper-inner-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: repeat-x;
    z-index: -1;
    border-radius: 2px;
}

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

.main-menu__right {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__search-nav-sidebar-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 39px;
}

.main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #040404;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu__search:hover {
        color: var(--hauzo-base);
    }

.main-menu__side-content-icon {
    position: relative;
    display: block;
}

    .main-menu__side-content-icon .navSidebar-button {
        position: relative;
        display: block;
    }

.icon-dots-menu-1 {
    position: relative;
    display: block;
    height: 4px;
    width: 35px;
    background-color: var(--hauzo-black);
    border-radius: 2px;
}

.icon-dots-menu-2 {
    position: relative;
    display: block;
    height: 4px;
    width: 25px;
    background-color: var(--hauzo-black);
    border-radius: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.icon-dots-menu-3 {
    position: relative;
    display: block;
    height: 4px;
    width: 15px;
    background-color: var(--hauzo-black);
    border-radius: 2px;
}

.main-menu__btn {
    position: relative;
    display: block;
    z-index: 2;
}

    .main-menu__btn a {
        position: relative;
        display: flex;
        align-items: center;
        background: #3a3d2b;
        background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
        /*background-image: -webkit-linear-gradient(0deg, rgb(125 131 89) 0%, rgb(125 131 89) 57%, rgb(125 131 89) 100%);*/
        background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
        font-size: 15px;
        color: var(--hauzo-white);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding-left: 60px;
        padding-right: 30px;
        padding-top: 14px;
        padding-bottom: 14px;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        clip-path: polygon(18% 0, 100% 0%, 115% 100%, 0% 100%);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-menu__btn a:hover {
            background-color: var(--hauzo-primary);
            background-image: inherit;
        }









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



@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 14px;
    padding-bottom: 14px;
    position: relative;
}

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

    .main-menu .main-menu__list > li:before,
    .stricky-header .main-menu__list > li:before {
        content: "";
        position: absolute;
        top: 14px;
        bottom: 14px;
        left: -25px;
        width: 1px;
        background-color: #d1d1d1;
    }

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

    .main-menu .main-menu__list > li:after,
    .stricky-header .main-menu__list > li:after {
        content: "";
        position: absolute;
        top: 14px;
        bottom: 14px;
        left: -26px;
        width: 1px;
        background-color: #fcfcfc;
    }

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

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--hauzo-black);
        font-weight: 700;
        font-family: var(--hauzo-font-two);
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .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: #4c3f37;
    }

    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scaleY(0) translateZ(100px);
        transform: scaleY(0) translateZ(100px);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
        z-index: 99;
        background-color: #0a1936;
        padding: 10px 25px 10px;
        border-top: 2px solid var(--hauzo-base);
    }

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

        .main-menu .main-menu__list > li:hover > ul,
        .main-menu .main-menu__list > li > ul > li:hover > ul,
        .stricky-header .main-menu__list > li:hover > ul,
        .stricky-header .main-menu__list > li > ul > li:hover > ul {
            opacity: 1;
            visibility: visible;
            -webkit-transform: scaleY(1) translateZ(0px);
            transform: scaleY(1) translateZ(0px);
        }

        .main-menu .main-menu__list > li > ul > li,
        .main-menu .main-menu__list > li > ul > li > ul > li,
        .stricky-header .main-menu__list > li > ul > li,
        .stricky-header .main-menu__list > li > ul > li > ul > li {
            -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
            flex: 1 1 100%;
            width: 100%;
            position: relative;
            border-bottom: 1px solid #343c4e;
        }

            .main-menu .main-menu__list > li > ul > li:last-child,
            .main-menu .main-menu__list > li > ul > li > ul > li:last-child,
            .stricky-header .main-menu__list > li > ul > li:last-child,
            .stricky-header .main-menu__list > li > ul > li > ul > li:last-child {
                border-bottom: 0;
            }

            .main-menu .main-menu__list > li > ul > li + li,
            .main-menu .main-menu__list > li > ul > li > ul > li + li,
            .stricky-header .main-menu__list > li > ul > li + li,
            .stricky-header .main-menu__list > li > ul > li > ul > li + li {
                border-top: none;
                margin-top: 0px;
            }

            .main-menu .main-menu__list > li > ul > li > a,
            .main-menu .main-menu__list > li > ul > li > ul > li > a,
            .stricky-header .main-menu__list > li > ul > li > a,
            .stricky-header .main-menu__list > li > ul > li > ul > li > a {
                position: relative;
                font-size: 18px;
                line-height: 30px;
                color: var(--hauzo-white);
                font-weight: 500;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                padding: 10px 0px 12px;
                -webkit-transition: 500ms;
                transition: 500ms;
            }

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

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

.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%;
}


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

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

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

.stricky-header .main-menu__wrapper {
    background-position: center;
    background-size: cover;
    background-repeat: repeat-x;
    background-image: url(../images/shapes/menu-bg-1-1.jpg);
}

    .stricky-header .main-menu__wrapper::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 29px;
        background-color: #d1d1d1;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
        opacity: .60;
    }

.stricky-header .main-menu__wrapper-inner {
    padding-left: 0;
}

    .stricky-header .main-menu__wrapper-inner::before {
        display: none;
    }

.stricky-header .main-menu__wrapper-inner-bg {
    background-image: none !important;
}

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

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

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

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

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

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

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--hauzo-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

    .main-menu .mobile-nav__toggler:hover {
        color: var(--hauzo-black);
    }

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

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

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

    .mobile-nav__wrapper.expanded {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        visibility: visible;
        -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

.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-color: var(--hauzo-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

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

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--hauzo-white);
    cursor: pointer;
}

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

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

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

    .mobile-nav__content .main-menu__list > li > a > .main-menu-border {
        display: none !important;
    }

    .mobile-nav__content .main-menu__list > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 30px;
        color: #ffffff;
        font-size: 14px;
        font-family: var(--hauzo-font);
        font-weight: 500;
        height: 46px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

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

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

    .mobile-nav__content .main-menu__list > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
        width: 30px;
        height: 30px;
        background-color: var(--hauzo-base);
        border: none;
        outline: none;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: -webkit-transform 500ms ease;
        transition: -webkit-transform 500ms ease;
        transition: transform 500ms ease;
        transition: transform 500ms ease, -webkit-transform 500ms ease;
        padding: 0;
    }

        .mobile-nav__content .main-menu__list > li > a > button.expanded,
        .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
        .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            background-color: #fff;
            color: var(--hauzo-base);
        }

    /* no menu after 2rd level dropdown */
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
        display: none !important;
    }

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

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

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .mobile-nav__top .main-menu__login a {
        color: var(--hauzo-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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

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

        .mobile-nav__social a:hover {
            color: var(--hauzo-base);
        }

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

    .mobile-nav__contact li {
        color: var(--hauzo-text-dark);
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

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

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

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

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--hauzo-primary);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-align: center;
            font-size: 11px;
            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;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-two__top {
    position: relative;
    display: block;
    background-color: #131d2b;
    margin-bottom: 13px;
}

.main-header-two__top-wrapper {
    position: relative;
    display: block;
    padding: 9.5px 55px;
}

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

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

.main-header-two__top-text-box {
    position: relative;
    display: block;
}

.main-header-two__top-text {
    font-size: 18px;
    color: var(--hauzo-white);
    font-weight: 500;
}

    .main-header-two__top-text a {
        color: var(--hauzo-base);
        font-family: var(--hauzo-font-two);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-header-two__top-text a:hover {
            color: var(--hauzo-white);
        }

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

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

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

    .main-header-two__call-icon span {
        color: var(--hauzo-base);
        font-size: 22px;
    }

.main-header-two__call-number {
    margin-left: 10px;
}

    .main-header-two__call-number p {
        font-size: 20px;
        font-weight: 500;
        font-family: var(--hauzo-font-two);
    }

        .main-header-two__call-number p a {
            color: var(--hauzo-white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .main-header-two__call-number p a:hover {
                color: var(--hauzo-base);
            }

.stricky-header.main-menu-two {
    background-color: var(--hauzo-black);
}

.main-menu-two__wrapper {
    position: relative;
    display: block;
    padding: 0 55px;
    z-index: 1;
}

.main-menu-two__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu-two__logo {
    position: relative;
    display: block;
    padding: 11.5px 0;
}

.main-menu-two__main-menu-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__main-menu-box-left {
    position: relative;
    display: block;
}

.main-menu-two__main-menu-box-right {
    position: relative;
    display: block;
    margin-left: 25px;
}

.main-menu-two__search-nav-sidebar-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 42px;
}

.main-menu-two__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 23px;
    color: var(--hauzo-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-two__search:hover {
        color: var(--hauzo-base);
    }

.main-menu-two__side-content-icon {
    position: relative;
    display: block;
}

    .main-menu-two__side-content-icon .navSidebar-button {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background-color: var(--hauzo-base);
        border-radius: 50%;
    }

.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
    padding-top: 35px;
    padding-bottom: 35px;
}

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

    .main-menu-two .main-menu__list > li > a,
    .stricky-header.main-menu-two .main-menu__list > li > a {
        font-weight: 500;
        font-family: var(--hauzo-font);
        color: var(--hauzo-white);
    }

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

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

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

    .main-menu-two .main-menu__list > li.current > a::after,
    .main-menu-two .main-menu__list > li:hover > a::after,
    .stricky-header.main-menu-two .main-menu__list > li.current > a::after,
    .stricky-header.main-menu-two .main-menu__list > li:hover > a::after {
        color: var(--hauzo-white);
    }


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-three__top {
    position: relative;
    display: block;
    padding: 10px 0;
    margin-bottom: 8px;
    z-index: 2;
}

    .main-header-three__top:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: rgba(var(--hauzo-white-rgb), .15);
    }

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

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

.main-header-three__top-text-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__top-text {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--hauzo-white);
    font-weight: 500;
}

    .main-header-three__top-text span {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 16px;
        margin-right: 15px;
    }

    .main-header-three__top-text a {
        font-size: 20px;
        font-weight: 600;
        color: var(--hauzo-base);
        position: relative;
        display: flex;
        align-items: center;
        padding-left: 5px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-header-three__top-text a:hover {
            color: var(--hauzo-white);
        }

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

.main-header-three__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 55px;
}

    .main-header-three__social:before {
        content: "";
        position: absolute;
        top: -3px;
        bottom: -3px;
        right: -26px;
        width: 1px;
        background-color: var(--hauzo-white);
    }

    .main-header-three__social a {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 15px;
        color: var(--hauzo-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .main-header-three__social a:hover {
            color: var(--hauzo-base);
        }

        .main-header-three__social a + a {
            margin-left: 25px;
        }


/* Language Dropdown */

.main-header__language-dropdown {
    position: relative;
    display: block;
}

    .main-header__language-dropdown button {
        border: 0px;
        background: none;
        font-size: 18px;
        color: #fff;
        font-weight: 600;
        padding: 0;
    }

.header-top__flag-icon {
    position: relative;
}

.main-header__language-dropdown .dropdown-toggle::after {
    position: relative;
    content: '\f0d7';
    border: 0px;
    top: 4px;
    line-height: 1em;
    font-size: 15px;
    color: var(--hauzo-white);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
}

.main-header__language-list {
    position: relative;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
    transform: translate(0px, 41px) !important;
}

    .main-header__language-list li {
        position: relative;
        display: block;
    }

        .main-header__language-list li a {
            position: relative;
            display: block;
            padding: 5px 14px;
            font-size: 14px;
            color: var(--hauzo-white);
            -webkit-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            transition: all 300ms ease;
            background-color: var(--hauzo-base);
            font-weight: 500;
        }

            .main-header__language-list li a:hover {
                background-color: var(--hauzo-primary);
            }

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

.main-menu-three__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu-three__logo {
    position: relative;
    display: block;
    padding: 11.5px 0;
}

.main-menu-three__main-menu-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__main-menu-box-left {
    position: relative;
    display: block;
}

.main-menu-three__main-menu-box-right {
    position: relative;
    display: block;
    margin-left: 25px;
}

.main-menu-three__search-nav-sidebar-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.main-menu-three__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 23px;
    color: var(--hauzo-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .main-menu-three__search:hover {
        color: var(--hauzo-base);
    }

.main-menu-three__side-content-icon {
    position: relative;
    display: block;
}

    .main-menu-three__side-content-icon .navSidebar-button {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background-color: var(--hauzo-base);
        border-radius: 50%;
    }

.stricky-header.main-menu-three {
    background-color: var(--hauzo-black);
}

    .main-menu-three .main-menu__list > li,
    .stricky-header.main-menu-three .main-menu__list > li {
        padding-top: 35px;
        padding-bottom: 35px;
    }

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

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

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

        .main-menu-three .main-menu__list > li > a,
        .stricky-header.main-menu-three .main-menu__list > li > a {
            color: var(--hauzo-white);
        }

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


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

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

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

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

    .search-popup__content form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        background-color: #fff;
        border-radius: 0;
        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;
        }

    .search-popup__content .thm-btn {
        padding: 0;
        width: 68px;
        height: 68px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        position: absolute;
        top: 0;
        right: -1px;
        border-radius: 0;
        background-color: var(--hauzo-base);
        border: 0;
    }

        .search-popup__content .thm-btn i {
            height: auto;
            width: auto;
            background-color: transparent;
            border-radius: 50%;
            color: var(--hauzo-white);
            font-size: 26px;
            line-height: inherit;
            text-align: center;
            top: 0;
            margin-right: 0;
            padding-left: 0;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .search-popup__content .thm-btn:hover:before {
            width: 150%;
        }

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    background-color: #7d8359;
    z-index: 2;
}

.main-slider-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 84.4%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    mix-blend-mode: soft-light;
    opacity: .10;
    z-index: -1;
}

.main-slider__img {
    position: absolute;
    top: -92px;
    right: 400px;
}

    .main-slider__img img {
        width: 539px;
    }

.main-slider__left {
    position: relative;
    display: block;
    padding-top: 183px;
}

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

.main-slider__sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hauzo-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--hauzo-font-two);
    font-weight: 700;
    line-height: 14px;
}

.main-slider__title {
    font-size: 52px;
    color: var(--hauzo-white);
    font-weight: 900;
    line-height: 62px;
    margin-top: 5px;
    margin-bottom: 18px;
}

.main-slider__text {
    font-size: 20px;
    font-weight: 500;
    color: var(--hauzo-white);
    line-height: 30px;
}

.main-slider__btn-box {
    position: relative;
    display: block;
    margin-top: 33px;
}


.main-slider__right {
    position: relative;
    display: block;
    padding-top: 115px;
}

.main-slider__form-box {
    position: relative;
    display: block;
    background-color: #4c3f37;
    padding: 21px 30px 30px;
    text-align: center;
}

    .main-slider__form-box h2 {
        font-size: 40px;
        line-height: 40px;
        font-family: var(--hauzo-font-four);
        font-style: italic;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .main-slider__form-box h3 {
        font-size: 24px;
        font-weight: 700;
        line-height: 24px;
    }

.main-slider__form {
    position: relative;
    display: block;
    margin-top: 20px;
}

.main-slider__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

    .main-slider__form-input-box input[type="text"],
    .main-slider__form-input-box input[type="email"],
    .main-slider__form-input-box select[type="time"] {
        height: 45px;
        width: 100%;
        border: 1px solid #3a3d2b;
        background-color: #7d8359;
        color: #ffffff;
        padding-left: 15px;
        padding-right: 15px;
        outline: none;
        display: block;
        border-radius: 0;
        font-weight: 500;
    }

    .main-slider__form-input-box textarea {
        height: 115px;
        width: 100%;
        border: 1px solid #3a3d2b;
        background-color: #7d8359;
        color: #ffffff;
        padding: 15px 15px 15px;
        outline: none;
        border-radius: 0px;
        font-weight: 500;
    }

    .main-slider__form-input-box.text-message-box {
        position: relative;
        display: block;
        height: 115px;
    }

.main-slider__form-btn-box {
    position: relative;
    display: block;
    padding-top: 10px;
}

.main-slider__form-btn {
    border: none;
    font-size: 14px;
    padding: 10px 50px 10px;
    width: 100%;
}

    .main-slider__form-btn:hover:before {
        height: 500%;
    }


#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--hauzo-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--hauzo-base) none repeat scroll 0 0;
    border: 2px solid var(--hauzo-base);
    border-radius: 0;
    color: var(--hauzo-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: var(--hauzo-black) !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid var(--hauzo-black) !important;
    background: var(--hauzo-black) !important;
    color: var(--hauzo-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        top: 7px;
        background: var(--hauzo-white);
        border: none;
    }

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: var(--hauzo-black);
    color: var(--hauzo-white);
    border-color: var(--hauzo-black);
}

#ui-datepicker-div.ui-widget {
    font-family: var(--hauzo-font);
}

select[name="time"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    background: #fff;
    font-size: 15px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
}

    .main-slider-two .swiper-slide {
        position: relative;
        background-color: var(--hauzo-black);
    }

    .main-slider-two .container {
        position: relative;
        padding-top: 225px;
        padding-bottom: 260px;
        z-index: 30;
    }

.image-layer-two {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider-two__shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 34.2%;
    background-color: #101e3e;
    clip-path: polygon(0 0, 100% 0%, 71% 100%, 0% 100%);
    z-index: 2;
}

.main-slider-two__shape-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 370px;
    background: rgb(28, 31, 44);
    background: linear-gradient(0deg, rgba(28, 31, 44, 0.053658963585434205) 17%, rgba(28, 31, 44, 0.4430147058823529) 82%);
    opacity: .70;
    clip-path: polygon(0 0, 100% 0%, 59% 100%, 0% 100%);
    z-index: 2;
}

.main-slider-two__shape-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: color-dodge;
    opacity: .80;
    z-index: 5;
}

    .main-slider-two__shape-3 img {
        width: auto;
    }

.main-slider-two__shape-4 {
    position: absolute;
    top: -11px;
    right: 0;
    mix-blend-mode: color-dodge;
    opacity: .80;
    z-index: 1;
}

    .main-slider-two__shape-4 img {
        width: auto;
    }

.main-slider-two__shape-5 {
    position: absolute;
    bottom: -20px;
    left: 220px;
    z-index: 1;
}

    .main-slider-two__shape-5 img {
        width: auto;
    }

.main-slider-two__content {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-two__title {
    position: relative;
    font-size: 90px;
    color: var(--hauzo-white);
    font-weight: 900;
    line-height: 100px;
    margin-bottom: 22px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__text {
    font-size: 20px;
    color: var(--hauzo-white);
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 53px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn-box {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn:hover {
    color: var(--hauzo-base);
}

.main-slider-two__btn:before {
    background-color: var(--hauzo-white);
}

.main-slider-two__btn:hover span {
    color: var(--hauzo-base);
    border: 2px solid var(--hauzo-base);
}

.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__text,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
    position: relative;
    display: block;
}

    .main-slider-three .swiper-slide {
        position: relative;
        background-color: var(--hauzo-black);
    }

    .main-slider-three .container {
        position: relative;
        padding-top: 262px;
        padding-bottom: 270px;
        z-index: 30;
    }

.image-layer-three {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.main-slider-three__img-1 {
    position: absolute;
    right: 305px;
    top: 205px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

    .main-slider-three__img-1 img {
        width: auto;
    }

.swiper-slide-active .main-slider-three__img-1 {
    opacity: 1;
    transform: translateX(0px);
    visibility: visible;
    transition: all 1500ms ease;
}

.main-slider-three__content {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-three__title {
    position: relative;
    font-size: 65px;
    color: var(--hauzo-white);
    font-weight: 900;
    line-height: 77px;
    margin-bottom: 26px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

    .main-slider-three__title span {
        font-weight: 500;
    }

.main-slider-three__text {
    font-size: 20px;
    color: var(--hauzo-white);
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 53px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn-box {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__text,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}





/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.welcome-one__left {
    position: relative;
    display: block;
    margin-right: 32px;
}

.welcome-one .section-title {
    margin-bottom: 22px;
}

.welcome-one__sub-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 29px;
    color: #3c3c3c;
    margin-bottom: 24px;
}

.welcome-one__text {
    color: #444444;
    font-weight: 500;
}

.welcome-one__points-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 50px;
}

.welcome-one__points-list {
    position: relative;
    display: block;
}

    .welcome-one__points-list + .welcome-one__points-list {
        margin-left: 65px;
    }

.welcome-one__points-box li {
    position: relative;
    display: flex;
    align-items: center;
}

    .welcome-one__points-box li + li {
        margin-top: 9px;
    }

.welcome-one__points-icon {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    top: 3px;
}

    .welcome-one__points-icon span {
        font-size: 20px;
        color: var(--hauzo-base);
    }

.welcome-one__points-text {
    position: relative;
    display: block;
}

    .welcome-one__points-text p {
        font-weight: 700;
        color: var(--hauzo-black);
    }

.welcome-one__btn {
    position: relative;
    display: inline-block;
}

.welcome-one__right {
    position: relative;
    display: block;
    margin-right: 165px;
    margin-top: 75px;
}

.welcome-one__img-box {
    position: relative;
    display: block;
}

.welcome-one__img-1 {
    position: relative;
    display: block;
}

    .welcome-one__img-1 img {
        width: 100%;
        border-radius: var(--hauzo-bdr-radius);
    }

.welcome-one__img-2 {
    position: absolute;
    bottom: 199px;
    right: -265px;
}

    .welcome-one__img-2 img {
        width: auto;
        border-radius: var(--hauzo-bdr-radius);
    }

.welcome-one__certified-service {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
    right: -265px;
    background-color: #3a3d2b;
    border-radius: var(--hauzo-bdr-radius);
    max-width: 346px;
    padding: 44px 18px 47px 39px;
}

.welcome-one__certified-service-icon {
    position: relative;
    display: block;
    top: 10px;
}

    .welcome-one__certified-service-icon img {
        width: auto;
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
        -webkit-transform: scale(1) rotateY(0deg);
        transform: scale(1) rotateY(0deg);
    }

.welcome-one__certified-service:hover .welcome-one__certified-service-icon img {
    -webkit-transform: scale(0.9) rotateY(360deg);
    transform: scale(0.9) rotateY(360deg);
}

.welcome-one__certified-service-content {
    position: relative;
    display: block;
    margin-left: 25px;
}

.welcome-one__certified-service-sub-title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hauzo-white);
    opacity: .60;
    letter-spacing: 0.1em;
    font-family: var(--hauzo-font-two);
}

.welcome-one__certified-service-title {
    font-size: 26px;
    font-weight: 700;
    font-family: var(--hauzo-font-two);
    line-height: 31px;
    color: var(--hauzo-white);
    margin-top: 4px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    background-color: #eff2f5;
    padding: 120px 0 90px;
}

.services-one__top {
    position: relative;
    display: block;
    margin-bottom: 67px;
}

.services-one .section-title {
    margin-bottom: 29px;
}

.services-one__single {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--hauzo-white);
    border-radius: 5px;
    padding: 16.5px 30px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .services-one__single:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: var(--hauzo-primary);
        border-radius: 5px;
        transform: scaleX(0.7) rotateX(20deg);
        opacity: 0;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .services-one__single:hover:before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

.services-one__icon {
    position: relative;
    display: inline-block;
}

    .services-one__icon span {
        position: relative;
        display: inline-block;
        font-size: 68px;
        color: #3a3d2b;
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.services-one__single:hover .services-one__icon span {
    color: var(--hauzo-white);
    transform: scale(.9);
}

.services-one__title {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--hauzo-font);
    line-height: 25px;
    margin-left: 60px;
    position: relative;
}

    .services-one__title:before {
        position: absolute;
        left: -29px;
        height: 62px;
        transform: translateY(-50%);
        top: 50%;
        width: 1px;
        background-color: #b3b3b3;
        content: "";
    }

    .services-one__title a {
        color: #3a3d2b;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.services-one__single:hover .services-one__title a {
    color: var(--hauzo-white);
}

.services-one__btn-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-one__btn {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    color: #ffffff;
    background-color: #3a3d2b;
    position: relative;
    display: flex;
    text-align: center;
    padding: 36px 40px 22px;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .services-one__btn:hover {
        color: var(--hauzo-white);
    }

    .services-one__btn:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: var(--hauzo-primary);
        border-radius: 5px;
        transform: scaleX(0.7) rotateX(20deg);
        opacity: 0;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .services-one__btn:hover:before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .services-one__btn span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 47px;
        width: 47px;
        background-color: #7e855b;
        border-radius: 50%;
        color: var(--hauzo-white);
        font-size: 20px;
        text-align: center;
        top: -1px;
        margin-left: 65px;
        transition: all 0.5s linear;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .services-one__btn:hover span {
        background-color: #ffffff;
        color: #4c3f37;
    }

/*--------------------------------------------------------------
# Additional Services One
--------------------------------------------------------------*/
.additional-services-one {
    position: relative;
    display: block;
    background-color: #7d8359;
    padding: 120px 0 0;
}

.additional-services-one__left {
    position: relative;
    display: block;
}

.additional-services-one .section-title {
    margin-bottom: 29px;
}

.additional-services-one .section-title__tagline {
    font-weight: 800;
}

.additional-services-one .section-title__title {
    color: var(--hauzo-white);
}

.additional-services-one__text {
    color: var(--hauzo-white);
}

.additional-services-one__points-box {
    position: relative;
    display: flex;
    margin-top: 60px;
}

.additional-services-one__points {
    position: relative;
    display: block;
}

    .additional-services-one__points + .additional-services-one__points {
        margin-left: 80px;
    }

    .additional-services-one__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .additional-services-one__points li + li {
            margin-top: 12px;
        }

        .additional-services-one__points li .icon {
            position: relative;
            display: inline-block;
            margin-right: 20px;
        }

            .additional-services-one__points li .icon span {
                font-size: 21px;
                background: rgb(0, 201, 243);
                background: linear-gradient(0deg, rgb(58 61 43) 27%, rgb(58 61 43) 73%);
                -webkit-background-clip: text;
                -moz-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .additional-services-one__points li .text {
            position: relative;
            display: block;
        }

            .additional-services-one__points li .text p {
                font-size: 20px;
                font-weight: 600;
                line-height: 30px;
                color: var(--hauzo-white);
            }

.additional-services-one__right {
    position: relative;
    display: block;
    margin-left: 46px;
    margin-right: -116px;
    margin-top: -48px;
}

.additional-services-one__img {
    position: relative;
    display: block;
    z-index: 1;
}

    .additional-services-one__img:before {
        content: "";
        position: absolute;
        bottom: -50px;
        left: -37px;
        height: 500px;
        width: 500px;
        background-color: rgba(41, 135, 208, .10);
        border-radius: 50%;
        z-index: -1;
    }

    .additional-services-one__img::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: -67px;
        border-style: solid;
        border-width: 2px;
        border-color: rgb(122, 146, 187);
        border-radius: 50%;
        background-color: rgba(217, 4, 41, 0);
        opacity: 0.23;
        width: 559px;
        height: 559px;
        z-index: -1;
    }


    .additional-services-one__img img {
        width: 100%;
    }


/*--------------------------------------------------------------
# Project one
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding-top: 120px;
    z-index: 1;
}

    .project-one:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 75px;
        background-color: #3a3d2b;
        content: "";
        z-index: -1;
    }

.project-one__top {
    position: relative;
    display: block;
    margin-bottom: 62px;
}

.project-one__left {
    position: relative;
    display: block;
}

    .project-one__left .section-title {
        margin-bottom: 0;
    }

    .project-one__left .section-title__title {
        color: var(--hauzo-white);
    }

.project-one__right {
    position: relative;
    display: block;
}

.project-one__btn-box {
    position: relative;
    float: right;
    margin-top: 15px;
}

.project-one__btn:hover {
    color: #ffffff;
}

.project-one__btn::before {
    background-color: #7d8359;
}

.project-one__btn:hover span {
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

    .project-one__bottom .container {
        padding-left: 39px;
        padding-right: 39px;
        max-width: 100%;
    }

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

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--hauzo-bdr-radius);
}

    .project-one__img img {
        width: 100%;
        transform: scale(1.0);
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
    }

.project-one__single:hover .project-one__img img {
    transform: scale(1.05) rotate(1deg);
}

.project-one__img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -5px;
    background-color: #7d8359;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    border-radius: 6px;
    z-index: 1;
}

.project-one__single:hover .project-one__img-bg {
    opacity: .90;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.project-one__button {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
    -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
    transform: perspective(400px) rotateX(20deg) translateX(100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 2;
}

.project-one__single:hover .project-one__button {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
    transform: perspective(400px) rotateX(0deg) translateX(-0%);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.project-one__button a {
    position: relative;
    display: block;
    background-color: var(--hauzo-white);
    width: 60px;
    height: 60px;
    border-radius: 5px;
    color: #3a3d2b;
    font-size: 32px;
    line-height: 60px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

    .project-one__button a + a {
        margin-top: 10px;
    }

    .project-one__button a::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        border-radius: 5px;
        transform: scale(0.0);
        transform-origin: center;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
        background-color: rgb(75 62 54);
        z-index: -1;
    }

    .project-one__button a:hover:before {
        transform: scaleX(1.0);
    }

    .project-one__button a:hover {
        color: var(--hauzo-white);
    }

.project-one__title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 50px 37px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.project-one__single:hover .project-one__title {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.4s;
}

.project-one__title p {
    color: var(--hauzo-white);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}

.project-one__title h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin: 6px 0 0;
}

    .project-one__title h4 a {
        color: var(--hauzo-white);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

/*--------------------------------------------------------------
# Big Text Box
--------------------------------------------------------------*/
.big-text-box {
    position: relative;
    display: block;
    padding: 82px 0 0;
}

.big-text__wrap {
    position: relative;
    display: block;
}

.big-text {
    font-size: 164px;
    line-height: 164px;
    position: relative;
    display: block;
    text-align: center;
    margin-left: -130px;
    margin-right: -360px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(31, 38, 52, .20);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 81px 0 120px;
}

.about-one__left {
    position: relative;
    display: block;
    margin-top: 10px;
}

.about-one__img {
    position: relative;
    display: block;
    margin-right: 35px;
    margin-left: -65px;
}

    .about-one__img img {
        width: 100%;
    }

.about-one__happy-customer {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: var(--hauzo-bdr-radius);
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(58 61 43) 0%, rgb(58 61 43) 57%, rgb(58 61 43) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    padding: 28px 45px 24px;
    margin-top: 55px;
}

.about-one__happy-customer-icon-worker {
    position: relative;
    display: inline-block;
}

    .about-one__happy-customer-icon-worker span {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: var(--hauzo-white);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.about-one__happy-customer:hover .about-one__happy-customer-icon-worker span {
    transform: scale(.9);
}

.about-one__happy-customer .text {
    position: relative;
    display: block;
    margin-left: 26px;
}

.about-one__happy-customer h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: var(--hauzo-white);
}

.about-one__happy-customer .happy-customer-plus {
    margin-left: 1px;
}

.about-one__happy-customer .odometer-formatting-mark {
    display: none;
}

.about-one__right {
    position: relative;
    display: block;
    margin-left: 25px;
    margin-right: 105px;
}

.about-one .section-title {
    margin-bottom: 29px;
}

.about-one__points-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 52px;
}

    .about-one__points-box li {
        position: relative;
        display: block;
        max-width: 257px;
    }

        .about-one__points-box li + li {
            margin-left: 66px;
        }

.about-one__points-list {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points-icon {
    position: relative;
    display: inline-block;
}

    .about-one__points-icon span {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: var(--hauzo-base);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.about-one__points-box li:hover .about-one__points-icon span {
    transform: scale(.9);
}

.about-one__points-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-left: 22px;
}

.about-one__points-text {
    font-size: 17px;
    line-height: 26px;
    margin-top: 6px;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    background-color: #3a3d2b;
    padding: 120px 0 120px;
}

    .testimonial-one .section-title__title {
        color: var(--hauzo-white);
    }

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

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

.testimonial-one__inner {
    position: relative;
    display: block;
    background-color: var(--hauzo-white);
    padding: 41px 38px 42px;
    border-radius: var(--hauzo-bdr-radius);
}

    .testimonial-one__inner:before {
        content: "";
        position: absolute;
        left: 66px;
        bottom: -10px;
        width: 45px;
        height: 10px;
        border-top: 10px solid var(--hauzo-white);
        border-left: 22.5px solid transparent;
        border-right: 22.5px solid transparent;
    }

.testimonial-one__quote {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

    .testimonial-one__quote span {
        font-size: 62px;
        color: var(--hauzo-base);
    }

.testimonial-one__text p {
    color: #494949;
    font-weight: 500;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
    margin-left: 57px;
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 71px;
    border-radius: 50%;
}

    .testimonial-one__client-img img {
        width: 100%;
    }

.testimonial-one__client-content {
    position: relative;
    padding-left: 25px;
    flex: 1;
    top: -4px;
}

    .testimonial-one__client-content h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 18px;
    }

        .testimonial-one__client-content h3 a {
            color: var(--hauzo-white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .testimonial-one__client-content h3 a:hover {
                color: var(--hauzo-base);
            }

    .testimonial-one__client-content span {
        position: relative;
        display: inline-block;
        color: var(--hauzo-base);
        font-size: 16px;
        line-height: 16px;
        font-weight: 500;
    }

.testimonial-one__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 107px;
    left: -399px;
    margin: 0;
}

    .testimonial-one__carousel.owl-theme .owl-nav .owl-next {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: #b6bac3;
        background-color: transparent;
        border: 2px solid #b6bac3;
        font-size: 18px;
        margin: 0;
        text-align: center;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .testimonial-one__carousel.owl-theme .owl-nav .owl-next span {
            font-weight: 900;
        }

    .testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        color: #b6bac3;
        background-color: transparent;
        border: 2px solid #b6bac3;
        font-size: 18px;
        margin: 0;
        text-align: center;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .testimonial-one__carousel.owl-theme .owl-nav .owl-prev span {
            font-weight: 900;
        }

    .testimonial-one__carousel.owl-theme .owl-nav .owl-next {
        margin-left: 5px;
    }

    .testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
        margin-right: 5px;
    }

        .testimonial-one__carousel.owl-theme .owl-nav .owl-next span,
        .testimonial-one__carousel.owl-theme .owl-nav .owl-prev span {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,
        .testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {
            border: 2px solid var(--hauzo-base);
            color: var(--hauzo-base);
        }

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    background-color: #f2f3f7;
    padding: 120px 0 90px;
}

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

.team-one__img-box {
    position: relative;
    display: block;
}

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

    .team-one__img:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgb(125 131 89 / 58%);
        border-radius: 5px;
        width: 0%;
        transform: translateY(100%);
        transition: all 500ms ease;
        z-index: 1;
    }

.team-one__single:hover .team-one__img:before {
    transform: translateY(0);
    width: 100%;
}

.team-one__img > img {
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img > img {
    transform: scale(1.05);
}

.team-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

    .team-one__shape-1 > img {
        width: auto;
    }

.team-one__icon {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 2;
}

    .team-one__icon > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 43px;
        height: 43px;
        background-color: var(--hauzo-white);
        border-radius: 50%;
        font-size: 16px;
        color: #4a4e56;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.team-one__single:hover .team-one__icon > a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.team-one__social-box {
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
}

.team-one__social {
    position: relative;
    display: block;
    background-color: var(--hauzo-white);
    padding-top: 4px;
    padding-bottom: 30px;
    border-radius: 30px;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: top center;
}

.team-one__single:hover .team-one__social {
    transform: scaleY(1.0);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.team-one__social li + li {
    margin-top: 15px;
}

.team-one__social li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4e56;
    font-size: 25px;
}

.team-one__content {
    position: absolute;
    bottom: 16px;
    left: 40px;
    z-index: 2;
}

.team-one__name {
    font-size: 21px;
    font-weight: 700;
    line-height: 31px;
}

    .team-one__name a {
        color: var(--hauzo-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.team-one__single:hover .team-one__name a {
    color: var(--hauzo-base);
}

.team-one__subtitle {
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--hauzo-white);
    letter-spacing: 0.1em;
    font-family: var(--hauzo-font-two);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    background-color: #f2f3f7;
}

.counter-one__points-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 84px 0 189px;
    border-top: 1px solid #d5d5d9;
}

    .counter-one__points-list li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 28px;
    }

.counter-one__points {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one__icon {
    position: relative;
    display: inline-block;
    margin-right: 22px;
    top: 4px;
}

    .counter-one__icon span {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: var(--hauzo-base);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.counter-one__points-list li:hover .counter-one__icon span {
    transform: scale(.9);
}

.counter-one__count-box {
    position: relative;
    display: block;
}

    .counter-one__count-box h3 {
        font-size: 44px;
        font-weight: 900;
        line-height: 44px !important;
        font-family: var(--hauzo-font-two) !important;
    }

        .counter-one__count-box h3 span {
            font-size: 44px;
            font-weight: 900;
            line-height: 44px !important;
            font-family: var(--hauzo-font-two) !important;
        }

    .counter-one__count-box .odometer-formatting-mark {
        display: none;
    }


.counter-one__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--hauzo-black);
}

    .counter-one__text span {
        font-weight: 700;
    }

/*--------------------------------------------------------------
# Request Bar
--------------------------------------------------------------*/
.request-bar {
    position: relative;
    display: block;
    margin-top: -106px;
    z-index: 1;
}

.request-bar__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #142035;
    padding-left: 60px;
    padding-bottom: 59px;
    padding-top: 56px;
    z-index: 1;
    margin-right: -116px;
}

    .request-bar__inner:before {
        position: absolute;
        right: -1000000px;
        top: 0;
        bottom: 0;
        background-color: #7d8359;
        content: "";
        z-index: -1;
        left: 0;
    }

.request-bar__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: -1000px;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: color-dodge;
    opacity: .10;
}

.request-bar__left {
    position: relative;
    display: flex;
    align-items: center;
}

    .request-bar__left .icon {
        position: relative;
        display: inline-block;
    }

        .request-bar__left .icon span {
            font-size: 73px;
            color: #3a3d2b;
        }

.request-bar__content {
    position: relative;
    display: block;
    margin-left: 35px;
}

    .request-bar__content p {
        font-size: 35px;
        font-weight: 300;
        font-family: var(--hauzo-font-two);
        line-height: 45px;
        color: var(--hauzo-white);
    }

    .request-bar__content h3 {
        font-size: 38px;
        font-weight: 700;
        line-height: 48px;
        color: var(--hauzo-white);
    }

.request-bar__right {
    position: relative;
    display: block;
}

.request-bar__btn {
    background-image: none;
    background-color: #4c3f37;
    color: #ffffff;
    padding-top: 19px;
    padding-bottom: 16px;
    padding-left: 34px;
    padding-right: 35px;
}

    .request-bar__btn:before {
        background-color: var(--hauzo-base);
    }

    .request-bar__btn:hover:before {
        background-color: var(--hauzo-base);
    }

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    background-color: #3a3d2b;
    padding: 222px 0 90px;
    margin-top: -102px;
}

.blog-one__left {
    position: relative;
    display: block;
    margin-right: 87px;
    margin-bottom: 30px;
}

.blog-one .section-title {
    margin-bottom: 39px;
}

.blog-one .section-title__tagline {
    color: #858c5f;
}

    .blog-one .section-title__tagline:before {
        background-color: #858c5f;
    }

.blog-one .section-title__title {
    color: var(--hauzo-white);
}

.blog-one__text {
    color: var(--hauzo-white);
}

.blog-one__btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

    .blog-one__btn a {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--hauzo-font-two);
        color: var(--hauzo-white);
        letter-spacing: 0.1em;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .blog-one__btn a:hover {
            color: var(--hauzo-black);
        }

        .blog-one__btn a i {
            font-size: 16px;
            margin-left: 15px;
            top: 1px;
            position: relative;
        }

.blog-one__right {
    position: relative;
    display: block;
}

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

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--hauzo-bdr-radius);
    z-index: 1;
}

    .blog-one__img:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: #888e63;
        opacity: 0.9;
        transform: scale(1, 0);
        transition: transform 500ms ease;
        transform-origin: top center;
        border-radius: var(--hauzo-bdr-radius);
        z-index: 1;
    }

.blog-one__single:hover .blog-one__img:before {
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.blog-one__img img {
    width: 100%;
    border-radius: var(--hauzo-bdr-radius);
    transform: scale(1);
    transition: transform 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
    transform: scale(1.05);
}

.blog-one__icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: top;
    transition: all 1000ms ease;
}

.blog-one__single:hover .blog-one__icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.blog-one__icon a {
    position: relative;
    display: inline-block;
    color: var(--hauzo-white);
    font-size: 30px;
}

.blog-one__content {
    position: relative;
    display: block;
    margin-top: 36px;
}

.blog-one__date {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--hauzo-font-two);
    letter-spacing: 0.1em;
    color: var(--hauzo-white);
}

.blog-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    font-family: var(--hauzo-font-two);
    margin-top: 3px;
    margin-bottom: 8px;
}

    .blog-one__title a {
        color: var(--hauzo-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .blog-one__title a:hover {
            color: #8a906a;
        }

.blog-one__btn-2 {
    position: relative;
    display: inline-block;
    margin-left: 33px;
}

    .blog-one__btn-2:before {
        position: absolute;
        top: 17px;
        bottom: 0;
        left: -33px;
        height: 1px;
        width: 23px;
        background-color: #8a906a;
        content: "";
    }

    .blog-one__btn-2 a {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--hauzo-white);
        font-family: var(--hauzo-font-two);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .blog-one__btn-2 a:hover {
            color: #8a906a;
        }

/*--------------------------------------------------------------
# Coupon Offer
--------------------------------------------------------------*/
.coupon-offer {
    position: relative;
    display: block;
    padding: 120px 0 88px;
}

.coupon-offer__left {
    position: relative;
    display: block;
    margin-right: 54px;
}

.coupon-offer .section-title {
    margin-bottom: 14px;
}

.coupon-offer__right {
    position: relative;
    display: block;
}

.coupon-offer__single {
    position: relative;
    display: block;
    background-color: #0540c8;
    padding: 17px 27px 7px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

    .coupon-offer__single:before {
        position: absolute;
        bottom: 27px;
        left: -14px;
        width: 25px;
        height: 25px;
        background-color: var(--hauzo-white);
        border-radius: 50%;
        content: "";
        z-index: 2;
    }

    .coupon-offer__single:after {
        position: absolute;
        bottom: 27px;
        right: -14px;
        width: 25px;
        height: 25px;
        background-color: var(--hauzo-white);
        border-radius: 50%;
        content: "";
        z-index: -1;
    }

.coupon-offer__single-2 {
    background-color: #d90429;
}

.coupon-offer__shape-1 {
    position: absolute;
    bottom: 37px;
    left: 0;
    right: 0;
    height: 3px;
    background-size: cover;
    background-repeat: repeat-x;
    background-position: bottom center;
    z-index: 1;
}

.discount-amount {
    font-size: 73px;
    font-weight: 700;
    line-height: 83px;
    font-style: italic;
    font-family: var(--hauzo-font-three);
    text-transform: uppercase;
    color: var(--hauzo-white);
}

    .discount-amount .doller-sign {
        font-size: 40px;
        position: relative;
        top: -26px;
    }

    .discount-amount .offer {
        font-size: 45px;
        position: relative;
        top: -23px;
        left: 10px;
    }

.coupon-offer__discount-text {
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    color: var(--hauzo-white);
    font-style: italic;
    font-family: var(--hauzo-font-three);
    margin-left: 19px;
    margin-top: -14px;
    text-transform: uppercase;
}

.coupon-offer__bottom-text {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 29px;
}

    .coupon-offer__bottom-text p {
        font-size: 13px;
        font-weight: 700;
        line-height: 23px;
        color: #929292;
        opacity: .43;
        text-transform: uppercase;
        font-family: var(--hauzo-font-three);
    }

.coupon-offer__bottom-text-2 p {
    color: var(--hauzo-white);
    opacity: .43;
}

.discount-amount .offer-2 {
    color: #242424;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding: 0px 0 57px;
}

.brand-one__title {
    position: relative;
    display: block;
    color: var(--hauzo-base);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 265px;
    width: 100%;
    margin: 0 auto 47px;
}

    .brand-one__title:before {
        position: absolute;
        top: 50%;
        left: -1000000px;
        right: 111%;
        content: "";
        height: 1px;
        background-color: #d5d4d3;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .brand-one__title:after {
        position: absolute;
        top: 50%;
        right: -1000000px;
        left: 111%;
        content: "";
        height: 1px;
        background-color: #d5d4d3;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.brand-one .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .brand-one .swiper-slide img {
        -webkit-transition: 500ms;
        transition: 500ms;
        width: auto;
    }

        .brand-one .swiper-slide img:hover {
            opacity: 0.8;
        }

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: #3a3d2b;
    z-index: 1;
}

.site-footer__top {
    position: relative;
    display: block;
    background-color: #8a906a;
    padding: 24px 0 22px;
    border: 1px solid #8a906a;
    z-index: 1;
}

.site-footer__inner {
    position: relative;
    display: block;
    padding: 0 80px 0;
}

.site-footer__contact-info {
    position: relative;
    display: block;
}

.site-footer__contact-points {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .site-footer__contact-points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .site-footer__contact-points li:before {
            position: absolute;
            top: -25px;
            bottom: -23px;
            right: -50px;
            width: 1px;
            background-color: #8a906a;
            content: "";
        }

        .site-footer__contact-points li:last-child:before {
            display: none;
        }

        .site-footer__contact-points li .icon {
            position: relative;
            display: inline-block;
        }

            .site-footer__contact-points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 37px;
                color: var(--hauzo-base);
                -webkit-transition: all 500ms linear;
                transition: all 500ms linear;
                -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
            }

        .site-footer__contact-points li:hover span {
            transform: scale(.9);
            color: var(--hauzo-white);
        }

        .site-footer__contact-points li .content {
            position: relative;
            display: block;
            margin-left: 27px;
        }

            .site-footer__contact-points li .content h4 {
                font-size: 18px;
                font-weight: 400;
                line-height: 19px;
                color: var(--hauzo-white);
                font-family: var(--hauzo-font);
            }

            .site-footer__contact-points li .content p {
                font-size: 18px;
                font-weight: 400;
                line-height: 28px;
                color: var(--hauzo-white);
                font-family: var(--hauzo-font);
            }

            .site-footer__contact-points li .content a {
                position: relative;
                display: block;
                font-size: 18px;
                font-weight: 400;
                line-height: 28px;
                color: var(--hauzo-white);
                font-family: var(--hauzo-font);
            }

        .site-footer__contact-points li:last-child .content a {
            font-size: 22px;
            font-weight: 500;
            padding-top: 2px;
        }

.site-footer__middle {
    position: relative;
    display: block;
    padding-top: 62px;
    padding-bottom: 33px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-top: 25px;
}

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

.site-footer__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

    .site-footer__social a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        font-size: 16px;
        border: 1px solid #959ba8;
        border-radius: 50%;
        color: #959ba8;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .site-footer__social a:hover {
            border: 1px solid var(--hauzo-base);
            color: var(--hauzo-base);
        }

        .site-footer__social a + a {
            margin-left: 10px;
        }

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

.footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.footer-widget__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 31px;
    color: var(--hauzo-white);
}

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

    .footer-widget__useful-links-list li + li {
        margin-top: 6px;
    }

    .footer-widget__useful-links-list li a {
        position: relative;
        display: inline-block;
        font-size: 17px;
        font-weight: 400;
        color: #bcc1c9;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

        .footer-widget__useful-links-list li a:hover {
            color: var(--hauzo-white);
        }

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 60px;
}

.footer-widget__img-box {
    position: relative;
    display: block;
    margin-left: -35px;
    z-index: 2;
}

    .footer-widget__img-box::before {
        position: absolute;
        bottom: 12px;
        right: 50px;
        width: 265px;
        height: 265px;
        background-color: #070f20;
        border-radius: 50%;
        content: "";
        z-index: 1;
    }

    .footer-widget__img-box::after {
        position: absolute;
        bottom: 3px;
        right: 54px;
        width: 280px;
        height: 280px;
        border: 2px solid #283652;
        border-radius: 50%;
        content: "";
        z-index: -1;
    }

.footer-widget__img {
    position: relative;
    display: block;
    z-index: 1;
}

    .footer-widget__img img {
        width: 100%;
    }

.site-footer__bottom {
    position: relative;
    display: block;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(var(--hauzo-white-rgb), .10);
    padding: 25px 0 32px;
}

.site-footer__bottom-text {
    color: #a0a5b1;
}

    .site-footer__bottom-text a {
        color: #a0a5b1;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .site-footer__bottom-text a:hover {
            color: var(--hauzo-base);
        }

.site-footer__bottom-text-two {
    position: relative;
    display: flex;
    align-items: center;
}

    .site-footer__bottom-text-two:before {
        position: absolute;
        width: 2px;
        height: 15px;
        background-color: #a0a5b1;
        opacity: .80;
        top: 8px;
        left: 115px;
        content: "";
    }

    .site-footer__bottom-text-two li + li {
        margin-left: 18px;
    }

    .site-footer__bottom-text-two li a {
        color: #a0a5b1;
        opacity: .80;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .site-footer__bottom-text-two li a:hover {
            color: var(--hauzo-base);
        }

/*--------------------------------------------------------------
# Services two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding-bottom: 60px;
    margin-top: -70px;
    z-index: 2;
}

.services-two__carousel {
    overflow: hidden;
}

.services-two .owl-carousel .owl-stage-outer {
    border: 1px solid #ebebeb;
    overflow: visible;
}


.services-two__single {
    position: relative;
    display: block;
    padding: 43px 38px 43px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--hauzo-white);
    z-index: 2;
}

.owl-item + .owl-item .services-two__single {
    border-left: 1px solid #ebebeb;
}


.services-two__content {
    position: relative;
    display: block;
    z-index: 2;
}

.services-two__icon {
    position: relative;
    display: inline-block;
}

    .services-two__icon span {
        position: relative;
        display: inline-block;
        font-size: 70px;
        color: var(--hauzo-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

.services-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 6px;
    margin-bottom: 11px;
}

    .services-two__title a {
        color: var(--hauzo-black);
        transition: all 500ms linear;
    }

        .services-two__title a:hover {
            color: var(--hauzo-base);
        }


.services-two__text {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.services-two__btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

    .services-two__btn a {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--hauzo-font-two);
        color: var(--hauzo-base);
        letter-spacing: 0.1em;
        transition: all 500ms linear;
    }

        .services-two__btn a:hover {
            color: var(--hauzo-black);
        }


        .services-two__btn a span {
            margin-left: 10px;
        }

.owl-item:nth-child(even) .services-two__single {
    background-color: #f7fafe;
}

.services-two__carousel.owl-carousel .owl-dots {
    position: absolute;
    left: 0px;
    bottom: -60px;
    right: 0;
    text-align: center;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.services-two__carousel.owl-carousel .owl-dot.active {
    background-color: var(--hauzo-base);
}

.services-two__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

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

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

.about-two__shape-1 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    opacity: 0.05;
}

    .about-two__shape-1 img {
        width: auto;
    }

.about-two__left {
    position: relative;
    display: block;
    margin-right: 65px;
}

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

    .about-two__img img {
        width: 100%;
    }

.about-two__right {
    position: relative;
    display: block;
    margin-right: 30px;
}

.about-two .section-title {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Additional Services Two
--------------------------------------------------------------*/
.additional-services-two {
    position: relative;
    display: block;
    background-color: #07275d;
    padding: 120px 0 38px;
    z-index: 1;
}

.additional-services-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: lighten;
    opacity: .60;
    z-index: -1;
}

.additional-services-two__left {
    position: relative;
    display: block;
}

.additional-services-two .section-title {
    margin-bottom: 24px;
}

.additional-services-two .section-title__title {
    color: var(--hauzo-white);
}

.additional-services-two__text {
    color: var(--hauzo-white);
}

.additional-services-two__points-box {
    position: relative;
    display: flex;
    margin-top: 37px;
}

.additional-services-two__points {
    position: relative;
    display: block;
}

    .additional-services-two__points + .additional-services-two__points {
        margin-left: 160px;
    }

    .additional-services-two__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .additional-services-two__points li + li {
            margin-top: 12px;
        }

        .additional-services-two__points li .icon {
            position: relative;
            margin-right: 20px;
            top: 4px;
        }

            .additional-services-two__points li .icon span {
                font-size: 19px;
                color: #69b0ef;
            }

        .additional-services-two__points li .text {
            position: relative;
            display: block;
        }

            .additional-services-two__points li .text p {
                font-size: 20px;
                font-weight: 600;
                line-height: 30px;
                color: var(--hauzo-white);
            }

.additional-services-two__right {
    position: relative;
    display: block;
    margin-left: -30px;
    margin-right: -135px;
    margin-top: -80px;
}

.additional-services-two__img {
    position: relative;
    display: block;
    z-index: 1;
}

    .additional-services-two__img:before {
        position: absolute;
        bottom: -15px;
        left: 22px;
        content: "";
        border-radius: 50%;
        background-color: rgb(3, 42, 78);
        opacity: 0.561;
        width: 497px;
        height: 497px;
        z-index: -1;
    }

    .additional-services-two__img:after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        border-style: solid;
        border-width: 2px;
        border-color: rgb(122, 146, 187);
        border-radius: 50%;
        background-color: rgba(1, 59, 111, 0);
        opacity: 0.27;
        width: 539px;
        height: 539px;
        z-index: -1;
    }

    .additional-services-two__img img {
        width: 100%;
    }

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    display: block;
    background-color: #eceff5;
    padding: 120px 0 127px;
}

.why-choose-one__left {
    position: relative;
    display: block;
}

.why-choose-one__img-box {
    position: relative;
    display: block;
}

.why-choose-one__img {
    position: relative;
    display: block;
    border-radius: 10px;
}

    .why-choose-one__img img {
        width: 100%;
        border-radius: 10px;
    }

.why-choose-one__trusted {
    position: absolute;
    bottom: -30px;
    right: -45px;
    background-color: var(--hauzo-base);
    border-radius: 5px;
    text-align: center;
    max-width: 185px;
    width: 100%;
    padding: 33px 30px 37px;
}

.why-choose-one__trusted-icon {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

    .why-choose-one__trusted-icon span {
        position: relative;
        display: inline-block;
        font-size: 60px;
        color: var(--hauzo-white);
    }

.why-choose-one__trusted-content {
    position: relative;
    display: block;
}

    .why-choose-one__trusted-content h3 {
        font-size: 21px;
        font-weight: 700;
        color: var(--hauzo-white);
        line-height: 21px;
    }

.why-choose-one__count {
    font-family: var(--hauzo-font-two) !important;
}

.why-choose-one__trusted-content .odometer-formatting-mark {
    display: none;
}

.why-choose-one__right {
    position: relative;
    display: block;
    margin-left: 70px;
}

    .why-choose-one__right .section-title {
        margin-bottom: 29px;
    }

.why-choose-one__text {
    color: #333333;
    font-weight: 500;
}

.why-choose-one__points {
    position: relative;
    display: block;
    margin-top: 35px;
}

    .why-choose-one__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .why-choose-one__points li + li {
            margin-top: 18px;
        }

        .why-choose-one__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .why-choose-one__points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 18px;
                color: var(--hauzo-base);
            }

        .why-choose-one__points li .text {
            margin-left: 20px;
        }

            .why-choose-one__points li .text p {
                font-size: 20px;
                color: var(--hauzo-black);
                font-weight: 600;
            }

/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/
.counter-two {
    position: relative;
    display: block;
    background-color: #eceff5;
}

    .counter-two .counter-one__points-list {
        padding: 84px 0 70px;
    }

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    position: relative;
    display: block;
    background-color: #0b1930;
    padding: 120px 0 120px;
}

.project-two__top {
    position: relative;
    display: block;
    margin-bottom: 49px;
}

.project-two__top-left {
    position: relative;
    display: block;
}

    .project-two__top-left .section-title {
        margin-bottom: 0;
    }

    .project-two__top-left .section-title__title {
        color: var(--hauzo-white);
    }

.project-two__top-right {
    position: relative;
    display: block;
    margin-left: 245px;
    margin-top: 10px;
}

.project-two__top-text {
    color: var(--hauzo-white);
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    margin-top: 0;
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    background-color: #eff2f5;
    padding: 120px 0 112px;
}

.contact-one__left {
    position: relative;
    display: block;
    margin-right: 100px;
}

    .contact-one__left .section-title {
        margin-bottom: 29px;
    }

.contact-one__text {
    color: #444444;
}

.contact-one__phone {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 33px;
    margin-bottom: 30px;
}

.contact-one__phone-img {
    position: relative;
    display: block;
    width: 70px;
}

    .contact-one__phone-img img {
        width: 100%;
        border-radius: 50%;
    }

.contact-one__phone-content {
    margin-left: 30px;
}

    .contact-one__phone-content p {
        color: #444444;
        font-weight: 600;
    }

    .contact-one__phone-content h4 {
        font-size: 22px;
        line-height: 22px;
        font-family: var(--hauzo-font);
        margin-top: 2px;
        font-weight: 600;
    }

        .contact-one__phone-content h4 a {
            color: var(--hauzo-primary);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .contact-one__phone-content h4 a:hover {
                color: var(--hauzo-base);
            }

.contact-one__time {
    color: #444444;
}

.contact-one__address {
    position: relative;
    display: block;
    margin-top: 20px;
}

    .contact-one__address h4 {
        font-size: 18px;
        color: #444444;
        font-weight: 600;
        font-family: var(--hauzo-font);
    }

    .contact-one__address p {
        color: #444444;
    }

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

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

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

    .contact-one__input-box input[type="text"],
    .contact-one__input-box input[type="email"] {
        height: 60px;
        width: 100%;
        background-color: var(--hauzo-white);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 18px;
        color: #444444;
        display: block;
        border: 1px solid #dbdcdd;
        border-radius: 5px;
    }

    .contact-one__input-box textarea {
        font-size: 18px;
        color: #444444;
        height: 200px;
        width: 100%;
        background-color: var(--hauzo-white);
        padding: 18px 30px 30px;
        border: 1px solid #dbdcdd;
        border-radius: 5px;
        outline: none;
        margin-bottom: 0px;
    }

.contact-one__btn {
    border: none;
    width: 100%;
}

    .contact-one__btn:hover:before {
        height: 800%;
    }

.contact-one__input-box.text-message-box {
    height: 200px;
}

/*--------------------------------------------------------------
# Welcome Two
--------------------------------------------------------------*/
.welcome-two {
    position: relative;
    display: block;
    background-color: #eff0fc;
}

.welcome-two__inner {
    position: relative;
    display: block;
    margin-top: -120px;
    z-index: 2;
}

.welcome-two__left {
    position: relative;
    display: block;
    margin-right: -30px;
}

.welcome-two__content {
    position: relative;
    display: block;
    background-color: var(--hauzo-primary);
    padding: 85px 100px 93px;
    overflow: hidden;
    z-index: 1;
}

.welcome-two__title {
    font-size: 45px;
    color: var(--hauzo-white);
    font-weight: 900;
    line-height: 50px;
    margin-bottom: 27px;
}

.welcome-two__text-1 {
    font-size: 22px;
    color: var(--hauzo-white);
    padding-bottom: 24px;
}

.welcome-two__text-2 {
    color: var(--hauzo-white);
}

.welcome-two__director-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 47px;
}

.welcome-two__director {
    position: relative;
    display: flex;
    align-items: center;
}

.welcome-two__director-img {
    position: relative;
    display: block;
    width: 79px;
}

    .welcome-two__director-img img {
        width: 100%;
        border-radius: 50%;
    }

.welcome-two__director-content {
    margin-left: 30px;
}

.welcome-two__director-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--hauzo-white);
    line-height: 28px;
}

.welcome-two__director-sub-title {
    font-size: 16px;
    color: var(--hauzo-white);
    line-height: 16px;
}

.welcome-two__director-sign {
    margin-left: 55px;
}

    .welcome-two__director-sign img {
        width: auto;
    }

.welcome-two__shape-1 {
    position: absolute;
    top: -240px;
    left: -240px;
    height: 740px;
    width: 740px;
    border-radius: 50%;
    background-color: rgba(9, 24, 54, .10);
    z-index: -1;
}

.welcome-two__shape-2 {
    position: absolute;
    top: -455px;
    left: -190px;
    height: 970px;
    width: 970px;
    border-radius: 50%;
    background-color: rgba(9, 24, 54, .10);
    z-index: -1;
}

.welcome-two__right {
    position: relative;
    display: block;
    margin-right: -375px;
    min-height: 615px;
    z-index: 1;
}

.welcome-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

/*--------------------------------------------------------------
# Repairing One
--------------------------------------------------------------*/
.repairing-one {
    position: relative;
    display: block;
    background-color: #091836;
    padding: 120px 0 236px;
}

.repairing-one__left {
    position: relative;
    display: block;
    margin-top: -12px;
}

.repairing-one__left-content {
    position: relative;
    display: block;
}

.repairing-one__left-sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--hauzo-base);
    font-family: var(--hauzo-font-two);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 14px;
    padding-left: 40px;
}

    .repairing-one__left-sub-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        height: 2px;
        width: 30px;
        background-color: var(--hauzo-base);
    }

.repairing-one__fix-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 45px;
    margin-bottom: 49px;
}

.repairing-one__fix-icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .repairing-one__fix-icon span {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: var(--hauzo-primary);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.repairing-one__fix-box:hover .repairing-one__fix-icon span {
    transform: scale(.9);
}

.repairing-one__fix-content {
    position: relative;
    margin-left: 45px;
}

    .repairing-one__fix-content:before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 2px;
        left: -25px;
        width: 1px;
        background-color: rgba(var(--hauzo-white-rgb), .50);
    }

.repairing-one__fix-text {
    font-size: 20px;
    color: var(--hauzo-white);
    font-weight: 500;
    line-height: 30px;
}

.repairing-one__btn-boxes {
    position: relative;
    display: flex;
    align-items: center;
}

.repairing-one__btn-1 {
    font-size: 14px;
    padding: 10px 40px 10px;
}

    .repairing-one__btn-1:hover {
        color: var(--hauzo-base);
    }

    .repairing-one__btn-1::before {
        background-color: var(--hauzo-white);
    }

.repairing-one__btn-2 {
    background-image: none;
    border: 2px solid #556584;
    padding: 8px 40px 8px;
    font-size: 14px;
    margin-left: 20px;
}

    .repairing-one__btn-2:hover {
        border: 2px solid var(--hauzo-white);
        color: var(--hauzo-base);
    }

    .repairing-one__btn-2::before {
        background-color: var(--hauzo-white);
    }

.repairing-one__right {
    position: relative;
    display: block;
}

    .repairing-one__right .section-title {
        margin-bottom: 25px;
    }

    .repairing-one__right .section-title__title {
        color: var(--hauzo-white);
    }

.repairing-one__text-1 {
    font-size: 20px;
    color: var(--hauzo-white);
    opacity: .80;
}

.repairing-one__read-more {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #50a7ff;
    margin-top: 9px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .repairing-one__read-more:hover {
        color: var(--hauzo-white);
    }

    .repairing-one__read-more:before {
        content: "";
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #50a7ff;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .repairing-one__read-more:hover:before {
        background-color: var(--hauzo-white);
    }

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    margin-top: -140px;
}

.feature-one__left {
    position: relative;
    display: block;
}

    .feature-one__left .row {
        --bs-gutter-x: 0px;
    }

.feature-one__single {
    position: relative;
    display: block;
    background-color: var(--hauzo-primary);
    padding: 52px 40px 25px;
}

.feature-one__single--two {
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
}

.feature-one__icon {
    position: relative;
    display: flex;
}

    .feature-one__icon span {
        position: relative;
        display: inline-block;
        font-size: 55px;
        color: var(--hauzo-white);
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.feature-one__single:hover .feature-one__icon span {
    transform: scale(.9);
}

.feature-one__title {
    font-size: 24px;
    color: var(--hauzo-white);
    font-weight: 700;
    font-family: var(--hauzo-font);
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 29px;
}

.feature-one__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--hauzo-white-rgb), .45);
    padding-top: 21px;
}

.feature-one__read-more {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--hauzo-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--hauzo-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .feature-one__read-more i {
        font-weight: 900;
        padding-left: 10px;
    }

    .feature-one__read-more:hover {
        color: var(--hauzo-base);
    }

.feature-one__single--two .feature-one__read-more:hover {
    color: var(--hauzo-white);
}

.feature-one__right {
    position: relative;
    display: block;
}

.feature-one__offer-box {
    position: relative;
    display: block;
    background-color: #3698e0;
    padding-top: 43px;
    padding-bottom: 29px;
    padding-right: 55px;
    overflow: hidden;
    z-index: 1;
}

.feature-one__offer-img {
    position: absolute;
    left: -125px;
    top: 10px;
}

    .feature-one__offer-img img {
        width: auto;
    }

.feature-one__offer-box-contnet {
    position: relative;
    display: block;
    float: right;
    z-index: 1;
}

.feature-one__offer-top-title {
    font-size: 35px;
    color: var(--hauzo-white);
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 2px;
}

.feature-one__offer-percent {
    font-size: 65px;
    color: var(--hauzo-white);
    font-weight: 900;
    line-height: 65px;
}

    .feature-one__offer-percent span {
        font-size: 40px;
        font-family: var(--hauzo-font);
        font-weight: 700;
        text-transform: uppercase;
    }

.feature-one__offer-bottom-title {
    font-size: 30px;
    color: var(--hauzo-white);
    font-weight: 700;
    line-height: 30px;
    margin-top: -3px;
}

.feature-one__offer-btn-box {
    position: relative;
    display: block;
    margin-top: 34px;
}

    .feature-one__offer-btn-box a {
        position: relative;
        display: inline-block;
        align-items: center;
        background-color: var(--hauzo-black);
        font-size: 14px;
        color: var(--hauzo-white);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        font-family: var(--hauzo-font-two);
        padding-left: 35px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom-left-radius: 23px;
        border-top-left-radius: 23px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

        .feature-one__offer-btn-box a:hover {
            background-color: var(--hauzo-base);
        }

        .feature-one__offer-btn-box a i {
            font-weight: 700;
            padding-left: 10px;
        }

        .feature-one__offer-btn-box a:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: -1000px;
            background-color: var(--hauzo-black);
            border-bottom-left-radius: 23px;
            border-top-left-radius: 23px;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: -1;
        }

        .feature-one__offer-btn-box a:hover:before {
            background-color: var(--hauzo-base);
        }

/*--------------------------------------------------------------
# Counter Three
--------------------------------------------------------------*/
.counter-three {
    position: relative;
    display: block;
}

.counter-three__points-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 91px 0 70px;
    border-bottom: 1px solid #d6d6d6;
}

    .counter-three__points-list li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 28px;
    }

.counter-three__points {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-three__icon {
    position: relative;
    display: inline-block;
    margin-right: 22px;
    top: 4px;
}

    .counter-three__icon span {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: #148fe3;
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.counter-three__points-list li:hover .counter-three__icon span {
    transform: scale(.9);
}

.counter-three__count-box {
    position: relative;
    display: block;
}

    .counter-three__count-box h3 {
        font-size: 45px;
        font-weight: 900;
        line-height: 45px !important;
        font-family: var(--hauzo-font-two) !important;
        margin-bottom: 6px;
    }

        .counter-three__count-box h3 span {
            font-size: 45px;
            font-weight: 900;
            line-height: 45px !important;
            font-family: var(--hauzo-font-two) !important;
        }

    .counter-three__count-box .odometer-formatting-mark {
        display: none;
    }

.counter-three__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: var(--hauzo-black);
}

/*--------------------------------------------------------------
# Price One
--------------------------------------------------------------*/
.price-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.price-one__img-1 {
    position: absolute;
    bottom: 0;
    right: 40px;
}

    .price-one__img-1 img {
        width: auto;
    }

.price-one__get-deal {
    position: absolute;
    top: 45px;
    right: 200px;
    background-color: var(--hauzo-primary);
    height: 165px;
    width: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border-bottom-left-radius: 0;
}

    .price-one__get-deal p {
        font-size: 18px;
        color: var(--hauzo-white);
        font-weight: 600;
        line-height: 22px;
    }

    .price-one__get-deal a {
        position: relative;
        display: block;
        font-size: 18px;
        color: var(--hauzo-white);
        font-weight: 500;
    }

        .price-one__get-deal a:before {
            content: "";
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 1px;
            background-color: var(--hauzo-white);
        }

.price-one__left {
    position: relative;
    display: block;
    margin-right: 75px;
}

.price-one__single {
    position: relative;
    display: block;
    background-color: #f0f1f9;
    padding: 0 40px 30px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
}

.price-one__price-box {
    position: relative;
    display: inline-block;
    background-color: var(--hauzo-base);
    padding: 12px 35px 11px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.price-one__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--hauzo-white);
    line-height: 32px;
}

    .price-one__price span {
        font-size: 20px;
    }

.price-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 32px;
    margin-bottom: 21px;
}

.price-one__list {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

    .price-one__list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .price-one__list li + li {
            margin-top: 12px;
        }

        .price-one__list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .price-one__list li .icon i {
                font-size: 15px;
                color: #0c31bd;
            }

        .price-one__list li .text {
            margin-left: 15px;
        }

            .price-one__list li .text p {
                font-size: 18px;
                color: #0e2a4e;
                font-weight: 500;
            }

.price-one__arrow {
    position: relative;
    display: block;
}

    .price-one__arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: var(--hauzo-black);
        height: 40px;
        width: 40px;
        margin: 0 auto;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

        .price-one__arrow a:hover {
            color: var(--hauzo-base);
        }

        .price-one__arrow a:before {
            content: "";
            position: absolute;
            top: 0;
            left: 12px;
            height: 40px;
            width: 40px;
            background-color: #6caaf7;
            border-radius: 50%;
            z-index: -1;
        }

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
    position: relative;
    display: block;
    padding: 97px 0 0;
    z-index: 1;
}

.team-two__top {
    position: relative;
    display: block;
}

.team-two__left {
    position: relative;
    display: block;
}

.team-two__right {
    position: relative;
    display: block;
    margin-left: 77px;
    margin-top: 2px;
}

.team-two__bottom {
    position: relative;
    display: block;
}

    .team-two__bottom .row {
        --bs-gutter-x: 0px;
    }

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

.team-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .team-two__img:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgba(2, 24, 57, .90);
        width: 0%;
        transform: translateY(100%);
        transition: all 500ms ease;
        z-index: 1;
    }

.team-two__single:hover .team-two__img:before {
    transform: translateY(0);
    width: 100%;
}

.team-two__img img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-two__single:hover .team-two__img img {
    transform: scale(1.05);
}

.team-two__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-top: 23px;
    padding-bottom: 18px;
    z-index: 2;
}

.team-two__name {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
}

    .team-two__name a {
        color: var(--hauzo-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .team-two__name a:hover {
            color: var(--hauzo-base);
        }

.team-two__sub-title {
    color: #444444;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
    padding: 213px 0 200px;
    margin-top: -123px;
}

/*--------------------------------------------------------------
# Request Bar Two
--------------------------------------------------------------*/
.request-bar-two {
    position: relative;
    display: block;
    margin-top: -80px;
    z-index: 1;
}

.request-bar-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #e7e9f8;
    padding-left: 60px;
    padding-bottom: 59px;
    padding-top: 56px;
    z-index: 1;
    margin-right: -116px;
}

    .request-bar-two__inner:before {
        position: absolute;
        right: -1000000px;
        top: 0;
        bottom: 0;
        background-color: #e7e9f8;
        content: "";
        z-index: -1;
        left: 0;
    }

.request-bar-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: -1000px;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.request-bar-two__left {
    position: relative;
    display: flex;
    align-items: center;
}

    .request-bar-two__left .icon {
        position: relative;
        display: inline-block;
    }

        .request-bar-two__left .icon span {
            font-size: 63px;
            color: var(--hauzo-primary);
        }

.request-bar-two__content {
    position: relative;
    display: block;
    margin-left: 35px;
}

    .request-bar-two__content p {
        font-size: 35px;
        font-weight: 300;
        font-family: var(--hauzo-font-two);
        line-height: 45px;
        color: #0e2a4e;
    }

    .request-bar-two__content h3 {
        font-size: 38px;
        font-weight: 700;
        line-height: 48px;
        color: var(--hauzo-black);
    }

.request-bar-two__right {
    position: relative;
    display: block;
}

.request-bar-two__btn {
    background-image: none;
    background-color: #f59613;
    color: var(--hauzo-black);
    padding-top: 19px;
    padding-bottom: 16px;
    padding-left: 34px;
    padding-right: 35px;
}

    .request-bar-two__btn:before {
        background-color: var(--hauzo-base);
    }

    .request-bar-two__btn:hover:before {
        background-color: var(--hauzo-base);
    }

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
    margin-top: -128px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 112px 0 87px;
    background-color: #08468d;
    overflow: hidden;
    z-index: 1;
}

.page-header__img {
    position: absolute;
    bottom: -381px;
    right: -144px;
}

    .page-header__img img {
        width: auto;
        -webkit-animation-name: float-bob-y;
        animation-name: float-bob-y;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

.page-header__inner {
    position: relative;
    display: block;
    z-index: 15;
}

    .page-header__inner h2 {
        font-size: 55px;
        color: var(--hauzo-white);
        font-weight: 900;
        line-height: 65px;
        margin-bottom: 6px;
    }

.thm-breadcrumb {
    position: relative;
    display: block;
}

    .thm-breadcrumb li {
        position: relative;
        display: inline-block;
        font-size: 18px;
        color: var(--hauzo-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .thm-breadcrumb li + li {
            margin-left: 5px;
        }

        .thm-breadcrumb li a {
            position: relative;
            display: inline-block;
            color: var(--hauzo-white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .thm-breadcrumb li:hover a {
            color: var(--hauzo-base);
        }


/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-page__left {
    position: relative;
    display: block;
}

.blog-page__single {
    position: relative;
    display: block;
}

    .blog-page__single + .blog-page__single {
        margin-top: 80px;
    }

.blog-page__img {
    position: relative;
    display: block;
}

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

.blog-page__date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--hauzo-white);
    text-align: center;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .blog-page__date p {
        font-size: 32px;
        color: var(--hauzo-black);
        font-weight: 600;
        line-height: 32px;
        font-family: var(--hauzo-font-two);
    }

    .blog-page__date span {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 18px;
        color: var(--hauzo-black);
        font-weight: 500;
    }

.blog-page__content {
    position: relative;
    display: block;
    margin-top: 17px;
}

.blog-page__meta {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 19px;
}

    .blog-page__meta li {
        position: relative;
        display: block;
    }

        .blog-page__meta li:before {
            content: "";
            position: absolute;
            top: 7px;
            bottom: 7px;
            left: -22px;
            background-color: #b8b8b8;
            width: 1px;
            transform: rotate(15deg);
        }

        .blog-page__meta li:first-child:before {
            display: none;
        }

        .blog-page__meta li + li {
            margin-left: 45px;
        }

        .blog-page__meta li a {
            position: relative;
            display: flex;
            align-items: center;
            font-size: 20px;
            color: #b8b8b8;
            font-weight: 600;
        }

.blog-page__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-top: 31px;
    margin-bottom: 18px;
}

    .blog-page__title a {
        color: var(--hauzo-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .blog-page__title a:hover {
            color: var(--hauzo-base);
        }

.blog-page__btn-box {
    position: relative;
    display: block;
    margin-top: 37px;
}

.blog-page__btn {
    font-size: 14px;
    padding: 6px 25px 6px;
    border-radius: 2px;
}

.blog-page__pagination {
    position: relative;
    display: block;
    padding: 50px 0 0px;
}

    .blog-page__pagination .pg-pagination li {
        display: inline-block;
        margin-right: 7px;
    }

        .blog-page__pagination .pg-pagination li:last-child {
            margin-right: 0;
        }

        .blog-page__pagination .pg-pagination li a {
            height: 45px;
            width: 45px;
            text-align: center;
            line-height: 45px;
            display: inline-block;
            color: var(--hauzo-black);
            background-color: #fff;
            font-weight: 600;
            font-size: 18px;
            border: 1px solid #d4d4d4;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .blog-page__pagination .pg-pagination li a:hover {
                background-color: var(--hauzo-base);
                color: var(--hauzo-white);
                border: 1px solid var(--hauzo-base);
            }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar {
    position: relative;
    display: block;
    margin-left: 30px;
}

.sidebar__title {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 26px;
    font-weight: 700;
}

    .sidebar__title:before {
        content: "";
        position: absolute;
        bottom: 4px;
        right: -55px;
        width: 35px;
        height: 2px;
        background-color: #c5c9cc;
    }

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

    .sidebar__search-form input[type="search"] {
        display: block;
        border: none;
        outline: none;
        background-color: #f0f0f0;
        color: #909090;
        font-size: 18px;
        font-weight: 500;
        padding-left: 20px;
        height: 50px;
        width: 100%;
        padding-right: 80px;
        border-radius: 5px;
    }

    .sidebar__search-form ::-webkit-input-placeholder {
        color: #909090;
        opacity: 1;
    }

    .sidebar__search-form :-ms-input-placeholder {
        color: #909090;
        opacity: 1;
    }

    .sidebar__search-form ::-ms-input-placeholder {
        color: #909090;
        opacity: 1;
    }

    .sidebar__search-form ::placeholder {
        color: #909090;
        opacity: 1;
    }

    .sidebar__search-form :-ms-input-placeholder {
        color: #909090;
    }

    .sidebar__search-form ::-ms-input-placeholder {
        color: #909090;
    }

    .sidebar__search-form button[type="submit"] {
        background-color: transparent;
        color: #4c4c4c;
        font-size: 19px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 55px;
        outline: none;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
    }

.sidebar__category {
    position: relative;
    display: block;
    margin-top: 45px;
    margin-bottom: 37px;
    z-index: 1;
}

    .sidebar__category .sidebar__title {
        margin-bottom: 11px;
    }

.sidebar__category-list {
    margin: 0;
}

    .sidebar__category-list li a {
        color: var(--hauzo-gray);
        font-size: 18px;
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        display: block;
        background: none;
        padding: 5px 0 7px;
        font-weight: 500;
        border-bottom: 1px solid #ddd;
    }

    .sidebar__category-list li:hover a {
        color: var(--hauzo-black);
    }

    .sidebar__category-list li:last-child a {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .sidebar__category-list li a span {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        color: #d3d3d3;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 16px;
    }

    .sidebar__category-list li:hover a span {
        color: var(--hauzo-black);
    }

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

    .sidebar__post .sidebar__title {
        margin-left: 0px;
    }

.sidebar__post-list {
    margin: 0;
}

    .sidebar__post-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #e1e1e1;
        padding-bottom: 19px;
        margin-bottom: 19px;
    }

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

.sidebar__post-image {
    margin-right: 25px;
}

    .sidebar__post-image > img {
        width: 70px;
    }

.sidebar__post-content {
    position: relative;
    display: block;
    top: 1px;
}

    .sidebar__post-content h3 {
        font-size: 17px;
        margin: 0;
        line-height: 20px;
        letter-spacing: 0;
        font-weight: 500;
        margin-bottom: 3px;
    }

        .sidebar__post-content h3 a {
            color: #444444;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .sidebar__post-content h3 a:hover {
                color: var(--hauzo-black);
            }

    .sidebar__post-content p {
        font-size: 16px;
        color: var(--hauzo-black);
        font-weight: 500;
    }

.sidebar__tags {
    position: relative;
    display: block;
    margin-top: 45px;
    z-index: 1;
}

.sidebar__tags-list {
    margin-top: -10px;
}

    .sidebar__tags-list a {
        font-size: 16px;
        color: var(--hauzo-gray);
        border: 1px solid #e4e4e4;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        display: inline-block;
        padding: 4px 20px 4px;
        margin-left: 5px;
        font-weight: 400;
    }

        .sidebar__tags-list a + a {
            margin-left: 5px;
            margin-top: 10px;
        }

        .sidebar__tags-list a:hover {
            color: var(--hauzo-white);
            background: var(--hauzo-primary);
            border: 1px solid var(--hauzo-primary);
        }

/*--------------------------------------------------------------
# Blog Grid
--------------------------------------------------------------*/
.blog-grid {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

    .blog-grid .blog-page__single {
        margin-bottom: 80px;
    }

    .blog-grid .blog-page__pagination {
        padding: 0px 0 0px;
    }

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-detals__top {
    position: relative;
    display: block;
}

.blog-details__img {
    position: relative;
    display: block;
}

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

.blog-details__date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--hauzo-white);
    text-align: center;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .blog-details__date p {
        font-size: 32px;
        color: var(--hauzo-black);
        font-weight: 600;
        line-height: 32px;
        font-family: var(--hauzo-font-two);
    }

    .blog-details__date span {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 18px;
        color: var(--hauzo-black);
        font-weight: 500;
    }

.blog-details__meta-box {
    position: relative;
    display: block;
    margin-top: 18px;
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 19px;
}

    .blog-details__meta li {
        position: relative;
        display: block;
    }

        .blog-details__meta li:before {
            content: "";
            position: absolute;
            top: 7px;
            bottom: 7px;
            left: -22px;
            background-color: #b8b8b8;
            width: 1px;
            transform: rotate(15deg);
        }

        .blog-details__meta li:first-child:before {
            display: none;
        }

        .blog-details__meta li + li {
            margin-left: 45px;
        }

        .blog-details__meta li a {
            position: relative;
            display: flex;
            align-items: center;
            font-size: 20px;
            color: #b8b8b8;
            font-weight: 600;
        }

.blog-detals__content-box {
    position: relative;
    display: block;
    margin-top: 31px;
}

.blog-details__title-1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 11px;
}

.blog-details__text-1 {
    color: #444444;
}

.blog-detals__two-colum-box {
    position: relative;
    display: block;
    margin-top: 34px;
}

.blog-detals__two-colum-box-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 16px;
}

.blog-detals__two-colum-text {
    position: relative;
    display: flex;
    align-items: center;
}

    .blog-detals__two-colum-text li {
        color: #444444;
    }

        .blog-detals__two-colum-text li + li {
            margin-left: 55px;
        }

.blog-details__text-2 {
    color: #444444;
    padding-top: 42px;
}

    .blog-details__text-2 a {
        color: var(--hauzo-base);
        display: inline-block;
        text-decoration: underline;
    }

.comment-one-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.comment-one__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 26px;
}

.comment-one {
    position: relative;
    display: block;
    border: 1px solid #eeeeee;
}

.comment-one__single {
    position: relative;
    display: flex;
    border-bottom: 1px solid #eeeeee;
    padding: 25px 25px 23px;
}

.comment-one__image {
    position: relative;
    display: block;
    max-width: 70px;
    width: 100%;
}

    .comment-one__image img {
        width: 100%;
    }

.comment-one__content {
    margin-left: 30px;
    margin-top: -2px;
}

    .comment-one__content h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 18px;
    }

    .comment-one__content p {
        color: #444444;
        line-height: 23px;
        padding-top: 8px;
        padding-bottom: 12px;
    }

    .comment-one__content h4 {
        font-size: 16px;
        color: #7c7c7c;
        font-weight: 400;
        font-family: var(--hauzo-font);
        line-height: 16px;
    }

        .comment-one__content h4 a {
            color: var(--hauzo-base);
            position: relative;
            display: inline-block;
            padding-left: 5px;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .comment-one__content h4 a:hover {
                color: var(--hauzo-primary);
            }

.comment-one__single--four {
    padding-left: 125px;
}

.comment-one__single.border-none {
    border-bottom: 0;
}

.comment-form {
    position: relative;
    display: block;
    margin-top: 52px;
}

.comment-one__form {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    padding: 50px 35px 40px;
    border: 1px solid #eeeeee;
}

.comment-form__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 26px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .comment-form__input-box input[type="text"],
    .comment-form__input-box input[type="email"] {
        height: 45px;
        width: 100%;
        border: 1px solid #eeeeee;
        background-color: var(--hauzo-white);
        padding-left: 20px;
        padding-right: 20px;
        outline: none;
        font-size: 17px;
        color: var(--hauzo-gray);
        display: block;
        font-weight: 400;
    }

    .comment-form__input-box textarea {
        font-size: 17px;
        color: var(--hauzo-gray);
        height: 174px;
        width: 100%;
        border: 1px solid #eeeeee;
        background-color: var(--hauzo-white);
        padding: 15px 20px 15px;
        outline: none;
        margin-bottom: 0px;
        font-weight: 400;
    }

.comment-form__btn {
    border: none;
}

.comment-form__input-box.text-message-box {
    height: 175px;
}

/*--------------------------------------------------------------
# About Company
--------------------------------------------------------------*/
.about-company {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-company__top {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.about-company__left {
    position: relative;
    display: block;
    margin-right: 30px;
}

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

    .about-company__img img {
        width: 100%;
        border-radius: 10px;
    }

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

    .about-company__right .section-title {
        margin-bottom: 20px;
    }

.about-company__text-1 {
    font-size: 20px;
    font-weight: 500;
    color: var(--hauzo-black);
}

.about-company__text-2 {
    padding-top: 5px;
    padding-bottom: 27px;
    color: #444444;
}

.about-company__text-3 {
    color: #444444;
}

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

.about-company__bottom-left {
    position: relative;
    display: block;
    margin-right: 30px;
}

.about-company__bottom-img {
    position: relative;
    display: block;
}

    .about-company__bottom-img img {
        width: 100%;
        border-radius: 10px;
    }

.about-company__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 55px;
    margin-left: 15px;
}

.about-company__text-4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hauzo-black);
    position: relative;
    display: block;
    max-width: 465px;
}

.about-company__sign {
    position: relative;
    display: block;
    margin-left: 45px;
}

    .about-company__sign img {
        width: auto;
    }

/*--------------------------------------------------------------
# Company History
--------------------------------------------------------------*/
.company-history {
    position: relative;
    display: block;
}

.company-history__inner {
    position: relative;
    display: block;
}

.company-history__border {
    position: absolute;
    top: 210px;
    left: 57px;
    height: 636px;
    width: 1px;
    background-color: rgb(210, 210, 210);
}

.company-history__list {
    position: relative;
    display: block;
    border-top: 1px solid #e0e0e0;
    padding: 110px 0 90px;
}

    .company-history__list li {
        position: relative;
        display: block;
        padding-left: 170px;
    }

        .company-history__list li + li {
            margin-top: 60px;
        }

.company-history__year {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 110px;
    background-color: var(--hauzo-base);
    border-radius: 50%;
    top: 9px;
    left: 0;
}

    .company-history__year p {
        font-size: 32px;
        color: var(--hauzo-white);
        font-weight: 600;
        line-height: 32px;
    }

.company-history__content {
    position: relative;
    display: block;
}

.company-history__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 44px;
    margin-bottom: 9px;
}

.company-history__text {
    color: #444444;
}

.company-history__img-boxes {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 62px;
}

.company-history__img-one {
    position: relative;
    display: block;
    max-width: 400px;
    margin-bottom: 30px;
}

    .company-history__img-one img {
        width: 100%;
        border-radius: 10px;
    }

.company-history__img-two {
    position: relative;
    display: block;
    max-width: 400px;
    margin-left: 30px;
    margin-bottom: 30px;
}

    .company-history__img-two img {
        width: 100%;
        border-radius: 10px;
    }

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    background-color: #eff2f5;
    padding: 120px 0 114px;
}

    .services-page .section-title {
        margin-bottom: 26px;
    }

    .services-page .section-title__tagline {
        margin-left: 0;
    }

        .services-page .section-title__tagline:before {
            left: -50px;
        }

        .services-page .section-title__tagline:after {
            position: absolute;
            right: -50px;
            top: 7px;
            width: 30px;
            height: 2px;
            background-color: var(--hauzo-base);
            content: "";
        }

.services-page__text-1 {
    color: #444444;
    text-align: center;
    padding-bottom: 52px;
}

.services-page__single {
    position: relative;
    display: block;
    background-color: var(--hauzo-white);
    border-radius: 5px;
    padding: 20px 30px 34px;
    margin-bottom: 30px;
}

.services-page__top {
    position: relative;
    display: flex;
    align-items: center;
}

.services-page__icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .services-page__icon span {
        font-size: 70px;
        color: var(--hauzo-black);
        position: relative;
        display: inline-block;
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

.services-page__single:hover .services-page__icon span {
    transform: scale(.9);
}

.services-page__title {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    margin-left: 60px;
}

    .services-page__title:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -30px;
        width: 1px;
        background-color: #b3b3b3;
    }

    .services-page__title a {
        color: var(--hauzo-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .services-page__title a:hover {
            color: var(--hauzo-base);
        }

.services-page__text-2 {
    padding-top: 21px;
    padding-bottom: 18px;
}

.services-page__read-more {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--hauzo-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--hauzo-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .services-page__read-more i {
        padding-left: 13px;
    }

    .services-page__read-more:hover {
        color: var(--hauzo-black);
    }

.services-page__bottom {
    position: relative;
    display: block;
    padding-top: 79px;
}

.services-page__bottom-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 24px;
}

.services-page__bottom-text-1 {
    font-size: 20px;
    color: #242424;
    padding-bottom: 35px;
}

.services-page__bottom-text-2 {
    font-size: 22px;
    color: #242424;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Plumbing Installation
--------------------------------------------------------------*/
.plumbing-installation {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.plumbing-installation__left {
    position: relative;
    display: block;
    margin-left: 200px;
    margin-right: 25px;
}

.plumbing-installation__img-box {
    position: relative;
    display: block;
}

.plumbing-installation__img-one {
    position: relative;
    display: block;
}

    .plumbing-installation__img-one img {
        width: 100%;
    }

.plumbing-installation__img-two {
    position: absolute;
    bottom: 0;
    left: -315px;
}

    .plumbing-installation__img-two img {
        width: auto;
    }

.plumbing-installation__right {
    position: relative;
    display: block;
    margin-left: 45px;
}

    .plumbing-installation__right .section-title {
        margin-bottom: 19px;
    }

.plumbing-installation__text-1 {
    color: #444444;
}

.plumbing-installation__points {
    position: relative;
    display: block;
    margin-top: 22px;
    margin-bottom: 20px;
}

    .plumbing-installation__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .plumbing-installation__points li + li {
            margin-top: 5px;
        }

        .plumbing-installation__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .plumbing-installation__points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 20px;
                color: var(--hauzo-base);
            }

        .plumbing-installation__points li .text {
            margin-left: 20px;
        }

            .plumbing-installation__points li .text p {
                font-size: 20px;
                color: var(--hauzo-black);
                font-weight: 500;
            }

/*--------------------------------------------------------------
# About Quality
--------------------------------------------------------------*/
.about-quality {
    position: relative;
    display: block;
    background-color: #f8f8fa;
}

.about-quality__left {
    position: relative;
    display: block;
    margin-right: 50px;
    margin-left: -375px;
}

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

    .about-quality__img img {
        width: 100%;
    }

.about-quality__right {
    position: relative;
    display: block;
    margin-left: 20px;
    padding-top: 120px;
}

    .about-quality__right .section-title {
        margin-bottom: 19px;
    }

.about-quality__text-2 {
    padding-top: 22px;
    padding-bottom: 35px;
}

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

    .about-quality__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .about-quality__points li + li {
            margin-top: 11px;
        }

        .about-quality__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 16px;
            width: 16px;
            color: var(--hauzo-base);
            border-radius: 50%;
            border: 2px solid var(--hauzo-base);
            font-size: 10px;
        }

        .about-quality__points li .text {
            margin-left: 20px;
        }

            .about-quality__points li .text p {
                font-size: 20px;
                color: #444444;
                font-weight: 500;
            }

/*--------------------------------------------------------------
# Video Gallery
--------------------------------------------------------------*/
.video-gallery {
    position: relative;
    display: block;
    padding: 120px 0 111px;
}

.video-gallery__left {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-top: -11px;
}

.video-gallery__title-one {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 18px;
}

.video-gallery__text-1 {
    padding-bottom: 32px;
}

.video-gallery__img-boxes {
    position: relative;
    display: block;
}

    .video-gallery__img-boxes .row {
        --bs-gutter-x: 15px;
    }

.video-gallery__img-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

    .video-gallery__img-single img {
        width: 100%;
    }

.video-gallery__video-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.video-gallery__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    font-size: 20px;
    color: var(--hauzo-white);
    background-color: #dcd6d3;
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

    .video-gallery__video-icon:hover {
        background-color: var(--hauzo-black);
        color: var(--hauzo-white);
    }

    .video-gallery__video-icon:before {
        position: absolute;
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        background-color: var(--hauzo-base);
        content: "";
        border-radius: 50%;
        z-index: -1;
    }

    .video-gallery__video-link .ripple,
    .video-gallery__video-icon .ripple:before,
    .video-gallery__video-icon .ripple:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 57px;
        height: 57px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -ms-box-shadow: 0 0 0 0 rgba(var(--hauzo-base-rgb), 0.6);
        -o-box-shadow: 0 0 0 0 rgba(var(--hauzo-base-rgb), 0.6);
        -webkit-box-shadow: 0 0 0 0 rgba(var(--hauzo-base-rgb), 0.6);
        box-shadow: 0 0 0 0 rgba(var(--hauzo-base-rgb), 0.6);
        -webkit-animation: ripple 3s infinite;
        animation: ripple 3s infinite;
        border-radius: 50%;
    }

    .video-gallery__video-icon .ripple:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        content: "";
        position: absolute;
    }

    .video-gallery__video-icon .ripple:after {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        content: "";
        position: absolute;
    }


.video-gallery__service {
    position: relative;
    display: block;
    padding-top: 39px;
}

.video-gallery__service-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 18px;
}

.video-gallery__service-points-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 24px;
}

.video-gallery__service-points {
    position: relative;
    display: block;
    float: left;
}

    .video-gallery__service-points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .video-gallery__service-points li + li {
            margin-top: 8px;
        }

        .video-gallery__service-points li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .video-gallery__service-points li .icon i {
                position: relative;
                display: inline-block;
                font-size: 15px;
                color: var(--hauzo-base);
            }

        .video-gallery__service-points li .text {
            margin-left: 20px;
        }

            .video-gallery__service-points li .text p {
                color: #242424;
                font-weight: 700;
                font-family: var(--hauzo-font-two);
            }

.video-gallery__service-points--2 {
    margin-left: 115px;
}

.video-gallery__right {
    position: relative;
    display: block;
}

.video-gallery__right-sidebar {
    position: relative;
    display: block;
}

.video-gallery__right-content {
    position: relative;
    display: block;
}

.video-gallery__right-content-img {
    position: relative;
    display: block;
}

    .video-gallery__right-content-img img {
        width: 100%;
    }

    .video-gallery__right-content-img::before {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        height: 85px;
        background-color: var(--hauzo-base);
        clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
        z-index: 2;
    }

    .video-gallery__right-content-img::after {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        height: 65px;
        background-color: var(--hauzo-black);
        clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
        z-index: 2;
    }

.video-gallery__right-content-title {
    position: relative;
    display: block;
    background-color: var(--hauzo-black);
    padding-top: 18px;
    padding-left: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

    .video-gallery__right-content-title h3 {
        font-size: 30px;
        color: var(--hauzo-white);
        font-weight: 700;
        line-height: 32px;
    }

        .video-gallery__right-content-title h3 span {
            font-size: 24px;
            font-weight: 400;
            line-height: 24px;
        }

    .video-gallery__right-content-title h2 {
        font-size: 32px;
        color: var(--hauzo-white);
        font-weight: 700;
        line-height: 32px;
        margin-top: 12px;
    }

.video-gallery__right-content-btn-box {
    position: relative;
    display: block;
    margin-top: 25px;
    float: right;
}

.video-gallery__right-content-btn {
    padding-left: 30px;
    padding-right: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

    .video-gallery__right-content-btn:hover {
        color: var(--hauzo-base);
    }

        .video-gallery__right-content-btn:hover span {
            color: var(--hauzo-base);
            border: 2px solid var(--hauzo-base);
        }

    .video-gallery__right-content-btn::before {
        background-color: var(--hauzo-white);
    }

.video-gallery__right-sidebar-download {
    position: relative;
    display: block;
    margin-top: 57px;
}

    .video-gallery__right-sidebar-download h3 {
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        margin-bottom: 25px;
    }

.video-gallery__download-btn {
    padding-left: 15px;
    padding-right: 15px;
    text-transform: capitalize;
    font-family: var(--hauzo-font);
    font-size: 20px;
    font-weight: 600;
}

    .video-gallery__download-btn span {
        transform: rotate(88deg);
    }

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.service-details__left {
    position: relative;
    display: block;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__page-links {
    position: relative;
    display: block;
    background-color: #092242;
    padding: 25px 30px 30px;
    border-radius: 8px;
}

.service-details__title {
    position: relative;
    display: inline-block;
    margin-bottom: 9px;
}

    .service-details__title:before {
        content: "";
        position: absolute;
        top: 18px;
        right: -40px;
        width: 20px;
        height: 2px;
        background-color: var(--hauzo-white);
    }

    .service-details__title h3 {
        font-size: 28px;
        color: var(--hauzo-white);
        font-weight: 700;
        font-family: var(--hauzo-font);
        line-height: 28px;
    }

.service-details__page-links-list {
    position: relative;
    display: block;
}

    .service-details__page-links-list li {
        position: relative;
        display: block;
    }

        .service-details__page-links-list li a {
            font-size: 18px;
            color: var(--hauzo-white);
            font-weight: 600;
            position: relative;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(var(--hauzo-white-rgb), .20);
            padding: 8px 0 10px;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .service-details__page-links-list li:hover a {
            color: #30a4fe;
        }

        .service-details__page-links-list li.active a {
            color: #30a4fe;
        }

.service-details__right {
    position: relative;
    display: block;
    margin-left: 30px;
}

.service-details__content-box {
    position: relative;
    display: block;
}

.service-details__img-box {
    position: relative;
    display: block;
}

    .service-details__img-box img {
        width: 100%;
        border-radius: 5px;
    }

.service-details__content {
    position: relative;
    display: block;
    margin-top: 61px;
}

.service-details__title-2 {
    font-size: 35px;
    font-weight: 900;
    line-height: 35px;
    margin-bottom: 14px;
}

.service-details__text-1 {
    color: #444444;
}

.service-details__text-2 {
    color: #444444;
    padding-top: 27px;
}

.service-details__feature {
    position: relative;
    display: block;
    padding-top: 56px;
}

.service-details__feature-left {
    position: relative;
    display: block;
    margin-top: -2px;
}

.service-details__feature-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 16px;
}

.service-details__feature-text {
    color: #444444;
}

.service-details__feature-list {
    position: relative;
    display: block;
    margin-top: 15px;
}

    .service-details__feature-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .service-details__feature-list li + li {
            margin-top: 6px;
        }

        .service-details__feature-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 16px;
            width: 16px;
            border: 1px solid #757779;
            border-radius: 50%;
            color: #a6cde7;
            font-size: 10px;
        }

        .service-details__feature-list li .text {
            margin-left: 20px;
        }

            .service-details__feature-list li .text p {
                color: #444444;
                font-weight: 600;
            }

.service-details__feature-righ {
    position: relative;
    display: block;
}

.service-details__feature-img {
    position: relative;
    display: block;
}

    .service-details__feature-img img {
        width: 100%;
        border-radius: 5px;
    }

.service-details__feature-two {
    position: relative;
    display: block;
    margin-top: 53px;
}

    .service-details__feature-two .row {
        --bs-gutter-x: 0px;
    }

.service-details__feature-two-single {
    position: relative;
    display: block;
    border: 1px solid #e9e9e9;
    padding: 26px 20px 23px;
    background-color: var(--hauzo-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .service-details__feature-two-single:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(245, 245, 245, .50);
        visibility: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scaleY(0) translateZ(100px);
        transform: scaleY(0) translateZ(100px);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
        z-index: -1;
    }

    .service-details__feature-two-single:hover:before {
        visibility: visible;
        -webkit-transform: scaleY(1) translateZ(0px);
        transform: scaleY(1) translateZ(0px);
    }

.service-details__feature-two-single-inner {
    position: relative;
    display: flex;
}

.service-details__feature-two-icon {
    position: relative;
    display: flex;
}

    .service-details__feature-two-icon span {
        position: relative;
        display: inline-block;
        font-size: 60px;
        color: var(--hauzo-base);
    }

.service-details__feature-two-content {
    margin-left: 15px;
}

.service-details__feature-two-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--hauzo-font);
    line-height: 20px;
    margin-bottom: 10px;
}

.service-details__feature-two-text {
    font-size: 17px;
    color: #051d3e;
    line-height: 27px;
}

.service-details__feature-two-single.border-left-none {
    border-left: 0;
}

.service-details__faq {
    position: relative;
    display: block;
    margin-top: 48px;
}

    .service-details__faq h2 {
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        margin-bottom: 30px;
    }

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border-radius: 0;
    border: 1px solid #d4d4d4;
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 11px 20px 11px;
    padding-left: 55px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

    .faq-one-accrodion .accrodion-title h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        color: #242424;
        font-family: var(--hauzo-font);
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.faq-one-accrodion .accrodion + .accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    color: var(--hauzo-black);
    position: absolute;
    top: 50%;
    left: -45px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 55px 17px;
    padding-right: 40px;
    margin-top: -3px;
}

    .faq-one-accrodion .accrodion-content p {
        margin: 0;
        color: #444444;
        font-size: 17px;
    }

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 120px 0 112px;
}

.project-details__left {
    position: relative;
    display: block;
    margin-top: -8px;
}

.project-details__description {
    position: relative;
    display: block;
}

.project-details__description-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 50px;
    margin-bottom: 19px;
}

.project-details__description-text {
    color: #444444;
    padding-bottom: 27px;
}

.project-details__description-text-2 {
    color: #444444;
}

.project-details__challenge {
    position: relative;
    display: block;
    margin-top: 34px;
    margin-bottom: 35px;
}

.project-details__challenge-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 13px;
}

.project-details__challenge-text {
    color: #444444;
    padding-bottom: 27px;
}

.project-details__challenge-text-2 {
    color: #444444;
}

.project-details__quote {
    position: relative;
    display: block;
}

.project-details__quote-icon {
    position: relative;
    display: block;
}

    .project-details__quote-icon i {
        font-size: 35px;
        color: var(--hauzo-base);
    }

.project-details__quote-text {
    color: #6e6e6e;
    font-style: italic;
}

.project-details__client-name {
    font-size: 18px;
    color: var(--hauzo-base);
    font-weight: 600;
}

.project-details__final-view {
    position: relative;
    display: block;
    margin-top: 39px;
}

.project-details__final-view-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 13px;
}

.project-details__final-view-text {
    color: #444444;
}

.project-details__right {
    position: relative;
    display: block;
}

.project-details__img-boxes {
    position: relative;
    display: block;
}

.project-details__img-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

    .project-details__img-single.marb-0 {
        margin-bottom: 0;
    }

    .project-details__img-single img {
        width: 100%;
    }

.project-details__img-inner {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

    .project-details__img-inner img {
        width: 100%;
    }

/*--------------------------------------------------------------
# Project Page 01
--------------------------------------------------------------*/
.project-page-01 {
    position: relative;
    display: block;
    padding: 120px 00 112px;
}

    .project-page-01 .container {
        max-width: 1875px;
    }

    .project-page-01 .section-title {
        margin-bottom: 39px;
    }

    .project-page-01 .section-title__tagline {
        margin-left: 0;
    }

        .project-page-01 .section-title__tagline:before {
            left: -35px;
            width: 20px;
        }

        .project-page-01 .section-title__tagline:after {
            position: absolute;
            right: -35px;
            top: 7px;
            width: 20px;
            height: 2px;
            background-color: var(--hauzo-base);
            content: "";
        }

.project-page-01__filter-box {
    position: relative;
    display: block;
    margin-bottom: 52px;
}

.project-page-01__filter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .project-page-01__filter.style1 li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .project-page-01__filter.style1 li + li {
            margin-left: 40px;
        }

        .project-page-01__filter.style1 li .filter-text {
            position: relative;
            display: inline-block;
            color: var(--hauzo-black);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 1;
        }

            .project-page-01__filter.style1 li .filter-text:before {
                position: absolute;
                bottom: 4px;
                left: 0;
                right: 0;
                content: "";
                opacity: 0;
                height: 1px;
                background-color: var(--hauzo-base);
                transition: all 0.4s ease;
            }

        .project-page-01__filter.style1 li:hover .filter-text:before {
            opacity: 1;
        }

        .project-page-01__filter.style1 li:hover .filter-text,
        .project-page-01__filter.style1 li.active .filter-text {
            color: var(--hauzo-base);
        }

            .project-page-01__filter.style1 li.active .filter-text:before {
                opacity: 1;
            }

.project-page-01 .project-one__single {
    margin-bottom: 30px;
}

.project-page-01__load-more {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 29px;
}

    .project-page-01__load-more a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--hauzo-black);
        font-weight: 600;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .project-page-01__load-more a i {
            position: relative;
            display: inline-block;
            font-size: 14px;
            top: 2px;
            padding-left: 10px;
        }

        .project-page-01__load-more a:hover {
            color: var(--hauzo-base);
        }

/*--------------------------------------------------------------
# Project Page 02
--------------------------------------------------------------*/
.project-page-02 {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

    .project-page-02 .section-title {
        margin-bottom: 16px;
    }

    .project-page-02 .section-title__tagline {
        margin-left: 0;
    }

        .project-page-02 .section-title__tagline:before {
            left: -35px;
            width: 20px;
        }

        .project-page-02 .section-title__tagline:after {
            position: absolute;
            right: -35px;
            top: 7px;
            width: 20px;
            height: 2px;
            background-color: var(--hauzo-base);
            content: "";
        }

.project-page-02__top-text {
    text-align: center;
    padding-bottom: 52px;
}

.project-page-02__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-page-02__img-box {
    position: relative;
    display: block;
}

.project-page-02__img {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

    .project-page-02__img:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 8px;
        background-color: var(--hauzo-base);
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scaleY(0) translateZ(100px);
        transform: scaleY(0) translateZ(100px);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
        z-index: 1;
    }

.project-page-02__single:hover .project-page-02__img:before {
    opacity: .90;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.project-page-02__img img {
    width: 100%;
    border-radius: 8px;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.project-page-02__single:hover .project-page-02__img img {
    transform: scale(1.05) rotate(1deg);
}

.project-page-02__title {
    position: absolute;
    bottom: 28px;
    left: 30px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.project-page-02__single:hover .project-page-02__title {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.4s;
}

.project-page-02__title h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--hauzo-font);
    line-height: 20px;
    margin-bottom: 4px;
}

    .project-page-02__title h4 a {
        color: var(--hauzo-white);
    }

.project-page-02__title p {
    font-size: 20px;
    color: var(--hauzo-white);
    font-weight: 400;
    line-height: 20px;
}

.project-page-02__arrow {
    position: absolute;
    top: 25px;
    right: 35px;
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.project-page-02__single:hover .project-page-02__arrow {
    transform: scale(1);
    transition-delay: 500ms;
}

.project-page-02__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    background-color: var(--hauzo-white);
    border-radius: 50%;
    font-size: 20px;
    color: var(--hauzo-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .project-page-02__arrow a:hover {
        background-color: var(--hauzo-black);
        color: var(--hauzo-white);
    }

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
    position: relative;
    display: block;
}

.team-page__inner {
    position: relative;
    display: block;
    border-bottom: 1px solid #e2e2e2;
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
    position: relative;
    display: block;
    background-color: #f2f2f7;
    padding: 120px 0 60px;
}

.testimonials-page__sec-title {
    position: relative;
    display: block;
}

    .testimonials-page__sec-title .section-title {
        margin-bottom: 0;
    }

.testimonials-page .testimonial-one__single {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.testimonials-page .testimonial-one__inner {
    border: 1px solid #e7e7e7;
}

    .testimonials-page .testimonial-one__inner:before {
        display: none;
    }

.testimonials-page .testimonial-one__client-content h3 a {
    color: var(--hauzo-black);
}

    .testimonials-page .testimonial-one__client-content h3 a:hover {
        color: var(--hauzo-base);
    }

.testimonial-page__shape-1 {
    position: absolute;
    left: 65px;
    bottom: -18px;
}

    .testimonial-page__shape-1 img {
        width: auto;
    }

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

    .contact-page .section-title {
        margin-bottom: 52px;
    }

    .contact-page .section-title__text {
        color: #666666;
        font-weight: 400;
        padding-top: 19px;
    }

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

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

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .contact-page__input-box input[type="text"],
    .contact-page__input-box input[type="email"] {
        height: 50px;
        width: 100%;
        background-color: #fcfcfe;
        padding-left: 20px;
        padding-right: 20px;
        outline: none;
        font-size: 18px;
        color: #444444;
        display: block;
        border: 1px solid #dbdcdd;
        border-radius: 5px;
    }

    .contact-page__input-box textarea {
        font-size: 18px;
        color: #444444;
        height: 220px;
        width: 100%;
        background-color: #fcfcfe;
        padding: 18px 30px 30px;
        border: 1px solid #dbdcdd;
        border-radius: 5px;
        outline: none;
        margin-bottom: 0px;
    }

.contact-page__btn-box {
    position: relative;
    display: block;
    padding-top: 20px;
}

.contact-page__btn {
    border: none;
}

.contact-page__input-box.text-message-box {
    height: 220px;
}

.contact-page__right {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-left: 70px;
}

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

.contact-page__content-title {
    position: relative;
    display: inline-block;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 41px;
}

    .contact-page__content-title:before {
        content: "";
        position: absolute;
        bottom: -13px;
        left: 0;
        height: 2px;
        width: 50px;
        background-color: var(--hauzo-primary);
    }

.contact-page__text {
    color: #444444;
}

.contact-page__email {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--hauzo-font);
    margin-top: 19px;
}

    .contact-page__email a {
        color: #444444;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .contact-page__email a:hover {
            color: var(--hauzo-base);
        }

.contact-page__call-box {
    position: relative;
    display: block;
    border-top: 1px solid #cbcdd2;
    padding-top: 32px;
    margin-top: 39px;
}

.contact-page__call-sub-title {
    font-size: 24px;
    color: var(--hauzo-black);
    font-weight: 500;
    line-height: 24px;
}

.contact-page__call-number {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 19px;
}

    .contact-page__call-number a {
        color: var(--hauzo-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .contact-page__call-number a:hover {
            color: var(--hauzo-base);
        }

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
    background-color: #ebebeb;
}

.google-map__two {
    position: relative;
    display: block;
    border: none;
    height: 460px;
    width: 100%;
    mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 104px;
}

    .faq-page .section-title {
        margin-bottom: 52px;
    }

    .faq-page .section-title__text {
        padding-top: 10px;
        color: #444444;
    }

.faq-page__search {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.faq-page__search-form {
    position: relative;
}

    .faq-page__search-form input[type="search"] {
        display: block;
        border: 1px solid #e0e0e0;
        outline: none;
        background-color: transparent;
        color: #444444;
        font-size: 18px;
        font-weight: 400;
        padding-left: 25px;
        height: 60px;
        width: 100%;
        padding-right: 55px;
        border-radius: 5px;
    }

    .faq-page__search-form button[type="submit"] {
        background-color: transparent;
        color: #e0e0e0;
        font-size: 19px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 45px;
        outline: none;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
    }

.faq-page__left {
    position: relative;
    display: block;
}

.faq-page .faq-one-accrodion .accrodion {
    border: 0;
}

.faq-page .faq-one-accrodion .accrodion-title h4 {
    font-size: 22px;
    color: #111e37;
    font-weight: 700;
}

.faq-page .faq-one-accrodion .accrodion-content {
    padding: 0px 55px 13px;
    margin-top: 0;
}

.faq-page__right {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Ask Question
--------------------------------------------------------------*/
.ask-question {
    position: relative;
    display: block;
    background-color: #edf1f4;
    padding: 109px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.ask-question__img {
    position: absolute;
    top: 65px;
    right: 0;
    mix-blend-mode: darken;
    z-index: -1;
}

    .ask-question__img img {
        width: auto;
    }

.ask-question__inner {
    position: relative;
    display: block;
}

.ask-question__title {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    padding-bottom: 46px;
}

.ask-question__form {
    position: relative;
    display: block;
    margin-right: 100px;
}

.ask-question__input-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

    .ask-question__input-box input[type="text"],
    .ask-question__input-box input[type="email"] {
        height: 65px;
        width: 100%;
        border: 0;
        border-bottom: 2px solid #e3e3e3;
        background-color: transparent;
        padding: 0;
        outline: none;
        font-size: 18px;
        color: #444444;
        display: block;
        font-weight: 400;
    }

    .ask-question__input-box textarea {
        font-size: 18px;
        color: #444444;
        height: 150px;
        width: 100%;
        border: 0;
        background-color: transparent;
        padding: 0;
        outline: none;
        font-weight: 400;
    }

.ask-question__btn-box {
    position: relative;
    display: block;
    padding-top: 7px;
}

.ask-question__btn {
    border: none;
    font-size: 14px;
    padding: 10px 30px 10px;
}

.ask-question__input-box.text-message-box {
    height: 150px;
    padding-top: 17px;
    border-bottom: 2px solid #e3e3e3;
}

/*--------------------------------------------------------------
# coupon Offter Two
--------------------------------------------------------------*/
.coupon-offer-two {
    position: relative;
    display: block;
}

.coupon-offer-two__inner {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    border-bottom: 1px solid #d8d8d8;
}

    .coupon-offer-two__inner .section-title {
        margin-bottom: 52px;
    }

    .coupon-offer-two__inner .section-title__text {
        color: #444444;
        padding-top: 19px;
    }

.coupon-offer__single-3 {
    background-color: #093368;
}

/*--------------------------------------------------------------
# Additional Services Three
--------------------------------------------------------------*/
.additional-services-three {
    position: relative;
    display: block;
    background-color: #eceef2;
    overflow: hidden;
    padding: 120px 0 90px;
}

    .additional-services-three .section-title {
        margin-bottom: 52px;
    }

.additional-services-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.additional-services-three__img {
    position: relative;
    display: block;
    background-color: var(--hauzo-black);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .additional-services-three__img img {
        width: 100%;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.additional-services-three__single:hover .additional-services-three__img img {
    transform: scale(1.05);
    opacity: .50;
}

.additional-services-three__content {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--hauzo-white);
    padding: 25px 0 20px;
}

    .additional-services-three__content h4 {
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
        margin-bottom: 13px;
    }

    .additional-services-three__content h3 {
        font-size: 35px;
        font-weight: 600;
        line-height: 35px;
    }

        .additional-services-three__content h3 span {
            font-size: 28px;
        }

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
    position: relative;
    display: block;
    background-color: #f2f5f8;
    padding: 120px 0 120px;
}

.about-four__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.about-four__img-box {
    position: relative;
    display: block;
}

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

    .about-four__img img {
        width: 100%;
        border-radius: 8px;
    }

.about-four__experience {
    position: absolute;
    bottom: -30px;
    right: -25px;
    background-color: var(--hauzo-base);
    text-align: center;
    padding: 23px 30px 31px;
    border-radius: 8px;
}

    .about-four__experience h3 {
        font-size: 60px;
        color: var(--hauzo-white);
        font-weight: 700;
        font-family: var(--hauzo-font);
        line-height: 60px;
        margin-bottom: 9px;
    }

    .about-four__experience p {
        font-size: 18px;
        font-weight: 600;
        color: var(--hauzo-white);
        line-height: 21px;
    }

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

    .about-four__right .section-title {
        margin-bottom: 24px;
    }

.about-four__text-1 {
    font-size: 20px;
    color: #242424;
    font-weight: 500;
}

.about-four__text-2 {
    color: #444444;
    padding-top: 28px;
    padding-bottom: 33px;
}

.about-four__counter {
    position: relative;
    display: flex;
    align-items: center;
}

    .about-four__counter li {
        position: relative;
        display: block;
    }

        .about-four__counter li + li {
            margin-left: 115px;
        }

.about-four__counter-inner {
    position: relative;
    display: flex;
}

.about-four__counter-icon {
    position: relative;
    display: block;
}

    .about-four__counter-icon span {
        position: relative;
        display: inline-block;
        font-size: 50px;
        color: var(--hauzo-base);
    }

.about-four__counter-count-box {
    margin-left: 20px;
}

    .about-four__counter-count-box h3 {
        font-size: 34px;
        font-weight: 700;
        font-family: var(--hauzo-font) !important;
        line-height: 34px !important;
    }

.about-four__counter-plus {
    font-size: 34px;
    font-weight: 700;
    font-family: var(--hauzo-font);
    line-height: 34px;
}

.about-four__counter-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--hauzo-black);
    line-height: 18px;
}

.about-four__counter .odometer-formatting-mark {
    display: none;
}

.about-four__counter li:last-child .about-four__counter-icon {
    top: 7px;
}

.about-four__btn-contact-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 48px;
}

.about-four__btn-box {
    position: relative;
    display: block;
}

.about-four__btn {
    background-color: #162b62;
    background-image: none;
}

.about-four__contact-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 85px;
}

.about-four__contact-icon {
    position: relative;
    display: block;
    top: 5px;
}

    .about-four__contact-icon img {
        width: auto;
    }

.about-four__contact-content {
    margin-left: 20px;
}

    .about-four__contact-content h3 {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        font-family: var(--hauzo-font);
    }

        .about-four__contact-content h3 a {
            display: block;
            color: #051d3e;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .about-four__contact-content h3 a:hover {
                color: var(--hauzo-base);
            }

/*--------------------------------------------------------------
# Company Ceo
--------------------------------------------------------------*/
.company-ceo {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

    .company-ceo .section-title {
        margin-bottom: 19px;
    }

.company-ceo__left {
    position: relative;
    display: block;
}

.company-ceo__text-1 {
    color: #444444;
}

.company-ceo__details {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #dbdbdb;
    padding: 10px;
    margin-top: 42px;
}

.company-ceo__img {
    position: relative;
    display: block;
    max-width: 355px;
    width: 100%;
}

    .company-ceo__img img {
        width: 100%;
    }

.company-ceo__name {
    margin-left: 35px;
}

    .company-ceo__name h4 {
        font-size: 22px;
        font-weight: 500;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .company-ceo__name p {
        font-size: 14px;
        color: var(--hauzo-base);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        font-family: var(--hauzo-font-two);
        line-height: 14px;
    }

.company-ceo__right {
    position: relative;
    display: block;
    margin-left: 100px;
    margin-top: -12px;
}

.company-ceo__content-box {
    position: relative;
    display: block;
}

.company-ceo__single {
    position: relative;
    display: block;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 52px;
    margin-bottom: 48px;
}

    .company-ceo__single.marb-0 {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.company-ceo__tagline {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hauzo-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--hauzo-font-two);
    margin-left: 40px;
    margin-bottom: 11px;
}

    .company-ceo__tagline:before {
        content: "";
        position: absolute;
        top: 13px;
        left: -40px;
        width: 30px;
        height: 2px;
        background-color: var(--hauzo-base);
    }

.company-ceo__text-2 {
    color: #444444;
}

.company-ceo__text-3 {
    color: #444444;
}

.company-ceo__text-4 {
    color: #444444;
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
    position: relative;
    display: block;
}

.why-choose-two__wrap {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.why-choose-two__left {
    position: relative;
    display: block;
    float: left;
    min-height: 637px;
    width: 40%;
}

.why-choose-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.why-choose-two__trusted {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--hauzo-base);
    text-align: center;
    max-width: 185px;
    width: 100%;
    padding: 33px 30px 37px;
    z-index: 2;
}

.why-choose-two__trusted-icon {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

    .why-choose-two__trusted-icon span {
        position: relative;
        display: inline-block;
        font-size: 60px;
        color: var(--hauzo-white);
    }

.why-choose-two__trusted-content {
    position: relative;
    display: block;
}

    .why-choose-two__trusted-content h3 {
        font-size: 21px;
        font-weight: 700;
        color: var(--hauzo-white);
        line-height: 21px;
    }

.why-choose-two__count {
    font-family: var(--hauzo-font-two) !important;
}

.why-choose-two__trusted-content .odometer-formatting-mark {
    display: none;
}


.why-choose-two__right {
    position: relative;
    display: block;
    float: right;
    width: 60%;
    background-color: #08335e;
    padding-top: 120px;
    padding-bottom: 113px;
    z-index: 1;
}

.why-choose-two__shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: color-burn;
    opacity: .10;
    z-index: -1;
}

.why-choose-two__content {
    position: relative;
    display: block;
    max-width: 700px;
    width: 100%;
    margin-left: 95px;
}

    .why-choose-two__content .section-title {
        margin-bottom: 30px;
    }

    .why-choose-two__content .section-title__title {
        color: var(--hauzo-white);
    }

    .why-choose-two__content .section-title__text {
        color: var(--hauzo-white);
        padding-top: 19px;
    }

.why-choose-two__points-box {
    position: relative;
    display: flex;
}

.why-choose-two__points {
    position: relative;
    display: block;
}

    .why-choose-two__points + .why-choose-two__points {
        margin-left: 70px;
    }

    .why-choose-two__points li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .why-choose-two__points li + li {
            margin-top: 12px;
        }

        .why-choose-two__points li .icon {
            position: relative;
            display: inline-block;
            margin-right: 20px;
        }

            .why-choose-two__points li .icon span {
                font-size: 21px;
                background: rgb(0, 201, 243);
                background: linear-gradient(0deg, rgba(0, 201, 243, 1) 27%, rgba(0, 244, 231, 1) 73%);
                -webkit-background-clip: text;
                -moz-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .why-choose-two__points li .text {
            position: relative;
            display: block;
        }

            .why-choose-two__points li .text p {
                font-size: 20px;
                font-weight: 600;
                line-height: 30px;
                color: var(--hauzo-white);
            }

/*--------------------------------------------------------------
# Handyman Service
--------------------------------------------------------------*/
.handyman-service {
    position: relative;
    display: block;
    padding: 108px 0 111px;
}

.handyman-service__title-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 24px;
}

.handyman-service__sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hauzo-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 14px;
}

    .handyman-service__sub-title:before {
        position: absolute;
        left: -40px;
        top: 5px;
        width: 30px;
        height: 2px;
        background-color: var(--hauzo-base);
        content: "";
    }

    .handyman-service__sub-title:after {
        position: absolute;
        right: -40px;
        top: 5px;
        width: 30px;
        height: 2px;
        background-color: var(--hauzo-base);
        content: "";
    }

.handyman-service__title {
    font-size: 26px;
    color: var(--hauzo-black);
    font-weight: 500;
    line-height: 36px;
    margin-top: 18px;
}

.handyman-service__content {
    position: relative;
    display: block;
    text-align: center;
}

.handyman-service__text-1 {
    padding-bottom: 29px;
}

.handyman-service__text-2 {
    font-size: 20px;
    font-style: italic;
}



/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
