/* Variables */
:root {
    --primary: #001A23;
    --primary-rgb: 0 26 35;
    --secondary: #D8B56A;
    --secondary-rgb: 216 181 106;
    --sand: #C4B1A2;
    --brownish: #85756B;
    --dark-brownish: #756B63;
    --white: #fff6e4;
    --light: #C0C0C0;
    --light-rgb: 192 192 192;
    --off-white: #CECECE;
    --black: #000000;
    --grey: #434343;
    --font-primary: "Lora";
    --font-secondary: "Raleway";
}

/* Common CSS */
input:-webkit-autofill {
    border: none;
    border-radius: 0;
    caret-color: var(--primary);
    color: var(--secondary);
    background: var(--primary);
    -webkit-text-fill-color: var(--secondary);
    -webkit-background-clip: text;
    box-shadow: 0 0 0 50px var(--primary) inset;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    height: 60px;
    width: 60px;
    right: 0;
    left: 0;
    z-index: 10;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out 0;
    transition: all 0.3s ease-in-out 0;
}

.loader .loader-cube {
    width: 33%;
    height: 33%;
    background-color: var(--secondary);
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.loader .loader-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loader .loader-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loader .loader-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loader .loader-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.loader .loader-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loader .loader-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loader .loader-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.loader .loader-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.loader .loader-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }

    ;
}

@keyframes sk-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }

    ;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* WebKit-based browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgba(var(--secondary-rgb) / 30%);
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(var(--primary-rgb) / 100%);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(var(--secondary-rgb) / 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.10, rgba(var(--secondary-rgb) / 100%)), color-stop(0.30, rgba(var(--primary-rgb) / 40%)), color-stop(0.50, rgba(var(--secondary-rgb) / 100%)), color-stop(0.70, rgba(var(--primary-rgb) / 40%)), color-stop(0.90, rgba(var(--secondary-rgb) / 100%)));
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(var(--secondary-rgb) / 100%);
}

/* Common CSS */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

a,
a::before,
a::after,
button,
:hover,
:hover:before,
:hover:after {
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

body {
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 24px;
    color: var(--black);
    font-family: var(--font-secondary);
    background-color: var(--primary);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

section:not(#shadow-host-companion) {
    min-height: calc(var(--vh) * 100);
    transition: background-position 3s ease, background-size 3s ease;
}

html,
body {
    overflow-x: hidden;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
    font-family: var(--font-secondary);
    font-weight: normal;
    color: #14141d;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #23527c;
}

a:hover {
    text-decoration: none;
    color: #ff214f;
}

a:visited {
    color: #14141d;
}

a:visited:hover {
    color: #fea100;
}

img {
    max-width: 100%;
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    font-family: var(--font-primary);
    margin: 0;
}

h1 {
    font-size: 72px;
    line-height: 86px;
}

h2 {
    font-size: 66px;
    line-height: 78px;
}

h3 {
    font-size: 48px;
    line-height: 62px;
}

h4 {
    font-size: 24px;
    line-height: 28px;
}

h5 {
    font-size: 18px;
    line-height: 20px;
}

h6 {
    font-size: 18px;
    line-height: 22px;
}

/* Discover Section */
.discover-section {
    width: 100dvw;
    height: 100dvh;
}

/* Variables */
:root {
    --primary: #001A23;
    --primary-rgb: 0 26 35;
    --secondary: #D8B56A;
    --sand: #C4B1A2;
    --brownish: #85756B;
    --dark-brownish: #756B63;
    --white: #FFFFFF;
    --off-white: #CECECE;
    --black: #000000;
    --grey: #434343;
    --font-primary: "Lora";
    --font-secondary: "Raleway";
}

/* Common CSS */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: background-position 3s ease, background-size 3s ease;
}

a,
a::before,
a::after,
button,
:hover,
:hover:before,
:hover:after {
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-size: 15px;
    line-height: 24px;
    color: var(--black);
    font-family: var(--font-secondary);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
    font-family: var(--font-secondary);
    font-weight: normal;
    color: #14141d;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #23527c;
}

a:hover {
    text-decoration: none;
    color: #ff214f;
}

a:visited {
    color: #14141d;
}

a:visited:hover {
    color: #fea100;
}

img {
    max-width: 100%;
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-family: var(--font-primary);
    margin: 0;
}

h1 {
    font-size: 72px;
    line-height: 86px;
}

h2 {
    font-size: 72px;
    line-height: 86px;
}

h3 {
    font-size: 48px;
    line-height: 62px;
}

h4 {
    font-size: 24px;
    line-height: 28px;
}

h5 {
    font-size: 18px;
    line-height: 20px;
}

h6 {
    font-size: 18px;
    line-height: 22px;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Boeder Style */
.box-border {
    position: relative;
    z-index: 0;
}

.box-border::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    right: -10px;
    border: 1.5px solid var(--white);
    border-radius: 15px;
    z-index: -1;
}

.box-border::after {
    content: "";
    position: absolute;
    top: -12px;
    bottom: -12px;
    left: 0;
    right: 0;
    border: 3px solid var(--white);
    border-radius: 15px;
    z-index: -1;
}

.border-thick::before {
    border-width: 4px;
    left: -12px;
    right: -12px;
}

.border-thick::after {
    border-width: 8px;
    top: -15px;
    bottom: -15px;
}

.border-white {
    border-color: var(--white);
}

.border-white::after {
    border-color: var(--white);
}

.border-white::before {
    border-color: var(--white);
}

.border-primary {
    border-color: var(--primary);
}

.border-primary::after {
    border-color: var(--primary);
}

.border-primary::before {
    border-color: var(--primary);
}

.border-secondary {
    border-color: var(--secondary);
}

.border-secondary::after {
    border-color: var(--secondary);
}

.border-secondary::before {
    border-color: var(--secondary);
}

/* Overlay */
.overlay {
    position: relative;
    z-index: 0;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0 0 0 / 50%);
}

.overlay>div {
    z-index: 1;
}

/* Discover Section */
.discover-section {
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
}

.discover-section .discover-block {
    width: 460px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.discover-section .discover-block h3 {
    color: var(--white);
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: uppercase;
}

.intro-section {
    position: relative;
    height: calc(var(--vh) * 100);
    overflow: hidden;
}

.sticky-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sticky-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: top left;
    transition: transform 0.5s ease;
    transform: scale(1.3);
}

.intro-section .elite-block {
    width: 50dvw;
    height: 50dvh;
    position: absolute;
    left: -5%;
    bottom: -5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.intro-section .elite-block .content {
    padding-left: 50px;
    padding-bottom: 40px;
}

.intro-section .content h2 {
    color: var(--secondary);
    text-transform: uppercase;
}

.intro-section .content p {
    font-size: 32px;
    line-height: 42px;
    color: var(--off-white);
}

.intro-section .expressive-block {
    width: 60dvw;
    height: 50dvh;
    position: absolute;
    right: -10dvw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.intro-section .expressive-block .content {
    padding-right: 20%;
}

.intro-section .engaging-block {
    width: 50dvw;
    height: 50dvh;
    position: absolute;
    left: 50%;
    bottom: -10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.intro-section .engaging-block .content {
    padding-bottom: 10%;
}

.luxury-block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(var(--light-rgb)/ 60%);
}

.luxury-block h3 {
    font-size: 66px;
    line-height: 1.3;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.luxury-block::after,
.luxury-block::before {
    border-color: var(--light);
}

/* Artesia Section */
.artesia-section {
    height: 100dvh;
    background-color: var(--primary);
    position: relative;
}

.artesia-section .image-block {
    position: absolute;
    max-width: 50%;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 0;
    overflow: hidden;
}

.artesia-section .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artesia-section .logo-block {
    position: absolute;
    max-width: 50%;
    width: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.artesia-section .logo-block .logos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.artesia-section .logo-block img {
    opacity: 0;
}

/* Header */
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 5%;
    background-color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    z-index: 9999;
    transform: translateY(-110%);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

header.header.sticky {
    transform: translateY(0);
}

header.header:not(.sticky)+.sidebar {
    transform: translateX(110%) !important;
}

header.header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.header .navbar .hamburger-menu a {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    width: 22px;
    height: 15px;
    overflow: hidden;
}

header.header .navbar .hamburger-menu a span {
    display: inline-block;
    width: 22px;
    height: 1.6px;
    background-color: var(--white);
    border-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

header.header .navbar .hamburger-menu a.open span:nth-child(2) {
    transform: translateX(110%);
}

header.header .navbar .hamburger-menu a.open span {
    transform: rotate(45deg) translate(5px, 5px);
}

header.header .navbar .hamburger-menu a.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

header.header .navbar .hamburger-menu a span:nth-child(2) {
    width: 15px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    max-width: 540px;
    width: 100%;
    text-align: right;
    padding: 170px 50px 45px;
    border-left: 2px solid var(--secondary);
    z-index: 999;
    transform: translateX(110%);
}

.sidebar .content-block>a.close-button {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
}

.sidebar .content-block>a.close-button span {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 9px;
}

.sidebar .content-block>a.close-button span:last-child {
    transform: rotate(-45deg);
}

.sidebar .content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 96px;
}

.sidebar .content-block .nav-items ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sidebar .content-block .nav-items a {
    color: var(--white);
    font-family: var(--font-secondary);
    /* font-weight: 500; */
    font-size: 36px;
    line-height: 42px;
    display: block;
}

.sidebar .content-block .header-contact h3 {
    font-size: 28px;
    line-height: 1.1;
    font-family: var(--font-secondary);
    color: var(--white);
    display: inline-block;
    position: relative;
    margin-bottom: 16px;
}

.sidebar .content-block .header-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--secondary);
}

.sidebar .content-block .nav-items,
.sidebar .content-block .header-contact {
    width: 100%;
}

.sidebar .content-block .header-contact ul.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar .content-block .header-contact ul.contact a {
    font-size: 28px;
    line-height: 1.1;
    font-family: var(--font-secondary);
    color: var(--secondary);
}

.sidebar .content-block .header-contact ul.social {
    display: flex;
    justify-content: flex-end;
    padding-top: 50px;
    gap: 24px;
}

.sidebar .content-block .header-contact ul.social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
}

/* Banner Section */
.banner-section {
    height: 100dvh;
    background-color: var(--primary);
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.banner-section .image-block {
    position: absolute;
    top: calc(var(--vh) * 10);
    left: 0;
    right: 0;
    height: 0;
    object-fit: center top;
    overflow: hidden;
}

.banner-section .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20%;
}

.banner-section .content-block {
    position: absolute;
    bottom: 0;
    text-align: center;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section .content-block h3 {
    font-family: Raleway;
    font-size: 35px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: #fff;
    padding: 0 30px;
}

/* Specification sec */
.specification-section {
    height: 100dvh;
    background-image: url("../media/artesia_third_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    transition: background-position 3s ease, background-size 3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.specification-section .first_content_block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    right: 20%;
    gap: 10px;
}

.specification-section .first_content_block .txtnum_content {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.specification-section .first_content_block .txtnum_content h2 {
    font-family: var(--font-secondary);
    font-size: 90px;
    line-height: 1;
    font-weight: 500;
    line-height: 105.66px;
    letter-spacing: 0.04em;
    text-align: center;
}

.specification-section .first_content_block .txtnum_content p {
    font-family: Raleway;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.18px;
    letter-spacing: 0.04em;
    margin: 0 0 18px 10px;
}

.specification-section .first_content_block .txtnum_content p.middle {
    margin-bottom: 5px;
}

.specification-section .first_content_block .txtnum_content h2 {
    min-width: 170px;
    text-align: right;
}

.specification-section .second_content-block {
    background-color: #003b5075;
    padding: 50px 0;
}

.specification-section .second_content-block .bottom-block,
.specification-section .second_content-block .bottom-block .slider-wrapper {
    max-width: 1248px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 10%;
    padding-right: 5%;
}

.specification-section .second_content-block p {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: 21.13px;
    letter-spacing: 0.04em;
    color: var(--white);
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    height: 100dvh;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-section .image-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    max-width: 80%;
    width: 100%;
    max-height: 90dvh;
    display: flex;
    justify-content: center;
    align-self: center;
    opacity: 0;
}

.map-section .image-block img {
    max-width: 100%;
    max-height: 65vh;
    height: 100%;
}

.map-section .image-block-one {
    opacity: 1;
    transform: scale(0) translate(-50%, -30%);
}

.map-section .image-block-two {
    opacity: 0;
    transform: scale(0) translate(-50%, -30%);
}

/* Images Slider Section */
.images-slider-section {
    position: relative;
    width: 100%;
    height: calc(var(--vh) * 100);
    overflow: hidden;
}

.images-slider-section .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.images-slider-section .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
}

.images-slider-section .slider-image.active {
    z-index: 2;
}

.images-slider-section .slider-prev,
.images-slider-section .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(195 195 195 / 80%);
    border-radius: 4px;
    color: #fff;
    border: none;
    padding: 10px;
    width: 56px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
}

.images-slider-section .slider-prev {
    left: 5%;
}

.images-slider-section .slider-next {
    right: 5%;
}

/* Explore Section */
section.explore-buttons-section {
    max-height: calc(var(--vh) * 100);
    background-image: url("../media/explore-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    inset: 0px auto auto 0px;
}

section.explore-buttons-section .explore-blocks {
    position: absolute;
    top: 10%;
    right: 5%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
    justify-content: center;
}

section.explore-buttons-section .explore-blocks .explore-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px;
    min-width: 220px;
    min-height: 110px;
    background-color: rgb(0 26 35 / 80%);
    cursor: pointer;
}

section.explore-buttons-section .explore-blocks .explore-block p {
    margin: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
}

section.explore-buttons-section .explore-blocks .explore-block h2 {
    margin: 0;
    color: var(--white);
    font-size: 28px;
    line-height: 32px;
    font-weight: normal;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

/* Explore Plans Section */
.explore-plans-section {
    background-color: var(--primary);
    transition: background-position 3s ease, background-size 3s ease;
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2% 5% 4%;
    padding-top: 180px;
}

.explore-plans-section .explore-plans-blocks {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.explore-plans-section .explore-plans-blocks .plan-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-block .top-bar,
.plan-block .bottom-bar {
    background-color: var(--sand);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.plan-block .top-bar h2 {
    font-size: 26px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.plan-block .bottom-bar {
    background-color: var(--black);
}

.plan-block .image-bar img {
    max-height: 58vh;
    width: 100%;
    aspect-ratio: 4/5;
}

.plan-block .bottom-bar h3 {
    color: var(--white);
    font-size: 26px;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    margin: 0;
}

.plan-block .bottom-bar a {
    color: var(--white);
    font-size: 16px;
    text-decoration: underline;
    text-transform: lowercase;
    font-family: var(--font-secondary);
}

/* Footer */
.footer {
    min-height: calc(var(--vh) * 100);
    background-color: var(--primary);
    position: relative;
    display: flex;
    align-items: stretch;
}

.footer .content-block {
    max-width: 50%;
    width: 100%;
    padding: 0 5%;
}

.footer .image-block {
    max-width: 50%;
    width: 100%;
    position: relative;
    min-height: calc(var(--vh)* 100);
    overflow: hidden;
}

.footer .content-block>a.close-button {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
}

.footer .content-block>a.close-button span {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 9px;
}

.footer .content-block>a.close-button span:last-child {
    transform: rotate(-45deg);
}

.footer .content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 80px;
    padding: calc(var(--vh) * 25) 5% calc(var(--vh) * 5);
}

.footer .content-block .nav-items ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer .content-block .nav-items a {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 28px;
    line-height: 32px;
    font-weight: 300;
    display: block;
}

.footer .content-block .header-contact h3 {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
    font-family: var(--font-secondary);
    color: var(--white);
    display: inline-block;
    position: relative;
    margin-bottom: 16px;
}

.footer .content-block .header-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--secondary);
}

.footer .content-block .nav-items,
.footer .content-block .header-contact {
    width: 100%;
}

.footer .content-block .header-contact ul.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer .content-block .header-contact ul.contact a {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
    font-family: var(--font-secondary);
    color: var(--secondary);
}

.footer .content-block .header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.footer .content-block .header-contact ul.social {
    display: flex;
    /* justify-content: flex-end; */
    padding-top: 30px;
    gap: 24px;
}

.footer .content-block .header-contact ul.social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
}

.footer .content-block .header-contact .finance {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer .content-block .header-contact ul.copyright {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    /* padding-top: 70px; */
    gap: 5px;
}

.footer .content-block .header-contact ul.copyright p {
    margin: 0;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    display: block;
}

.footer .image-block img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer .image-block .text-block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    background-color: rgba(196 177 162 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.footer .image-block .text-block {
    text-transform: uppercase;
    color: var(--primary);
}

.footer .content-block .header-contact .finance p {
    margin: 0 0 10px;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

.footer .content-block .header-contact .finance img {
    max-height: 70px;
}

.mobile-only {
    display: none;
}

.error {
    color: red;
    font-size: 12px;
}

.error-border {
    border-color: red;
}

input {
    display: block;
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
}

.success {
    color: green;
}

section.request-floor-plan-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0 0 0 / 70%);
    padding: 24px;
    z-index: 9999;
    transform: translateY(110%);
}

section.request-floor-plan-section .inquiry-popup .form-wrapper {
    max-width: 380px;
    width: 100%;
}

section.request-floor-plan-section .inquiry-popup {
    width: 100%;
    padding: 60px 40px;
    background-color: var(--primary);
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.request-floor-plan-section .inquiry-popup h2 {
    font-size: 24px;
    line-height: 1.4;
    font-family: var(--font-secondary);
    color: var(--white);
    margin-bottom: 15px;
}

section.request-floor-plan-section form#contactForm {
    max-width: 400px;
    width: 100%;
}

section.request-floor-plan-section form#contactForm input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--secondary);
    margin-bottom: 0;
    font-size: 18px;
    color: var(--secondary);
    padding: 10px 0;
}

section.request-floor-plan-section form#contactForm .input-block {
    margin-bottom: 20px;
}

section.request-floor-plan-section form#contactForm button {
    width: 100%;
    background-color: var(--secondary);
    border: none;
    padding: 13px 10px;
    font-size: 18px;
    font-family: var(--font-secondary);
    border-radius: 8px;
}

section.request-floor-plan-section .inquiry-popup>a {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.request-floor-plan-section .inquiry-popup>a span {
    display: inline-block;
    width: 25px;
    height: 1px;
    border-radius: 10px;
    background-color: var(--white);
    transform: rotate(45deg);
}

section.request-floor-plan-section .inquiry-popup>a span:last-child {
    transform: rotate(-45deg);
}

section.request-floor-plan-section form#contactForm .input-block.checkbox {
    display: flex;
    flex-direction: column;
}

section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"] {
    display: none;
}

section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"]+label {
    position: relative;
    color: var(--secondary);
    font-size: 16px;
    padding-left: 35px;
    min-height: 20px;
}

section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid var(--secondary);
}

section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"]:checked+label::before {
    background-color: var(--secondary);
}

section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"]+label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    display: inline-block;
    height: 6px;
    width: 12px;
    border: 2px solid var(--primary);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    width: 0;
    height: 0;
    opacity: 0;
}

section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"]:checked+label::after {
    height: 6px;
    width: 12px;
    opacity: 1;
}

.download-container {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C4B1A2;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.download-container:hover .tooltip {
    opacity: 1;
}

.tooltip {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(-100%, -50%);
    background-color: #001A23;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-icon {
    width: 15px;
    height: 18px;
}

/* Animation for moving the arrow up and down */
.arrow {
    animation: bounce 1s infinite;
}

/* Bouncing animation for the arrow */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Ratnaakar 360 view  */
.ratnaakar-360-map-section {
    width: 100vw;
    height: calc(var(--vh) * 100);
    border: none;
}

.ratnaakar-360-map-section .iframe-section {
    width: 100vw;
    height: calc(var(--vh) * 100);
    border: none;
    padding: 0 5%;
}

.download-container p.display {
    display: flex;
    color: red;
    transform: translateY(-30px);
}

@media screen and (max-width: 1025px) {
    h1 {
        font-size: 56px;
        line-height: 66px;
    }

    h2 {
        font-size: 52px;
        line-height: 62px;
    }

    h3 {
        font-size: 42px;
        line-height: 56px;
    }

    h4 {
        font-size: 22px;
        line-height: 26px;
    }

    h5 {
        font-size: 18px;
        line-height: 20px;
    }

    h6 {
        font-size: 18px;
        line-height: 22px;
    }

    .artesia-section .logo-block {
        top: 30%;
        right: 5%;
    }

    .specification-section .first_content_block .txtnum_content h2 {
        font-size: 70px;
        line-height: 1;
    }

    .specification-section .first_content_block .txtnum_content p {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 10px 10px;
    }

    .specification-section .second_content-block p {
        font-size: 16px;
    }

    .intro-section .expressive-block,
    .intro-section .elite-block,
    .intro-section .engaging-block {
        width: 80dvw;
    }

    .intro-section .content p {
        font-size: 28px;
    }

    .luxury-block h3 {
        font-size: 52px;
    }

    .banner-section .content-block h3 {
        font-size: 32px;
    }

    .footer .content-block .nav-items a {
        font-size: 24px;
    }

    .sidebar .content-block .nav-items ul {
        gap: 30px;
    }

    .sidebar .content-block .nav-items a {
        font-size: 24px;
    }

    .footer .content-block .header-contact h3 {
        font-size: 24px;
    }

    .footer .content-block .header-contact ul.contact a {
        font-size: 24px;
    }

    .sidebar .content-block .header-contact ul.contact a {
        font-size: 24px;
    }

    .footer .content-block .header-contact ul.copyright {
        gap: 5px;
    }

    .footer .content-block .header-contact ul.copyright p {
        font-size: 14px;
    }

    .footer::after {
        background-size: 100%;
        background-position: center top;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 52px;
        line-height: 66px;
    }

    h2 {
        font-size: 48px;
        line-height: 52px;
    }

    h3 {
        font-size: 40px;
        line-height: 56px;
    }

    h4 {
        font-size: 20px;
        line-height: 26px;
    }

    h5 {
        font-size: 18px;
        line-height: 20px;
    }

    h6 {
        font-size: 18px;
        line-height: 22px;
    }

    .intro-section {
        background-size: 140%;
    }

    .discover-section .discover-block {
        width: 360px;
        height: 200px;
    }

    .artesia-section .logo-block img:first-child {
        width: 120px;
    }

    .artesia-section .logo-block img:last-child {
        width: 250px;
    }

    .plan-block .top-bar h2 {
        font-size: 24px;
    }

    .plan-block .bottom-bar h3 {
        font-size: 24px;
    }

    .plan-block .top-bar,
    .plan-block .bottom-bar {
        min-height: 80px;
    }

    .footer::after {
        top: 10%;
        left: 50%;
    }

    .footer .content-block {
        max-width: 45%;
    }

    .footer .content-block .nav-items a {
        font-size: 20px;
    }

    .sidebar {
        max-width: 100vw;
    }

    .sidebar .content-block .header-contact h3 {
        font-size: 20px;
    }

    .sidebar .content-block {
        gap: 70px;
    }

    .sidebar .content-block .nav-items ul {
        gap: 20px;
    }

    .sidebar .content-block .nav-items a {
        font-size: 20px;
    }

    .footer .content-block .header-contact h3 {
        font-size: 20px;
    }

    .footer .content-block .header-contact ul.contact a {
        font-size: 20px;
    }

    .sidebar .content-block .header-contact ul.contact a {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
        line-height: 50px;
    }

    h2 {
        font-size: 36px;
        line-height: 46px;
    }

    h3 {
        font-size: 30px;
        line-height: 40px;
    }

    h4 {
        font-size: 18px;
        line-height: 24px;
    }

    h5 {
        font-size: 16px;
        line-height: 22px;
    }

    h6 {
        font-size: 16px;
        line-height: 22px;
    }

    .navbar .logo-block img {
        max-height: 55px;
    }

    .discover-section .discover-block,
    .luxury-block {
        width: 250px;
        height: 130px;
    }

    .intro-section {
        background-image: url(../media/mobile-main-banner.jpg);
    }

    .intro-section .expressive-block,
    .intro-section .elite-block,
    .intro-section .engaging-block {
        width: 80dvw;
        height: 40dvh;
    }

    .intro-section .content h2 {
        font-size: 24px;
        line-height: 31px;
    }

    .intro-section .content p {
        font-size: 14px;
        line-height: 24px;
        padding: 0 30px;
    }

    .intro-section .elite-block .content {
        padding-left: 30px;
        padding-bottom: 30px;
    }

    .intro-section .expressive-block .content {
        padding-right: 20px;
    }

    .luxury-block h3 {
        font-size: 36px;
    }

    .artesia-section .logo-block img:first-child {
        width: 100px;
    }

    .artesia-section .logo-block img:last-child {
        width: 170px;
    }

    .artesia-section .logo-block {
        max-width: 50%;
        top: 25%;
        right: 0;
        padding: 20px;
    }

    .artesia-section .image-block {
        max-width: 100%;
        left: 0;
        right: 0;
    }

    .banner-section .content-block h3 {
        font-size: 18px;
    }

    .specification-section {
        background-position: 40% 50%;
    }

    .specification-section .first_content_block {
        right: 10%;
    }

    .specification-section .first_content_block .txtnum_content h2 {
        font-size: 42px;
        line-height: 1;
    }

    .specification-section .first_content_block .txtnum_content p {
        font-size: 12px;
        line-height: 20px;
        margin: 0 0 3px 10px;
    }

    .specification-section .first_content_block .txtnum_content p.middle {
        margin-bottom: 0;
    }

    .specification-section .second_content-block .bottom-block {
        max-width: 100%;
        padding: 0;
        display: block;
    }

    .specification-section .images-slider-section {
        height: 105px !important;
    }

    .images-slider-section {
        height: unset !important;
    }

    section.images-slider-section .slider-wrapper {
        aspect-ratio: 5/4;
    }

    .images-slider-section .slider-wrapper {
        display: block;
    }

    .specification-section .second_content-block p {
        width: 100%;
        text-align: center;
    }

    .specification-section .second_content-block {
        padding: 25px 0;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .map-section .image-block {
        max-width: 90%;
    }

    .explore-plans-section .explore-plans-blocks {
        flex-direction: column;
        width: 100%;
    }

    .explore-plans-section .explore-plans-blocks .plan-block {
        width: 100%;
    }

    .plan-block .image-bar img {
        width: 100%;
    }

    .explore-plans-section {
        height: auto !important;
        padding-bottom: 60px !important;
    }

    .footer::after {
        top: 0;
        left: 48%;
        background-size: 150%;
        background-position: top left;
    }

    .footer .content-block {
        max-width: 60%;
    }

    .footer .content-block .nav-items a {
        font-size: 16px;
        line-height: 24px;
    }

    .sidebar .content-block .header-contact h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .sidebar .content-block .nav-items a {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .content-block .header-contact h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .content-block .header-contact ul.contact a {
        font-size: 16px;
        line-height: 24px;
    }

    .sidebar .content-block .header-contact ul.contact a {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .content-block .nav-items ul {
        gap: 3px;
    }

    .footer .content-block {
        gap: 40px;
        padding-bottom: 50px;
    }

    /* .footer .content-block .header-contact ul.copyright { padding-top: 50px; } */
    .footer .content-block .header-contact ul.social a {
        width: 30px;
        height: 30px;
    }

    .sidebar .content-block .header-contact ul.social a {
        width: 30px;
        height: 30px;
    }

    .footer .content-block .header-contact ul.social a img {
        max-height: 12px;
    }

    .sidebar .content-block .header-contact ul.social a img {
        max-height: 12px;
    }

    .footer .content-block .header-contact ul.social {
        padding-top: 20px;
    }

    .footer .content-block .header-contact ul.copyright p {
        font-size: 12px;
        line-height: 1.2;
    }

    .footer .content-block .header-contact ul.contact {
        gap: 0px;
    }

    .footer {
        max-height: 700px;
    }

    section.explore-buttons-section .explore-blocks {
        gap: 50px;
    }

    section.explore-buttons-section .explore-blocks .explore-block {
        min-width: 180px;
        min-height: 80px;
    }

    section.explore-buttons-section .explore-blocks .explore-block p {
        font-size: 14px;
        list-style: 1.5;
    }

    section.explore-buttons-section .explore-blocks .explore-block h2 {
        font-size: 20px;
        line-height: 1;
    }

    .plan-block .top-bar h2 {
        font-size: 20px;
    }

    .plan-block .bottom-bar h3 {
        font-size: 20px;
    }

    .explore-plans-section .explore-plans-blocks {
        gap: 30px;
    }

    section.request-floor-plan-section .inquiry-popup h2 {
        font-size: 20px;
    }

    section.request-floor-plan-section form#contactForm input {
        font-size: 14px;
    }

    section.request-floor-plan-section form#contactForm button {
        font-size: 14px;
    }

    .intro-section .elite-block .content {
        padding: 0 0 50px;
    }

    .intro-section .content p {
        margin: 10px 0 0;
    }

    .intro-section .expressive-block {
        height: 30vh;
    }

    .intro-section .engaging-block .content {
        padding-bottom: 30%;
    }

    .images-slider-section .slider-prev,
    .images-slider-section .slider-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border-radius: 4px;
        color: #fff;
        border: none;
        width: 56px;
        height: 40px;
        cursor: pointer;
        z-index: 5;
    }

    .box-border::before {
        border-width: 1.4px;
        left: -10px;
        right: -10px;
    }

    .box-border::after {
        border-width: 2.5px;
        top: -10px;
        bottom: -10px;
    }

    .footer {
        flex-direction: column-reverse;
        max-height: unset;
    }

    .footer .content-block {
        width: 100%;
        max-width: 100%;
        padding: 10% 5%;
    }

    .footer .image-block {
        max-width: 100%;
    }

    .images-slider-section {
        min-height: unset !important;
        height: calc(var(--vh)* 35);
        padding: 40px 0;
    }

    .footer .image-block .text-block {
        padding: 30px;
    }

    .footer .image-block .text-block h3 {
        font-size: 24px;
    }

    .footer .image-block {
        height: 300px;
    }

    .footer {
        height: unset;
    }

    .download-container {
        width: 40px;
        height: 40px;
    }

    .ratnaakar-360-map-section {
        width: 100%;
        height: calc(var(--vh)* 50);
        min-height: calc(var(--vh)* 50) !important;
    }

    .ratnaakar-360-map-section .iframe-section {
        width: 100vw;
        height: 100%;
        border: none;
    }

    .plan-block .image-bar img {
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .plan-block .top-bar {
        min-height: 50px;
    }

    .plan-block .top-bar h2 {
        line-height: 1;
    }

    .footer .image-block {
        min-height: unset;
    }

    .footer .content-block .header-contact .finance p {
        font-size: 12px;
        line-height: 18px;
    }

    .footer .content-block .header-contact .finance img {
        max-height: 45px;
    }

    section.explore-buttons-section.section-overlap {
        display: flex;
        max-width: 100% !important;
        min-height: calc(var(--vh) * 100) !important;
        height: calc(var(--vh) * 100) !important;
        padding: 50px 15px;
        aspect-ratio: 16/9;
        align-items: center;
        justify-content: center;
        background-size: 60vh;
        background-position: center;
    }

    section.explore-buttons-section .explore-blocks {
        position: unset;
        flex-direction: column;
        align-items: flex-end;
        flex-wrap: wrap;
        width: 90%;
        gap: 30px;
    }

    section.explore-buttons-section .explore-blocks .explore-block {
        min-width: 120px;
        min-height: unset;
        padding: 7px 10px;
        border-radius: 5px;
    }

    section.explore-buttons-section .explore-blocks .explore-block p {
        font-size: 12px;
    }

    section.explore-buttons-section .explore-blocks .explore-block h2 {
        font-size: 16px;
    }

    section.explore-buttons-section .explore-block::after {
        top: -6px;
        bottom: -6px;
    }

    section.explore-buttons-section .explore-block::before {
        left: -6px;
        right: -6px;
    }

    header.header {
        padding: 20px 5%;
    }

    .navbar .logo-block img {
        max-height: 50px;
    }

    .banner-section .content-block h3 {
        font-size: 16px;
    }

    section.request-floor-plan-section form#contactForm .input-block.checkbox input[type="checkbox"]+label {
        font-size: 14px;
    }
}

.grecaptcha-badge {
    display: none !important;
}

.spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

p.font-small {
    font-size: 12px !important;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@media screen and (max-height: 800px) {
    .specification-section .first_content_block .txtnum_content h2 {
        font-size: 65px;
        line-height: 1;
    }

    .specification-section .first_content_block .txtnum_content p {
        font-size: 18px;
        line-height: 1.1;
    }

    .specification-section .first_content_block {
        gap: 15px;
    }

    .specification-section .second_content-block {
        padding: 25px 0;
    }
}

section#ratnakar-360-view {
    overflow: hidden;
}

.position-relative {
    position: relative;
}

.map-section p {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: 21.13px;
    letter-spacing: 0.04em;
    color: var(--white);
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-section p img {
    max-width: 14px !important;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .map-section p {
        font-size: 14px;
        bottom: -90px;
    }
}