:root {
    --color: rgb(175, 151, 88);
    --btn_color: rgb(168, 130, 46);
    --font_size: 15px;
    --navber_color: #d8dee6;
    --hover_color: #5b6677;
    --header-text-color: #3e495b;
    --header-font: "Californian FB Bold", "Times New Roman", Times, serif;
    --paragraph-font: "Californian FB", "Times New Roman", Times, serif;
    --heighlight-color: #3e495b;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    transition: all 0.5s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
p,
ul,
li {
    margin: 0;
    padding: 0;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
/* ************ header ********* */
.header-div {
    width: 100%;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    z-index: 1;
    transition: top 0.3s;
}
.header-div.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.header-div .logo {
    position: absolute;
    left: 40px;
}
.header-div .menu {
    position: absolute;
    right: 40px;
    top: 10px;
    cursor: pointer;
}
/* Side Navbar Styles */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 70px;
    right: 0;
    background-color: #7a8799;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 25px;
    z-index: 9999;
}
.sidenav a {
    padding: 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: var(--navber_color);
    display: block;
    transition: 0.3s;
    text-decoration: none;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
.sidenav a:hover {
    color: var(--hover_color);
    text-decoration: none;
}
/* Button Styling */
.download-btn {
    border: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    color: #ffffff;
    position: fixed;
    top: 50%;
    left: -80px;
    display: flex;
    flex-direction: column;
    transform: rotate(90deg);
    padding: 10px 30px;
    background-image: linear-gradient(to right, var(--btn_color), rgb(94, 83, 52));
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    z-index: 1000;
    cursor: pointer;
}
/* Modal overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.form-container .opup-header {
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-align: center;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--header-text-color);
    position: relative;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.form-container .opup-header span {
    background-color: #fefbea;
    position: relative;
    z-index: 9;
    padding: 0 15px;
}
.form-container .opup-header:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    background-color: var(--header-text-color);
}
/* Form container */
.form-container {
    width: 95%;
    background: #fefbea;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    max-width: 480px;
    position: relative;
    background-image: url(./Links/popup-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 80px;
    margin: auto;
    top: 10%;
    animation: scalebg2-img 0.8s ease-in-out;
}
.form-container .form-check-label {
    font-size: 14px;
    font-family: "Californian FB", "Times New Roman", Times, serif;
    color: var(--header-text-color);
}
.form-container .form-check {
    padding-left: 30px;
}
.form-container input[type="checkbox"],
.form-container input[type="radio"] {
    width: 24px;
    height: 24px !important;
    border-radius: 6px;
    margin-left: -30px;
}
/* Close button */
.close-btn {
    width: 40px;
    height: 40px;
    background: #808080;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 11px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
/* Optional hover effect */
.close-btn:hover {
    background: rgba(128, 128, 128, 0.7);
}
/* Form fields */
label {
    display: block;
    text-align: left;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
.checkbox-container {
    text-align: left;
    margin-top: 15px;
    font-size: 12px;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
/* Submit button */
.submit-btn {
    display: inline-block;
    text-decoration: none;
    padding: 5px 50px;
    margin: 5px;
    background-color: transparent;
    border-radius: 40px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-size: 24px;
    color: var(--heighlight-color);
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    border: none;
    line-height: 1.4;
    border: 2px solid var(--heighlight-color);
}
.submit-btn:hover {
    background-color: #7d7b7b;
}
.submit-block {
    width: 100%;
    padding: 30px 0 0 0;
    margin: 0;
    border: none;
    outline: none;
    text-align: center;
}
/* ************************** */
.gold-div {
    width: 100%;
    height: 40rem;
    background-color: rgb(243, 223, 198);
    position: relative;
}
.three-img {
    position: relative;
    top: -4.9rem;
    right: 9rem;
}
.standerd {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    position: absolute;
    top: 10.5rem;
    right: 3rem;
}
.build {
    width: 600px;
}
.build img {
    width: 100%;
    animation: build-img-lineUp 2s ease-in-out;
}
@keyframes build-img-lineUp {
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
.gold_text {
    position: relative;
    top: -4rem;
    right: 4.2rem;
    animation: goldText-img-lineUp 5s ease-in-out;
}
@keyframes goldText-img-lineUp {
    0% {
        opacity: 0;
        transform: translateX(80%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
.cap-div .siri {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 26.8rem;
    right: 10rem;
    animation: siri-img-lineUp 2s ease-in-out;
}
@keyframes siri-img-lineUp {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateY(0%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
/* *********************************** */
.text-box {
    width: 100%;
    height: 370px;
    padding: 10px;
}
.text-box img {
    animation: text1 3s ease-in;
}
.text-box .txt1 {
    font-weight: 300;
    color: #000;
    font-size: 18px;
    font-family: "Californian FB", "Times New Roman", Times, serif;
    padding-left: 40px;
}
.txt1-animation {
    animation: text1 2s ease-in;
}
.txt1_para_moving {
    opacity: 0;
}
@keyframes text1 {
    0% {
        opacity: 0;
        transform: translateX(-80%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
.text-box .txt2 {
    font-size: 19px;
    font-weight: 600;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    padding-top: 20px;
    padding-left: 40px;
}
.txt2-animation {
    animation: text2 3s ease-in-out;
}
.txt2_para_moving {
    opacity: 0;
}
@keyframes text2 {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateY(0%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
.text-div {
    margin-top: 70px;
    display: flex;
    align-items: center;
    padding: 0 25px 0 30px;
}
.span-img {
    margin-left: 11rem;
}
.span-img .img {
    height: auto;
    width: 100%;
    max-width: 380px;
    object-fit: cover;
    animation: span-img-lineUp 3s linear;
}
@keyframes span-img-lineUp {
    0% {
        opacity: 0;
        transform: translateX(80%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
/* ***************************************** */
.container-div {
    margin-top: 50px;
}
.CONNECTIVITY-div {
    position: absolute;
    display: contents;
    justify-content: center;
    border: 1px solid black;
}
.had {
    display: flex;
    justify-content: center;
    font-size: 30px;
    color: rgb(175, 151, 88);
    margin-top: 15px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.Img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    justify-content: center;
}
.para-box {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.para-box .para {
    text-align: center;
    font-size: var(--font_size);
    font-family: "Californian FB", "Times New Roman", Times, serif;
    padding-top: 15px;
    font-weight: 300;
}
.para-box .map-iframe {
    margin-top: 3rem;
    width: 100%;
    animation: map-iframe 2s ease-in;
}
@keyframes map-iframe {
    0% {
        opacity: 0;
        scale: 0.2;
    }
    20% {
        opacity: 0;
        scale: 0.5;
    }
    50% {
        opacity: 1;
        scale: 0.8;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}
/* ******** entertainment ****** */
.box {
    display: flex;
    justify-content: center;
    position: relative;
    width: 300px;
    left: 3%;
}
.man {
    width: 238px;
    height: 200px;
    perspective: 1000px;
}
.box .man .img-bg_8 {
    width: 211px;
    height: 200px;
    transition: all 1s linear;
}
.img-bg_8:hover {
    transform: rotateY(180deg);
}
.entertainment {
    list-style-type: none;
    justify-items: center;
}
.entertainment_btn {
    width: 122px;
    height: 70px;
    border: none;
    background-color: white;
    color: var(--color);
    position: relative;
    left: -55%;
    top: 11rem;
    cursor: pointer;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.entertainment_btn .entertainment_btn_icon {
    font-size: 25px;
}
/* ******** HOSPITALS ******* */
.hospitals {
    list-style-type: none;
    justify-items: center;
}
.hospitals_btn {
    width: 122px;
    height: 70px;
    border: none;
    background-color: white;
    color: var(--color);
    position: relative;
    left: -50%;
    top: 89%;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.hospitals_btn .hospitals_btn_icon {
    font-size: 25px;
}
/* ********** SCHOOLS *********** */
.schools {
    list-style-type: none;
}
.schools_btn {
    width: 122px;
    height: 70px;
    border: none;
    background-color: white;
    color: var(--color);
    position: relative;
    left: -50%;
    top: 89%;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.schools_btn .schools_btn_icon {
    font-size: 25px;
}
/* ********** CONNECTIVITY *********** */
.connectivity {
    list-style-type: none;
}
.connectivity_btn {
    width: 122px;
    height: 70px;
    border: none;
    background-color: white;
    color: var(--color);
    position: relative;
    left: -51%;
    top: 89%;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.connectivity_btn .connectivity_btn_icon {
    font-size: 25px;
}
.underline-container {
    padding: 0 20px;
}
.underline {
    height: 2px;
    width: 100%;
    background-color: var(--color);
    margin-top: 68px;
}
/* ********************************* */
.main-block .bg2_div {
    padding: 0 40px;
    margin: 0;
    border: none;
    outline: none;
    text-align: center;
}
.main-block .bg2_div img {
    width: 500px;
    height: 500px;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    border-radius: 50%;
    text-align: center;
}
.animated_gliter {
    opacity: 1;
    animation: scalebg2-img 2s ease-in-out;
}
.glitter_img_move {
    opacity: 0;
    transition: opacity 0.5s ease;
}
@keyframes bg2-img {
    0% {
        opacity: 0;
        transform: translateX(-80%);
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
@keyframes scalebg2-img {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.nav-box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
}
.left-div {
    position: relative;
    left: 1rem;
    animation: text1 4s ease-in;
}
.right-div {
    position: relative;
    right: 1rem;
    top: -2.4rem;
    animation: img_mover 4s ease-in;
}
.nav-tabs {
    position: relative;
    top: 8rem;
}
.menu {
    list-style-type: none;
    margin-bottom: 60px;
}
/* **************Driveway********* */
.nav-tabs .Driveway_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    left: 9rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
/* Selected button styling */
.nav-tabs .selected-btn {
    color: var(--btn_color);
    font-weight: bold !important;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
/* ************Gymnasium************ */
.nav-tabs .Gymnasium_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    left: -4.4rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Gymnasium_btn:active {
    color: var(--btn_color);
}
/* ************Badminton Court********** */
.nav-tabs .Badminton_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    left: 1rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Badminton_btn:active {
    color: var(--btn_color);
}
/* ***************Community Hall************ */
.nav-tabs .Community_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    left: 3rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Community_btn:active {
    color: var(--btn_color);
}
/* ***********Swimming Pool********** */
.nav-tabs .Swimming_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    right: 1rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Swimming_btn:active {
    color: var(--btn_color);
}
/* ********Luxuirous Club********** */
.nav-tabs .Luxuirous_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    right: 0rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Luxuirous_btn:active {
    color: var(--btn_color);
}
/* **********Open Landscape********* */
.nav-tabs .Landscape_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    right: 1rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Landscape_btn:active {
    color: var(--btn_color);
}
/* ************Kids’ Play Area************ */
.nav-tabs .Kids_btn {
    border: none;
    background-color: #ffffff;
    position: relative;
    right: 3rem;
    font-size: 20px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    font-weight: 300;
}
.Kids_btn:active {
    color: var(--btn_color);
}
/* *********GALLERY*********** */
.slider-2 {
    align-items: center;
    width: 100%;
    position: relative;
}
.master_prev_arrow {
    background: transparent;
    border: none;
    font-size: 25px;
    color: rgb(175, 151, 88);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    left: 21%;
}
.master_next_arrow {
    background: transparent;
    border: none;
    font-size: 25px;
    color: rgb(175, 151, 88);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    left: 78%;
}
.slider2-div {
    width: 600px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.slider2-div img {
    max-width: 100%;
    max-height: 100%;
}
.btn {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--btn_color);
    border-radius: 20px;
    font-size: 20px;
    padding: 0 30px 0 30px;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.master-download-btn {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(175, 151, 88);
    border-radius: 20px;
    font-size: 20px;
    color: white;
    padding: 0 30px 0 30px;
    border: none;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.btn:hover {
    border: 1px solid black;
}
.master-download-btn:hover {
    border: 1px solid black;
}
/* *********************************** */
.menu1 {
    list-style-type: none;
}
.menu1 button {
    border: none;
    background-color: rgb(183, 179, 179);
    margin-left: 12px;
    font-size: 20px;
    width: 160px;
    color: white;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.menu1 button:active {
    background-color: var(--btn_color);
    color: #ffffff;
}
.construction-tab {
    display: flex;
    justify-content: center;
    margin-left: 10px;
    margin-top: 20px;
}
.construction_prev_arrow {
    position: absolute;
    top: 102%;
    left: 43%;
    font-size: 30px;
    text-align: center;
    color: rgb(175, 151, 88);
}
.construction_next_arrow {
    position: absolute;
    top: 102%;
    font-size: 30px;
    color: rgb(175, 151, 88);
    left: 55%;
}
.main-block .jcp_img {
    width: 100%;
    display: block;
    padding: 0;
    margin-left: 0;
    border: none;
}
.input-div {
    padding-top: 20px;
}
.main-block .jcp_img img {
    width: 1020px;
    display: block;
    padding: 0;
    margin-left: 0;
    border: none;
    height: 420px;
}
.submit_btn {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 120%) !important;
    background-color: rgb(175, 151, 88);
    color: white;
    border-radius: 20px;
    font-size: 20px;
    padding: 0 30px 0 30px;
    border: 1px solid transparent;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.submit_btn:hover {
    border: 1px solid black;
    background-color: #ffffff;
    color: #000;
}
.border-color {
    color: var(--btn_color);
}
.footer-div {
    width: 100%;
    background: linear-gradient(45deg, #d6bc6f, #a8822e);
    margin-top: 90px;
    padding: 65px 0 65px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-evenly;
}
.footer_para1 {
    margin-bottom: 10px !important;
    font-size: 20px !important;
    font-family: "Californian FB Bold", "Times New Roman", Times, serif;
}
.footer_para2 {
    font-size: 15px;
    margin-bottom: 10px;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
.footer_para3 {
    font-family: "Californian FB", "Times New Roman", Times, serif;
    font-size: 12px;
}
.icon {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.icon i {
    margin-left: 15px;
    font-size: 25px;
    color: #09090c;
}
.icon p {
    margin-left: 35px;
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
.footer_para_div {
    width: 75%;
}
.footer_para_container {
    display: flex;
}
.footer_img {
    width: 30%;
}
.form-label {
    color: rgb(175, 151, 88);
    font-family: "Californian FB", "Times New Roman", Times, serif;
}
/* ******** responsive  ******** */
/* width 320 */
.slider-1 {
    display: flex;
    margin: 0;
    padding: 0 60px;
    padding-top: 30px;
}
.card {
    position: relative;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 87% !important;
    height: 350px;
    flex-shrink: 0;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-dots {
    display: none !important;
}
.prev_arrow {
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    font-size: 25px;
    color: rgb(175, 151, 88);
    z-index: 1;
    cursor: pointer;
}
.next_arrow {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    font-size: 25px;
    color: rgb(175, 151, 88);
    z-index: 1;
    cursor: pointer;
}
.prev_arrow:hover,
.next_arrow:hover {
    color: darken(rgb(175, 151, 88), 20%);
    transition: color 0.3s;
}
/* About US Image Box Css */
.text-div {
    display: flex;
    justify-content: space-around;
}
.text-div .image-box {
    width: 700px;
}
.text-div .image-box img {
    width: 100%;
}
.img-animation {
    animation: img_mover 3s ease-in;
}
.img-inactive {
    opacity: 0;
    transform: translateX(50%);
}
@keyframes img_mover {
    0% {
        opacity: 0;
        transform: translateX(30%);
    }
    20% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
.hidden-circle-container,
.hidden-circle-container1,
.hidden-circle-container2 {
    width: 100%;
    overflow: hidden;
    height: 0px;
    transition: 1s;
}
.hidden-circle-container > img,
.hidden-circle-container1 > img,
.hidden-circle-container2 > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.hidden-active,
.hidden-active1,
.hidden-active2 {
    margin: 20px 0px;
    height: 300px;
    padding: 2px;
    background-color: #edc45c;
}
.slick-slide > div {
    width: 100%;
    display: flex;
    justify-content: center;
}
.slider3-div {
    width: 100%;
    display: inline-block;
}
@media (max-width: 576px) {
    .had {
        font-size: 25px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .para-box .para {
        font-size: 12px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .slider2-div img {
        max-width: 81%;
        max-height: 100%;
    }
    .master_next_arrow {
        left: 89%;
    }
    .master_prev_arrow {
        left: 7%;
    }
    .header-div {
        position: fixed;
    }
    .standerd {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        position: absolute;
        top: 10.5rem;
        right: -9rem;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 21.8rem;
        right: -7rem;
        width: 70%;
    }
    .gold_text {
        width: 100%;
        position: relative;
        top: -3.1rem;
        right: 1.1rem;
        animation: goldText-img-lineUp 5s ease-in-out;
        z-index: 99;
    }
    .gold-div {
        width: 100%;
        height: 30rem;
        background-color: rgb(243, 223, 198);
        position: relative;
    }
    .text-div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 40px;
    }
    .text-div .image-box {
        width: 579px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .text-div .image-box img {
        width: 63%;
        left: 26%;
    }
    .text-box .txt1 {
        font-size: 15px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 18px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .main-block .bg2_div img {
        width: 250px;
        height: 250px;
    }
    ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 15px;
    }
    .construction_prev_arrow {
        position: absolute;
        left: 41%;
        top: 102%;
        font-size: 30px;
        color: rgb(175, 151, 88);
    }
    .construction_next_arrow {
        position: absolute;
        right: 46%;
        top: 102%;
        font-size: 30px;
        color: rgb(175, 151, 88);
        left: 57%;
    }
    .nav-tabs .Driveway_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: 4.5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: 8rem;
    }
    .nav-tabs .Gymnasium_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: -3.5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: 8rem;
        font-weight: 300;
    }
    .nav-tabs .Badminton_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: 5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: 2rem;
    }
    .nav-tabs .Community_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: 5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: -1rem;
    }
    .nav-tabs .Swimming_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: 4.5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: 5rem;
    }
    .nav-tabs .Luxuirous_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: -3.5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: 5rem;
    }
    .nav-tabs .Landscape_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: -3.5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: 2rem;
    }
    .nav-tabs .Kids_btn {
        border: none;
        background-color: #ffffff;
        position: relative;
        left: -3.5rem;
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
        top: -1rem;
    }
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 100%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    }
    .footer-inner {
        flex-direction: column;
        align-items: center;
    }
    .footer-div {
        padding: 30px 0px 30px 0px;
    }
    .footer_para_div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 10px;
    }
    .footer_para2,
    .footer_para3 {
        width: 73%;
        margin: auto;
        text-align: justify;
        font-size: 0.8em;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 15px;
    }
    .icon p {
        margin-left: 20px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .form-container {
        width: 56%;
    }
    .form-container .opup-header {
        font-size: 21px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 6px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .form-container .form-check-label {
        font-size: 11px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .submit-btn {
        font-size: 16px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .close-btn {
        width: 28px;
        height: 28px;
        font-size: 24px;
        padding-bottom: 6px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
}
@media (max-width: 540px) {
    .gold-div {
        height: 29rem;
    }
    .gold_text {
        top: -2.1rem;
    }
    .text-div .image-box {
        width: 537px;
    }
    .construction-tab {
        display: flex;
        justify-content: center;
        margin-left: -13px;
        margin-top: 20px;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 20px;
        width: 212px;
        color: white;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .para-box .para {
        font-size: 11px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
}
@media (max-width: 430px) {
    .header-div {
        width: 100%;
    }
    .gold-div {
        width: 100%;
        height: 23rem;
    }
    .standerd {
        gap: 1rem;
        position: absolute;
        top: 10.5rem;
        right: -9.1rem;
    }
    .gold_text {
        position: relative;
        top: -2rem;
        right: 0.3rem;
        width: 94%;
    }
    .build img {
        width: 95%;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 18.4rem;
        right: -7.7rem;
        width: 66%;
    }
    .text-box .txt1 {
        font-size: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-right: 29px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .text-div {
        row-gap: 0px;
    }
    .text-div .image-box {
        width: 374px;
    }
    .had {
        font-size: 18px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .para-box .para {
        font-size: 9px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .slider2-div {
        height: 343px;
    }
    .nav-tabs .Driveway_btn,
    .nav-tabs .Gymnasium_btn,
    .nav-tabs .Swimming_btn,
    .nav-tabs .Luxuirous_btn,
    .nav-tabs .Badminton_btn,
    .nav-tabs .Landscape_btn,
    .nav-tabs .Community_btn,
    .nav-tabs .Kids_btn {
        font-size: 14px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .right-div {
        position: relative;
        right: 3rem;
    }
    .footer_img {
        width: 50%;
    }
    .icon {
        padding-right: 12px;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 20px;
        width: 163px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .construction-tab {
        display: flex;
        justify-content: center;
        margin-left: -14px;
        margin-top: 20px;
    }
    .form-container {
        width: 74%;
    }
    .form-container .form-check-label {
        font-size: 10px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
}
@media (max-width: 414px) {
    .gold-div {
        width: 100%;
        height: 22.6rem;
    }
    .text-box .txt1 {
        font-size: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-right: 29px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .para-box .para {
        font-size: 8px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .form-container {
        width: 69%;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 6px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .submit-block {
        width: 100%;
        padding: 19px 0 0 0;
    }
    .form-container .form-check-label {
        font-size: 8px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .submit-btn {
        font-size: 16px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .form-container .opup-header {
        font-size: 21px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .close-btn {
        width: 28px;
        height: 28px;
        font-size: 24px;
        padding-bottom: 6px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 9px;
        font-size: 20px;
        width: 158px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .construction-tab {
        display: flex;
        justify-content: center;
        margin-left: -13px;
        margin-top: 20px;
    }
}
@media (max-width: 412px) {
    .header-div {
        width: 100%;
    }
    .gold-div {
        width: 100%;
        height: 23rem;
    }
    .standerd {
        gap: 1rem;
        position: absolute;
        top: 10.5rem;
        right: -9.1rem;
    }
    .gold_text {
        position: relative;
        top: -1.9rem;
        right: 0.9rem;
        width: 94%;
    }
    .build img {
        width: 95%;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 18.3rem;
        right: -7.7rem;
        width: 70%;
    }
    .text-box .txt1 {
        font-size: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-right: 29px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .text-div {
        row-gap: 0px;
    }
    .text-div .image-box {
        width: 374px;
    }
    .had {
        font-size: 18px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .para-box .para {
        font-size: 8px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .nav-tabs .Driveway_btn,
    .nav-tabs .Gymnasium_btn,
    .nav-tabs .Swimming_btn,
    .nav-tabs .Luxuirous_btn,
    .nav-tabs .Badminton_btn,
    .nav-tabs .Landscape_btn,
    .nav-tabs .Community_btn,
    .nav-tabs .Kids_btn {
        font-size: 14px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .right-div {
        position: relative;
        right: 3rem;
    }
    .footer_img {
        width: 50%;
    }
    .icon {
        padding-right: 5px;
    }
    .construction-tab {
        margin-left: -16px;
    }
    .menu1 button {
        margin-left: 14px;
        font-size: 20px;
        width: 142px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .slider2-div {
        height: 320px;
    }
}
@media (max-width: 390px) {
    .gold-div {
        width: 100%;
        height: 22.5rem;
    }
    .gold_text {
        position: relative;
        top: -1.3rem;
        right: 0.9rem;
        width: 94%;
    }
    .form-container {
        width: 74%;
    }
    .form-container .form-check-label {
        font-size: 9px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
}
@media (max-width: 360px) {
    .gold-div {
        height: 22rem;
    }
    .standerd {
        gap: 1rem;
        position: absolute;
        top: 11.5rem;
        right: -9rem;
    }
    .gold_text {
        top: -1rem;
        right: 0.5rem;
    }
    .cap-div .siri {
        top: 18.8rem;
        right: -8rem;
        width: 70%;
    }
    .text-div {
        row-gap: 0;
    }
    .text-div .image-box {
        width: 330px;
    }
    .text-box .txt1 {
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-right: 18px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .had {
        font-size: 17px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .para-box .para {
        font-size: 7px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .header-div .logo {
        position: absolute;
        left: 15px;
    }
    .slider2-div {
        height: 258px;
    }
    .nav-tabs .Driveway_btn,
    .nav-tabs .Gymnasium_btn,
    .nav-tabs .Swimming_btn,
    .nav-tabs .Luxuirous_btn,
    .nav-tabs .Badminton_btn,
    .nav-tabs .Landscape_btn,
    .nav-tabs .Community_btn,
    .nav-tabs .Kids_btn {
        font-size: 14px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .construction_prev_arrow {
        left: 39%;
    }
    .footer_img {
        width: 59%;
        margin: auto;
    }
    .footer_para2,
    .footer_para3 {
        width: 70%;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .icon {
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        justify-content: normal;
    }
    .form-container {
        width: 73%;
        height: 52%;
    }
    .form-container .opup-header {
        font-size: 20px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 6px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .form-container .form-check-label {
        font-size: 7px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .submit-btn {
        font-size: 12px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .close-btn {
        width: 34px;
        height: 34px;
        font-size: 22px;
        padding-bottom: 3px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 10px;
        font-size: 17px;
        width: 134px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .construction-tab {
        margin-left: -11px;
        margin-top: 20px;
    }
}
@media (max-width: 344px) {
    .gold-div {
        height: 21.9rem;
    }
    .gold_text {
        top: -0.6rem;
        right: 0.5rem;
    }
    .text-box .txt1 {
        font-size: 9px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .submit-btn {
        font-size: 30px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .form-container {
        width: 73%;
        height: 45%;
    }
    .close-btn {
        width: 34px;
        height: 34px;
        font-size: 22px;
        padding-bottom: 6px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 10px;
        font-size: 17px;
        width: 128px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
}
@media (min-width: 577px) {
    .standerd {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 6rem;
        position: absolute;
        top: 9.5rem;
        right: -10rem;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 18.8rem;
        right: -6rem;
    }
    .gold_text {
        width: 100%;
        position: relative;
        top: -3.4rem;
        right: 6.2rem;
        animation: goldText-img-lineUp 5s ease-in-out;
    }
    .gold-div {
        width: 100%;
        height: 30rem;
        background-color: rgb(243, 223, 198);
        position: relative;
    }
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 55%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 100%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    }
}
@media (min-width: 768px) {
    .header-div {
        position: fixed;
    }
    .standerd {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 4rem;
        position: absolute;
        top: 13.5rem;
        right: -10rem;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 28.8rem;
        right: -5rem;
        width: 64%;
    }
    .gold_text {
        width: 100%;
        position: relative;
        top: -2.9rem;
        right: 3.7rem;
        animation: goldText-img-lineUp 5s ease-in-out;
    }
    .gold-div {
        width: 100%;
        height: 40rem;
        background-color: rgb(243, 223, 198);
        position: relative;
    }
    .text-box .txt1 {
        font-size: 12px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 15px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .text-div .image-box {
        width: 573px;
    }
    .para-box .para {
        font-size: 14px !important;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .span-img {
        margin-left: 0;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 21px;
        width: 139px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .construction-tab {
        display: flex;
        justify-content: center;
        margin-left: -16px;
        margin-top: 20px;
    }
    .nav-tabs .Driveway_btn {
        left: 4rem;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .nav-tabs .Gymnasium_btn {
        left: -1.4rem;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .nav-tabs .Swimming_btn {
        right: -0.6rem;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .main-block .bg2_div img {
        width: 450px;
        height: 450px;
    }
    .slider2-div img {
        max-width: 400px !important;
        max-height: 80%;
    }
    .slider3-div {
        width: 100% !important;
    }
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 91%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    }
    .construction_next_arrow {
        right: 46%;
    }
    .footer_para_div {
        width: 75%;
        margin-left: 10px;
    }
    .footer_para2 {
        font-size: 12px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .footer_para3 {
        font-size: 12px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .form-container {
        width: 57%;
        top: 13%;
        height: 49%;
    }
    .form-container .opup-header {
        font-size: 33px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 14px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .submit-btn {
        font-size: 30px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .close-btn {
        padding-bottom: 4px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
}
@media (min-width: 820px) {
    .header-div {
        position: fixed;
    }
    .standerd {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 4rem;
        position: absolute;
        top: 13.5rem;
        right: -10rem;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 28.8rem;
        right: -5rem;
        width: 64%;
    }
    .gold_text {
        width: 100%;
        position: relative;
        top: -3.9rem;
        right: 3.7rem;
        animation: goldText-img-lineUp 5s ease-in-out;
    }
    .gold-div {
        width: 100%;
        height: 40rem;
        background-color: rgb(243, 223, 198);
        position: relative;
    }
    .text-box .txt1 {
        font-size: 12px;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .text-box .txt2 {
        font-size: 15px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .text-div .image-box {
        width: 573px;
    }
    .para-box .para {
        font-size: 14px !important;
        font-family: "Californian FB", "Times New Roman", Times, serif;
    }
    .span-img {
        margin-left: 0;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 24px;
        width: 139px;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .nav-tabs .Driveway_btn {
        left: 2rem;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .nav-tabs .Gymnasium_btn {
        left: -0.4rem;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .nav-tabs .Swimming_btn {
        right: -0.4rem;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .main-block .bg2_div img {
        width: 450px;
        height: 450px;
    }
    .slider2-div img {
        max-width: 80%;
        max-height: 80%;
    }
    .slider3-div {
        width: 100% !important;
    }
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 91%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
        font-family: "Californian FB Bold", "Times New Roman", Times, serif;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    }
    .footer_para2 {
        font-size: 12px;
    }
    .footer_para3 {
        font-size: 12px;
    }
    .form-container {
        width: 61%;
        top: 8%;
        height: 48%;
    }
    .form-container .opup-header {
        font-size: 36px;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 18px;
    }
    .submit-btn {
        font-size: 30px;
    }
}
@media (min-width: 853px) {
    .header-div {
        position: fixed;
    } /*work here*/
    .standerd {
        gap: 4rem;
        position: absolute;
        top: 11.5rem;
        right: -10rem;
    }
    .cap-div .siri {
        top: 28.8rem;
        right: -5rem;
        width: 58%;
    }
    .gold_text {
        width: 100%;
        position: relative;
        top: -2.9rem;
        right: 3.1rem;
    }
    .gold-div {
        width: 100%;
        height: 40rem;
        background-color: rgb(243, 223, 198);
        position: relative;
    }
    .text-box .txt1 {
        font-size: 12px;
    }
    .text-box .txt2 {
        font-size: 15px;
    }
    .text-div .image-box {
        width: 573px;
    }
    .para {
        font-size: 14px !important;
    }
    .span-img {
        margin-left: 0;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 21px;
        width: 139px;
    }
    .nav-tabs .Driveway_btn {
        left: 2rem;
    }
    .nav-tabs .Gymnasium_btn {
        left: -0.4rem;
    }
    .nav-tabs .Swimming_btn {
        right: -0.4rem;
    }
    .main-block .bg2_div img {
        width: 450px;
        height: 450px;
    }
    .slider2-div img {
        max-width: 80%;
        max-height: 80%;
    }
    .slider3-div {
        width: 100% !important;
    } /*circle secrion*/
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 91%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    }
    .construction_next_arrow {
        right: 46%;
    }
    .footer_para_div {
        width: 75%;
        margin-left: 41px;
    }
    .footer_para2 {
        font-size: 12px;
    }
    .footer_para3 {
        font-size: 14px;
    }
    .form-container {
        width: 59%;
        top: 12%;
        height: 45%;
    }
    .form-container .opup-header {
        font-size: 32px;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 17px;
    }
    .submit-btn {
        font-size: 30px;
    }
}
@media (min-width: 912px) {
    .standerd {
        gap: 4rem;
        position: absolute;
        top: 9.5rem;
        right: -9rem;
    }
    .gold_text {
        width: 100%;
        position: relative;
        top: -3.9rem;
        right: 2.7rem;
    }
    .cap-div .siri {
        top: 27.8rem;
        right: -5rem;
        width: 58%;
    }
    .container,
    .container-md,
    .container-sm {
        max-width: auto;
    }
    .right-div {
        right: 1rem;
        top: -3rem;
    }
    .left-div {
        left: 1rem;
        top: -3rem;
    }
    .nav-tabs .Driveway_btn {
        left: 3rem;
    }
    .nav-tabs .Gymnasium_btn {
        left: -1.4rem;
    }
    .form-container {
        width: 66%;
        top: 8%;
        height: 43%;
    }
    .form-container .opup-header {
        font-size: 35px;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 14px;
    }
    .submit-btn {
        font-size: 30px;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 21px;
        width: 139px;
    }
} /* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .header-div {
        position: fixed;
    }
    .standerd {
        width: 100%; /* border: 1px solid black; */
        display: flex;
        justify-content: end;
        align-items: center; /* gap: 20rem; */
        gap: 7rem;
        position: absolute;
        top: 9rem;
        right: -12rem;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 29rem;
        right: -1rem;
        width: 48%;
    }
    .gold_text {
        position: relative;
        top: -2.9rem;
        right: 7.8rem;
        animation: goldText-img-lineUp 5s ease-in-out;
    }
    .text-div .image-box {
        width: 675px;
    }
    .text-box .txt1 {
        font-size: 18px;
    }
    .text-box .txt2 {
        font-size: 18px;
        font-weight: 600;
    }
    .para {
        font-size: 18px !important;
    } /*circle section*/
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 35%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 100%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    } /* .slider2-div img {    max-width: 80%;    max-height: 80%;  } */
    .footer_img {
        /* width: 34%; */
        margin-left: 35px;
    }
    .menu button {
        font-size: 20px !important;
    }
    .form-container {
        width: 53%;
        top: 8%;
        height: 85%;
    }
    .form-container .opup-header {
        font-size: 39px;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 17px;
    }
    .submit-block {
        padding: 39px 0 0 0;
    }
    .form-container .form-check-label {
        font-size: 16px;
    }
    .submit-btn {
        font-size: 31px;
    }
}
@media (min-width: 1024px) {
    .header-div {
        position: fixed;
    }
    .standerd {
        width: 95%;
        gap: 9rem;
        position: absolute;
        top: 10rem;
        right: -9rem;
    }
    .cap-div .siri {
        top: 27rem;
        right: -1rem;
        width: 53%;
    }
    .gold_text {
        position: relative;
        top: -4.4rem;
        right: 6rem;
    }
    .text-div .image-box {
        width: 675px;
    }
    .text-box .txt1 {
        font-size: 18px;
    }
    .text-box .txt2 {
        font-size: 18px;
        font-weight: 600;
    }
    .para {
        font-size: 18px !important;
    } /*circle section*/
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 35%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 100%;
    }
    .circle-image > img:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    }
    .nav-tabs .Driveway_btn {
        left: 4rem;
    }
    .footer_img {
        /* width: 34%; */
        margin-left: 35px;
    }
    .menu button {
        font-size: 20px !important;
    }
    .form-container {
        width: 118%;
        top: 8%;
        height: 34%;
    }
    .form-container .opup-header {
        font-size: 39px;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 17px;
    }
    .submit-block {
        padding: 0px 0 0 0;
    }
    .form-container .form-check-label {
        font-size: 16px;
    }
    .submit-btn {
        font-size: 31px;
    }
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 27px;
        width: 190px;
    }
} /* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .standerd {
        width: 100%; /* border: 1px solid black; */
        display: flex;
        justify-content: center;
        align-items: center; /* gap: 20rem; */
        gap: 8rem;
        position: absolute;
        top: 10rem;
    }
    .build img {
        width: 96%;
        animation: build-img-lineUp 2s ease-in-out;
    }
    .gold_text {
        position: relative;
        top: -5.7rem;
        right: 5.7rem;
        animation: goldText-img-lineUp 5s ease-in-out;
        width: 92%;
    }
    .cap-div .siri {
        position: absolute;
        display: flex;
        justify-content: center;
        top: 26.8rem;
        right: 3rem;
        width: 46%;
    } /*circle section*/
    .circle-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .circle-div {
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .circle-image {
        width: 100%;
        transition: all 1s linear;
    }
    .circle-image > img {
        width: 100%;
    }
    .circle-image:hover {
        transform: rotateY(180deg);
    }
    .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1px;
        border: none;
        background-color: white;
    }
    .circle-btn > p {
        margin: 0;
        padding: 0;
        color: var(--color);
        cursor: pointer;
    }
    .circle-btn > i {
        font-size: 25px;
        color: var(--color);
        cursor: pointer;
    } /* .menu button {    font-size: 14px !important;  } */
    .menu1 button {
        border: none;
        background-color: rgb(183, 179, 179);
        margin-left: 12px;
        font-size: 27px;
        width: 228px;
    }
    .form-container {
        width: 95%;
        background: #fefbea;
        border-radius: 8px;
        overflow: hidden;
        padding: 40px;
        margin: 0;
        border: none;
        outline: none;
        text-decoration: none;
        max-width: 480px;
        position: relative;
        background-image: url(./Links/popup-bg.png);
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 80px;
        margin: auto;
        top: 8%;
        height: auto;
    }
    .form-container .form-check-label {
        font-size: 14px;
        font-family: var(--paragraph-font);
        color: var(--header-text-color);
    }
    .form-container .form-check {
        padding-left: 30px;
    }
    .form-container input[type="checkbox"],
    .form-container input[type="radio"] {
        width: 24px;
        height: 24px !important;
        border-radius: 6px;
        margin-left: -30px;
    }
    .submit-btn {
        font-size: 28px;
    }
    .submit-block {
        padding: 30px 0 0 0;
    }
}
@media (min-width: 1280px) {
    .standerd {
        gap: 8rem;
        position: absolute;
        top: 9rem;
    }
    .cap-div .siri {
        top: 25.8rem;
        right: 3rem;
        width: 46%;
    }
}
section#plan .slick-slider {
    margin-top: 40px;
}
section#plan .slick-slidersection#plan .slick-slider img {
    max-width: 400px !important;
    margin: 0 auto;
}
.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"] {
    padding: 10px;
}
body {
    overflow-x: hidden !important;
}
.form-container .error {
    border-color: #fe0000 !important;
}
.form-container .error-massage {
    width: 100% !important;
    display: block;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    text-align: left;
    color: #fe0000 !important;
    font-size: 11px;
    font-weight: 300;
    max-width: 100%;
    border: none;
    max-width: 100%;
    position: relative;
    margin-top: -8px !important;
}
#getintouch .input-group {
    margin-bottom: 10px;
} /*//////*/
.construction-tabblock {
    width: 100%;
    padding: 30px 0 10px 0;
    max-width: 960px;
    margin: 0 auto;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
}
.construction-tabblock .construction-tabmenu-block {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    position: static;
}
.construction-tabblock .construction-tabmenu-block .construction-tab {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}
.construction-tabblock .construction-tabmenu-block .construction-tab li {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    text-align: center;
}
.construction-tabblock .construction-tabmenu-block .construction-tab button {
    border: none;
    background-color: rgb(183, 179, 179);
    margin-left: 0;
    font-size: 24px;
    width: 100%;
    border-radius: 0 !important;
    color: #ffffff;
}
.construction-tabblock .construction-tabmenu-block .construction-tab button:hover {
    background-color: var(--btn_color);
    color: #ffffff;
}
.construction-tabblock .construction-tabmenu-block .construction-tab button.active {
    background-color: var(--btn_color) !important;
    color: #ffffff !important;
}
.circle-div {
    position: relative;
    overflow: visible;
}
.circle-textblock {
    display: inline-block;
    transition: all 2s;
    width: 100%;
    position: static;
    bottom: -150px;
    background: #ffffff;
    padding: 15px;
    z-index: 999;
    left: 0;
    font-size: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin: 10px 0;
    display: none;
}
.circle-textblock.active {
    height: auto !important;
    display: block;
}
.entertainment .circle-textblock {
    bottom: -230px;
    height: 230px;
}
.gold-div {
    background-color: #ebe4dc !important;
}
.form-container .submit-block .btn_custom_brochure_submit {
    position: relative;
    background-color: rgb(175, 151, 88) !important;
    color: white;
    border-radius: 20px;
    font-size: 20px;
    padding: 0 30px 0 30px;
    border: 1px solid transparent;
}
.form-container .submit-block .btn_custom_brochure_submit:hover {
    border: 1px solid black !important;
    background-color: #ffffff !important;
    color: #000 !important;
}
.gold_text {
    z-index: 9;
}
.header-div {
    z-index: 999;
}
.fancybox-button.fancybox-button--thumbs {
    display: none !important;
} /*////responive-fixed///*/
.fancybox-toolbar {
    z-index: 99999;
}
iframe {
    max-width: 100% !important;
}
.circle-textblock .circle-text-innerbox {
    text-align: center;
    height: 0px;
    overflow: hidden;
    transition: all 5s;
}
.circle-textblock.active .circle-text-innerbox {
    height: auto;
}
#getintouch .error {
    border-color: #fe0000 !important;
}
#getintouch .error-massage {
    width: 100% !important;
    display: block;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    text-align: left;
    color: #fe0000 !important;
    font-size: 11px;
    font-weight: 300;
    max-width: 100%;
    border: none;
    max-width: 100%;
    position: relative;
    margin-top: -8px !important;
}
.thankyou-popup-mainblock {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.thankyou-popup-mainblock .thankyou-popup-innerbox {
    width: 520px;
    max-width: 100%;
    padding: 90px 50px;
    text-align: center;
    color: green;
    font-size: 16px;
    font-weight: bold;
    background-color: #ffffff;
    border-radius: 10px;
    line-height: 1.5;
    position: relative;
}
.contact-infobox {
    width: 100%;
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}
.contact-infobox a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    transition: all 0.3s;
}
.contact-infobox a:hover {
    text-decoration: none;
}
.contact-infobox .info-list {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    list-style: none;
}
.contact-infobox .info-list li {
    width: 100%;
    padding: 5px 0;
    margin: 0;
    border: none;
    outline: none;
    list-style: none;
    font-family: "Californian FB", "Times New Roman", Times, serif;
    font-size: 12px;
    line-height: 1;
    color: #212529;
    font-weight: 300;
}
.contact-infobox .icon-box {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Californian FB", "Times New Roman", Times, serif;
    font-size: 12px;
    line-height: 1;
    color: #212529;
    font-weight: 300;
}
.contact-infobox .icon-box .icon {
    width: 24px;
    font-size: 12px;
    padding: 0 0 2px 0;
    margin: 0;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-infobox .icon-box .icon i {
    display: inline-block;
    padding: 4px 0 0 0;
    margin: 0;
    font-size: 12px;
    color: #212529;
}
.contact-infobox .icon-box .text {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #212529;
    font-weight: 300;
}
@media only screen and (max-width: 1024px) {
    .header-div {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999 !important;
    }
    /*.gold-div {
        overflow-x: hidden;
    }*/
    .container,
    .container-md,
    .container-sm {
        height: auto;
    }
    .main-block .bg2_div {
        padding: 10px 0;
        margin: 0 auto;
        border: none;
        outline: none;
        text-align: center;
        display: flex;
        justify-content: center;
        align-content: center;
    }
    .main-block .bg2_div img {
        margin: 30px;
        padding: 30px;
    }
    .nav-box .nav-tabs .menu button {
        font-size: 14px;
    }
    .nav-box .right-div .nav-tabs {
        top: 10rem;
    }
    .circle-container {
        padding-top: 40px;
    }
    .nav-box .nav-tabs li button {
        color: #000000;
    }
    .nav-box .nav-tabs li button.selected-btn {
        color: var(--btn_color);
        font-weight: bold !important;
    }
}
@media only screen and (max-width: 767px) {
    iframe {
        max-width: 100% !important;
    }
    .construction-tabblock .construction-tabmenu-block .construction-tab {
        flex-wrap: wrap;
    }
    .construction-tabblock .construction-tabmenu-block .construction-tab li {
        width: auto;
    }
    .construction-tabblock .construction-tabmenu-block .construction-tab button {
        font-size: 12px;
        width: 100% !important;
        padding: 5px 10px;
        max-width: 100% !important;
        margin: 0 !important;
        min-width: 100%;
    }
    .slider-1 {
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }
    .slider-2 {
        flex-wrap: wrap;
    }
    .container .card {
        height: auto !important;
        padding: 0;
        margin: 5px 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    .header-div {
        width: 100%;
        max-width: 100vw;
    }
    .nav-box {
        flex-wrap: wrap;
    }
    .nav-box ul li button {
        position: static !important;
    }
    .nav-box .menu {
        list-style-type: none;
        margin-bottom: 60px;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        outline: none;
    }
    .slider2-div {
        height: auto;
    }
    .footer_para_container {
        flex-wrap: wrap;
    }
    .footer_para_div {
        width: 100%;
        padding: 0 0 20px 0;
        margin: 0;
    }
    .icon {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .input-div .row .col {
        width: 100%;
        clear: both;
    }
    .left-div,
    .right-div {
        position: static !important;
    }
    .main-block .nav-tabs {
        position: static !important;
    }
    .tab-content {
        width: 100%;
        position: static !important;
        padding: 0;
        margin: 0;
        clear: both;
    }
    .nav-box .menu button {
        display: block;
        width: 100%;
        text-align: center;
    }
    .circle-div {
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid #af9758;
    }
    .slider2-div img {
        max-width: 100% !important;
        max-height: inherit !important;
        height: auto !important;
    }
    .nav-tabs {
        border: none !important;
    }
    body {
        overflow-x: hidden !important;
    }
    .main-block .bg2_div {
        padding: 10px 0;
        margin: 0 auto;
        border: none;
        outline: none;
        text-align: center;
        display: flex;
        justify-content: center;
        align-content: center;
    }
    .construction-tabblock .construction-tabmenu-block .construction-tab {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    .construction-tabblock .construction-tabmenu-block .construction-tab li {
        width: auto;
        min-width: 20%;
    }
    .main-block .bg2_div img {
        margin: 15px;
        padding: 15px;
    }
    .circle-container .circle-image {
        display: none;
    }
    .circle-container .circle-div .circle-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        margin: 0;
        border: none;
        outline: none;
        text-decoration: none;
        flex-direction: row !important;
    }
    .circle-container .circle-div .circle-textblock {
        box-shadow: none !important;
        margin: 0;
        padding-top: 0;
        text-align: left;
    }
    .circle-textblock .circle-text-innerbox {
        text-align: left;
    }
    .circle-container .circle-div .circle-btn > i {
        font-size: 19px;
        color: var(--color);
        cursor: pointer;
        transform: rotate(-90deg);
        margin: 10px 5px 0 0;
        transition: all 0.6s;
    }
    .circle-container .circle-div .circle-btn.custom_circle > i {
        transform: rotate(0);
    }
    .underline-container {
        display: none;
    }
    .header-div .logo {
        left: 10px;
    }
    .header-div .menu {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        margin: 0;
    }
    .slick-dotted.slick-slider {
        margin-top: 30px;
    }
    .para-box .para {
        font-size: 0.7em;
        line-height: 1.5;
    }
    .text-box .txt1 {
        font-size: 0.7em;
        line-height: 1.5;
    }
    .download-btn {
        left: -65px;
        font-size: 12px;
        padding: 5px 20px;
    }
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        width: 100%;
        padding-right: 30px !important;
        padding-left: 30px !important;
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
        height: auto !important;
    }
    .text-box {
        height: auto !important;
    }
    .had {
        font-size: 18px;
        text-align: center;
    }
    .gold-div {
        max-width: 100vw;
        overflow: hidden;
    }
    .build img {
        width: 200px;
    }
    .three-img {
        right: 0;
    }
    .gold_text {
        right: 50px;
        width: 110px;
    }
    .standerd {
        right: inherit;
        left: 0;
        width: 100%;
    }
    .cap-div .siri {
        right: 0;
    }
    .text-box .txt2 {
        text-align: left;
        font-size: 0.7em;
        line-height: 1.5;
        padding: 0;
        margin: 0;
        width: 100%;
        justify-content: flex-start;
    }
    .footer_para2,
    .footer_para3 {
        font-size: 0.7em;
        line-height: 1.5;
    }
    .text-box .txt1,
    .text-box .txt2 {
        font-size: 0.7em;
        line-height: 1.5;
        padding: 0 0 10px 0;
        margin: 0;
        text-align: left;
        display: inline-block !important;
        width: 100%;
    }
    .thankyou-popup-mainblock .thankyou-popup-innerbox {
        width: 520px;
        max-width: 90%;
        padding: 70px 20px;
        position: relative;
    }
    .footer_para2,
    .footer_para_div {
        width: 73%;
        margin: auto;
        text-align: justify;
        font-size: 0.8em;
    }
    .footer_para2,
    .footer_para3 {
        width: 100%;
        padding: 10px 0;
        margin: 0;
    }
    .img-animation {
        animation: img_mover 1s ease-in;
    }
    .txt1-animation {
        animation: text1 1s ease-in;
    }
    .txt2-animation {
        animation: text2 1s ease-in-out;
    }
    .footer_para2,
    .footer_para_div p {
        text-align: center !important;
    }
    .footer_para2,
    .footer_para3 {
        text-align: center;
    }
    .contact-infobox .icon-box {
        justify-content: center;
    }
    .contact-infobox .info-list li {
        padding: 0;
    }
    .contact-infobox {
        width: 100%;
        padding: 20px 0 0 0;
    }
    .footer_para2,
    .footer_para_div {
        width: 80%;
    }
    .header-div .logo {
        position: static !important;
    }
    .header-div .menu {
        position: static !important;
    }
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100vw;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
@media (min-width: 1600px) {
              .cap-div .siri {
        top: 23.8rem;
        right: 9rem;
        width: 46%;
    }
}
@media (min-width: 1900px) {
                  .cap-div .siri {
        top: 22.8rem;
        right: 16rem;
        width: 38%;
    }
}
@media (min-width: 2100px) {
              .cap-div .siri {
        top: 26.8rem;
        right: 21rem;
        width: 34%;
    }
    .build img {
        width: 100%;
    }
            .standerd {
        gap: 10rem;
        position: absolute;
        top: 10rem;
    }
        .gold-div {
        height: 43rem;
    }
}

.slider_top {

      position: absolute;
    top: 0;
}
.slider_top img{

      width: 94.5% !important;
}
.slider_top .master_next_arrow {

          display: none !important;
}
.slider_top .master_prev_arrow  {

          display: none !important;
}

.cont {
  margin: 20px auto;
  display: block;
  width: 700px;
  height: 420px;
      position: absolute;
    top: 0;
  overflow: hidden;
}

.image {
  display: flex;
  width: 2800px; /* 4 images, each 700px */
  animation: slide 8s infinite;
}

.image img {
  width: 700px;
  height: 420px;
  object-fit: cover;
}

/* Keyframes for automatic sliding */
@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(-700px); }
  50% { transform: translateX(-1400px); }
  75% { transform: translateX(-2100px); }
  100% { transform: translateX(0); }
}
.home_section
{
   background-color: #ebe4dc !important;
    padding: 40px;
    padding-top: 70px;
}
.cls_sel img
{
   width: 100%;
}
.cls_r
{
    justify-content: center;
    align-items: center;
}
/*.m-img
{
    margin-top: 50px;
}*/
@media only screen and (max-width: 1024px) {
  
.slider_top img {
    width: 93% !important;
}
.m-img img
    {
        width: 100% !important;
    }

}
@media only screen and (max-width: 991px) {
    .m-img img
    {
        width: 75% !important;
    }
    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto
    {
        width: 50% !important;
    }
    /*.m-img {
    margin-top: 30px;
}*/
.slider_top img {
    width: 90.9% !important;
}
}
@media only screen and (max-width: 767px) {
  
.slider_top img {
    width: 99.5% !important;
}
.home_section {
    padding: 0px;
    padding-top: 80px;
    padding-bottom: 5px;
}
.width_cls
{
    width: 40% !important;
    padding-right: 0px !important;
}
.pd_0
{
    padding: 0px !important;
    width: 60% !important;
}
    .m-img img {
        width: 100% !important;
    }
}
.slick-slide {
    float: left;
    height: auto !important;
    min-height: 1px;
}
/*@media only screen and (max-width: 570px) {
  
.slider_top img {
    width: 86.5% !important;
}
}
@media only screen and (max-width: 500px) {
  
.slider_top img {
    width: 83.5% !important;
}
}
@media only screen and (max-width: 430px) {
  
.slider_top img {
    width: 80.5% !important;
}
}
@media only screen and (max-width: 412px) {
  
.slider_top img {
    width: 79.5% !important;
}
}
@media only screen and (max-width: 390px) {
  
.slider_top img {
    width: 799.5% !important;
}
}
@media only screen and (max-width: 360px) {
  
.slider_top img {
    width: 99.5% !important;
}
}

@media only screen and (max-width: 344px) {
  
.slider_top img {
    width: 99.5% !important;
}
}*/


    .videos_section
{
    padding-top: 70px;
}
.home {
    height: 91vh;
    position: relative;
}
video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 991px) {
    video {
    position: relative;
    height: auto;
}
.home {
    height: auto;
}
}
.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(Hero_sec/LODING.gif); background-size:50px;}
.animate.pop {
  -webkit-animation-name: animate-pop;
          animation-name: animate-pop;
  -webkit-animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
          animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
button:focus {
    outline: none;
}
.tel_mail
{
	    text-align: right;
    width: 90%;
    display: block;
}
a {
    color: #242424;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #0056b3;
    text-decoration: none;
}
b, strong {
    font-weight: 500;
}
.tel_mail_2
{
	    padding: 10px 20px;
    padding-right: 0px;
    background: #1c1819;
    display: none;
}
.tel_mail_2 h5
{
	color: #fff;
}
.tel_mail_2 a
{
	padding:0px;
	font-size: 15px;
	margin-bottom: 5px;
}
.tel_mail_2 a i
{
	margin-right: 5px;
}
.social_icon
{
	display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
.footer-div {
    width: 100%;
    /* height: 250px; */
    background: linear-gradient(45deg, #d6bc6f, #a8822e); /* Replaced background-color with gradient */
    margin-top: 90px;
    padding: 65px 0 65px 0;
    padding-bottom: 0px;
}
.cls_p p
{
	width: 100%;
    text-align: center;
    margin-top: 20px;
    border-bottom: 1px solid #00000040;
    padding-bottom: 10px;	
}
.copy_right
{
	    text-align: center;
    padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
	.tel_mail_2
{
	 display: block;
}
.tel_mail
{
	display: none;
}
}


@media only screen and (max-width: 991px) {
.master_prev_arrow {

    display: none !important;
}
.master_next_arrow {

    display: none !important;
}
.prev_arrow{

    display: none !important;
}
.next_arrow{

    display: none !important;
}

.fancybox-button--download {
        display: inline-block !important;
    }
}


.animate.pop {
  -webkit-animation-name: animate-pop;
  animation-name: animate-pop;
  -webkit-animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes animate-pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes animate-pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


.custom_head{
	
	 display: none !important;
}