
@font-face {
    font-family: 'regular';
    src: url(./fonts/Helvetica.woff2);
  }
  @font-face {
    font-family: 'bold';
    src: url(./fonts/Helvetica-Bold.woff2);
  }
  @font-face {
    font-family: 'futura';
    src: url(./fonts/futura\ light\ bt.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: var(--red);
    color: var(--white);
  }
  
  body::-webkit-scrollbar{
      background-color: #dadada;
      width: 5px;
      z-index: 2;
  }
  
  body::-webkit-scrollbar-thumb{
      background: var(--red);
      border-radius: 50px;
  }

  p {
    font-family: 'futura';
  }
  
  
  :root {
    --maincolor: #E77B25;
    --maincolor2:#E5F0F0;
    --green: #092F00;
    --green2: #32A94B;
    --green2light: #32a94c89;
    --red: #662629;
    --red2: #da989b;
    --lightred: #da989b;
    --gold: #d2ae6d;
    --gold2: #e8c877;
    --lightbg: #E5F0F0;
    --lightbgtext: #0000009c;
    --bordertop: #dee2e6;
    --white: #fff;
    --transparent: #ffffffac;
    --footertxt: #737278;
    --nav_bg: #ffffff96;
    --white2: #ffffffc0;
    --light: #f5f5f5;
    --black: #020d26;
    --black2: #000000c5;
    --blacktransparent: #00000062;
    --blacktransparent2: #0000008f;
    --collapsetransparent: #ffffff7a;
  }
  
  .regular {
    font-family: 'regular'!important;
  }
  
  .bold {
    font-family: 'bold';
  }
  
  .maincolor {
    color: var(--maincolor);
  }

  .maincolor2 {
  color: var(--maincolor2);
  }

  .green {
    color: var(--green);
  }

  .green2 {
    color: var(--green);
  }

  .red {
    color: var(--red)!important;
  }

  .red2 {
    color: var(--red2)!important;
  }

  .bg_red {
    background-color: var(--red)!important;
  }

  .gold {
    color: var(--gold)!important;
  }

  .gold2 {
    color: var(--gold2)!important;
  }

  .footertxt {
    color: var(--footertxt);
  }

  .transparent {
    color: var(--transparent);
  }

  .futura {
    font-family: 'futura'!important;
  }

  .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(--white);
  }

  .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: auto;
    position: fixed;
    top: 14.7%;
    transform: translateY(-14.7%);
    z-index: 99;
    overflow: hidden;
  }

  .left_option1 {
    width: fit-content;
    background-color: var(--gold);
    color: var(--red);
    padding: .5rem 1rem;
    text-transform: uppercase;
    border-top-right-radius: 1.5vw;
    transition: all ease .5s;
    transform: translateX(-72%);
    z-index: 99;
  }

  .left_option1:hover {
    transform: translateX(0);
  }

  .left_option2 {
    width: fit-content;
    background-color: var(--gold);
    color: var(--red);
    padding: .5rem 1rem;
    text-transform: uppercase;
    border-bottom-right-radius: 1.5vw;
    transition: all ease .5s;
    transform: translateX(-77.2%);
    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;
  }

  .casabella_rera {
    background-color: var(--gold);
    border-radius: .5rem;
    color: var(--red);
    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/banner-1a.jpg')no-repeat center center;
    background-size: 100% 100%;
  }
  .slide2 {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: url('./images/Banner-2.jpg')no-repeat center center;
    background-size: 100% 100%;
  }
  .slide3 {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: url('./images/Banner-3.jpg')no-repeat center center;
    background-size: 100% 100%;
  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .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: 8px!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---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: 6.1rem;
  }

  .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: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('./images/Banner-3.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: 100%;
    background: url('./images/banner-2.jpg') no-repeat center;
    background-size: 100% 100%;
    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: 130%;
    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---------*/



/*---------CASA---BELLA---START---------*/

.casabella_intro_text {
  text-transform: uppercase;
  letter-spacing: .4rem;
}

  .urban_ville_logo {
    width: 15%;
    margin-top: 1rem;
    /* background-color: var(--blacktransparent2); */
    /* padding: 2rem; */
  }

  .urban_ville_logo img {
    transition: all ease .5s;
  }

  .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_section_casabella {
    width: 91%;
    margin: auto;
    border-top: 1px solid var(--white);
  }
  
  .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);
  }
  

  .counter-section {
    padding: 60px 0;
    background: var(--white);
}

.counter-box {
    min-height: 250px;
    text-align: center;
    margin: 20px 0;
    opacity: 0; 
    /* border: 1px solid var(--black2); */
    border-right: 6px solid var(--gold);
    border-top-left-radius: 7.5rem;
    /* border-bottom-right-radius: 3.5rem; */
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all ease .5s;
}

.counter-box:hover {
  /* box-shadow: 0px 0px 5px 2px var(--gold); */
    border: 1px solid var(--red);
}

.counter {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--gold2);
    display: inline-flex;
    align-items: center; 
    font-family: 'futura'!important;
}

.counter-text {
    margin-left: 5px; 
    font-size: 2rem; 
    font-family: 'futura'!important;
}

.counter-title {
    font-size: 1.2rem;
    color: var(--gold2);
    font-family: 'futura'!important;
}

.counter-title2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold2);
    font-family: 'futura'!important;
    transition: all ease .3s;
}

@media (max-width: 768px) {
    .counter {
        font-size: 2.5rem;
    }
    
    .counter-text {
        font-size: 1.8rem;
    }
    
    .counter-title {
        font-size: 1rem;
    }

    .counter-title2 {
        font-size: 1.5rem;
    }
}

.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;
  background: var(--white);
  /* border: 1px solid var(--red); */
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  border-right: 5px solid var(--gold);
  border-top-left-radius: 1.7rem;
  color: var(--red);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.4s ease;
}

.tab-btn:hover {
    background: var(--red);
    color: var(--gold2);
    border: 1px solid var(--red);
}

.tab-btn.active {
  background: var(--red);
  color: var(--gold2);
  /* border: 1px solid var(--red); */
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  border-right: 5px solid var(--gold);
}

.tab-content {
  /* height: 36rem; */
  height: 100%;
  display: none;
  opacity: 0;
  background: var(--red);
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-top-left-radius: 3.5rem;
  border-right: 5px solid var(--gold);
}

.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;
}

.plans_imgs {
  border-top-left-radius: 3.5rem;
}

.east_plans img {
  cursor: pointer;
}
  
.swiper-pagination-fraction {
  color: var(--white)!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 {
  border:1px solid var(--red);
  color: var(--red);
  padding: .5rem .8rem;
  font-size: 1.5rem;
  transition: all ease .3s;
  position: relative;
  z-index: 2;
}

.right_arrow:hover {
  color: var(--gold);
}

.right_arrow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform ease .5s;
  z-index: -1;
}

.right_arrow:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.swiper-button-next {
  right: 1.5%!important;
  top: 96%!important;
  transition: all ease .5s!important;
}

.left_arrow {
  border:1px solid var(--red);
  color: var(--red);
  padding: .5rem .8rem;
  font-size: 1.5rem;
  transition: all ease .3s;
  position: relative;
  z-index: 2;
}

.left_arrow:hover {
  color: var(--gold);
}

.left_arrow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform ease .5s;
  z-index: -1;
}

.left_arrow:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.swiper-button-prev {
  left: 95.7%!important;
  transform: translateX(-95.7%)!important;
  top: 96%!important;
  transition: all ease .5s!important;
}

/* .mySwiper2:hover .right_arrow {
  margin: 0;
  opacity: 1;
}

.mySwiper2:hover .left_arrow {
  margin: 0;
  opacity: 1;
} */


.clubhouse_img {
  width: 95.2%;
  margin: auto;
}

.clubhouse_aminities {
  columns: 250px;
  overflow: hidden;
}

.clubhouse_aminities img {
  cursor: pointer;
}

.bg_texture {
  width: 100%;
  background: url('./images/casabella_images/bg_texture.jpg')no-repeat top center;
  background-size: cover;
}

.casabella_img_border {
    border-top-left-radius: 20vw;
}


.overview_img {
    width: 10%;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    background-color: var(--red)!important;
}

.plans_img img {
  border-top-left-radius: 15vw;
}


.plans_img_right_content h5 {
  width: fit-content;
  background-color: var(--red);
  color: var(--gold);
  border-top-left-radius: 1.5rem;
  border-right: 5px solid var(--gold);
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.plans_img_right_content h4 {
  transition: all ease .5s;
}

.plans_img_right_content p {
  transition: all ease .5s;
}

.interiors_slider {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider {
  min-width: 100%;
  height: 70vh;
}

.interiors {
  position: relative;
}

.interiors img {
  border-top-left-radius: 15vw;
}

.interiors p {
  text-transform: uppercase;
  background-color: var(--red);
  color: var(--white);
  transition: all ease .5s;
}

.slider_content h5 {
  width: fit-content;
  background-color: var(--red);
  color: var(--gold);
  border-top-left-radius: 1.5rem;
  border-right: 5px solid var(--gold);
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.slider_content h4 {
  transition: all ease .5s;
}

.slider_content p {
  transition: all ease .5s;
}

.right_img_content {
  text-transform: uppercase;
  font-size: .8rem;
  transition: all ease .5s;
}

/* .project_slider {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 2px;
}

.projects_box {
  min-width: 91%;
  height: 100%;
  padding: 0 5rem;
} */

.display_flex {
  display: flex;
}

.interior_content {
  width: 66.66%;
}

.slider_content_main {
  width: 25%;
}

.casabella_clubhouse_img img {
  border-top-left-radius: 15vw;
}

.casabella_amenity img {
  border-top-left-radius: 15vw;
}

.amenity_img p {
  text-transform: uppercase;
  background-color: var(--red);
  color: var(--white);
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.amenity_content h5 {
  width: fit-content;
  background-color: var(--red);
  color: var(--gold);
  border-top-left-radius: 1.5rem;
  border-right: 5px solid var(--gold);
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.amenity_content h4 {
  transition: all ease .5s;
}

.amenity_img_p {
  text-transform: uppercase;
  background-color: var(--red);
  color: var(--white);
  padding: .5rem 1rem;
  transition: all ease .5s;
}


.swiper_bg {
  background-color: var(--white)!important;
}

.location_image img {
  cursor: pointer;
  border-top-left-radius: 15vw;
}

/*---------CASA---BELLA---END---------*/


/*---------GALLERY-----START---------*/

  .gallery_box {
    width: 100%;
    columns: 300px;
  }

  .gallery_item {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery_item img {
    width: 100%;
    height: 100%;
    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;
  }

  .gallery_description {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  @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(--footertxt);
    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---------*/
  

  /* -----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%;
    }

    .parallax-container7 {
      height: 70vh;
    }

    .parallax-bg7 {
      height: 120%;
      background-size: 170% 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%;
    }

    .parallax-container7 {
      height: 50vh;
    }
    .parallax-bg7 {
      height: 110%;
      background-size: 150% 100%;
    }

  }

@media screen and (min-width: 300px) and (max-width: 450px) {

  header {
    padding: 1rem;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    flex-direction: column;
  }

  .animated-section {
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
    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%;
  }
  
  .logo {
    width: 25%;
  }

  .casabella_rera {
    font-size: .7rem;
    padding: .3rem .5rem;
  }

  /* .links::after{
    display: none;
  } */

  /* .banner_margin {
    margin-top: 20%;
  } */

  #main {
    padding-top: 20%;
  }

  .slide1 {
    height: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .feature_box h2 {
    font-size: 2rem;
  }

  .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 {
    height: 100%;
  }

  .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;
  }

  .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: 60%;
  }

  .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;
  }

  .villalifestyle {
    font-size: 1.1rem;
  }

  .display_flex {
    display: block;
  }
  
  .interiors_slider {
    height: 78vh;
    padding-bottom: 4rem;
  }

  .slider {
    height: 80vh;
    padding-top: 1rem;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.1rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
    margin-bottom: 2rem;
  }

}

@media screen and (min-width: 451px) and (max-width: 560px) {

  header {
    padding: 1rem;
  }

  .logo {
    width: 25%;
  }

  .menu-toggle {
    width: 35px;
  }

  .menu-container {
    flex-direction: column;
  }

  .animated-section {
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
    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: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .feature_box h2 {
    font-size: 2.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 {
    height: 100%;
  }

  .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;
  }

  .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: 45%;
  }

  .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;
  }

  .display_flex {
    display: block;
  }
  
  .interiors_slider {
    height: 78vh;
    padding-bottom: 4rem;
  }

  .slider {
    height: 80vh;
    padding-top: 1rem;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.1rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
    margin-bottom: 2rem;
  }

}

@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: 100%;
    left: 0;
    top: -100%;
    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: 14%;
  }

  .slide1 {
    height: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .feature_box h2 {
    font-size: 3rem;
  }

  .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 {
    height: 100%;
  }

  .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;
  }

  .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: 45%;
  }

  .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;
  }

  .counter {
    font-size: 1.5rem;
  }

  .counter-text {
    font-size: 1.5rem;
  }

  .counter-title2 {
    font-size: 1.5rem;
  }

  .display_flex {
    display: block;
  }
  
  .interiors_slider {
    height: 68vh;
    padding-bottom: 4rem;
  }

  .slider {
    height: 86vh;
    padding-top: 1rem;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.1rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
    margin-bottom: 2rem;
  }
 
}

@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: -100%;
    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: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .feature_box h2 {
    font-size: 3.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 {
    height: 100%;
  }

  .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;
  }

  .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: 40%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .counter {
    font-size: 1.3rem;
  }

  .counter-text {
    font-size: 1.3rem;
  }

  .counter-title2 {
    font-size: 1.3rem;
  }

  .display_flex {
    display: block;
  }
  
  .interiors_slider {
    height: 68vh;
    padding-bottom: 4rem;
  }

  .slider {
    height: 86vh;
    padding-top: 1rem;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.1rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
    margin-bottom: 2rem;
  }
  
}

@media screen and (min-width: 650px) and (max-width: 700px) {

  .urban_ville_logo {
    width: 40%;
  }
  
  .display_flex {
    display: block;
  }
  
  .interiors_slider {
    height: 68vh;
    padding-bottom: 3rem;
  }

  .slider {
    height: 86vh;
    padding-top: 1rem;
  }
  
}

@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: -100%;
    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: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .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 {
    height: 100%;
  }

  .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;
  }

  .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: 35%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .counter {
    font-size: 1.7rem;
  }

  .counter-text {
    font-size: 1.7rem;
  }

  .counter-title2 {
    font-size: 1.7rem;
  }

  .display_flex {
    display: block;
  }
  
  .interiors_slider {
    height: 68vh;
    padding-bottom: 4rem;
  }

  .slider {
    height: 86vh;
    padding-top: 1rem;
  }

  .slider_content p {
    font-size: .9rem;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.1rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
    margin-bottom: 2rem;
  }
  
}

@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;
    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: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .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 {
    height: 100%;
  }
  
  .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;
  }

  .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: 30%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .interiors_slider {
    height: 68vh;
    padding-bottom: 3rem;
  }

  .display_flex {
    display: block;
  }

  .slider {
    height: 90vh;
    padding-top: 1rem;
  }

  .slider_content p {
    font-size: .9rem;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: .9rem;
  }

  .amenity_content h5 {
    font-size: 1.1rem;
  }

  .amenity_content h4 {
    font-size: 1.2rem;
  }
  
  .amenity_content p {
    font-size: .9rem;
    margin-bottom: 2rem;
  }
  
}


@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;
    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: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .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 {
    height: 100%;
  }

  .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;
  }

  .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: 30%;
  }

  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .interiors_slider {
    height: 68vh;
    padding-bottom: 4rem;
  }

  .slider {
    height: 90vh;
    padding-top: 1rem;
  }

  .slider_content p {
    font-size: .9rem;
  }
  
  .display_flex {
    display: block;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: 1rem;
  }

  .amenity_content h5 {
    font-size: 1.2rem;
  }

  .amenity_content h4 {
    font-size: 1.3rem;
  }
  
  .amenity_content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
}

@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;
    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: 100%;
    background: none;
  }
  .slide2 {
    height: 100%;
    background: none;
  }
  .slide3 {
    height: 100%;
    background: none;
  }

  .features_section {
    height: 100%;
  }

  .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 {
    height: 100%;
  }

  .footer_section_bg {
    height: 103vh;
  }

  .footer_bg {
    height: 103vh;
    padding: 4rem 0;
  }

  .footer_links_box {
    height: 100%;
  }

  .footer_logo {
    width: 66%;
  }

  .footer_right1 {
    margin: 1rem 0 0 0;
  }

  .footer_right2 {
    margin: 1rem 0 0 0;
  }

  .about_banner_title_box {
    margin: 0;
  }

  .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: 25%;
  }
  
  .tab-content {
    height: 34%;
  }

  .master_plan {
    width: 100%;
  }

  .east_plans {
    margin: 0;
    padding-bottom: 1rem;
  }

  .interiors_slider {
    height: 85vh;
  }
  
  .slider {
    height:100vh;
  }

  .display_flex {
    display: block;
  }

  .interior_content {
    width: 100%;
  }
  
  .slider_content_main {
    width: 100%;
  }

  .amenity_img_p {
    font-size: 1rem;
  }

  .amenity_content h5 {
    font-size: 1.2rem;
  }

  .amenity_content h4 {
    font-size: 1.3rem;
  }
  
  .amenity_content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
}

@media screen and (min-width: 992px) and (max-width: 1025px) {  

  .logo {
    width: 13%;
  }

  .animated-section {
    width: 50%;
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .urban_ville_logo {
    width: 20%;
  }

  .plans_img_right_content h5 {
    font-size: 1rem;
  }

  .plans_img_right_content h4 {
    font-size: 1rem;
  }

  .plans_img_right_content p {
    font-size: .8rem;
  }

  .parallax-container7 {
    height: 70vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 150% 100%;
  }
  
  .counter {
    font-size: 1.3rem;
  }

  .counter-text {
    font-size: 1.3rem;
  }

  .counter-title2 {
    font-size: 1.3rem;
  }

  .tab-content {
    height: 100%;
  }

  .east_plans {
    margin: 0;
  }

  .display_flex {
    display: block;
  }

  .interior_content {
    width: 90%;
  }
  
  .slider_content_main {
    width: 90%;
  }

  .interiors_slider {
    height: 85vh;
  }
  
  .slider {
    height:85vh;
  }
  
  .slider_content h5 {
    font-size: .9rem;
  }

  .slider_content h4 {
    font-size: 1rem;
  }

  .slider_content p {
    font-size: .8rem;
  }

  .clubhouse_aminities {
    columns: 120px;
  }
  
  .footer_section_bg {
    height: 70vh;
  }

  .footer_bg {
    height: 70vh;
    padding: 4rem 0;
  }

  .footer_copyright {
    font-size: .61rem!important;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.05rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 94.5%!important;
    transform: translateX(-94%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.7%!important;
    top: 93%!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }
  
}

@media screen and (min-width: 1026px) and (max-width: 1111px) {

  .logo {
    width: 12%;
  }

  .urban_ville_logo {
    width: 20%;
  }

  .animated-section {
    width: 40%;
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .parallax-container7 {
    height: 70vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 150% 100%;
  }

  .plans_img_right_content h5 {
    font-size: 1rem;
  }

  .plans_img_right_content h4 {
    font-size: 1rem;
  }

  .plans_img_right_content p {
    font-size: .8rem;
  }
  
  .tab-content {
    height: 100%;
  }

  .counter {
    font-size: 1.3rem;
  }

  .counter-text {
    font-size: 1.3rem;
  }

  .counter-title2 {
    font-size: 1.3rem;
  }

  .east_plans {
    margin: 0;
  }

  .display_flex {
    display: block;
  }

  .interior_content {
    width: 90%;
  }
  
  .slider_content_main {
    width: 90%;
  }

  .interiors_slider {
    height: 75vh;
  }
  
  .slider {
    height:87vh;
  }
  
  .slider_content h5 {
    font-size: .9rem;
  }

  .slider_content h4 {
    font-size: 1rem;
  }

  .slider_content p {
    font-size: .8rem;
  }

  .clubhouse_aminities {
    columns: 120px;
  }

  .footer_section_bg {
    height: 70vh;
  }

  .footer_bg {
    height: 70vh;
    padding: 4rem 0;
  }

  .footer_copyright {
    font-size: .62rem!important;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.05rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 93.5%!important;
    transform: translateX(-94%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.7%!important;
    top: 93%!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }

}

@media screen and (min-width: 1112px) and (max-width: 1199px) {

  .logo {
    width: 12%;
  }

  .animated-section {
    width: 40%;
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .project_img {
    height: 600px;
  }

  .urban_ville_logo {
    width: 20%;
  }

  .parallax-container7 {
    height: 70vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 150% 100%;
  }

  .plans_img_right_content h5 {
    font-size: 1rem;
  }

  .plans_img_right_content h4 {
    font-size: 1.2rem;
  }

  .plans_img_right_content p {
    font-size: .85rem;
  }

  .counter {
    font-size: 1.5rem;
  }

  .counter-text {
    font-size: 1.5rem;
  }

  .counter-title2 {
    font-size: 1.5rem;
  }

  .tab-content {
    height: 370px;
  }

  .east_plans {
    margin: 0;
  }

  .display_flex {
    display: block;
  }

  .interior_content {
    width: 80%;
  }
  
  .slider_content_main {
    width: 80%;
  }

  .interiors_slider {
    height: 85vh;
  }
  
  .slider {
    height:90vh;
  }
  
  .slider_content h5 {
    font-size: .9rem;
  }

  .slider_content h4 {
    font-size: 1rem;
  }

  .slider_content p {
    font-size: .8rem;
  }

  .clubhouse_aminities {
    columns: 120px;
  }
  
  .footer_section_bg {
    height: 62vh;
  }

  .footer_bg {
    height: 62vh;
    /* padding: 4rem 0; */
  }

  .footer_copyright {
    font-size: .67rem!important;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.05rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
  }


  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 94%!important;
    transform: translateX(-95%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.7%!important;
    top: 93%!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;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .project_img {
    height: 600px;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 160% 100%;
  }

  .plans_img_right_content h5 {
    font-size: 1.2rem;
  }

  .plans_img_right_content h4 {
    font-size: 1.3rem;
  }

  .plans_img_right_content p {
    font-size: 1rem;
  }

  .counter {
    font-size: 1.5rem;
  }

  .counter-text {
    font-size: 1.5rem;
  }

  .counter-title2 {
    font-size: 1.5rem;
  }
  
  .tab-content {
    height: 390px;
  }

  .display_flex {
    display: block;
  }

  .interior_content {
    width: 80%;
  }
  
  .slider_content_main {
    width: 80%;
  }

  .interiors_slider {
    height: 75vh;
  }
  
  .slider {
    height:87vh;
  }
  
  .slider_content h5 {
    font-size: .9rem;
  }

  .slider_content h4 {
    font-size: 1rem;
  }

  .slider_content p {
    font-size: .8rem;
  }
  
  .clubhouse_aminities {
    columns: 150px;
  }

  .east_plans {
    margin: 0;
  }
  
  .footer_copyright {
    font-size: .7rem!important;
  }

  .amenity_img_p {
    font-size: .8rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.05rem;
  }
  
  .amenity_content p {
    font-size: .8rem;
  }


  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 94%!important;
    transform: translateX(-95%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.7%!important;
    top: 93%!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;
    padding: 30px;
    backdrop-filter: blur(0);
  }

  .counter {
    font-size: 1.5rem;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 160% 100%;
  }

  .plans_img_right_content h5 {
    font-size: 1.2rem;
  }

  .plans_img_right_content h4 {
    font-size: 1.3rem;
  }

  .plans_img_right_content p {
    font-size: 1rem;
  }
  
  .counter-text {
    font-size: 1.5rem;
  }

  .counter-title2 {
    font-size: 1.5rem;
  }

  .tab-content {
    height: 420px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }
  
  .slider_content h5 {
    font-size: .9rem;
  }

  .slider_content h4 {
    font-size: 1rem;
  }

  .slider_content p {
    font-size: .8rem;
  }
  
  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .amenity_img_p {
    font-size: .9rem;
  }

  .amenity_content h5 {
    font-size: 1rem;
  }

  .amenity_content h4 {
    font-size: 1.2rem;
  }
  
  .amenity_content p {
    font-size: 1rem;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 95%!important;
    transform: translateX(-95%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.4%!important;
    top: 93%!important;
  }

  .footer_links a {
    font-size: .75rem!important;
  }
  
}

@media screen and (min-width: 1351px) and (max-width: 1399px) {

  .logo {
    width: 10%;
  }

  .animated-section {
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .counter {
    font-size: 1.7rem;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 160% 100%;
  }

  .counter-text {
    font-size: 1.7rem;
  }

  .counter-title2 {
    font-size: 1.7rem;
  }

  .tab-content {
    height: 430px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }
  
  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 95%!important;
    transform: translateX(-95%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.5%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 1400px) and (max-width: 1415px) {

  .logo {
    width: 9%;
  }

  .animated-section {
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 160% 100%;
  }

  .tab-content {
    height: 440px;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 150px;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 95%!important;
    transform: translateX(-95%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.3%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 1416px) and (max-width: 1500px) {

  .logo {
    width: 9%;
  }

  .animated-section {
    right: 0;
    padding: 30px;
    backdrop-filter: blur(0);
  }
  
  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 140% 100%;
  }
  
  .tab-content {
    height: 28.5rem;
  }

  .east_plans {
    margin: 0;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 200px;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 95%!important;
    transform: translateX(-95%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.3%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 1501px) and (max-width: 1600px) {

  .logo {
    width: 9%;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 140% 100%;
  }

  .tab-content {
    height: 29rem;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 170px;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 95.5%!important;
    transform: translateX(-95.5%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1.3%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 1601px) and (max-width: 1650px) {

  .logo {
    width: 9%;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 120% 100%;
  }

  .tab-content {
    height: 31rem;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }

  .project_img {
    height: 600px;
  }

  .clubhouse_aminities {
    columns: 200px;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 96%!important;
    transform: translateX(-96%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 1651px) and (max-width: 1750px) {

  .logo {
    width: 9%;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 120% 100%;
  }

  .tab-content {
    height: 32rem;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:35vh;
  }


  .project_img {
    height: 600px;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 95.99%!important;
    transform: translateX(-95.99%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 1751px) and (max-width: 1800px) {

  .logo {
    width: 9%;
  }

  .parallax-container7 {
    height: 100vh;
  }

  .parallax-bg7 {
    height: 120%;
    background-size: 120% 100%;
  }

  .tab-content {
    height: 33rem;
  }

  .project_img {
    height: 600px;
  }

  .interiors_slider {
    height: 59vh;
  }
  
  .slider {
    height:59vh;
  }

  .left_arrow {
    font-size: 1rem!important;
  }

  .right_arrow {
    font-size: 1rem!important;
  }

  .swiper-button-prev {
    left: 96%!important;
    transform: translateX(-96%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1%!important;
    top: 93%!important;
  }
  
}

@media screen and (min-width: 18001) and (max-width: 2000px) {

  .left_arrow {
    font-size: 1.2rem!important;
  }

  .right_arrow {
    font-size: 1.2rem!important;
  }

  .swiper-button-prev {
    left: 90%!important;
    transform: translateX(-90%)!important;
    top: 93%!important;
  }

  .swiper-button-next {
    right: 1%!important;
    top: 93%!important;
  }
  
}

