/* @import url('https://fonts.googleapis.com/css2?family=Alice&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    --primary-color: #dab589;
    --secondary-color: #4b3b24;
}
body{
    background-color: #000 !important;
    color: #fff !important;
}
html,body{
    overflow-x: hidden;
}
.banner-style01,
.video-banner,
.abs-sec {
  overflow-x: hidden;
}

* {
    overflow-wrap: normal !important;
    word-break: normal !important;
}
.slide p
#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 #dab589;
    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 #dab589;
    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: #dab589;
    text-decoration: none
}

.card,
.card .card-body {
    color: #42545e
}

/* .secondary-overlay[data-overlay-dark]:before {
    background: #4b3b24
} */

.yellow-overlay[data-overlay-dark]:before {
    background: #f9f6f1
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(31, 39, 50, 0.76);
    background: linear-gradient(-90deg, transparent, #4b3b24 35%)
}

.right-overlay-secondary[data-overlay-dark]:before {
    background: linear-gradient(270deg, #121418 15%, #4b3b24 100%);
    background-color: transparent
}

.text-primary,
.text-primary-hover:hover {
    color: #dab589 !important
}

.bg-light-yellow,
.bg-light-color {
    background-color: #f9f6f1
}

.bg-primary {
    background-color: #dab589 !important
}

.text-secondary,
.text-secondary-hover:hover {
    color: #4b3b24 !important
}

.bg-secondary {
    background-color: #4b3b24 !important
}

.text-dark,
.text-dark-hover:hover {
    color: #4b3b24 !important
}

.border-secondary-color {
    border-color: #4b3b24 !important
}

.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
}

.form-control {
    border-radius: 0
}

.primary-shadow {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08)
}

.text-white-hover:hover {
    color: #fff !important
}

.min-vh-100 {
    min-height: 100vh
}

.min-height-54 {
    min-height: 54px
}

.margin-bottom {
    margin-bottom: -10%
}

.image-hover {
    position: relative;
    display: block;
    overflow: hidden
}

.image-hover:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.image-hover:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.ani-left-right {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out
}

@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px)
    }

    65% {
        transform: translate(30px, 0)
    }

    100% {
        transform: translate(0px, 0px)
    }
}

.ani-top-bottom {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out
}

@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px)
    }

    65% {
        transform: translate(0, 30px)
    }

    100% {
        transform: translate(0px, 0px)
    }
}

#circle svg {
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 25s;
    -moz-animation-duration: 25s;
    -ms-animation-duration: 25s;
    -o-animation-duration: 25s;
    animation-duration: 25s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(360deg)
    }

    to {
        -webkit-transform: rotate(0)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(360deg)
    }

    to {
        -moz-transform: rotate(0)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(360deg)
    }

    to {
        -ms-transform: rotate(0)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(360deg)
    }

    to {
        -o-transform: rotate(0)
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0)
    }
}

.fill-white text {
    fill: #fff;
    font-size: 15px;
    letter-spacing: 0.3em
}

.ani-rotated {
    animation: rotated 10s infinite linear
}

@keyframes rotated {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.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 {
    list-style: none;
    padding-left: 0
}

.list-style01 li {
    position: relative;
    margin: 0 0 8px 0;
    color: #6f6c6c;
    display: flex;
    align-items: center
}

.list-style01 li:last-child {
    margin-bottom: 0
}

.list-style01 li:before {
    content: '\e64c';
    font-family: 'themify';
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    width: 20px;
    background-color: #dab589;
    margin-right: 14px
}

.list-style02 li {
    display: inline-block;
    margin-right: 2rem
}

.list-style02 li:last-child {
    margin-right: 0
}

.list-style02 li a {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase
}

.list-style02 li a:hover {
    color: #dab589
}

.list-style03 {
    list-style: none;
    padding-left: 0
}

.list-style03 li {
    position: relative;
    margin: 0 0 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.list-style03 li:last-child {
    margin-bottom: 0
}

.list-style03 li:after {
    content: '\e64c';
    font-family: 'themify';
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    width: 26px;
    background-color: #dab589
}

@media screen and (max-width: 575px) {
    .list-style03 li:after {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 10px
    }
}

.list-style04 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0
}

.list-style04 li:last-child {
    border-bottom: unset;
    padding-bottom: 0
}

.list-style05 li {
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.6)
}

.list-style05 li:last-child {
    margin-bottom: 0
}

.list-style05 li span {
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 3px;
    color: #fff;
    font-size: 16px
}

.btn-style1 {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    color: #ffffff;
    background: #dab589;
    padding: 12px 32px !important;
    border-radius: 0;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 2px
}

.btn-style1:hover {
    background: #4b3b24
}

.btn-style1 span {
    position: relative;
    z-index: 9;
    color: #ffffff
}

.btn-style1.secondary {
    background: #4b3b24
}

.btn-style1.secondary:before {
    border-color: #dab589
}

.btn-style1.white-hover:hover,
.btn-style1.white-hover:active,
.btn-style1.white-hover:focus {
    background: #fff;
    transition: all 0.4s ease-in-out 0s
}

.btn-style1.white-hover:hover span,
.btn-style1.white-hover:active span,
.btn-style1.white-hover:focus span {
    color: #4b3b24;
    transition: all 0.4s ease-in-out 0s
}

.btn-style1.white-border:before {
    border-color: #fff
}

.btn-style1.medium {
    padding: 12px 36px !important
}

.btn-style1.small {
    padding: 9px 27px !important;
    font-size: 15px
}

@media screen and (min-width: 992px) {

    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1 {
        color: #fff;
        border: 1px solid transparent
    }

    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:hover,
    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:active,
    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:focus,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1:hover,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1:active,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1:focus {
        color: #dab589;
        border: 1px solid #dab589
    }
}

@media screen and (max-width: 991px) {
    .btn-style1 {
        padding: 11px 25px !important;
        font-size: 14px
    }
}

@media screen and (max-width: 575px) {
    .btn-style1 {
        padding: 10px 22px !important;
        font-size: 12px
    }
}

.btn-style2 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #dab589;
    padding: 16px 29px 16px 29px;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    overflow: hidden;
    letter-spacing: 0.2em;
    z-index: 1
}

.btn-style2:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #4b3b24;
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: -1
}

.btn-style2:hover {
    color: #ffffff;
    z-index: 1
}

.btn-style2:hover:before {
    transform: translateY(0);
    width: 100%
}

@media screen and (max-width: 1199px) {
    .btn-style2 {
        padding: 14px 24px;
        font-size: 10px
    }
}

.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: #dab589 !important
}

.attr-nav>ul>li>a.butn {
    color: #fff
}

.navbar>ul>li.current>a:after {
    border-color: transparent #dab589 #dab589 transparent !important
}

.menu_area-light .navbar-nav li.current>a,
.menu_area-light .navbar-nav li.active>a {
    color: #dab589
}

.menu_area-light .navbar>ul>li.current>a:after {
    border-color: transparent #dab589 #dab589 transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
    color: #dab589
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
    color: #dab589
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
    color: #dab589
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #dab589 #dab589 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: #dab589
    }

    .menu_area-light .navbar>ul>li.has-sub>a:hover:after {
        border-color: #dab589
    }

    .menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #dab589
    }

    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #dab589
    }

    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
        border-color: transparent #dab589 #dab589 transparent
    }

    .header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
        border-color: transparent #dab589 #dab589 transparent
    }

    .header-style2.scrollHeader .navbar-nav li.current>a {
        color: #dab589
    }

    .header-style2.scrollHeader .navbar-nav li.current>a:hover {
        color: #dab589
    }

    .header-style2.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #dab589 #dab589 transparent
    }

    .header-style2 .navbar ul ul li.active>a {
        color: #dab589
    }

    .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: #dab589
    }

    .header-style2 .navbar-nav li.current>a,
    .header-style2 .navbar-nav li.active>a {
        color: #dab589
    }

    .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 #dab589 #dab589 transparent
    }
}

@media screen and (max-width: 991px) {
    
     .navbar-toggler-icon,
.navbar-toggler::before,
.navbar-toggler::after {
    display: none !important;
}

/* HEADER */
.header-style1 {
    background: #111;
    padding: 10px 0;
}

/* CUSTOM TOGGLER */
.custom-toggler {
    background: #dab589;
    width: 50px;
    height: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-toggler i {
    color: #fff;
    font-size: 22px;
}

    /*.header-style1 .navbar-toggler {*/
    /*    background: #dab589;*/
    /*    height: 50px;*/

    /*}*/

    /*.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: #dab589
}

.header-style2 .navbar>ul>li.current>a:after {
    border-color: transparent #dab589 #dab589 transparent
}

.header-style2.scrollHeader .navbar-nav li.current>a {
    color: #dab589
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: #dab589
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #dab589 #dab589 transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active>a {
        color: #dab589
    }

    .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: #dab589
    }

    .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: #dab589
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active>a {
        color: #dab589
    }

    .header-style3 .navbar-nav>li>a:hover,
    .header-style3 .navbar-nav>li>a:active,
    .header-style3 .navbar-nav>li>a:focus {
        color: #dab589
    }

    .header-style3 .navbar ul ul li.active>a {
        color: #dab589
    }

    .header-style3 .navbar-nav li.has-sub a:hover,
    .header-style3 .navbar-nav li.current>a {
        color: #dab589
    }

    .header-style3 .navbar-nav>li.has-sub>a:hover {
        color: #dab589
    }

    .header-style3 .navbar>ul>li.has-sub>a:hover:after,
    .header-style3 .navbar>ul>li.current>a:after {
        border-color: transparent #dab589 #dab589 transparent
    }

    .header-style3.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #dab589
    }

    .header-style3.scrollHeader .navbar>ul>li.has-sub>a:hover:after {
        border-color: transparent #dab589 #dab589 transparent
    }

    .header-style3.scrollHeader .navbar-nav>li.active>a {
        color: #dab589
    }

    .header-style3.scrollHeader .navbar-nav li.current>a {
        color: #dab589
    }

    .header-style3.scrollHeader .navbar-nav li.current>a:hover {
        color: #dab589
    }

    .header-style3.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #dab589 #dab589 transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: #dab589
    }

    .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 .owl-item {
    position: relative
}

.slider-fade1 h1 {
    margin-bottom: 25px;
    animation-delay: 1.2s
}

.slider-fade1 h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff
}

.slider-fade1 p {
    animation-delay: 0.8s
}

.slider-fade1 a {
    animation-delay: 1.6s
}

.slider-fade1 .owl-dots {
    display: none
}

.slider-fade1 .owl-nav button.owl-prev {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%)
}

.slider-fade1 .owl-nav button.owl-next {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%)
}

.slider-fade1 .owl-nav button.owl-prev i,
.slider-fade1 .owl-nav button.owl-next i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    border-radius: 50%;
    font-size: 22px
}

.slider-fade1.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: #dab589;
    border-radius: 50%
}

.slider-fade1.owl-theme .owl-nav i {
    color: #fff
}

@media screen and (max-width: 1200px) {

    .slider-fade1 .owl-nav button.owl-prev i,
    .slider-fade1 .owl-nav button.owl-next i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 18px
    }

    .slider-fade1 .owl-nav button.owl-prev {
        left: 0
    }

    .slider-fade1 .owl-nav button.owl-next {
        right: 0
    }
}
.banner-style01 .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.slider-fade1 .owl-stage {
    display: flex;
}

.slider-fade1 .owl-item {
    margin: 0 !important;
}

.slider-fade1 {
    overflow: hidden;
}
.banner-text-wrapper {
    background: rgba(0, 0, 0, 0.35); /* light transparent dark */
    padding: 25px 40px;
    display: inline-block;
    border-radius: 4px;
}
.banner-style01 .main-title {
    font-size: 50px;
    margin-bottom: 2rem;
    font-weight: 700 !important;
    line-height: 1.2;
     margin: 0;
}
/* Default state — visible */
.animate-title {
    opacity: 1;
    transform: translateY(0);
}

/* Animate only when slide becomes active */
.owl-item.active .animate-title {
    animation: fadeUpTitle 1.2s ease forwards;
}

@keyframes fadeUpTitle {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .main-title {
        font-size: 26px;
    }
    .banner-text-wrapper {
        padding: 15px 20px;
    }
}

.banner-style01 .slider-fade1:after {
    position: absolute;
    left: 0;
    bottom: -206px;
    width: 100%;
    height: 492px;
    z-index: 1;
    content: "";
    background-image: url(../img/content/shape-12.png);
    background-position: bottom center;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite
}
/* Controls */

.why-choose-wrapper {
    position: relative;
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #999999;
    /* background: rgb(247 243 237 / 38%); */
    color: #fff;
    font-size: 22px;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #999999;
    color: #000;
}
.slider-btn.next {
    margin-right: 100px;
}
.slider-btn.prev {
    margin-right: -60px;
}
.vision-slider-section,
.vision-slider-section .swiper,
.vision-slider-section .swiper-slide{
height:100vh;
padding: 0 !important;
}
@keyframes cloudMove {
    0% {
        background-position: -1920px 100%
    }

    100% {
        background-position: 0 100%
    }
}

@media screen and (max-width: 1399px) {
    .banner-style01 .main-title {
        font-size: 50px
    }
}

@media screen and (max-width: 991px) {
    .banner-style01 .main-title {
        font-size: 90px
    }
}

@media screen and (max-width: 767px) {
    .banner-style01 .main-title {
        font-size: 70px;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 575px) {
    .banner-style01 .main-title {
        font-size: 50px
    }
}

.banner-style02 .banner-content h1 {
    font-size: 84px
}

@media screen and (max-width: 991px) {
    .banner-style02 .banner-content h1 {
        font-size: 65px
    }
}

@media screen and (max-width: 575px) {
    .banner-style02 .banner-content h1 {
        font-size: 35px
    }
}

.banner-style03 .right-img img {
    border-radius: 9999px
}

.banner-style03 .banner-content h1 {
    font-size: 90px
}

@media screen and (max-width: 1200px) {
    .banner-style03 .banner-content h1 {
        font-size: 80px
    }
}

@media screen and (max-width: 767px) {
    .banner-style03 .banner-content h1 {
        font-size: 70px
    }
}

@media screen and (max-width: 575px) {
    .banner-style03 .banner-content h1 {
        font-size: 52px
    }
}

@media screen and (max-width: 479px) {
    .banner-style03 .banner-content h1 {
        font-size: 40px
    }
}

.section-title .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    color: #dab589;
    z-index: 9
}

.section-title h2 {
    position: relative;
    z-index: 9;
    font-size: 40px
}

.section-title .title:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 50px;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: #dab589
}

.section-title .title:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 9px;
    bottom: -17px;
    left: 53%;
    transform: translateX(-50%);
    background: #dab589
}

.section-title .section-start:before {
    content: '';
    position: absolute;
    left: 5% !important
}

.section-title .section-start:after {
    content: '';
    position: absolute;
    left: 11% !important
}

.section-title.left .sm-title:before {
    left: 0;
    transform: unset
}

@media screen and (max-width: 1199px) {
    .section-title .section-start:after {
        left: 13% !important
    }

    .section-title h2 {
        font-size: 35px
    }
}

@media screen and (max-width: 991px) {
    .section-title .section-start:after {
        left: 10% !important
    }
}

@media screen and (max-width: 767px) {
    .section-title .section-start:after {
        left: 12% !important
    }
}

@media screen and (max-width: 575px) {
    .section-title .section-start:before {
        left: 9% !important
    }

    .section-title .section-start:after {
        left: 21% !important
    }

    .section-title h2 {
        font-size: 25px
    }
}

.section-title-02 .section-title-img {
    position: absolute;
    top: -18%;
    left: 0;
    opacity: 0.2;
    display: inline-block
}

.section-title-02 .section-title-img.img-center {
    left: 50%;
    transform: translateX(-50%)
}

.section-title-02 .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    color: #dab589;
    z-index: 9
}

.section-title-02 h2 {
    font-size: 50px;
    font-weight: 100 !important;
  /* font-weight: 500 !important; */
}

@media screen and (max-width: 1199px) {
    .section-title-02 h2 {
        font-size: 40px
    }
}

@media screen and (max-width: 767px) {
    .section-title-02 h2 {
        font-size: 28px
    }
}

.section-title-03 h2 {
    font-size: 45px
}

.section-title-03 .subtitle {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-left: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #dab589;
    letter-spacing: 2px;
    font-size: 16px
}

.section-title-03 .subtitle.white {
    color: #ffffff
}

.section-title-03 .subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: #dab589
}

@media screen and (max-width: 1399px) {
    .section-title-03 h2 {
        font-size: 40px
    }
}

@media screen and (max-width: 1199px) {
    .section-title-03 h2 {
        font-size: 32px
    }
}

@media screen and (max-width: 991px) {
    .section-title-03 h2 {
        font-size: 30px
    }
}

.section-title-04 .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .875em;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    color: #dab589;
    z-index: 9
}

.section-title-04 .line {
    content: "";
    position: absolute;
    width: 65px;
    height: 2px;
    bottom: -60px;
    background-color: #999999;
    /* background-color: #dab589; */
}

.section-title-04.center .line {
    left: 50%;
    transform: translateX(-50%)
}

.section-title-04 .line:before {
    content: "";
    position: absolute;
    top: 0;
    left: 70%;
    width: 8px;
    height: 2px;
    background-color: #fdf5e6
}

.section-title-04 .line.black:before {
    background-color: #4b3b24
}

.page-title-section {
    padding: 170px 0 190px 0
}

.page-title-section:after {
    position: absolute;
    left: 0;
    bottom: -206px;
    width: 100%;
    height: 492px;
    z-index: 1;
    content: "";
    background-image: url(../img/content/shape-12.png);
    background-position: bottom center;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite
}

.page-title-section.style1 {
    padding: 150px 0
}

.page-title-section h1 {
    font-size: 72px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 9
}

.pagetitle-lg-title {
    display: block;
    font-size: 105px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    margin: 0 0 -58px 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    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: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:last-child a {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: #dab589;
    width: 10px;
    padding: 0 5px 0 10px;
    height: 2px;
    display: inline-block;
    margin: 0 15px
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section .shape-1 {
    padding: 20px;
    background: #fff;
    z-index: 3;
    bottom: 73px;
    left: 52px
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 160px 0 180px 0
    }

    .page-title-section h1 {
        font-size: 66px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 120px 0 140px 0
    }

    .page-title-section.style1 {
        padding: 130px 0
    }

    .page-title-section h1 {
        font-size: 54px
    }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 120px 0 140px 0
    }

    .page-title-section.style1 {
        padding: 100px 0
    }

    .page-title-section h1 {
        font-size: 46px
    }
}

.card-style-01 {
    background-color: transparent
}

.card-style-01 .card-img {
    width: 171px;
    height: 171px;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 30px
}

.card-style-01 .card-img img {
    object-fit: cover;
    border-radius: 50%
}

.card-style-01 svg {
    width: 31px;
    height: 4px;
    fill: #c2a74e;
    margin: 15px auto
}

.card-no-border::after {
    display: none
}

.card-style-01:hover .card-img:after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s
}

.card-style-01:hover .card-icon span {
    transform: scale(0.9)
}

.card-style-01:hover .card-hover-img {
    visibility: visible;
    opacity: 1;
    transform: scale(1)
}

.card-style-01 .card-hover-img {
    position: absolute;
    left: 12%;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.1);
    transition: 500ms ease
}

.card-style-01 .card-img img {
    object-fit: cover;
    border-radius: 50%
}

.card-style-01 .card-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2
}

.card-style-01 .card-icon {
    width: 66px;
    height: 66px;
    background-color: #dab589;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    right: 0;
    bottom: 0
}

.card-style-01 .card-icon span {
    transform: scale(1);
    transition: 500ms ease
}

.card-style-01 .card-text {
    margin: 0 auto;
    width: 85%
}

@keyframes zoom-hover {
    0% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        width: 120%;
        height: 120%;
        opacity: 0
    }
}

@media screen and (max-width: 1399px) {
    .card-style-01 .card-text {
        width: 82%
    }
}

@media screen and (max-width: 1199px) {
    .card-style-01 .card-hover-img {
        left: 0
    }
}

@media screen and (max-width: 991px) {
    .card-style-01.two:after {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .card-style-01 .card-text {
        width: 100%
    }

    .card-style-01 .card-hover-img {
        left: 20%
    }

    .card-style-01:after {
        display: none
    }
}

@media screen and (max-width: 479px) {
    .card-style-01 .card-hover-img {
        left: 0
    }
}

.card-style-02 {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-image: url(../img/content/shape-10.png);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
    border: none;
    height: 100%;
    transition: all 500ms ease
}

.card-style-02 .card-items {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 39px 30px 36px;
    transition: all 500ms ease
}

.card-style-02 .card-img-hover {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-position: center center;
    transition: 500ms ease;
    transform: scale(1.2);
    z-index: -1
}

.card-style-02 .card-img-hover::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(20, 18, 21, 0.7)
}

.card-style-02:hover .card-img-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.card-style-02:hover .card-item-title {
    color: var(--solox-white, #fff)
}

.card-style-02 .card-img-icon {
    font-size: 60px;
    line-height: 1;
    position: relative;
    z-index: 3;
    display: inline-block;
    margin: 0 0 23px;
    transition: 500ms ease
}

.card-style-02 .card-img-icon span {
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1)
}

.card-style-02:hover .card-img-icon {
    color: var(--solox-base, #c2a74e)
}

.card-style-02:hover .card-img-icon span {
    transform: scale(0.9)
}

.card-style-02 .card-item-title {
    font-size: 21px;
    font-weight: 700;
    text-transform: Capitalize;
    /*width: 70%;*/
    transition: all 300ms ease;
    position: relative;
    z-index: 3;
    margin: 0 auto
}

.card-style-02 .card-item-title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat
}

.card-style-02 .card-item-title a:hover {
    color: #dab589;
    background-size: 100% 1px
}

@media screen and (max-width: 1399px) {
    .card-style-02 .card-item-title {
        width: 78%
    }

    .card-style-02 .card-items {
        padding: 39px 26px 36px 26px
    }
}

@media screen and (max-width: 1199px) {
    .card-style-02 .card-item-title {
        font-size: 16px;
        width: 85%
    }
}

@media screen and (max-width: 991px) {
    .card-style-02 .card-item-title {
        width: 100%
    }
}

.card-style-03 {
    position: relative
}

.card-style-03 .card-price {
    background-color: #4b3b24;
    position: absolute;
    bottom: -50px;
    right: 30px;
    width: 100px;
    color: #fff;
    height: 100px;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-style-03 .price-before {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: tb-rl;
    background: #dab589;
    padding: 15px 5px;
    color: #fff
}

.card-style-04 {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden
}

.card-style-04:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, transparent, #000);
    height: 100%;
    width: 100%;
    opacity: 0.8
}

.card-style-04 .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 30px 30px;
    z-index: 2
}

.card-style-04 .card-date {
    background: #dab589;
    color: #fff;
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 10px 15px 12px 15px;
    z-index: 1;
    outline: 1px dashed #fff;
    outline-offset: -5px
}

.card-style-04 .card-date strong {
    font-size: 40px;
    display: block;
    font-weight: 500;
    line-height: 1
}

.card-style-04 .card-date span {
    display: block;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 2px;
    text-align: center
}

@media screen and (max-width: 479px) {
    .card-style-04 .card-date strong {
        font-size: 30px
    }
}

.card-style-05 {
    position: relative
}

.card-style-05 .card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0
}

.card-style-05:hover .card-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.card-style-05 .card-image img {
    display: block;
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.card-style-05.card-item:hover .card-body {
    border-color: #dab589
}

.card-style-05.card-item:hover .card-content {
    height: 52px;
    margin-top: 19px
}

.card-style-05 .card-body {
    background: #fff;
    border-radius: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
    width: calc(100% - 40px);
    z-index: 2;
    padding: 25px 60px 25px 30px;
    transition: all 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-top: 3px solid #4b3b24
}

.card-style-05 .card-arrow-icon {
    width: 59px;
    height: 53px;
    background-color: #4b3b24;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    font-size: 16px;
    color: #fff
}

.card-style-05 .card-arrow-icon i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.card-style-05 .card-arrow-icon:hover {
    background-color: #dab589;
    color: #fff
}

.card-style-05 .card-arrow-icon:hover i {
    animation: iconTranslateX 0.4s forwards
}

.card-style-05 .card-title {
    font-size: 20px;
    margin: 0
}

.card-style-05 .card-content {
    font-size: 15px;
    line-height: 26px;
    display: block;
    margin: 0 0;
    height: 0;
    overflow: hidden;
    transition: all 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    51% {
        opacity: 1
    }
}

@media screen and (max-width: 1399px) {
    .card-style-05 .card-body {
        padding: 22px 60px 22px 15px
    }

    .card-style-05 .card-title {
        font-size: 18px
    }
}

.card-style-06 {
    background-color: #fff;
    padding: 22px 40px 45px 40px;
    position: relative;
    border-radius: 0;
    border: none
}

.card-style-06 .package-left {
    flex: 1
}

.card-style-06 .card-price {
    font-size: 60px;
    color: #dab589;
    line-height: 1;
    margin: 0 0 1px 0;
    transition: all ease .4s
}

.card-style-06 .package-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation-duration: 40s
}

.card-style-06 .package-dot:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: inherit;
    background-color: #dab589;
    opacity: 0.78
}

.card-style-06 .currency {
    vertical-align: super;
    font-size: 36px;
    top: 5px;
    position: relative;
    margin-left: 3px
}

.price-inner1 {
    max-width: 866px;
    width: 100%
}

@media screen and (max-width: 1399px) {
    .card-style-06 {
        padding: 22px 30px 45px 30px
    }

    .card-style-06 .card-price {
        font-size: 52px
    }

    .card-style-06 .currency {
        font-size: 28px;
        top: -2px
    }
}

@media screen and (max-width: 1200px) {
    .card-style-06 {
        padding: 22px 30px 30px 30px
    }

    .card-style-06 .card-price {
        font-size: 45px
    }

    .card-style-06 .currency {
        font-size: 24px
    }
}

@media screen and (max-width: 1199px) {
    .price-inner1 {
        max-width: 100%
    }
}

@media screen and (max-width: 575px) {
    .card-style-06 {
        padding: 18px 25px 30px 25px
    }

    .card-style-06 .card-price {
        font-size: 45px
    }
}

.card-style-07 .image {
    position: relative;
    overflow: hidden;
    border-radius: 350px
}

.card-style-07:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.card-style-07 .image img {
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.card-style-07:hover .team-body {
    opacity: 1;
    transition-delay: 0s, .15s;
    clip-path: inset(40px 40px 40px 40px)
}

.card-style-07:hover .team-img .social ul li {
    opacity: 1;
    top: 0
}

.card-style-07:hover .team-img .social ul li:nth-child(1) {
    transition-delay: 0.1s
}

.card-style-07:hover .team-img .social ul li:nth-child(2) {
    transition-delay: 0.15s
}

.card-style-07:hover .team-img .social ul li:nth-child(3) {
    transition-delay: 0.2s
}

.card-style-07:hover .team-img .social ul li:nth-child(4) {
    transition-delay: 0.25s
}

.card-style-07 .team-img .social {
    padding: 0 15px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 99
}

.card-style-07 .team-img .social ul li {
    opacity: 0;
    transition-property: all;
    transition-duration: .3s;
    top: 20px;
    position: relative;
    margin: 3px !important;
    display: inline-block;
    vertical-align: top;
    line-height: 1
}

.card-style-07 .team-img .social ul li a {
    display: inline-block;
    color: #000;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 16px
}

.card-style-07 .team-img .social ul li:hover a {
    color: #fff;
    background-color: #dab589
}

@media screen and (max-width: 1399px) {
    .card-style-07 .team-img .social ul li a {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 14px
    }
}

@media screen and (max-width: 1199px) {
    .card-style-07 .team-img .social {
        padding: 0 12px
    }
}

@media screen and (max-width: 991px) {
    .card-style-07 .team-img .social ul li a {
        height: 43px;
        width: 43px;
        line-height: 43px
    }
}

.card-style-08 {
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: unset
}

.card-style-08:hover .card-date {
    background-color: #4b3b24
}

.card-style-08 .card-date {
    width: 70px;
    height: 70px;
    background-color: #dab589;
    border: 4px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 600;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3;
    position: absolute;
    top: -37px;
    right: 30px;
    transition: 0.5s
}

.card-style-08 .card-img {
    position: relative
}

.card-style-08 .card-img:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65)
}

.card-style-08:hover .card-img:before {
    opacity: 1
}

.card-style-09 {
    border: none;
    background-color: transparent
}

.card-style-09 svg {
    width: 31px;
    height: 4px;
    fill: #c2a74e;
    margin: 15px auto
}

.card-no-border::after {
    display: none
}

.card-style-09:hover .card-img:after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s
}

.card-style-09:hover .card-icon span {
    transform: scale(0.9)
}

.card-style-09:hover .card-hover-img {
    visibility: visible;
    opacity: 1;
    transform: scale(1)
}

.card-style-09 .card-hover-img {
    position: absolute;
    left: -125px;
    top: -25px;
    right: 0;
    margin: auto;
    width: 164px;
    height: 157px;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.1);
    transition: 500ms ease
}

.card-style-09 .card-hover-img img {
    width: 100%
}

.card-style-09 .card-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 10px;
    z-index: 2
}

.card-style-09 .card-img img {
    object-fit: cover;
    border-radius: 50%
}

.card-style-09 .card-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2
}

.card-style-09 .card-icon {
    width: 66px;
    height: 66px;
    background-color: #dab589;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    right: 0;
    bottom: 0
}

.card-style-09 .card-icon span {
    transform: scale(1);
    transition: 500ms ease
}

.card-style-09 .card-sub-title {
    font-size: 34px;
    color: #dab589;
    font-weight: 400;
    line-height: 1;
    position: relative;
    z-index: 9
}

.card-style-09 .card-img:before {
    content: "";
    position: absolute;
    bottom: -70%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    border-radius: 50%;
    transition: 0.4s;
    background-color: #f9f6f1;
    width: 230px;
    height: 230px
}

.card-style-09 .card-text {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    max-width: 280px;
    margin: 9px auto 0
}

.card-style-09:hover .card-arrow a {
    background-color: #dab589;
    color: #fff
}

.card-style-09 .card-arrow a {
    background-color: #fff;
    position: relative;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    line-height: 2.95em;
    text-align: center;
    color: #000000;
    background-color: #FFFFFF;
    border: none;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease-out;
    -ms-transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease-out;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease-out;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none
}

@keyframes zoom-hover {
    0% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        width: 120%;
        height: 120%;
        opacity: 0
    }
}

.card-style-10 {
    border: none;
    border-radius: 0;
    height: 100%
}

.card-style-10 .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 0.375rem
}

.card-style-10:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.card-style-10 .image img {
    display: block;
    width: 100%;
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.card-style-10 .image-box {
    position: relative
}

.card-style-10 .image-box .blog-date span {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    display: block;
    text-align: center;
    margin-bottom: 10px
}

.card-style-10 .card-icon {
    width: 56px;
    height: 56px;
    background-color: #dab589;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: 0.5s;
    font-size: 15px
}

.card-style-10 .card-icon:before {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 6px;
    background-color: #dab589;
    content: "";
    opacity: .3;
    z-index: -1
}

.card-style-10 .card-body {
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    margin: -40px 15px 0 15px;
    padding: 30px 25px;
    z-index: 1
}

.card-style-10 .card-body .blog-info {
    padding-left: 25px;
    margin-bottom: 25px;
    border-left: 2px solid #fe982f
}

@media screen and (max-width: 575px) {
    .card-style-10 .card-body {
        margin: -30px 10px 0 10px
    }
}

.card-style-11 {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s
}

.card-style-11:hover,
.card-style-11:active,
.card-style-11:focus {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1)
}

.card-style-11 p {
    font-size: 1rem;
    margin-bottom: 15px
}

.card-style-11 .btn-link {
    font-size: 0.95rem;
    color: #dab589;
    text-decoration: none;
    font-weight: 500
}

.card-style-11 .btn-link:hover {
    color: #dab589
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #dab589
}

.lg-progress-bar .lg-progress {
    background-color: #dab589
}

.lg-backdrop.in {
    opacity: 0.85
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px
}

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #dab589
}

.owl-nav i,
.owl-nav span {
    color: #232323;
    font-size: 28px
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block
}

.owl-thumbs {
    z-index: 9;
    position: relative
}

.owl-thumbs button {
    border: none
}

.owl-thumbs button .title {
    transition: 0.5s;
    opacity: 0;
    text-align: center;
    visibility: hidden;
    margin: 20px -100px 0
}

.owl-thumbs button.active .title {
    opacity: 1;
    visibility: visible
}

.owl-thumbs button img {
    opacity: .5
}

.owl-thumbs button.active img {
    opacity: 1
}

.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.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
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none
}

.accordion-style .btn-link {
    color: #dab589;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff
}

.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff
}

.accordion-style .btn-link:hover,
.accordion-style .btn-link:active,
.accordion-style .btn-link:focus {
    text-decoration: none;
    color: #dab589
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #dab589;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.blog-sidebar .widget {
    padding: 30px 25px;
    border-radius: 0.375rem;
    position: relative;
    display: block
}

.blog-sidebar .widget .widget-content {
    position: relative
}

.blog-sidebar .widget .input-group input {
    box-shadow: none;
    background-color: transparent;
    border: 1px solid #dee2e6 !important
}

.blog-sidebar .widget .category-list li {
    margin-bottom: 0.5rem
}

.blog-sidebar .widget .category-list li:last-child {
    margin-bottom: 0px
}

.blog-sidebar .widget .category-list li a {
    padding: 14px 20px 14px 28px;
    padding: 15px 20px 15px 0px;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.blog-sidebar .widget .category-list li a span {
    z-index: 9;
    position: relative
}

.blog-sidebar .widget .category-list li a:after {
    content: "\e649";
    font-family: 'themify';
    font-size: 12px;
    font-weight: bold;
    margin-left: -10px
}

.blog-sidebar .widget .category-list li a:hover,
.blog-sidebar .widget .category-list li a:active,
.blog-sidebar .widget .category-list li a:focus {
    background: #f9f6f1;
    color: #4b3b24;
    padding-left: 30px
}

.blog-sidebar .widget .category-list li.active a:after,
.blog-sidebar .widget .category-list li:hover a:after {
    margin-left: 10px;
    opacity: 1;
    transition: all 0.3s ease-in-out
}

.blog-sidebar .blog-tags a {
    background-color: #dab589;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #dab589
}

.blog-sidebar .blog-tags a:hover,
.blog-sidebar .blog-tags a:active,
.blog-sidebar .blog-tags a:focus {
    background-color: #fff;
    color: #dab589
}

.input-group input {
    box-shadow: 0px 13px 25px 0px rgba(0, 0, 0, 0.04);
    border: none
}

.blog-tags a {
    background-color: #dab589;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #dab589
}

.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
    background-color: #fff;
    color: #dab589
}

.comment-reply-link {
    color: #4b3b24;
    background: rgba(31, 39, 50, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px
}

.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
    color: #fff;
    background: #4b3b24
}

.service-sidebar .cetegory li a {
    background-color: #fff;
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s
}

.service-sidebar .cetegory li:hover a,
.service-sidebar .cetegory li:focus a,
.service-sidebar .cetegory li.active a {
    background-color: #dab589;
    color: #fff
}

.service-sidebar .widget {
    border-radius: 10px;
    position: relative;
    display: block
}

.service-sidebar .widget .widget-brochure {
    margin-bottom: 0;
    padding: 0;
    list-style: none
}

.service-sidebar .widget .widget-brochure li {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ededed;
    width: 100%;
    border-radius: 10px;
    background: #fff
}

.service-sidebar .widget .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 15px;
    font-weight: 600
}

.service-sidebar .widget .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    line-height: 3;
    text-align: center;
    font-size: 20px;
    background: #4b3b24;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

.service-sidebar .banner-wrapper .icon-boxs {
    position: absolute;
    top: -43px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.service-sidebar .sidebar .banner-wrapper .icon-boxs i {
    line-height: 80px
}

.service-sidebar .service-sidebar-card .card-style-01:after {
    content: "";
    display: none
}

@media screen and (max-width: 767px) {
    .service-sidebar .widget {
        padding: 25px 20px
    }
}

.about-style-01 {
    background-color: #f9f6f1
}

.about-style-01 .about-left:before {
    content: "";
    position: absolute;
    width: 78%;
    height: 100%;
    background-color: #f9eae9;
    top: 0;
    right: 0
}

.about-style-01 .about-sm-img {
    position: absolute;
    top: 3%;
    left: -4%;
    z-index: 1
}

@media screen and (max-width: 1199px) {
    .about-style-01 .about-left:before {
        right: -10%
    }
}

@media screen and (max-width: 991px) {
    .about-style-01 .about-sm-img {
        left: 0
    }

    .about-style-01 .about-left:before {
        right: 0
    }
}

@media screen and (max-width: 767px) {
    .about-style-01 .about-left:before {
        right: -18px
    }
}

.about-style-02 .about-img-box {
    position: relative
}

.about-style-02 .about-img-box .about-imgs {
    position: absolute;
    top: 70%;
    transform: translateY(-60%);
    right: -96px;
    z-index: 1;
    border: 7px solid #fff
}

.about-style-02 .about-box {
    margin-right: -30%;
    z-index: 9;
    position: relative;
    margin-left: 50px
}

@media screen and (max-width: 1199px) {
    .about-style-02 .about-box {
        margin-left: 10px
    }
}

@media screen and (max-width: 767px) {
    .about-style-02 .about-img-box .about-imgs {
        display: none
    }
}

@media screen and (max-width: 479px) {
    .about-style-02 .about-box {
        margin-right: -48%
    }
}

.about-style-03 .about-img-box {
    padding: 50px;
    margin-bottom: 30px;
    position: relative
}

.about-style-03 .shape-mockup {
    position: absolute;
    z-index: 1;
    top: 17%;
    right: 13%
}

.about-style-03 .about-img-box .img-1 {
    overflow: hidden;
    border-radius: 9999px;
    max-width: 338px
}

.about-style-03 .about-img-box .img-2 {
    position: absolute;
    left: -15%;
    top: 36%;
    z-index: -1
}

.about-style-03 .about-img-box .img-product {
    background-color: #fdebe0;
    border-radius: 99999px;
    text-align: center;
    padding: 35px 0 38px 0;
    position: relative;
    z-index: 2
}

.about-style-03 .about-img-box .img-product img {
    margin-bottom: 37px
}

.about-style-03 .about-img-box .shape-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    fill: #dab589
}

.about-style-03 .about-img-box .shape-line svg {
    fill: none;
    transform: rotateX(180deg)
}

.about-style-03 .about-img-box .shape-dot {
    fill: #dab589
}

.about-style-03 .about-img-box .text-shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 26px;
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: .28em;
    font-weight: 300;
    transform: rotate(180deg)
}

.about-style-03 .about-img-box .text-shape svg {
    overflow: initial;
    width: 90%;
    height: 100%;
    fill: none
}

.about-style-03 .about-img-box .text-shape text {
    fill: #4b3b24
}

.about-style-03 .about-img-box.style3 {
    padding: 3px;
    border: 1px solid rgba(154, 86, 58, 0.14);
    border-radius: 9999px
}

.about-style-03 .about-img-box.style3 .img-2 {
    left: -34%;
    z-index: -1
}

.about-style-03 .about-quote-text {
    font-size: 22px;
    line-height: 35px;
    letter-spacing: .03em;
    margin: 24px 0 43px 0;
    padding: 15px 25px 15px 25px;
    border-left: 3px solid #dab589;
    width: 90%;
    background-image: linear-gradient(to right, rgba(253, 230, 216, 0.79) 0%, rgba(252, 243, 239, 0) 100%)
}

.about-style-03 .about-icon {
    background-color: #4b3b24;
    padding: 15px
}

@media screen and (max-width: 991px) {
    .about-style-03 .about-img-box .img-1 {
        max-width: 509px;
        margin: 0 auto
    }

    .about-style-03 .about-quote-text {
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .about-style-03 .about-img-box .img-1 {
        max-width: 551px;
        margin: 0 auto
    }

    .about-style-03 .about-img-box .shape-line {
        left: 21px;
        width: 93%
    }

    .about-style-03 .about-img-box .text-shape svg {
        overflow: initial;
        width: 84%;
        height: 100%;
        fill: none
    }
}

@media screen and (max-width: 575px) {
    .about-style-03 .about-quote-text {
        font-size: 19px
    }
}

.about-style-04 .img1:after {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 8px;
    height: 150px;
    background: #dab589
}

.about-style-04 .img2 {
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 4
}

@media screen and (max-width: 1399px) {
    .about-style-04 .img1:after {
        left: -30px
    }

    .about-style-04 .img2 {
        left: -50px
    }
}

@media screen and (max-width: 1199px) {
    .about-style-04 .img1:after {
        left: -25px
    }
}

@media screen and (max-width: 991px) {
    .about-style-04 .img2 {
        left: 0
    }

    .about-style-04 .img1:after {
        left: 105px
    }
}

@media screen and (max-width: 767px) {
    .about-style-04 .img1:after {
        display: none
    }

    .about-style-04 .img2 {
        left: -40px
    }
}

.why-choose-01 .why-choose-img .why-choose-shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    transform: rotate(70deg)
}

.why-choose-01 .why-choose-box {
    transform: translateY(0);
    transition: .4s
}

.why-choose-01 .why-choose-box:hover {
    transform: translateY(-10%)
}

@media screen and (max-width: 1399px) {
    .why-choose-01 .why-choose-img .why-choose-shape-1 {
        right: -12%
    }
}

@media screen and (max-width: 991px) {
    .why-choose-01 .why-choose-img .why-choose-shape-1 {
        right: -2%;
        top: -5%
    }
}

.error404 h2 {
    font-size: 342px;
    text-align: center;
    margin-bottom: 0;
    font-weight: calc(700 + 200);
    color: rgba(255, 73, 124, 0.4);
    letter-spacing: 5px
}

@media screen and (max-width: 991px) {
    .error404 h2 {
        font-size: 280px
    }
}

@media screen and (max-width: 767px) {
    .error404 h2 {
        font-size: 240px
    }
}

@media screen and (max-width: 575px) {
    .error404 h2 {
        font-size: 120px;
        margin-bottom: 20px
    }
}

.features-style01 {
    position: relative;
    display: block;
    padding-bottom: 90px;
    z-index: 1
}

.features-style01 .feature-box {
    text-align: center
}

.features-style01 .feature-box img {
    opacity: 0.5;
    transition: all 0.4s ease-in-out 0s
}

.features-style01 .feature-box:hover img {
    opacity: 1
}

.features-style01 .featuer-boxs {
    position: relative
}

.features-style01 .featuer-boxs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -moz-linear-gradient(90deg, #1e1c20 0%, rgba(30, 28, 32, 0) 80%);
    background-image: -webkit-linear-gradient(90deg, #1e1c20 0%, rgba(30, 28, 32, 0) 80%);
    background-image: -ms-linear-gradient(90deg, #1e1c20 0%, rgba(30, 28, 32, 0) 80%)
}

.features-style01 .featuer-boxs-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center
}

.features-style01 .featuer-boxs-content h2 {
    font-size: 70px;
    line-height: 70px;
    color: #dab589;
    margin-top: 7px;
    margin-bottom: 15px
}

.features-style01 .featuer-boxs-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.1em;
    color: #fff
}

.features-style01 .feature-one__btn {
    margin-top: 22px
}

.features-style01 .feature-text-box {
    position: relative;
    display: table;
    background-color: #dab589;
    text-align: center;
    padding: 0 55px;
    width: 100%
}

.features-style01 .feature-text-box-title {
    font-size: 30px;
    color: #fff
}

.features-style01 .feature-text-box-points {
    position: relative;
    display: block
}

.features-style01 .feature-text-box-points li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(240, 248, 255, 0.25);
    padding-bottom: 13px
}

.features-style01 .feature-text-box-points li+li {
    margin-top: 13px
}

.features-style01 .feature-text-box-points li .day p,
.features-style01 .feature-text-box-points li .time span {
    color: #fff
}

.features-style01 .feature-text-box-points li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

@media screen and (max-width: 991px) {
    .features-style01 .feature-text-box {
        padding: 0 35px
    }

    .features-style01 .feature-text-box-title {
        font-size: 25px
    }
}

@media screen and (max-width: 767px) {
    .features-style01 .feature-text-box {
        padding: 35px 35px
    }
}

@media screen and (max-width: 575px) {
    .features-style01 .feature-text-box {
        padding: 25px 25px
    }
}

.portfolio-style01 {
    position: relative;
    overflow: hidden
}

.portfolio-style01 .portfolio-img {
    position: relative
}

.portfolio-style01:hover .portfolio-img img {
    filter: grayscale(100%);
    transform: scale(1.04, 1.04)
}

.portfolio-style01 .portfolio-img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.portfolio-style01 .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%
}

.portfolio-style01 .portfolio-img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.portfolio-style01:hover .inner-box .portfolio-img img {
    filter: grayscale(100%);
    transform: scale(1.04, 1.04)
}

.portfolio-style01 .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center
}

.portfolio-style01 .overlay-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 0.60;
    background-color: #dab589
}

.portfolio-style01:hover .inner-box .overlay-box {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

.gallery-style01 .image-height01 {
    min-height: 524px
}

.gallery-style01 .image-height02 {
    min-height: 250px
}

.gallery-style01 .gallery-block .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65)
}

.gallery-style01 .gallery-block:hover .gallery-overlay {
    opacity: 1
}

.gallery-style01 .gallery-block .gallery-overlay a {
    color: #fff;
    width: 60px;
    height: 60px;
    background: #dab589;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px
}

@media screen and (max-width: 1199px) {
    .gallery-style01 .gallery-block .gallery-overlay a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 15px
    }
}

.appointment {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 60px
}

.appointment .quform-element {
    margin-bottom: 2rem
}

.appointment .quform-elements .quform-element textarea {
    padding: 15px 16px
}

.appointment .form-control {
    min-height: 56px;
    border: 0
}

@media screen and (max-width: 1399px) {
    .appointment {
        padding: 60px 50px
    }
}

@media screen and (max-width: 991px) {
    .appointment {
        padding: 50px 40px
    }
}

@media screen and (max-width: 575px) {
    .appointment {
        padding: 40px 25px
    }
}

ul.countdown li {
    display: inline-block;
    padding: 0 30px;
    text-align: center;
    min-width: 140px
}

ul.countdown li:first-child {
    padding-left: 0
}

ul.countdown li:last-child {
    border: medium none;
    padding-right: 0
}

ul.countdown li span {
    position: relative;
    font-size: 50px
}

ul.countdown li p.timeRefDays,
ul.countdown li p.timeRefHours,
ul.countdown li p.timeRefMinutes,
ul.countdown li p.timeRefSeconds {
    margin: 0;
    padding: 0;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    ul.countdown li {
        padding: 0 20px;
        min-width: 110px
    }

    ul.countdown li span {
        font-size: 36px
    }

    ul.countdown li p.timeRefDays,
    ul.countdown li p.timeRefHours,
    ul.countdown li p.timeRefMinutes,
    ul.countdown li p.timeRefSeconds {
        font-size: 12px
    }
}

@media screen and (max-width: 479px) {
    ul.countdown li {
        padding: 0 20px 20px 20px
    }

    ul.countdown li:first-child {
        padding: 0 20px 20px 20px
    }

    ul.countdown li:last-child {
        padding: 0 20px 20px 20px;
        padding-bottom: 0
    }

    ul.countdown li:nth-child(3) {
        padding-bottom: 0
    }
}

.exrta-sec-two .countdown li {
    min-width: 130px;
    position: relative
}

.exrta-sec-two .countdown li:after {
    position: absolute;
    content: ":";
    right: 0;
    top: 0;
    font-size: 20px;
    position: absolute;
    content: ":";
    right: 0;
    top: 20%;
    font-size: 20px
}

.exrta-sec-two .countdown li:last-child:after {
    display: none
}

@media screen and (max-width: 767px) {
    .exrta-sec-two .countdown li {
        min-width: 120px
    }
}

@media screen and (max-width: 479px) {
    .exrta-sec-two .countdown li {
        min-width: 140px
    }

    .exrta-sec-two .countdown li:nth-child(2):after {
        content: none
    }

    .exrta-sec-two ul.countdown li:first-child,
    .exrta-sec-two .countdown li {
        padding: 0 20px 20px 20px
    }

    .exrta-sec-two ul.countdown li:last-child {
        padding: 0 20px 20px 20px;
        padding-bottom: 0
    }

    .exrta-sec-two ul.countdown li:nth-child(3) {
        padding-bottom: 0
    }
}

.exrta-sec-three {
    padding-top: 355px
}

@media screen and (max-width: 1199px) {
    .exrta-sec-three {
        padding-top: 255px
    }
}

.newsletter-form .quform-elements {
    position: relative
}

.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form .quform-submit-inner .btn {
    padding: 0.500rem 1.15rem
}

.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.newsletter-form .form-control:focus,
.newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
    border-color: #f5543f
}

.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem
}

.team-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed
}

.team-details-social ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0
}

.team-details-social ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.team-details-social ul li:last-child {
    margin: 0
}

.team-details-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.team-details-social ul li a:hover {
    color: #fff;
    border-color: #dab589;
    background: #dab589
}

.process-style1 {
    background-image: url(../img/content/process-line.png);
    background-repeat: no-repeat;
    background-position: center top
}

.process-style1.dark {
    background-image: url(../img/content/process-line-light.png)
}

.process-block .process-img {
    position: relative
}

.process-block .process-img .count-size {
    position: absolute;
    left: 64px;
    top: 0
}

.process-block .process-img .number {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    background: #dab589;
    color: #fff;
    border-radius: 50%
}

.process-block .process-img .number:before {
    width: 57px;
    height: 57px;
    opacity: 0.2
}

.process-block .process-img .number:after {
    width: 69px;
    height: 69px;
    opacity: 0.09
}

.process-block .process-img .number:before,
.process-block .process-img .number:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    border-radius: 50%;
    background-color: #dab589
}

.process-block:hover .process-img .number:before,
.process-block:hover .process-img .number:after {
    background-color: #002345;
    webkit-animation: circle-2 1.05s infinite;
    -moz-animation: circle-2 1.05s infinite;
    -ms-animation: circle-2 1.05s infinite;
    -o-animation: circle-2 1.05s infinite;
    animation: circle-2 1.05s infinite
}

@-webkit-keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@media screen and (max-width: 1199px) {
    .process-block .process-img .count-size {
        left: 24px
    }
}

@media screen and (max-width: 991px) {
    .process-style1 {
        background-image: none
    }

    .process-block .process-img .count-size {
        left: 23%
    }
}

@media screen and (max-width: 575px) {
    .process-block .process-img .count-size {
        left: 33%
    }
}

.progress-style1 .progress {
    height: 8px
}

.progress-style1 .progress .progress-bar {
    background-color: #dab589
}

.pricing-style01 .pricing-border {
    flex-grow: 1;
    margin-left: 18px;
    margin-right: 25px;
    border: 1px dashed #c7c3c2;
    height: 0px
}

.pricing-style01 .pricing-new-box {
    padding: 0 11px;
    border-radius: 16px
}

.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
    left: -25%;
    position: absolute;
    top: 39%;
    background: none
}

.testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
    right: -25%;
    position: absolute;
    top: 39%;
    background: none
}

.testimonial-carousel1.owl-theme .owl-nav span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: transparent;
    color: #fff
}

@media screen and (max-width: 1599px) {
    .testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
        left: -10%
    }

    .testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
        right: -10%
    }
}

.testimonial-style01 .testimonial-img i {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #dab589;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: flex;
    font-size: 13px;
    justify-content: center;
    border-radius: 50%
}

.testimonial-style02 {
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 56% auto;
    background-position: bottom left
}

.testimonial-style02 .item-content .tquote {
    display: block;
    margin-bottom: 1.5rem
}

.working-section {
    background-color: #fff;
    padding: 58px 50px 55px 51px
}

.working-section .working-hours li {
    color: #000000;
    font-size: 20px;
    margin-bottom: 12px
}

.working-section .working-hours li:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 991px) {
    .working-section {
        padding: 48px 40px 45px 41px
    }
}

@media screen and (max-width: 575px) {
    .working-section {
        padding: 38px 30px 35px 31px
    }

    .working-section .working-hours li {
        font-size: 15px;
        margin-bottom: 7px
    }
}

.clients03-carousel {
    transition: 0.4s
}

.clients03-carousel img {
    transition: 0.3s
}

.clients03-carousel .image-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 225px;
    margin: 0 auto;
    border-radius: inherit
}

.clients03-carousel .image-wrapper>img {
    margin: 0 auto;
    border-radius: inherit
}

.clients03-carousel .hover-image {
    display: block;
    transform: translateY(-100%);
    opacity: 0;
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    visibility: hidden
}

.clients03-carousel .image-wrapper:hover .hover-image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%)
}

.clients03-carousel .image-wrapper:hover .hover-image+.main-image {
    opacity: 0;
    transform: translateY(100%)
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    margin-bottom: .5rem
}

.form-control:focus {
    border-color: #dab589
}

.form-check-input:checked {
    border-color: #dab589;
    background-color: #dab589
}

.quform-input {
    position: relative
}

.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1
}

.quform-element>label {
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #42545e;
    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
}

.quform-element {
    margin-bottom: 1rem
}

.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none
}

.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style1 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-style1 li a:hover {
    background: #dab589
}

.social-icon-style1 li:last-child {
    margin-right: 0
}

.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    background: rgba(31, 39, 50, 0.05);
    height: 41px;
    line-height: 42px;
    width: 41px
}

.social-icon-style2 li a:hover {
    background: #dab589;
    color: #fff
}

.social-icon-style2 li:last-child {
    margin-right: 0
}

.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px
}

.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px
}

@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.social-icon-style3 {
    margin-bottom: 0;
    display: inline-block
}

.social-icon-style3 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px
}

.social-icon-style3 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #dab589;
    height: 40px;
    line-height: 41px;
    width: 40px;
    border-radius: 50%
}

.social-icon-style3 li a:hover {
    background: #fff;
    color: #dab589
}

.social-icon-style3 li:last-child {
    margin-right: 0
}

.social-icon-style4 li {
    display: inline-block;
    margin-right: 7px
}

.social-icon-style4 li a {
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #dab589;
    height: 38px;
    display: inline-block;
    line-height: 40px;
    width: 38px;
    border-radius: 50rem
}

.social-icon-style4 li a:hover,
.social-icon-style4 li a:active,
.social-icon-style4 li a:focus {
    color: #fff;
    background-color: #4b3b24
}

.social-icon-style4 li:last-child {
    margin-right: 0
}

.social-icon-style5 li {
    display: inline-block;
    margin-right: 10px
}

.social-icon-style5 li:last-child {
    margin-right: 0
}

.social-icon-style5 li a {
    font-size: 16px;
    background: #dab589;
    color: #fff;
    height: 36px;
    width: 36px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%
}

.social-icon-style5 li a:hover {
    color: #dab589;
    background: #fff
}

.social-icon03 li {
    margin-right: 5px;
    display: inline-block
}

.social-icon03 li:last-child {
    margin-right: 0
}

.social-icon03 li a {
    width: 50px;
    height: 50px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #4b3b24;
    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-icon03 li a:hover {
    color: #dab589
}

@media screen and (max-width: 1199px) {
    .social-icon03 li a {
        width: 40px;
        height: 40px
    }
}

.search-form_input {
    color: #dab589
}

.search-frame h4 a:hover {
    color: #dab589
}

.search-frame .search_list .match {
    color: #dab589
}

.search-frame .search_list li:before {
    color: #dab589
}

.search-frame .search_list li+li {
    border-top: 3px solid #dab589
}

.search-frame .search {
    color: #dab589
}

.contact-us {
    padding: 60px;
    background-color: #fff
}

.contact-us .contacts-icon img {
    padding: 16px
}

.contact-us .contact-details {
    padding: 30px 50px 40px;
    border-radius: 5px;
    margin-left: 20px;
    background-color: #4b3b24
}

.contact-us .contact-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
    padding: 0 0 25px;
    margin-bottom: 22px
}

.contact-us .contacts-icon {
    float: left;
    margin-right: 20px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: rgba(255, 255, 255, 0.5196078431);
    text-align: center;
    display: inline-block;
    transition: .5s
}

.contact-us .contacts-icon i {
    color: #fff;
    font-size: 22px;
    transition: .5s
}

.contact-us .contacts-title h6 {
    font-size: 14px;
    line-height: 23px;
    opacity: .702;
    margin-top: 5px
}

.contact-us .contact-info:hover .contacts-icon {
    transform: rotateY(180deg);
    background: #dab589
}

.contact-us .contact-info.upper2 {
    border-bottom: none;
    margin-bottom: 0px
}

.contact-us .contact-details .follow-company-icon2 a {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    margin-right: 7px;
    transition: .5s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center
}

.contact-us .follow-company-icon2 a:hover {
    background: #dab589
}

@media screen and (max-width: 1199px) {
    .contact-us {
        padding: 40px
    }

    .contact-us .contact-details {
        padding: 30px 31px 30px;
        margin-left: 7px
    }
}

@media screen and (max-width: 575px) {
    .contact-us {
        padding: 30px 19px 31px 19px
    }

    .contact-us .contact-info {
        padding: 0 0 18px;
        margin-bottom: 21px
    }

    .contact-us .contacts-icon {
        margin-right: 13px;
        width: 48px;
        height: 48px;
        line-height: 48px
    }

    .contact-us .contact-details {
        padding: 19px 19px 19px;
        margin-left: 7px
    }

    .contact-us .contacts-title h6 {
        font-size: 13px;
        line-height: 21px
    }
}

.contact-map {
    width: 100%;
    height: 524px
}

.gallery-image a:hover:before {
    opacity: 1;
    visibility: visible;
    opacity: 1;
    visibility: visible
}

.gallery-image a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all .3s ease
}

.gallery-image a:hover i {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%)
}

.gallery-image a i {
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: all .35s;
    color: #fff;
    z-index: 2;
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    font-weight: 400;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #dab589;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px
}

.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;
    border-radius: 8px;
    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
}

.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: 18px;
    line-height: 1.5;
    font-weight: 700;
    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: 18px;
    line-height: 1.5;
    font-weight: 700;
    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: #dab589
}

.next-page .image-next:after {
    background-color: #dab589
}

.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
}

.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
}

.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 screen and (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 screen and (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
    }
}

.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block
}

.footer-logo>a {
    display: inline-block
}

footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px
}

footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease
}

footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
    width: 100%
}

footer .email a:hover,
footer .email a:active,
footer .email a:focus {
    color: #dab589
}

footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0
}

footer .phone {
    padding-bottom: 0;
    margin-bottom: 0
}

footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: #fff
}

footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
    color: #dab589
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px
    }
}

/* Kamaldeep */
.bg-black{
    background-color: #000;
    color: #fff !important;
}
.color-white{
    color: #c5c4c4 !important;
}
.banner-h3{
    font-size: 50px;
}
.padding-bottom{
    padding-bottom: 120px;
}
.color-golden{
    color: #dab589;
}
.mn{
    opacity: 0.2;
}
.bb{
    background-color: #1a1a1a !important;
    border-radius: 20px;
}
 .cinematic-gradient {
            background: linear-gradient(90deg, #0B0B0B 0%, #2e291e 50%, #0B0B0B 100%);
            background: url(/images/Ajwain_Ayurveda.webp);
            background-repeat: no-repeat;
            background-size: cover;
            height: 100%;
            width: 100%;
            position: relative;
        }
         .cinematic-gradient::after{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            /* background: linear-gradient(90deg, #0B0B0B 0%, #2e291e 50%, #0B0B0B 100%); */
            width: 100%;
            height: 100%;
            opacity: 0.9;
         }
         .position-relative{
            position: relative;
            z-index: 10;
         }
         .badg{
             background: linear-gradient(90deg, #0B0B0B 0%, #2e291e 50%, #0B0B0B 100%);
             padding: 30px 0px;
         }
         .glogo{
            height: 60px;
         }
         header{
            background-color: #000;
         }
        .bg-banner {
    background-image: url("../images/main-ban1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px; /* change to 100vh if needed */
}

    .bg-banner1 {
    background-image: url("../images/legacy-new2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    margin-top: 60px;
}

  .bg-vision {
    background-image: url("../images/vision1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    margin: 60px 0;
}
/* Mobile view (≤576px) */
@media (max-width: 576px) {
    .bg-banner1 {
        background-image: url(../images/legacy-new2.png);
        height: 180px; /* optional – better mobile ratio */
    }
}
.bg-banner2 {
    background-image: url("../images/contact-bg3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px; /* change to 100vh if needed */
}
         .gold-glow{
            border-color: #a6a6a6 !important;
         }
         .text-6xl{
           font-size: 80px ;
  color: #cca980 !important;
         }
         .text-2xl {
  font-size: 35px !important;
  line-height: 3rem !important;
  letter-spacing: 0.3px !important;
}
.icon-img{
    padding: 8px;
}
.-translate-y-1\/2 {
  --tw-translate-y: 0% !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ss{
    height: 60px !important;
    width: 60px !important;
    margin-top: 120px ;
}
.cinematicc{
    background-color: #000;
     /* background: linear-gradient(90deg, #0B0B0B 0%, #2e291e 50%, #0B0B0B 100%); */
}
.late-h5{
   margin-top: 25px;
  color: #dab589;
  font-size: 30px;
  letter-spacing: 0px;
}
.late-h6{
   font-size: 25px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-top: 10px;
}
.m-p{
    margin-right: 100px;
}
/* Rani css */
.video-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.banner-media {
    width: 100%;
    height: auto;          /* ✅ no forced height */
    display: block;
    position: relative;
    z-index: 1;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 16%);
    z-index: 2;
    pointer-events: none;
}
/*.video-banner {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 85vh; */
/*    overflow: hidden;*/
/*}*/

/* Image / media full cover */
/*.banner-media {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/* Overlay */
/*.video-overlay {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgb(0 0 0 / 16%);*/
/*    z-index: 2;*/
/*}*/

/* Content above overlay (if needed later) */
.video-banner .container {
    position: relative;
    z-index: 9;
}


/*.video-banner {*/
/*    position: relative;*/
/*    height: 100vh;*/
/*    overflow: hidden;*/
/*}*/

/*.banner-video {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/
/*.video-overlay {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background:rgb(0 0 0 / 16%); */
/*    z-index: 2;*/
/*}*/

/*.video-banner .container {*/
/*    position: relative;*/
/*    z-index: 9;*/
/*}*/
.product-small-section {
    padding: 0px 0px 140px 0px;
    background: #faf6ef;
}
.product-small-section .swiper-slide{
    height: 90%;
}
.product-small-card {
    display: flex;
    gap: 15px;
    background: #1a1a1a;
    border-radius: 18px;
    padding: 15px;
    align-items: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: visible;
    position: relative;margin-top: 50px;
    align-items: flex-start;
}

.product-small-img {
    flex: 0 0 230px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
     position: relative;
    margin-top: -25px;   /* pulls image upward */
    z-index: 2;
    height: 260px;      /* choose a common height */
    object-fit: contain;
}

.product-small-img img {
    max-width: 100%;
    /*height: 400px;*/
}

.product-small-content {
    flex: 1;
    padding-top: 45px;
    /*padding-right: 40px;*/
}

.product-small-content .product-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
}

.product-small-content h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
   
}

.product-small-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align:left !important;
}

/* BUTTON */
.btn-enquire-sm {
    font-size: 12px;
    padding: 12px 20px;
    background: #e1bb90;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
  
}

.btn-enquire-sm:hover {
    background: #cfa46f;
}

/* MOBILE STACK */
@media (max-width: 575px) {
    .product-small-card {
        flex-direction: column;
        text-align: center;
    }
}
.swiper-slide {
    height: auto;
}

.productSwiper {
    padding-bottom: 40px;
}
.head{
    font-weight: 100 !important;
    font-size: 50px;
}
.product-small-section{
  background-color: #000;;
}
.swiper,
.swiper-wrapper {
    overflow: visible !important;
}
.productSwiper{
  margin-top:150px
}
.footer-logo{
max-width: 150px !important;
}
.copy{
color: #dab589;
}
.tag-cbd {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
ul.list-style li {
    position: relative;
    padding-left: 24px;
    padding-bottom: 10px;
    list-style-type: none;
}
.bg-brown ul.list-style li:before {
    background-color: #cfa46f;
}
ul.list-style li:before {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #cfa46f;
    content: "";
    top: 5px;
    left: 0;
    border-radius: 3px;
}
.safe-img{
  padding-left: 20px;
}
.card-style-02 {
    position: relative;
    background-color: transparent;
    box-shadow: rgb(228 197 151 / 11%) 0px 7px 24px 0px;
    /* background-image: url(../images/shape-10.png); */
    z-index: 2;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
    border: none;
    height: 100%;
    transition: all 500ms ease
}
.card-style-02 .card-item-title {
    font-size: 21px;
    font-weight: 700;
    /* text-transform: uppercase; */
    /*width: 70%;*/
    transition: all 300ms ease;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    color: #999999;
    /* color: #4b3b24; */
}
.white-icon {
    filter: brightness(0) invert(1);
}


.slider-container {
    position: relative;
}
.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.slider-track {
    display: flex;
    gap: 30px; 
    transition: transform 0.6s ease;
}

/* EXACT 3 cards */
.slide {
    flex: 0 0 calc((100% - 60px) / 3); /* 2 gaps × 30px */
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 2px dotted #E5B777;
    border-radius: 10px;
    box-sizing: border-box;
    height: 505px;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.step {
    display: flex;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: -26px auto 12px;
    font-size: 17px; 
    font-weight: 700;
    position: relative;
}

.slide h4 {
    margin-bottom: 8px;
    color: #fff;
    text-align: center;   
    font-size: 25px;
    padding: 0px 25px;
    height: 50px;
}

.slide p {
    color: #c5c4c4;
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .slide {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 576px) {
   .slide {
        flex: 0 0 100%;
    }
}
.footer{
  /* background-color: #000; */
}
.footer-info{
  padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
}
.social-icon03 li a{
  background-color: #1a1a1a !important;
  color: #fff !important;
}
.footer-det{
  font-size: 16px;
}
.list-style05 li span{
  text-transform: capitalize !important;
}
.why-choose, .abs-sec{
  background-color: #000 !important;
}
.navbar-toggler{
color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 25px;
  margin-top: 15px; 
}

  /* Slide Nav */
.slide-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #000;
    z-index: 9999;
    padding: 60px 30px;
    transition: right 0.4s ease;
}

.slide-nav.active {
    right: 0;
}

.slide-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-menu li {
    margin-bottom: 20px;
}

.slide-menu li a {
    color: #c9a34d;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
}

.slide-menu li.tel a {
    color: #fff;
    font-size: 16px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9a34d;
    color: #000;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.close-btn i {
    pointer-events: none;
}


/* Overlay */
/*#navOverlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0,0,0,0.6);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: 0.3s;*/
/*    z-index: 9998;*/
/*}*/

#navOverlay.active {
    opacity: 1;
    visibility: visible;
}

.marquee {
    width: 100%;
    overflow: hidden;
    /*padding: 20px 0;*/
}

.marquee-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.marquee-list:hover {
    animation-play-state: paused;
}

.marquee-list li {
    margin: 0 10px;
}

.marquee-list img {
    width: 100px;
    height: auto;
    display: block;
    background:#1a1a1a;
    border-radius:10px;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.mt-5{
    margin-top: 25px;
}
.max-w-\[1000px\] {
  max-width: 1200px !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #878787;      /* placeholder color */
    opacity: 1;       /* important for Firefox */
}
.custom-select .select-box #selectedText {
    color: #878787;   /* placeholder color */
}
/* ===============================
   SLIDE NAV FINAL FIX
================================ */

.slide-nav {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100vh;
    background: #000;
    z-index: 99999;
    padding: 90px 30px 30px;
    transition: right 0.4s ease;
}

.slide-nav.active {
    right: 0;
}

.slide-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-menu li {
    margin-bottom: 24px;
}

.slide-menu li a {
    color: #999999;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 1px;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 100000;
}

/* OVERLAY */
/*#navOverlay {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    background: rgba(0,0,0,0.65);*/
/*    z-index: 99998;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: 0.3s;*/
/*}*/

#navOverlay.active {
    opacity: 1;
    visibility: visible;
}
.footer-new {
    /* background: radial-gradient(circle at top, #1a1a1a, #000); */
    padding: 80px 0 30px;
    color: #eeeeee;
    position: relative;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-title {
    color: #dab589;
    font-size: 25px;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #999999;
    display: block;
    margin-top: 8px;
}

.footer-text {
  font-size: 20px;
    line-height: 30px;
    color: #eeeeee;
    max-width: 320px;
    font-weight: 400;
}



.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-links a {
    color: #c5c4c4;
    font-weight: 400;
    line-height: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #dab589;
    padding-left: 5px;
}

.footer-contact i {
    color: #fff;
    margin-right: 10px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    /* background: #999999; */
    color: #fff;
    transform: translateY(-3px);
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 30px;
}

.footer-newsletter button {
    background: #dab589;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #e2b95f;
}

.footer-bottom {
     display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #999999;
}
html {
    scroll-behavior: smooth;
}
footer{
    background-image: url(../images/about-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
}
footer::after{
    position: absolute;
    content: "";
     background: radial-gradient(circle at top, #1a1a1a8f, #000000c4);
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.footer-top,.footer-bottom{
    position: relative;
    z-index: 10;
}
.bg-banner div h1{
    font-size: 60px;
    /*line-height: 1;*/
    letter-spacing: 0.5px;
    font-weight: 500 !important;
    line-height:90px;
}
.mn img{
    height:160px;
}
.banner-img{
      background-image: url(../images/about-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.banner-img1{
    background-image: url(../images/Luxury.png) !important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding:60px 0px;
}
.only-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom:60px;
    border-radius:10px;
    border: 2px solid #141414;
    content: url("../images/east-india5.png"); /* Desktop */
}

/* Mobile image */
@media (max-width: 576px) {
  .only-image {
    content: url("../images/jac4.png"); /* Mobile image */
    margin-bottom: 30px;
  }
} 
/**/
body{
    background:#000;
    color:#fff;
    /*font-family:inherit;*/
}

/* COMMON */
.gold{color:#dab589}
.section{padding:80px 0}
.section-title{
    font-size:36px;
    margin-bottom:20px;
}
.line{
    width:80px;
    height:3px;
    background:#999999;
    margin:15px 0 40px;
}

/* PRODUCT HERO */
.product-hero{
    padding:100px 0;
}
.product-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}
.product-img img{
    width:100%;
    border-radius:20px;
}
.product-info h1{
    font-size:42px;
}
.price{
    font-size:20px;
    margin:20px 0;
}
.buy-btn{
    display:inline-block;
    padding:14px 32px;
    border:1px solid #dab589;
    color:#dab589;
    border-radius:30px;
    transition:.3s;
}
.buy-btn:hover{
    background:#dab589;
    color:#000;
}

/* SPLIT SECTIONS */
.split-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
}

/* BENEFITS */
.benefit-list li{
    list-style:none;
    display:flex;
    gap:15px;
    margin-bottom:18px;
}
.benefit-icon{
    width:40px;
    height:40px;
    border:1px solid #dab589;
    border-radius:50%;
}

/* INGREDIENTS */
.ingredient-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}
.ingredient-card{
    background:#111;
    padding:25px;
    border-radius:20px;
    text-align:center;
}
.ingredient-card img{
    width:60px;
    margin-bottom:10px;
}

/* HOW TO USE */
.steps li{
    list-style:none;
    display:flex;
    gap:15px;
    margin-bottom:20px;
}
.step-num{
    width:36px;
    height:36px;
    background:#dab589;
    color:#000;
    border-radius:50%; 
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* RESPONSIVE */
@media(max-width:991px){
    .product-wrap,
    .split-grid{
        grid-template-columns:1fr;
    }
}

.bg-dark1{
    background-color:#1a1a1a;
}
.d-flex{
    display:flex;
}
.icon-divv{
    width:30px;
    padding-top:3px;
}
.content-divv{
    width:calc(100% - 30px);
}
.content-divv p{
    text-align:left !important;
    margin-bottom: 20px;
}
.mt-5{
    margin-top:40px;
}
.con{
    margin-top:-7px;
    display: flex;

}
.con1{
    margin-top:-10px;
    display: flex;

}
.icon-divv i {
    font-size: 16px;
    line-height: 1;
}

/*.content-divv p {*/
/*    margin: 0;                */
/*    line-height: 1.4;*/
/*}*/
.year{
    margin-top:70px;
}
.year1{
        margin-bottom: 60px;
}
.gap-32 {
    gap: 5rem !important;
}
/* Section spacing */
.padding-top-b {
    padding: 80px 0;
}

/* Certification list */
.certi{
    /*background-color: #1a1a1a;*/
    /*padding: 50px 20px;*/
    border-radius: 20px;
}
.certimg_list {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
}

/* Equal-size containers */
.certimg_list li {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image fit – always colorful */
.certimg_list li img { max-width: 100%;
     max-height: 100%; 
     object-fit: contain; 
     filter: grayscale(100%); 
     opacity: 0.9; 
     transition: 0.4s ease; }

/* Hover / active */
.certimg_list li img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* timeline repsonsive */
@media (max-width: 768px) {

  /* Stack everything cleanly */
  .flex-col {
    gap: 2rem !important;
  }

  /* Remove desktop two-column layout */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Move vertical line to left */
  .relative > .absolute.left-1\/2 {
    left: 20px !important;
    transform: none !important;
  }

  /* Timeline icon alignment */
  .ss {
    margin-top: 0 !important;
    height: 36px;
    width: 36px;
  }

  /* Content spacing */
  .md\:pl-12,
  .md\:pr-12,
  .pl-12,
  .pr-12 {
    /* padding-left: 60px !important; */
    padding-right: 0 !important;
    text-align: left !important;
  }

  /* Hide big year numbers on mobile */
  /*.year,*/
  /*.year1 {*/
  /*  display: none !important;*/
  /*}*/

  /* Reduce heading sizes */
  .text-6xl {
    font-size: 36px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  p {
    font-size: 16px !important;
    line-height: 1.7;
  }
 .bg-gradient-to-b {
    display: none !important;
  }
  .pt-12{
    padding-top: 4.5rem !important;
}
    .text-2xl {
        font-size: 35px !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .certimg_list {
        flex-wrap: wrap;
    }
.top-position1{
    margin-top: 0;
}
.slide h4, .footer-title, .office-box h3{
    font-size: 28px;
}
.slider-btn{
    width: 40px;
    height: 40px;
    font-size: 18px;
}

/*.only-image{*/
/*    margin: 0px 0 60px;*/
/*}*/
.prod{
    gap:30px;
}
  .banner-img1 {
        background-position: top center;  /* shows top part */
        min-height: auto;
        padding: 40px 0;
    }
/*    .banner-img1::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    z-index: 0;*/
/*}*/

.banner-img1 .container {
    position: relative;
    z-index: 1;
}
.padding-top-b{
    padding:80px 0 50px;
}
}


.padding-top-b1{
    padding:0px 0 80px 0;
}
/*.nourish-img{*/
/*    height:93%;*/
/*}*/
.nourish-img img{
    height:100%;
    width:100%;
}
.slider-controls{
left: -20px;
}
.slider-btn.next {
    margin-right: -40px;
}


/* Mobile */
@media (max-width: 991px) {
    .footer-text {
        text-align: left;
        /* margin-left: auto; */
        margin-right: auto;
        max-width: 300px;
    }
     .slide-menu li a{
    font-size: 20px;
  }
 
    .founders-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .m-p{
margin-right: 0;
    }
    .founder-content{
        margin-top: 30px;
    }
     .founder-img {
        display: block;
        margin: 0 auto;   
    }
    .mob-line{
     left:45%;
    }
    .para{
        font-size: 20px;
         /*hyphens: auto;*/
    }
    .text-2xl{
        font-size: 43px ;
    }
    .abs-sec .nourish-row{
      display: flex;
      flex-direction: column-reverse;
    }
    .slider-btn.next {
    margin-right: -130px;
}
.product-small-card{
    flex-direction: column;
}
.product-small-img{
    margin-top: 0;
}
.slider-controls{
    left: -65px;
}
p{
    font-size:20px;
    /*hyphens: auto ;*/
}
.card-style-02 .card-item-title{
    font-size:20px !important;
}
.slide h4{
    font-size:30px;
}
.office-box h3{
    font-size:30px;
}
.contact-form h2{
    font-size:30px;
}
.header-style1{
    padding:10px 0;
}
.slide-menu{
    padding: 0 0 0 30px;
}
/* .prod{*/
/*    gap: 30px;*/
/*} */
.product-small-section {
    padding: 0px 0px 70px 0px;
}
.text-6xl{
    font-size: 60px !important;
}
.gap-32{
    gap:1rem !important;
}

}

@media (min-width: 992px) and (max-width: 1200px){
      .slide-menu li a{
    font-size: 22px;
  }
 
    .founders-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .m-p{
     margin-right: 0;
    }
    .founder-content{
        margin-top: 30px;
    }
     .founder-img {
        display: block;
        margin: 0 auto;   /* centers image */
    }
    .mob-line{
     left:45%;
    }
    .gap-32 {
    gap: 0rem !important;
}
    /* .para{
        font-size: 26px;
         hyphens: auto;
    } */
    .text-2xl{
        font-size: 43px !important;
    }
 
    /* .slider-btn.next {
    margin-right: 0px;
} */
.product-small-card{
    flex-direction: column;
}
.product-small-img{
    margin-top: 0;
}
/* p{
    font-size:26px;
    hyphens: auto ;
} */
/* .card-style-02 .card-item-title{
    font-size:26px !important;
}
.slide h4{
    font-size:30px;
}
.office-box h3{
    font-size:30px;
}
.contact-form h2{
    font-size:30px;
} */
.header-style1{
    padding:10px 0;
}
}

.address-box {
  display: flex;
  gap: 30px;
  border-radius: 8px;
}

.office-address {
  flex: 1;
}

.office-address h3 {
  margin-bottom: 10px;
}

.office-address p {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Mobile view */
@media (max-width: 576px) {
  .address-box {
    flex-direction: column;
  }
}
.about-awardsbox {
		margin: 20px;
		color:black;
	}
.grid2 {
    border-radius:8px;
 background: url(http://api.thumbr.it/whitenoise-361x370.png?background=d6d6d6ff&noise=626262&density=18&opacity=36);
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	list-style: none;
	text-align: center;
      box-sizing:border-box;
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
}
.grid2 figure {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 0px;
	width: 270px;
	height: 270px;
	text-align: center;
}
.grid2 figure img {
	position: relative;
	display: block;
	margin:0 auto;
}
.grid2 figure figcaption {
	/*text-transform: uppercase;*/
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid2 figure figcaption::before,
.grid2 figure figcaption::after {
	pointer-events: none;
}
.grid2 figure figcaption,
.grid2 figure a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid2 figure a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid2 figure h2 {
	font-weight: 300;
}
.grid2 figure h2 span {
	font-weight: 800;
}
.grid2 figure h2,
.grid2 figure p {
	margin: 0;
}
.grid2 figure p {
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	letter-spacing: 1.2px;
	font-size: 72.5%;
  font-weight: bold;
}
/*---------------*/
/***** Oscar *****/
/*---------------*/
figure.effect-oscar {
  	cursor: pointer; 
}
figure.effect-oscar img {
	top:50%;
}
figure.effect-oscar figcaption {
	/*-webkit-transition: background-color 0.75s;
	transition: background-color 0.75s;*/
  	-webkit-transition: all 0.75s;
	transition: all 0.75s;
  background: rgba(90,90,90,0.1);
}
figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #e0e0e0;
	content: '';
}
figure.effect-oscar h2 {
  transform: scale(0);
  font-size:3.438em;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}
figure.effect-oscar figcaption::before,
figure.effect-oscar p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}
figure.effect-oscar:hover h2 {
  transform: scale(0);
  font-size:large;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
	opacity: 1;
  margin-top:-180px;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-oscar:hover figcaption {
   background-color: rgba(255, 255, 255, .75);
  -webkit-transition: all 0.75s;
	transition: all 0.75s;
  transform:scale(1);
}
figure.effect-oscar:hover .trophy {
	opacity: 0.1;
}
@media screen and (max-width: 41.5em) {
	.grid figure {
		width: 100%;
	}
}
/*.awards-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
/*  gap: 20px;*/
/*}*/

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.award-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay caption */
.award-card figcaption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: 0.4s ease;
  font-family: "Manrope", sans-serif !important;
}

/* Hover effect */
.award-card:hover img {
  transform: scale(1.08);
}

.award-card:hover figcaption {
  opacity: 1;
}
/* Tablet */
@media (max-width: 991px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  /* Remove desktop center line */
  .bg-black > .mx-auto > .absolute {
    display: none !important;
  }

  /* Force clean stacking */
  .relative.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  /* Icon first */
  .relative.grid > .absolute {
    position: relative !important;
    order: 1;
    margin: 0 0 6px 0;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  /* Year second */
  .year,
  .year1 {
    order: 2;
    display: block !important;
    font-size: 24px !important;
    font-weight: 800;
    color: #cca980 !important;
    margin-bottom: 6px;
    padding: 0 !important;
    text-align: center;
  }

  /* Content last */
  .decade-content {
    order: 3;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* Titles scale */
  .text-2xl {
    font-size: 22px !important;
    line-height: 1.4 !important;
  }

  /* Paragraphs */
  .para {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Spacing between timeline items */
  .relative.grid {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(204,169,128,0.25);
  }
.year{
    margin-top: 0;
}
}


.timeline-mobile {
  background: #000;
}

.mobile-timeline-item {
  text-align: center;
  padding: 30px 20px;
  border-left: 2px solid rgba(212,175,55,0.3);
  margin-left: 15px;
  margin-bottom: 40px;
  position: relative;
}

.mobile-timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 32px;
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
}

.mobile-timeline-item .year {
  font-size: 20px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
}

.mobile-timeline-item .icon img {
  width: 42px;
  margin: 10px auto;
}

.mobile-timeline-item h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.mobile-timeline-item p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}
.founder-img{
    width: 570px;
    height: 550px;
}
.word-gap span {
  display: block;
  margin-bottom: 12px; 
}

.word-gap span:last-child {
  margin-bottom: 0;
}
 /* GRID LAYOUT */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.vision-section {
  position: relative;
  /* background: rgba(255,255,255,0.95); */
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(50px);
  opacity: 1;
  border: 1px solid #dab5891f;
  transition: transform .6s ease, box-shadow .6s ease;
}

/* GLOWING BORDER */
.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #dab589, #fde8cf, #dab589);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .6s ease;
}

/* .vision-section:hover::before {
  opacity: 1;
} */

.vision-section:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* ICON */
.vision-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

/* CONTENT STACKED VERTICALLY */
.vision-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TEXT */
.vision-title {
    font-size: 25px;
    font-weight: 400;
    font-family: "Nunito";
}

.vision-subtitle {
  color: #fff;
  font-size: 1.1rem;
  font-family: "Nunito";
}

.vision-text {
  font-family: "Nunito";
}

/* GSAP ACTIVE STATE */
.vision-section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}
.vis{
    margin-bottom: 30px ;
    padding-top: 0;
}

/* BACKGROUND IMAGE LAYER */
.vision-section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  background-repeat: no-repeat;
 transition: 500ms ease;
 transform: scale(1.2);
  /* transition: opacity .6s ease; */
  z-index: 0;
} 
.vision-section:hover::after {
   opacity: 0.35;     
  transform: scale(1.05);
}
.vision-section > * {
  position: relative;
  z-index: 2;
}
.vision-section:nth-child(1)::after {
  background-image: url("/images/back1.jpg");
}

.vision-section:nth-child(2)::after {
  background-image: url("/images/back2.jpg");
}

.vision-section:nth-child(3)::after {
  background-image: url("/images/back3.jpg");
}



/* history section */
.creative-fullpage--slider,
.creative-fullpage--slider .swiper,
.creative-fullpage--slider .swiper-wrapper,
.creative-fullpage--slider .swiper-slide {
    height: 70vh !important;
    margin: 0 !important;
    padding: 0 !important;
}
 .creative-fullpage--slider{
	background-color: #ffffff;
	z-index: 2;
	width: 100%;
	position: relative;
	flex-direction: column;
	height: 70vh;
	font-size: 16px;
	display: flex;
	clip-path: none !important;
    margin-bottom: 0 !important;
}
.creative-fullpage--slider .container {
    padding: 0 !important;
    max-width: 100% !important;
}
.creative-fullpage--slider .slider-inner {
	background: #000;
	height: 70vh;
	position: relative;
}
.creative-fullpage--slider .swiper-slide {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: left;
	flex-direction: column;
	overflow: hidden;
}
.creative-fullpage--slider .swiper-slide .slider-inner img 
{
	object-fit: cover;
	width: 100%;
	height: 100%;
    display: block;
}
.creative-fullpage--slider .swiper-slide .slider-inner video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
	position: absolute;
	top: 10%;
	left: 50px;
	z-index: 999;
}
.creative-fullpage--slider .swiper-slide .slider-inner .default-slide{
    top: 25%;
	left: 15%;
}
.creative-fullpage--slider 
.swiper-slide 
.slider-inner 
.swiper-content 
.title-area 
.subtitle {
    letter-spacing: 3px;
}
.creative-fullpage--slider .swiper-slide .slider-inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: rgb(0 0 0 / 73%);
	/* background: rgba(0, 0, 0, 0.55);  */
	z-index: 0;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content .title-area .tag {
	color: #ffffff;
	font-weight: 400;
	font-size: 25px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content .title-area .title {
	margin-top: 50px;
	color: #fff;
	font-size: 50px;
	font-family: "Nunito";
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	/* margin-bottom: 50px; */
	margin-left: -12px;
	text-decoration: none;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content .title-area .def-title{
    font-size: 60px !important;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content p.disc {
	font-size: 20px;
	width: 45%;
	margin-top: 15px;
	margin: 20px 0px 40px 0px;
	font-weight: 400;
	line-height: 32px;
	color: #999999;
}
.creative-btn--wrap .creative-slide--btn {
	color: #ffffff;
	margin-left: 18px;
	font-size: 1.4em;
	transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
	font-weight: 400;
	display: inline-flex;
	position: relative;
	white-space: nowrap;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
	outline: none;
	outline-color: transparent;
	box-shadow: none;
	will-change: transform;
	backface-visibility: hidden;
}

.creative-btn--circle .circle {
	position: absolute;
	right: calc(100% - 10px);
	top: 0;
	bottom: 0;
	margin: auto;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	clip-path: circle(25% at 50% 50%);
	transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle .circle-fill {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 100%;
	background-color: #ffffff;
	will-change: transform;
	transform: scale(0);
	z-index: 1;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon {
	transform: translate(-100%, 0%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	z-index: 2;
	transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon .icon-arrow{
	width: 20px;
	height: 20px;
	stroke: none;
	fill: #000;
}
.creative-btn--circle .circle-outline {
	fill: transparent;
	width: 10px;
	stroke: #ffffff;
}
.creative-btn--wrap .creative-slide--btn .creative-btn--label {
	margin-left: 4pt;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn .creative-btn__border {
	position: absolute;
	left: 4pt;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform-origin: right;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
	transform: translateX(18px);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
	transform: scale(0, 1);
}
.creative-btn--wrap .creative-slide--btn:hover{
	margin-left: 38px !important;
}
.creative-btn--wrap .creative-slide--btn:hover .circle {
	clip-path: circle(50% at 50% 50%);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
	transform: scale(1, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
	transform: translate(0%, 0%);
	opacity: 1;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next, 
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	bottom: 5%;
	top: unset;
	transform: scale(1);
	transition: all 0.4s;
	background-color: #FFFFFF00;
	backdrop-filter: blur(20px);
	height: 85px;
	width: 85px;
	line-height: 85px;
	border-radius: 50%;
	transition: all 0.4s;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next {
	right: 50px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	left: 50px;
}
.creative-fullpage--slider .swiper-container-h .slider-pagination-area {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: unset;
	right: unset;
	bottom: 80px;
	left: 50% !important;
	transform: translateX(-50%);
	width: 500px;
	z-index: 1;
}
.creative-fullpage--slider .swiper-container-h .slider-pagination-area .slide-range {
	font-size: 16px;
	font-weight: 500;
	margin: 0 15px;
	color: #ffffff;
	line-height: 0;
	position: absolute;
	font-size: 20px;
}
.creative-fullpage--slider .swiper-container-h .slider-pagination-area .slide-range.one {
	left: -50px;
}
.creative-fullpage--slider .swiper-container-h .slider-pagination-area .slide-range.three {
	right: -50px;
}
.creative-fullpage--slider .swiper-container-h .slider-pagination-area .swiper-pagination {
	bottom: 0 !important;
	width: 500px !important;
}
.creative-fullpage--slider .swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
	background: #ffffff;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next::after {
	content: "\f061";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	background: none;
	color: #ffffff;
	font-size: 60px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev::after {
	content:"\f060";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	background: none;
	color: #ffffff;
	font-size: 60px;
}
.creative-fullpage--slider.swiper-container-h .swiper-button-next:hover, 
.creative-fullpage--slider .swiper-container-h .swiper-button-prev:hover {
	background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content{
		width: 100%;
		text-align: center;
		left: 0;
	}
	.creative-fullpage--slider .swiper-container-h .swiper-button-next, 
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		height: 50px;
		width: 50px;
		line-height: 50px;
	}
	.creative-fullpage--slider .swiper-container-h .slider-pagination-area{
		width: 200px !important;
	}
	.creative-fullpage--slider .swiper-container-h .swiper-button-next::after, 
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev::after {
		font-size: 30px;
	}
	.creative-fullpage--slider .swiper-container-h .swiper-button-next, 
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev{
		background: #ffffff3b;
	}
	.creative-fullpage--slider .swiper-container-h .slider-pagination-area .swiper-pagination {
		bottom: 0 !important;
		width: 200px !important;
	}
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content .title-area .title {
		font-size: 64px;
	}
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content .title-area .tag{
		margin-bottom: 0px;
	}
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content p.disc{
		    margin: 20px auto 20px auto;
    font-size: 16px;
    width:95%;
	}
	.creative-fullpage--slider .swiper-container-h .slider-pagination-area{
		display: none;
	}
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content p.disc br{
		display: none;
	}
}
.creative-fullpage--slider{
    padding: 0;
}


/* vision section */


.vision-slide-inner{
position:relative;
height:100%;
}

.vision-slide-inner img{
width:100%;
height:100%;
object-fit:cover;
}

.vision-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:1;
}

.vision-content{
position:absolute;
top:5%;
left:50px;
color:#fff;
z-index:2;
}
.vision-content .title{
    margin-top: 50px;
    color: #fff;
    font-size: 40px;
    font-family: "Nunito";
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    /* margin-bottom: 50px; */
    margin-left: -12px;
    text-decoration: none;

}
.vision-content .tag{
    color: #ffffff;
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.vision-content p{
    font-size: 20px;
    width: 45%;
    /* margin-top: 15px; */
    /* margin: 20px 0px 40px 0px; */
    font-weight: 400;
    line-height: 32px;
    color: #999999;
}
.vision-slider-section .vision-pagination{
    position:absolute;
    bottom:20px !important;
    left:50% !important;
    transform:translateX(-50%);
    width:auto !important;
    text-align:center;
}
.vision-slider-section .vision-pagination .swiper-pagination-bullet-active{
    background:#cca980;   
    opacity:1;
}




/* award section */

/* Wrapper */
.awardsSlider-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Track */
.awardsSlider-track {
  position: relative;
  height: 620px;
  overflow: hidden; 
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  background: #000; 
}

/* Slides */
.awardsSlider-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.7s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.awardsSlider-slide.active {
  transform: translateX(0);
  z-index: 2;
}

.awardsSlider-slide.to-left {
  transform: translateX(-100%);
  z-index: 1;
}

.awardsSlider-slide.to-right {
  transform: translateX(100%);
  z-index: 1;
}

/* Image */
.awardsSlider-slide img {
  width: 100%;
  height: calc(100% - 110px);;
  /* object-fit: cover; */
  display: block;
  border-radius: 10px;
}

/* Caption */
.awardsSlider-caption {
  height: 100px;              
  padding: 10px 20px;
  background: #000;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  font-family: "Nunito";

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Arrows */
.awardsSlider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  z-index: 5;
}

.awardsSlider-nav.prev { left: -70px; }
.awardsSlider-nav.next { right: -70px; }

.awardsSlider-nav:hover {
  background: #999999;
  color: #000;
}
.founders-section{
    padding: 60px 0 0 !important;
}
/* Mobile */
@media (max-width: 768px) {
  .awardsSlider-track { height: 360px; }
  .awardsSlider-caption { font-size: 20px; }
  .awardsSlider-nav.prev { left: -45px; }
  .awardsSlider-nav.next { right: -45px; }
}
@media (max-width: 768px) {
  .awardsSlider-track {
    height: 460px;
  }

  .awardsSlider-caption {
    height: 90px;
    font-size: 18px;
    padding: 14px;
  }

  .awardsSlider-slide img {
    height: calc(100% - 90px);
  }
}
/* .custom-heading {
    font-weight: 100 !important;
    text-transform: uppercase;
    letter-spacing: 15px;
    word-spacing: 0em;
} */

.text-gray {
    color: #999999;
}

.text-white {
    color: #ffffff;
}
.con-line{
    margin: 10px 0 15 !important;
}