
/* ---------- Poppins Regular ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/Poppins/Poppins-Italic.ttf') format('truetype');
}

/* ---------- Poppins Thin ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/Poppins/Poppins-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/Poppins/Poppins-ThinItalic.ttf') format('truetype');
}

/* ---------- Poppins ExtraLight ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/Poppins/Poppins-ExtraLightItalic.ttf') format('truetype');
}

/* ---------- Poppins Light ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/Poppins/Poppins-LightItalic.ttf') format('truetype');
}

/* ---------- Poppins Medium ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/Poppins/Poppins-MediumItalic.ttf') format('truetype');
}

/* ---------- Poppins SemiBold ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/Poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
}

/* ---------- Poppins Bold ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/Poppins/Poppins-BoldItalic.ttf') format('truetype');
}

/* ---------- Poppins ExtraBold ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/Poppins/Poppins-ExtraBoldItalic.ttf') format('truetype');
}

/* ---------- Poppins Black ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/Poppins/Poppins-BlackItalic.ttf') format('truetype');
}
* {
  font-family: "Poppins", sans-serif !important;
  color: #000000;
}
.section-margin {
  margin: 32px auto;
}
.hero-section {
  background: url("http://www.nycpenthouse.info/wp-content/uploads/2025/08/hero-section-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section__container {
  overflow: hidden;
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-section__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12.4px);
  z-index: 0;
}
.hero-section__container > * {
  position: relative;
  z-index: 1;
}
.hero-section__container img {
  width: 64px;
  margin-bottom: 8px;
}
.hero-section__container h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 100%; 
}
.hero-section__container h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 24px;
  text-align: center;
}
.main-btn {
  padding: 12px 32px;
  border-radius: 136px;
  color: #000000;
  background-color: transparent;
  border: 1px solid #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
.main-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.text-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.text-content.expanded {
  display: block !important;     
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}
.secondary-btn {
  background-color: transparent;
  border: 0.45px solid #000000;
  border-radius: 61px;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.5s ease;
  margin-top: 16px;
  padding: 12px 32px;
}
.secondary-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.mail-btn {
  background-color: transparent !important;
  border: 0.45px solid #000000 !important;
  border-radius: 61px !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 100% !important;
  color: #000000 !important;
  text-decoration: none !important;
  transition: background-color 0.5s ease !important;
  margin-top: 16px !important;
  padding: 12px 32px !important;
  margin-bottom: 0 !important;
}

.mail-btn:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.ride-overview-section {
  height: auto;
  background-color: #e0d8ce;
  padding-top: 24px;
  padding-bottom: 24px;
}
.ride-overview-section__card {
  gap: 12px;
}
.card__text-wrapper h5 {
  font-size: 21px;
  font-weight: 600;
  line-height: 100%;
}
.card__text-wrapper h6 {
  font-size: 19px;
  font-weight: 800;
  line-height: 100%;
}
.card__text-wrapper p {
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  min-height: 24px;
}
.card__img-wrapper {
  width: 85px !important;
  height: 85px !important;
}
.card__img-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.card__vertical-separator {
  width: 1px;
  background-color: #000000;
}
.card__horizontal-separator {
  height: 1px;
  background-color: #000000;
  margin: 16px 0;
}
.section-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 2%;
  text-align: center;
}
.section-separator {
  width: 184px;
  height: 1px;
  background-color: #000000;
  margin-top: 8px;
  margin-bottom: 24px;
}
.service-section {
}
.service-section__container {
  transform: translateX(-0.5px);
}
.container__border {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 100%;
}
.container__top-container {
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: visible;
}
.carousel-item img {
  object-fit: cover;
  object-position: bottom;
}
.service-section__bottom-container {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 2;
}
.service-section__bottom-container ul li {
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 8px;
}
.container__vertical-separator {
  width: 1px;
  background-color: #000000;
  margin: 0 10px;
  margin-bottom: calc(1rem + 16px);
  transform: translateY(-0.5px);
}
.item__white-block {
  overflow: hidden;
  position: relative;
}
.item__white-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.53);
  backdrop-filter: blur(12.4px);
  z-index: 0;
}
.item__white-block {
  overflow: hidden;
  width: 100%;
  height: 33%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.item__white-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.53);
  backdrop-filter: blur(12.4px);
}
.item__image-top-position {
  object-position: center 25%;
}
.gallery-section {
}
.gallery-section__item {
  overflow: hidden;
  height: 570px;
  margin-bottom: 16px;
}
.gallery-section__item h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 12px;
  z-index: 1;
}
.gallery-section__item p {
  font-size: 11px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 100px;
  z-index: 1;
}
.gallery-section__item img {
  z-index: 0;
}
.item__white-block {
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.container__form input, .container__form textarea {
  font-size: 16px;
}
.container__form input {
  padding-top: 6px;
  padding-left: 12px;
  padding-bottom: 36px;
  border: 0.53px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 16px;
}
.container__form input:focus {
  outline: none; 
  border: 0.53px solid #000000;
}
.container__form textarea { 
  padding-top: 6px;
  padding-left: 12px;
  padding-bottom: 112px;
  border: 0.53px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  font-weight: 400;
  line-height: 100%;
  resize: none;
  margin-bottom: 16px;
}
.container__form textarea:focus {
  outline: none; 
  border: 0.53px solid #000000;
}
.container__google-maps-container, .container__google-maps-container iframe {
  border-radius: 15px;
}
.map-section {
  border-radius: 15px;
  height: 50vw;
}
.footer-section p {
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 364px) {
  .container__top-container {
  }
  .gallery-section {
  }
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 2.22px;
  }
  .section-separator {
    width: 184px;
    margin-top: 14px;
  }
  .hero-section__container img {
    width: 88px;
    margin-bottom: 12px;
  }
  .hero-section__container h2 {
    font-size: 32px;
  }
  .hero-section__container h1 {
    font-size: 64px;
    margin-bottom: 32px;
  }
  .main-btn {
    padding: 14px 44px; 
    font-size: 23px;
  }
  .text-content {
    font-size: 16px;
  }
  .secondary-btn {
    padding: 14px 44px; 
    font-size: 23px;
    margin-top: 32px;
  }
  .mail-btn {
    padding: 14px 44px !important; 
    font-size: 23px !important;
    margin-top: 32px !important;
  }
  .ride-overview-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .container__vertical-separator {
    height: 191.5px;
  }
  .container__top-container {
  }
  .service-section__bottom-container {
    gap: 40px;
  }
  .gallery-section {
  }
  .gallery-section__item {
    margin-bottom: 20px; 
  }
  .item__white-block {
    height: 40%;
  }
  .card__img-wrapper {
    width: 60px !important;
    height: 60px !important;
  }
  .card__horizontal-separator {
    margin: 20px 0;
  }
  .gallery-section__item h3 {
    font-size: 24px;
  }
  .gallery-section__item p {
    font-size: 16px;
  }
  .service-section__bottom-container ul li {
    font-size: 16px;
  }
  .container__form input {
    padding-top: 4px;
    padding-bottom: 36px;
    padding-left: 12px;
    font-size: 14px;
  }
  .container__form textarea {
    padding-left: 12px;
    padding-top: 4px;
    padding-bottom: 100px;
    font-size: 14px;
  }
  .map-section {
    border-radius: 0;
  }
  .footer-section p {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1999.98px) {
  .fluid-md {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .section-margin {
    margin-top: 24px;
    margin-bottom: 64px;
  }
  .section-heading {
    margin-top: 86px;
    font-size: 50px;
    line-height: 128%;
    margin-bottom: 6px;
  }
  .section-separator {
    width: 532px;
    margin: 40px 0; 
  }
  .hero-section__container {
    width: 60%;
    position: relative;
    height: 100%;
  }
  .hero-section__container img {
    width: 140px;
    margin-bottom: 24px;
  }
  .hero-section__container h2 {
    font-size: 52px;
  }
  .hero-section__container h1 {
    font-size: 105px;
    margin-bottom: 64px;
  }
  .main-btn {
    padding: 16px 56px;
    font-size: 26px;
  }
  .secondary-btn {
    padding: 16px 56px;
    font-size: 26px;
  }
  .mail-btn {
    padding: 16px 56px !important;
    font-size: 26px !important;
  }
  .text-content {
    font-size: 19px;
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
  }
  .ride-overview-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .card__horizontal-separator {
    margin: 24px 0;
  }
  .container__vertical-separator {
    height: 216.5px;
  }
  .service-section__bottom-container {
  }
  .gallery-section {
  }
  .gallery-section__item {
    margin-bottom: 36px; 
  }
  .gallery-section__item .container {
    justify-content: center !important;
    align-items: start !important;
  }
  .gallery-section__item h3 {
    font-size: 40px;
    width: 15vw;
  }
  .gallery-section__item p {
    font-size: 22px;
    width: 20vw;
    margin-bottom: 24px;
  }
  .object-top {
    object-position: 50% 27% !important;
  }
  .card__img-wrapper {
    width: 85px !important;
    height: 85px !important;
  }
  .item__white-block {
    width: 45%;
    height: 100% !important;
  }
  .card__text-wrapper p {
    width: 75%;
  }
  .container__border {
    top: 40px;
  }
  .container__top-container {
  } 
  .service-section__bottom-container {
  }
  .gallery-section {
  }
  .service-section__bottom-container ul li {
    font-size: 19px;
    margin-bottom: 16px;
  }
  .container__form input {
    padding-left: 22px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 24px;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
  } 
  .container__form textarea {
    padding-left: 22px;
    padding-top: 20px;
    padding-bottom: 200px;
    margin-bottom: 24px;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
  }
  .footer-section p {
    font-size: 32px;
  }
}

@media (min-width: 1200px) {
  .container__vertical-separator {
    height: 216.5px;
  }
}