@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: "ClashDisplay-Variable";
  src: url("../fonts/ClashDisplay-Variable.woff2") format("woff2"), url("../fonts/ClashDisplay-Variable.woff") format("woff"), url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
:root {
  --main-font: "Cormorant Garamond", serif;
  --sub-font: "ClashDisplay-Variable";
  --primary-color: #1E2543;
  --secondary-color: #DA934A;
  --third-color: #EEEAE5;
  --menu-width: 100%;
  --menu-bg: #fff;
  --menu-text-color: #000;
  --hover-bg: #1E2543;
  --close-bg: red;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

@media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px !important;
  }
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#preloader .loader {
  width: 200px;
}
#preloader .loader img {
  width: 200px;
  position: static;
}

.fade-out {
  opacity: 0;
  visibility: hidden;
}

.jhon-cta-link {
  text-decoration: none !important;
  color: inherit !important;
}
.jhon-cta-link .jhon-cta {
  width: 264px;
  height: 57px;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sub-font);
  transition: 350ms ease;
}

.jhon-cta:hover {
  background-color: #fff;
  color: #000;
  scale: 0.95;
}

.active-mob {
  right: 0px;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.12);
  color: white;
  text-align: center;
  padding: 20px 20px;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
  z-index: 999;
}
.sticky-nav ul {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sticky-nav ul {
    gap: 25px !important;
  }
}
.sticky-nav ul li {
  list-style: none;
}
.sticky-nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: 250ms ease;
  padding: 0px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sticky-nav ul li a {
    font-size: 12px;
  }
}
.sticky-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  transition: transform 250ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
.sticky-nav ul li a:hover::after {
  transform: scaleX(1);
}
@media only screen and (max-width: 991px) {
  .sticky-nav img {
    width: 100px;
  }
}

#slideMenu {
  transform: translateX(100%);
  transition: transform 0.5s ease;
  visibility: hidden;
  opacity: 0;
}

#slideMenu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition: transform 0.5s ease, visibility 0s;
}

#slideMenu.show-content a {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#slideMenu a {
  opacity: 0;
}

.menu-container .menu-button {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 5px;
  padding: 5px 15px;
  cursor: pointer;
  font-size: 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: var(--menu-width);
  height: 100vh;
  background-color: var(--menu-bg);
  color: var(--menu-text-color);
  transition: right 0.3s ease-in-out;
  padding-top: 60px;
  text-align: center;
}
.menu .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--menu-text-color);
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.menu a {
  display: block;
  color: var(--menu-text-color);
  padding: 15px;
  text-decoration: none;
  font-family: var(--sub-font);
}
.menu a:hover {
  background-color: var(--hover-bg);
  color: #fff;
}

.menu.active {
  right: 0;
}

.nav-bar-sp {
  background-image: url(images/hero\ img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 850px;
  padding-top: 18px;
}
.nav-bar-sp .social-media-wrap {
  bottom: 50px;
  left: 50px;
  gap: 20px;
}
.nav-bar-sp .social-media-wrap .social-media {
  transition: 250ms ease-out;
  width: 35px;
  height: 35px;
  padding: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
  position: relative;
}
.nav-bar-sp .social-media-wrap .social-media span {
  position: absolute;
}
.nav-bar-sp .social-media-wrap .social-media .s-h-1,
.nav-bar-sp .social-media-wrap .social-media .s-h-3 {
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
}
.nav-bar-sp .social-media-wrap .social-media .s-h-1 {
  top: 0;
  left: 0;
  transform-origin: left;
  transform: scale(0);
}
.nav-bar-sp .social-media-wrap .social-media .s-h-3 {
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scale(0);
}
.nav-bar-sp .social-media-wrap .social-media .s-h-2,
.nav-bar-sp .social-media-wrap .social-media .s-h-4 {
  width: 2px;
  height: 100%;
  background-color: var(--secondary-color);
}
.nav-bar-sp .social-media-wrap .social-media .s-h-2 {
  top: 0;
  right: 0;
  transform-origin: top;
  transform: scaleY(0);
}
.nav-bar-sp .social-media-wrap .social-media .s-h-4 {
  top: 0;
  left: 0;
  transform-origin: bottom;
  transform: scaleY(0);
}
.nav-bar-sp .social-media-wrap .social-media:hover .s-h-1 {
  transform: scaleX(1);
  transition: 0.2s;
  transition-delay: 0.1s;
}
.nav-bar-sp .social-media-wrap .social-media:hover .s-h-2 {
  transform: scaleY(1);
  transition: 0.2s;
  transition-delay: 0.2s;
}
.nav-bar-sp .social-media-wrap .social-media:hover .s-h-3 {
  transform: scaleX(1);
  transition: 0.2s;
  transition-delay: 0.4s;
}
.nav-bar-sp .social-media-wrap .social-media:hover .s-h-4 {
  transform: scaleX(1);
  transition: 0.2s;
  transition-delay: 0.5s;
}
.nav-bar-sp .navbar-nav {
  gap: 42px;
}
.nav-bar-sp .navbar-nav .nav-text {
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--third-color) !important;
  transition: 250ms ease;
  position: relative;
  text-decoration: none;
  padding: 0px;
}
.nav-bar-sp .navbar-nav .nav-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  transition: transform 250ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
.nav-bar-sp .navbar-nav .nav-text:hover::after {
  transform: scaleX(1);
}
.nav-bar-sp .navbar-nav .nav-text:hover {
  color: var(--secondary-color) !important;
}
.nav-bar-sp .hero-sp .hero-align {
  padding-inline: 100px;
}
.nav-bar-sp .hero-sp .hero-align .hero-text {
  height: 729px;
}
.nav-bar-sp .hero-sp .hero-align .hero-text h2 {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--sub-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.nav-bar-sp .hero-sp .hero-align .hero-text h1 {
  font-size: 96px;
  font-weight: 600;
  font-family: var(--main-font);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  width: 921px;
  line-height: 95px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 93px;
}

.sec-2-sp {
  margin-top: 110px;
}
.sec-2-sp .sec-2-text-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--primary-color);
  width: 486px;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 68px;
  /* or 97% */
  letter-spacing: -0.04em;
}
.sec-2-sp .sec-2-text-wrap h3 {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--sub-font);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-2-sp .sec-2-text-wrap .sec-2-phara-1,
.sec-2-sp .sec-2-text-wrap .sec-2-phara-2 {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--sub-font);
  line-height: 31px;
  width: 538px;
  color: var(--primary-color);
  margin-bottom: 23px;
}
.sec-2-sp .sec-2-text-wrap .sec-2-phara-3 {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--sub-font);
  color: var(--secondary-color);
  letter-spacing: 0.04em;
}

.sec-3-sp {
  padding-top: 95px;
  padding-bottom: 105px;
  background-color: var(--third-color);
}
.sec-3-sp .sec-3-text-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: var(--main-font);
  letter-spacing: -0.04em;
  margin-bottom: 15px;
}
.sec-3-sp .sec-3-text-wrap h3 {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--sub-font);
  color: var(--secondary-color);
  margin-bottom: 40px;
}
.sec-3-sp .sec-3-images-wrap {
  gap: 20px;
  width: 100%;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels {
  flex: 1;
  height: 600px;
  transition: flex 0.5s ease, all 0.3s ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-inline: 31px;
  padding-bottom: 35px;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show h5 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--sub-font);
  margin-bottom: 8px;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show p {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--sub-font);
  letter-spacing: 0.5px;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show a {
  font-family: var(--sub-font);
  font-size: 18px;
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show a:hover i {
  transform: translateX(5px);
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels #includes-show a:hover {
  color: var(--secondary-color);
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels.active #includes-show {
  opacity: 1;
  visibility: visible;
}
.sec-3-sp .sec-3-images-wrap .sec-3-panels:hover {
  flex: 2;
}

.sec-4-sp {
  margin-top: 120px;
}
.sec-4-sp .sec-4-text-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 20px;
}
.sec-4-sp .sec-4-text-wrap p {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--sub-font);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 70px;
}
.sec-4-sp .sec-4-card-wrap {
  width: 100%;
  height: 287px;
  border: 1px solid var(--third-color);
  padding: 39px 40px 31px 27px;
  transition: 350ms ease;
}
.sec-4-sp .sec-4-card-wrap h3 {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--sub-font);
  text-transform: uppercase;
  margin-top: 17px;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.sec-4-sp .sec-4-card-wrap p {
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 400;
  font-family: var(--sub-font);
  line-height: 19px;
  color: var(--primary-color);
}
.sec-4-sp .sec-4-card-wrap:hover h3 {
  color: var(--secondary-color);
}
.sec-4-sp .sec-4-card-wrap:hover p {
  color: #FFFFFF;
}
.sec-4-sp .sec-4-card-wrap:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  transform: translateY(-10px);
}
.sec-4-sp .sec-4-btn-wrap {
  margin-top: 44px;
}
.sec-4-sp .sec-4-btn-wrap .sec-4-btn {
  background-color: var(--primary-color) !important;
  border: none !important;
}
.sec-4-sp .sec-4-btn-wrap .sec-4-btn:hover {
  color: #fff !important;
}

.sec-5-sp {
  margin-top: 120px;
  padding-block: 112px;
  background-color: var(--third-color);
}
.sec-5-sp .sec-5-title-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: var(--main-font);
  letter-spacing: -0.04em;
  margin-bottom: 55px;
}
.sec-5-sp .sec-5-review-slider-wrap .review-quma {
  left: 31px;
  top: -27px;
}
.sec-5-sp .sec-5-review-slider-wrap .sec-5-review-hi {
  margin-top: 27px !important;
}
.sec-5-sp .sec-5-review-slider-wrap .sec-5-review-hi .sec-5-review-card-wrap {
  width: 100%;
  height: 258px;
  background-color: #fff;
  padding: 40px 30px 21px 30px;
}
.sec-5-sp .sec-5-review-slider-wrap .sec-5-review-hi .sec-5-review-card-wrap .text-content p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--sub-font);
  line-height: 21px;
  color: var(--primary-color);
  margin-bottom: 0px;
  margin-top: 15px;
}
.sec-5-sp .sec-5-review-slider-wrap .sec-5-review-hi .sec-5-review-card-wrap .profile p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--sub-font);
  margin: 0px 0px 0px 12px;
}

.your-home-sp {
  background-image: url(images/your-homebg-img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 680px;
}
.your-home-sp .your-home-text-wrap {
  height: 680px;
}
.your-home-sp .your-home-text-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  font-family: var(--main-font);
  line-height: 68px;
  width: 851px;
}
.your-home-sp .your-home-text-wrap p {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--sub-font);
  line-height: 31px;
  width: 720px;
}

.foot-sp {
  background-color: var(--primary-color);
  padding-top: 74px;
  padding-bottom: 16px;
}
.foot-sp .foot-wrap .foot-tabs-wrap {
  margin-top: 33px;
  margin-bottom: 47px;
}
.foot-sp .foot-wrap .foot-tabs-wrap ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.foot-sp .foot-wrap .foot-tabs-wrap ul a {
  text-decoration: none;
  color: inherit;
}
.foot-sp .foot-wrap .foot-tabs-wrap ul a li {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--sub-font);
  position: relative;
}
.foot-sp .foot-wrap .foot-tabs-wrap ul a li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--menu-bg);
  transition: transform 250ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
.foot-sp .foot-wrap .foot-tabs-wrap ul a li:hover::after {
  transform: scaleX(1);
}
.foot-sp .foot-wrap .sub_foot {
  border-top: 0.8px solid rgba(255, 255, 255, 0.5);
}
.foot-sp .foot-wrap .sub_foot .carter-john-home-concierge p,
.foot-sp .foot-wrap .sub_foot .priv p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sub-font);
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .menu {
    width: 100%;
    right: -100%;
  }
  .menu.active {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .jhon-cta {
    width: 180px;
    height: 40px;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--sub-font);
  }
  .nav-bar-sp {
    background-position: left;
    height: 75vh;
    padding-top: 0px;
  }
  .nav-bar-sp .social-media-wrap {
    bottom: 26px;
    left: 13px;
    gap: 6px;
  }
  .nav-bar-sp .social-media-wrap .social-media {
    transition: 250ms ease-out;
    width: 35px;
    height: 35px;
    padding: auto;
    display: inline-block;
    position: relative;
    overflow: hidden;
    position: relative;
  }
  .nav-bar-sp .social-media-wrap .social-media span {
    position: absolute;
  }
  .nav-bar-sp .social-media-wrap .social-media .s-h-1,
  .nav-bar-sp .social-media-wrap .social-media .s-h-3 {
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
  }
  .nav-bar-sp .social-media-wrap .social-media .s-h-1 {
    top: 0;
    left: 0;
    transform-origin: left;
    transform: scale(0);
  }
  .nav-bar-sp .social-media-wrap .social-media .s-h-3 {
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scale(0);
  }
  .nav-bar-sp .social-media-wrap .social-media .s-h-2,
  .nav-bar-sp .social-media-wrap .social-media .s-h-4 {
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
  }
  .nav-bar-sp .social-media-wrap .social-media .s-h-2 {
    top: 0;
    right: 0;
    transform-origin: top;
    transform: scaleY(0);
  }
  .nav-bar-sp .social-media-wrap .social-media .s-h-4 {
    top: 0;
    left: 0;
    transform-origin: bottom;
    transform: scaleY(0);
  }
  .nav-bar-sp .navbar-nav {
    gap: 40px;
  }
  .nav-bar-sp .navbar-nav .nav-text {
    text-align: center;
  }
  .nav-bar-sp .hero-sp .hero-align {
    padding-inline: unset;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text {
    height: 57vh;
    border-left: none;
    border-right: none;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text h2 {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text h1 {
    font-size: 35px;
    letter-spacing: -0.04em;
    width: unset;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .sec-2-sp {
    margin-top: 60px;
  }
  .sec-2-sp .sec-2-text-wrap h2 {
    font-size: 40px;
    width: unset;
    margin-bottom: 22px;
    line-height: 43px;
  }
  .sec-2-sp .sec-2-text-wrap h3 {
    font-size: 20px;
  }
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-1,
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-2 {
    font-size: 14px;
    line-height: 24px;
    width: unset;
    margin-bottom: 23px;
  }
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-3 {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--sub-font);
    color: var(--secondary-color);
    letter-spacing: 0.04em;
  }
  .sec-2-sp .sec-2-img-wrap img {
    width: 100%;
  }
  .sec-3-sp {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sec-3-sp .sec-3-text-wrap h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .sec-3-sp .sec-3-text-wrap h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sec-3-sp .sec-3-images-wrap-mob {
    gap: 20px;
    width: 100%;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob {
    flex: 1;
    height: 550px;
    transition: flex 0.5s ease, all 0.3s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob {
    opacity: unset;
    visibility: unset;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob h5 {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--sub-font);
    margin-bottom: 8px;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--sub-font);
    letter-spacing: 0.5px;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob a {
    font-family: var(--sub-font);
    font-size: 18px;
    color: inherit;
    font-weight: 500;
    text-decoration: none;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob a i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob a:hover i {
    transform: translateX(5px);
  }
  .sec-4-sp {
    margin-top: 40px;
  }
  .sec-4-sp .sec-4-text-wrap h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .sec-4-sp .sec-4-text-wrap p {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .sec-4-sp .sec-4-card-wrap {
    height: 283px;
  }
  .sec-4-sp .sec-4-btn-wrap {
    margin-top: 25px;
  }
  .sec-5-sp {
    margin-top: 40px;
    padding-block: 50px;
  }
  .sec-5-sp .sec-5-title-wrap h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .your-home-sp {
    height: 560px;
  }
  .your-home-sp .your-home-text-wrap {
    height: 560px;
  }
  .your-home-sp .your-home-text-wrap h2 {
    font-size: 40px;
    line-height: 42px;
    width: unset;
  }
  .your-home-sp .your-home-text-wrap p {
    font-size: 14px;
    line-height: 20px;
    width: unset;
  }
  .foot-sp {
    background-color: var(--primary-color);
    padding-top: 40px;
    padding-bottom: 16px;
  }
  .foot-sp .foot-wrap .foot-tabs-wrap {
    margin-top: 33px;
    margin-bottom: 20px;
  }
  .foot-sp .foot-wrap .foot-tabs-wrap ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
  }
  .foot-sp .foot-wrap .foot-tabs-wrap ul li {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--sub-font);
  }
  .foot-sp .foot-wrap .sub_foot {
    border-top: 0.8px solid rgba(255, 255, 255, 0.5);
  }
  .foot-sp .foot-wrap .sub_foot .carter-john-home-concierge p,
  .foot-sp .foot-wrap .sub_foot .priv p {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--sub-font);
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .jhon-cta {
    width: 251px;
    height: 55px;
    font-size: 15px;
  }
  .nav-bar-sp {
    height: 70vh;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text {
    height: 50vh;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text h2 {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text h1 {
    font-size: 50px;
    letter-spacing: -0.04em;
    width: unset;
    line-height: 52px;
    margin-bottom: 20px;
  }
  .sec-2-sp {
    margin-top: 60px;
  }
  .sec-2-sp .sec-2-text-wrap h2 {
    font-size: 45px;
    width: unset;
    margin-bottom: 22px;
    line-height: 43px;
  }
  .sec-2-sp .sec-2-text-wrap h3 {
    font-size: 25px;
  }
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-1,
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-2 {
    font-size: 14px;
    line-height: 24px;
    width: unset;
    margin-bottom: 23px;
  }
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-3 {
    font-size: 12px;
  }
  .sec-3-sp {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sec-3-sp .sec-3-text-wrap h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .sec-3-sp .sec-3-text-wrap h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sec-3-sp .sec-3-text-wrap a {
    font-family: var(--sub-font);
    font-size: 18px;
    color: inherit;
    font-weight: 500;
    text-decoration: none;
  }
  .sec-3-sp .sec-3-text-wrap a i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  .sec-3-sp .sec-3-text-wrap a:hover i {
    transform: translateX(5px);
  }
  .sec-3-sp .sec-3-images-wrap-mob {
    gap: 20px;
    width: 100%;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob {
    flex: 1;
    height: 550px;
    transition: flex 0.5s ease, all 0.3s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-inline: 20px;
    padding-bottom: 20px;
    cursor: pointer;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob {
    opacity: unset;
    visibility: unset;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob h5 {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--sub-font);
    margin-bottom: 8px;
  }
  .sec-3-sp .sec-3-images-wrap-mob .sec-3-panels-mob #includes-show-mob p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--sub-font);
    letter-spacing: 0.5px;
  }
  .sec-4-sp {
    margin-top: 40px;
  }
  .sec-4-sp .sec-4-text-wrap h2 {
    font-size: 45px;
    margin-bottom: 10px;
  }
  .sec-4-sp .sec-4-text-wrap p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .sec-4-sp .sec-4-card-wrap {
    height: 283px;
  }
  .sec-4-sp .sec-4-btn-wrap {
    margin-top: 25px;
  }
  .sec-5-sp {
    margin-top: 40px;
    padding-block: 50px;
  }
  .sec-5-sp .sec-5-title-wrap h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .your-home-sp {
    height: 560px;
  }
  .your-home-sp .your-home-text-wrap {
    height: 560px;
  }
  .your-home-sp .your-home-text-wrap h2 {
    font-size: 58px;
    line-height: 53px;
    width: unset;
  }
  .your-home-sp .your-home-text-wrap p {
    font-size: 16px;
    line-height: 20px;
    width: unset;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nav-bar-sp .navbar-nav {
    gap: 30px;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .nav-bar-sp .hero-sp .hero-align .hero-text h1 {
    font-size: 80px;
    line-height: 77px;
    margin-bottom: 20px;
  }
  .sec-2-sp {
    margin-top: 60px;
  }
  .sec-2-sp .sec-2-text-wrap h2 {
    width: unset;
  }
  .sec-2-sp .sec-2-text-wrap h3 {
    font-size: 20px;
  }
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-1,
  .sec-2-sp .sec-2-text-wrap .sec-2-phara-2 {
    width: unset !important;
  }
  .sec-2-sp .sec-2-img-wrap img {
    width: 720px;
  }
  .sec-3-sp .lap-flex {
    display: block !important;
  }
  .sec-4-sp .sec-4-card-wrap {
    height: 282px;
  }
}/*# sourceMappingURL=style.css.map */