:root {
    --primary-color: #c8A66A;
    --secondary-color: #121c22;
}

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}

    #preloader:before {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #c8A66A;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    #preloader:after {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #c8A66A;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-delay: 1s;
    }

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

a:hover, a:active {
    color: #c8A66A;
    text-decoration: none;
}

.card {
    color: #4B4B4B;
}

    .card .card-body {
        color: #4B4B4B;
    }

.ls-minus-2px {
    letter-spacing: -2px;
}

.text-primary, .text-primary-hover:hover {
    color: #c8A66A !important;
}

.text-secondary, .text-secondary-hover:hover {
    color: #121c22 !important;
}

.bg-primary {
    background-color: #c8A66A !important;
}

.bg-secondary {
    background-color: #121c22 !important;
}

.secondary-overlay[data-overlay-dark]:before {
    background: #121c22;
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(18,28,34,0.76);
    background: linear-gradient(-90deg, transparent, #121c22 65%);
}

.bg-white-opacity-light-one {
    background-color: rgba(255,255,255,0.1);
}

.white-hover:hover {
    color: #fff !important;
}

.box-shadow-style1 {
    box-shadow: 0 10px 60px 0 rgba(0,0,0,0.05);
}

.primary-box-shadow {
    box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.06);
}

.border-radius-top {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.border-color-primary {
    border-color: #c8A66A !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.min-height-500 {
    height: 500px;
}

.cursor-pointer {
    cursor: pointer;
}

.border-text {
    text-fill-color: transparent;
    text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}

@media screen and (min-width: 767px) {
    .min-width-100vw {
        min-width: 100vw;
    }
}

@media screen and (min-width: 992px) {
    .vw-lg-50 {
        width: 50vw;
    }
}

.display-custom01 {
    font-size: 104px;
}

@media screen and (max-width: 991px) {
    .display-custom01 {
        font-size: 94px;
    }
}

@media screen and (max-width: 767px) {
    .display-custom01 {
        font-size: 74px;
    }
}

@media screen and (max-width: 575px) {
    .display-custom01 {
        font-size: 55px;
    }
}

[data-top-bottom] {
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.sticky-top-style {
    position: sticky;
    top: 130px;
    z-index: 1;
}

.image-hover {
    position: relative;
    overflow: hidden;
}

    .image-hover:after {
        content: "";
        position: absolute;
        width: 200%;
        height: 0%;
        left: 50%;
        top: 50%;
        background-color: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%) rotate(-45deg);
        z-index: 1;
    }

    .image-hover:hover:after, .image-hover:active:after, .image-hover:focus:after {
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }

.ani-top-bottom {
    -webkit-animation-name: up-down;
    animation-name: up-down;
    -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;
}

@keyframes up-down {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.shape-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 90px solid rgba(255,255,255,0.05);
    position: absolute;
    bottom: -300px;
    left: -310px;
}

.shape-2 {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 40px solid rgba(255,255,255,0.05);
    position: absolute;
    top: -110px;
    right: -100px;
}

.line-animated {
    width: 68%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 99;
    pointer-events: none;
}

    .line-animated > span {
        background: rgba(255,255,255,0.1);
        width: 1px;
        height: 100%;
        position: absolute;
        left: 0%;
        top: 0;
    }

        .line-animated > span:before {
            content: "";
            background-image: linear-gradient(0deg, #fff, transparent);
            width: 1px;
            height: 100px;
            position: absolute;
            top: 0;
            left: 0px;
            z-index: -1;
            -webkit-animation-duration: 3s;
            animation-duration: 3s;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-name: bottom-top;
            animation-name: bottom-top;
        }

        .line-animated > span:nth-child(2) {
            left: 25%;
        }

            .line-animated > span:nth-child(2):before {
                content: "";
                -webkit-animation-name: top-bottom;
                animation-name: top-bottom;
            }

        .line-animated > span:nth-child(3) {
            left: 50%;
        }

            .line-animated > span:nth-child(3):before {
                content: "";
                -webkit-animation-name: bottom-top;
                animation-name: bottom-top;
            }

        .line-animated > span:nth-child(4) {
            left: 75%;
        }

            .line-animated > span:nth-child(4):before {
                content: "";
                -webkit-animation-name: top-bottom;
                animation-name: top-bottom;
            }

        .line-animated > span:nth-child(5) {
            left: 100%;
        }

            .line-animated > span:nth-child(5):before {
                content: "";
                -webkit-animation-name: bottom-top;
                animation-name: bottom-top;
            }

@-webkit-keyframes top-bottom {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

@keyframes top-bottom {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

@-webkit-keyframes bottom-top {
    from {
        top: 100%;
    }

    to {
        top: 0;
    }
}

@keyframes bottom-top {
    from {
        top: 100%;
    }

    to {
        top: 0;
    }
}

.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}

    .scroll-top-percentage.active {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
        animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

@media screen and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px;
    }
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: var(--rr-common-white);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
}

    #scroll-value i {
        font-size: 20px;
    }

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.list-style01 li {
    margin-bottom: 17px;
    color: rgba(255,255,255,0.6);
}

    .list-style01 li:last-child {
        margin-bottom: 0;
    }

    .list-style01 li span {
        text-transform: uppercase;
        font-weight: 700;
        padding-right: 3px;
        color: #fff;
        font-size: 16px;
    }

.list-style02 {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

    .list-style02 li {
        line-height: 32px;
        padding-left: 30px;
        position: relative;
        margin-bottom: 10px;
    }

        .list-style02 li:last-child {
            margin-bottom: 0;
        }

        .list-style02 li:before {
            content: '\e64c';
            font-family: 'themify';
            font-size: 18px;
            position: absolute;
            top: 0;
            left: 0;
            font-weight: 700;
            line-height: 35px;
            color: #c8A66A;
        }

@media screen and (max-width: 1199px) {
    .list-style02 {
        margin-bottom: 25px;
    }
}

.list-style03 {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .list-style03 li {
        position: relative;
        padding: 0 0 5px 30px;
        margin: 0 0 5px 0;
    }

        .list-style03 li:before {
            content: "\e64c";
            position: absolute;
            top: 0;
            left: 0;
            font-family: 'themify';
            color: #c0c0c0;
            font-size: 16px;
        }

        .list-style03 li:first-child {
            padding-top: 5px;
        }

            .list-style03 li:first-child:before {
                top: 6px;
            }

        .list-style03 li:last-child {
            border-bottom: 0;
            margin-bottom: 0;
        }

        .list-style03 li:before {
            color: #c8A66A;
        }

.list-style04 li {
    list-style: none;
    display: block;
    border-bottom: 1px solid #f2f2f2;
    padding: 0 20px 12px 30px;
    position: relative;
    margin: 0 0px 12px;
}

    .list-style04 li:before {
        content: "\e64c";
        font-family: 'themify';
        font-size: 15px;
        position: absolute;
        top: 0;
        left: 0;
        line-height: 35px;
        color: #c8A66A;
    }

    .list-style04 li:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.btn-style01 {
    display: inline-block;
    background-color: #c8A66A;
    color: #fff !important;
    padding: 16px 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    border-radius: 0.25rem;
    transition-duration: .3s;
}

    .btn-style01:hover, .btn-style01:active, .btn-style01:focus {
        background-color: #121c22;
        color: #fff !important;
    }

    .btn-style01.md {
        padding: 13px 22px !important;
        font-size: 14px;
    }

    .btn-style01.sm {
        padding: 10px 18px !important;
        font-size: 14px;
    }

    .btn-style01.white {
        background-color: #fff !important;
        color: #121c22 !important;
    }

        .btn-style01.white:hover {
            background-color: #121c22 !important;
            color: #fff !important;
        }

    .btn-style01.primary {
        background-color: #c8A66A;
        color: #fff !important;
    }

        .btn-style01.primary:hover {
            background-color: #fff;
            color: #121c22 !important;
        }

.btn-style02 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 14px !important;
    color: #fff;
    border-radius: 0.375rem;
    font-weight: 700;
    text-align: center;
    padding: 15px 32px !important;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    background-color: #c8A66A;
}

    .btn-style02:before {
        transition-duration: 800ms;
        position: absolute;
        width: 200%;
        height: 200%;
        content: "";
        top: 110%;
        left: 50%;
        background-color: #121c22;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .btn-style02:hover {
        color: #fff;
    }

        .btn-style02:hover:before {
            top: -40%;
        }

    .btn-style02.white:before {
        background-color: #fff;
    }

    .btn-style02.white:hover {
        color: #c8A66A;
    }

    .btn-style02.secondary {
        background-color: #121c22;
    }

        .btn-style02.secondary:before {
            background-color: #c8A66A;
        }

    .btn-style02.md {
        padding: 12px 28px !important;
    }

    .btn-style02.sm {
        padding: 8px 24px !important;
    }

.button-text {
    padding: 0;
    position: relative;
    text-decoration: none;
    border: 0;
    background-color: transparent;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    width: auto;
    font-weight: 500;
}

    .button-text a {
        border-bottom: 2px solid;
    }

    .button-text:hover {
        border-color: #c8A66A;
    }

.btn-style03 {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 34px !important;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0.375rem;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
    text-align: center;
    border: 2px solid #c8A66A;
    color: #fff;
    z-index: 1;
    background-color: #c8A66A;
    vertical-align: middle;
    text-transform: uppercase;
}

    .btn-style03:after {
        content: '';
        position: absolute;
        top: 0;
        left: -200%;
        width: 200%;
        height: 100%;
        -webkit-transform: skewX(-20deg);
        -khtml-transform: skewX(-20deg);
        -moz-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
        -o-transform: skewX(-20deg);
        transform: skewX(-20deg);
        background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
        z-index: -1;
    }

    .btn-style03:hover, .btn-style03:focus, .btn-style03:active {
        background-color: #c8A66A;
        color: #fff;
    }

        .btn-style03:hover:after, .btn-style03:focus:after, .btn-style03:active:after {
            -webkit-animation: btn_shine 1.2s ease;
            animation: btn_shine 1.2s ease;
            -webkit-animation-delay: .1s;
            animation-delay: .1s;
        }

    .btn-style03.secondary {
        border: 2px solid #121c22;
        background-color: #121c22;
    }

        .btn-style03.secondary:hover, .btn-style03.secondary:focus, .btn-style03.secondary:active {
            background-color: #121c22;
            color: #fff;
        }

    .btn-style03.md {
        padding: 8px 26px !important;
        font-size: 15px;
    }

    .btn-style03.sm {
        padding: 6px 20px !important;
    }

@-webkit-keyframes btn_shine {
    100% {
        left: 200%;
    }
}

@keyframes btn_shine {
    100% {
        left: 200%;
    }
}

@media screen and (max-width: 1399px) {
    .btn-style03 {
        padding: 10px 30px !important;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .btn-style03 {
        padding: 8px 25px !important;
        font-size: 14px;
    }
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}

    .top-bar-info ul {
        margin-bottom: 0;
    }

    .top-bar-info li {
        font-weight: 500;
        color: #fff;
        list-style-type: none;
        font-size: 14px;
        padding: 0 5px 0;
        display: inline-block;
        margin-bottom: 0;
    }

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0;
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}

    .top-social-icon li {
        font-size: 14px;
        list-style-type: none;
        float: left;
        text-align: center;
        margin: 0;
        padding: 0 7px;
    }

        .top-social-icon li:last-child {
            padding-right: 0;
        }

            .top-social-icon li:last-child a {
                padding-right: 0;
            }

        .top-social-icon li a {
            color: #fff;
            line-height: 28px;
            -webkit-transition-duration: .3s;
            transition-duration: .3s;
            padding: 0 3px;
        }

            .top-social-icon li a:hover {
                color: rgba(255,255,255,0.65);
            }

.navbar-nav li.current > a, .navbar-nav li.active > a {
    color: #c8A66A !important;
}

.attr-nav > ul > li > a.butn {
    color: #fff;
}

.navbar > ul > li.current > a:after {
    border-color: transparent #c8A66A #c8A66A transparent !important;
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #c8A66A;
}

.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #c8A66A #c8A66A transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #c8A66A;
}

    .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
        color: #c8A66A;
    }

.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #c8A66A;
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #c8A66A #c8A66A transparent;
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #c8A66A;
    }

    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #c8A66A;
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #c8A66A;
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #c8A66A;
    }

        .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
            border-color: transparent #c8A66A #c8A66A transparent;
        }

    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent #c8A66A #c8A66A transparent;
    }

    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: #c8A66A;
    }

        .header-style2.scrollHeader .navbar-nav li.current > a:hover {
            color: #c8A66A;
        }

    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #c8A66A #c8A66A transparent;
    }

    .header-style2 .navbar ul ul li.active > a {
        color: #c8A66A;
    }

    .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus {
        color: #c8A66A;
    }

    .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: #c8A66A;
    }

    .header-style2 .navbar > ul > li.has-sub > a:hover:after, .header-style2 .navbar > ul > li.has-sub > a:active:after, .header-style2 .navbar > ul > li.has-sub > a:focus:after {
        border-color: transparent #c8A66A #c8A66A transparent;
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #c8A66A;
    }

        .header-style1 .navbar-toggler:after {
            border-top: 2px solid #fff;
            border-bottom: 2px solid #fff;
        }

        .header-style1 .navbar-toggler:before {
            background: #fff;
        }

        .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
            background: #fff;
        }
}

.header-style2 .navbar-nav li.current > a {
    color: #c8A66A;
}

.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #c8A66A #c8A66A transparent;
}

.header-style2.scrollHeader .navbar-nav li.current > a {
    color: #c8A66A;
}

    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: #c8A66A;
    }

.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #c8A66A #c8A66A transparent;
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: #c8A66A;
    }

    .header-style2 .butn.secondary:before {
        background: #ffffff;
    }

    .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
        color: #121c22 !important;
    }

    .header-style2.scrollHeader .butn.secondary:before {
        background: #c8A66A;
    }

    .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important;
    }
}

.header-style3 .navbar-nav li.current > a, .header-style3 .navbar-nav li.active > a {
    color: #c8A66A;
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active > a {
        color: #c8A66A;
    }

    .header-style3 .navbar-nav > li > a:hover, .header-style3 .navbar-nav > li > a:active, .header-style3 .navbar-nav > li > a:focus {
        color: #c8A66A;
    }

    .header-style3 .navbar ul ul li.active > a {
        color: #c8A66A;
    }

    .header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current > a {
        color: #c8A66A;
    }

    .header-style3 .navbar-nav > li.has-sub > a:hover {
        color: #c8A66A;
    }

    .header-style3 .navbar > ul > li.has-sub > a:hover:after, .header-style3 .navbar > ul > li.current > a:after {
        border-color: transparent #c8A66A #c8A66A transparent;
    }

    .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #c8A66A;
    }

    .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
        border-color: transparent #c8A66A #c8A66A transparent;
    }

    .header-style3.scrollHeader .navbar-nav > li.active > a {
        color: #c8A66A;
    }

    .header-style3.scrollHeader .navbar-nav li.current > a {
        color: #c8A66A;
    }

        .header-style3.scrollHeader .navbar-nav li.current > a:hover {
            color: #c8A66A;
        }

    .header-style3.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #c8A66A #c8A66A transparent;
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: #c8A66A;
    }

        .header-style3 .navbar-toggler:after {
            border-top: 2px solid #fff;
            border-bottom: 2px solid #fff;
        }

        .header-style3 .navbar-toggler:before {
            background: #fff;
        }

        .header-style3 .navbar-toggler.menu-opened:after, .header-style3 .navbar-toggler.menu-opened:before {
            background: #fff;
        }
}

.slider-fade1 .bg-img {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}

.slider-fade1 .owl-item.active .bg-img {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.slider-fade1 .item {
    height: 100vh;
}

    .slider-fade1 .item h1 {
        font-size: 100px;
        line-height: 95px;
        letter-spacing: -3px;
        font-weight: 800;
        text-shadow: 0 0 60px rgba(18,28,34,0.9);
    }

.slider-fade1.owl-carousel .owl-nav {
    margin-top: 0;
}

    .slider-fade1.owl-carousel .owl-nav.disabled + .owl-dots {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 200px;
        bottom: 20px;
    }

.slider-fade1 .owl-nav .owl-next {
    right: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    height: 55px;
    width: 55px;
    background: rgba(255,255,255,0.2) !important;
    opacity: 1;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.slider-fade1 .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    height: 55px;
    width: 55px;
    background: rgba(255,255,255,0.2) !important;
    opacity: 1;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.slider-fade1 .owl-nav .owl-next:hover {
    background: #c8A66A !important;
}

    .slider-fade1 .owl-nav .owl-next:hover i {
        color: #fff;
    }

.slider-fade1 .owl-nav .owl-next i {
    color: #fff;
    font-size: 18px;
    line-height: 55px;
    transition: all 0.3s ease;
}

.slider-fade1 .owl-nav .owl-prev {
    left: 15px;
}

    .slider-fade1 .owl-nav .owl-prev:hover {
        background: #c8A66A !important;
    }

    .slider-fade1 .owl-nav .owl-prev i {
        color: #fff;
        font-size: 18px;
        line-height: 55px;
        transition: all 0.3s ease;
    }

    .slider-fade1 .owl-nav .owl-prev:hover i {
        color: #fff;
    }

@media screen and (max-width: 1399px) {
    .slider-fade1 .item h1 {
        font-size: 100px;
        line-height: 95px;
        letter-spacing: -3px;
        text-shadow: 0 0 60px rgba(18,28,34,0.9);
    }
}

@media screen and (max-width: 1199px) {
    .slider-fade1 .item h1 {
        font-size: 90px;
        line-height: 90px;
        letter-spacing: -3px;
    }
}

@media screen and (max-width: 991px) {
    .slider-fade1 .item h1 {
        font-size: 70px;
        line-height: 65px;
        letter-spacing: -2px;
    }
}

@media screen and (max-width: 767px) {
    .slider-fade1 .item h1 {
        letter-spacing: -1px;
        font-size: 45px;
        line-height: 43px;
    }
}

.banner-style01 h1 {
    margin-bottom: 20px;
}

.banner-style01 p {
    font-size: 20px;
    margin-bottom: 25px;
}

.banner-style01 .banner-button {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center;
    justify-content: flex-start;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
}

    .banner-style01 .banner-button .button-arrow {
        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;
        position: relative;
        overflow: hidden;
        -webkit-transition: .3s;
        transition: .3s;
        margin-right: 15px;
        width: 65px;
        height: 65px;
        background-color: #c8A66A;
        border-radius: 50%;
    }

        .banner-style01 .banner-button .button-arrow i {
            font-size: 18px;
            color: #fff;
            position: relative;
            z-index: 1;
            -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
            transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
            font-weight: 700;
        }

    .banner-style01 .banner-button .button-text a {
        font-size: 19px;
    }

.banner-style01 .left-text {
    position: absolute;
    transform: rotate(-90deg) translate(-50%, 50%);
    transform-origin: 0 50%;
    transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
    top: 50%;
    left: 50px;
    z-index: 9;
}

    .banner-style01 .left-text span {
        font-size: 16px;
        color: #fff;
    }

        .banner-style01 .left-text span i {
            font-size: 18px;
            margin-right: 10px;
            display: inline-block;
        }

@media screen and (max-width: 1599px) {
    .banner-style01 .left-text {
        left: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-style01 .left-text {
        left: 0;
    }
}

@media screen and (max-width: 767px) {
    .banner-style01 .banner-button .button-arrow {
        width: 50px;
        height: 50px;
    }

        .banner-style01 .banner-button .button-arrow i {
            font-size: 14px;
        }

    .banner-style01 .banner-button .button-text a {
        font-size: 16px;
    }
}

.section-title-01 {
    position: relative;
}

    .section-title-01 .sub-title {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        display: inline-block;
        background-color: #FFFFFF;
        color: #c8A66A;
        margin-bottom: 15px;
        padding: 3px 10px 2px 10px;
        border-radius: 50rem;
        box-shadow: 5px 4px 13px 0px rgba(46,63,99,0.15);
        position: relative;
    }

        .section-title-01 .sub-title:before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin: -2px 8px 0 0;
            background-color: #c8A66A;
            display: inline-block;
            vertical-align: middle;
        }

.title-scroll {
    width: 130px;
}

    .title-scroll .small-title {
        padding: 10px 20px 10px 20px;
        border: 1px solid #c8A66A;
        border-radius: 50rem;
    }

.scroll-dot {
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background-color: #121c22;
    text-align: center;
}

    .scroll-dot.white {
        background-color: #fff;
    }

.section-title02 span {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    color: #c8A66A;
    letter-spacing: 2px;
    display: inline-block;
    z-index: 1;
    padding: 0 18px 0 18px;
    margin-bottom: 8px;
    cursor: text;
}

    .section-title02 span:before {
        content: " ";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #c8A66A;
        z-index: -1;
        transition: transform .3s ease;
        transform: scaleX(0);
        transform-origin: bottom right;
    }

    .section-title02 span:after {
        width: 5px;
        content: " ";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #c8A66A;
        z-index: -1;
        transition: transform .3s ease;
    }

    .section-title02 span:hover {
        color: #fff;
    }

        .section-title02 span:hover:before {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

.page-title-section {
    padding: 190px 0 90px;
    text-align: center;
}

    .page-title-section h1 {
        /*font-size: 72px;*/
        font-size:50px;
        line-height: 1;
        text-shadow: 0 0 3px rgba(0,0,0,0.2);
        color: #ffffff;
        margin-bottom: 15px;
        position: relative;
        z-index: 9;
        text-transform: uppercase;
    }

    .page-title-section ul {
        margin: 0;
        list-style: none;
        display: inline-block;
        padding: 5px 18px 6px 18px;
        border: 1px solid #c8A66A;
        border-radius: 50rem;
        line-height: 1.2;
    }

        .page-title-section ul li {
            display: inline-block;
        }

            .page-title-section ul li:last-child {
                color: #ffffff;
                opacity: 0.80;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

                .page-title-section ul li:last-child a {
                    color: #ffffff;
                    opacity: 0.80;
                    font-size: 14px;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

            .page-title-section ul li:after {
                content: "";
                font-weight: 700;
                vertical-align: middle;
                background-color: #c8A66A;
                width: 10px;
                padding: 0 5px 0 10px;
                height: 2px;
                display: inline-block;
                margin: -1px 5px 0 10px;
            }

            .page-title-section ul li:last-child:after {
                content: none;
            }

            .page-title-section ul li a {
                color: #ffffff;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

    .page-title-section .active a, .page-title-section li.active:last-child a {
        color: #fff;
    }

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 180px 0 80px 0;
    }

        .page-title-section h1 {
            font-size: 60px;
            margin-bottom: 10px;
        }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 160px 0 80px 0;
    }

        .page-title-section h1 {
            font-size: 54px;
        }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 140px 0 70px 0;
    }

        .page-title-section h1 {
            font-size: 42px;
        }
}

.card-style01 {
    transition: .4s;
}

    .card-style01 .team-icon {
        position: absolute;
        top: -20px;
        right: 20px;
    }

        .card-style01 .team-icon .icon-top {
            width: 40px;
            min-width: 40px;
            height: 40px;
            border-radius: 50%;
            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;
            background-color: #121c22;
            color: #fff;
            z-index: 3;
            cursor: pointer;
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }

            .card-style01 .team-icon .icon-top i {
                font-size: 16px;
                -webkit-transition: -webkit-transform 0.3s ease-in-out;
                transition: -webkit-transform 0.3s ease-in-out;
                transition: transform 0.3s ease-in-out;
                transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            }

        .card-style01 .team-icon .inner-icon {
            position: absolute;
            bottom: calc(100% + 12px);
            right: 0px;
            z-index: 3;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
            -webkit-transition: all 0.5s ease;
        }

            .card-style01 .team-icon .inner-icon ul {
                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;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 10px;
            }

                .card-style01 .team-icon .inner-icon ul li a {
                    width: 40px;
                    min-width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    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;
                    background-color: #fff;
                    color: #121c22;
                    font-size: 16px;
                    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
                    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
                }

    .card-style01:hover {
        background-color: #121c22;
        transition: .4s;
    }

        .card-style01:hover .team-icon .icon-top {
            background-color: #c8A66A;
            color: #121c22;
        }

            .card-style01:hover .team-icon .icon-top i {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }

        .card-style01:hover .team-icon .inner-icon {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }

        .card-style01:hover h4, .card-style01:hover span {
            filter: brightness(0) invert(1);
            transition: .5s;
        }

    .card-style01 .team-icon .inner-icon ul li a:hover {
        background-color: #c8A66A;
        color: #fff;
    }

.card-style02 {
    position: relative;
    z-index: 1;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    transition: 0.3s;
}

    .card-style02 .team-social {
        position: absolute;
        top: -22px;
        transition: all 0.5s ease-in-out;
        right: 20px;
    }

    .card-style02 .icon-share {
        border-radius: 0px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        width: 40px;
        height: 40px;
        text-align: center;
        color: #fff;
        background: #c8A66A;
        border-radius: 0.375rem;
        outline: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .card-style02 .team-social .icons-social {
        opacity: 0;
        transition: all 0.5s ease;
        visibility: hidden;
        border-radius: 0px;
        position: absolute;
        margin: 0;
        backface-visibility: hidden;
        transform-style: preserve-3d;
        transition-delay: 0.1s;
        transform: rotate(-180deg);
        bottom: 40px;
        right: 0;
    }

    .card-style02:hover .team-social .icons-social {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .card-style02 .icons-social ul {
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0;
        z-index: -1;
    }

        .card-style02 .icons-social ul li {
            margin-top: 10px;
            position: relative;
            opacity: 0;
            transition: all 0.5s;
            opacity: 1;
            z-index: 4;
        }

            .card-style02 .icons-social ul li a {
                transform: rotate(180deg);
                display: inline-block;
                color: #fff;
                font-size: 16px;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                background: #c8A66A;
                border-radius: 0.375rem;
                transition: all 0.3s;
            }

                .card-style02 .icons-social ul li a i {
                    transition: none;
                }

                .card-style02 .icons-social ul li a:hover {
                    color: #fff;
                    background-color: #121c22;
                }

            .card-style02 .icons-social ul li:nth-of-type(1) {
                transition-delay: 0s;
                z-index: 4;
            }

            .card-style02 .icons-social ul li:nth-of-type(2) {
                transition-delay: 0.2s;
                z-index: 3;
            }

            .card-style02 .icons-social ul li:nth-of-type(3) {
                transition-delay: 0.3s;
                z-index: 2;
            }

            .card-style02 .icons-social ul li:nth-of-type(4) {
                transition-delay: 0.4s;
                z-index: 1;
            }

    .card-style02 .card-body {
        padding: 25px 0 0;
        transition: 0.4s;
        text-align: center;
    }

.card-style03 {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    background-color: #ffffff;
    padding: 35px 15px;
    position: relative;
    border: 18px solid #fff;
    height: 100%;
}

    .card-style03 > .d-flex {
        position: relative;
    }

        .card-style03 > .d-flex:before {
            position: absolute;
            content: "";
            width: calc(100% + 28px);
            height: 2px;
            background-color: #c8A66A;
            left: -15px;
            bottom: -20px;
        }

    .card-style03 .card-content h2 span {
        font-size: 14px;
        font-weight: 400;
    }

    .card-style03 .card-content p {
        margin-bottom: 0;
    }

.card-style04 {
    border: none;
    border-radius: 0.375rem;
    height: 100%;
    box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
}

    .card-style04 .blog-img img {
        will-change: transform;
        -webkit-transition: -webkit-transform .3s ease;
        -ms-transition: -ms-transform .3s ease;
        transition: transform .3s ease;
        -webkit-transition: all .5s ease;
        -ms-transition: all .5s ease;
        transition: all .5s ease;
        -webkit-transform: scale(1.01, 1.01);
        -ms-transform: scale(1.01, 1.01);
        transform: scale(1.01, 1.01);
    }

    .card-style04:hover .blog-img img, .card-style04:active .blog-img img, .card-style04:focus .blog-img img {
        -webkit-transform: scale(1.07, 1.07);
        -ms-transform: scale(1.07, 1.07);
        transform: scale(1.07, 1.07);
    }

    .card-style04 .post-date {
        position: absolute;
        right: 30px;
        top: -42px;
        background: #c8A66A;
        color: #fff;
        border-radius: 3px;
        line-height: normal;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding: 14px 15px;
        min-width: 78px;
    }

        .card-style04 .post-date .month {
            font-size: 12px;
            text-transform: uppercase;
        }

    .card-style04 .text-uppercase.display-31 a {
        margin-right: 15px;
        margin-top: 5px;
        display: inline-block;
        vertical-align: top;
    }

    .card-style04 .blog-tag:before {
        content: "";
        margin: 0 0.75em;
        width: 3px;
        height: 3px;
        background-color: #8E919D;
        top: 50%;
        transform: translateY(-50%);
        left: -30%;
        display: inline-block;
        position: absolute;
        border-radius: 50%;
    }

    .card-style04 > .card-body:nth-child(1) .post-date {
        display: none;
    }

.card-style05 .service-top {
    position: relative;
    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: 0 20px;
    margin-top: -30px !important;
    border-radius: 0.375rem;
    padding: 15px 15px 15px 20px;
    background-color: #f7f7f7;
    z-index: 3;
}

.card-style05 .service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    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: 35px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 60px rgba(252,82,32,0.2);
    box-shadow: 0px 0px 60px rgba(252,82,32,0.2);
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .card-style05 .service-icon img {
        transition: .5s;
    }

.card-style05:hover .service-icon {
    background-color: #121c22;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .card-style05:hover .service-icon img {
        filter: brightness(0) invert(1);
        transition: .5s;
    }

.card-style05 .service-img {
    position: relative;
    overflow: hidden;
}

    .card-style05 .service-img img {
        transform: scale3d(1, 1, 1);
        transition: transform 1s ease-in-out;
    }

.card-style05:hover .service-img img {
    transform: scale(1.05) rotate(0deg);
}

@media screen and (max-width: 575px) {
    .card-style05 .service-top {
        margin: 0 10px;
    }
}

.card-style06 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .card-style06:hover {
        webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-box-shadow: 0px 10px 30px rgba(29,58,83,0.15);
        box-shadow: 0px 10px 30px rgba(29,58,83,0.15);
    }

.card-style07 {
    min-height: 405px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
}

    .card-style07 .card-body {
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        background-size: cover;
        width: 100%;
        height: 100%;
        transition: all 0.5s;
    }

    .card-style07 h3 a, .card-style07 p {
        color: #fff;
    }

    .card-style07:hover .card-body {
        opacity: 1;
    }

    .card-style07:hover h3 a, .card-style07:hover i {
        color: #fff;
    }

    .card-style07 i {
        color: #c8A66A;
    }

    .card-style07:hover {
        border: 1px solid transparent;
    }

    .card-style07 .card-body:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #000;
        opacity: 0.5;
    }

    .card-style07:hover p {
        color: #fff;
    }

@media screen and (max-width: 575px) {
    .card-style07 {
        min-height: 340px;
    }
}

.card-style08 {
    -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.08);
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    border: 0;
    border-radius: 0;
}

    .card-style08 .card-body a {
        line-height: 1.4 !important;
    }

    .card-style08 .blog-img span {
        position: absolute;
        top: 20px;
        right: 20px;
    }

        .card-style08 .blog-img span a {
            padding: 4px 12px;
            border-radius: 0.375rem;
            transition: .3s;
            color: #fff;
            margin-left: 5px;
            display: inline-block;
            font-size: 12px;
            line-height: 20px;
            font-weight: 700;
            text-transform: uppercase;
            background-color: #c8A66A;
        }

    .card-style08 .blog-author {
        font-size: 14px;
        will-change: transform;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

        .card-style08 .blog-author .blog-date {
            opacity: 1;
            visibility: visible;
            -webkit-transform: translateY(0);
            transform: translateY(0);
            -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
            transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
            font-weight: 500;
            display: inline-block;
        }

        .card-style08 .blog-author .author-name {
            position: absolute;
            width: auto;
            left: 0;
            bottom: 0;
            opacity: 1;
            visibility: visible;
            -webkit-transform: translateY(32px);
            transform: translateY(32px);
            -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
            transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
            display: inline-block;
        }

            .card-style08 .blog-author .author-name a {
                font-weight: 600;
                border-bottom: 1px solid #232323;
                -webkit-transition: .3s;
                transition: .3s;
            }

        .card-style08 .blog-author .blog-like a i {
            margin-right: 4px;
            vertical-align: middle;
            -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
            transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        }

    .card-style08:hover .blog-author .blog-date {
        position: relative;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(-32px);
        transform: translateY(-32px);
    }

    .card-style08:hover .blog-author .author-name {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

.lg-backdrop {
    z-index: 99999;
}

.lg-outer {
    z-index: 999999;
}

    .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
        border-color: #c8A66A;
    }

.lg-progress-bar .lg-progress {
    background-color: #c8A66A;
}

.lg-backdrop.in {
    opacity: 0.85;
}

.owl-nav i {
    color: #121c22;
    font-size: 18px;
    padding-top: 6px;
}

.owl-nav .owl-next {
    color: #c8A66A;
    font-size: 43px;
    text-align: center;
    width: 40px;
    height: 40px;
    background: #fff;
}

.owl-nav .owl-prev {
    color: #c8A66A;
    font-size: 43px;
    text-align: center;
    width: 40px;
    height: 40px;
    background: #fff;
    left: 0;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    -webkit-box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
    -moz-box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
    -o-box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
    box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
}

.owl-nav .owl-next {
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    -webkit-box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
    -moz-box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
    -o-box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
    box-shadow: 0 5px 28px 0 rgba(50,50,50,0.1);
}

.owl-thumbs button {
    border: none;
}

    .owl-thumbs button img {
        opacity: 0.5;
    }

    .owl-thumbs button.active img {
        opacity: 1;
    }

.testimonial-carousel-one .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #121c22;
    text-align: start;
    margin-left: 7.7rem;
}

    .testimonial-carousel-one .owl-dots .owl-dot {
        position: relative;
        color: #fff;
    }

        .testimonial-carousel-one .owl-dots .owl-dot.active {
            color: #c8A66A;
        }

        .testimonial-carousel-one .owl-dots .owl-dot:before {
            counter-increment: dots;
            content: counter(dots,decimal-leading-zero);
            position: absolute;
            right: 8px;
            font-weight: 400;
            z-index: 2;
            font-size: 17px;
            line-height: 1;
        }

        .testimonial-carousel-one .owl-dots .owl-dot span {
            background: transparent;
            height: 30px;
            width: 30px;
            border-radius: 0;
            display: block;
            position: relative;
            margin: 0 20px 0 0;
        }

            .testimonial-carousel-one .owl-dots .owl-dot span:before {
                position: absolute;
                content: '';
                width: 11px;
                height: 1px;
                right: -31px;
                top: 9px;
                background-color: #fff;
            }

        .testimonial-carousel-one .owl-dots .owl-dot:last-child span:before {
            content: none;
        }

        .testimonial-carousel-one .owl-dots .owl-dot.active span {
            background-color: transparent;
        }

.testimonial-carousel-one .owl-nav {
    position: absolute;
    left: 95px;
    bottom: 15px;
    margin-top: 45px;
}

.testimonial-carousel-one .owl-dots {
    margin-top: 45px;
}

.testimonial-carousel-one.owl-carousel .owl-nav .owl-prev {
    margin-right: 140px;
    background-color: transparent !important;
}

.testimonial-carousel-one.owl-carousel .owl-nav .owl-next {
    background-color: transparent !important;
}

.testimonial-carousel-one.owl-carousel .owl-nav .owl-prev:before {
    display: none;
}

.testimonial-carousel-one .owl-nav i {
    font-size: 16px;
    color: #fff;
}

.testimonial-carousel-one .owl-nav [class*='owl-']:hover {
    background: transparent;
}

@media screen and (max-width: 575px) {
    .testimonial-carousel-one .owl-nav {
        left: 0;
    }

    .testimonial-carousel-one .owl-dots {
        margin-left: 0.6rem;
    }
}

.testimonial-carousel-two.owl-carousel .owl-item img {
    display: inline-block;
}

.testimonial-carousel-three .owl-nav {
    margin-top: 32px;
    text-align: left;
    background-color: transparent !important;
}

    .testimonial-carousel-three .owl-nav i, .testimonial-carousel-three .owl-nav span {
        color: #fff;
    }

    .testimonial-carousel-three .owl-nav [class*='owl-'] {
        width: 40px;
        height: 40px;
        color: #121c22;
    }

    .testimonial-carousel-three .owl-nav .owl-next {
        background-color: transparent;
    }

    .testimonial-carousel-three .owl-nav .owl-prev {
        margin-right: 30px;
        position: relative;
        background-color: transparent !important;
    }

        .testimonial-carousel-three .owl-nav .owl-prev:before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: #c8A66A;
            position: absolute;
            right: -20px;
            top: 15px;
            border-radius: 50%;
        }

    .testimonial-carousel-three .owl-nav [class*='owl-']:hover {
        background: unset;
        color: #c8A66A;
    }

.services-carousel-one.owl-carousel .owl-item img {
    display: inline-block;
    width: unset;
    border-radius: 0.375rem;
}

.services-carousel-one .service-box {
    border-radius: 0;
    background: transparent;
    padding-left: 40px;
    padding-right: 0px;
    transition: all 0.3s ease-in-out;
}

    .services-carousel-one .service-box h3 a {
        color: #fff;
    }

        .services-carousel-one .service-box h3 a:hover {
            color: #c8A66A;
        }

    .services-carousel-one .service-box img {
        transition: all 0.3s ease-in-out;
    }

    .services-carousel-one .service-box:hover img {
        transform: scale(0.8);
    }

    .services-carousel-one .service-box .service-btn {
        position: relative;
        display: inline-block;
        top: auto;
        left: auto;
        height: auto;
        width: auto;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        z-index: 1;
        overflow: hidden;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .services-carousel-one .service-box .service-btn .btn-text {
            position: relative;
            margin-right: 0;
            display: inline-block;
            vertical-align: middle;
            text-indent: -110px;
            visibility: hidden;
            white-space: nowrap;
            opacity: 0;
            -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
            -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
            transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
            will-change: visibility, margin-right, text-indent, opacity;
        }

        .services-carousel-one .service-box .service-btn .btn-arrow {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            overflow: hidden;
            width: 1.4em;
            height: 1.4em;
            line-height: 1.4em;
            text-align: center;
        }

            .services-carousel-one .service-box .service-btn .btn-arrow:before {
                font-size: 18px;
                line-height: inherit;
                font-weight: 400;
                font-style: inherit;
                display: inline-block;
                vertical-align: middle;
                color: #fff;
                content: "\e628";
                font-family: 'themify';
                transition: .4s;
            }

    .services-carousel-one .service-box:hover .service-btn .btn-text {
        opacity: 1;
        text-indent: 0;
        margin-right: 6px;
        visibility: visible;
        -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
        -ms-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
        transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
    }

    .services-carousel-one .service-box:hover .service-btn .btn-arrow:before {
        font-size: 11px;
        color: #fff !important;
    }

.services-carousel-one.owl-carousel .owl-nav {
    margin-top: 20px;
}

    .services-carousel-one.owl-carousel .owl-nav i {
        color: #fff;
    }

    .services-carousel-one.owl-carousel .owl-nav .owl-prev, .services-carousel-one.owl-carousel .owl-nav .owl-next {
        height: 50px;
        width: 50px;
        background-color: rgba(255,255,255,0.1) !important;
        color: #fff !important;
        margin: 5px;
        transition: 0.3s;
    }

.services-carousel-one .owl-nav .owl-next:hover, .services-carousel-one .owl-nav .owl-prev:hover {
    background: #c8A66A !important;
}

@media screen and (max-width: 1399px) {
    .services-carousel-one .service-box {
        padding-left: 25px;
    }
}

@media screen and (max-width: 767px) {
    .services-carousel-one .service-box {
        padding-left: 0;
    }
}

.services-carousel-two.owl-carousel .owl-nav {
    margin-top: 0;
}

    .services-carousel-two.owl-carousel .owl-nav.disabled + .owl-dots {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 200px;
        bottom: 20px;
    }

.services-carousel-two .owl-nav .owl-next {
    right: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    height: 55px;
    width: 55px;
    background: #121c22 !important;
    opacity: 1;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.services-carousel-two .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    height: 55px;
    width: 55px;
    background: #121c22 !important;
    opacity: 1;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.services-carousel-two .owl-nav .owl-next:hover {
    background: #c8A66A !important;
}

    .services-carousel-two .owl-nav .owl-next:hover i {
        color: #fff;
    }

.services-carousel-two .owl-nav .owl-next i {
    color: #fff;
    font-size: 18px;
    line-height: 55px;
    transition: all 0.3s ease;
}

.services-carousel-two .owl-nav .owl-prev {
    left: 15px;
}

    .services-carousel-two .owl-nav .owl-prev:hover {
        background: #c8A66A !important;
    }

    .services-carousel-two .owl-nav .owl-prev i {
        color: #fff;
        font-size: 18px;
        line-height: 55px;
        transition: all 0.3s ease;
    }

    .services-carousel-two .owl-nav .owl-prev:hover i {
        color: #fff;
    }

.services-carousel-three.owl-carousel .owl-nav {
    margin-top: 30px;
}

    .services-carousel-three.owl-carousel .owl-nav button.owl-prev, .services-carousel-three.owl-carousel .owl-nav button.owl-next {
        width: 57px;
        height: 57px;
        background-color: rgba(255,255,255,0.1) !important;
        border-radius: 50%;
        line-height: 58px;
        color: #fff !important;
        margin: 5px;
    }

    .services-carousel-three.owl-carousel .owl-nav.owl-nav i {
        color: rgba(255,255,255,0.4) !important;
    }

    .services-carousel-three.owl-carousel .owl-nav [class*='owl-'] i {
        transition: .4s;
    }

    .services-carousel-three.owl-carousel .owl-nav [class*='owl-']:hover, .services-carousel-three.owl-carousel .owl-nav [class*='owl-']:active, .services-carousel-three.owl-carousel .owl-nav [class*='owl-']:focus {
        background: #c8A66A !important;
        transition: .4s;
    }

        .services-carousel-three.owl-carousel .owl-nav [class*='owl-']:hover i, .services-carousel-three.owl-carousel .owl-nav [class*='owl-']:active i, .services-carousel-three.owl-carousel .owl-nav [class*='owl-']:focus i {
            color: #fff;
        }

@media screen and (max-width: 1599px) {
    .services-carousel-three.owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .services-carousel-three.owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
}

@media screen and (max-width: 1199px) {
    .services-carousel-three.owl-carousel .owl-nav button.owl-prev, .services-carousel-three.owl-carousel .owl-nav button.owl-next {
        width: 47px;
        height: 47px;
        line-height: 48px;
    }
}

.pagination {
    border-radius: 0;
}

    .pagination ul {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        margin: 0 auto;
        padding: 0;
    }

    .pagination li {
        display: inline;
    }

    .pagination a {
        float: left;
        padding: 0 16px;
        line-height: 40px;
        text-decoration: none;
        border: 1px solid #dbdbdb;
        border-left-width: 0;
        background: #fff;
    }

        .pagination a:hover {
            background-color: #121c22;
            color: #fff;
        }

    .pagination .active a {
        background-color: #f7f7f7;
        color: #999;
        cursor: default;
    }

    .pagination .disabled span {
        color: #999;
        background-color: transparent;
        cursor: default;
    }

    .pagination .disabled a {
        color: #999;
        background-color: transparent;
        cursor: default;
    }

        .pagination .disabled a:hover {
            color: #999;
            background-color: transparent;
            cursor: default;
        }

    .pagination li:first-child a {
        border-left-width: 1px;
    }

.page-item:not(:first-child) .page-link {
    margin-left: 0;
}

.pagination-style01 {
    margin-top: 4%;
    width: 100%;
    display: flex;
    justify-content: center;
}

    .pagination-style01 ul {
        font-weight: 500;
        font-size: 13px;
        margin-bottom: 0;
        padding-left: 0;
    }

        .pagination-style01 ul li {
            list-style: none;
        }

            .pagination-style01 ul li a {
                border: 0;
                padding: 0 2px;
                margin: 0 7px;
                background: 0 0;
                color: #828282;
                min-width: 45px;
                font-size: inherit;
                text-align: center;
                -webkit-border-radius: 100%;
                border-radius: 100%;
                line-height: 45px;
                min-height: 45px;
                display: block;
                transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            }

                .pagination-style01 ul li a i {
                    line-height: 40px;
                    font-size: 18px;
                    display: inline-block;
                }

            .pagination-style01 ul li.active a {
                background: #121c22;
                color: #fff;
                box-shadow: 0 0 10px rgba(23,23,23,0.15) !important;
            }

            .pagination-style01 ul li a:hover {
                background: #fff;
                color: #121c22;
                box-shadow: 0 0 10px rgba(23,23,23,0.15) !important;
            }

@media screen and (max-width: 575px) {
    .pagination-style01 ul {
        margin-top: 10px;
    }

        .pagination-style01 ul li a {
            min-width: 40px;
            min-height: 40px;
            line-height: 40px;
            margin: 0 4px;
        }
}

.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.pause-on-hover:hover, .pause-on-hover:active, .pause-on-hover:focus {
    animation-play-state: paused;
}

.scroll-left {
    animation-name: scroll-left;
}

.scroll-right {
    animation-name: scroll-right;
}

.scroll-group {
    display: inline-flex;
    white-space: nowrap;
}

.scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

    .scroll-item.with-img {
        min-width: 90px;
        height: auto;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: inline-flex;
    }

        .scroll-item.with-img img {
            vertical-align: middle;
        }

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

.scroll-speed-1 {
    animation-duration: 10s;
}

.scroll-speed-2 {
    animation-duration: 15s;
}

.scroll-speed-3 {
    animation-duration: 20s;
}

.scroll-speed-4 {
    animation-duration: 30s;
}

.scroll-speed-5 {
    animation-duration: 40s;
}

.scroll-speed-6 {
    animation-duration: 60s;
}

.scroll-speed-7 {
    animation-duration: 80s;
}

.scroll-speed-8 {
    animation-duration: 100s;
}

.scroll-speed-9 {
    animation-duration: 120s;
}

.scroll-icon-rotated {
    -webkit-animation: icon-rotated 2s linear infinite;
    animation: icon-rotated 2s linear infinite;
}

@keyframes icon-rotated {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.accordion .card {
    background: #fff;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0;
}

    .accordion .card:last-child {
        margin-bottom: 0;
    }

.accordion .card-header {
    border: 0;
    padding: 0;
    background: none;
}

.accordion .accordion-collapse {
    border: none;
}

.accordion .accordion-button {
    border-bottom: none;
    color: #fff;
    font-size: 16px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 16px 64px 16px 20px;
    text-decoration: none;
    background: #c8A66A;
    border: 1px solid transparent;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

    .accordion .accordion-button:hover, .accordion .accordion-button:active, .accordion .accordion-button:focus {
        text-decoration: none;
    }

    .accordion .accordion-button.collapsed {
        background: #fff;
        color: #4B4B4B;
        border: 1px solid #E0E0E0;
        border-radius: 5px;
        background-color: transparent;
    }

        .accordion .accordion-button.collapsed:after {
            background: #c8A66A;
            border: none;
            content: "+";
            right: 20px;
            left: inherit;
            font-size: 18px;
            transform: none;
            width: 25px;
            height: 25px;
            line-height: 20px;
            top: 14px;
            border-radius: 5px;
            text-align: center;
            color: #fff;
        }

    .accordion .accordion-button:after {
        background: #fff;
        border: none;
        content: "-";
        right: 20px;
        border-radius: 5px;
        left: inherit;
        font-size: 18px;
        border: 1px solid #fff;
        transform: none;
        width: 25px;
        height: 25px;
        line-height: 21px;
        top: 14px;
        position: absolute;
        color: #121c22;
        text-align: center;
    }

.accordion .card-body {
    color: #4B4B4B;
    font-size: 15px;
    padding: 20px 25px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #E0E0E0;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

@media screen and (max-width: 991px) {
    .accordion-style .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px;
    }

        .accordion-style .accordion-button.collapsed:after, .accordion-style .accordion-button:after {
            right: 15px;
            font-size: 16px;
            height: 22px;
            line-height: 18px;
            width: 22px;
            top: 13px;
        }

    .accordion-style .card-body {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 575px) {
    .accordion.accordion-button {
        padding: 15px 50px 15px 15px;
    }
}

.accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-top: 0 !important;
    border: none;
    margin-bottom: 20px;
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background: none;
}

.accordion-style .btn-link {
    background: #fff;
    color: #c8A66A;
    line-height: 20px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 4px;
    padding: 20px 35px 20px 20px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

    .accordion-style .btn-link.collapsed {
        color: #121c22;
    }

    .accordion-style .btn-link:hover, .accordion-style .btn-link:active, .accordion-style .btn-link:focus {
        text-decoration: none;
        color: #c8A66A;
    }

    .accordion-style .btn-link.collapsed:after {
        background: none;
        content: "+";
        right: 15px;
        left: inherit;
        font-size: 20px;
        height: auto;
        transform: none;
        width: auto;
        top: 20px;
        color: #121c22;
    }

    .accordion-style .btn-link:after {
        background: none;
        content: "-";
        right: 17px;
        left: inherit;
        font-size: 20px;
        height: auto;
        transform: none;
        width: auto;
        top: 20px;
        position: absolute;
        color: #c8A66A;
    }

.accordion-style .card-body {
    padding: 0px 40px 30px 20px;
}

.accordion-style .card {
    box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
}

@media screen and (max-width: 991px) {
    .accordion-style .btn-link:after, .accordion-style .btn-link.collapsed:after {
        top: 20px;
    }

    .accordion-style .card-body {
        padding: 10px 25px 30px 25px;
    }
}

.accordion-style.style01 .card {
    border-bottom: 1px solid rgba(0,0,0,0.125) !important;
    border-radius: 0;
    border: none;
}

    .accordion-style.style01 .card:last-child {
        border-bottom: 0 !important;
    }

.accordion-style.style01 .btn-link {
    padding: 20px 45px 20px 0;
    font-weight: 700;
    background-color: unset;
    color: unset;
}

    .accordion-style.style01 .btn-link:active, .accordion-style.style01 .btn-link:focus {
        color: #c8A66A;
    }

    .accordion-style.style01 .btn-link:after {
        top: 20px;
        background-color: unset;
    }

.accordion-style.style01 .card-body {
    padding: 0 25px 30px 0;
}

.accordion-style.style02 .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0;
}

    .accordion-style.style02 .card:last-child {
        margin-bottom: 0;
    }

.accordion-style.style02 .card-header {
    border: 0;
    padding: 0;
    background: none;
}

.accordion-style.style02 .accordion-collapse {
    border: none;
}

.accordion-style.style02 .accordion-button {
    border-bottom: none;
    color: #fff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: #c8A66A;
    border: 1px solid transparent;
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
}

    .accordion-style.style02 .accordion-button:hover, .accordion-style.style02 .accordion-button:active, .accordion-style.style02 .accordion-button:focus {
        text-decoration: none;
    }

    .accordion-style.style02 .accordion-button.collapsed {
        background: #fff;
        color: #121c22;
        border: 1px solid #ededed;
        border-radius: 0.375rem;
    }

        .accordion-style.style02 .accordion-button.collapsed:after {
            background: #121c22;
            border: none;
            content: "+";
            right: 20px;
            left: inherit;
            font-size: 18px;
            transform: none;
            width: 25px;
            height: 25px;
            line-height: 20px;
            top: 18px;
            border-radius: 0.375rem;
            text-align: center;
            color: #fff;
        }

    .accordion-style.style02 .accordion-button:after {
        background: #fff;
        border: none;
        content: "-";
        right: 20px;
        border-radius: 0.375rem;
        left: inherit;
        font-size: 18px;
        border: 1px solid #fff;
        transform: none;
        width: 25px;
        height: 25px;
        line-height: 21px;
        top: 18px;
        position: absolute;
        color: #c8A66A;
        text-align: center;
    }

.accordion-style.style02 .card-body {
    color: #121c22;
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

@media screen and (max-width: 991px) {
    .accordion-style.style02 .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px;
    }

        .accordion-style.style02 .accordion-button.collapsed:after {
            right: 15px;
            font-size: 16px;
            height: 22px;
            line-height: 22px;
            width: 22px;
            top: 13px;
        }

    .accordion .accordion-button:after {
        right: 20px;
        font-size: 16px;
        height: 22px;
        line-height: 22px;
        width: 22px;
        top: 13px;
    }

    .accordion-style.style02 .card-body {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 575px) {
    .accordion-style.style02 .accordion-button {
        padding: 15px 50px 15px 15px;
    }
}

.accordion-style.style03 .btn-link {
    padding: 22px 35px;
    font-weight: 700;
    background: #121c22 !important;
    border-radius: 10px;
    color: #fff !important;
}

    .accordion-style.style03 .btn-link.collapsed {
        padding: 22px 35px;
        font-weight: 700;
        background: #fff;
        color: unset;
    }

.accordion-style.style03 .card {
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    background-color: #121c22;
    border-radius: 10px;
    border: 0;
}

.accordion-style.style03 .btn-link.collapsed:after, .accordion-style.style03 .btn-link:after {
    right: 35px;
    font-family: themify;
    font-size: 13px;
    background-color: transparent;
    color: #fff !important;
}

.accordion-style.style03 .card-body {
    padding: 0px 35px 30px 35px;
}

.accordion-style.style03 .card-header {
    border-bottom: 0;
}

.accordion-style.style03 .btn-link:after {
    content: "\e65a";
    top: 22px;
}

.accordion-style.style03 .btn-link.collapsed:after {
    content: "\e628";
    top: 22px;
}

.sidebar .widget {
    position: relative;
    display: block;
    background-color: #f8f9fa;
    border: 1px solid rgba(220,224,229,0.6);
    padding: 30px;
    border-radius: 0.375rem;
}

    .sidebar .widget h2 {
        color: #121c22;
    }

.sidebar .menu li {
    margin-bottom: 10px;
}

    .sidebar .menu li:last-child {
        margin-bottom: 0;
    }

    .sidebar .menu li a:hover, .sidebar .menu li.active a {
        color: #fff;
        background-color: #c8A66A;
        border: 1px solid #c8A66A;
    }

    .sidebar .menu li a {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        color: #121c22;
        background-color: #fff;
        padding: 15px 20px 15px 20px;
        border: 1px solid #e7e3e3;
        border-radius: 0.375rem;
    }

        .sidebar .menu li a:hover:before {
            background-color: #121c22;
        }

    .sidebar .menu li.active a:before {
        background-color: #121c22;
    }

    .sidebar .menu li a::before {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 0px;
        top: 0px;
        width: 30px;
        height: 100%;
        background-color: #f4f5f4;
        text-align: center;
        font-size: 16px;
        color: #707582;
        transition: all 500ms ease;
    }

.blog-tags a {
    border: 1px solid #e8e9e8;
    background-color: #fff;
    padding: 7px 12px;
    color: #121c22;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    border-radius: 0.375rem;
}

    .blog-tags a:hover {
        border: 1px solid #c8A66A;
        background-color: #c8A66A;
        color: #fff;
    }

.contact-widget {
    min-height: 500px;
}

    .contact-widget:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(27,30,35,0) 0%, rgba(27,30,35,0.75) 54.02%, #1b1e23 100%);
    }

@media screen and (max-width: 575px) {
    .sidebar .widget {
        padding: 22px;
    }
}

.common-blockquote {
    background-color: #c8A66A;
    padding: 30px 35px;
    color: #FFFFFF;
    font-size: 20px;
    position: relative;
    margin: 0;
}

    .common-blockquote:before {
        content: '\e67f';
        font-family: 'themify';
        display: block;
        line-height: 1;
        margin-bottom: 15px;
        text-align: center;
        font-size: 40px;
    }

    .common-blockquote cite {
        display: block;
        text-align: right;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        font-style: normal;
    }

.portfolio-details-style01 .box-letter {
    background-color: #c8A66A;
    position: relative;
    z-index: 1;
    float: left;
    width: 1.5em;
    height: 1.5em;
    margin-top: 0.3em;
    margin-right: 0.5em;
    font-size: 1.75em;
    line-height: 1.55em;
    color: #fff;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    border-radius: 0.375rem;
}

.portfolio-details-style01 .portfolio-tag a {
    display: inline-block;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 0 9px;
    font-size: 14px !important;
    line-height: 28px;
    font-weight: 500;
    color: #121c22;
    background-color: transparent;
    transition: 0.4s;
    border-radius: 0.375rem;
    border: 1px solid #121c22;
}

    .portfolio-details-style01 .portfolio-tag a:last-child {
        margin-right: 0;
    }

    .portfolio-details-style01 .portfolio-tag a:hover {
        color: #fff;
        border-color: #c8A66A;
        background-color: #c8A66A;
    }

.portfolio-details-style01 .portfolio-social-icons a {
    width: 36px;
    height: 36px;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #121c22;
    border-radius: 0.375rem;
    margin-right: 12px;
    transition: all 0.4s;
}

    .portfolio-details-style01 .portfolio-social-icons a:last-child {
        margin-right: 0;
    }

    .portfolio-details-style01 .portfolio-social-icons a:hover {
        background-color: #c8A66A;
        color: #fff;
    }

.search-form_input {
    color: #c8A66A;
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        margin-bottom: .5rem;
    }

.form-control:focus {
    border-color: #c8A66A;
}

.form-check-input:checked {
    border-color: #c8A66A;
    background-color: #c8A66A;
}

.quform-input {
    position: relative;
}

    .quform-input .form-control {
        border-radius: 5px;
    }

    .quform-input .quform-errors-wrap {
        position: absolute;
        right: 8px;
        top: 0;
        line-height: normal;
        z-index: 1;
    }

.quform-element > label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 16px;
}

    .quform-element > label .quform-required {
        color: #cc0101;
        font-size: 10px;
    }

.quform-inner input {
    width: 100%;
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top;
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px;
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal;
}

    .quform-errors > .quform-error {
        padding: 0;
        background: none;
        border: none;
        float: none;
        color: #f5543f;
        font-size: 11px;
        line-height: normal;
        letter-spacing: normal;
    }

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
    border-color: #f5543f;
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-submit-inner {
    float: none;
}

.quform-loading-wrap {
    float: none;
}

    .quform-loading-wrap .quform-loading {
        display: inline-block;
    }

.light-validation .quform-errors > .quform-error {
    color: #fff;
}

.newsletter input {
    width: 100%;
    height: 50px;
}

.newsletter .newsletter-form .quform-submit-inner {
    position: absolute;
    right: 0;
    top: 1px;
    width: auto;
    height: 50px;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.newsletter .newsletter-form .quform-element .quform-input .form-control {
    min-height: 50px;
    border-radius: 4px;
    padding-left: 25px;
}

.newsletter .newsletter-form .quform-submit-inner button {
    padding: 14px 20px;
}

@media screen and (max-width: 992px) {
    .newsletter .newsletter-content i.ti-email {
        width: 80px;
        height: 70px;
        line-height: 70px;
        font-size: 35px;
    }
}

@media screen and (max-width: 991px) {
    .newsletter .newsletter-content {
        padding: 45px;
    }
}

@media screen and (max-width: 767px) {
    .newsletter .newsletter-content i.ti-email {
        width: 65px;
        height: 55px;
        line-height: 57px;
        font-size: 26px;
    }
}

.newsletter-style01 .form-control {
    min-height: 54px;
}

.newsletter-style02 .quform-submit-inner button {
    font-size: 18px;
    border: none;
    position: absolute;
    right: -10px;
    top: -1px;
    height: 55px;
    width: 55px;
    color: #fff;
    background: #121c22;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 0;
}

    .newsletter-style02 .quform-submit-inner button.newsletter-btn {
        right: 0;
        top: 0;
    }

.newsletter-style02 .quform-element .quform-input .form-control.news-box {
    min-height: 55px;
    border-radius: 5px;
    padding: 0 0 0 20px;
}

.newsletter-style03 .quform-elements {
    position: relative;
}

.newsletter-style03 .quform-submit-inner {
    position: absolute;
    right: 10px;
    top: 2px;
    width: auto;
}

.newsletter-style03 .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}

.newsletter-style03 input {
    border: 1px solid rgba(255,255,255,0.1);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1.5rem;
}

.newsletter-style03 .quform-has-error input {
    border-color: #f5543f;
}

.newsletter-rounded .quform-has-error textarea, .newsletter-rounded .quform-has-error select {
    border-color: #f5543f;
}

.newsletter-style03 .quform-input .quform-errors-wrap {
    right: 15px;
}

.newsletter-style03 i {
    font-size: 1.2rem;
    line-height: 2rem;
}

.newsletter-style04 {
    position: relative;
    padding: 40px 0 40px 40px;
    z-index: 1;
    background-color: #c8A66A;
}

    .newsletter-style04:after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 5000px;
        height: 100%;
        z-index: -1;
        background-color: #c8A66A;
    }

@media screen and (max-width: 991px) {
    .footer-logos {
        padding: 25px 0;
    }

    .newsletter-style04 {
        padding: 40px 0;
    }

        .newsletter-style04:after {
            left: -36px;
        }
}

@media screen and (max-width: 767px) {
    .newsletter-style04:after {
        left: -126px;
    }
}

@media screen and (max-width: 575px) {
    .newsletter-style04 {
        padding: 35px 0;
    }
}

.about-style01 .left-img {
    position: absolute;
    bottom: -50px;
    right: -15px;
}

.about-style02 .about-circle .about-text {
    width: 190px;
    height: 190px;
    color: white;
    padding: 10px;
    font-weight: 600;
    margin-top: -95px;
    position: relative;
    border-radius: 50%;
    background: #121c22;
    left: 28%;
}

    .about-style02 .about-circle .about-text .coloring {
        fill: white;
    }

    .about-style02 .about-circle .about-text svg {
        -webkit-animation: rotated_circle 12s linear infinite;
        animation: rotated_circle 12s linear infinite;
    }

    .about-style02 .about-circle .about-text .about-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-size: 55px;
        width: 120px;
        height: 120px;
        line-height: 120px;
        text-align: center;
        border-radius: 50%;
        border: 1px dashed white;
        padding: 25px;
    }

.about-style02 .about-author {
    background: #c8A66A;
    padding: 30px;
    margin-top: 70px;
}

    .about-style02 .about-author .author-img {
        z-index: 1;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        position: relative;
        margin-bottom: 25px;
    }

        .about-style02 .about-author .author-img img {
            border-radius: 50%;
            width: 120px;
        }

        .about-style02 .about-author .author-img:after {
            content: '';
            width: 100%;
            height: 100%;
            z-index: -1;
            position: absolute;
            left: 5px;
            top: 5px;
            background: white;
            border-radius: 50%;
        }

@media only screen and (max-width: 375px) {
    .about-style02 .about-author {
        padding-left: 35px;
        padding-right: 25px;
    }
}

@-webkit-keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@media only screen and (max-width: 1199px) {
    .about-style02 .about-circle .about-text {
        left: 33%;
    }
}

@media only screen and (max-width: 991px) {
    .about-style02 .about-author {
        margin-top: 30px;
    }

    .about-style02 .about-circle .about-text {
        left: 24%;
    }
}

.about-style03 .left-box {
    position: absolute;
    left: 40px;
    bottom: -25px;
    background-color: #c8A66A;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    text-align: center;
    width: 198px;
    padding: 44px 8px;
    z-index: 9;
}

.about-style03 .about-img {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.about-style03 .left-top-box {
    position: absolute;
    left: -20px;
    top: -10%;
    display: inline-block;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    width: 250px;
    z-index: 9;
}

.about-style03 .about-left:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -20px;
    left: 60px;
    clip-path: polygon(100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%, 25% 6.7%, 75% 6.7%);
    transform: rotate(30deg);
    background-color: rgba(252,82,32,0.06);
}

.about-style03 .about-left:after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -20px;
    left: 60px;
    clip-path: polygon(100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%, 25% 6.7%, 75% 6.7%);
    transform: rotate(30deg);
    background-color: transparent;
    border: 4px solid rgba(231,72,96,0.1);
}

@media screen and (max-width: 1399px) {
    .about-style03 .left-top-box {
        left: -6%;
    }

    .about-style03 .left-box {
        left: -30px;
    }
}

@media screen and (max-width: 1199px) {
    .about-style03 .about-left:before {
        left: -30px;
    }

    .about-style03 .left-top-box {
        left: -6%;
    }

    .about-style03 .left-box {
        left: -4%;
        bottom: -31%;
    }
}

@media screen and (max-width: 991px) {
    .about-style03 .about-left:before {
        left: 120px;
    }

    .about-style03 .left-top-box {
        left: 40px;
    }

    .about-style03 .left-box {
        left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .about-style03 .about-left:before, .about-style03 .left-top-box, .about-style03 .left-box {
        display: none;
    }
}

.service-style01 .service-item {
    position: relative;
    border-radius: 0.375rem;
}

    .service-style01 .service-item img {
        position: relative;
        border-radius: 0.375rem;
    }

.service-style01 .text {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 50px 60px 60px;
    z-index: 9;
}

    .service-style01 .text h4 a {
        font-weight: 800;
        color: #FFF;
        line-height: 1.2222222222;
    }

    .service-style01 .text span {
        display: block;
        color: #fff;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        margin-bottom: 20px;
    }

.service-style01 .service-item .service-btn {
    position: absolute;
    bottom: 71px;
    left: 56px;
}

    .service-style01 .service-item .service-btn a {
        opacity: 0;
        transition: all ease .35s;
        transform: translateY(50px);
        z-index: 9;
    }

.service-style01 .service-item:hover .service-btn a {
    opacity: 1;
    transform: translateY(0);
}

.service-style01 .service-item:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(18,28,34,0.4);
    opacity: 0;
    transition: all ease .35s;
    border-radius: 0.375rem;
}

.service-style01 .service-item:hover:before {
    opacity: 1;
}

.service-style01 .service-item:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(#121c22, transparent);
    opacity: 0.2;
    border-radius: 0.375rem;
}

@media screen and (max-width: 1399px) {
    .service-style01 .service-item .service-btn {
        bottom: 43px;
    }

    .service-style01 .text {
        padding: 50px 40px 60px 40px;
    }

    .service-style01 .service-item .service-btn {
        left: 40px;
    }
}

@media screen and (max-width: 575px) {
    .service-style01 .text {
        padding: 30px 30px 40px 30px;
    }

    .service-style01 .service-item .service-btn {
        left: 30px;
    }
}

.portfolio-carousel-one .portfolio-block {
    padding: 4.5rem;
    display: flex;
    justify-content: end;
    align-items: start;
    width: 100%;
}

    .portfolio-carousel-one .portfolio-block .overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: .6;
        top: 0;
        left: 0;
        background-color: #000;
    }

    .portfolio-carousel-one .portfolio-block .inner-block {
        position: relative;
        display: flex;
        width: 53%;
        flex-direction: column;
        padding-top: 0;
        background-color: #fff;
        border-radius: 0.375rem;
        transition: all 0s ease-in-out !important;
        -moz-transition: all 0s ease-in-out !important;
        -webkit-transition: all 0s ease-in-out !important;
        -ms-transition: all 0s ease-in-out !important;
        -o-transition: all 0s ease-in-out !important;
        z-index: 1;
        padding: 0 4.5rem 4.5rem 4.5rem;
        opacity: 0;
    }

        .portfolio-carousel-one .portfolio-block .inner-block h4 {
            margin-top: -72px;
            margin-right: -25px;
            width: 75px;
            text-align: center;
            padding-bottom: 15px;
            padding-top: 6rem;
            margin-bottom: 2.5rem;
            background-color: #c8A66A;
            font-weight: 500;
            color: #fff;
            align-self: end;
            font-size: 2.85rem;
            border-bottom-left-radius: 0.375rem;
            border-bottom-right-radius: 0.375rem;
            line-height: 3.4rem;
        }

        .portfolio-carousel-one .portfolio-block .inner-block h5 {
            color: #121c22;
            font-size: 2.3rem;
            margin-bottom: 25px;
        }

        .portfolio-carousel-one .portfolio-block .inner-block p {
            line-height: 32px;
            margin-bottom: 25px;
        }

        .portfolio-carousel-one .portfolio-block .inner-block a .ti-arrow-right {
            font-size: 15px;
            display: inline-block;
            margin-left: 15px;
            vertical-align: middle;
        }

.portfolio-carousel-one .owl-nav {
    position: absolute;
    right: 17%;
    top: -24%;
}

.portfolio-carousel-one.owl-carousel .owl-nav.disabled, .portfolio-carousel-one.owl-carousel .owl-dots.disabled {
    display: block;
}

.portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next {
    background-color: #c8A66A !important;
    width: 60px;
    height: 60px;
    line-height: 0;
    border-radius: 50%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .3s;
    margin: 5px;
    transition: .3s;
}

    .portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev i, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next i {
        color: #fff !important;
        font-size: 18px;
    }

    .portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev:hover, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next:hover {
        background-color: #121c22 !important;
    }

.portfolio-carousel-one .owl-item.active.center .portfolio-block .overlay {
    opacity: 0.2;
}

.portfolio-carousel-one .owl-item.active.center .portfolio-block .inner-block {
    opacity: 1;
}

@media screen and (max-width: 1599px) {
    .portfolio-carousel-one .portfolio-block {
        padding: 2.6rem;
    }

        .portfolio-carousel-one .portfolio-block .inner-block {
            width: 63%;
            padding: 0 3.5rem 3.5rem 3.5rem;
        }
}

@media screen and (max-width: 1399px) {
    .portfolio-carousel-one .portfolio-block .inner-block {
        width: 73%;
        padding: 0 3rem 3rem 3rem;
    }
}

@media screen and (max-width: 1199px) {
    .portfolio-carousel-one .portfolio-block .inner-block {
        width: 100%;
        padding: 0 2rem 2rem 2rem;
    }

        .portfolio-carousel-one .portfolio-block .inner-block h4 {
            margin-bottom: 1rem;
            margin-right: -10px;
        }

        .portfolio-carousel-one .portfolio-block .inner-block h5 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

    .portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next {
        width: 50px;
        height: 50px;
        line-height: 0;
    }

        .portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev span, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next span {
            font-size: 16px;
        }
}

@media screen and (max-width: 991px) {
    .portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next {
        display: none;
    }

    .portfolio-carousel-one .portfolio-block .inner-block h4 {
        margin-top: -92px;
        margin-right: -10px;
        padding-bottom: 8px;
        font-size: 2.05rem;
    }
}

@media screen and (max-width: 575px) {
    .portfolio-carousel-one .portfolio-block {
        padding: 1.6rem;
    }

        .portfolio-carousel-one .portfolio-block .inner-block h5 {
            font-size: 1.5rem;
        }
}

.portfolio-style01 {
    position: relative;
}

    .portfolio-style01:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #1e1d1d;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 1;
        -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        border-radius: .375rem;
    }

    .portfolio-style01 .portfolio-img {
        position: relative;
        overflow: hidden;
        -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        border-radius: 0.375rem;
    }

    .portfolio-style01 .portfolio-inner {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        padding-top: 40px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: flex-end;
        -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    }

        .portfolio-style01 .portfolio-inner .portfolio-icon {
            margin-top: 0;
            transform-style: inherit;
            z-index: 1;
            margin-right: 30px;
            margin-left: auto;
            margin-bottom: auto;
            -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
            transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        }

            .portfolio-style01 .portfolio-inner .portfolio-icon i {
                font-size: 28px;
                color: #fff;
                display: inline-block;
                -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
                transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
            }

        .portfolio-style01 .portfolio-inner .portfolio-heading {
            font-size: 22px;
            overflow: hidden;
            -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
            transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
        }

            .portfolio-style01 .portfolio-inner .portfolio-heading h4 {
                opacity: 0;
                display: block;
                will-change: transform;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                -webkit-transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
                transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
            }

        .portfolio-style01 .portfolio-inner .portfolio-subtitle {
            overflow: hidden;
            opacity: 0.6;
            -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
            transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
            color: #fff;
            line-height: 28px;
            font-size: 15px;
        }

            .portfolio-style01 .portfolio-inner .portfolio-subtitle span {
                opacity: 0;
                display: block;
                will-change: transform;
                -webkit-transform: translateY(50%);
                transform: translateY(50%);
                -webkit-transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
                transition: all 0.5s cubic-bezier(0.37, 0.31, 0.2, 0.85);
            }

    .portfolio-style01:hover .portfolio-inner {
        opacity: 1;
    }

        .portfolio-style01:hover .portfolio-inner .portfolio-heading h4 {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

        .portfolio-style01:hover .portfolio-inner .portfolio-subtitle span {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }

    .portfolio-style01:hover:before {
        opacity: 0.5;
        overflow: visible;
    }

.process-style01 .process-block {
    position: relative;
    background-color: #f4f4f4;
    border-radius: 0.375rem;
    padding: 40px 40px 0 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

    .process-style01 .process-block:before {
        content: '';
        display: block;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        background: #121c22;
        width: 100%;
        height: 0;
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

    .process-style01 .process-block:hover:before {
        height: 100%;
        top: 0;
        bottom: auto;
    }

    .process-style01 .process-block .process-content {
        position: relative;
        margin-bottom: 15px;
        z-index: 1;
    }

        .process-style01 .process-block .process-content h3 {
            font-size: 16px;
            text-transform: uppercase;
            color: #c8A66A;
            margin-bottom: 10px;
            transition: all 0.3s ease-in-out;
        }

    .process-style01 .process-block:hover .process-content h3 {
        color: #fff;
    }

    .process-style01 .process-block .process-content h2 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 10px;
        color: #121c22;
        transition: all 0.3s ease-in-out;
    }

    .process-style01 .process-block:hover .process-content h2 {
        color: #fff;
    }

    .process-style01 .process-block .process-content p {
        margin-bottom: 0;
        transition: all 0.3s ease-in-out;
    }

    .process-style01 .process-block:hover .process-content p {
        color: #fff;
    }

    .process-style01 .process-block .process-num {
        position: relative;
        margin-bottom: -35px;
        z-index: 1;
    }

        .process-style01 .process-block .process-num h2 {
            font-size: 100px;
            font-weight: 700;
            letter-spacing: 0.03em;
            color: transparent;
            stroke-width: 10px;
            -webkit-text-stroke-width: 1px;
            stroke: #808080;
            -webkit-text-stroke-color: #808080;
            opacity: 15%;
            transition: all 0.4s ease-in-out;
        }

    .process-style01 .process-block:hover .process-num h2 {
        stroke: #fff;
        -webkit-text-stroke-color: #fff;
    }

@media screen and (max-width: 1199px) {
    .process-style01 .process-block {
        padding: 30px 30px 0 30px;
        margin-bottom: 17px;
    }

        .process-style01 .process-block .process-num h2 {
            font-size: 79px;
        }
}

@media screen and (max-width: 575px) {
    .process-style01 .process-block {
        padding: 25px 25px 0 25px;
    }

        .process-style01 .process-block .process-content {
            margin-bottom: 10px;
        }

        .process-style01 .process-block .process-num {
            margin-bottom: -32px;
        }
}

.counter-style01 .title-text h2 {
    font-size: 7.25rem;
    line-height: 1;
    font-weight: 800;
}

.counter-style01 .about-text {
    width: 104px;
    height: 104px;
    color: #121c22;
    font-weight: 600;
    margin-top: 30px;
    position: relative;
    border-radius: 50%;
    right: 0px;
}

    .counter-style01 .about-text .coloring {
        fill: #121c22;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .counter-style01 .about-text svg {
        -webkit-animation: rotated_circle 12s linear infinite;
        animation: rotated_circle 12s linear infinite;
    }

    .counter-style01 .about-text .about-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        line-height: 1;
    }

@media screen and (max-width: 1399px) {
    .counter-style01 .title-text h2 {
        font-size: 6.25rem;
    }
}

@media screen and (max-width: 1199px) {
    .counter-style01 .about-text {
        right: -100px;
    }
}

@media screen and (max-width: 991px) {
    .counter-style01 .title-text h2 {
        font-size: 5.35rem;
    }

    .counter-style01 .about-text {
        right: -50px;
    }
}

@media screen and (max-width: 767px) {
    .counter-style01 .title-text h2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 575px) {
    .counter-style01 .title-text h2 {
        font-size: 2.3rem;
    }
}

.counter-style03 .count-no {
    font-size: 70px;
    line-height: 80px;
    font-weight: 800;
    margin-bottom: 0;
    color: #c8A66A;
}

.counter-style03 h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 30px;
}

@media screen and (max-width: 575px) {
    .counter-style03 span {
        font-size: 50px;
        line-height: 50px;
    }
}

.contact-style02 {
    background-size: auto !important;
    background-position: bottom center;
    background-repeat: no-repeat;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
}

    .contact-style02 .contact-text {
        -webkit-text-stroke: 1px #c8A66A;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 120px;
        font-weight: 700;
        line-height: .8em;
        letter-spacing: -3.6px;
    }

@media screen and (max-width: 1399px) {
    .contact-style02 .contact-text {
        font-size: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .contact-style02 .contact-text {
        font-size: 90px;
    }
}

@media screen and (max-width: 575px) {
    .contact-style02 .contact-text {
        font-size: 64px;
    }
}

.team-details-style01 .icon {
    border: 1px solid #c8A66A;
    line-height: 1;
    border-radius: 0.375rem;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-details-style01 .progress {
    height: 10px;
}

.team-details-style01 .progress-text {
    font-size: 18px;
    font-weight: 400;
    color: #121c22;
    line-height: 1.1em;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .team-details-style01 .progress-text {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .team-details-style01 .progress-text {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

.client-style01 .client-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .client-style01 .client-wrap .client-item {
        width: 20%;
        display: flex;
        justify-content: center;
        padding: 44px 30px;
        align-items: center;
        position: relative;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        border-right: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
    }

        .client-style01 .client-wrap .client-item::before {
            position: absolute;
            border-bottom: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 4px;
            content: "";
            background: #121c22;
            opacity: 0;
            transition: .3s;
            -webkit-transition: .3s;
            -moz-transition: .3s;
            -ms-transition: .3s;
            -o-transition: .3s;
        }

        .client-style01 .client-wrap .client-item:nth-child(6), .client-style01 .client-wrap .client-item:nth-child(7), .client-style01 .client-wrap .client-item:nth-child(8), .client-style01 .client-wrap .client-item:nth-child(9), .client-style01 .client-wrap .client-item:nth-child(10) {
            border-bottom: 0;
        }

        .client-style01 .client-wrap .client-item:nth-child(5), .client-style01 .client-wrap .client-item:last-child {
            border-right: 0;
        }

        .client-style01 .client-wrap .client-item:hover {
            background: #c8A66A;
            box-shadow: 0px 16px 32px 0px rgba(0,62,131,0.2);
        }

            .client-style01 .client-wrap .client-item:hover::before {
                opacity: 1;
            }

        .client-style01 .client-wrap .client-item img {
            transition: .3s;
            -webkit-transition: .3s;
            -moz-transition: .3s;
            -ms-transition: .3s;
            -o-transition: .3s;
        }

        .client-style01 .client-wrap .client-item:hover img {
            filter: brightness(0) invert(1);
        }

        .client-style01 .client-wrap .client-item a {
            max-width: 140px;
        }

.client-style01 .client-item {
    width: 33.33%;
}

@media screen and (max-width: 991px) {
    .client-style01 .client-wrap .client-item {
        width: 33.33%;
    }

        .client-style01 .client-wrap .client-item:nth-child(5) {
            border-right: 1px solid #eeeeee;
        }

        .client-style01 .client-wrap .client-item:last-child {
            border-left: 1px solid #eeeeee;
            border-right: 1px solid #eeeeee;
        }

        .client-style01 .client-wrap .client-item:nth-child(6) {
            border-bottom: 1px solid #eeeeee;
            border-right: 0;
        }

        .client-style01 .client-wrap .client-item:nth-child(3), .client-style01 .client-wrap .client-item:nth-child(9) {
            border-right: 0;
        }

        .client-style01 .client-wrap .client-item:nth-child(7), .client-style01 .client-wrap .client-item:nth-child(8), .client-style01 .client-wrap .client-item:nth-child(9) {
            border-bottom: 1px solid #eeeeee;
        }
}

@media screen and (max-width: 767px) {
    .client-style01 .client-wrap .client-item {
        width: 50%;
        padding: 35px 30px;
    }

        .client-style01 .client-wrap .client-item:nth-child(2), .client-style01 .client-wrap .client-item:nth-child(4), .client-style01 .client-wrap .client-item:nth-child(6), .client-style01 .client-wrap .client-item:nth-child(8), .client-style01 .client-wrap .client-item:last-child {
            border-right: 0;
            border-left: 0;
        }

        .client-style01 .client-wrap .client-item:nth-child(3) {
            border-right: 1px solid #eeeeee;
        }

        .client-style01 .client-wrap .client-item:nth-child(5) {
            border-left: 0;
        }

        .client-style01 .client-wrap .client-item:nth-child(9) {
            border-bottom: 0;
            border-right: 1px solid #eeeeee;
        }
}

.progress-style01 .progress {
    height: 8px;
}

    .progress-style01 .progress .progress-bar {
        background-color: #c8A66A;
    }

.coming-soon .newsletter-form .quform-elements {
    position: relative;
}

.coming-soon .newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px;
}

    .coming-soon .newsletter-form .quform-submit-inner .btn {
        padding: 0.500rem 1.15rem;
    }

.coming-soon .newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}

.coming-soon .newsletter-form input {
    border: 1px solid transparent;
    background-color: #121c22;
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
}

.coming-soon .newsletter-form .form-control:focus, .coming-soon .newsletter-form .form-control:active {
    background-color: #121c22;
    color: #fff;
}

.coming-soon .newsletter-form .quform-has-error input, .coming-soon .newsletter-form .quform-has-error textarea, .coming-soon .newsletter-form .quform-has-error select {
    border-color: #f5543f;
}

.coming-soon .newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}

.coming-soon .newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}

.countdown {
    padding: 0;
}

    .countdown li {
        background: #121c22;
        display: inline-block;
        text-align: center;
        min-width: 130px;
        padding: 25px;
        border: 1px solid #ededed;
        margin: 0 5px;
        border-radius: 0.375rem;
    }

        .countdown li span {
            font-size: 40px;
            font-weight: 600;
            text-align: center;
            line-height: normal;
            position: relative;
            color: #fff;
        }

            .countdown li span:before {
                content: "";
                height: 1px;
                position: absolute;
                width: 100%;
            }

        .countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            margin: 0;
            padding: 0;
            text-transform: capitalize;
        }

.coming-soon > .bg-img {
    content: "";
    position: absolute !important;
    width: 65%;
    height: 100vh;
    top: 0;
    right: 0;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
    .countdown li {
        min-width: 115px;
        padding: 20px;
    }

        .countdown li span {
            font-size: 35px;
        }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 98px;
        padding: 15px;
        margin: 10px 5px;
    }

        .countdown li span {
            font-size: 30px;
        }

    .coming-soon:before {
        width: 100%;
    }
}

.wrapper-error h1 {
    font-weight: 800;
    font-size: 300px;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .wrapper-error h1 span {
        width: 226px;
        height: 226px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #c8A66A;
        border-radius: 50%;
    }

        .wrapper-error h1 span i {
            font-size: 90px;
            width: 140px;
            height: 140px;
            background-color: #c8A66A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

.wrapper-error h2 {
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

@media screen and (max-width: 1199px) {
    .wrapper-error h2 {
        font-size: 90px;
    }
}

@media screen and (max-width: 767px) {
    .wrapper-error h1 {
        font-size: 240px;
    }

        .wrapper-error h1 span {
            width: 196px;
            height: 196px;
        }

    .wrapper-error h2 {
        font-size: 60px;
    }
}

@media screen and (max-width: 575px) {
    .wrapper-error h1 {
        font-size: 145px;
    }

        .wrapper-error h1 span {
            width: 106px;
            height: 106px;
        }

            .wrapper-error h1 span i {
                width: 70px;
                height: 70px;
                font-size: 50px;
            }

    .wrapper-error h2 {
        font-size: 35px;
    }
}

.map-h500 {
    height: 500px;
    width: 100%;
}

.testimonials-quote:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: -1px;
    right: -1px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    overflow: hidden;
    font-size: 7px;
    font-weight: 400;
    text-align: center;
    text-indent: 1px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
}

.testimonials-quote img {
    max-width: 20px;
    position: absolute;
    bottom: 5px;
    right: 3px;
    z-index: 9;
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.prev-page, .next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
}

    .prev-page:before, .next-page:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(255,255,255,0);
        box-shadow: 0 0 0 0 rgba(34,35,40,0);
        transform: scale(1.04, 1.12);
        transition: .3s ease-in-out;
        pointer-events: none;
        border-radius: 0.375rem;
    }

    .prev-page .page-info > a, .next-page .page-info > a {
        display: flex;
        align-items: center;
        position: relative;
        padding: 16px 20px;
        min-height: 110px;
        transition: 0.8s;
    }

    .prev-page .page-info .image-prev, .prev-page .page-info .image-next {
        position: relative;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        vertical-align: middle;
        transition: inherit;
        overflow: hidden;
    }

    .next-page .page-info .image-prev, .next-page .page-info .image-next {
        position: relative;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        vertical-align: middle;
        transition: inherit;
        overflow: hidden;
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        color: #121c22;
        word-wrap: break-word;
        vertical-align: middle;
        transition: 0.45s;
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        color: #121c22;
        word-wrap: break-word;
        vertical-align: middle;
        transition: 0.45s;
    }

    .prev-page .page-info .prev-title:empty, .prev-page .page-info .next-title:empty {
        display: none;
    }

    .next-page .page-info .prev-title:empty, .next-page .page-info .next-title:empty {
        display: none;
    }

    .prev-page:hover:before, .next-page:hover:before {
        background-color: white;
        transform: scale(1);
        box-shadow: 0 10px 30px 0 rgba(34,35,40,0.1);
    }

    .prev-page a {
        justify-content: flex-start;
        text-align: left;
    }

        .prev-page a:hover .image-prev:after {
            visibility: visible;
            opacity: 1;
        }

        .prev-page a:hover .image-prev:before {
            visibility: visible;
            opacity: 1;
            margin-left: 0;
        }

    .prev-page .image-prev {
        margin-right: 20px;
    }

        .prev-page .image-prev:after {
            background-color: #c8A66A;
        }

    .next-page .image-next:after {
        background-color: #c8A66A;
    }

    .prev-page .image-prev:before {
        display: block;
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        margin-left: 20px;
        content: "\e64a";
        font-family: 'themify';
        font-size: 21px;
        line-height: 70px;
        color: #fff;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-in-out;
    }

    .prev-page .image-prev:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-in-out;
        border-radius: 0.375rem;
    }

.next-page {
    margin-left: auto;
}

    .next-page a {
        justify-content: flex-end;
        text-align: right;
    }

        .next-page a:hover .image-next:after {
            visibility: visible;
            opacity: 1;
        }

        .next-page a:hover .image-next:before {
            visibility: visible;
            opacity: 1;
            margin-right: 0;
        }

    .next-page .image-next {
        margin-left: 20px;
    }

        .next-page .image-next:before {
            display: block;
            position: absolute;
            z-index: 2;
            left: 0;
            right: 0;
            margin-right: 20px;
            content: "\e64a";
            font-family: 'themify';
            font-size: 21px;
            line-height: 70px;
            color: #fff;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out;
            transform: scaleX(-1);
        }

        .next-page .image-next:after {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out;
            border-radius: 0.375rem;
        }

    .next-page .next-title {
        text-align: right;
    }

.prev-link-page-info > span, .next-link-page-info > span {
    display: block;
}

.prev-link-page-info .date-details, .next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px;
}

    .prev-link-page-info .date-details > div, .prev-link-page-info .date-details > span {
        line-height: inherit;
        transition: 0.45s;
        font-weight: 500;
    }

    .next-link-page-info .date-details > div, .next-link-page-info .date-details > span {
        line-height: inherit;
        transition: 0.45s;
        font-weight: 500;
    }

    .prev-link-page-info .date-details:only-child, .next-link-page-info .date-details:only-child {
        margin-top: 0;
    }

@media (max-width: 767px) {
    .prev-page, .next-page {
        width: calc(100% - 20px);
        max-width: unset;
    }

        .prev-page + .next-page {
            margin-top: 0;
        }

    .page-navigation {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .prev-page .page-info > a, .next-page .page-info > a {
        padding: 10px;
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        max-width: 168px;
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        max-width: 168px;
    }
}

.vertical-timeline {
    position: relative;
    z-index: 1;
}

    .vertical-timeline:before {
        content: '';
        position: absolute;
        left: 50%;
        top: -6px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: rgba(252,82,32,0.4);
        margin-left: -4px;
    }

    .vertical-timeline:after {
        content: '\e64b';
        font-family: 'themify';
        font-size: 14px;
        position: absolute;
        left: 50%;
        bottom: -19px;
        color: #c8A66A;
        margin-left: -6px;
    }

    .vertical-timeline .timeline-items {
        padding-bottom: 40px;
    }

        .vertical-timeline .timeline-items:before {
            content: '';
            height: 100%;
            width: 1px;
            position: absolute;
            z-index: -1;
            top: 0;
            left: 50%;
            background-image: linear-gradient(0deg, #cbcbcb, #cbcbcb 50%, transparent 50%, transparent 100%);
            background-size: 20px 20px;
        }

    .vertical-timeline .item {
        display: flex;
        position: relative;
        transition: 0.3s;
    }

        .vertical-timeline .item:hover .count {
            background: #121c22;
            transition: 0.3s;
        }

        .vertical-timeline .item:not(:last-child) {
            margin-bottom: 70px;
        }

        .vertical-timeline .item:nth-child(even) .text {
            margin-left: 45px;
            margin-right: 0px;
            padding-left: 40px;
            padding-right: 50px;
            border-radius: 0.375rem 0.375rem 0.375rem 0.375rem;
        }

        .vertical-timeline .item:nth-child(odd) .count {
            margin-right: -30px;
        }

        .vertical-timeline .item:nth-child(odd) .icon {
            justify-content: flex-end;
        }

        .vertical-timeline .item:nth-child(odd) .timeline-circle:before {
            left: 100%;
        }

        .vertical-timeline .item:nth-child(even) {
            flex-direction: row-reverse;
            text-align: right;
        }

            .vertical-timeline .item:nth-child(even) .count {
                margin-left: -30px;
            }

            .vertical-timeline .item:nth-child(even) .icon {
                justify-content: flex-start;
            }

            .vertical-timeline .item:nth-child(even) .timeline-content {
                flex-direction: row-reverse;
            }

            .vertical-timeline .item:nth-child(even) .timeline-circle:before {
                right: 100%;
            }

    .vertical-timeline .icon, .vertical-timeline .timeline-content {
        flex-basis: calc(50% - 1px);
        transition: 0.5s;
        display: flex;
        align-items: center;
    }

    .vertical-timeline .timeline-circle {
        position: relative;
        margin: 0px 100px 0px 100px;
    }

        .vertical-timeline .timeline-circle .circle {
            position: absolute;
            top: 50%;
            border-radius: 50%;
            transition: 0.4s;
            top: calc(50% - 7px);
            left: -7px;
            width: 15px;
            height: 15px;
            background: #121c22;
        }

        .vertical-timeline .timeline-circle:before {
            content: '';
            height: 1px;
            position: absolute;
            top: 50%;
            background-image: linear-gradient(90deg, #cbcbcb, #cbcbcb 50%, transparent 50%, transparent 100%);
            background-size: 20px 20px;
            width: calc(100px + 30px);
        }

        .vertical-timeline .timeline-circle:after {
            content: '';
            position: absolute;
            border-radius: 50%;
            transition: 0.4s;
            top: calc(50% - 4px);
            left: -4px;
            width: 9px;
            height: 9px;
            background: #fff;
        }

    .vertical-timeline .text {
        box-shadow: 6px 7px 20px rgba(0,0,0,0.1);
        margin: 0px 45px 0px 0px;
        padding: 31px 40px 33px 50px;
        background-color: #ffffff;
    }

    .vertical-timeline .count {
        position: relative;
        font-size: 18px;
        width: 70px;
        height: 70px;
        text-align: center;
        line-height: 70px;
        border-radius: 50%;
        flex: 1 0 auto;
        color: #fff;
        background: #c8A66A;
    }

@media screen and (max-width: 1199px) {
    .vertical-timeline .text {
        margin: 0px 35px 0px 0px;
    }

    .vertical-timeline .item:nth-child(even) .text {
        margin-left: 35px;
    }
}

@media screen and (max-width: 991px) {
    .vertical-timeline .timeline-circle:before {
        width: calc(100px + -20px);
    }

    .vertical-timeline .text {
        margin: 0;
        padding: 20px 20px 20px 40px;
    }

    .vertical-timeline .count {
        width: 50px;
        height: 50px;
        font-size: 14px;
        line-height: 50px;
    }

    .vertical-timeline .item:nth-child(even) .text {
        margin: 0;
        padding-left: 20px;
        padding-right: 40px;
    }

    .vertical-timeline .timeline-circle {
        margin: 0px 30px 0px 30px;
    }
}

@media screen and (max-width: 767px) {
    .vertical-timeline:before, .vertical-timeline:after, .vertical-timeline .timeline-items:before {
        left: 10px;
    }

    .vertical-timeline .item:not(:last-child) {
        margin-bottom: 40px;
    }

    .vertical-timeline .timeline-content {
        order: 2;
        flex-basis: 70%;
    }

    .vertical-timeline .icon {
        order: 3;
        flex-basis: 30%;
    }

    .vertical-timeline .text {
        padding: 20px 20px 20px 30px;
    }

    .vertical-timeline .item:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }

        .vertical-timeline .item:nth-child(even) .text {
            padding-left: 30px;
            padding-right: 20px;
        }

    .vertical-timeline .item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }

        .vertical-timeline .item:nth-child(even) .count, .vertical-timeline .item:nth-child(odd) .count {
            margin-right: -20px;
            margin-left: 0;
        }

        .vertical-timeline .item:nth-child(even) .timeline-content, .vertical-timeline .item:nth-child(odd) .timeline-content {
            flex-direction: row;
        }

        .vertical-timeline .item:nth-child(even) .icon, .vertical-timeline .item:nth-child(odd) .icon {
            justify-content: center;
        }
}

footer {
    padding: 90px 0 0;
    background: #191919;
    color: #939393;
}

    footer h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 30px;
        line-height: 1;
        position: relative;
    }

        footer h3:after {
            content: '';
            display: block;
            width: 70px;
            height: 2px;
            background: #c8A66A;
            margin: 12px auto 0 auto;
        }

@media screen and (max-width: 767px) {
    footer {
        padding: 60px 0 0;
    }

        footer h3 {
            font-size: 16px;
        }
}

.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block;
}

.footer-bar {
    padding: 20px 0;
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
}

@media screen and (max-width: 991px) {
    .footer-bar {
        margin-top: 70px;
    }
}

@media screen and (max-width: 767px) {
    .footer-bar {
        margin-top: 60px;
    }
}

.contact-list-style01 {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .contact-list-style01 li {
        padding-bottom: 15px;
        margin-bottom: 15px;
        color: #ffffff;
        border-bottom: 1px dashed rgba(255,255,255,0.2);
    }

        .contact-list-style01 li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-list-style01 li a {
            color: #ffffff;
        }

    .contact-list-style01 a:hover {
        color: #c8A66A;
    }

@media screen and (max-width: 991px) {
    .contact-list-style01 li {
        font-size: 15px;
    }
}

.footer-list-style01 {
    margin: 0;
    padding: 0;
}

    .footer-list-style01 li {
        position: relative;
        list-style-type: none;
        color: #fff;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px dashed rgba(255,255,255,0.2);
    }

        .footer-list-style01 li a {
            color: #ffffff;
        }

            .footer-list-style01 li a:after {
    content: '\f061';
    font-weight: 700;
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    vertical-align: middle;
}

        .footer-list-style01 li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .footer-list-style01 li a:hover {
            color: #c8A66A;
        }

            .footer-list-style01 li a:hover:after {
                color: #c8A66A;
            }

.footer-list-style02 {
    margin: 0;
    padding: 0;
}

    .footer-list-style02 li {
        list-style-type: none;
        color: #fff;
        font-size: 14px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px dashed rgba(102,102,102,0.3);
    }

        .footer-list-style02 li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: 0;
        }

        .footer-list-style02 li a {
            color: #ffffff;
        }

            .footer-list-style02 li a:before {
                content: '\f105';
                font-weight: 700;
                font-family: Font Awesome\ 5 Free;
                color: #ffffff;
                padding-right: 8px;
                transition-duration: .3s;
            }

            .footer-list-style02 li a:hover {
                color: #c8A66A;
            }

                .footer-list-style02 li a:hover:before {
                    color: #c8A66A;
                }

.footer-hour-list {
    margin: 0;
    padding: 0;
}

    .footer-hour-list li {
        padding-bottom: 15px;
        display: flex;
        margin-bottom: 15px;
        border-bottom: 1px dashed rgba(102,102,102,0.4);
    }

        .footer-hour-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .footer-hour-list li i {
            padding-right: 20px;
            font-size: 20px;
            margin-top: 4px;
        }

.social-icon-style01 li {
    margin-right: 5px;
    display: inline-block;
}

    .social-icon-style01 li:last-child {
        margin-right: 0;
    }

    .social-icon-style01 li a {
        width: 50px;
        height: 50px;
        background: #fff;
        text-align: center;
        font-size: 16px;
        color: #121c22;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

        .social-icon-style01 li a:hover {
            color: #c8A66A;
        }

.social-icon-style02 {
    margin: 0;
    padding: 0;
    display: inline-block;
    list-style: none;
}

    .social-icon-style02 li {
        text-align: center;
        margin-right: 5px;
        display: inline-block;
    }

        .social-icon-style02 li:last-child {
            margin-right: 0;
        }

        .social-icon-style02 li a {
            color: #121c22;
            height: 40px;
            width: 40px;
            line-height: 40px;
            display: inline-block;
            font-size: 16px;
            background: #ffffff;
            height: 35px;
            width: 35px;
            font-size: 15px;
            line-height: 35px;
            border-radius: 5px;
        }

            .social-icon-style02 li a:hover {
                color: #ffffff;
                background-color: #c8A66A;
            }

@media screen and (max-width: 767px) {
    .social-icon-style02 li a {
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 13px;
    }
}

.social-icon-style03 {
    margin: 0;
    display: inline-block;
    padding: 0;
    list-style: none;
}

    .social-icon-style03 li {
        padding-right: 10px;
        display: inline-block;
    }

        .social-icon-style03 li a {
            color: #ffffff;
        }

    .social-icon-style03 a i {
        display: flex;
        color: #121c22;
        background: none;
        border-radius: 0.375rem;
        width: 35px;
        height: 35px;
        background: #fff;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-out 0s;
    }

        .social-icon-style03 a i:hover {
            background: #c8A66A;
            color: #ffffff;
        }

    .social-icon-style03 li:last-child {
        padding-right: 0;
    }

.social-icon-style04 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none;
}

    .social-icon-style04 li {
        vertical-align: middle;
        display: inline-block;
        margin-right: 5px;
    }

        .social-icon-style04 li a {
            display: inline-block;
            font-size: 14px;
            text-align: center;
            color: #ffffff;
            background: rgba(255,255,255,0.1);
            height: 41px;
            line-height: 41px;
            width: 41px;
        }

            .social-icon-style04 li a:hover {
                background: #c8A66A;
            }

        .social-icon-style04 li:last-child {
            margin-right: 0;
        }

.social-icon-style05 {
    margin-bottom: 0;
    list-style: none;
}

    .social-icon-style05 li {
        vertical-align: middle;
        display: inline-block;
        margin-right: 5px;
    }

        .social-icon-style05 li a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border-radius: 0.375rem;
            color: #ffffff;
            background: rgba(255,255,255,0.1);
            height: 41px;
            line-height: 41px;
            width: 41px;
        }

            .social-icon-style05 li a:hover, .social-icon-style05 li a:active, .social-icon-style05 li a:focus {
                background: #c8A66A;
                border-color: #c8A66A;
            }

                .social-icon-style05 li a:hover i, .social-icon-style05 li a:active i, .social-icon-style05 li a:focus i {
                    color: #fff;
                }

.social-icon-style06 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

    .social-icon-style06 li a {
        font-size: 14px;
        color: #fff;
        background: #121c22;
        display: flex;
        height: 41px;
        width: 41px;
        align-items: center;
        justify-content: center;
        border-radius: 0.375rem;
    }

        .social-icon-style06 li a:hover {
            background: #c8A66A;
        }

    .social-icon-style06 li:last-child {
        margin-right: 0;
    }

.social-icon-style07 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}

    .social-icon-style07 li {
        vertical-align: middle;
        display: inline-block;
        margin-right: 5px;
    }

        .social-icon-style07 li a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #ffffff;
            background: #121c22;
            height: 41px;
            width: 41px;
            border-radius: 0.375rem;
        }

            .social-icon-style07 li a:hover, .social-icon-style07 li a:active, .social-icon-style07 li a:focus {
                color: #fff;
                background: #c8A66A;
            }

        .social-icon-style07 li:last-child {
            margin-right: 0;
        }

        .social-icon-style07 li a.small {
            width: 30px;
            height: 30px;
            line-height: 30px;
            font-size: 11px;
        }

    .social-icon-style07.small li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

@media screen and (max-width: 991px) {
    .social-icon-style07.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
p.our-expe-ttl {
    color: #fff;
    font-weight: 800;
    font-size: 18px; line-height: 24px; padding: 20px 0;
}

header.header-style1 {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

@media screen and (min-width: 992px) {
    .top-position, .top-position1 {
        margin-top: 0px !important;
    }
}
/*PayPal Form*/
/*.paypal-section{
    background:#f6f8fb;
}*/

.payment-info h2{
    font-size:42px;
    font-weight:700;
}

.badge-payment{
    display:inline-block;
    padding:10px 18px;
    background:#0d6efd15;
    color:#0d6efd;
    border-radius:30px;
    font-weight:600;
}

.info-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.info-box .item{
    margin-bottom:15px;
    font-size:17px;
    font-weight:500;
}

.payment-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.payment-card label{
    font-weight:600;
    margin-bottom:8px;
}

.payment-card .form-control,
.payment-card .form-select{
    height:52px;
    border-radius:10px;
}

.paypal-btn{
    background:#FFC439;
    color:#111;
    border:none;
    height:55px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.paypal-btn:hover{
    background:#ffb800;
}
button.paypal-btn.w-100 img {
    width: 34px;
}
.payment-card-img img {
    width: 35px;
}