:root {
    --primary-color: #ff497c;
    --secondary-color: #1f2732
}

#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 #ff497c;
    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 #ff497c;
    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: #ff497c;
    text-decoration: none
}

.card,
.card .card-body {
    color: #42545e
}

.secondary-overlay[data-overlay-dark]:before {
    background: #1f2732
}

.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, #1f2732 35%)
}

.right-overlay-secondary[data-overlay-dark]:before {
    background: linear-gradient(270deg, #121418 15%, #1f2732 100%);
    background-color: transparent
}

.text-primary,
.text-primary-hover:hover {
    color: #e2a43a !important
}

.bg-light-yellow,
.bg-light-color {
    background-color: #f9f6f1;
    padding: 120px 0;
    margin-top: 0;
}

.bg-primary {
    background-color: #e2a43a !important
}

.text-secondary,
.text-secondary-hover:hover {
    color: #1f2732 !important
}

.bg-secondary {
    background-color: #f5f0e6 !important;
}

.text-dark,
.text-dark-hover:hover {
    color: #1f2732 !important
}

.border-secondary-color {
    border-color: #1f2732 !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: #ff497c;
    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: #000;
    /* text-transform: uppercase */
}

.list-style02 li a:hover {
    color: #e2a43a;
}

.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: #ff497c
}

@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: #ff497c;
    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: #1f2732
}

.btn-style1 span {
    position: relative;
    z-index: 9;
    color: #ffffff
}

.btn-style1.secondary {
    background: #1f2732
}

.btn-style1.secondary:before {
    border-color: #ff497c
}

.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: #1f2732;
    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: #ff497c;
        border: 1px solid #ff497c
    }
}

@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: #ff497c;
    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: #1f2732;
    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: #ff497c !important
}

.attr-nav>ul>li>a.butn {
    color: #fff
}

.navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent !important
}

.menu_area-light .navbar-nav li.current>a,
.menu_area-light .navbar-nav li.active>a {
    color: #ff497c
}

.menu_area-light .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
    color: #ff497c
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
    color: #ff497c
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
    color: #ff497c
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c 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: #ff497c
    }

    .menu_area-light .navbar>ul>li.has-sub>a:hover:after {
        border-color: #ff497c
    }

    .menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }

    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }

    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
        border-color: transparent #ff497c #ff497c transparent
    }

    .header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
        border-color: transparent #ff497c #ff497c transparent
    }

    .header-style2.scrollHeader .navbar-nav li.current>a {
        color: #ff497c
    }

    .header-style2.scrollHeader .navbar-nav li.current>a:hover {
        color: #ff497c
    }

    .header-style2.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #ff497c #ff497c transparent
    }

    .header-style2 .navbar ul ul li.active>a {
        color: #ff497c
    }

    .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: #ff497c
    }

    .header-style2 .navbar-nav li.current>a,
    .header-style2 .navbar-nav li.active>a {
        color: #ff497c
    }

    .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 #ff497c #ff497c transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #ff497c
    }

    .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: #ff497c
}

.header-style2 .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

.header-style2.scrollHeader .navbar-nav li.current>a {
    color: #ff497c
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: #ff497c
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active>a {
        color: #ff497c
    }

    .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: #ff497c
    }

    .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: #ff497c
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active>a {
        color: #ff497c
    }

    .header-style3 .navbar-nav>li>a:hover,
    .header-style3 .navbar-nav>li>a:active,
    .header-style3 .navbar-nav>li>a:focus {
        color: #ff497c
    }

    .header-style3 .navbar ul ul li.active>a {
        color: #ff497c
    }

    .header-style3 .navbar-nav li.has-sub a:hover,
    .header-style3 .navbar-nav li.current>a {
        color: #ff497c
    }

    .header-style3 .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }

    .header-style3 .navbar>ul>li.has-sub>a:hover:after,
    .header-style3 .navbar>ul>li.current>a:after {
        border-color: transparent #ff497c #ff497c transparent
    }

    .header-style3.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }

    .header-style3.scrollHeader .navbar>ul>li.has-sub>a:hover:after {
        border-color: transparent #ff497c #ff497c transparent
    }

    .header-style3.scrollHeader .navbar-nav>li.active>a {
        color: #ff497c
    }

    .header-style3.scrollHeader .navbar-nav li.current>a {
        color: #ff497c
    }

    .header-style3.scrollHeader .navbar-nav li.current>a:hover {
        color: #ff497c
    }

    .header-style3.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #ff497c #ff497c transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: #ff497c
    }

    .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: #ff497c;
    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 .main-title {
    font-size: 150px;
    margin-bottom: 2rem;
    font-weight: 100;
    line-height: 1
}

.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
}

@keyframes cloudMove {
    0% {
        background-position: -1920px 100%
    }

    100% {
        background-position: 0 100%
    }
}

@media screen and (max-width: 1399px) {
    .banner-style01 .main-title {
        font-size: 120px
    }
}

@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: #ff497c;
    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: #ff497c
}

.section-title .title:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 9px;
    bottom: -17px;
    left: 53%;
    transform: translateX(-50%);
    background: #ff497c
}

.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.3;
    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: #ff497c;
    z-index: 9
}

.section-title-02 h2 {
    font-size: 42px
}

@media screen and (max-width: 1199px) {
    .section-title-02 h2 {
        font-size: 35px
    }
}

@media screen and (max-width: 767px) {
    .section-title-02 h2 {
        font-size: 25px
    }
}

.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: #ff497c;
    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: #ff497c
}

@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: #ff497c;
    z-index: 9
}

.section-title-04 .line {
    content: "";
    position: absolute;
    width: 65px;
    height: 2px;
    bottom: -17px;
    background-color: #ff497c
}

.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: #1f2732
}

.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: #ff497c;
    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 h3 {
    font-size: 18px;
}

.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: #ff497c;
    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: 20px;
    font-weight: 700;
    text-transform: uppercase;
    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: #ff497c;
    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: #1f2732;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c
}

.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 #1f2732
}

.card-style-05 .card-arrow-icon {
    width: 59px;
    height: 53px;
    background-color: #1f2732;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c
}

@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: #1f2732
}

.card-style-08 .card-date {
    width: 70px;
    height: 70px;
    background-color: #ff497c;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c;
    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: #ff497c;
    text-decoration: none;
    font-weight: 500
}

.card-style-11 .btn-link:hover {
    color: #ff497c
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #ff497c
}

.lg-progress-bar .lg-progress {
    background-color: #ff497c
}

.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: #ff497c
}

.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: #ff497c;
    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: #ff497c
}

.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: #ff497c;
    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: #1f2732;
    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: #ff497c;
    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 #ff497c
}

.blog-sidebar .blog-tags a:hover,
.blog-sidebar .blog-tags a:active,
.blog-sidebar .blog-tags a:focus {
    background-color: #fff;
    color: #ff497c
}

.input-group input {
    box-shadow: 0px 13px 25px 0px rgba(0, 0, 0, 0.04);
    border: none
}

.blog-tags a {
    background-color: #ff497c;
    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 #ff497c
}

.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
    background-color: #fff;
    color: #ff497c
}

.comment-reply-link {
    color: #1f2732;
    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: #1f2732
}

.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: #ff497c;
    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: #1f2732;
    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: #ff497c
}

.about-style-03 .about-img-box .shape-line svg {
    fill: none;
    transform: rotateX(180deg)
}

.about-style-03 .about-img-box .shape-dot {
    fill: #ff497c
}

.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: #1f2732
}

.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 #ff497c;
    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: #1f2732;
    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: #ff497c
}

.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: #ff497c;
    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: #ff497c;
    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: #ff497c
}

.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: #ff497c;
    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: #ff497c;
    background: #ff497c
}

.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: #ff497c;
    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: #ff497c
}

.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: #ff497c
}

.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: #ff497c;
    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: #ff497c
}

.form-check-input:checked {
    border-color: #ff497c;
    background-color: #ff497c
}

.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: #ff497c
}

.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: #ff497c;
    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: #ff497c;
    height: 40px;
    line-height: 41px;
    width: 40px;
    border-radius: 50%
}

.social-icon-style3 li a:hover {
    background: #fff;
    color: #ff497c
}

.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: #ff497c;
    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: #1f2732
}

.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: #ff497c;
    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: #ff497c;
    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: #1f2732;
    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: #ff497c
}

@media screen and (max-width: 1199px) {
    .social-icon03 li a {
        width: 40px;
        height: 40px
    }
}

.search-form_input {
    color: #ff497c
}

.search-frame h4 a:hover {
    color: #ff497c
}

.search-frame .search_list .match {
    color: #ff497c
}

.search-frame .search_list li:before {
    color: #ff497c
}

.search-frame .search_list li+li {
    border-top: 3px solid #ff497c
}

.search-frame .search {
    color: #ff497c
}

.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: #1f2732
}

.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: #ff497c
}

.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: #ff497c
}

@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: #ff497c;
    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: #ff497c
}

.next-page .image-next:after {
    background-color: #ff497c
}

.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: #ff497c
}

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: #ff497c
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px
    }
}


/* location advantages  */


.location-section {
    width: 100%;
    padding: 120px 0px;
    background: #f5f0e6;
}



/* .location-box {
        position: relative;
        width: 100%;
        background: #fffdf9;
        border: 2px solid #154b36;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        overflow: hidden;
    } */


.location-top-line {
    width: 100%;
    height: 14px;
    background: #154b36;
}


.location-map-title {
    min-height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 18px 25px 12px;

    /* background: #fffdf9; */

    color: #000;

    font-size: 35px;
    font-weight: 500;

    letter-spacing: 1px;
}


.location-map-title i {
    color: #154b36;
    margin-right: 9px;
    font-size: 17px;
}


/* .location-map-wrapper {
    width: 800px;
    margin: 0 auto;
    height: 400px;
    position: relative;
    overflow: hidden;
}
.location-map-wrapper iframe {
    width: 800px;
    height:400px;
} */


.location-map {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

/* .location-mapfull{
          display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    } */

.location-highlights {
    position: relative;
    background: #fffdf900;
    padding: 30px;
}


.location-heading {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    padding: 14px 20px;
    text-align: center;
    background: #154b36;
    color: #e2a43a;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}


.location-grid {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 10px;
}

/* .location-grid::after {
            content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 30%;
        width: 1px;
        background: #d9a047;
        transform: translateX(-50%);
        } */


.location-column {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.location-column:first-child {
    padding-right: 45px;
}


.location-column:last-child {
    padding-left: 45px;
}



.location-item {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 42px;
}


.location-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #154b36;

    color: #ffffff;

    font-size: 15px;

    transition: all 0.3s ease;
}


.location-item:hover .location-icon {
    background: #e2a43a;

    color: #154b36;

    transform: scale(1.08);
}



.location-text {
    font-size: 15px;

    line-height: 1.55;

    color: #111111;

    font-weight: 400;
}


.location-text strong {
    font-weight: 500;

    color: #154b36;
}



@media (max-width: 991px) {

    .location-section {
        padding: 70px 20px;
    }


    .location-map-wrapper {
        height: 380px;
    }


    .location-highlights {
        padding: 65px 30px 40px;
    }


    .location-column:first-child {
        padding-right: 30px;
    }


    .location-column:last-child {
        padding-left: 30px;
    }


    .location-text {
        font-size: 14px;
    }


    .location-heading {
        width: 350px;

        font-size: 23px;
    }

}



@media (max-width: 767px) {

    .location-section {
        padding: 60px 15px;
    }


    .location-box {
        border-bottom-left-radius: 22px;
        border-bottom-right-radius: 22px;
    }


    .location-map-title {
        min-height: 55px;

        padding: 20px 18px 12px;

        font-size: 15px;
    }


    .location-map-wrapper {
        height: 330px;
    }


    .location-highlights {
        padding: 65px 20px 30px;
    }


    .location-heading {
        width: calc(100% - 50px);

        padding: 12px 10px;

        font-size: 19px;
    }


    .location-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .location-grid::after {
        display: none;
    }


    .location-column:first-child,
    .location-column:last-child {
        padding: 0;
    }


    .location-column:first-child {
        padding-bottom: 25px;

        border-bottom: 1px solid #d9a047;
    }


    .location-item {
        align-items: flex-start;

        gap: 12px;
    }


    .location-icon {
        width: 36px;
        height: 36px;

        min-width: 36px;

        font-size: 14px;
    }


    .location-text {
        padding-top: 5px;

        font-size: 13px;

        line-height: 1.5;
    }

}



@media (max-width: 480px) {

    .location-section {
        padding: 50px 10px;
    }


    .location-map-wrapper {
        height: 280px;
    }


    .location-map-title {
        font-size: 14px;
    }


    .location-highlights {
        padding-left: 16px;
        padding-right: 16px;
    }


    .location-heading {
        width: calc(100% - 30px);

        font-size: 17px;
    }


    .location-column {
        gap: 18px;
    }


    .location-text {
        font-size: 12.5px;
    }

}

/* about section  */


.vr-about-section {
    width: 100%;
    background: #f7f7f7;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.vr-about-row {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}


.vr-about-image-wrap {
    width: 100%;
    height: 630px;
    position: relative;
    overflow: hidden;
    background: #eaf5fa;
}

.vr-about-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


.vr-about-content {
    width: 100%;
    padding: 35px 70px 35px 50px;
}

.vr-about-title {
    max-width: 850px;
    margin-bottom: 38px;

    font-size: 32px;
    line-height: 1.28;
    font-weight: 600;

    text-transform: uppercase;
    color: #a66d3e;
}

.vr-about-description {
    max-width: 900px;
}

.vr-about-description p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #111;

    margin-bottom: 13px;
}

.vr-rera-number {
    margin-top: 14px !important;
    margin-bottom: 0 !important;

    font-size: 15px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;

    color: #000 !important;
    text-transform: uppercase;
}

.about-para {
    font-size: 16px;
    margin-bottom: 0;
    width: 90% !important;
    margin: 0 auto;
}




@media (max-width: 1400px) {

    .bg-light-yellow,
    .bg-light-color {
        padding: 100px 0;
    }

    .w-lg-90 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .about-para {
        font-size: 16px;
        margin-bottom: 0;
    }
}



@media (max-width: 1199px) {

    .bg-light-yellow,
    .bg-light-color {
        padding: 90px 0;
    }

    .w-lg-90 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .about-para {
        font-size: 16px;
        margin-bottom: 0;
    }
}


@media (max-width: 991px) {

    .bg-light-yellow,
    .bg-light-color {
        padding: 80px 0;
    }

    .w-lg-90 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .about-para {
        font-size: 14px;
        margin-bottom: 0;
    }
}


@media (max-width: 767px) {

    .bg-light-yellow,
    .bg-light-color {
        padding: 70px 0;
    }

    .w-lg-90 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-para {
        font-size: 14px;
        margin-bottom: 0;
    }

}


@media (max-width: 480px) {

    .bg-light-yellow,
    .bg-light-color {
        padding: 60px 0;
    }

    .w-lg-90 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .about-para {
        font-size: 14px;
        margin-bottom: 0;
    }


}



/* PROJECT HIGHLIGHTS */

.project-highlights {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 120px 0;
}

.highlight-image img {
    color: #d4a43a;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
}



.project-overlay {
    position: relative;

    z-index: 2;

    width: 100%;

    margin: 0 auto;

}

.project-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 40px;
}



.project-title h2 {
    margin: 0;
    color: #d4a43a;
    font-size: 35px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: .3px;

    white-space: nowrap;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, .5);
}



.title-line {
    width: 45px;
    height: 1px;

    display: block;

    background: #d4a43a;

    position: relative;
}



.title-line:first-child::after {

    content: "";

    position: absolute;

    right: -3px;
    top: -2px;

    width: 5px;
    height: 5px;

    background: #d4a43a;

    transform: rotate(45deg);
}



.title-line:last-child::before {

    content: "";

    position: absolute;

    left: -3px;
    top: -2px;

    width: 5px;
    height: 5px;

    background: #d4a43a;

    transform: rotate(45deg);
}


.title-arrow {
    color: #d4a43a;

    font-size: 6px;

    line-height: 1;

    transform: rotate(45deg);
}


.title-arrow.right {
    transform: rotate(45deg);
}


.highlight-cards {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 25px;

    width: 100%;
}


.highlight-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #b98b2d;
    background: rgba(0, 45, 27, .35);
    transition: .3s ease;
}



.highlight-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}


.highlight-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 1px;
}




@media (max-width: 1200px) {



    .highlight-cards {
        gap: 18px;
    }

    .highlight-card h3 {
        font-size: 9px;
    }

    .project-highlights {
        padding: 90px 0;
    }

    .project-title h2 {
        font-size: 30px;
    }

    .highlight-card {
        padding: 10px;
    }

}



@media (max-width: 991px) {



    .highlight-cards {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 12px;
    }

    .project-highlights {
        padding: 80px 0;
    }


}


@media (max-width: 767px) {

    .project-highlights {
        padding: 70px 0;
    }

    .project-title h2 {
        font-size: 20px;
    }

    .project-title {
        margin-bottom: 30px;
    }

    .title-line {
        width: 25px;
    }

    .highlight-cards {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .highlight-card h3 {
        font-size: 14px;
    }

}



@media (max-width: 480px) {
    .project-highlights {
        padding: 60px 0;
    }

    .project-title {
        margin-bottom: 20px;
    }

    .project-title h2 {
        font-size: 20px;
    }

    .highlight-card h3 {
        font-size: 12px;
    }

}

/* contact section  */


.contact-section {
    position: relative;

    width: 100%;

    padding: 120px 0;

    background-image:
        url("../images/highlights-bg.webp");

    background-position: center;
    /* background-size: cover; */
    background-repeat: no-repeat;

    overflow: hidden;
}



.contact-heading {
    text-align: center;

    margin-bottom: 55px;
}


.contact-heading .small-title {
    display: block;

    margin-bottom: 10px;

    color: #d7a73a;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.contact-heading h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family:
        "Plus Jakarta Sans", sans-serif;

    font-size: 35px;

    font-weight: 600;

    line-height: 1.1;
}


.contact-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;

    line-height: 1.8;
}


.contact-form-box {
    max-width: 1400px;
    margin: 0 auto;
}


.contact-form-group {
    margin-bottom: 20px;
}


.contact-form-group label {
    display: block;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 0;
    background: rgb(255 255 255 / 0%);
    border: none;
    border-bottom: 1px solid rgba(215, 167, 58, 0.65);
    outline: none;
    color: #fff;
    border-radius: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form-group input {
    height: 45px;
}


.contact-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color:
        #fff;
}


.submit-area {
    margin-top: 10px;

    text-align: center;
}


.contact-submit {
    position: relative;
    width: 200px;
    padding: 12px 30px;
    border: 1px solid #d7a73a;
    background: linear-gradient(135deg, #b77c19, #e1b44f, #b77c19);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
}


.contact-submit::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);

    transition: 0.5s;
}


.contact-submit:hover::before {

    left: 100%;
}


.contact-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3);
}


/* =========================================
           DECORATIVE TOP LINE
        ========================================= */

.gold-line {

    width: 70px;

    height: 1px;

    margin: 0 auto 20px;

    background: #d7a73a;

    position: relative;
}


.gold-line::after {

    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%) rotate(45deg);

    background: #d7a73a;
}

@media (max-width: 1200px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-form-box {
        padding: 15px 15px 0;
    }

    .contact-heading {
        margin-bottom: 0px;
    }

}

@media (max-width: 991px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-form-box {
        padding: 15px 15px 0;
    }

    .contact-heading {
        margin-bottom: 0px;
    }

}


@media (max-width: 767px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-heading {
        margin-bottom: 40px;
    }

    .contact-heading .small-title {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .contact-heading h2 {
        font-size: 24px;
    }

    .contact-heading p {
        font-size: 14px;
        padding: 0 15px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-form-group {
        margin-bottom: 15px;
    }

    .contact-submit {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .contact-heading h2 {
        font-size: 24px;
    }

    .contact-form-box {
        padding: 15px;
    }

    .submit-area {
        margin-top: 0;
    }

}


/* master plan  */



.section-heading {
    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 35px;
    font-weight: 600;
}


/* IMAGE BOX */

.master-plan-box {
    position: relative;
    overflow: hidden;
    width: 100%;
}


/* BLUR IMAGE */

.master-layout-img {
    width: 100%;
    display: block;

    filter: blur(5px);
    transform: scale(1.03);
}


/* OVERLAY */

.master-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}


/* CENTER BUTTON */

.master-plan-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #b88625;
    color: #fff;

    border: 0;
    padding: 15px 35px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}


/* FORM BACKGROUND */

.master-form-popup {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    z-index: 99999;

    align-items: center;
    justify-content: center;

    padding: 20px;
}


/* FORM */

.master-form {
    position: relative;

    width: 100%;
    max-width: 400px;

    background: #fff;

    padding: 20px 25px 28px;
}


/* HEADING */

.master-form h2 {
    text-align: center;

    color: #c18d28;

    font-size: 20px;

    margin-bottom: 25px;
}


/* CLOSE */

.form-close {
    position: absolute;

    top: 0;
    right: 0;

    width: 40px;
    height: 40px;

    border: 0;

    background: #c99a32;

    color: #fff;

    font-size: 24px;

    cursor: pointer;
}


/* INPUT */

.master-form input,
.master-form textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d5d5d5;

    padding: 12px;

    margin-bottom: 15px;

    outline: none;
}


/* MESSAGE */

.master-form textarea {
    height: 105px;
    resize: none;
}


/* SUBMIT */

.form-submit-btn {

    width: 100%;

    background: #b98220;

    color: #000;

    border: 0;

    padding: 13px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;
}

@media (max-width: 1199px) {
    .section-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 24px;
    }

    .master-form h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .master-form input,
    .master-form textarea {
        padding: 7px;
        margin-bottom: 10px;
    }

    .master-form textarea {
        height: 80px;
    }

    .form-submit-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {

    .section-heading h2 {
        font-size: 18px;
    }
    .section-heading {
    margin-bottom: 20px;
}


    .master-plan-btn {
        padding: 5px 15px;
        font-size: 12px;
    }

    .master-form h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .master-form input,
    .master-form textarea {
        padding: 7px;
        margin-bottom: 10px;
    }

    .master-form textarea {
        height: 80px;
    }

    .form-submit-btn {
        padding: 10px;
        font-size: 14px;
    }

}




/* amenities section  */



.amenities-section {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 120px 0;



    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/highlights-bg.webp");

    background-repeat: no-repeat;

    background-position: center center;

    background-size: cover;

    z-index: 0;
}





.amenities-heading {
    text-align: center;

    margin-bottom: 40px;
}


/* PREMIUM */

.premium-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;
}

.premium-heading span {
    width: 120px;

    height: 2px;

    background: linear-gradient(to right,
            transparent,
            #e1b744);
}

.premium-heading span:last-child {
    background: linear-gradient(to left,
            transparent,
            #e1b744);
}



/* AMENITIES */

.amenities-heading h1 {
    margin: 0;
    color: #d4a43a;
    font-size: 35px;
    font-weight: 600;
}


/* =========================================
   GOLD DECORATION
========================================= */

.gold-decoration {
    width: min(650px, 70%);

    margin: 22px auto 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}

.gold-decoration span {
    height: 1px;

    flex: 1;

    background: linear-gradient(to right,
            transparent,
            #dca83b);
}

.gold-decoration span:last-child {
    background: linear-gradient(to left,
            transparent,
            #dca83b);
}

.gold-decoration b {
    color: #dca83b;

    font-size: 13px;

    transform: rotate(45deg);
}


/* SUBTITLE */

.amenities-heading p {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(20px, 2.2vw, 34px);

    margin-top: 8px;

    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.8);
}


/* =========================================
   AMENITIES GRID
========================================= */

.amenities-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px 14px;
}


.amenity-item {
    min-height: 100%;
    background: rgb(0 37 23 / 20%);
    border: 1px solid #d6a039;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* HOVER */

.amenity-item:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================
   ICON IMAGE
========================================= */

.amenity-icon {
    height: 100%;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 25px;
}


/* Image icon */

.amenity-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(68%) sepia(74%) saturate(650%) hue-rotate(5deg) brightness(90%) contrast(90%);
}



.item-line {
    width: 82%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-bottom: 15px;
}

.item-line span {
    flex: 1;

    height: 1px;

    background: #c7982e;
}

.item-line b {
    color: #b77c16;

    font-size: 10px;

    transform: rotate(45deg);
}


.amenity-item h3 {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
    text-align: center;
}




@media (max-width: 1200px) {

    .amenities-section {
        padding: 90px 0;
    }

    .amenities-grid {
        gap: 15px 10px;
    }

    .amenity-item {

        border-radius: 15px;
    }

    .amenity-icon {
        height: 85px;
    }

    .amenity-icon img {
        width: 58px;
        height: 58px;
    }

    .senior-icons img {
        width: 45px;
        height: 55px;
    }

    .amenity-item h3 {
        font-size: 15px;
    }

    .amenities-heading h1 {
        font-size: 30px;
    }

    .amenity-item {
        padding: 5px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .amenities-section {
        padding: 80px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 18px;
    }

    .amenities-heading h1 {
        font-size: 24px;
    }

    .amenity-item h3 {
        font-size: 16px;
    }

    .premium-heading span {
        width: 60px;
    }

    .amenity-item {
        padding: 10px;
    }
}


@media (max-width: 767px) {

    .amenities-section {
        padding: 70px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

    .amenities-heading h1 {
        font-size: 24px;
    }

    .amenity-item h3 {
        font-size: 16px;
    }

    .premium-heading span {
        width: 60px;
    }
}


@media (max-width: 550px) {

    .amenities-section {
        padding: 60px 0;
    }


    /* Keep background visible */

    .amenities-background {
        background-position: center center;

        background-size: cover;
    }


    /* Heading */

    .premium-heading {
        gap: 8px;
    }

    .premium-heading span {
        width: 35px;
    }

    .premium-heading h2 {
        font-size: 23px;

        letter-spacing: 4px;
    }

    .amenities-heading h1 {
        font-size: 20px;


    }

    .amenities-heading {
        text-align: center;
        margin-bottom: 25px;
    }

    .gold-decoration {
        width: 80%;

        margin-top: 15px;
    }

    .amenities-heading p {
        font-size: 16px;

        line-height: 1.4;

        padding: 0 10px;
    }


    /* Cards */

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .amenity-item {
        padding: 10px;
        border-radius: 12px;
    }


    .amenity-icon {
        height: 100%;
        margin-bottom: 10px;
    }

    .amenity-icon img {
        width: 45px;
        height: 45px;
    }



    /* Divider */

    .item-line {
        width: 90%;

        margin-bottom: 9px;
    }

    .item-line b {
        font-size: 8px;
    }


    /* Text */

    .amenity-item h3 {
        font-size: 14px;

        line-height: 1.3;
    }
}


@media (max-width: 380px) {

    .amenities-grid {
        gap: 9px;
    }


    .amenity-icon img {
        width: 35px;
        height: 35px;
    }

    .senior-icons img {
        width: 28px;
        height: 36px;
    }

    .amenity-item h3 {
        font-size: 14px;
    }

    .amenities-heading h1 {
        font-size: 20px;
        letter-spacing: 0;
    }
}


/* footer section  */



.vr-footer {

    position: relative;

    width: 100%;

    background: #f6f1e7;

    color: #111111;

    margin: 0;

    padding: 75px 0 0;

    overflow: hidden;

}


.vr-footer-leaf {

    position: absolute;

    z-index: 1;

    pointer-events: none;

    user-select: none;

    opacity: 0.9;

}


/* LEFT IMAGE */

.vr-footer-leaf-left {

    left: 0;

    bottom: 80px;

    width: 150px;

    height: auto;

    object-fit: contain;

}


/* RIGHT IMAGE */

.vr-footer-leaf-right {

    right: 0;

    bottom: 80px;

    width: 150px;

    height: auto;

    object-fit: contain;

}


/* =========================================================
   CONTAINER
========================================================= */

.vr-footer .container {

    position: relative;

    z-index: 5;

}


/* =========================================================
   FOOTER TOP - 4 COLUMNS
========================================================= */

.vr-footer-top {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr 1.25fr 1.5fr;

    align-items: start;

    column-gap: 45px;

    padding: 15px 0 60px;

}


/* =========================================================
   COMMON COLUMN
========================================================= */

.vr-footer-column {

    width: 100%;

    position: relative;

}


/* =========================================================
   COLUMN 1 - BRAND
========================================================= */

.vr-footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-start;

}


.vr-footer-logo {

    margin-bottom: 25px;

}


.vr-footer-logo a {

    display: inline-block;

    text-decoration: none;

}


.vr-footer-logo img {

    width: 210px;

    height: auto;

    max-width: 100%;

    display: block;

    object-fit: contain;

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.vr-social-icons {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 10px;

}


.vr-social-icons a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #002b0e;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;

}


.vr-social-icons a:hover {

    background: #d99520;

    transform: translateY(-4px);

}



.vr-footer-column h3 {

    margin: 0 0 20px;

    padding: 0;

    color: #d99520;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.3;


}


/* =========================================================
   QUICK LINKS
========================================================= */

.vr-footer-menu {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;

}


.vr-footer-menu li {

    margin: 0;

    padding: 0;

    width: 100%;

}


.vr-footer-menu li a {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #111111;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.45;

    text-decoration: none;

    transition: all 0.3s ease;

}


/* =========================================================
   ARROW
========================================================= */

.vr-menu-arrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: #d99520;

    font-size: 11px;

    width: 12px;

    min-width: 12px;

    transition: all 0.3s ease;

}


.vr-footer-menu li a:hover {

    color: #d99520;

    transform: translateX(4px);

}


.vr-footer-menu li a:hover .vr-menu-arrow {

    color: #d99520;

    transform: translateX(3px);

}


/* =========================================================
   LOCATION
========================================================= */

.vr-footer-location {

    padding-left: 5px;

}


.vr-location-content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

}


.vr-contact-item {

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    gap: 10px;

    width: 100%;

}


.vr-contact-item i {

    width: 18px;

    min-width: 18px;

    margin-top: 4px;

    color: #d99520;

    font-size: 14px;

    text-align: center;

}


.vr-contact-item a {

    color: #111111;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.55;

    text-decoration: none;

    transition: color 0.3s ease;

}


.vr-contact-item a:hover {

    color: #d99520;

}


.vr-contact-item p {

    margin: 0;

    padding: 0;

    color: #111111;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.55;

    text-align: left;

}


/* =========================================================
   KEYWORDS
========================================================= */

.vr-footer-keywords {

    padding-left: 5px;

}


.vr-footer-keywords p {

    margin: 0 0 10px;

    padding: 0;

    color: #111111;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.55;

    text-align: left;

}


/* =========================================================
   FOOTER BORDER
========================================================= */

.vr-footer-border {

    width: 100%;

    height: 1px;

    background: rgba(0, 0, 0, 0.20);

    margin: 0;

    padding: 0;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.vr-footer-bottom {

    width: 100%;

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 90px;

    gap: 30px;

}


.vr-footer-copy {

    color: #000000;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.5;

    text-align: center;

}


.vr-footer-developer {

    color: #000000;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.5;

    text-align: center;

}


.vr-footer-developer a {

    color: #d99520;

    text-decoration: none;

    transition: color 0.3s ease;

}


.vr-footer-developer a:hover {

    color: #d99520;

}


@media (max-width: 1599px) {
  .vr-footer-leaf-left,

    .vr-footer-leaf-right {

        width: 100px;

    }
}

@media (max-width: 1399px) {

    .vr-footer-top {

        grid-template-columns: 1fr 1fr 1.25fr 1.4fr;

        column-gap: 30px;

    }


    .vr-footer-logo img {

        width: 190px;

    }


    .vr-footer-column h3 {

        font-size: 20px;

    }


    .vr-footer-menu li a {

        font-size: 14px;

    }


    .vr-contact-item a,

    .vr-contact-item p,

    .vr-footer-keywords p {

        font-size: 14px;

    }


    .vr-footer-leaf-left,

    .vr-footer-leaf-right {

        width: 80px;

    }

}


/* =========================================================
   1199px
========================================================= */

@media (max-width: 1199px) {

    .vr-footer-top {

        grid-template-columns: 1fr 1fr 1.2fr;

        row-gap: 45px;

    }


    /* Keywords goes full fourth position */

    .vr-footer-keywords {

        grid-column: 1 / -1;

        max-width: 700px;

    }


    .vr-footer-keywords p {

        max-width: 700px;

    }

}


/* =========================================================
   991px
========================================================= */

@media (max-width: 991px) {

    .vr-footer {

        padding-top: 60px;

    }


    .vr-footer-top {

        grid-template-columns: 1fr 1fr;

        column-gap: 45px;

        row-gap: 45px;

        padding: 15px 0 50px;

    }


    /* Brand */

    .vr-footer-brand {

        align-items: flex-start;

    }


    /* Location */

    .vr-footer-location {

        padding-left: 0;

    }


    /* Keywords */

    .vr-footer-keywords {

        grid-column: 1 / -1;

        padding-left: 0;

        max-width: 100%;

    }


    .vr-footer-keywords p {

        max-width: 800px;

    }


    .vr-footer-leaf-left {
        display: none;

        width: 90px;

        left: -20px;

        bottom: 120px;

        opacity: 0.5;

    }


    .vr-footer-leaf-right {
        display: none;
        width: 90px;

        right: -20px;

        bottom: 120px;

        opacity: 0.5;

    }


    .vr-footer-bottom {

        min-height: auto;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        padding: 22px 0;

        gap: 8px;

    }

}


/* =========================================================
   767px
========================================================= */

@media (max-width: 767px) {

    .vr-footer-top {

        grid-template-columns: 1fr;

        gap: 38px;

    }


    .vr-footer-brand,

    .vr-footer-links,

    .vr-footer-location,

    .vr-footer-keywords {

        width: 100%;

        max-width: 450px;

        margin-left: auto;

        margin-right: auto;

    }


    .vr-footer-brand {

        align-items: center;

        text-align: center;

    }


    .vr-footer-logo {

        margin-bottom: 20px;

    }


    .vr-social-icons {

        justify-content: center;

    }


    .vr-footer-column h3 {

        font-size: 19px;

    }


    .vr-footer-links,

    .vr-footer-location,

    .vr-footer-keywords {

        text-align: left;

    }


    .vr-footer-menu {

        gap: 10px;

    }


    .vr-footer-menu li a {

        font-size: 14px;

    }


    .vr-contact-item a,

    .vr-contact-item p,

    .vr-footer-keywords p {

        font-size: 13.5px;

    }


    .vr-footer-leaf-left,

    .vr-footer-leaf-right {

        width: 70px;

    }

}


/* =========================================================
   575px
========================================================= */

@media (max-width: 575px) {

    .vr-footer {

        padding-top: 45px;

    }


    .vr-footer-top {

        gap: 32px;

        padding: 15px 0 40px;

    }


    .vr-footer-logo img {

        width: 170px;

    }


    .vr-social-icons {

        gap: 9px;

    }


    .vr-social-icons a {

        width: 38px;

        height: 38px;

        font-size: 14px;

    }


    .vr-footer-column h3 {

        font-size: 18px;

        margin-bottom: 15px;

    }


    .vr-footer-menu li a {

        font-size: 13px;

    }


    .vr-menu-arrow {

        font-size: 9px;

        width: 10px;

        min-width: 10px;

    }


    .vr-contact-item {

        gap: 8px;

    }


    .vr-contact-item a,

    .vr-contact-item p,

    .vr-footer-keywords p {

        font-size: 12.5px;

    }


    .vr-footer-bottom {

        padding: 20px 0;

    }


    .vr-footer-copy,

    .vr-footer-developer {

        font-size: 12px;

    }


    .vr-footer-leaf-left {

        width: 55px;

        left: -20px;

        bottom: 100px;
        display: none
    }


    .vr-footer-leaf-right {

        width: 55px;

        right: -20px;

        bottom: 100px;
        display: none;

    }

}



@media (max-width: 480px) {

    .vr-footer-top {

        gap: 28px;

    }


    .vr-footer-logo img {

        width: 150px;

    }


    .vr-footer-menu li a {
        font-size: 14px;

    }


    .vr-contact-item a,

    .vr-contact-item p,

    .vr-footer-keywords p {

        font-size: 14px;

    }


    .vr-footer-copy,

    .vr-footer-developer {

        font-size: 14px;

    }

}


/* side buttons  */


.vr-side-actions {

    position: fixed;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    z-index: 9998;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 3px;

}

.vr-side-button {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    overflow: hidden;

    box-sizing: border-box;

    color: #ffffff;

    text-decoration: none;

    transition:
        width 0.35s ease,
        box-shadow 0.35s ease;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.20);

}


.vr-side-button:hover {

    width: 210px;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.28);

}


.vr-side-icon {

    width: 50px;

    min-width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 17px;

    transition:
        transform 0.3s ease;

}


.vr-side-button:hover .vr-side-icon {

    transform: scale(1.08);

}

.vr-side-text {

    display: flex;

    align-items: center;

    height: 100%;

    padding-left: 5px;

    padding-right: 18px;

    color: #ffffff;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    opacity: 0;

    transform: translateX(15px);

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;

}


.vr-side-button:hover .vr-side-text {

    opacity: 1;

    transform: translateX(0);

}


.vr-brochure-action {

    background: #043222;

}


.vr-brochure-action:hover {

    background: #043222;

}


.vr-enquiry-action {

    background: #043222;

}


.vr-enquiry-action:hover {

    background: #06452f;

}



.vr-call-action {

    background: #c58b20;

}


.vr-call-action:hover {

    background: #c58b20;

}


.vr-popup-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.62);

    backdrop-filter: blur(4px);

    -webkit-backdrop-filter: blur(4px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.vr-popup-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.vr-popup-box {

    position: relative;

    width: 100%;

    max-width: 400px;

    background: #ffffff;

    padding: 20px 25px 28px;

    border-radius: 2px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    transform:
        translateY(25px) scale(0.96);

    transition:
        transform 0.35s ease;

}


.vr-popup-overlay.active .vr-popup-box {

    transform:
        translateY(0) scale(1);

}


.vr-popup-close {

    position: absolute;

    top: 0;

    right: 0;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 0;

    background: #d7a73a;

    color: #ffffff;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.3s ease;

}


.vr-popup-close:hover {

    background: #b77c19;

}

.vr-popup-heading {

    padding:
        0 45px 20px;

    text-align: center;

}


.vr-popup-heading h2 {

    margin: 0;

    padding: 0;

    color: #c58b20;

    font-family:
        "Plus Jakarta Sans", sans-serif;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.5px;

}


.vr-popup-form {

    width: 100%;

}


.vr-popup-field {

    width: 100%;

    margin-bottom: 15px;

}


.vr-popup-field input,
.vr-popup-field textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d7d7d7;

    border-radius: 0;

    outline: none;

    background: #ffffff;

    color: #222222;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}

.vr-popup-field input {

    height: 41px;

    padding: 0 11px;

}

.vr-popup-field textarea {

    min-height: 105px;

    padding: 11px;

    resize: vertical;

}

.vr-popup-field input::placeholder,
.vr-popup-field textarea::placeholder {

    color: #777777;

    opacity: 1;

}


.vr-popup-field input:focus,
.vr-popup-field textarea:focus {

    border-color: #c58b20;

    box-shadow:
        0 0 0 1px rgba(197, 139, 32, 0.12);

}


.vr-popup-submit {

    width: 100%;

    height: 44px;

    margin-top: 10px;

    padding: 0 15px;

    border: none;

    border-radius: 0;

    background:
        linear-gradient(135deg,
            #b77c19,
            #d7a73a,
            #b77c19);

    color: #000000;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        all 0.3s ease;

}


.vr-popup-submit:hover {

    background:
        linear-gradient(135deg,
            #a96e12,
            #c9972d,
            #a96e12);

    color: #000000;

    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.18);

}


body.vr-popup-open {

    overflow: hidden;

}


@media (max-width: 1199px) {

.vr-side-button {
    width: 45px;
    height: 45px;
}
.vr-side-icon {

        width: 45px;

        min-width: 45px;

        height: 45px;

        font-size: 15px;

    }
     .vr-side-button:hover {

        width: 200px;

    }

}

@media (max-width: 991px) {

    .vr-side-button {

        width: 45px;

        height: 45px;

    }


    .vr-side-icon {

        width: 45px;

        min-width: 45px;

        height: 45px;

        font-size: 15px;

    }


    .vr-side-button:hover {

        width: 200px;

    }


    .vr-side-text {

        font-size: 12px;

    }

}



@media (max-width: 575px) {

    .vr-side-actions {

        top: auto;

        bottom: 30%;

        right: 0;

        transform: none;

        gap: 4px;

    }


    .vr-side-button {

     width: 30px;
        height: 30px;

    }


    .vr-side-icon {

        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 12px;

    }


    .vr-side-button:hover {

        width: 155px;

    }


    .vr-side-text {

        font-size: 11px;

        padding-left: 4px;

        padding-right: 10px;

    }

    .vr-popup-overlay {

        padding: 15px;

    }


    .vr-popup-box {

        max-width: 100%;

        padding: 18px 20px 24px;

    }


    .vr-popup-heading {

        padding-bottom: 18px;

    }


    .vr-popup-heading h2 {

        font-size: 20px;

    }


    .vr-popup-field {

        margin-bottom: 10px;

    }


    .vr-popup-field input {

        height: 35px;

    }


    .vr-popup-field textarea {

        min-height: 75px;

    }


    .vr-popup-submit {

        height: 40px;

    }

}


@media (max-width: 380px) {



    .vr-side-button:hover {

        width: 140px;

    }


    .vr-popup-box {

        padding:
            15px;

    }
        .vr-popup-heading {
        padding-bottom: 10px;
    }


    .vr-popup-close {

        width: 25px;

        height: 25px;

    }


    .vr-popup-heading h2 {

        font-size: 16px;

    }

}


/* location advantages 2  */


.vr-neighbourhood-section {

    width: 100%;

    padding: 120px 0;

    background: #f8f7f3;

    box-sizing: border-box;

}


.vr-neighbourhood-heading {

    width: 100%;

    text-align: center;

    margin-bottom: 45px;

}


.vr-neighbourhood-heading h2 {

    margin: 0;
    color: #000;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;

}


.vr-neighbourhood-row {

    display: grid;

    grid-template-columns:
        1fr 1.18fr;

    gap: 15px;

    align-items: stretch;

}



.vr-location-highlights {

    background: #013014;

    padding: 55px 40px 35px;

    box-sizing: border-box;

}


.vr-location-highlights h3 {

    margin: 0 0 28px;

    color: #fff;

    font-size: 35px;

    font-weight: 600;

    line-height: 1.2;

}



.vr-location-list {

    list-style: none;

    padding: 0;

    margin: 0;

}


.vr-location-list li {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 23px;

    color: #fff;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;

}



.vr-arrow {

    flex: 0 0 auto;

    color: #d3b47c;

    font-size: 22px;

    font-weight: 700;

    line-height: 20px;

    letter-spacing: -4px;

    margin-top: 1px;

}




.vr-location-map {

    width: 100%;

    overflow: hidden;

    background: #ddd;

}


.vr-location-map iframe {

    width: 100%;

    height: 100%;

    min-height: 625px;

    display: block;

    border: 0;

}


.vr-location-list li {

    transition:
        transform 0.25s ease,
        color 0.25s ease;

}


.vr-location-list li:hover {

    transform: translateX(5px);

    color: #ffffff;

}


.vr-location-list li:hover .vr-arrow {

    color: #b98a3d;

}

@media (max-width: 1199px) {

    .vr-neighbourhood-section {

        padding: 90px 0;

    }


    .vr-neighbourhood-heading {

        margin-bottom: 35px;

    }


    .vr-neighbourhood-heading h2 {
        font-size: 30px;

    }


    .vr-location-highlights {

        padding: 30px;

    }


    .vr-location-highlights h3 {

        font-size: 30px;

    }


    .vr-location-list li {

        font-size: 14px;

        gap: 12px;

        margin-bottom: 20px;

    }


    .vr-location-map,
    .vr-location-map iframe {

        min-height: 100%;

    }

}





@media (max-width: 991px) {

    .vr-neighbourhood-section {
        padding: 80px 0;
    }

    .vr-neighbourhood-row {
        grid-template-columns: 1fr;
        gap: 20px;

    }

    .vr-neighbourhood-heading h2 {
        font-size: 24px;
    }

    .vr-neighbourhood-heading {
        margin-bottom: 24px;
    }

    .vr-location-highlights {
        min-height: auto;
        padding: 20px;
    }


    .vr-location-highlights h3 {
        font-size: 24px;
    }


    .vr-location-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;

    }


    .vr-location-list li {
        margin-bottom: 15px;
    }


    .vr-location-map {
        min-height: 400px;
    }


    .vr-location-map iframe {
        min-height: 500px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vr-neighbourhood-section {

        padding: 70px 0;

    }


    .vr-neighbourhood-container {

        padding: 0 15px;

    }

    .vr-neighbourhood-heading {
        margin-bottom: 20px;
    }


    .vr-neighbourhood-heading h2 {

        font-size: 24px;

    }


    .vr-location-highlights {

        padding: 30px 25px 20px;

    }


    .vr-location-highlights h3 {

        font-size: 24px;

        margin-bottom: 20px;

    }


    .vr-location-list {

        display: block;

    }


    .vr-location-list li {

        font-size: 14px;

        margin-bottom: 18px;

        gap: 12px;

    }


    .vr-arrow {
        font-size: 18px;

    }


    .vr-location-map {

        min-height: 400px;

    }


    .vr-location-map iframe {

        min-height: 400px;

    }

}


@media (max-width: 480px) {

    .vr-neighbourhood-section {
        padding: 60px 0;
    }

    .vr-neighbourhood-heading h2 {
        font-size: 20px;
    }

    .vr-location-highlights {
        padding: 20px;

    }


    .vr-location-highlights h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }


    .vr-location-list li {
        font-size: 14px;
        gap: 10px;
        margin-bottom: 15px;
    }


    .vr-location-map {

        min-height: 350px;

    }


    .vr-location-map iframe {

        min-height: 350px;

    }

}



/* header section */



.vr-site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 92px;

    z-index: 99999;

    background: transparent;

    transition:
        transform 0.45s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


/* =========================================================
   HEADER HIDDEN WHEN SCROLLING DOWN
========================================================= */

.vr-site-header.vr-header-hidden {

    transform: translateY(-100%);

}


/* =========================================================
   HEADER VISIBLE AFTER SCROLLING UP
========================================================= */

.vr-site-header.vr-header-scroll-visible {

    background: rgba(4, 50, 34, 0.97);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.20);

}


/* =========================================================
   INNER CONTAINER
========================================================= */

.vr-header-inner {

    width: 100%;

    max-width: 1820px;

    height: 100%;

    margin: 0 auto;

    padding: 0 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;

}


/* =========================================================
   LEFT LOGO
========================================================= */

.vr-logo-area {

    width: 180px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

}


.vr-logo-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    position: relative;

}


.vr-logo {

    width: 105px;

    height: auto;

    display: block;

    object-fit: contain;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}


/* =========================================================
   LOGO VISIBILITY
========================================================= */

.vr-logo-scroll {

    position: absolute;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    opacity: 0;

    visibility: hidden;

}


/* =========================================================
   WHEN HEADER IS COLORED
========================================================= */

.vr-site-header.vr-header-scroll-visible .vr-logo-top {

    opacity: 0;

    visibility: hidden;

}


.vr-site-header.vr-header-scroll-visible .vr-logo-scroll {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.vr-desktop-nav {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

}


.vr-desktop-nav ul {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 38px;

}


.vr-desktop-nav ul li {

    margin: 0;

    padding: 0;

}


.vr-desktop-nav ul li a {

    position: relative;

    display: inline-block;

    padding: 10px 0;

    color: #ffffff;

    text-decoration: none;



    font-size: 16px;

    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    transition:
        color 0.3s ease;

}


/* =========================================================
   NAVIGATION HOVER
========================================================= */

.vr-desktop-nav ul li a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 2px;

    width: 0;

    height: 2px;

    background: #d4a43a;

    transform:
        translateX(-50%);

    transition:
        width 0.3s ease;

}


.vr-desktop-nav ul li a:hover {

    color: #d4a43a;

}


.vr-desktop-nav ul li a:hover::after {

    width: 100%;

}


/* =========================================================
   RIGHT BUILDER LOGO
========================================================= */

.vr-builder-area {

    width: 180px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

}


.vr-builder-link {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

}


.vr-builder-logo {

    width: 105px;

    height: auto;

    display: block;

    object-fit: contain;

    transition:
        opacity 0.3s ease;

}


/* Scroll logo hidden initially */

.vr-builder-scroll {

    position: absolute;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    opacity: 0;

    visibility: hidden;

}


/* =========================================================
   BUILDER LOGO AFTER SCROLL
========================================================= */

.vr-site-header.vr-header-scroll-visible .vr-builder-top {

    opacity: 0;

    visibility: hidden;

}


.vr-site-header.vr-header-scroll-visible .vr-builder-scroll {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.vr-menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    padding: 0;

    border: 0;

    outline: none;

    background: #043222;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}


.vr-menu-toggle span {

    width: 23px;

    height: 2px;

    display: block;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


/* =========================================================
   MOBILE BUTTON ACTIVE
========================================================= */

.vr-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px) rotate(45deg);

}


.vr-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.vr-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px) rotate(-45deg);

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.vr-mobile-nav {

    display: none;

    position: absolute;

    top: 92px;

    left: 0;

    width: 100%;

    background:
        rgba(4, 50, 34, 0.98);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

}


.vr-mobile-nav ul {

    list-style: none;

    margin: 0;

    padding: 8px 20px 20px;

}


.vr-mobile-nav ul li {

    margin: 0;

    padding: 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);

}


.vr-mobile-nav ul li:last-child {

    border-bottom: none;

}


.vr-mobile-nav ul li a {

    display: block;

    padding: 15px 5px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;

}


.vr-mobile-nav ul li a:hover {

    color: #d4a43a;

    padding-left: 12px;

}


.vr-mobile-nav.active {

    display: block;

}

@media (min-width: 1600px) {

    .vr-header-inner {

        padding-left: 55px;

        padding-right: 55px;

    }


    .vr-desktop-nav ul {

        gap: 42px;

    }


    .vr-desktop-nav ul li a {

        font-size: 17px;

    }


    .vr-logo {

        width: 110px;

    }

    .vr-builder-logo {

        width: 110px;
        /* background: #fff;
    padding: 5px; */
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1300px) {

    .vr-header-inner {

        padding-left: 30px;

        padding-right: 30px;

    }


    .vr-desktop-nav ul {

        gap: 25px;

    }


    .vr-desktop-nav ul li a {

        font-size: 15px;

    }


    .vr-logo-area,
    .vr-builder-area {

        width: 145px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vr-site-header {

        height: 80px;

    }


    .vr-header-inner {

        padding:
            0 25px;

    }


    .vr-desktop-nav {

        display: none;

    }


    .vr-logo-area {

        width: auto;

    }


    .vr-builder-area {

        width: auto;

        margin-left: auto;

        margin-right: 15px;

    }


    .vr-logo {

        width: 95px;

    }


    .vr-builder-logo {

        width: 90px;

    }


    .vr-menu-toggle {

        display: flex;

    }


    .vr-mobile-nav {

        top: 80px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .vr-site-header {
        height: 70px;
        position: relative;
        background: rgba(4, 50, 34, 0.97);

    }


    .vr-header-inner {

        padding:
            0 15px;

    }


    .vr-logo {

        width: 82px;

    }


    .vr-builder-logo {

        width: 78px;

    }


    .vr-builder-area {

        margin-right: 10px;

    }


    .vr-menu-toggle {

        width: 42px;

        height: 42px;

    }


    .vr-mobile-nav {

        top: 70px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .vr-logo {

        width: 75px;

    }


    .vr-builder-logo {

        width: 70px;

    }


    .vr-menu-toggle {

        width: 40px;

        height: 40px;

    }


    .vr-mobile-nav ul {

        padding-left: 15px;

        padding-right: 15px;

    }

}



/* whats app icon start */

.floating_btn {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #4dac48;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 40px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;

    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


@media only screen and (max-width: 767px) {
    .floating_btn {
    width: 80px;
    height: 80px;
    }

.contact_icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

}


/* chatbot css Start */

#chat-bot-launcher-container.chat-bot-avatar-launcher,
#chat-bot-launcher-container.chat-bot-launcher-notext {
    bottom: 20px !important;
    right: 25px !important;
    z-index: 9;
}

#chat-bot-message-container.slide-in {
    display: none;
}

#chat-bot-message-container {
    right: 48px !important;
    bottom: 90px !important;
    /* width: 280px !important; */
}

#chat-bot-message-container .chat-bot-message-label {
    padding: 15px !important;
    margin: 0 3px !important;
    cursor: pointer;
}

#chat-bot-frame-container {
    bottom: 100px !important;
    right: 35px !important;
    max-height: 455px !important;
    width: 330px !important;
}

.chat-bot-message-label p,
.bubble-label p,
.bubble-label {
    font-size: 14px !important;
    line-height: normal;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {

    #chat-bot-message-container .overflow,
    #chat-bot-message-close {
        display: none;
    }
    #chat-bot-launcher-container.chat-bot-avatar-launcher .chat-bot-launcher-button {
    width: 40px !important;
    height: 40px !important;
    background-size: 40px !important;
    }
}

/* extra section 1  */


.vr-fortune-intro {
    width: 100%;
    padding: 120px 0px;
    background: #f9f6f1;
}


.vr-fortune-wrap {
    width: 100%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 50% 50%;

    overflow: hidden;

}


/* ==========================================
           LEFT CONTENT
        ========================================== */

.vr-fortune-content {
    position: relative;

    background: #013014;

    padding: 30px;

    color: #ffffff;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.vr-fortune-content-inner {
    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 100%;
}


/* ==========================================
           BRAND
        ========================================== */

.vr-fortune-brand {
    position: absolute;

    top: 32px;
    right: 38px;

    text-align: center;

    z-index: 5;
}


.vr-brand-leaf {
    width: 42px;
    height: 42px;

    margin: 0 auto 3px;

    position: relative;
}


.vr-brand-leaf::before,
.vr-brand-leaf::after {
    content: "";

    position: absolute;

    width: 21px;
    height: 35px;

    background: #91c83e;

    border-radius: 100% 0 100% 0;

    top: 5px;
}


.vr-brand-leaf::before {
    left: 0;

    transform: rotate(-38deg);
}


.vr-brand-leaf::after {
    right: 0;

    transform: rotate(38deg);
}


.vr-brand-name {
    font-family: 'Playfair Display', serif;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 1.5px;

    color: #ffffff;
}


.vr-brand-caption {
    font-size: 6px;

    letter-spacing: 1.7px;

    margin-top: 2px;

    color: #dce8df;
}


/* ==========================================
           SMALL HEADING
        ========================================== */

.vr-intro-small {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #fff;

    margin-bottom: 14px;
}


/* ==========================================
           MAIN TITLE
        ========================================== */

.vr-intro-title {
    font-size: 35px;
    line-height: .95;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 12px;
}


.vr-intro-title span {
    display: block;

    color: #e7bc29;
}


/* ==========================================
           TAGLINE
        ========================================== */

.vr-intro-tagline {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.25;
    /* text-transform: uppercase; */
    color: #e7bc29;
    margin-bottom: 22px;
}


/* ==========================================
           DESCRIPTION
        ========================================== */

.vr-intro-description {
    max-width: 590px;

    color: rgba(255, 255, 255, .88);

    font-size: 12px;

    line-height: 1.75;

    margin-bottom: 32px;
}


/* ==========================================
           SIX NEW CONTENT POINTS
        ========================================== */

.vr-intro-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 42px;

    row-gap: 23px;

    max-width: 100%;
}


.vr-intro-point {
    position: relative;

    padding-left: 17px;
}


.vr-intro-point::before {
    content: "";

    position: absolute;

    left: 0;
    top: 2px;

    width: 2px;
    height: 100%;

    background: #dcb62f;
}


.vr-intro-point h3 {
    font-size: 14px;
    font-weight: 500;
    color: #e5c24a;
    /* text-transform: uppercase; */
    margin-bottom: 5px;
    letter-spacing: 0.25px;
}


.vr-intro-point p {
    font-size: 14px;
margin: 0;
    line-height: 1.65;

    color: rgba(255, 255, 255, .83);
}


/* ==========================================
           DECORATIVE LEAF
        ========================================== */

.vr-leaf-decoration {
    position: absolute;

    left: -25px;
    bottom: -55px;

    width: 210px;
    height: 250px;

    opacity: .8;

    z-index: 1;
}


.vr-leaf-decoration::before {
    content: "";

    position: absolute;

    width: 145px;
    height: 2px;

    background: #80a934;

    transform: rotate(-52deg);

    left: 28px;
    bottom: 105px;
}


.vr-leaf-decoration::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 2px;

    background: #80a934;

    transform: rotate(18deg);

    left: 72px;
    bottom: 78px;
}


.vr-leaf {
    position: absolute;

    width: 17px;
    height: 37px;

    background: #82b232;

    border-radius: 100% 0 100% 0;
}


.vr-leaf.one {
    left: 50px;
    bottom: 118px;

    transform: rotate(-38deg);
}


.vr-leaf.two {
    left: 92px;
    bottom: 145px;

    transform: rotate(35deg);
}


.vr-leaf.three {
    left: 40px;
    bottom: 175px;

    transform: rotate(-45deg);
}


.vr-leaf.four {
    left: 120px;
    bottom: 95px;

    transform: rotate(40deg);
}


.vr-leaf.five {
    left: 105px;
    bottom: 205px;

    transform: rotate(28deg);
}


/* ==========================================
           RIGHT IMAGE
        ========================================== */

.vr-fortune-image {
    position: relative;


    overflow: hidden;

    background: #013014;
}


.vr-fortune-image img {
    width: 100%;
    height: 100%;


    object-fit: contain;

    display: block;

    object-position: center center;
}


/* ==========================================
           IMAGE LIGHT EFFECT
        ========================================== */

.vr-fortune-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .18),
            transparent 35%);

    pointer-events: none;
}


/* ==========================================
           RIGHT BRAND
        ========================================== */

.vr-image-brand {
    position: absolute;

    right: 38px;
    top: 30px;

    z-index: 4;

    text-align: center;
}


.vr-image-brand-icon {
    width: 52px;
    height: 48px;

    margin: 0 auto 2px;

    position: relative;
}


.vr-image-brand-icon::before,
.vr-image-brand-icon::after {
    content: "";

    position: absolute;

    width: 24px;
    height: 40px;

    background: #8bc53f;

    border-radius: 100% 0 100% 0;

    bottom: 0;
}


.vr-image-brand-icon::before {
    left: 1px;

    transform: rotate(-37deg);
}


.vr-image-brand-icon::after {
    right: 1px;

    transform: rotate(37deg);
}


.vr-image-brand-title {
    font-family: 'Playfair Display', serif;

    color: #176046;

    font-size: 22px;

    letter-spacing: 1px;
}


.vr-image-brand-sub {
    color: #397052;

    font-size: 7px;

    letter-spacing: 2px;
}


/* ==========================================
           IMAGE BOTTOM QUOTE
        ========================================== */

.vr-image-quote {
    position: absolute;

    left: 32px;
    bottom: 30px;

    z-index: 5;

    padding: 13px 20px;

    background: rgba(255, 255, 255, .92);

    color: #075846;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}

@media (max-width: 1399px) {

    .vr-fortune-intro {
        padding: 100px 0;
    }

    .vr-fortune-image img {
        object-fit: contain;
    }


    .vr-fortune-content {
        padding: 30px;
    }

    .vr-intro-points {
        column-gap: 25px;
    }


}


@media (max-width: 1200px) {

    .vr-fortune-intro {
        padding: 90px 0;
    }


    .vr-fortune-content {
        padding: 30px;
    }


    .vr-intro-title {
        font-size: 30px;
    }


    .vr-intro-points {
        column-gap: 25px;
    }

    .vr-fortune-wrap {
        grid-template-columns: 1fr;
    }

}


/* ==========================================
           RESPONSIVE - 991
        ========================================== */

@media (max-width: 991px) {

    .vr-fortune-wrap {
        grid-template-columns: 1fr;
    }


    .vr-fortune-content {
        min-height: 100%;
    }


    .vr-fortune-image {
        min-height: 100%;
    }

    .vr-intro-title {
        font-size: 24px;
    }

    .vr-intro-tagline {
        font-size: 24px;
    }


    .vr-fortune-image img {
        min-height: 100%;
    }

}


/* ==========================================
           RESPONSIVE - 767
        ========================================== */

@media (max-width: 767px) {

    .vr-fortune-intro {
        padding: 80px 0;
    }


    .vr-fortune-content {
        padding: 95px 25px 45px;
    }


    .vr-fortune-brand {
        top: 20px;
        right: 22px;
    }


    .vr-intro-small {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .vr-intro-title {
        font-size: 24px;

        line-height: .98;
    }


    .vr-intro-tagline {
        font-size: 15px;
    }


    .vr-intro-description {
        font-size: 11px;
    }


    .vr-intro-points {
        grid-template-columns: 1fr;

        row-gap: 18px;
    }


    .vr-fortune-image {
        min-height: 100%;
    }


    .vr-fortune-image img {
        min-height: 100%;
    }


    .vr-image-brand {
        top: 20px;
        right: 20px;
    }


    .vr-image-brand-title {
        font-size: 18px;
    }


    .vr-image-quote {
        left: 20px;
        bottom: 20px;

        font-size: 9px;
    }

}


/* ==========================================
           RESPONSIVE - 575
        ========================================== */

@media (max-width: 575px) {

    .vr-fortune-intro {
        padding: 60px 0;
    }

    .vr-fortune-content {
        padding: 20px;
    }


    .vr-intro-title {
        font-size: 20px;
    }


    .vr-intro-tagline {
        font-size: 20px;
    }


    .vr-intro-point h3 {
        font-size: 14px;
    }


    .vr-intro-point p {
        font-size: 13px;
    }


    .vr-fortune-image,
    .vr-fortune-image img {
        min-height: 100%;
    }

}


/* extra section villas individual  */


.villa-section {
    width: 100%;
    padding: 120px 0px;
    background: #ffffff;
}




.heading-area {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
}

.heading-area h1 {
    margin: 0;
    color: #000;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .3px;
}


.heading-area p {
    margin: 25px auto 0;
    max-width: 700px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}


/* =========================
   THREE VILLAS
========================= */

.villa-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.villa-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}

.villa-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.villa-card:hover img {
    transform: scale(1.04);
}



@media (max-width: 1199px) {

    .villa-section {
        padding: 90px 0;
    }

    .villa-grid {
        gap: 15px;
    }

    .heading-area {
        margin-bottom: 35px;
    }

    .heading-area h1 {
        font-size: 30px;
    }

}

@media (max-width: 991px) {

    .villa-section {
        padding: 80px 0;
    }

    .villa-grid {
        gap: 15px;
    }

    .heading-area {
        margin-bottom: 35px;
    }

    .heading-area h1 {
        font-size: 24px;
    }

}


@media (max-width: 767px) {

    .villa-section {
        padding: 70px 0;
    }

    .heading-area {
        margin-bottom: 30px;
    }

    .heading-area h1 {
        font-size: 24px;
    }

    .villa-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .villa-section {
        padding: 60px 0;
    }

    .heading-area h1 {
        font-size: 20px;
    }

}


/* heading animation  */


.letter-heading span {
    display: inline-block;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .45s ease, transform .45s ease;
}

.letter-heading.animate span {
    opacity: 1;
    transform: translateY(0);
}