@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  z-index: 100;
  padding: 1px !important;
}

.navbar-brand img {
  max-height: 50px;
}

@media(max-width: 1200px) {
  .navbar-brand img {
    max-height: 35px;
  }

  .navbar {
    padding: 0.4rem 0.4rem !important;
    text-align: center;
  }
}

.navbar-toggler {
  color: #000 !important;
  font-size: 1.4rem;
  font-weight: bold;
}

.navbar-nav {
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #262f46;
}

.nav-link:hover {
  color: #dfb83f;
}

.container-flex {
  display: flex;
}


/*----------------------css popup code for all login forms one time written and apply for all-------------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow: auto;
}

.popup-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 30px;
  border: 1px solid #888;
  max-width: 450px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #262f46;
  font-family: "Lobster", serif;
  font-size: 26px;
  text-align: center;
}

.popup-content .labelpara {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  margin-top: 10px;
}

.popup-content input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.popup-content .form-group {
  margin-bottom: 20px;
}

.input-group-prepend .input-group-text {
  background-color: #ddd;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  color: #262f46;
}

.input-group-text i {
  font-size: 1.2rem; 
}

.submit-button {
  font-size: 1.2rem;
  display: block;
  width: 100%;
  padding: 8px 16px;
  background-color: #262f46;
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #080d18;
  color: #fff;
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.2rem;
  }
}


/*------------------Home Page Section--------------*/
.carousel-inner img {
  height: 650px;
  object-fit: cover;
  width: 100%;
}

.fixed-offer-box {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  width: 350px;
  z-index: 10;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  backdrop-filter: blur(12px);
  border: 1px solid #dfb83f;
}

.fixed-offer-box:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.offer-heading {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  color: #fff;
}

.offer-details-container {
  background: rgba(22, 24, 40, 0.2);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.offer-detail {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(152, 152, 200, 0.3);
}

.offer-detail:first-of-type {
  margin-top: 0;
}

.offer-detail:last-of-type {
  margin-bottom: 0;
}

.offer-apartments {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.offer-price {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.offer-price span {
  font-size: 12px;
  color: #fff;
  margin: 0 5px;
}

.offer-price strong {
  font-size: 1.4rem;
  color: #dfb83f;
  font-weight: 700;
}

.btn-enquire-now {
  background: linear-gradient(90deg, #dfb83f, #6b5921, #dfb83f);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.btn-enquire-now:hover {
  background: linear-gradient(90deg, #6b5921, #262f46, #6b5921);
  transform: scale(1.05);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .carousel-inner img {
    height: 360px;
    width: 100%;
    object-fit: cover;
  }

  .fixed-offer-box {
    position: relative !important;
    width: calc(100% - 30px);
    margin: 10px 0;
    box-shadow: none;
    border-radius: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 2px solid #dfb83f;
  }

  .offer-heading {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .offer-details-container {
    padding: 10px;
  }

  .offer-detail {
    font-size: 14px;
    letter-spacing: 0px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
  }

  .offer-apartments {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 0px;
    text-align: center;
  }

  .offer-price {
    letter-spacing: 0px;
    text-align: center;
    font-size: 22px;
  }

  .btn-enquire-now {
    display: block;
    width: 100%;
    text-align: center;
    padding: 6px 12px;
    font-size: 1.2rem;
  }
}


/*---------------Overview Section-------------------*/
.overview-section {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  padding: 60px 20px;
  margin: 20px auto;
  max-width: 1200px;
  position: relative;
}

.overview-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.overview-text {
  flex: 1;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.overview-text h2 {
  font-size: 30px;
  color: #262f46;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.overview-description {
  font-size: 16px;
  color: #333437;
  line-height: 1.6;
  margin-bottom: 20px;
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.overview-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.overview-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid #dfb83f;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.overview-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }

  .overview-section {
    padding: 20px;
  }

  .overview-text {
    max-width: none;
    padding: 10px;
    text-align: left;
  }

  .overview-image {
    margin-top: 10px;
  }

  .overview-image img {
    width: 100%;
    height: auto;
  }

  .overview-text h2 {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .overview-description {
    font-size: 14px;
  }

  .overview-features li {
    font-size: 14px;
  }

}

/*--------------Amenities Section-------------*/
.amesection {
  margin: 1vw 0;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  position: relative;
  overflow: hidden;
  padding: 30px 40px;
  -moz-padding-end: 30px;
  -moz-padding-start: 30px;
}

.amesection {
  background-color: #fff;
  letter-spacing: .03vw;
}

.amenitieshead{
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.ami_sec {
  position: relative;
}

.ami_sec img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.ami_sec p {
  position: absolute;
  bottom: 4px;
  left: 16px;
  background: #262f46;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
}

.owl-nav button span {
  font-size: 40px;
  position: relative;
  top: -20px;
  font-weight: bold;
}

/* .owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
} */

.owl-nav button.owl-next {
  right: 0;
  margin-right: -20px !important;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
  font-family: serif !important;
  background: #fff !important;
  width: 50px;
  height: 50px;
  line-height: 85px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  opacity: 0.4;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  pointer-events: all;
}

.owl-nav .owl-prev {
  margin-left: 10px;
}

.owl-nav .owl-next {
  margin-right: 10px;
}

/* #ami-3.owl-carousel.owl-loaded {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  color: #000;
  background-size: cover;
  border-radius: 2vw;
} */

@media(max-width: 991px){
  .amenitieshead{
    font-size: 1.5rem;
  }

  .ami_sec img{
    margin-bottom: 1px;
  }

  .ami_sec p {
    font-size: 12px;
  }

  .owl-theme .owl-nav {
    margin-top: 1px;
  }

  .owl-nav button.owl-next {
    margin-right: -5px !important;
  }
}

/*--------------------Configuration----------------*/
.configuration-section {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 1200px;
}

.section-heading {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.configuration-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.configuration-table th,
.configuration-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #939393;
}

.configuration-table th {
  background-color: #262f46;
  color: #fff;
  font-weight: 600;
}

.configuration-table tr:hover {
  background-color: #e9ecef;
}

.config-button{
  background: linear-gradient(90deg, #46370b, #262f46, #46370b);
  padding: 8px 16px;
  color: #fff;
  border-radius: 10px;
}

@media(max-width: 991px){
  .configuration-section{
    padding: 10px 10px;
  }

  .configuration-table th,
  .configuration-table td {
    font-size: 12px;
  }

  .section-heading{
    font-size: 1.5rem;
  }

}

/*-------------Floor Plan Section------------*/
#plans {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  margin-bottom: 20px;
}

.floor-plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.floor-plan-image {
  max-width: 400px;
  border: 1px solid #262f46;
  padding: 10px;
  text-align: center;
}

.floor-plan-image img {
  max-width: 100%;
  height: 200px;
  filter: blur(2px);
}

.floor-plan-button {
  display: block; 
  margin-top: 10px;
  padding: 5px 12px;
  background: linear-gradient(90deg, #46370b, #262f46, #46370b);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  width: 100%; 
}

.floor-plan-button:hover {
  background: #262f46;
  color: #fff;
  cursor: pointer;
}

.masterhead {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.floor-plan-image.master-plan {
  max-width: 350px;
  width: 100%;
}

.floor-plan-image.master-plan img {
  height: auto;
  filter: blur(2px);
}

@media screen and (max-width: 768px) {
  .floor-plan-container {
    flex-direction: column; 
    align-items: center; 
  }

  #plans {
    padding: 10px;
  }
  
  .floor-plan-image {
    width: 100%;
  }

  .floor-plan-image img {
    width: 100%; 
  }

  .masterhead {
    font-size: 1.5rem;
  }

}



/*-------------------Location Section----------------*/
.location-section {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  padding: 20px;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-top: 30px;
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-category {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.location-group {
  background-color: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.icon-container {
  font-size: 2rem;
  color: #262f46;
  margin-bottom: 15px;
}

.group-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #262f46;
  margin-bottom: 15px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  font-size: 12px;
  color: #262f46;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

.location-list li i {
  font-size: 1.2rem;
  color: #dfb83f;
  margin-right: 10px;
}

.location-list li:hover {
  color: #262f46;
  transform: translateX(5px);
}

.full-width {
  grid-column: span 1;
}

@media (max-width: 991px) {
  .location-section{
     padding: 2px;
  }

  .location-content {
    padding: 10px;
  }

  .location-category {
    margin-bottom: 20px;
  }

  .location-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-group {
    width: 100%;
    padding: 15px;
    box-shadow: none;
  }

  .category-title{
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .group-title {
    font-size: 1.2rem;
  }

  .location-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

/*------------------------Contact Section----------------*/
.footer {
  background-color: #fff;
  color: #333;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.footer-heading {
  color: #262f46;
  font-size: 1.75rem;
  font-weight: 600;
}

.footer .form-control {
  border-radius: 0.25rem;
  border: 1px solid #dfb83f;
}

.footer .form-control:focus {
  border-color: #262f46;
  box-shadow: none;
}

.footer .btn-cnt {
  background-color: #262f46;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  padding: 8px 16px;
}

.footer .btn-cnt:hover {
  background-color: #dfb83f;
  color: #000;
}

@media (max-width: 768px) {
  .footer .form-row {
    flex-direction: column;
  }

  .footer .form-group {
    margin-bottom: 1rem;
  }
  
  .footer .form-group.col-md-6 {
    width: 100%;
  }
  
  .footer .btn-cnt {
    width: 100%;
    padding: 10px;
  }
  
  .footer .col-md-4 {
    margin-top: 20px; 
  }

  .footer {
    padding: 0;
  }
}

/*---------------Footer Section---------------------*/
.rera-sec {
  padding: 30px 0px;
  background: #131825;
  color: #fff;
  background-size: contain;
  background-attachment: initial;
  background-position: initial;
  background-repeat: no-repeat;
 }
 
 .rera-sec img {
  width: 80px;
  margin-bottom: 10px;
  margin: 10px auto;
  text-align: center;
  display: block;
 }
 
 .footer-text {
  color: #fff;
  font-weight: 400;
 }
 
 .footer-text a{
   color: #dfb83f;
   font-weight: 600;
 }
 
 .foote-wrap p {
  text-align: center;
  margin-top: 7px;
  color: #fff;
  font-weight: 400;
 }
 
 .disclpara{
  padding: 10px;
 }
 
 .privacy-policy-link{
   color: #dfb83f;
 }
 
 .privacy-policy-link:hover{
  color: #fff;
  text-decoration: underline;
 }
 
 @media(max-width: 768px){
  .rera-sec{
    margin-bottom: 40px;
  }
  
  .footer-text {
    font-size: 12px;
  }

  .disclpara {
    font-size: 12px;
  }

 }
 
 /*-------------------------mobile section contact-----------------------*/
 .mob-action {
   display: block !important;
   position: fixed !important;
   bottom: 0 !important;
   left: 0 !important;
   width: 100% !important;
   background-color: #262f46 !important;
   box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%) !important;
   z-index: 1030 !important;
 }
 
 .mob-action ul {
   display: flex !important;
   flex-direction: row !important;
   align-content: center !important;
   list-style: none !important;
   padding: 0 !important;
   margin: 5px 0 !important;
   justify-content: space-around !important;
   align-items: center !important;
   font-size: 10px;
 }
 
 .mobile-view {
   display: none;
 } 
 
 @media (max-width: 991px) {
   .mobile-view {
     display: block;
   } 
 }

 .ola_uber_mobile {
  padding: 0 10px;
  height: 30px;
  bottom: 0;
  left: 0;
  color: #fff !important;
  text-align: center;
  box-shadow: 2px 3px 15px 0px #100f0f;
  z-index: 100;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  text-shadow: none;
  font-size: 12px;
  font-weight: 500;
  background-color: #6b5921;
  cursor: pointer;
} 
 
 
/*----------------Left Side Code------------*/
.left-side {
  width: 75%;
  background-color: #fff;
  padding: 0px;
}

/*----------------Right Side Code------------*/
.right-side {
  width: 25%;
  padding: 20px;
  background: linear-gradient(145deg, #ffffff, #f7f7f7);
  border-radius: 15px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-side.hidden {
  transform: translateX(100%);
}

.header-title {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.contact-icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-icon {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #46370b, #262f46, #46370b);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  flex: 1;
  text-align: center;
}

.contact-icon:hover {
  background: #262f46;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
}

.contact-icon i {
  margin-right: 8px;
  font-size: 1.4rem;
}

.contact-icon .fa-phone,
.contact-icon .fa-whatsapp {
  color: #fff;
}

.form-title {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.right-side form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.right-side form input,
.right-side form button {
  padding: 12px;
  border: 1px solid #262f46;
  border-radius: 10px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.right-side form input:focus,
.right-side form button:hover {
  border-color: #dfb83f;
}

.right-side form input[type="text"],
.right-side form input[type="email"],
.right-side form input[type="tel"] {
  width: 100%;
}

.right-side form button {
  background: linear-gradient(90deg, #46370b, #262f46, #46370b);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: background-color 0.3s, transform 0.3s;
}

.right-side form button:hover {
  background-color: #262f46;
  transform: scale(1.05);
}

.btn-free-cab {
  display: block;
  padding: 8px 16px;
  border: 2px solid #262f46;
  background-color: #ffffff;
  color: #262f46;
  border-radius: 12px;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-top: 20px;
}

.btn-free-cab:hover {
  background-color: #dfb83f;
  color: #000;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.mob-form {
  display: none;
}

@media (max-width: 991px) {
  .right-side {
    display: none;
  }

  .left-side{
    width: 100%;
  }

}

@media (max-width: 576px) {
  .right-side {
    display: none;
  }

  .left-side{
    width: 100%;
  }

}
