@font-face {
    font-family: "Open Serif Book";
    src: url("../fonts/OpenSerif-Book.woff2") format("woff2"), url("../fonts/OpenSerif-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-size: 100%;
    outline: 0;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Oxygen", sans-serif;
    font-weight: 300;
    line-height: 1.45;
    font-size: 16px;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333333;
}

a.text-underline {
    text-decoration: underline;
}

a.text-underline:hover {
    text-decoration: none;
}

.main-wrp {
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    padding: 0 15px;
}

@media screen and (max-width: 1300px) {
    .main-wrp {
        max-width: 1200px;
    }
}

.btn {
    background: #f58345;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 24px;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
}

.btn span {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1500px) {
    .btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 8px 18px;
        font-size: 10px;
    }
}

.btn:hover:after {
    height: 100%;
}

.btn.arrow {
    padding-right: 48px;
}

.btn.arrow:before {
    content: "";
    position: absolute;
    margin: 0 auto;
    width: 13px;
    height: 1px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #000;
    transition: all 0.3s ease;
}

.btn.arrow:after {
    content: "";
    position: absolute;
    margin: 0 auto;
    width: 6px;
    height: 6px;
    border: 1px solid #000;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-top: none;
    border-left: none;
    transition: all 0.3s ease;
}

.btn.arrow:hover::before {
    right: 12px;
}

.btn.arrow:hover::after {
    right: 12px;
}

@media screen and (max-width: 1500px) {

    .btn.arrow:before,
    .btn.arrow:after {
        top: 49%;
    }
}

.btn.arrow-btn {
    padding: 10px 14px;
    font-size: 14px;
}

.btn.arrow-btn i {
    margin-left: 6px;
    font-weight: 900;
}

@media screen and (max-width: 767px) {
    .btn.arrow-btn {
        padding: 8px 10px 7px;
        font-size: 14px;
    }
}

.btn.black-bg {
    background-color: #231f20;
    color: #fff;
}

.slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
    background-color: transparent;
    width: 44px;
    height: 44px;
    font-size: 0;
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn-circle.owl-theme .owl-nav [class*=owl-]::before {
    content: "";
    position: absolute;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    border: 2px solid #f58345;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-top: none;
    border-left: none;
}

.slider-btn-circle.owl-theme .owl-nav [class*=owl-]::after {
    content: "";
    background-color: #f58345;
    position: absolute;
    margin: 0 auto;
    width: 26px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn-circle.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-circle.owl-theme .owl-nav [class*=owl-].disabled {
    display: none;
}

.slider-btn-circle.owl-carousel .owl-nav .owl-prev {
    right: -90px;
}

.slider-btn-circle.owl-carousel .owl-nav .owl-prev::before {
    left: 0;
    transform: translateY(-50%) rotate(135deg);
}

.slider-btn-circle.owl-carousel .owl-nav .owl-prev::after {
    left: 14px;
}

.slider-btn-circle.owl-carousel .owl-nav .owl-next {
    right: -180px;
}

.slider-btn-circle.owl-carousel .owl-nav .owl-next::after {
    right: 6px;
}

.slider-btn-circle.green.owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    background: #30c679;
}

.slider-btn-circle.trans-bg-color-black.owl-theme .owl-nav [class*=owl-] {
    color: #000;
    background: transparent;
    top: 50%;
}

.slider-btn-circle.trans-bg-color-black.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover {
    color: #fff;
    background: green;
}

@media screen and (max-width: 1500px) {
    .slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
        width: 34px;
        height: 34px;
    }

    .slider-btn-circle.owl-theme .owl-nav [class*=owl-]:before {
        width: 8px;
        height: 8px;
    }

    .slider-btn-circle.owl-carousel .owl-nav .owl-prev:after {
        left: 8px;
    }
}

@media screen and (max-width: 768px) {
    .slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
        width: 30px;
        height: 30px;
    }

    .slider-btn-circle.owl-carousel .owl-nav .owl-prev {
        right: 80px;
    }

    .slider-btn-circle.owl-carousel .owl-nav .owl-next {
        right: 20px;
    }
}

.text-center {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .text-center.text-left {
        text-align: left;
    }
}

.mb {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1500px) {
    .mb {
        margin-bottom: 10px;
    }
}

h2 {
    font-size: 75px;
    line-height: 75px;
    color: #565154;
    text-transform: uppercase;
    font-weight: 600;
}

h2 span {
    font-weight: 400;
}

h2.line {
    display: inline-block;
    position: relative;
}

h2.line:after {
    content: "";
    background: #f58345;
    width: 320px;
    height: 4px;
    position: absolute;
    right: -380px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1700px) {
    h2 {
        font-size: 55px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 1500px) {
    h2 {
        font-size: 40px;
        line-height: 40px;
    }

    h2.line:after {
        content: "";
        width: 250px;
        height: 2px;
        right: -310px;
    }
}

@media only screen and (max-width: 1024px) {
    h2 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 768px) {
    h2 {
        font-size: 35px;
    }

    h2.line:after {
        content: "";
        width: 130px;
        right: -160px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 480px) {
    h2 {
        font-size: 25px;
        line-height: 20px;
    }
}

h3 {
    color: #f58345;
    font-size: 33px;
    text-transform: uppercase;
    font-weight: 400;
}

@media only screen and (max-width: 1700px) {
    h3 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 1500px) {
    h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1300px) {
    h3 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 1024px) {
    h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    h3 {
        font-size: 15px;
    }
}

p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1700px) {
    p {
        font-size: 16px;
        margin-bottom: 17px;
    }
}

@media only screen and (max-width: 1500px) {
    p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 1024px) {
    p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

section {
    padding: 0 8%;
    overflow: hidden;
    position: relative;
}

section:before {
    content: "";
    background: url("../images/small-circle.png") center;
    background-size: cover;
    width: 112px;
    height: 154px;
    position: absolute;
    right: 6%;
    top: -54px;
}

section:after {
    content: "";
    background: url("../images/small-circle.png") center;
    background-size: cover;
    width: 112px;
    height: 154px;
    position: absolute;
    right: 6%;
    bottom: -123px;
}

@media only screen and (max-width: 1700px) {
    section {
        padding: 0 6%;
    }
}

@media only screen and (max-width: 1500px) {
    section:before {
        width: 84px;
        height: 117px;
    }

    section:after {
        width: 84px;
        height: 117px;
        bottom: -90px;
    }
}

@media only screen and (max-width: 768px) {
    section {
        padding: 5vw;
    }

    section:before {
        width: 62px;
        height: 100px;
    }

    section:after {
        width: 62px;
        height: 100px;
        bottom: -90px;
    }
}

@media only screen and (max-width: 767px) {
    section:before {
        width: 42px;
        height: 70px;
    }

    section:after {
        width: 42px;
        height: 70px;
        bottom: -54px;
    }
}

.heading-wrp {
    width: 100%;
}

.heading-wrp .sub-heading {
    font-size: 35px;
    color: #565154;
    text-transform: uppercase;
    margin: 8px 0;
}

.heading-wrp .para {
    font-size: 20px;
    color: #565154;
}

@media only screen and (max-width: 1500px) {
    .heading-wrp .sub-heading {
        font-size: 25px;
    }
}

@media screen and (max-width: 1100px) {
    .heading-wrp .para {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 1000px) {
    .heading-wrp .para br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .heading-wrp .para {
        font-size: 14px;
        line-height: 16px;
    }

    .heading-wrp .sub-heading {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .heading-wrp {
        flex-wrap: wrap;
        justify-content: space-around;
    }
}

.tabcontent {
    display: none;
}

.tab-wrp {
    display: flex;
    justify-content: space-between;
}

.tab-wrp a {
    text-transform: uppercase;
    color: #757575;
    font-size: 25px;
    font-weight: 500;
}

.tab-wrp a.active {
    color: #fff;
}

.tab-wrp span {
    color: #fff;
    font-size: 25px;
    margin: 0 20px;
}

@media only screen and (max-width: 1500px) {
    .tab-wrp a {
        font-size: 20px;
    }

    .tab-wrp span {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .tab-wrp a {
        font-size: 18px;
    }

    .tab-wrp span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .tab-wrp a {
        font-size: 15px;
    }

    .tab-wrp span {
        font-size: 15px;
    }
}

/*Header*/
header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 21%;
    height: 100%;
    border-right: 1px solid #00000033;
    padding: 50px 0;
}

header:before,
header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #f58345;
    left: 0;
}

header:before {
    top: 0;
}

header:after {
    bottom: 0;
}

header .main-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
    max-width: inherit;
    padding: 0;
}

header .logo-wrp {
    width: 100%;
}

header .logo-wrp a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo-wrp .dark {
    display: block;
}

header .logo-wrp .light {
    display: none;
}

header .header-right {
    display: flex;
    align-items: center;
}

header .right {
    max-width: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header .right .eq-header {
    border-radius: 0;
    width: 48%;
    padding: 10px 4px;
    text-align: center;
}

@media only screen and (max-width: 1500px) {
    header {
        padding: 20px 0;
    }

    header .logo-wrp a {
        padding: 0 20%;
    }

    header .logo-wrp a img {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    header {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

    header:before,
    header:after {
        height: 2px;
    }

    header .main-wrp {
        flex-direction: row;
    }

    header .logo-wrp {
        width: 140px;
    }

    header .logo-wrp a {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 767px) {
    header .logo-wrp a img {
        width: 130px;
    }

    header .right {
        display: flex;
        align-items: center;
        width: auto;
    }

    header .right .btn {
        display: none;
    }
}

main {
    width: 79%;
    margin-left: 21%;
}

@media only screen and (max-width: 1024px) {
    main {
        width: 100%;
        margin-left: 0%;
        margin-top: 0px;
    }
}

@media only screen and (max-width: 768px) {
    main {
        width: 100%;
        margin-left: 0%;
    }
}

/*Nav*/
nav {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

nav a {
    font-size: 22px;
    color: #231f20;
    font-weight: 300;
    text-transform: uppercase;
    padding: 12px 9px 12px 17%;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #f58345;
}

nav a:before {
    content: "";
    position: absolute;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    border: 2px solid #f58345;
    right: 45px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-top: none;
    border-left: none;
    opacity: 0;
    transition: all 0.3s ease;
}

nav a:after {
    content: "";
    background-color: #f58345;
    position: absolute;
    margin: 0 auto;
    width: 26px;
    height: 2px;
    top: 50%;
    right: 47px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

nav a.active {
    color: #f58345;
}

nav a.active:before {
    right: 25px;
    opacity: 1;
}

nav a.active:after {
    right: 27px;
    opacity: 1;
}

@media only screen and (max-width: 1500px) {
    nav a {
        font-size: 17px;
        padding: 8px 8px 8px 11%;
    }
}

@media only screen and (max-width: 1024px) {
    nav {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 111;
        background: #000;
        left: 0;
        top: 0;
        pointer-events: none;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    nav ul {
        display: flex;
        flex-direction: column;
    }

    nav.open {
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        color: #fff;
    }

    nav a.active:before,
    nav a.active:after {
        opacity: 0;
    }
}

[class*=fp-viewing-1] header,
[class*=fp-viewing-3] header,
[class*=fp-viewing-5] header,
[class*=fp-viewing-7] header {
    background-color: #231f20;
}

[class*=fp-viewing-1] header .logo-wrp .dark,
[class*=fp-viewing-3] header .logo-wrp .dark,
[class*=fp-viewing-5] header .logo-wrp .dark,
[class*=fp-viewing-7] header .logo-wrp .dark {
    display: none;
}

[class*=fp-viewing-1] header .logo-wrp .light,
[class*=fp-viewing-3] header .logo-wrp .light,
[class*=fp-viewing-5] header .logo-wrp .light,
[class*=fp-viewing-7] header .logo-wrp .light {
    display: block;
}

[class*=fp-viewing-1] nav a,
[class*=fp-viewing-3] nav a,
[class*=fp-viewing-5] nav a,
[class*=fp-viewing-7] nav a {
    color: #fff;
}

[class*=fp-viewing-1] nav a:hover,
[class*=fp-viewing-1] nav a.active,
[class*=fp-viewing-3] nav a:hover,
[class*=fp-viewing-3] nav a.active,
[class*=fp-viewing-5] nav a:hover,
[class*=fp-viewing-5] nav a.active,
[class*=fp-viewing-7] nav a:hover,
[class*=fp-viewing-7] nav a.active {
    color: #f58345;
}

[class*=fp-viewing-1] nav a.active {
    color: #f58345;
}

[class*=fp-viewing-1] nav a.active:before {
    right: 25px;
    opacity: 1;
}

[class*=fp-viewing-1] nav a.active:after {
    right: 27px;
    opacity: 1;
}

.hamburger {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .hamburger {
        display: inline-block;
        width: 35px;
        height: 36px;
        /*background: red;*/
        margin-left: 2em;
        margin-right: 16px;
        position: relative;
        z-index: 1111;
    }

    .hamburger span {
        width: 100%;
        height: 1px;
        background: #f58345;
        display: block;
        position: absolute;
        transition: all 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 25%;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
    }

    .hamburger span:nth-child(3) {
        top: 75%;
    }

    .hamburger.open span {
        background: #fff;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }

    .hamburger.open span:nth-child(2) {
        transform: scale(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }
}

/* Home Banner */
.banner-wrp {
    background-size: cover;
    background-position: center top;
    height: calc(100vh - 0px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    font-family: "Open Serif Book";
    z-index: 0;
    padding: 0;
}

.banner-wrp:after {
    content: "";
    display: none;
}

.banner-wrp:before {
    content: "";
    background: #000000b3;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-wrp .fp-tableCell {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-wrp .content-wrp {
    text-align: center;
    z-index: 1;
    margin-bottom: 250px;
    margin-bottom: 0 !important;
}

.banner-wrp .content-wrp h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-wrp .content-wrp h1 .p1 {
    font-size: 45px;
    line-height: 47px;
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
}

.banner-wrp .content-wrp h1 .p2 {
    font-size: 80px;
    line-height: 80px;
    color: #f58345;
    font-weight: 100;
    text-transform: uppercase;
    margin: 2% 0 4%;
}

.banner-wrp .content-wrp .p1 {
    font-size: 25px;
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
}

@media only screen and (max-width: 1500px) {
    .banner-wrp .content-wrp {
        margin-bottom: 140px;
    }

    .banner-wrp .content-wrp h1 .p1 {
        font-size: 30px;
        line-height: 32px;
    }

    .banner-wrp .content-wrp h1 .p2 {
        font-size: 60px;
        line-height: 60px;
        margin: 1% 0 3%;
    }

    .banner-wrp .content-wrp .p1 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .banner-wrp {
        height: calc(100vh - 60px);
        margin-top: 60px;
        flex-direction: column;
        align-items: center;
    }

    .banner-wrp > * {
        position: relative;
        z-index: 1;
    }
}

@media only screen and (max-width: 767px) {
    .banner-wrp .content-wrp {
        margin-bottom: 26vh;
    }

    .banner-wrp .content-wrp h1 .p1 {
        font-size: 22px;
        line-height: 24px;
    }

    .banner-wrp .content-wrp h1 .p2 {
        font-size: 50px;
        line-height: 50px;
    }

    .banner-wrp .content-wrp .p1 {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .banner-wrp {
        height: calc(90vh - 110px);
        margin-top: 65px;
    }

    .banner-wrp .content-wrp {
        margin-bottom: 36vh;
    }
}

.main-banner-slider {
    position: absolute;
}

.main-banner-slider .owl-item > .item {
    background-size: cover;
    background-position: center top;
    height: calc(100vh - 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    font-family: "Open Serif Book";
    z-index: 0;
    padding: 0;
}

.main-banner-slider .owl-item > .item.is-shadow:before {
    content: "";
    background: #000000b3;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.main-banner-slider .owl-item > .item.item1 {
    background-image: url("../images/home-banner-01.jpg");
}

.main-banner-slider .owl-item > .item.item2 {
    background-image: url("../images/home-banner-02.jpg");
}

.main-banner-slider .owl-item > .item.item3 {
    background-image: url("../images/home-banner-03.jpg");
}

.main-banner-slider .owl-item > .item.item4 {
    background-image: url("../images/home-banner-04.jpg");
}

.main-banner-slider .owl-item > .item.item5 {
    background-image: url("../images/home-banner-05.jpg");
}

.main-banner-slider .owl-item > .item.item6 {
    background-image: url("../images/home-banner-06.jpg");
}

.main-banner-slider .owl-item > .item.item7 {
    background-image: url("../images/home-banner-07.jpg");
}

.main-banner-slider.slider-btn-circle.owl-carousel .owl-nav .owl-prev {
    right: 110px;
}

.main-banner-slider.slider-btn-circle.owl-carousel .owl-nav .owl-next {
    right: 40px;
}

@media only screen and (max-width: 1300px) {
    .main-banner-slider .owl-item > .item.item7 {
        background-image: url("../images/home-banner-07-1.jpg");
    }
}

@media only screen and (device-width: 1366px) and (device-height: 1024px) {
    .main-banner-slider .owl-item > .item.item4 {
        background-image: url("../images/home-banner-04-tablet1.jpg");
    }

    .main-banner-slider .owl-item > .item.item5 {
        background-image: url("../images/home-banner-05-tablet1.jpg");
    }

    .main-banner-slider .owl-item > .item.item6 {
        background-image: url("../images/home-banner-06-tablet1.jpg");
    }

    .main-banner-slider .owl-item > .item.item7 {
        background-image: url("../images/home-banner-07-tablet1.jpg");
    }
}

@media only screen and (device-width: 1180px) and (device-height: 820px) {
    .main-banner-slider .owl-item > .item.item7 {
        background-image: url("../images/home-banner-07-tablet1.jpg");
    }
}

@media only screen and (device-width: 1024px) and (device-height: 768px) {
    .main-banner-slider .owl-item > .item.item4 {
        background-image: url("../images/home-banner-04-tablet2.jpg");
    }

    .main-banner-slider .owl-item > .item.item5 {
        background-image: url("../images/home-banner-05-tablet2.jpg");
    }

    .main-banner-slider .owl-item > .item.item6 {
        background-image: url("../images/home-banner-06-tablet2.jpg");
    }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) {
    .main-banner-slider .owl-item > .item {
        height: calc(100vh - 0px);
    }

    .main-banner-slider .owl-item > .item.item4 {
        background-image: url("../images/home-banner-04-mobile.jpg");
    }

    .main-banner-slider .owl-item > .item.item5 {
        background-image: url("../images/home-banner-05-mobile.jpg");
    }

    .main-banner-slider .owl-item > .item.item6 {
        background-image: url("../images/home-banner-06-mobile.jpg");
    }

    .main-banner-slider .owl-item > .item.item7 {
        background-image: url("../images/home-banner-07-mobile.jpg");
    }
}

/* @media only screen and (max-width: 768px) { */
@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .main-banner-slider .owl-item > .item {
        height: calc(100vh - 60px);
    }

    .main-banner-slider .owl-item > .item.item4 {
        background-image: url("../images/home-banner-04-mobile.jpg");
    }

    .main-banner-slider .owl-item > .item.item5 {
        background-image: url("../images/home-banner-05-mobile.jpg");
    }

    .main-banner-slider .owl-item > .item.item6 {
        background-image: url("../images/home-banner-06-mobile.jpg");
    }

    .main-banner-slider .owl-item > .item.item7 {
        background-image: url("../images/home-banner-07-mobile.jpg");
    }

    .main-banner-slider.slider-btn-circle.owl-carousel .owl-nav [class*=owl-] {
        bottom: 10px;
    }

    .main-banner-slider.slider-btn-circle.owl-carousel .owl-nav .owl-next {
        right: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .main-banner-slider .owl-item > .item {
        height: calc(93vh - 90px);
    }
}

.home-icon-wrp {
    margin-top: 10px !important;
    margin-right: -2px;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 90%;
}

.home-icon-wrp .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 230px;
    border-right: 1px solid #fff;
    padding: 0 9px;
    width: 30%;
}

.home-icon-wrp .item.icon-1,
.home-icon-wrp .item.icon-2 {
    width: 20%;
}

.home-icon-wrp .item:last-child {
    border-right: 0;
}

.home-icon-wrp .item span {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-icon-wrp .item img {
    width: auto;
}

.home-icon-wrp .item p {
    font-size: 20px;
    color: #fff;
    font-weight: 100;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0;
    padding-bottom: 30px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .home-icon-wrp .item {
        height: calc(100vh - 145px);
    }

    .home-icon-wrp .item .actual-image-rera p {
        font-size: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .home-icon-wrp .item.item1 {
        background-image: url("../images/mobile-banner.png");
        background-position: center;
    }
}

@media screen and (max-width: 767px) {
    .home-icon-wrp .item {
        height: calc(100vh - 100px);
    }

    .home-icon-wrp .item .actual-image-rera p {
        font-size: 8px;
    }
}

@media only screen and (max-width: 1500px) {
    .home-icon-wrp {
        margin-top: 250px;
    }

    .home-icon-wrp .item {
        height: 130px;
    }

    .home-icon-wrp .item img {
        width: 46px;
    }

    .home-icon-wrp .item p {
        font-size: 15px;
        height: 60px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .home-icon-wrp {
        flex-wrap: wrap;
        margin-top: 370px;
    }

    .home-icon-wrp .item {
        width: 50%;
        justify-content: flex-end;
        height: auto;
        margin-bottom: 30px;
        min-height: 76px;
    }

    .home-icon-wrp .item:nth-child(1),
    .home-icon-wrp .item:nth-child(2) {
        width: 50%;
    }

    .home-icon-wrp .item:nth-child(2) {
        border-right: 0;
    }

    .home-icon-wrp .item p {
        font-size: 14px;
        height: 30px;
        padding-bottom: 0;
        line-height: normal;
    }

    .home-icon-wrp .item:nth-child(3) p,
    .home-icon-wrp .item:nth-child(4) p {
        height: 46px;
    }
}

@media only screen and (max-width: 767px) {
    .home-icon-wrp {
        margin-top: 22vh;
    }
}

@media only screen and (max-width: 480px) {
    .home-icon-wrp {
        margin-top: 25vh;
    }
}

.home-slider {
    margin-top: 20px;
    margin-right: -2px;
}

.home-slider .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 230px;
    border-right: 1px solid #fff;
}

.home-slider .item img {
    width: auto;
}

.home-slider .item p {
    font-size: 20px;
    color: #fff;
    font-weight: 100;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0;
    padding-bottom: 30px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .home-slider .item {
        height: calc(100vh - 145px);
    }

    .home-slider .item .actual-image-rera p {
        font-size: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .home-slider .item.item1 {
        background-image: url("../images/mobile-banner.png");
        background-position: center;
    }
}

@media screen and (max-width: 767px) {
    .home-slider .item {
        height: calc(100vh - 100px);
    }

    .home-slider .item .actual-image-rera p {
        font-size: 8px;
    }
}

.home-slider.slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
    bottom: -50%;
    border: 2px solid #fff;
    border-radius: 50%;
}

.home-slider.slider-btn-circle.owl-theme .owl-nav [class*=owl-]:before {
    content: "";
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    right: 8px;
}

.home-slider.slider-btn-circle.owl-theme .owl-nav [class*=owl-]:after {
    content: "";
    width: 23px;
    background-color: #ffffff;
}

.home-slider.slider-btn-circle.owl-theme .owl-nav .owl-prev {
    right: 130px;
    left: inherit;
}

.home-slider.slider-btn-circle.owl-theme .owl-nav .owl-next {
    right: 60px;
}

.home-slider.slider-btn-circle.owl-theme .owl-nav .owl-next:after {
    right: 10px;
}

.home-slider.owl-carousel.owl-drag .owl-item {
    overflow: hidden;
}

.home-slider.owl-carousel .owl-nav.disabled + .owl-dots {
    bottom: 10px;
}

.home-slider.owl-carousel .owl-dots .owl-dot {
    margin: 0 10px;
    transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
}

.home-slider.owl-carousel .owl-dots .owl-dot span {
    transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
    background: rgba(255, 255, 255, 0.5);
    width: 8px;
    height: 8px;
}

.home-slider.owl-carousel .owl-dots .owl-dot.active span {
    background: #fff;
}

.home-slider.owl-carousel .owl-dots .owl-dot:hover {
    margin: 0px 8px -2px;
}

.home-slider.owl-carousel .owl-dots .owl-dot:hover span {
    width: 12px;
    height: 12px;
}

@media only screen and (max-width: 1500px) {
    .home-slider .item {
        height: 130px;
    }

    .home-slider .item img {
        width: 46px;
    }

    .home-slider .item p {
        font-size: 16px;
        height: 60px;
        padding-bottom: 10px;
    }

    .home-slider.slider-btn-circle.owl-theme .owl-nav [class*=owl-]:after {
        content: "";
        width: 17px;
    }
}

@media only screen and (max-width: 767px) {
    .home-slider.slider-btn-circle.owl-theme .owl-nav .owl-prev {
        right: inherit;
        left: 20px;
    }

    .home-slider.slider-btn-circle.owl-theme .owl-nav .owl-next {
        right: 20px;
    }
}

.down-arw {
    position: absolute;
    width: 22px;
    height: 32px;
    left: 0;
    right: 0;
    bottom: 80px;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
}

.down-arw:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    top: -30%;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: bounse 1s infinite;
}

@keyframes bounse {
    0% {
        top: -30%;
        opacity: 0;
    }

    1% {
        top: -30%;
        opacity: 1;
    }

    99% {
        top: 110%;
        opacity: 1;
    }

    100% {
        top: -30%;
        opacity: 0;
    }
}

@media only screen and (max-width: 1500px) {
    .down-arw {
        bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .down-arw {
        bottom: 20px;
    }
}

.call-icon {
    background: #fff;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
}

.call-icon:before,
.call-icon:after {
    content: "";
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    background: #fff;
    box-shadow: 0 0 0 1px white;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.call-icon:before {
    animation: expandCTwo 3s infinite;
    animation-delay: 0.6s;
    transition: 0.4s;
}

.call-icon:after {
    animation: expandCOne 3s infinite;
}

@keyframes expandCOne {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    90% {
        transform: scale(3.3);
        opacity: 0;
    }

    100% {
        transform: scale(3.3);
        opacity: 0;
    }
}

@keyframes expandCTwo {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    90% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.sec-eq {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0 !important;
    background: #fff;
    width: 100%;
    z-index: 111;
    padding: 8px 0;
    display: none;
}

.sec-eq .btn {
    background-color: #000;
    color: #fff;
    font-weight: 600;
}

.sec-eq .btn.arrow:before {
    background: #fff;
}

.sec-eq .btn.arrow:after {
    border: 1px solid #fff;
    border-top: none;
    border-left: none;
}

.sec-eq .btn.arrow:hover::before {
    right: 12px;
}

.sec-eq .btn.arrow:hover::after {
    right: 12px;
}

.sec-eq form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.eqTitle {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 15px;
    color: #000;
}

.sec-eq .eqTitle {
    margin-left: 0;
}

.formControl {
    margin: 0 15px;
    width: 250px;
}

.formControl:last-child {
    width: auto;
}

.formControl input {
    width: 100%;
    min-height: 36px;
    outline: 0;
    padding: 0 10px 0 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #0000004d;
    border-radius: 0px;
    color: #000c;
}

.error_new {
    border-color: red !important;
}

.sec-eq .intl-tel-input {
    color: #000 !important;
}

.intl-tel-input .country-list {
    width: 300px;
}

.formControl.btn {
    width: 100px;
}

.subBtn {
    border: 0;
    outline: 0;
    font-weight: bold;
    cursor: pointer;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.error_bottom {
    border-bottom: 2px solid red !important;
}

.mobEq {
    display: none;
}

.closeBtn {
    display: none;
}

.sec-eq .intl-tel-input {
    color: #fff;
}

.sec-eqMobile,
.mobile-number {
    display: none;
}

.closeIcon {
    display: none;
}

.sec-eq.show {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 11111;
}

@keyframes upSlide {
    from {
        transform: translate(-50%, -50%) scale(1.2);
        transform-origin: center;
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.sec-eq.show .container {
    transform-origin: center;
    position: absolute;
    width: 300px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    animation-name: upSlide;
    -webkit-animation-name: upSlide;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

.sec-eq.show .closeIcon {
    display: block;
    position: absolute;
    right: 15px;
    font-size: 18px;
    top: 10px;
    color: #fff;
    transform: rotate(45deg);
    background: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffff;
    cursor: pointer;
    padding: 8px 3px;
    line-height: 0;
}

.sec-eq.show .eqTitle {
    margin: 15px 0;
}

.sec-eq.show form {
    flex-direction: column;
}

.sec-eq.show .formControl {
    width: 100%;
    margin: 0 0 15px 0;
}

@media only screen and (max-width: 1200px) {
    .eqTitle {
        font-size: 16px;
    }

    .formControl {
        width: 180px;
        margin: 0 8px;
    }
}

@media only screen and (max-width: 800px) {
    .formControl {
        width: 140px;
        margin: 0 8px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-eq {
        display: none;
    }

    .sec-eq form {
        flex-direction: column;
    }

    .formControl {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .sec-eqMobile,
    .mobile-number {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        font-size: 20px;
        color: #fff;
        background: #f58345;
        width: 50%;
        padding: 10px 0;
        text-align: center;
        z-index: 99;
    }

    .mobile-number {
        left: 50%;
        border-left: 1px solid #fff;
    }

    .closeIcon {
        display: flex;
    }
}

input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000c;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #000c;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #000c;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #000c;
}

.whatsapp {
    background: #fff;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 30px;
    bottom: 40px;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
}

.whatsapp:before,
.whatsapp:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    background: #fff;
    box-shadow: 0 0 0 1px white;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.whatsapp:before {
    animation: expandCTwo 3s infinite;
    animation-delay: 0.6s;
    transition: 0.4s;
}

.whatsapp:after {
    animation: expandCOne 3s infinite;
}

@keyframes expandCOne {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    90% {
        transform: scale(3.3);
        opacity: 0;
    }

    100% {
        transform: scale(3.3);
        opacity: 0;
    }
}

@keyframes expandCTwo {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    90% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Overview */
.overview-section {
    padding: 0;
}

.overview-section .fp-tableCell {
    justify-content: space-between;
}

.overview-section .content-wrp {
    width: 49.2%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4%;
}

.overview-section .heading-wrp .sub {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.overview-section .heading-wrp h2 {
    margin: 30px 0 20px -28%;
    background-color: #fff;
    padding: 3% 0 3% 3%;
}

.overview-section .heading-wrp h2:after {
    right: -340px;
    top: 71%;
}

.overview-section .heading-wrp p {
    font-weight: 400;
    font-size: 22px;
}

.overview-section .p1 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.overview-section ul li {
    margin-left: 20px;
    list-style: disc;
}

.overview-section ul li p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 2px;
}

.overview-section .img-wrp {
    background: url("../images/overview-image.jpg") center no-repeat;
    background-size: cover;
    width: 50.8%;
    height: 100%;
}

@media screen and (min-width: 1501px) {
    .overview-section .heading-wrp h2 {
        line-height: 60px;
        font-size: 60px;
    }
}

@media screen and (max-width: 1500px) {
    .overview-section .heading-wrp .sub {
        font-size: 18px;
        margin-bottom: 0;
    }

    .overview-section .heading-wrp h2 {
        margin: 10px 0 10px -28%;
        padding: 3% 0 3% 3%;
    }

    .overview-section .heading-wrp h2:after {
        right: -340px;
        top: 72%;
    }

    .overview-section .heading-wrp p {
        font-size: 16px;
    }

    .overview-section .p1 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .overview-section ul li p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .overview-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .overview-section .img-wrp {
        width: 100%;
        height: 60vh;
        background-position: center bottom;
    }

    .overview-section .content-wrp {
        width: 100%;
        height: auto;
        padding: 5vw;
    }

    .overview-section .heading-wrp .sub {
        font-size: 18px;
        margin-bottom: 0;
    }

    .overview-section .heading-wrp h2 {
        margin-left: -3%;
    }

    .overview-section .heading-wrp p br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .overview-section .heading-wrp .sub {
        font-size: 15px;
    }

    .overview-section .heading-wrp p {
        font-size: 14px;
    }

    .overview-section .p1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .overview-section ul li p {
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* Introducing PHASE II */
.phase-two-section {
    padding-right: 0;
}

.phase-two-section .fp-tableCell {
    justify-content: space-between;
}

.phase-two-section .content-wrp {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.phase-two-section .heading-wrp h2 {
    margin: 50px 0;
}

.phase-two-section .heading-wrp p {
    font-weight: 400;
}

.phase-two-section .wrp-01 .p1 {
    font-family: "Open Serif Book";
    font-size: 25px;
    color: #f58345;
    width: 44%;
    text-transform: uppercase;
    margin: 0;
}

.phase-two-section .wrp-01 .p2 {
    font-family: "Open Serif Book";
    font-size: 16px;
    line-height: 17px;
    margin: 0;
}

.phase-two-section .wrp-01 > div {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f58345;
}

.phase-two-section .wrp-01 > div:last-child {
    border-bottom: 0;
}

.phase-two-section .img-wrp {
    background: url("../images/phase-two-image.jpg") center no-repeat;
    background-size: cover;
    width: 52.4%;
    height: 100%;
}

@media screen and (min-width: 1501px) {
    .phase-two-section .heading-wrp h2 {
        line-height: 60px;
    }
}

@media screen and (max-width: 1500px) {
    .phase-two-section .content-wrp {
        width: 42%;
    }

    .phase-two-section .heading-wrp h2 {
        margin: 30px 0;
    }

    .phase-two-section .wrp-01 > div {
        padding: 12px 0;
    }

    .phase-two-section .wrp-01 .p1 {
        font-size: 20px;
    }

    .phase-two-section .wrp-01 .p2 {
        font-size: 13px;
        line-height: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .phase-two-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap-reverse;
        padding-left: 0;
    }

    .phase-two-section .img-wrp {
        width: 100%;
        height: 60vh;
    }

    .phase-two-section .content-wrp {
        width: 100%;
        height: auto;
        padding: 5vw;
    }

    .phase-two-section .heading-wrp h2 {
        margin: 20px 0 10px;
    }

    .phase-two-section .heading-wrp h2 br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .phase-two-section .wrp-01 > div {
        padding: 10px 0;
    }

    .phase-two-section .wrp-01 .p1 {
        font-size: 16px;
    }

    .phase-two-section .wrp-01 .p2 {
        font-size: 12px;
        line-height: 13px;
    }
}

/* Configurations Start */
.configurations-section:after {
    content: "";
    left: -51px;
    bottom: 40px;
}

.configurations-section .fp-tableCell {
    flex-wrap: wrap;
    align-content: flex-end;
    position: relative;
    justify-content: flex-start;
    padding-bottom: 60px;
}

.configurations-section .configurations-slider {
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 7%;
}

.configurations-section .configurations-slider .item {
    text-align: center;
}

.configurations-section .configurations-slider .item img {
    width: 100%;
}

.configurations-section .configurations-slider .item h3 {
    font-size: 34px;
    color: #f58345;
    margin: 5vh 0 1vh;
    margin-bottom: 40px;
}

.configurations-section .configurations-slider .item p {
    font-size: 25px;
    color: #565154;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1700px) {
    .configurations-section .configurations-slider .item p {
        font-size: 23px;
    }
}

@media only screen and (max-width: 1500px) {
    .configurations-section:after {
        content: "";
        left: -38px;
    }

    .configurations-section .configurations-slider .item h3 {
        font-size: 24px;
        margin: 3vh 0 0vh;
        margin-bottom: 30px;
    }

    .configurations-section .configurations-slider .item p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .configurations-section .configurations-slider {
        margin-top: 6vw;
    }

    .configurations-section .configurations-slider .item {
        width: 100% !important;
        padding-bottom: 10px;
    }

    .configurations-section .configurations-slider .item h3 {
        font-size: 26px;
        margin: 18px 0 0vh;
        margin-bottom: 24px;
    }

    .configurations-section .configurations-slider .item p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .configurations-section .configurations-slider.slider-btn-circle.owl-carousel .owl-nav .owl-prev {
        left: inherit;
        right: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .configurations-section .configurations-slider .item h3 {
        font-size: 22px;
        margin: 14px 0 0vh;
        margin-bottom: 18px;
    }

    .configurations-section .configurations-slider .item p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .configurations-section .configurations-slider.slider-btn-circle.owl-carousel .owl-nav .owl-prev {
        left: inherit;
        right: 50px;
        bottom: -16px;
    }

    .configurations-section .configurations-slider.slider-btn-circle.owl-carousel .owl-nav .owl-next {
        right: 0px;
        bottom: -16px;
    }
}

/* Configurations End */
/* Amenities Start */
.amenities-section {
    padding-right: 0;
    padding-left: 0;
}

.amenities-section .fp-tableCell {
    flex-wrap: wrap;
    align-content: flex-end;
    position: relative;
    justify-content: flex-start;
}

.amenities-section .heading-wrp .sub-heading {
    font-size: 35px;
    line-height: 38px;
    font-weight: 300;
    margin: 20px 0 14px;
}

.amenities-section .heading-wrp-01 {
    margin: 0 0 36px 8%;
}

.amenities-section .heading-wrp-02 {
    position: absolute;
    left: 59.9%;
    top: 194px;
    padding-left: 50px;
    width: 35%;
}

.amenities-section .amenities-slider-wrp {
    width: 100%;
    overflow: hidden;
}

.amenities-section .amenities-slider {
    width: 59.9%;
}

.amenities-section .amenities-slider.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.amenities-section .amenities-slider.owl-carousel .owl-item {
    transform: translateY(0%);
    filter: grayscale(1);
}

.amenities-section .amenities-slider.owl-carousel .owl-item .item {
    width: 440px;
    transform: translateY(90%);
    position: relative;
}

.amenities-section .amenities-slider.owl-carousel .owl-item .item p {
    position: absolute;
    bottom: 0;
    right: 30px;
    font-size: 25px;
    color: #fff;
    opacity: 0;
    margin-bottom: 20px;
}

.amenities-section .amenities-slider.owl-carousel .owl-item.active {
    filter: grayscale(0);
}

.amenities-section .amenities-slider.owl-carousel .owl-item.active .item {
    width: 100%;
    transform: translateY(0%);
}

.amenities-section .amenities-slider.owl-carousel .owl-item.active .item p {
    font-size: 45px;
    opacity: 1;
}

.amenities-section .amenities-slider.owl-carousel .owl-item.active ~ .owl-item {
    transform: translateY(-20%);
}

.amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-] {
    bottom: 42px;
}

.amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-prev {
    right: -47%;
}

.amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-next {
    right: -54%;
}

.amenities-section .slider-counter {
    position: absolute;
    left: 59.9%;
    bottom: -15px;
    padding-left: 50px;
}

.amenities-section .slider-counter .current {
    font-size: 100px;
    color: #f58345;
    line-height: 0;
}

.amenities-section .slider-counter .divide {
    font-size: 50px;
    color: #383336;
    letter-spacing: 0px;
}

.amenities-section .slider-counter .total {
    font-size: 50px;
    color: #383336;
}

@media only screen and (max-width: 1700px) {
    .amenities-section .heading-wrp-02 {
        top: 149px;
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item .item {
        transform: translateY(66%);
    }
}

@media only screen and (max-width: 1600px) {
    .amenities-section .heading-wrp .sub-heading {
        font-size: 25px;
        line-height: 28px;
        margin: 20px 0 14px;
    }

    .amenities-section .heading-wrp-02 {
        top: 130px;
        padding-left: 30px;
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item .item {
        width: 51%;
        transform: translateY(78%);
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-] {
        bottom: 35px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-next {
        right: -56%;
    }

    .amenities-section .slider-counter {
        bottom: -9px;
        padding-left: 30px;
    }

    .amenities-section .slider-counter .current {
        font-size: 80px;
    }

    .amenities-section .slider-counter .divide {
        font-size: 36px;
    }

    .amenities-section .slider-counter .total {
        font-size: 36px;
    }
}

@media only screen and (max-width: 1400px) {
    .amenities-section .heading-wrp .sub-heading {
        font-size: 20px;
        line-height: 22px;
        margin: 20px 0 6px;
    }

    .amenities-section .heading-wrp-02 {
        width: 38%;
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item .item {
        width: 50%;
        transform: translateY(84%);
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item.active .item p {
        font-size: 35px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-] {
        bottom: 32px;
    }

    .amenities-section .slider-counter {
        bottom: -10px;
    }

    .amenities-section .slider-counter .current {
        font-size: 70px;
    }

    .amenities-section .slider-counter .divide {
        font-size: 30px;
    }

    .amenities-section .slider-counter .total {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1300px) {
    .amenities-section .heading-wrp-01 {
        margin: 0 0 16px 8%;
    }

    .amenities-section .heading-wrp-02 {
        position: relative;
        top: inherit;
        left: 8%;
        width: 89%;
        padding: 0 0 10px;
    }

    .amenities-section .amenities-slider {
        width: 70%;
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item .item {
        width: 60%;
        transform: translateY(42%);
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-] {
        bottom: 60px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-prev {
        right: -31%;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-next {
        right: -40%;
    }

    .amenities-section .slider-counter {
        padding-left: 110px;
    }
}

@media only screen and (max-width: 1024px) {
    .amenities-section .heading-wrp-01 {
        margin: 0 0 0px 3%;
    }

    .amenities-section .heading-wrp-02 {
        left: 3%;
        width: 94%;
        padding: 0 0 6px;
    }
}

@media only screen and (max-width: 768px) {
    .amenities-section .amenities-slider.owl-carousel .owl-item .item {
        transform: translateY(34%);
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item.active .item p {
        font-size: 25px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-prev {
        left: inherit;
    }

    .amenities-section .slider-counter {
        padding-left: 99px;
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .amenities-section .heading-wrp .sub-heading {
        font-size: 18px;
        line-height: 20px;
        margin: 10px 0 6px;
    }

    .amenities-section .heading-wrp-01 {
        margin: 0 0 0px 5vw;
    }

    .amenities-section .heading-wrp-02 {
        left: 5vw;
        width: 95%;
        padding: 0 0 6px;
    }

    .amenities-section .amenities-slider {
        width: 80%;
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item .item {
        width: 70%;
        transform: translateY(40%);
    }

    .amenities-section .amenities-slider.owl-carousel .owl-item.active .item p {
        right: 17px;
        font-size: 15px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-] {
        bottom: -10px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-prev {
        right: -14%;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-next {
        right: -24%;
    }

    .amenities-section .slider-counter {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-] {
        width: 24px;
        height: 24px;
        bottom: -10px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-]:before {
        width: 5px;
        height: 5px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav [class*=owl-]:after {
        content: "";
        width: 14px;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-prev {
        right: -14%;
    }

    .amenities-section .amenities-slider.slider-btn-circle .owl-nav .owl-next {
        right: -25%;
    }
}

/* Amenities End */
/* Gallery Start */
.gallery-section {
    padding-right: 0;
}

.gallery-section .fp-tableCell {
    flex-wrap: wrap;
    align-content: flex-end;
    position: relative;
    justify-content: flex-start;
    padding-bottom: 60px;
}

.gallery-section .fp-tableCell:after {
    content: "";
    background: url("../images/small-circle.png") center;
    background-size: cover;
    width: 112px;
    height: 154px;
    position: absolute;
    left: -130px;
    bottom: 60px;
}

.gallery-section .heading-wrp .sub-heading {
    font-size: 35px;
    line-height: 38px;
    font-weight: 300;
    margin: 20px 0;
}

.gallery-section .gallery-slider-wrp {
    width: 100%;
    overflow: hidden;
    padding-top: 20%;
    margin-top: -20%;
}

.gallery-section .gallery-slider {
    width: 56.6%;
}

.gallery-section .gallery-slider.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.gallery-section .gallery-slider.owl-carousel .owl-item {
    transform: translateY(0%);
    filter: grayscale(1);
    pointer-events: none;
}

.gallery-section .gallery-slider.owl-carousel .owl-item.active {
    filter: grayscale(0);
    pointer-events: all;
}

.gallery-section .gallery-slider.owl-carousel .owl-item.active ~ .owl-item {
    transform: translateY(-20%);
}

@media only screen and (max-width: 1500px) {
    .gallery-section .fp-tableCell:after {
        width: 84px;
        height: 117px;
        left: -92px;
    }

    .gallery-section .heading-wrp .sub-heading {
        font-size: 23px;
        line-height: 26px;
        margin: 20px 0;
    }
}

@media only screen and (max-width: 768px) {
    .gallery-section .gallery-slider {
        width: 95%;
    }
}

@media only screen and (max-width: 767px) {
    .gallery-section .heading-wrp .sub-heading {
        font-size: 14px;
        line-height: 16px;
        margin: 10px 0;
    }

    .gallery-section .gallery-slider.owl-carousel .owl-item {
        padding-bottom: 50px;
    }

    .gallery-section .gallery-slider.slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
        bottom: -10px;
    }
}

/* Gallery End */
/* Videos Start */
.videos-section .gallery-slider.owl-carousel .owl-item p {
    position: absolute;
    bottom: 0;
    right: 30px;
    font-size: 25px;
    color: #fff;
    opacity: 0;
    margin-bottom: 20px;
}

.videos-section .gallery-slider.owl-carousel .owl-item .play-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    display: block;
    margin: auto;
}

.videos-section .gallery-slider.owl-carousel .owl-item.active p {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .videos-section .gallery-slider.owl-carousel .owl-item .play-btn {
        bottom: 50px;
    }
}

/* Videos End */
/* Virtual Tour Start */
.virtual-tour-section {
    padding: 0 8%;
}

.virtual-tour-section .fp-tableCell {
    flex-wrap: wrap;
    align-content: flex-end;
    position: relative;
    justify-content: flex-start;
}

.virtual-tour-section .fp-tableCell:after {
    content: "";
    background: url("../images/small-circle.png") center;
    background-size: cover;
    width: 112px;
    height: 154px;
    position: absolute;
    left: -130px;
    bottom: 60px;
}

.virtual-tour-section iframe {
    width: 100%;
    height: 60%;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1500px) {
    .virtual-tour-section .fp-tableCell:after {
        width: 84px;
        height: 117px;
        left: -92px;
    }
}

@media only screen and (max-width: 768px) {
    .virtual-tour-section {
        padding: 5vw;
    }

    .virtual-tour-section iframe {
        height: 45vh;
    }
}

/* Site Address Start */
/* About Us Start */
.about-us-section {
    display: flex;
    flex-flow: column;
    text-align: center;
    padding: 10vw 0;
}

.about-us-section h2 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
    .about-us-section h2 {
        margin-bottom: 10px;
    }
}

/* About Us End */
/* Location Start */
.location-advantage-section {
    padding: 10vh 0;
}

.location-advantage-section .fp-tableCell > div {
    text-align: center;
}

.location-advantage-section p {
    font-size: 14px;
    color: #000;
    margin: 4px 0;
}

.location-advantage-section p b {
    font-size: 20px;
    color: #f58345;
    text-transform: uppercase;
    display: block;
    margin-top: 20px;
}

.location-advantage-section .line {
    display: block;
    width: 1px;
    height: 300px;
    background: #f58345;
    margin: 0 30px;
}

@media only screen and (max-width: 1500px) {
    .location-advantage-section {
        padding: 16vh 0;
    }

    .location-advantage-section .fp-tableCell {
        align-items: flex-start;
    }

    .location-advantage-section .fp-tableCell p {
        font-size: 12px;
    }

    .location-advantage-section .fp-tableCell p b {
        font-size: 18px;
        margin-top: 16px;
    }

    .location-advantage-section .line {
        height: 240px;
    }
}

@media only screen and (max-width: 768px) {
    .location-advantage-section {
        padding: 18vw 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .location-advantage-section > div {
        width: 40%;
        text-align: center;
    }

    .location-advantage-section p {
        font-size: 12px;
        margin: 2px 0;
    }

    .location-advantage-section p b {
        font-size: 17px;
        margin-top: 14px;
    }

    .location-advantage-section .line {
        height: auto;
    }

    .location-advantage-section .line:nth-child(4) {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .location-advantage-section > div {
        width: 100%;
    }

    .location-advantage-section p b {
        font-size: 16px;
    }
}

/* Clientele End */
/* RERA Disclaimer Start */
.rera-disclaimer-section {
    background-color: #231f20;
    display: flex;
    flex-flow: column;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.rera-disclaimer-section p,
.rera-disclaimer-section a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.rera-disclaimer-section hr {
    margin: 30px auto;
    border-color: #ffffff75;
    border-bottom: 0;
    width: 80%;
}

@media only screen and (max-width: 767px) {
    .rera-disclaimer-section p {
        font-size: 11px;
    }
}

/* RERA Disclaimer End */
.social-wrp a {
    display: inline-block;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.social-wrp a:hover {
    transform: scale(1.2);
}

.social-wrp img {
    width: 100%;
}

/* Visiting Card Start */
.visiting-card-wrp {
    width: 100%;
    max-width: 504px;
    margin: auto;
    text-align: center;
    background: url("../images/visiting-card/visiting-card-bg.jpg") center no-repeat;
    background-size: cover;
    padding: 34px 0 24px;
    border: 1px solid #b0b0b0;
}

.visiting-card-wrp h2 {
    color: #f48245;
    font-size: 50px;
    line-height: 56px;
}

.visiting-card-wrp .name-wrp {
    margin: 30px 0;
}

.visiting-card-wrp .name-wrp p {
    font-size: 20px;
    font-weight: 600;
}

.visiting-card-wrp .contact-number {
    font-size: 23px;
    font-weight: 600;
    border: none;
    border-top: 1px solid #f9a64a;
    border-bottom: 1px solid #f9a64a;
    padding: 8px 24px;
}

.visiting-card-wrp .social-wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px;
}

.visiting-card-wrp .social-wrp a:nth-child(2) {
    margin: 0 20px;
}

.visiting-card-wrp .social-wrp a img {
    display: block;
}

.visiting-card-wrp .card-footer-wrp {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.visiting-card-wrp .card-footer-wrp a p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 14px 0 0;
}

.visiting-card-wrp .card-footer-wrp a:nth-child(2) {
    margin: 0 70px;
}

.visiting-card-wrp .card-footer-wrp a:last-child p {
    margin-top: 21px;
}

@media only screen and (max-width: 1500px) {
    .visiting-card-wrp .logo {
        width: 150px;
    }

    .visiting-card-wrp .name-wrp {
        margin: 20px 0;
    }

    .visiting-card-wrp .name-wrp h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .visiting-card-wrp .name-wrp p {
        font-size: 16px;
    }

    .visiting-card-wrp .contact-number {
        font-size: 21px;
        padding: 6px 24px;
    }

    .visiting-card-wrp .social-wrp {
        margin: 32px 0 20px;
    }

    .visiting-card-wrp .social-wrp a img {
        width: 32px;
    }

    .visiting-card-wrp .qrcode-wrp img {
        width: 33%;
    }

    .visiting-card-wrp .card-footer-wrp {
        margin-top: 20px;
    }

    .visiting-card-wrp .card-footer-wrp a img {
        width: 38px;
    }

    .visiting-card-wrp .card-footer-wrp a p {
        font-size: 14px;
        line-height: 15px;
        margin: 6px 0 0;
    }

    .visiting-card-wrp .card-footer-wrp a:last-child p {
        margin-top: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .visiting-card-wrp {
        max-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .visiting-card-wrp .name-wrp {
        margin: 30px 0 20px;
    }

    .visiting-card-wrp .qrcode-wrp img {
        width: 80%;
    }

    .visiting-card-wrp .card-footer-wrp a:nth-child(2) {
        margin: 0 50px;
    }
}

/* Visiting Card End */

/*# sourceMappingURL=main.css.map */


/* CSS START 10/08/2023 */

.home-banner-slider .home-banner .desk-only {
    display: block;
}

.home-banner-slider .home-banner .mob-only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .home-banner-slider .home-banner .desk-only {
        display: none;
    }

    .home-banner-slider .home-banner .mob-only {
        display: block;
    }
}

/* CSS END 10/08/2023 */
