
@font-face {
    font-family: 'regular';
    src: url(./fonts/Helvetica.woff2);
  }
  @font-face {
    font-family: 'bold';
    src: url(./fonts/Helvetica-Bold.woff2);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'regular';
    scroll-behavior: smooth;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    /* background-color: var(--lightbg);
    3 */
  }
  
  *::selection {
    background-color: transparent;
    color: var(--maincolor);
  }
  
  body::-webkit-scrollbar{
      background-color: #dadada;
      width: 5px;
      z-index: 2;
  }
  
  body::-webkit-scrollbar-thumb{
      background: var(--green);
      border-radius: 50px;
  }
  
  
  :root {
    --maincolor: #E77B25;
    --maincolor2:#E5F0F0;
    --green: #092F00;
    --green2: #32A94B;
    --green2light: #32a94c89;
    --red: #662629;
    --red2: #ca8d90;
    --gold: #d2ae6d;
    --gold2: #e8c877;
    --lightbg: #E5F0F0;
    --lightbgtext: #0000009c;
    --bordertop: #dee2e6;
    --white: #fff;
    --transparent: #ffffffac;
    --desclaimertxt: #737278;
    --nav_bg: #ffffff96;
    --white2: #ffffffc0;
    --light: #f5f5f5;
    --black: #020d26;
    --black2: #000000c5;
    --blacktransparent: #00000062;
    --blacktransparent2: #0000008f;
    --collapsetransparent: #ffffff7a;
  }
  
  .regular {
    font-family: 'regular';
  }
  
  .bold {
    font-family: 'bold';
  }
  
  .maincolor {
    color: var(--maincolor);
  }

  .maincolor2 {
  color: var(--maincolor2);
  }

  .green {
    color: var(--green);
  }

  .green2 {
    color: var(--green);
  }

  .gold {
    color: var(--gold);
  }

  .footertxt {
    color: var(--footertxt);
  }

  .transparent {
    color: var(--transparent);
  }

  .letter_spacing {
    letter-spacing: .1rem;
  }


  /* .main_wrapper {
    width: 100%;
    background-color: var(--white);
    position: relative;
    z-index: 10;
  } */

  #main {
    position: relative;
    z-index: 10;
    background-color: var(--lightbg);
  }

  .active1 {
    position: relative;
  }

  .active1::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background-color: var(--maincolor);
    bottom: 0;
    left: 0;
  }

    /*------FIXED---OPTIONS---START---*/

    .left_options_main {
      width: fit-content;
      position: sticky;
      top: 14.7%;
      transform: translateY(-14.7%);
      z-index: 99;
      overflow: hidden;
    }
  
    .left_option1 {
      width: fit-content;
      background-color: var(--green2);
      color: var(--lightbg);
      padding: .5rem 1rem;
      text-transform: uppercase;
      /* border-top-right-radius: 1.5vw; */
      transition: all ease .5s;
      transform: translateX(-73%);
      z-index: 99;
    }
  
    .left_option1:hover {
      transform: translateX(0);
    }
  
    .left_option2 {
      width: fit-content;
      background-color: var(--green2);
      color: var(--lightbg);
      padding: .5rem 1rem;
      text-transform: uppercase;
      /* border-bottom-right-radius: 1.5vw; */
      transition: all ease .5s;
      transform: translateX(-77.8%);
      z-index: 99;
    }
  
    .left_option2:hover {
      transform: translateX(0);
    }
    
    /*------FIXED---OPTIONS---END---*/

  /*------NAVBAR---START---*/

  /* .nav_bg {
    background-color: var(--transparent);
    backdrop-filter: blur(10px);
  } */

  header {
    width: 100%;
    padding: 1rem 3rem;
    margin: auto;
    background-color: var(--nav_bg);
  }

  /* header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--transparent);
    top: 0;
    left: 0;
    z-index: -1;
  } */
  
  nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
  }
  
  .logo {
    width: 7%;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .nav_links {
    position: relative;
  }

  .urban_ville_rera {
    background-color: var(--green2light);
    border-radius: .5rem;
    color: var(--green);
    padding: .5rem 1rem;
    transition: all ease .5s;
  }

  .urban_ville_rera::selection {
    background-color: var(--white);
    color: var(--green);
  }
  
  .menu-toggle {
    width: 35px;
    height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 12;
  }
  
  .line {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--maincolor);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
  }
  
  .menu-toggle:hover .line::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .animated-section {
    position: fixed;
    top: -55vh;
    right: 0;
    width: 30%;
    height: 55vh;
    background: var(--black2);
    /* backdrop-filter: blur(10px); */
    z-index: 9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px;
  }
  
  .logo-container {
    width: 150px;
    margin-bottom: 50px;
  }
  
  .logo-container img {
    width: 100%;
    height: auto;
  }
  
  .menu-container {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: start;
    justify-content: start;
    /* flex-direction: column; */
    border-top: 1px solid var(--blacktransparent);
    border-bottom: 1px solid var(--blacktransparent);
  }
  
  .menu_links {
    width: 40%;
    border-right: 1px solid var(--blacktransparent);
    /* margin: 1.5rem 0; */
  }
  
  .menu-item {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--white);
    margin: .5rem 0;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
  }

  .menu_right_img {
    width: 60%;
    height: 100%;
    margin: 1.5rem 0;
    overflow: hidden;
    position: relative;
    /* background: url('images/Banner-2.jpg')no-repeat; */
    background-size: cover;
    z-index: 2;
  }

  /* .menu_right_img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--black2);
    top: 0;
    left: 0;
    z-index: -1;
  } */

  /* .right_img {
    width: 50%;
  } */

  .menu_right_img img {
    transition: all 1.5s ease;
  }

  .menu_right_img img:hover {
    transform: scale(1.1);
  }
  
  /* Cross Animation */
  .menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
    position: absolute;
    background-color: var(--white);
  }
  
  .menu-toggle.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
    position: absolute;
    background-color: var(--white);
  }
  
  .menu-toggle.active .menu_section {
    top: 0;
  }
  
  .links {
    width: fit-content;
    position: relative;
    text-transform: uppercase;
  }

  .links::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
  }
  
  .links:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .menu_links .active1 {
    width: fit-content;
    position: relative;
  }

  .menu_links .active1::after{
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 0;
    left: 0;
  }

  .font_size h5 {
    font-size: 1rem;
  }

  .font_size p {
    font-size: 1rem;
  }
  
  /*------NAVBAR---END-----*/

  
  /*------BANNER---START---*/

  /* .banner_margin{
    margin-top: 5.5rem;
  } */

  .slide1 {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: url('./images/main_banner_img.jpg')no-repeat center center;
    background-size: 100% 100%;
  }

  .slide2 {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: url('./images/banner_intro.jpg')no-repeat center center;
    background-size: cover;
  }

  .slide3 {
    width: 100%;
    height: 100vh;
    margin: auto;
    /* background: url('./all_plans/casabella_plans/west/west_street_homes.jpg')no-repeat center center; */
    background: url('./images/casabella_images/banner_img2.jpg')no-repeat center center;
    background-size: 100% 100%;
    position: relative;
  }

  .slide4 {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: url('./all_plans/casabella_plans/east/east_street_homes.jpg')no-repeat center center;
    background-size: 100% 100%;
    position: relative;
  }

  .banner_heading {
    width: 12%;
    top: 30%;
    right: 11.5%;
    transform: translate(-11.5%, -30%);
    border-radius: .5rem;
    /* bottom: 3%;
    left: 50%;
    transform: translate(-50%, -3%); */
    /* transform: translateX(-5%); */
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    color: var(--gold);
    border-radius: .7rem;
    padding: .5rem 1rem;
    font-size: 2.5rem;
    transform: translateX(20%);
    opacity: 0;
    transition: all ease .8s;
  }

  .banner_heading2 {
    width: 12%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
    background-color: var(--black2);
    border-radius: .7rem;
    padding: .5rem 1rem;
    
    /* transform: translateX(-5%); */
  }

  .banner_heading2 h1 {
    /* background-color: var(--black2); */
    border-radius: .7rem;
    font-size: 2.5rem;
    color: var(--gold);
    transform: translateX(20%);
    opacity: 0;
    transition: all ease .8s;
  }

  .swiper-slide-active .banner_heading h1 {
    transform: translateX(0);
    opacity: 1;
  }

  .swiper-slide-active .banner_heading2 h1 {
    transform: translateX(0);
    opacity: 1;
  }

  /* .casabella_homes_banner_heading {
    color: var(--lightbg);
    background-color: var(--blacktransparent2);
    padding: .5rem 1rem;
    bottom: 8%;
    left: 50%;
    transform: translate(-50%, -8%);
    transition: all ease .5s;
    overflow: hidden;
  }

  .casabella_homes_banner_heading h5 {
    font-size: xx-large;
    transition: all ease .8s;
    transform: translateX(50%);
    opacity: 0;
  } */
  .casabella_homes_banner_logo {
    width: 15%;
    color: var(--lightbg);
    /* background-color: var(--blacktransparent2);
    padding: .5rem 1rem; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all ease .5s;
    overflow: hidden;
  }

  .casabella_homes_banner_logo img {
    transition: all ease .8s;
    transform: translateX(20%) translateY(-50%);
    opacity: 0;
  }

  .banner_logo {
    width: 25%;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    overflow: hidden;
  }

  .banner_logo img {
    transition: all ease .8s;
    transform: translateX(20%) translateY(-50%);
    opacity: 0;
  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--lightbg);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-slide-active .casabella_homes_banner_logo img {
    transform: translateX(0%) translateY(0);
    opacity: 1;
  }

  .swiper-slide-active .banner_logo img {
    transform: translateX(0%) translateY(0);
    opacity: 1;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    width: auto!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
    bottom: 0!important;
    background-color: var(--green2);
    border-radius: .3rem!important;
    padding: 0rem .5rem!important;
  }

  .swiper-pagination-bullet {
    width: 11px!important;
    height: 5px!important;
    border-radius: .2rem!important;
    transition: width .7s ease;
  }

  .swiper-pagination-bullet-active {
    width: 25px!important;
    border-radius: .2rem!important;
    background-color: var(--lightbg)!important;
  }
 
  .banner_pagination .swiper-pagination {
    height: 15px;
    display: flex;
    align-items: center;
  }
  
  .casabella_homes2 {
    color: var(--lightbg);
    background-color: var(--blacktransparent2);
    padding: .5rem 1rem;
    bottom: 12%;
    left: 50%;
    transform: translate(-50%, -12%);
    transition: all ease .5s;
    margin-bottom: 0;
  }
  
  
  /*---------BANNER---END---------*/

  /*---------ABOUT---START---------*/


  .about_section {
    width: 91%;
    margin: auto;
  }

  .about_container {
    width: 100%;
    border-top: 1px solid var(--blacktransparent);
  }

  .about_title {
    font-size: 2.5rem;
    font-weight: 600;
    transition: all ease .3s;
    overflow: hidden;
  }

  .about_p {
    font-size: 1rem;
    transition: all ease .3s;
  }

  .about_text {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .about_img {
    width: 100%;
    /* height: 50vh; */
  }

  .about_img img {
    scale: 0.5;
    opacity: 0;
  }


  .about_txt {
    width: 91%;
    margin: auto;
  }

  .about_banner_title_box {
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5.5rem;
  }

  .urban_ville_banner {
    margin-top: .5rem;
  }

  .about_banner_title_box p {
    font-size: 1.3rem;
    transition: all ease .3s;
    line-height: 3rem;
  }

  .about_banner_title {
    font-size: 4.5rem;
    transition: all ease .3s;
    overflow: hidden;
  }
  

  /* .about_banner {
    width: 100%;
    height: 100vh;
    background: url('./images/about.jpg')no-repeat center;
    background-size: cover;
  } */

  .parallax-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('./images/about.jpg') no-repeat center;
    background-size: cover;
    will-change: transform;
    transform-origin: center center;
  }

  .parallax-container2 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg2 {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('./images/contact-us.jpg') no-repeat center;
    background-size: cover;
    will-change: transform;
    transform-origin: center center;
  }

  .parallax-container3 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg3 {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('./images/gallery.jpg') no-repeat center;
    background-size: 100% 100%;
    will-change: transform;
    transform-origin: center center;
  }

  .parallax-container4 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg4 {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 115%;
    background: url('./images/entrance_evening.jpg') no-repeat center;
    /* background: url('./all_plans/casabella_plans/east/east_street_homes.jpg') no-repeat center; */
    background-size: 100% 100%;
    will-change: transform;
    transform-origin: center center;
  }

  .parallax-container5 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg5 {
    position: absolute;
    top: -8%;
    left: 0;
    width: 100%;
    height: 110%;
    background: url('./images/banner_intro.jpg') no-repeat center;
    background-size: 100% 110%;
    will-change: transform;
    transform-origin: center center;
  }

  .parallax-container6 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg6 {
    position: absolute;
    top: -12.5%;
    left: 0;
    width: 100%;
    height: 110%;
    background: url('./images/gallery_imgs/OPEN\ SITOUT.jpg') no-repeat center;
    background-size: 100% 100%;
    will-change: transform;
    transform-origin: center center;
  }

  .parallax-container7 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .parallax-bg7 {
    position: absolute;
    top: -12.5%;
    left: 0;
    width: 100%;
    height: 110%;
    background: url('./images/casabella_images/elegant_img2.jpg') no-repeat center;
    background-size: 100% 100%;
    will-change: transform;
    transform-origin: center center;
  }
  
  .about_title {
    width: 80%;
    transition: all ease .3s;
  }

  .about_title_headings {
    overflow: hidden;
  }
  
  .about_title_headings h2 {
    font-size: 6rem;
    line-height: 6rem;
  }

  .who_we_are h2 {
    font-size: 2.5rem;
  }
  
  .about_page_p {
    width: 100%;
  }

  .about_page_p p {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .intro_section {
    width: 100%;
    border-top: 1px solid var(--blacktransparent);
    margin-top: 3rem;
  }

  .commitments_section {
    width: 91%;
    margin: auto;
    position: relative;
  }

  .sticky-section {
    padding-top: 50px;
    overflow: visible;
    min-height: 100vh;
    border-top: 1px solid var(--blacktransparent);
  }

  .sticky-container {
    display: flex;
    gap: 50px;
    width: 100%;
    position: relative;
  }

  .sticky-heading {
    width: 40%;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start; 
    height: fit-content;
  }

  .sticky-heading h2 {
    font-size: 2.5rem;
  }

  .boxes-container {
    width: 40%;
    flex: 1;
  }

  .boxes_main {
    width: fit-content;
  }

  .box {
    width: 50%;
    min-height: 400px;
    border: 1px solid var(--blacktransparent);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
  }

  #box7 {
    width: 49.15%!important;
  }

  .box:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
  }

  .box_img {
    width: 20%;
    /* margin: auto; */
  }
  
  
  /*---------ABOUT---END---------*/


  /*---------LOCATION---START---------*/

  .location_section {
    width: 91%;
    margin: auto;
    border-top: 1px solid var(--blacktransparent);
  }
  
  /*---------LOCATION---END---------*/


  /*---------FEATURED---PROJECTS---TEXT---START---------*/

  .featured_projects_logo {
    width: 15%;
    top: 0;
    left: 0;
  }

  .featured_projects_logo2 {
    width: 15%;
    top: 0;
    left: 0;
  }

  .features_text_bg {
    position: relative;
    background: url('images/new_images/west_villa_type2.jpg')no-repeat top center;
    background-size: cover;
    z-index: 2;
  }
  
  .features_text_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--blacktransparent2);
    top: 0;
    left: 0;
    z-index: -1;
  }

  .features_section {
    width: 91%;
    height: 80vh;
    margin: auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
  }

  .feature_box {
    width: 100%;
    height: 100%;
  }

  .feature_box h2 {
    font-size: 8rem;
    color: var(--white);
  }

  .project_box_main {
    width: 100%;
    height: 100%;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    gap: 10px;
  }

  .project_slider {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 2px;
  }

  .projects_box {
    min-width: 91%;
    height: 100%;
    padding: 0 5rem;
  }

  .know_more_main {
    width: 90%;
    margin: auto;
  }
 
  .row_border {
    border-bottom: 1px solid var(--blacktransparent);
  }

  .know_more_btn {
    position: relative;
    transition: all ease .6s;
    font-size: 1rem;
    color: var(--lightbg);
    border: 1px solid var(--green);
    background-color: var(--green);
    padding: .3rem 1rem;
    border-radius: .5rem;
    z-index: 2;
    overflow: hidden;
  }

  .know_more_btn:hover {
    color: var(--green);
  }

  .know_more_btn::after {
    content: '';
    position: absolute;
    width: 230%;
    height: 500%;
    background-color: var(--lightbg);
    border: 1px solid var(--green);
    border-radius: 50%;
    bottom: -500%;
    left: -60%;
    transition: all ease .7s;
    /* transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease; */
    z-index: -1;
  }

  .know_more_btn:hover::after {
    /* transform: scaleY(1); */
    bottom: -250%;
  }

  .project_img {
    width: 90%;
    height: 700px;
    margin: auto;
    overflow: hidden;
    border-radius: .5rem;
  }

  .project_img img {
    width: 100%;
    height: 100%;
    transition: all ease 1.2s;
  }

  .project_img img:nth-child(2){
    display: none;
  }

  .project_img:hover img {
    scale: 1.1;
  }
  
  
  /*---------FEATURED---PROJECTS---TEXT---END---------*/


  /*---------PROJECTS-----START---------*/

  .projects_section {
    width: 91%;
    margin: auto;
  }

  .projects_section_title {
    font-size: 2.5rem;
    font-weight: 600;
    transition: all ease .3s;
  }


  .project-card {
    height: 500px;
    transition: transform 0.3s ease;
  }
  
  .project-number {
    border-bottom: 1px solid var(--blacktransparent);
  }
  
  .project-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .project-content {
    transform: translateY(20px);
    opacity: 1;
    transition: all 0.5s ease;
  }

  .project-image {
    transition: transform 0.7s ease;
  }

  .project-card:hover .project-image {
    transform: scale(1.1);
  }

  .project-card:hover .project-overlay {
    opacity: 1;
  }

  .project-card:hover .project-content {
    transform: translateY(0);
    opacity: 1;
  }

  /* .badge-animated {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  } */

  .project-card:hover .badge-animated {
    opacity: 1;
    transform: translateY(0);
  }

  .project-btn {
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.9s ease;
    color: var(--white);
    border: 1px solid var(--white);
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  .project-card:hover .project-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .project-btn::after {
    content: '';
    position: absolute;
    width: 230%;
    height: 500%;
    background-color: var(--white);
    border-radius: 50%;
    bottom: -500%;
    left: -60%;
    transition: all ease 1s;
    z-index: -1;
  }

  .project-btn:hover::after {
    bottom: -250%;
  }

  .project-btn:hover {
    color: var(--black);
    border: 1px solid var(--white);
    background-color: transparent;
  }

  .project-title {
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.5s ease;
  }
  
  
  /*---------PROJECTS-----END---------*/

  /*---------URBAN---VILLE---START---------*/

  .urbanville_intro_text {
    text-transform: uppercase;
    letter-spacing: .4rem;
  }
  
  .urban_ville_logo {
    width: 20%;
    /* background-color: var(--blacktransparent2); */
    padding: 2rem;
  }

  .urban_ville_logo img {
    transition: all ease .3s;
  }

  .urban_ville_section {
    width: 91%;
    margin: auto;
    border-top: 1px solid var(--blacktransparent);
  }

  .ultra_luxury_heading {
    font-size: 2.5rem;
    overflow: hidden;
    font-weight: 800;
    text-transform: uppercase;
    transition: all ease .3s;
  }

  .rightText {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }


  .welcome_bg {
    background-color: var(--black);
  }
  
  .welcome_section {
    width: 91%;
    margin: auto;
    border-top: 1px solid var(--blacktransparent);
  }
  
  .welcome_urban_ville {
    width: 100%;
  }

  .welcome_urban_ville h1 {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .welcome_section_img p {
    width: 80%;
    font-size: 1.3rem;
    line-height: 1.5rem;
    transition: all ease .3s;
  }

  .welcome_section_img_parallax {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

  .welcome_section_parallax_img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 115%;
    object-fit: cover;
  }

  .welcome_section_img_parallax2 {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

  .welcome_section_parallax_img2 {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 115%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .welcome_section_img_parallax {
      height: 50vh;
    }
    
    .welcome_section_parallax_img {
      height: 150%;
      top: -25%;
    }

    .welcome_section_img_parallax2 {
      height: 50vh;
    }
    
    .welcome_section_parallax_img2 {
      height: 150%;
      top: -25%;
    }
  }
  

  .project_highlights_section {
    width: 91%;
    margin: auto;
    border-top: 1px solid var(--blacktransparent);
  }
  
  /* .highlights_img {
    width: 100%;
    object-fit: cover;
  }

  .highlights_img img {
    width: 100%;
    object-fit: cover;
  } */

  .counter-section {
    padding: 60px 0;
    background: var(--white);
}

.counter-box {
    text-align: center;
    margin: 20px 0;
    opacity: 0; /* Start hidden for GSAP animation */
    border: 1px solid var(--blacktransparent);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.counter-box:hover {
  box-shadow: 0px 0px 15px -1px var(--blacktransparent);
}

.counter {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    display: inline-flex;
    align-items: center; 
}

.counter-text {
    margin-left: 5px; 
    font-size: 2.7rem; 
}

.counter-title {
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 768px) {
    .counter {
        font-size: 2.5rem;
    }
    
    .counter-text {
        font-size: 1.8rem;
    }
    
    .counter-title {
        font-size: 1rem;
    }
}

.txtformating {
  font-size: 2.7rem;
  font-weight: 900;
}


.tabs-container {
  width: 100%;
}

.tabs-nav {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 10px;
  /* margin-bottom: 30px; */
  /* padding-bottom: 10px; */
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: var(--green);
  color: var(--lightbg);
}

.tab-btn.active {
  background: var(--green);
  color: var(--white);
}

.tab-content {
  height: 700px;
  display: none;
  opacity: 0;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .tabs-nav {
      flex-wrap: nowrap;
      flex-direction: row;
  }
  
  .tab-btn {
      width: 100%;
      text-align: center;
  }
  
  .tab-content {
      padding: 20px;
  }
}

.master_plan {
  cursor: pointer;
}

.east_plans {
  margin: 2rem 0 0 0;
}

.east_plans img {
  cursor: pointer;
}
  
.swiper-pagination-fraction {
  color: var(--white)!important;
}

.interiors {
  position: relative;
}

.interiors p {
  text-transform: uppercase;
  background-color: var(--green2light);
  color: var(--white);
  padding: .2rem .8rem;
  transition: all ease .5s;
}

.interiors_right_content h3 {
  text-transform: uppercase;
  text-align: left;
  transition: all ease .5s;
}

.interiors_right_content p {
  text-align: left;
  transition: all ease .5s;
}

.interiors_pagination .swiper-pagination {
  left: 50%!important;
  transform: translateX(-50%)!important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  display: none!important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  display: none!important;
}

.right_arrow {
  background-color: var(--green2);
  color: var(--white);
  padding: .5rem .8rem;
  font-size: 1.2rem;
  transition: all ease .3s;
  margin-left: -1.5rem;
  opacity: 0;
}

.swiper-button-next {
  top: 5%!important;
  right: 1.5%!important;
}

.left_arrow {
  background-color: var(--green2);
  color: var(--white);
  padding: .5rem .8rem;
  font-size: 1.2rem;
  margin-left: 1.5rem;
  opacity: 0;
  transition: all ease .3s;
}


.swiper-button-prev {
  top: 5%!important;
  left: 94%!important;
}

.mySwiper2:hover .right_arrow {
  margin: 0;
  opacity: 1;
}

.mySwiper2:hover .left_arrow {
  margin: 0;
  opacity: 1;
}

.clubhouse_aminities_pagination .swiper-pagination {
   left: 50%!important; 
   transform: translateX(-50%);
}

.clubhouse_img {
  width: 40%;
  margin: auto;
  transition: all ease .5s;
}

.clubhouse_aminities {
  columns: 250px;
  overflow: hidden;
}

.clubhouse_aminities img {
  cursor: pointer;
}


.accordion {
  width: 95%;
  border-radius: 0!important;
  overflow: hidden;
  background: none!important;
}

.accordion-item {
  border-bottom: 1px solid var(--green2)!important;
  border-top: 0!important;
  border-right: 0!important;
  border-left: 0!important;
  border-radius: 0!important;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 1rem 0; */
  margin: 1rem 0;
  cursor: pointer;
  background: none;
  border-radius: 0!important;
  transition: background 0.3s ease;
  border-bottom: 1px solid var(--green2);
}

/* .accordion-header:hover {
  background: ;
} */

.accordion-header h3 {
  font-size: 18px;
  color: var(--black)!important;
  margin: 0;
  transition: all ease .3s;
}

.toggle-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.3s ease;
}

.toggle-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.toggle-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

/* Rotate horizontal bar for minus effect */
.accordion-header.active .toggle-icon::before {
  transform: translateY(0%) rotate(0deg);
  background-color: var(--green2)!important;
}

/* Hide vertical bar for minus effect */
.accordion-header.active .toggle-icon::after {
  transform: translateX(-50%) scaleY(0);
  background-color: var(--green2)!important;
}

.accordion-header:hover .toggle-icon::before  {
  background-color: var(--green2)!important;
}
.accordion-header:hover .toggle-icon::after  {
  background-color: var(--green2)!important;
}

.accordion-content {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

/* .toggle-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background: #333;
  transition: transform 0.3s ease;
}

.toggle-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.toggle-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.accordion-header.active .toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
  transform: translateX(0%) rotate(90deg);
}

.accordion-header.active .toggle-icon::before {
  transform: translateY(-50%);
  transform: translateY(-50%) scaleY(0);
} */

.section_height {
  height: 90vh;
}

.specification_icon {
  width: 13%;
}

.structure {
  /* font-size: 1rem!important; */
  transition: all ease .3s;
}

.accordion-header:hover .structure {
  color: var(--green2)!important;
}


/*---------URBAN---VILLE---END---------*/


/*-------AMENITIES---START---------*/

.amenities_box {
  width: 100%;
  height: 250px;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  margin: 1.7rem 0 0 0;
  text-align: center;
}

.amenities_box:hover {
  box-shadow: 0px 0px 15px -1px var(--blacktransparent);
}

.amenities_box h3 {
  font-size: 1.1rem;
  transition: all ease .5s;
}

.amenity_icon {
  font-size: 3rem;
  transition: all ease .5s;
}

/*-------AMENITIES---END---------*/


/*---------GALLERY---START---------*/

  .gallery_box {
    width: 100%;
    columns: 100px;
  }

  .gallery_item {
    width: 100%;
    height: 210px;
    margin-bottom: 1.3rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .gallery_item:hover img {
    transform: scale(1.05);
  }

  .gallery_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery_item:hover .gallery_overlay {
    opacity: 1;
  }

  .gallery_overlay_content {
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }

  .gallery_item:hover .gallery_overlay_content {
    transform: translateY(0);
  }

  .gallery_title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: none;
  }

  .gallery_description {
    font-size: 0.9rem;
    opacity: 0.8;
    display: none;
  }

  @media screen and (min-width: 768px) {
    .gallery_box {
      columns: 2;
      column-gap: 1.5rem;
    }
  }

  @media screen and (min-width: 1024px) {
    .gallery_box {
      columns: 3;
    }
  }

  @media screen and (min-width: 1440px) {
    .gallery_box {
      columns: 4;
    }
  }
  
  /*---------GALLERY-----END---------*/


  /*---------HAVE---QUESTIONS---START---------*/

  .have_questions_bg {
    background-color: var(--maincolor2);
  }

  .have_questions_txt {
    overflow: hidden;
    transition: all ease .3s;
  }
  
  .have_questions_txt h3 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .magnet-wrap {
    display: inline-block;
    padding: 20px;
  }

  .magnet {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 4rem 1.8rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
  }

  .magnet span {
    display: inline-block;
  }
  
  /*---------HAVE---QUESTIONS---END---------*/


  /*---------CONTACT---START---------*/

  .contact_box {
    border-bottom: 1px solid var(--blacktransparent);
    padding-bottom: 3rem;
  }

  .email2 {
    width: fit-content;
    position: relative;
  }

  .email2::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--black);
    bottom: 3%;
    left: 0;
  }
  
  .email2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 3%;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform ease .5s;
  }

  .email2:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .contact_section {
    width: 91%;
    margin: auto;
    border-top: 1px solid var(--blacktransparent);
  }

  .form-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.form-content {
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
}

.form-title {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
}

.form-input {
    width: 100%;
    padding: 12px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--blacktransparent);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.form-input:focus {
    border-color: var(--maincolor);
    outline: none;
}

.form-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: 0;
    font-size: 0.85rem;
    color: var(--maincolor);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-textarea + .form-label {
    top: 20px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
    top: -10px;
}

.form-button {
  border: none;
  padding: 1rem 2rem;
  /* padding: 2.5rem 2.2rem; */
  text-transform: uppercase;
    border-radius: .5rem;
    background: var(--blacktransparent2);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.form-button::after {
  content: '';
  position: absolute;
  width: 400%;
  height: 700%;
  background-color: var(--blacktransparent2);
  border-radius: 50%;
  bottom: -700%;
  left: -150%;
  transition: all ease 1.2s;
  z-index: -1;
}

.form-button:hover::after {
    bottom: -350%;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-input.error {
    border-color: #dc3545;
}

@media (max-width: 480px) {
    .form-content {
        padding: 2rem 1rem;
    }
}
  
  /*---------CONTACT---END---------*/


  /*---------FOOTER---START---------*/

  .footer_section_bg {
    width: 100%;
    height: 60vh;
    background-color: transparent;
    pointer-events: none;
    z-index: -999;
  }

  .footer_bg {
    background-color: var(--black);
    padding: 3rem 0;
    position: fixed;
    bottom: 0;
    height: 60vh;
    z-index: 9;
  }

  .footer_section {
    width: 91%;
    margin: auto;
  }

  .footer_links {
    width: 77%;
  }

  .footer_links_items {
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-size: 1rem;
    transition: all ease .3s;
  }

  .footer_links_items::after {
    content:'';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 3%;
    left: 0;
    transform: scaleX(0);
    transition: transform ease .3s;
    transform-origin: right;
  }

  .footer_links_items:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .active2 {
    position: relative;
    text-decoration: none;
    color: var(--white);
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase!important;
  }

  .active2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 0;
    left: 0;
  }

  .top_btn {
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    padding: .4rem 1.3rem;
    font-size: 1.7rem;
    transition: all ease .5s;
  }

  .top_btn:hover {
    transform: translateY(-5px);
  }

  .footer_links_box {
    width: 100%;
    height: 50vh;
  }

  .footer_copyright {
    transition: all ease .3s;
  }

  .footer_logo {
    width: 77%;
    transition: all ease .3s;
  }

  .privacy_policy_btn {
    color: var(--white);
    position: relative;
    font-size: .8rem;
    transition: all ease .3s;
  }

  .privacy_policy_btn::after {
    content:'';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: -8%;
    left: 0;
    transform: scaleX(0);
    transition: transform ease .5s;
    transform-origin: right;
  }

  .privacy_policy_btn::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--white);
    bottom: -8%;
    left: 0;
  }

  .privacy_policy_btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .active3 {
    color: var(--white);
    position: relative;
    font-size: .8rem;
    transition: all ease .3s;
  }

  .active3::after {
    content:'';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: -8%;
    left: 0;
  }

  .footer_right_box {
    width: 100%;
    height: 70vh;
    display: flex;
  }
  
  .footer_right1 {
    width: 40%;
    margin: 5rem 0 0 0;
    transition: all ease .3s;
  }

  .email {
    position: relative;
    transition: all ease .3s;
  }

  .email::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 3%;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform ease .5s;
  }

  .email::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--white);
    bottom: 3%;
    left: 0;
  }
  
  .email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }


  .footer_right2 {
    width: 40%;
    margin: 5rem 0 0 0;
    transition: all ease .3s;
  }
  
  .footer_social_links {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    text-transform: uppercase;
  }

  .footer_social_links a {
    position: relative;
    transition: all ease .3s;
  }

  .footer_social_links a::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--maincolor);
    bottom: 3%;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform ease .5s;
  }
  
  .footer_social_links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }


  .top_btn_wrap {
    display: inline-block;
    padding: 10px;
  }
  
  
  /*---------FOOTER---END---------*/


  /*---------DISCLAIMER---BOX---START---------*/

  .disclaimer_text::selection {
    background-color: var(--white);
    color: var(--maincolor);
  }

  .disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.disclaimer-box {
    background: var(--white);
    padding: 3rem;
    text-align: center;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease;
}

.disclaimer-box h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.disclaimer-box p {
    margin: 0 0 20px;
    font-size: 1rem;
    color: var(--desclaimertxt);
}

.disclaimer-box button {
    background: var(--maincolor);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all ease .3s;
}

.disclaimer-box button:hover {
    transform: translateY(-.1rem);
    box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
}

.close_disclaimer {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgb(211, 15, 15);
  color: var(--white);
  font-size: 1rem;
  margin: .3rem;
  padding: .2rem .8rem;
  cursor: pointer;
  transition: all ease .3s;
}

.close_disclaimer:hover {
  transform: translateY(-.05rem);
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .disclaimer-box {
        padding: 15px;
    }

    .disclaimer-box h2 {
        font-size: 1.2rem;
    }

    .disclaimer-box p {
        font-size: 0.9rem;
    }

    .disclaimer-box button {
        font-size: 0.9rem;
    }
}
  
  /*---------DISCLAIMER---BOX---END---------*/
  

  /* -----RESPONSIVE--CODES------- */

  @media screen and (max-width: 991px) {

    .parallax-container {
      height: 70vh;
    }

    .parallax-bg {
      height: 120%;
    }

    .parallax-container2 {
      height: 70vh;
    }

    .parallax-bg2 {
      height: 120%;
    }

    .parallax-container3 {
      height: 70vh;
    }

    .parallax-bg3 {
      height: 120%;
    }

    .parallax-container4 {
      height: 70vh;
    }

    .parallax-bg4 {
      height: 120%;
    }

    .parallax-container5 {
      height: 70vh;
    }

    .parallax-bg5 {
      height: 120%;
      background-size: 150% 100%;
    }

    .parallax-container6 {
      height: 70vh;
    }

    .parallax-bg6 {
      height: 120%;
      background-size: 150% 100%;
    }

  }

  @media screen and (max-width: 480px) {

    .parallax-container {
      height: 50vh;
    }
    .parallax-bg {
      height: 110%;
    }

    .parallax-container2 {
      height: 50vh;
    }
    .parallax-bg2 {
      height: 110%;
    }

    .parallax-container3 {
      height: 50vh;
    }
    .parallax-bg3 {
      height: 110%;
    }

    .parallax-container4 {
      height: 50vh;
    }
    .parallax-bg4 {
      height: 110%;
    }

    .parallax-container5 {
      height: 50vh;
    }
    .parallax-bg5 {
      height: 110%;
      background-size: 150% 100%;
    }

    .parallax-container6 {
      height: 50vh;
    }
    .parallax-bg6 {
      height: 110%;
      background-size: 150% 100%;
    }

  }

@media screen and (min-width: 300px) and (max-width: 450px) {

  header {
    padding: 1rem;
  }

  .menu-toggle {
    width: 35px;
  }

  .animated-section {
    width: 100%;
    height: 100vh;
    left: 0;
    top: -100vh;
    backdrop-filter: blur(0);
  }

  .menu-container {
    flex-direction: column;
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .menu-item {
    font-size: 2rem;
  }
  
  .menu_right_img {
    width: 100%;
  }
  
  .logo {
    width: 25%;
  }

  .urban_ville_rera {
    font-size: .7rem;
    padding: .3rem .5rem;
  }

  /* .links::after{
    display: none;
  } */

  /* .banner_margin {
    margin-top: 20%;
  } */

  /* #main {
    padding-top: 20%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 3rem;
  }

  .about_title {
    font-size: 1.8rem;
  }

  .about_p {
    font-size: .7rem;
  }

  .projects_section_title {
    font-size: 1.8rem;
  }
  
  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .project_img img:nth-child(1){
    display: none;
  }

  .interiors_pagination .swiper-pagination {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_box {
    columns: 150px;
  }
  
  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right_box {
    display: block;
  }
  
  .footer_right1 {
    width: 100%;
    margin: 0 0 0 0;
  }

  .footer_right2 {
    width: 100%;
    margin: 2rem 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 20%;
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_banner_title {
    font-size: 4.5rem;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  #box7 {
    width: 100%!important;
  }

  .about_banner_title {
    font-size: 3rem;
  }

  .projects_banner_title {
    font-size: 2.5rem;
  }

  .urban_ville_logo {
    width: 75%;
  }

  .ultra_luxury_heading {
    font-size: 1.5rem;
  }

  .welcome_urban_ville h1 {
    font-size: 1.5rem;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .featured_projects_logo {
    width: 30%;
    transition: all ease .5s;
  }

  .interiors_pagination .swiper-pagination {
    width: 95%!important;
  }

  .clubhouse_img {
    width: 100%;
  }

  .clubhouse_aminities_pagination .swiper-pagination {
    width: 95%!important;
    left: 50%!important; 
    transform: translateX(-50%);
 }

}

@media screen and (min-width: 451px) and (max-width: 560px) {

  header {
    padding: 1rem;
  }

  .logo {
    width: 25%;
  }

  .menu-toggle {
    width: 35px;
  }

  .animated-section {
    width: 100%;
    height: 100vh;
    left: 0;
    top: -100vh;
    backdrop-filter: blur(0);
  }

  .menu-container {
    flex-direction: column;
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .menu-item {
    font-size: 2rem;
  }

  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 17%;
  } */

  /* #main {
    padding-top: 17%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 3.5rem;
  }

  .about_title {
    font-size: 2rem;
  }

  .about_p {
    font-size: .78rem;
  }

  .projects_section_title {
    font-size: 2rem;
  }

  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .interiors_pagination .swiper-pagination {
    width: 75%!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_box {
    columns: 150px;
  }

  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right1 {
    margin: 1rem 0 0 0;
  }

  .footer_right2 {
    margin: 1rem 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 17%;
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_banner_title {
    font-size: 4.5rem;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 2.7rem;
    line-height: 2.7rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  #box7 {
    width: 100%!important;
  }

  .about_banner_title {
    font-size: 3.2rem;
  }

  .urban_ville_logo {
    width: 65%;
  }

  .ultra_luxury_heading {
    font-size: 1.7rem;
  }

  .welcome_urban_ville h1 {
    font-size: 1.7rem;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .featured_projects_logo {
    width: 30%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 100%;
  }
  
  .clubhouse_aminities_pagination .swiper-pagination {
    width: 70%!important;
    left: 50%!important; 
    transform: translateX(-50%);
  }

}

@media screen and (min-width: 561px) and (max-width: 600px){

  header {
    padding: 1rem;
  }

  .logo {
    width: 20%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    flex-direction: column;
  }

  .animated-section {
    width: 100%;
    height: 100vh;
    left: 0;
    top: -100vh;
    backdrop-filter: blur(0);
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .menu-item {
    font-size: 2rem;
  }

  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 17%;
  } */

  /* #main {
    padding-top: 17%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 4rem;
  }

  .about_title {
    font-size: 2.5rem;
  }

  .about_p {
    font-size: .98rem;
  }

  .projects_section_title {
    font-size: 2.5rem;
  }
  
  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .interiors_pagination .swiper-pagination {
    width: 65%!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_box {
    columns: 150px;
  }

  .gallery_item {
    height: auto;
  }

  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right1 {
    margin: 1rem 0 0 0;
  }

  .footer_right2 {
    margin: 1rem 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 17%;
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_banner_title {
    font-size: 4.5rem;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  #box7 {
    width: 100%!important;
  }

  .projects_banner_title {
    font-size: 3.5rem;
  }

  .urban_ville_logo {
    width: 65%;
  }

  .ultra_luxury_heading {
    font-size: 1.8rem;
  }

  .welcome_urban_ville h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem!important;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .featured_projects_logo {
    width: 30%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 100%;
  }

  .clubhouse_aminities_pagination .swiper-pagination {
    width: 60%!important;
    left: 50%!important; 
    transform: translateX(-50%);
  }
 
}

@media screen and (min-width: 601px) and (max-width: 700px) {
  header {
    padding: 1rem;
  }

  .logo {
    width: 18%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    /* flex-direction: column; */
  }

  .animated-section {
    width: 55%;
    height: 55%;
    right: 0;
    top: -100vh;
    padding: 30px 40px;
    backdrop-filter: blur(0);
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .font_size p {
    font-size: .93rem;
  }

  .font_size a {
    font-size: .93rem!important;
  }
  
  .menu-item {
    font-size: 1.2rem;
  }

  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 17%;
  } */

  /* #main {
    padding-top: 13%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 4.5rem;
  }

  .about_title {
    font-size: 2.5rem;
  }

  .about_p {
    font-size: .98rem;
  }

  .projects_section_title {
    font-size: 2.5rem;
  }

  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .interiors_pagination .swiper-pagination {
    width: 55%!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_box {
    columns: 200px;
  }
  
  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right1 {
    margin: 0 0 0 0;
  }

  .footer_right2 {
    margin: 0 0 0 0;
  }
  
  .about_banner_title_box {
    margin: 0;
    padding-top: 13%;
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_banner_title {
    font-size: 4.5rem;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 3.3rem;
    line-height: 3.3rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  /* #box7 {
    width: 100%!important;
  } */

  .projects_banner_title {
    font-size: 3.5rem;
  }
  
  .urban_ville_logo {
    width: 60%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .featured_projects_logo {
    width: 30%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 100%;
  }
  
  .clubhouse_aminities_pagination .swiper-pagination {
    width: 55%!important;
    left: 50%!important; 
    transform: translateX(-50%);
  }
  
}

@media screen and (min-width: 701px) and (max-width: 767px) {

  header {
    padding: 1rem;
  }

  .logo {
    width: 18%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    /* flex-direction: column; */
  }

  .animated-section {
    width: 55%;
    height: 60%;
    right: 0;
    top: -100vh;
    padding: 30px 40px;
    backdrop-filter: blur(0);
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .menu-item {
    font-size: 1.5rem;
  }

  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 13%;
  } */

  /* #main {
    padding-top: 13%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 4rem;
  }

  .about_title {
    font-size: 2.5rem;
  }

  .about_p {
    font-size: .98rem;
  }

  .projects_section_title {
    font-size: 2.5rem;
  }

  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .interiors_pagination .swiper-pagination {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .gallery_box {
    columns: 200px;
  }

  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 102vh;
  }

  .footer_bg {
    height: 102vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right1 {
    margin: 0 0 0 0;
  }

  .footer_right2 {
    margin: 0 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 13%
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_banner_title {
    font-size: 4.5rem;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 3.8rem;
    line-height: 3.8rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  /* #box7 {
    width: 100%!important;
  } */

  .urban_ville_logo {
    width: 55%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .featured_projects_logo {
    width: 20%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 100%;
  }
  
  .clubhouse_aminities_pagination .swiper-pagination {
    left: 50%!important; 
    transform: translateX(-50%);
  }
  
}

@media screen and (min-width: 768px) and (max-width: 799px) {
  header {
    padding: 1rem;
  }

  .logo {
    width: 18%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    /* flex-direction: column; */
  }

  .animated-section {
    width: 50%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .menu-item {
    font-size: 1.5rem;
  }
  
  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 13%;
  } */

  /* #main {
    padding-top: 13%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .5rem;
    color: var(--gold);
    background-color: transparent;
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 4rem;
  }

  /* .about_title {
    font-size: 2.5rem;
  }

  .about_p {
    font-size: .98rem;
  }

  .projects_section_title {
    font-size: 2.5rem;
  } */

  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .interiors_pagination .swiper-pagination {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 102.2vh;
  }

  .footer_bg {
    height: 102.2vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right1 {
    margin: 0 0 0 0;
  }

  .footer_right2 {
    margin: 0 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 13%
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 4rem;
    line-height: 4rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  /* #box7 {
    width: 100%!important;
  } */

  .urban_ville_logo {
    width: 50%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .amenities_box h3 {
    font-size: .85rem;
  }

  .featured_projects_logo {
    width: 18%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 90%;
  }

  .clubhouse_aminities_pagination .swiper-pagination {
    left: 50%!important; 
    transform: translateX(-50%);
  }
  
}


@media screen and (min-width: 800px) and (max-width: 820px) {
  header {
    padding: 1rem;
  }

  .logo {
    width: 15%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    /* flex-direction: column; */
  }

  .animated-section {
    width: 50%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }

  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 10.5%;
  } */

  /* #main {
    padding-top: 10.5%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
    padding: .5rem .6rem;
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
    background-color: transparent;
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 4rem;
  }

  /* .about_title {
    font-size: 1.8rem;
  }

  .about_p {
    font-size: .7rem;
  }

  .projects_section_title {
    font-size: 1.8rem;
  } */

  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .interiors_pagination .swiper-pagination {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_item {
    height: auto;
  }

  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_right1 {
    margin: 1rem 0 0 0;
  }

  .footer_right2 {
    margin: 1rem 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 10.5%
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 4.1rem;
    line-height: 4.1rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
    margin-top: 2rem;
  }

  .boxes_main {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  /* #box7 {
    width: 100%!important;
  } */

  .urban_ville_logo {
    width: 50%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .amenities_box h3 {
    font-size: .85rem;
  }

  .featured_projects_logo {
    width: 15%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 90%;
  }

  .clubhouse_aminities_pagination .swiper-pagination {
    left: 50%!important; 
    transform: translateX(-50%);
  }
  
}

@media screen and (min-width: 821px) and (max-width: 991px) {
  header {
    padding: 1rem;
  }

  .logo {
    width: 15%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    /* flex-direction: column; */
  }

  .animated-section {
    width: 50%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .menu_links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blacktransparent);
  }


  .menu_right_img {
    width: 100%;
  }

  /* .banner_margin {
    margin-top: 10.5%;
  } */

  /* #main {
    padding-top: 10.5%;
  } */

  .slide1 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide2 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide3 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }
  .slide4 {
    height: 60vh;
    /* background: none; */
    background-size: cover;
  }

  .banner_logo {
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
    padding: .5rem .6rem;
  }
  
  .banner_heading h1 {
    font-size: 1.5rem;
    padding: .2rem;
    color: var(--gold);
    background-color: transparent;
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.5rem;
    padding: .3rem;
  }

  .features_section {
    height: 70vh;
  }

  .feature_box h2 {
    font-size: 4.5rem;
  }

  /* .about_title {
    font-size: 1.8rem;
  }

  .about_p {
    font-size: .7rem!important;
  }

  .projects_section_title {
    font-size: 1.8rem;
  } */

  .project_div_width {
    width: 91%;
    margin: auto;
  }

  .project_img {
    width: 100%;
    height: 100%;
  }

  .interiors_pagination .swiper-pagination {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }

  .gallery_item {
    height: auto;
  }

  .footer_section_bg {
    height: 103vh;
  }

  .footer_bg {
    height: 103vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_logo {
    width: 66%;
  }

  .footer_right1 {
    margin: 0rem 0 0 0;
  }

  .footer_right2 {
    margin: 0rem 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
    padding-top: 10.5%
  }

  .urban_ville_banner {
    margin-top: 0rem;
  }

  .about_title {
    width: 100%;
  }

  .about_title_headings {
    width: 100%;
  }

  .about_title_headings h2 {
    font-size: 4.1rem;
    line-height: 4.1rem;
  }

  .who_we_are h2 {
    font-size: 2rem;
  }

  .sticky-heading {
    width: 100%;
    position: -webkit-static;
    position: static;
  }

  .sticky-heading h2 {
    font-size: 2rem;
  }

  .sticky-container {
    display: block;
  }

  .boxes-container {
    width: 100%;
  }

  .boxes_main {
    width: 100%;
    margin-top: 2rem;
  }

  .box {
    width: 100%;
  }

  /* #box7 {
    width: 100%!important;
  } */

  .urban_ville_logo {
    width: 35%;
  }
  
  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .amenities_box h3 {
    font-size: .8rem;
  }

  .featured_projects_logo {
    width: 15%;
    transition: all ease .5s;
  }

  .clubhouse_img {
    width: 80%;
  }

  .clubhouse_aminities_pagination .swiper-pagination {
    left: 50%!important; 
    transform: translateX(-50%);
  }
  
}

@media screen and (min-width: 992px) and (max-width: 1025px) {  

  .logo {
    width: 13%;
  }
  
  .animated-section {
    width: 50%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .urban_ville_logo {
    width: 35%;
  }

  .slide1 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide2 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide3 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide4 {
    /* height: 60vh; */
    background-size: cover;
  }

  .banner_logo {
    width: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
    padding: .5rem .6rem;
  }
  
  .banner_heading h1 {
    font-size: 1.2rem;
    padding: .2rem;
    color: var(--gold);
    background-color: transparent;
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.2rem;
    padding: .3rem;
  }

  .tab-content {
    max-height: 407px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_right_content h3 {
    font-size: 1.1rem;
  }

  .interiors_right_content p {
    font-size: .8rem;
  }

  .right_arrow {
    font-size: 1rem;
  }

  .left_arrow {
    font-size: 1rem;
  }

  .swiper-button-next {
    top: 10%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 10%!important;
    left: 89.5%!important;
  }

  .interiors_pagination .swiper-pagination-bullet {
    height: 6.5px!important;
  }

  .interiors_pagination .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    height: 20px!important;
  }

  .interiors_pagination .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: flex;
    align-items: center;
  }

  .clubhouse_aminities {
    columns: 120px;
  }

  .amenities_box h3 {
    font-size: .5rem;
  }
  
  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 70vh;
  }

  .footer_bg {
    height: 70vh;
    padding: 4rem 0;
  }

  .footer_copyright {
    font-size: .61rem!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }

  .clubhouse_img {
    width: 60%;
  }
  
}

@media screen and (min-width: 1026px) and (max-width: 1111px) {

  .logo {
    width: 12%;
  }

  .animated-section {
    width: 40%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .slide3 {
    height: 100%;
    background-size: cover;
  }

  /* .slide4 {
    height: 100%;
    background-size: cover;
  } */

  .urban_ville_logo {
    width: 35%;
  }

  .slide1 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide2 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide3 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide4 {
    /* height: 60vh; */
    background-size: cover;
  }

  .banner_logo {
    width: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
    padding: .5rem .6rem;
  }
  
  .banner_heading h1 {
    font-size: 2rem;
    padding: .2rem;
    color: var(--gold);
    background-color: transparent;
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2rem;
    padding: .3rem;
  }

  .tab-content {
    height: 417px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_right_content h3 {
    font-size: 1.3rem;
  }

  .interiors_right_content p {
    font-size: .8rem;
  }

  .right_arrow {
    font-size: 1rem;
  }

  .left_arrow {
    font-size: 1rem;
  }

  .swiper-button-next {
    top: 10%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 10%!important;
    left: 90%!important;
  }

  .interiors_pagination .swiper-pagination-bullet {
    height: 6.8px!important;
  }

  .interiors_pagination .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    height: 20px!important;
  }

  .interiors_pagination .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: flex;
    align-items: center;
  }

  .clubhouse_aminities {
    columns: 120px;
  }

  .amenities_box h3 {
    font-size: .6rem;
  }

  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 70vh;
  }

  .footer_bg {
    height: 70vh;
    padding: 4rem 0;
  }

  .footer_copyright {
    font-size: .62rem!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }

  .clubhouse_img {
    width: 60%;
  }
  
}

@media screen and (min-width: 1112px) and (max-width: 1199px) {

  .logo {
    width: 12%;
  }

  .animated-section {
    width: 40%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .project_img {
    height: 600px;
  }

  .urban_ville_logo {
    width: 35%;
  }

  .slide1 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide2 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide3 {
    /* height: 60vh; */
    background-size: cover;
  }
  .slide4 {
    /* height: 60vh; */
    background-size: cover;
  }

  .banner_logo {
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black2);
    border-radius: .5rem;
    padding: .5rem .6rem;
  }
  
  .banner_heading h1 {
    font-size: 2rem;
    padding: .2rem;
    color: var(--gold);
    background-color: transparent;
  }

  .banner_heading2 {
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2rem;
    padding: .3rem;
  }

  .tab-content {
    height: 450px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_right_content h3 {
    font-size: 1.5rem;
  }

  .interiors_right_content p {
    font-size: .9rem;
  }

  .right_arrow {
    font-size: 1rem;
  }

  .left_arrow {
    font-size: 1rem;
  }

  .swiper-button-next {
    top: 10%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 10%!important;
    left: 90.5%!important;
  }

  .clubhouse_aminities {
    columns: 120px;
  }

  .amenities_box h3 {
    font-size: .7rem;
  }

  .gallery_item {
    height: auto;
  }
  
  .footer_section_bg {
    height: 62vh;
  }

  .footer_bg {
    height: 62vh;
    /* padding: 4rem 0; */
  }

  .footer_copyright {
    font-size: .67rem!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }

}

@media screen and (min-width: 1200px) and (max-width: 1270px) {

  .logo {
    width: 10%;
  }

  .animated-section {
    width: 40%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .project_img {
    height: 600px;
  }

  .banner_heading {
    top: 35%;
    right: .5%;
    transform: translate(-.5%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 1.8rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.8rem;
    padding: .3rem;
  }
  
  .tab-content {
    height: 470px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_right_content h3 {
    font-size: 1.6rem;
  }

  .interiors_right_content p {
    font-size: .95rem;
  }

  .right_arrow {
    font-size: 1rem;
  }

  .left_arrow {
    font-size: 1rem;
  }

  .swiper-button-next {
    top: 10%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 10%!important;
    left: 90.5%!important;
  }

  .amenities_box h3 {
    font-size: .75rem;
  }
  
  .gallery_item {
    height: auto;
  }
  
  .footer_copyright {
    font-size: .7rem!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }
  
}

@media screen and (min-width: 1271px) and (max-width: 1350px) {

  .logo {
    width: 10%;
  }

  .animated-section {
    width: 35%;
    right: 0;
    top: -100vh;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .banner_heading {
    top: 35%;
    right: 11.2%;
    transform: translate(-11.2%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 1.8rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 1.8rem;
    padding: .3rem;
  }

  .tab-content {
    height: 500px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_right_content h3 {
    font-size: 1.7rem;
  }

  .interiors_right_content p {
    font-size: 1rem;
  }

  .right_arrow {
    font-size: 1rem;
  }

  .left_arrow {
    font-size: 1rem;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 91%!important;
  }
  
  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .amenities_box h3 {
    font-size: .77rem;
  }

  .gallery_item {
    height: auto;
  }
  
}

@media screen and (min-width: 1351px) and (max-width: 1399px) {

  .logo {
    width: 10%;
  }

  .animated-section {
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .banner_heading {
    top: 35%;
    right: 11.2%;
    transform: translate(-11.2%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 2rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2rem;
    padding: .3rem;
  }
  
  .tab-content {
    height: 520px;
  }

  .east_plans {
    margin: 0;
  }

  .right_arrow {
    font-size: 1.2rem;
  }

  .left_arrow {
    font-size: 1.2rem;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 91%!important;
  }
  
  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .amenities_box h3 {
    font-size: .8rem;
  }

  .gallery_item {
    height: auto;
  }
  
}

@media screen and (min-width: 1400px) and (max-width: 1415px) {

  .logo {
    width: 9%;
  }

  .animated-section {
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  } 

  .banner_heading {
    top: 35%;
    right: 4.5%;
    transform: translate(-4.5%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 2rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2rem;
    padding: .3rem;
  }
  
  .tab-content {
    height: 550px;
  }

  .east_plans {
    margin: 0;
  }

  .right_arrow {
    font-size: 1.2rem;
  }

  .left_arrow {
    font-size: 1.2rem;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 91%!important;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .amenities_box h3 {
    font-size: .8rem;
  }

  .gallery_item {
    height: auto;
  }
  
}

@media screen and (min-width: 1416px) and (max-width: 1500px) {

  .logo {
    width: 9%;
  }

  .animated-section {
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .banner_heading {
    top: 35%;
    right: 6.5%;
    transform: translate(-6.5%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 2.2rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2.2rem;
    padding: .3rem;
  }

  .tab-content {
    height: 550px;
  }

  .east_plans {
    margin: 0;
  }

  .right_arrow {
    font-size: 1.2rem;
  }

  .left_arrow {
    font-size: 1.2rem;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 91.5%!important;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 200px;
  }

  .amenities_box h3 {
    font-size: .8rem;
  }

  .gallery_item {
    height: auto;
  }
  
}

@media screen and (min-width: 1501px) and (max-width: 1600px) {

  .logo {
    width: 9%;
  }

  .banner_heading {
    top: 35%;
    right: 7%;
    transform: translate(-7%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 2.2rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2.2rem;
    padding: .3rem;
  }

  .tab-content {
    height: 570px;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 91.5%!important;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 170px;
  }

  .amenities_box h3 {
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 1601px) and (max-width: 1650px) {

  .logo {
    width: 9%;
  }

  .banner_heading {
    top: 35%;
    right: 8.5%;
    transform: translate(-8.5%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 2.2rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2.2rem;
    padding: .3rem;
  }

  .tab-content {
    height: 620px;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 91.8%!important;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 200px;
  }

  .amenities_box h3 {
    font-size: .85rem;
  }
  
}

@media screen and (min-width: 1651px) and (max-width: 1750px) {

  .logo {
    width: 9%;
  }

  .banner_heading {
    top: 35%;
    right: 9.5%;
    transform: translate(-9.5%, -35%);
  }
  
  .banner_heading h1 {
    font-size: 2.2rem;
    padding: .2rem;
  }

  .banner_heading2 {
    width: 15%;
    top: 50%;
    right: 11.5%;
    transform: translate(-11.5%, -50%);
  }

  .banner_heading2 h1 {
    font-size: 2.2rem;
    padding: .3rem;
  }

  .tab-content {
    height: 630px;
  }

  .swiper-button-next {
    top: 8%!important;
    right: 2.5%!important;
  }

  .swiper-button-prev {
    top: 8%!important;
    left: 92%!important;
  }

  .project_img {
    height: 600px;
  }

  .amenities_box h3 {
    font-size: .85rem;
  }

  .clubhouse_aminities {
    columns: 185px;
  }
  
}

@media screen and (min-width: 1751px) and (max-width: 1800px) {

  .logo {
    width: 9%;
  }

  .tab-content {
    height: 650px;
  }

  .project_img {
    height: 600px;
  }
  
}

