/*
Theme Name: UCG 
Theme URI: https://upshiftcreative.com
Author: UCG 
Author URI: https://upshiftcreative.com
Description: Custom built theme by UCG. 
Version: 1.0.0
upshiftcreative WordPress Theme © 2024 UCG.
*/



@font-face {
    font-family: 'TradeGothicStd';
    src: url('../fonts/TradeGothicLTStd/TradeGothicLTStd-Regular.woff2') format('woff2'),
         url('../fonts/TradeGothicLTStd/TradeGothicLTStd-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicStd-bold';
    src: url('../fonts/TradeGothicLTStd/TradeGothicLTStd-Bold.woff2') format('woff2'),
         url('../fonts/TradeGothicLTStd/TradeGothicLTStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
  font-family: 'Trade Gothic LT Std Regular';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/TradeGothicLTStd/trade-gothic-lt-std.woff2') format('woff2'),
       url('../fonts/TradeGothicLTStd/trade-gothic-lt-std.woff') format('woff');
}
@font-face {
  font-family: 'Trade Gothic LT Std Bold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/TradeGothicLTStd/trade-gothic-lt-std-bold.woff2') format('woff2'),
       url('../fonts/TradeGothicLTStd/trade-gothic-lt-std-bold.woff') format('woff');
}

:root {
  --color1: #B79A81;
  --color2: #445D5C;
  --color3: #572D2D;
  --color4: #676464;
  --color5: #836A4D;
  --color6: #FFC845;
  --color7: #000000;
  --color8: #FFFFFF; 
  --color9: #F7F7F4;
  --title-font: "literata-variable",sans-serif;
  --txt-font: "trade-gothic-next",sans-serif;
  --txt-font2: 'Trade Gothic LT Std Regular';
  --txt-font2bold: 'Trade Gothic LT Std Bold';
  --body1: 22px;
  --body2: 18px;
  --body3: 16px;
  --body4: 14px;
  --body5: 12px;
}
body {
  background-color: var(--color9);
  font-size: 16px;
  font-family: var(--txt-font);
  line-height: 1.5;
  color: var(--color7);
}
body.page-id-3522, body.page-id-3524, body.page-id-3550, body.floor_plan-template-default.single.single-floor_plan {
  background-color: var(--color8);
}
/*====================== Display css ===================*/

.display1{
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--title-font);
}

.display2 {
    font-size: 56px;
    line-height: 1;
    font-family: var(--title-font);
}

.text {
    font-size: 1.125em !important;
    line-height: 0.8em !important;
}

.text {
    font-size: 1em !important;
    line-height: 0.6em !important;
}

/*====================== Header1 css ===================*/

 /****** header Styles *********/
 .simple-header {
  background: #fff;
  position: relative;
  z-index: 99;
}
.simple-header .nav-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.simple-header .nav-wrapper .menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.simple-header .header-btn a,
.simple-header .nav-wrapper .menu a{
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.simple-header .nav-wrapper .menu a:hover{
  color: var(--color1);
}
.hamburger {
  display: none;
}
.active-menu .humburger {
    display: none;
}
.close-btn {
    display: none;
}
.active-menu .close-btn, .close-btn img {
    display: flex;
    min-width: 28px;
    max-width: 28px;
}
.close-btn img {
  object-fit: contain;
  min-width: 22px;
  max-width: 22px;
}
.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-btn {
    display: flex;
    gap: 20px;
}
.menu-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0px;
}
@media (max-width: 1024px) {
  .hamburger {
      font: inherit;
      display: inline-block;
      overflow: visible;
      margin: 0;
      padding: 0;
      cursor: pointer;
      transition-timing-function: linear;
      transition-duration: .15s;
      transition-property: opacity, filter;
      text-transform: none;
      color: inherit;
      border: 0;
      background-color: transparent;
      position: relative;
      display: inline-block;
      margin-right: 20px;
  }
  .hamburger .hamburger-inner {
      transition-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
      transition-duration: 75ms;
  }
  .hamburger-inner {
      top: 50%;
      display: block;
      margin-top: -5px;
  }
  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
      position: absolute;
      width: 14px;
      height: 2px;
      transition-timing-function: ease;
      transition-duration: .15s;
      transition-property: transform;
      border-radius: 4px;
      background-color: #000;
  }
  .hamburger-inner:before {
      transition: top 75ms ease .12s, opacity 75ms ease;
      top: -5px;
      display: block;
      content: "";
  }
  .hamburger-inner:after {
      transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
      bottom: -5px;
      display: block;
      content: "";
  }
  .is-active .hamburger-inner:after {
      bottom: 0;
      transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
      transform: rotate(-90deg);
  }
  .is-active .hamburger-inner:before {
      top: 0;
      transition: top 75ms ease, opacity 75ms ease .12s;
      opacity: 0;
  }
  .is-active .hamburger-inner {
      transition-delay: 0.12s;
      transition-timing-function: cubic-bezier(0.215,0.61,0.355,1);
      transform: rotate(45deg);
  }
  header.simple-header.is-active .menu-wrapper:before {
      content: '';
      display: block;
      position: absolute;
      background: #fff;
      width: 100%;
      height: 100%;
      top: 0;
      z-index: -1;
  }
  .simple-header .nav-wrapper .menu-wrapper {
      height: 0;
      transition: all .3s ease;
      overflow: hidden;
      display: flex;
      position: absolute;
      flex-direction: column;
      align-items: flex-start;
      top: 60px;
      border-top: 0 solid #000;
      width: 100%;
      background: #fff;
      padding: 0;
      left: 0;
      z-index: 9999999999;
  }
  header.simple-header.is-active .menu-wrapper{
      height: auto;
      padding: 35px 0 ;
      border-width: 1px;
  }
  .simple-header .nav-wrapper .menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      flex-direction: column;
  }
  .header-btn {
      display: flex;
      gap: 20px;
      flex-direction: column;
  }
}



/* 30 may style  */
.simple-header .top-header{
  background-color: #e7e7e7;
  padding: 4px 0;
}
.simple-header .top-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.simple-header .main-header{
  padding: 8px 0;
}
.simple-header .top-header ul li a{
  text-decoration: none;
  color: #000;
  font-size: 14px;
  line-height: 1.375;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.simple-header .top-header ul li a:hover{
  color: var(--color1);
}
.simple-header .btn-style:hover{
  color: #000  !important;
}
.simple-header .desktop-menu {
  width: 32px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.simple-header .desktop-menu span {
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 10px;
}
.header-btn {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .simple-header .top-header, .top-header{
      display: none;
  }
}




.main-menu {
  background: #555759;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 0;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
  overflow: hidden;
  min-height: 0;
  transition: all 0.3s ease;
  z-index: 99;
}
.main-menu .close-btn {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.main-menu ul.nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  padding-top: 100px;
}
.main-menu ul.nav li a {
  font-size: 44px;
  color: #ffffff;
  line-height: 44px;
  font-weight: 400;
  text-align: right;
  text-decoration: none;
}
.main-menu ul.nav li a:hover{
  color: var(--color1);
}



/******* Start Header 2 *******/

.iconclass {
  max-width: 16px;
}
header.new-header-two {
            background: #fff;
            position: relative;
        }

        .new-header-two .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .new-header-two .nav-bar .menu-bar {
            display: flex;
            gap: 30px;
            align-items: center;
            white-space: nowrap;
        }

        .new-header-two ul.menu {
            list-style: none;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 0;
        }
        .new-header-two a {
            text-decoration: none;
        }
        .new-header-two .menu a {
            text-decoration: none;
            color: #000;
            font-size: 14px;
            line-height: 1.8;
            font-family: var(--txt-font2bold);
            font-weight: 700;
            letter-spacing: 0.56px;
            text-transform: uppercase;
        }
		
        .header-btn {
            text-decoration: none;
            color: #fff;
            font-size: 15px;
            line-height: 1.275;
            letter-spacing: 0.04em;
            font-weight: 500;
            
        }
        .new-header-two .menu a:hover, .new-header-two .current_page_item a, .new-header-two .current-menu-item a {
            color: var(--color1);
        }
        .humburger {
            display: flex;
            flex-direction: column;
            max-width: 28px;
            width: 100%;
            gap: 5px;
            cursor: pointer;
            min-width: 28px;
        }
        .humburger span{
            width: 100%;
            height: 3px;
            background: #000;
        }
        .new-header-two ul.menu li{
            position: relative;
        }
        .new-header-two ul.menu li .sub-menu{
            display: block;
            position: absolute;
            background: #fff;
            z-index: 10;
            padding: 5px 0px 10px 0px;
            box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
            transform: perspective(300px) rotateX(-15deg);
            visibility: hidden;
            width: auto;
            min-width: 210px;
            max-width: 320px;
            -webkit-border-radius: 6px;
            border-radius: 6px;
            padding-top: 15px;
            padding-bottom: 15px;
            opacity: 0;
            list-style: none;
        }
        .new-header-two ul.menu li:hover .sub-menu {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
            display: block !important;
            opacity: 1;
            visibility: visible;
            background-color: #fff;
            -webkit-box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
        }
        .new-header-two ul.menu li .sub-menu li a{
            padding: 8px 10px;
            display: block;
        }
        .new-header-two ul.menu li .sub-menu li:hover a{
            background: var(--color1);
            color: #000;
        }
        .new-header-two .main-menu {
            background: #1f251f;
            padding: 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            height: 0;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
            width: 100%;
            overflow: hidden;
            min-height: 0;
            transition: all 0.3s ease;
            z-index: 9999;
        }
        .new-header-two .main-menu .close-btn {
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.01em;
            color: #fff;
            text-align: right;
            cursor: pointer;
        }
        .new-header-two.active-menu .main-menu {
            overflow: auto;
            padding-top: 170px;
            padding-bottom: 70px;
            height: fit-content;
            background-color: #576d6c;
        }
        .new-header-two .main-menu ul.nav li a:hover, .new-header-two .main-menu ul.nav .current-menu-item a {
            color: var(--color1);
        }
        .new-header-two.style-b .nav-bar-wrapper {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .main-header-wrap {
            position: relative;
            z-index: 11119;
            background-color: #F7F7F4;
        }
        /******* style header *******/
        .new-header-two.style-a {
            padding: 0;
        }
        .new-header-two.style-a .top-header{
            padding: 6.5px 0;
        }
        .new-header-two .top-header .container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 30px;
        }
        .new-header-two .top-header ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .new-header-two .top-header ul.social-icons {
            gap: 16px;
        }
        /* .new-header.style-a .nav-bar{
            padding: 16px 0;
        } */
        .new-header-two .top-header ul a{
            font-size: 14px;
            line-height: 1.285;
            font-weight: 400;
            color: #000;
        }
        .new-header-two .top-header ul a:hover{
            color: var(--color1);
        }
        .new-header-two .top-header ul a i{
            color: var(--color1);
        }
        .new-header-two .top-header ul a:hover i{
            color: #000;
        }
        .new-header-two.style-b .top-header{
            padding: 6.5px 0;
            background: #e7e7e8;
        }

        .new-header-two.style-c .main-menu ul.nav{
            align-items: flex-start;
        }
        .new-header-two.style-c .main-menu .close-btn {
            text-align: left;
        }
        .new-header-two.style-c .top-header .container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 30px;
        }
        .new-header-two.style-c .top-header{
            padding: 6.5px 0;
            background: #e7e7e8;
        }
        @media (max-width: 991px) {
            .new-header-two.style-c .top-header,
            .new-header-two.style-b .top-header,
            .new-header-two.style-a .top-header{
                display: none;
            }
        }
        /******* Center Logo Header Style ******/
        .new-header-two.style-d .nav-bar{
            position: relative;
        }
        .new-header-two.style-d .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 35px 0;
        }
        .new-header-two.style-d .logo{
         z-index:999
        }
        .new-header-two.style-e .top-header,
        .new-header-two.style-d .top-header{
            padding: 6.5px 0;
            background: #E7E7E8;
        }
        .new-header-two.style-e .top-header .container,
        .new-header-two.style-d  .top-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .new-header-two.style-e .top-header ul a i,
        .new-header-two.style-d .top-header ul a i{
            color: #000;
        }
        .new-header-two.style-e .top-header ul.social-icons i,
        .new-header-two.style-d .top-header ul.social-icons i {
            color: #ccccce;
        }
        .top-wrapper {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .humburger.mobile-only {
            display: none;
        }
        @media (max-width: 1200px) {
            .new-header-two ul.menu {
                gap: 14px;
            }
			.new-header-two .menu a {
  				font-size: 13px;
        	}
        }	
        @media (max-width: 991px) {
            .new-header-two.style-e .top-header,
            .new-header-two.style-d .top-header,
            .new-header-two .nav-bar .menu-bar.left-menu,
            .new-header-two.style-d  .new-header ul.menu{
                display: none;
            }
            .new-header-two.style-d .nav-bar {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                padding-top: 35px;
                padding-bottom: 35px;
            }
            .humburger.mobile-only {
                display: flex;
            }
            .new-header-two.style-d .logo img {
              width: 95px;
              height: 95px;
            }
            .new-header-two.style-d .logo {
                position: absolute;
                top: 20px;
                left: 50%;
                transform: translateX(-50%);
            }
        }
        @media (min-width: 991px) {
            .new-header-two.style-d .logo {
                position: absolute;
                top: 20px;
                left: 50%;
                transform: translateX(-50%);
            }
            .new-header-two.style-d .logo img {
              width: 110px;
              height: 110px;
            }
        }
        /******** Mega Menu ******/
        .menu-dark .main-menu{
         background: #000;
        }
         .main-menu .logo-wrapper {
            width: 100%;
            padding-bottom: 20px;
            border-bottom: 1px solid #e7e7e8;
         }
        .main-menu .logo-wrapper .logo-hr {
            display: flex;
            align-items: center;
            justify-content: space-between;
         }
         .new-header-two .main-menu ul.nav {
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding: 0;
            align-items: flex-start;
            list-style: none;
         }
        .new-header-two .main-menu ul.nav li a {
            font-size: 65px;
            font-style: normal;
            font-weight: 200;
            line-height: 1.1;
            color: #fff;
            font-family: var(--title-font);
        }
        .new-header-two .menu-footer {
            width: 100%;
            border-top: 1px solid #e7e7e8;
            margin-top: 50px;
            padding-top: 50px;
         }
         .new-header-two .main-menu ul.nav-2 {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 15px;
         }
         .new-header-two .main-menu ul.nav-2 li a {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            line-height: 1.8;
            font-family: var(--txt-font2bold);
            font-weight: 700;
            letter-spacing: 0.56px;
            text-transform: uppercase;
         }
         .new-header-two .main-menu ul + ul {
            margin-top: 15px !important;
         }
         .menu-light .main-menu ul + ul li a {
          display: flex;
          align-items: center;
          gap: 7px;
         }
         .new-header-two .main-menu ul.nav-2 li a:hover, .new-header-two .main-menu ul.nav-2 li.current-menu-item a {
            color: var(--color1);
         }
         .new-header-two .menu-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 18px;
         }
         .new-header-two .menu-footer ul li a{
            font-size: 20px;
            color: #fff;
         }
         ul.social-icons img {
            min-width: 25px;
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        
         .new-header-two .menu-footer ul li a:hover{
            color: var(--color1);
         }
         .new-header-two .menu-footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
         }
         .new-header-two .main-menu ul.nav-2 li a i {
            display: inline-block;
            margin-left: -21px;
            padding-right: 8px;
            color: var(--color1);
         }
         .new-header-two .menu-footer .header-btn{
            display: inline-block !important;
         }
         /****** Menu Light ******/
         .menu-main-wrapper {
              width: 100%;
          }
         .menu-light .main-menu .close-btn,
         .menu-light .menu-footer ul li a,
         .menu-light .main-menu ul.nav-2 li a,
         .menu-light .main-menu ul.nav li a{
            color: #FFFFF;
         }
         .menu-divider {
            margin-top: 10px;
            margin-bottom: 10px;
            height: 0px;
            border-bottom: 1px solid #F7F7F4;
            max-width: 185px;
            width: 100%;
        }
        .menu-divider a {
            font-size: 0px !important;
        }
        .right-menu-inner {
          max-width: 300px;
          width: 100%;
        }
		 
		 .new-header-two.menu-light .top-header {
			  padding: 5px;
			}
      .new-header-two .main-menu ul.nav-2 li {
          display: flex;
          align-items: center;
          column-gap: 10px;
      }
      .new-header-two .bbt-secondary {
          border-radius: 2px;
      }
      @media (max-width:991px) {
          .new-header-two .main-menu ul.nav li.menu-1 a {
                font-size: 30px;
                font-style: normal;
                font-weight: 400;
                line-height: 1.2;
                color: #b9b5b1;
                letter-spacing: 0.015em;
                text-transform: uppercase;
            }
            .new-header-two ul.menu{
                display: none;
            }
            .main-menu ul.nav li a {
                font-size: 18px;
            }
            .new-header-two.active-menu .main-menu {
                padding-top: 120px;
                min-height: unset;
                height: fit-content;
                padding-bottom: 0;
            }
            .new-header-two .main-menu ul.nav li a {
                font-size: 50px;
            }
            .new-header-two .main-menu ul.nav {
                padding-bottom: 25px;
                margin-bottom: 10px;
                border-bottom: 1px solid rgb(247, 247, 244);
                gap: 20px;
            }
            .menu-divider {
              max-width: 100%;
            }
            .new-header-two .main-menu ul + ul {
                margin-top: 20px !important;
            }
            .new-header-two .menu-footer {
                margin-top: 25px;
                padding-top: 20px;
                padding-bottom: 20px;
            }
            .new-header-two .main-menu ul.nav-2 {
              gap: 5px;
            }
            .social-full-col i {
              font-size: 20px;
            }
            .new-header-two .main-menu li.menu-item {
              width: 100%;
              display: flex;
              justify-content: flex-start;
              text-align: left !important;
            }
            .new-header-two .main-menu li.menu-item a {
              display: inline-block;
            }

        }
        @media (max-width:767px) {
            .header-btn {
                display: none;
            }
            .new-header-two .main-menu li.menu-item {
                width: 100%;
                text-align: left;
            }
            .new-header-two .main-menu li.menu-item a {
                font-size: 28px;
            }
            .new-header-two .main-menu ul.nav li a {
                font-size: 30px;
                color: var(--color8);
            }
            .menu-main-wrapper .row > div {
                padding: 0 0;
            }
        }

/******* Header 2 *******/

/******* Announcement *******/
.btn-secondry {
  background: transparent;
  border: 1px solid #858a8e;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 0;
  font-size: var(--h4);
  line-height: 30px;
  letter-spacing: 0.1em;
  color: var(--midGray);
  min-width: 220px;
  
  font-weight: 600;
  text-align: center;
}
.announcement {
  position: relative;
  width: 100%;
  background: #a0582d;
  height: 0;
  top: 0;
  color: #fff;
  overflow: hidden;
  transition: all .3s ease;
  z-index: 99999;
}

.active.announcement {
  padding: 40px 40px;
  height: auto;
  transition: all .5s ease;
}
a.announcement-btn {
  position: absolute;
  right: 0;
  background: #f2f5f7;
  padding: 3px 12px;
  z-index: 99;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0px 0px 6px 6px;
  top: 61px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

a{
  text-decoration: none;
}
.announcement .close {
  position: absolute;
  padding: 10px;
  border: 1px solid var(--darkBlue);
  max-width: 40px;
  height: 40px;
  top: 40px;
  display: flex;
  right: 40px;
  align-items: center;
  justify-content: center;
  font-size: var(--btn);
  cursor: pointer;
}


.announcement .link {
  font-size: var(--text2);
  color: var(--black);
}
.announcement p,
.announcement h2 {
  color: #fff !important;
  margin: 0 !important
}
.announcement h2 {
  font-size: 24px;
  font-weight: 500;
}
.announcement .btn-secondry {
  border-color: #fff;
  color: #fff;
  min-width: 150px;
  padding: 6px 10px;
  text-decoration: none;
}
.announcement-text {
  display: flex;
  align-items: center;
  gap: 20px;
}
header.active-menu.scroll_down {
  transform: translateY(0%);
  top: unset;
}
.active.announcement + header .main-menu {
  overflow: auto;
  max-height: 85%;
}
.active.announcement + header .main-menu .container{
  overflow: auto;
  max-height:calc(100vh - 280px);
}
.active.announcement + header .main-menu .container::-webkit-scrollbar {
  width: 2px;
}

.active.announcement + header .main-menu .container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.active.announcement + header .main-menu .container::-webkit-scrollbar-thumb {
background-color: #f5f5f5;
outline: 1px solid slategrey;
}

.active.announcement + header .main-menu ul.nav{
  padding-top: 60px;
}
.active.announcement + header  .border-line{
      margin: 50px 0 50px;
}

@media (max-width: 1400px){
  .announcement .close {
      right: 30px;
  }
}
@media (max-width: 1200px){
  .announcement-text{
      flex-direction: column;
      align-items: flex-start;
      gap: 10px
  }
}
@media (max-width: 880px){
  .announcement .close {
      right: 20px;
      top: 20px;
  }
}
@media (max-width: 767px) {
  .announcement .close {
      position: absolute;
      padding: 8px;
      border: 1px solid var(--darkBlue);
      max-width: 30px;
      height: 30px;
      top: 30px;
      display: flex;
      right: 30px;
  }
  .active.announcement {
      padding: 30px 20px;
      height: auto;
      transition: all .5s ease;
  }
}
@media (max-width: 1024px) {
  .simple-header .header-btn,
  .simple-header .nav-wrapper .menu  {
      max-width: 690px;
      width: 100%;
      margin: 0 auto;
      padding: 0 16px;
  }
  .menu-wrapper {
      gap: 20px;
  }
  .simple-header .desktop-menu{
      display: none;
  }
}
@media (max-width: 768px) {
  .simple-header .header-btn,
  .simple-header .nav-wrapper .menu   {
      max-width: 516px;
  }
.bottom-footer .menu2 {
    justify-content: flex-start;
    margin: 0px;
    padding: 0px;
}
}
.simple-header .medium {
  font-size: 16px;
  padding: 10px 20px;
}
/******* Footer ********/
.footer1 {
  padding-top: 60px;
}
.footer1 .padding3 {
  padding-top: 60px 0 24px;
}
.footer1 .logo {
  max-width: 166px;
}
.footer1 .menu {
  display: flex;
  list-style: none;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}
.footer1 ul.social-icon {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  gap: 16px;
}
.footer1 ul.social-icon i {
  color: #000;
  font-size: 28px;
  margin-top: 20px;
}

footer .menu2 {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  justify-content: flex-end;
}
.footer1 .bottom-footer {
  padding-top: 40px;
}
.footer1 .menu.text3{
	font-weight: 500;
	color: #000;
}

footer ul li a {
  color: #000;
  text-decoration: navajowhite;
}
.footer1 .sec, .footer1 .one{
  margin-top:15px;
}




.footer1 .f-email-signup {position: relative;}
.footer1 input {    background: #F5F6F7;
    border: 0;
    font-size: 13px;
    padding: 18px 23px;
    border-radius: 2px;
    padding-right: 75px;
    width: 100%;}
.footer1 input::placeholder {color: #000;}
.footer1 button {position: absolute;
    top: 8px;
    right: 9px;border-radius: 2px;
    border: 0;
    background: var(--color1);
    padding: 8px 15px;}
    .footer-signup2 button img {max-width: 18px;}
.footer1  .footer-links  {padding: 90px 0 90px 0px;}
.footer1 .f-border {}


.footer1 .f-bg1 {}

.footer1 .f-bg2 {background: #F5F6F7;}

.footer1 .footer-links h2 {
  font-size: 18px;
font-weight: 600;
margin-bottom: 18px;
line-height: 24px;}

.footer1 .footer-links li  a {
    text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
}

.footer1 .footer-links .f-padding-left {padding-left: 20px;   }
.footer1 .footer-bottom ul li a {
    text-decoration: none;   
    margin-right: 10px;
    font-size: 15px;
    font-weight: 400;}
.footer1 .footer-links .f-timings li {display: flex; align-items: center;  font-size: 15px;
    font-weight: 500;}

.footer1 .footer-links .f-timings li span {
  margin-left: 7px;
  
    }


.footer1 .footer-bottom p {    font-size: 14px;
    padding: 0 0 0 0;
    font-size: 15px;
    color: #000;
    margin: 10px 0 5px 0;
    line-height: 22px;}
.footer1 .footer-bottom img {max-width: 20px;}
.footer1 .footer-bottom  .cpryt  {font-size: 14px;}
.footer1 .footer-links .f-para {    font-size: 15px;
    margin-top: 15px;
    line-height: 22px;}
.footer1 .footer-btn {max-width: fit-content;
    display: flex;
    padding: 6px 25px;
    color: #fff;
    background: var(--color1);
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;transition: 0.2s;}
.footer1 .footer-btn:hover {background: #00263A;}

.footer1 .f-row1  {     padding-top: 50px;
    padding-bottom: 15px;}
.footer1 .col-right {display: flex;justify-content: end;}
.footer1 .f-row1  ul li a {
    color: #000;
    margin-right: 15px;
    font-size: 24px;}
.footer1 .f-row1 .col-right ul li img {
        max-width: 210px !important;
    }

    .footer1 .f-row1 ul li:first-child img {
          margin-right: 10px
        }
.footer1 .f-row2 {}
.footer1 .f-row2 .col-middle { align-items: center;
  display: flex;}
  .footer1 .f-row2 .col-right {    align-items: center;
    display: flex;}
      .footer1 .f-row2  .footer-bottom {padding-bottom: 0;padding-top: 0;}
    .footer1 .f-row2 .col-left {    align-items: center;
      display: flex;}
.footer1 .footer-bottom p {margin: 0;}
.footer1 .footer-bottom {
padding-top: 25px;
    padding-bottom: 40px;
}
  .footer1 .f-row2  .col-middle  ul li a {

    margin-right: 19px; }

.footer1 .footer-bottom ul li:first-child img {    max-width: 22px;}


    @media(max-width:991px) {
      .footer1 .f-row2 .col-right {

    justify-content: start;
    }
    .footer1 .footer-links .f-padding-left {
    padding-left: 15px;
}
    .footer1 .f-row2 .col-middle {
        padding-top: 10px;
        padding-bottom: 10px;
    }
.footer1 .footer-links .f-padding-left {   margin-top: 40px;}
    }

@media(max-width:767px) {

  .footer1   .row {

     margin-right: 0;
     margin-left: 0;
 }
   .footer1  .row > * {

     padding-right: 0;
     padding-left: 0; }
   .footer1  #places-filters,   .footer1  .container,   .footer1  .container-fluid,   .footer1  .container-xxl,   .footer1  .container-xl,   .footer1  .container-lg,   .footer1  .container-md,   .footer1  .container-sm {

     padding-right: 0;
     padding-left: 0; }

  .footer1  .container-fluid {padding-left: 10px; padding-right: 10px;}


  .footer1 .footer-links .f-padding-left {
      padding-left: 0;}
      .footer1 .footer-bottom ul {margin-bottom: 15px;}
      .footer1 .footer-links h2 {margin-top: 30px;margin-bottom: 20px;}
      .footer1 .col-right {

          justify-content: start;
      }
      .footer1 .footer-links h2 {
    margin-top: 5px;
    margin-bottom: 10px;
}
.footer1 .footer-links {

    padding-bottom: 50px;
}
.footer1 .footer-btn {
    margin-bottom: 30px;
}
.footer1 .f-row1 .footer-bottom {
    padding-top: 0;
    padding-bottom: 0px;
}
.footer1 .footer-bottom {
    padding-top: 0;
        padding-bottom: 30px;
}
.footer1 .footer-bottom .col-middle ul {
    margin-bottom: 15px;
    flex-direction: column;
}
.footer1 .footer-links .f-para {
    font-size: 14px; }

    .footer1 .footer-bottom p {
    font-size: 14px; }
    .footer1 .col-right {
    margin-top: 15px;
}
.footer1 .f-row1 .col-right ul li img {
    max-width: 150px !important;
}
.footer1 .footer-links .f-padding-left {
padding-left: 0;  margin-top: 0;
}
.footer1 .f-row2 .col-middle ul li  {
    margin-bottom: 7px;
}
}
footer.footer1 ul li {
    list-style: none;
}
footer.footer1 ul {
    padding: 0px;
}

.cta-section.cta-accent.cntr-cta-section .col-right {
    display: flex;
    align-items: center;
}

.ucg-neighborhood-map .places-filters .transit-toggle:hover {
    background-color: #c3a61800 !important;
    color: #212529 !important;
}

.pgcontainer {
    max-width: 90%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.ucg-neighborhood-map .places-filters .transit-toggle.active::after {
    content: "" !important;
	font-family: "Font Awesome 6 Pro" !important;
}

.ucg-neighborhood-map .places-filters .transit-toggle::after {
    content: "";
    font-family: "Font Awesome 6 Pro" !important;
}

.ucg-neighborhood-map .places-filters .transit-toggle{
	position: relative;
}

.ucg-neighborhood-map .places-filters .transit-toggle .toggle-indicator {
    margin-left: 40px;
}

.ucg-neighborhood-map #map .marker img {
    width: 100% !important;
}

.ucg-neighborhood-map #map .marker img {
    width: 400% !important;
    position: absolute;
    top: -125px;
    left: -76px;
}

#map .marker .map-marker-color-icon {
    height: 1.5rem !important;
    width: 1.5rem !important;
}
/* gallery block */
section.gallery-block {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FAF9F5;
}
.gallery-pg-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-pg-tabs .tab {
    padding: 10px 40px;
    background-color: transparent;
    cursor: pointer;
}
.gallery-pg-tabs .tab.active {
    background-color: #B79A81;
    color: #FFFFFF;
}
.gallery-pg-tabs .tab h4 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin: 0;
    color: #000000;
    display: flex;
    align-items: center;
}
.gallery-pg-tabs .tab.active > * {
    color: #FFFFFF;
}
.gallery-pg-tabs .tab:not(:first-child) {
    border-left: 1px solid #000000;
}
.gallery-block .tab-content {
  display: none;
  margin-top: 25px;          
}
.gallery-block .tab-content.active {
  display: block;
}
.gallery-block .fg-filtering-container {
    padding: 0;
    margin: 40px auto !important;
}
.gallery-block .fg-light .fg-tag-item.fg-selected .fg-tag-link {
    background-color: transparent;
    border-bottom: 1px solid #000000;
    color: #000000;
}
.gallery-block .fg-light .fg-tag-item .fg-tag-link {
    border-radius: 0;
    padding: 0 15px 7px 15px;
    border: none;
    font-size: 16px !important;
    color: #000000;
    background-color: unset;
}
.gallery-block .fg-tag-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px 15px;
    flex-wrap: wrap;
}
.gallery-block:not(.masonry) .foogallery.foogallery-container, 
.gallery-block:not(.masonry) .gallery-content-wrap {
    padding: 0;
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.gallery-block:not(.masonry) .foogallery.foogallery-container .fg-item, 
.gallery-block:not(.masonry) .gallery-content-wrap .view-img, 
.gallery-block:not(.masonry) .gallery-content-wrap .tour {
    margin: 0;
    width: calc(25% - 23px);
    aspect-ratio: 1 / 0.91;
}
.gallery-block .foogallery.foogallery-container .fg-item *, .gallery-block .gallery-content-wrap .view-img *, .gallery-block .gallery-content-wrap .tour * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
.gallery-block .foogallery.foogallery-container .fg-item figure {
    margin: 0;
    border: none;
    display: block;
    width: 100%;
    box-shadow: none !important;
}
.gallery-block .foogallery.foogallery-container .fg-item a, .foogallery.foogallery-container .fg-item span, .foogallery.foogallery-container .fg-item img {
    display: inline-block;
    border: none;
}
.gallery-block .foogallery.foogallery-container .fg-item figure img {
    width: 100% !important;
}
.gallery-block .foogallery.foogallery-container .fg-item .fg-loader {
    width: 55px;
    height: 55px;
    top: 30%;
    left: 34%;
    align-items: center;
}
.gallery-block .foogallery.fg-light .fg-item.fg-loading {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* mesonary */
.gallery-block.masonry .foogallery .fg-column-width, .gallery-block.masonry .fg-masonry .fg-gutter-width {
    display: none !important;
}
/*.gallery-block.masonry .foogallery.fg-dark .fg-item-inner {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.gallery-block.masonry .fg-masonry .fg-item {
    position: relative !important;
    left: unset !important;
    top: unset !important;
    margin: 0;
    width: auto;
}*/
.fg-masonry.fg-col2 .fg-item {
    width: calc(50% - 23px); 
    padding-right: 15px;
}
.fg-masonry.fg-col2 .fg-item {
    padding-right: 0px;
    padding-left: 30px;
}

.fg-masonry.fg-col2 .fg-item {
    margin-bottom: 30px !important;
}
/*.gallery-block.masonry .foogallery.fg-masonry, */.gallery-block.masonry .gallery-content-wrap {
  column-count: 2; /* Two fixed columns */
  column-gap: 30px; /* Space between columns */
  height: auto !important;
}
/*.gallery-block.masonry .foogallery.fg-masonry .fg-item,*/ 
.gallery-block.masonry .gallery-content-wrap .tour, 
.gallery-block.masonry .gallery-content-wrap .view-img {
  break-inside: avoid; /* Prevent items from breaking across columns */
  margin-bottom: 30px;
}
.gallery-block.masonry .gallery-content-wrap img {
   width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}
.foogallery.fg-dark .fg-item.fg-error, .foogallery.fg-dark .fg-item.fg-idle, .foogallery.fg-dark .fg-item.fg-loading {
  background-color: transparent !important;
  border: none !important;
  box-shadow: unset !important;
}
.viewtab div#tab-1 {
    width: 100%;
}
/* end mesonary */
/* slider */
.gallery-block .foogallery.fg-slider, .fg-slider .fg-panel {
    background: unset;
    border: none;
    box-shadow: none;
}
.gallery-block .foogallery.fg-slider * {
    border: none !important;
}
.fg-media.fg-loaded .fg-media-content {
    width: 100%;
    object-fit: cover;
}
.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumbs-stage, .gallery-block .fg-panel-thumbs-top .fg-panel-thumbs-stage {
    background: transparent !important;
}
.gallery-block .fg-panel.fg-light :is(.fg-panel-button,.fg-panel-thumbs-button,.fg-panel-thumb,.fg-panel-thumb-spacer), 
.gallery-block .fg-panel.fg-light:is(.fg-medium,.fg-panel-no-mobile) .fg-panel-cart-inner, 
.gallery-block .fg-panel.fg-light:is(.fg-medium,.fg-panel-no-mobile):not(.fg-panel-info-overlay) .fg-panel-info-inner {
    background: transparent;
}
.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumb {
    margin: 15px 7.5px !important;
}
.gallery-block .fg-panel-thumb-media, .gallery-block .fg-panel-thumb-media img {
    height: 140px;
    min-height: 140px;
    object-fit: cover;
}
.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumbs-inner {
    height: auto;
    min-height: auto;
}
.fg-panel.fg-light,.fg-panel.fg-light .fg-panel-thumb:is(.fg-idle,.fg-loading,.fg-error) .fg-panel-thumb-media {
    background-color: transparent !important;
}
/* end slider */
@media (max-width: 1024px) {
  section.gallery-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .gallery-block:not(.masonry) .foogallery.foogallery-container .fg-item, 
  .gallery-block:not(.masonry) .gallery-content-wrap .view-img, 
  .gallery-block:not(.masonry) .gallery-content-wrap .tour {
      width: calc(50% - 15px);
  }
  .gallery-pg-tabs {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .gallery-block .foogallery.foogallery-container, .gallery-block .gallery-content-wrap {
    gap: 10px;
  }
  .gallery-block:not(.masonry) .foogallery.foogallery-container .fg-item, 
  .gallery-block:not(.masonry) .gallery-content-wrap .view-img, 
  .gallery-block:not(.masonry) .gallery-content-wrap .tour {
      width: calc(50% - 5px) !important;
      min-width: calc(50% - 5px) !important;
      max-width: calc(50% - 5px) !important;
  }
  .gallery-pg-tabs {
      width: 100%;
  }
  .gallery-pg-tabs .tab {
      padding: 15px 15px;
      display: flex;
      align-items: stretch;
      align-self: stretch;
      text-align: center;
      width: 50%;
      justify-content: center;
  }
  .gallery-pg-tabs .tab h4 {
      font-size: 16px;
      letter-spacing: 0;
  }
  .gallery-block .fg-filtering-container {
    margin: 20px auto !important;
  }
  .fg-masonry.fg-col2 .fg-item {
    width: calc(50% - 4px);
    padding-right: 2px;
    padding-left: 2px;
    margin-bottom: 4px !important;
  }
  .fg-masonry.fg-col2 .fg-item {
      width: 50%;
      padding-right: 2px;
      padding-left: 2px;
      margin-bottom: 7px !important;
      margin-left: auto;
      margin-right: auto;
  }
  .gallery-block .foogallery.foogallery-container .fg-item figure {
    max-width: calc(100% - 4px);
    width: 100%;
    margin: 0 auto;
  }
  /*.gallery-block.masonry .foogallery.fg-masonry, */.gallery-block.masonry .gallery-content-wrap {
    column-gap: 10px; /* Space between columns */
  }
  /*.gallery-block.masonry .foogallery.fg-masonry .fg-item,*/ 
  .gallery-block.masonry .gallery-content-wrap .tour, 
  .gallery-block.masonry .gallery-content-wrap .view-img {
    margin-bottom: 10px;
  }
  .gallery-block .fg-panel-thumbs-bottom .fg-panel-thumb {
      margin: 5px 2.5px !important;
  }
  .gallery-block .fg-panel-thumb-media, .gallery-block .fg-panel-thumb-media img {
      height: 47px;
      min-height: 47px;
  }
}
/* end gallery block */


.address a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
	color: #000;
}

.f-timings ul li {
    padding-bottom: 10px !important;
}

ul.ftr-menu-list {
    margin-top: 28px;
}

/* global css */
.pg-full-container, .full--container .pg-container {
  max-width: 100%;
  width: 100%;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0px;
}
.UCG-block .display2, .igt-boxinner h1, .igt-boxinner h2 {
    font-size: 56px;
    font-family: 'literata-variable';
    line-height: 1.1;
    font-weight: 200;
}
.body1 {
    font-size: var(--body1);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.22px;
}
.body2 {
    font-size: var(--body2);
    line-height: 1.5;
    font-weight: 400;
}
.body3 {
    font-size: var(--body3);
    line-height: 1.5;
    font-weight: 400;
}
.body4 {
    font-size: var(--body4);
    line-height: 1.42;
    font-weight: 400;
}
.body5 {
    font-size: var(--body5);
    line-height: 1.42;
    font-weight: 400;
}
figure {
    margin: 0;
}
img {
    display: inline-block;
    max-width: 100%;
}
.sec-py {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* end global css */
/* footer */
/* footer.footer-wrapper {
    background-color: var(--color9);
    padding-top: 62px;
} */
.ftr-title, .main-ftr-wrap ul li, .main-ftr-wrap a, .main-ftr-wrap p {
    color: var(--white);
    text-align: center;
    margin-bottom: 0px;
    transition: color .3s ease-in-out;
}
.main-ftr-wrap a:hover, .social-full-col i:hover {
  color: var(--brand);
  transition: color .3s ease-in-out;
}
.main-ftr-wrap ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.social-full-col ul {
  gap: 10px 25px;
  padding: 0px 15px;
  position: relative;
  z-index: 1;
  background-color: var(--color9);
  width: fit-content;
  margin: 0 auto;
}
.f2-logo img {
    max-width: 155px;
	width:100%;
}
.f2-logo {
    margin-bottom: 14px;
}
.ftr-menu-col {
    text-align: center;
}
.ftr-menu-wrap h4 {
    text-align: center;
    margin-bottom: 19px;
    font-weight: 700;
}
.ftr-menu-col p:not(:last-child) {
  margin-bottom: 25px;
}
.ftr-menu-col .address:not(:last-child) {
    margin-bottom: 10px;
}
.ftr-menu-wrap li, .ftr-menu-wrap a, .ftr-menu-wrap p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.64px;
    line-height: 1.6;
}
.ftr-menu-list a[href^="tel:"] {
    text-decoration: underline;
}
.ftr-menu-list:nth-child(1) li {
    max-width: 165px;
    width: 100%;
}
.ftr-menu-wrap .col-sm-3:nth-child(1) li {
    max-width: 165px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.ftr-menu-wrap .ftr-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ftr-menu-list span {
    display: block;
}
.main-ftr-wrap .mb25 {
  margin-bottom: 25px;
}
.ftr-social-row {
    padding: 50px 0 50px 0;
}
.social-full-col {
    position: relative;
}
.social-full-col:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color7);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.social-full-col li {
  line-height: 1;
}
.social-full-col i {
    font-size: 26px;
    display: inline-block;
}
.ftr-btm-txt-col p.body5.my-0 {
    display: none;
}
.ftr-bottom-wrap .body5 {
    padding: 25px 0 15px 0;
}
footer .bottom_col {
    gap: 15px 50px;
    width: fit-content;
    margin: 0 auto 25px auto;
}
footer .bottom_col ul {
    gap: 5px 40px;
}
.ftr-btn-icon-col {
    margin-top: 15px;
}
.ftr-btn-icon-col ul {
    gap: 10px;
}
.ftr-btn-icon-col img {
    width: 20px;
}
.ftr-menu-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.menu-footer-inner {
  gap: 15px 20px;
}
.ftr-menu-wrap a {
    text-decoration: none;
}
.ftr-menu-wrap a:hover, .ftr-bottom-wrap a:hover {
    color: var(--color5) !important;
}
.ftr-menu-list span.h5 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;
}
.main-ftr-wrap {
    padding-top: 35px;
    padding-bottom: 37px;
    background-image: url(/wp-content/uploads/2024/11/Parkline_IconPattern.png);
    background-repeat: repeat;
    background-position: top center;
}
@media (max-width: 767px) {
  footer .bottom_col ul {
    flex-direction: column;
    row-gap: 10px;
  }
  footer .bottom_col {
      justify-content: center;
      margin-bottom: 10px;
  }
  .ftr-btn-icon-col {
    margin-top: 10px;
  }
  .ftr-social-row {
      padding-top: 45px;
      padding-bottom: 65px;
  }
  .social-full-col ul {
      column-gap: 15px;
  }
  .main-ftr-wrap {
      padding-top: 0px;
  }
  .ftr-menu-wrap h4 {
      margin-bottom: 10px;
  }
  .ftr-menu-col .address {
      max-width: 240px;
      margin: 0 auto;
  }
  .ftr-menu-col:not(:last-child) {
      margin-bottom: 35px;
  }
}
/* end footer */

/* home page */
/* grid section */
.imggrid-txt {
    margin-bottom: 15px;
}
.imggrid-txt-row {
    gap: 15px;
    justify-content: space-between;
}
.threecol-row .igt-col {
    width: calc(33.33% - 10px);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
@media (min-width: 768px) {
  .threecol-row .igt-col-inner {
      display: grid;
      gap: 15px;
      width: 100%;
  }
  .threecol-row .igt-col1 .igt-col-inner {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
  }
  .threecol-row .igt-img.type1 {
      grid-column: 1 / 3; 
      grid-row: 1 / 2;
  }
  .threecol-row .igt-img.type2:nth-child(2) {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
  }
  .threecol-row .igt-img.type2:nth-child(3) {
      grid-column: 2 / 3;
      grid-row: 2 / 3; 
  }
  .igt-col figure, .igt-col img {
      height: 100%;
  }
  .igt-col img {
      object-fit: cover;
  }
  .threecol-row .igt-col2 .igt-col-inner {
      grid-template-columns: auto;
      grid-template-rows: auto;
  }
  .threecol-row .igt-col3 .igt-col-inner {
      grid-template-rows: auto auto;
      align-items: center;
  }
  .threecol-row .igt-img.type4 {
      grid-row: 1;
      height: 100%;
  }
  .threecol-row .igt-infobox {
      grid-row: 2;
      height: 100%;
  }
}
.igt-col-inner {
    width: 100%;
}
.igt-infobox {
    padding: 4.2vw 3.5vw;
    display: flex;
    align-items: center;
    width: 100%;
}
.imggrid-txt:not(.light) .igt-boxinner > * {
    color: #FFFFFF;
}
.imggrid-txt.light .igt-boxinner > * {
    color: #000000;
}
.igt-col-inner .igt-img, .igt-col-inner .igt-img figure , .igt-col-inner .igt-img figure img {
    width: 100%;
}
img.type-logo {
  max-width: 225px;
	margin-bottom: 35px;
  width: 100%;
  object-fit: contain;
}
.igt-title {
    margin-top: 35px;
    margin-bottom: 10px;
}
.igt-boxinner h3 {
	margin-top: 5px;
    margin-bottom: 25px;
}
.text-link, .igt-boxinner a.bbt-tertiary {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--txt-font);
    letter-spacing: 1.12px;
    text-transform: uppercase;
    padding: 0px 15px 0px 0px;
    border: none !important;
    position: relative;
    display: flex;
    justify-content: flex-start;
	align-items: center;
	gap: 5px;
    transition: all .3s ease-in-out;
}
.text-link i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    height: 11px;
}
.text-link.yellow, .igt-boxinner a.bbt-tertiary {
    color: var(--color6) !important;
    transition: all .3s ease-in-out;
}
.text-link.yellow:hover, .igt-boxinner a.bbt-tertiary:hover {
    color: var(--color8) !important;
    transition: all .3s ease-in-out;
}
.igt-col.igt-col4 {
    width: calc(33.33% - 10px);
    display: flex;
}
.igt-col.igt-col8 {
    width: calc(66.66% - 5px);
    display: flex;
}
.imggrid-slide {
  padding: 0 5px;
}
.imggrid-slide img {
  width: 100%;
  object-fit: cover;
  height: 370px;
}
.imggrid-mb-slider {
    padding: 0 10px;
}
.imggrid-mb-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 0px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    z-index: 1;
}
.imggrid-mb-slider .slick-arrow.slick-prev {
    left: 20px;
    background-image: url(/wp-content/uploads/2025/02/left-arrow.png);
}
.imggrid-mb-slider .slick-arrow.slick-next {
    background-image: url(/wp-content/uploads/2025/02/right-arrow.png);
    right: 20px;
}
/* end grid section */
/* text banner */
.text-banner-sec.text-blocks .carditem.color_card .carditem-text {
    padding: 100px 25px 100px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.text-banner-sec.text-blocks .carditem.color_card .carditem-text > * {
    max-width: 1145px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 0;
}
.text-banner-sec p {
  font-size: var(--body1);
  line-height: 1.5;
}
.text-banner-sec .row {
    width: 100%;
    margin: 0;
    max-width: 100%;
}
.text-banner-sec .row .carditem {
    padding: 0;
}
.mt-4 {
    margin-top: 40px !important;
}
/* end text banner */

/* residences */

/* text banner */
.pg-txt-banner {
    margin-top: 50px;
    padding-top: 55px;
    padding-bottom: 100px;
    background-color: var(--color8);
}
.text-blocks.pg-txt-banner .carditem .carditem-text {
    padding: 0 0 !important;
    background-color: transparent !important;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.pg-txt-banner .carditem img {
    max-width: 245px;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    min-height: unset;
    display: inline-block;
    margin-bottom: 50px;
}
.pg-txt-banner .carditem p {
    margin: 0;
}
.pg-txt-banner .carditem .carditem-text {
    text-align: center;
}
.pg-txt-banner h1 {
    color: var(--color1);
    margin-bottom: 15px;
}
.pg-txt-banner .carditem-text h2 {
    padding: 0;
    margin-bottom: 10px;
}
.carditem-text p:not(.body2) {
    font-size: var(--body1);
    letter-spacing: 0.22px;
}
.text_btn-wrap {
    display: flex;
    justify-content: center;
    gap: 10px 15px;
    flex-wrap: wrap;
}
/*.text_btn-wrap div:nth-child(2) a.bbt-primary:not(:hover) {*/
/*    background: var(--color1) !important;*/
/*    border-color: var(--color1) !important;*/
/*    color: #FFFFFF !important;*/
/*}*/
/* end text banner */
/* full slider */
.full-banner-slider .slick-slide img {
    aspect-ratio: 2.11 / 1;
    min-height: 500px;
    max-height: 90vh;
    height: unset !important;
}
.heroblock.full-banner-slider .arrowStyle .slick-arrow {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    cursor: pointer;
}
.heroblock.full-banner-slider .arrowStyle .slick-arrow.slick-prev {
    left: 5rem;
    right: auto;
    background-image: url(/wp-content/uploads/2025/02/left-arrow.png);
}
.heroblock.full-banner-slider .arrowStyle .slick-arrow.slick-next {
    right: 5rem;
    left: auto;
    background-image: url(/wp-content/uploads/2025/02/right-arrow.png);
}
.full-banner-slider .arrowStyle .slick-arrow.slick-prev::before, .full-banner-slider .arrowStyle .slick-arrow.slick-next::before {
    display: none;
}
/* end full slider */
/* image content list */
.imgcontent-with-list {
  background-color: #F7F7F4;
}
.ic_upper-row {
    gap: 20px 20px;
}
.ic-img-col {
    width: 35%;
}
.ic-img-col img {
    border-radius: 10px;
    width: 100%;
}
.ic-content-col .ic-inner {
    max-width: 440px;
    width: 100%;
    font-size: var(--body2);
}
.ic-content-col .ic-inner > *:not(:last-child), .ic-content-col .ic-inner > div > *:not(:last-child) {
    margin-bottom: 10px !important;
}
.ic-content-col .ic-inner > *:last-child, .ic-content-col .ic-inner > div > *:last-child {
    margin-bottom: 0px !important;
}
.ic-content-col {
    width: calc(65% - 20px);
    padding: 10px 10px;
}
.list_lower-row {
    gap: 30px 70px;
    margin-top: 35px;
}
.ic-list-col {
    width: calc(50% - 35px);
}
.ic-list-col ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}
.ic-list-col ul a {
    font-size: 14px;
    font-weight: 700;
    color: var(--color2) !important;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    padding-right: 15px;
    position: relative;
}
.ic-list-col ul a:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(http://dev-blackwell.upshiftclient.com/wp-content/uploads/2025/02/angle-right-solid.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  top: 2px;
}
.link-wrap {
    text-align: center;
    font-size: var(--body4);
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: var(--color2);
    font-weight: 700;
    width: fit-content;
    margin: 35px auto 0 auto;
    cursor: pointer;
}
.imgcontent-with-list.dark {
    color: var(--color8);
    margin-top: -1px;
}
.imgcontent-with-list.dark .link-wrap {
    color: var(--color6);
}
/* end image content list */

/* end residences */

/* responsive */
@media (min-width: 1640px) {
  :root {
    --body1: 24px;
    --body2: 20px;
    --body3: 18px;
    --body4: 16px;
    --body5: 14px;
  }
  .f2-logo img {
    max-width: 180px;
  }
  .new-header-two .menu a, .new-header-two .main-menu ul.nav-2 li a, .text-link, .igt-boxinner a.bbt-tertiary, .ftr-menu-wrap li, .ftr-menu-wrap a, .ftr-menu-wrap p {
    font-size: 18px;
  }
  .UCG-block .display2, .igt-boxinner h1, .igt-boxinner h2 {
    font-size: 65px;
  }
  img.type-logo {
    max-width: 290px;
  }
  .new-header-two.active-menu .main-menu {
	  min-height: 1000px;
  }
}
@media (min-width: 768px) {
  .imggrid-txt.right .imggrid-txt-row.twocol-row.no-slider {
      flex-direction: row-reverse;
  }
}
@media (max-width: 1300px) {
  .igt-infobox {
    padding: 30px 25px;
  }
  .UCG-block .display2, .igt-boxinner h1, .igt-boxinner h2 {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .sec-py {
      padding-top: 80px;
      padding-bottom: 80px;
  }
  .threecol-row .igt-col.igt-col1, .threecol-row .igt-col.igt-col2 {
      width: calc(50% - 8px);
  }
  .threecol-row .igt-col.igt-col3 {
      width: 100%;
  }
  .imggrid-txt-row.no-slider {
    gap: 0;
  }
  .imggrid-txt-row.no-slider .igt-col {
      width: 100% !important;
  }
  .imggrid-txt-row.no-slider .igt-col div {
      width: 100%;
  }
  .imggrid-txt-row.no-slider .igt-col figure, .imggrid-txt-row.no-slider .igt-col img {
      width: 100%;
  }
  .imggrid-txt-row.no-slider .igt-col.content {
      margin-top: 15px;
  }
  .heroblock.full-banner-slider .arrowStyle .slick-arrow.slick-prev {
    left: 7px;
  }
  .heroblock.full-banner-slider .arrowStyle .slick-arrow.slick-next {
    right: 7px;
  }
  .mt-4 {
      margin-top: 25px !important;
  }
}
@media (max-width: 767px) {
  /* global */
  :root {
    --body1: 16px;
    --body2: 16px;
    --body3: 16px;
    --body4: 14px;
    --body5: 12px;
  }
  .UCG-block .display2, .igt-boxinner h1, .igt-boxinner h2 {
      font-size: 40px;
  }
  .UCG-block .h3, .UCG-block h3 {
    font-size: 18px;
  }
  .UCG-block .h4, .UCG-block h4 {
    font-size: 15px;
  }
  .mt-4 {
      margin-top: 15px !important;
  }
  .f2-logo {
    margin-bottom: 20px;
  }
  /* end global */
  .mb-hide {
    display: none !important;
  }
  .imggrid-mb-slider {
    padding: 0 10px;
  }
  .threecol-row .igt-col {
      width: 100%;
      margin-top: 15px;
  } 
  .igt-col.content {
      order: 2;
  }
  .igt-infobox {
    padding: 60px 30px 60px 30px;
  }
  .igt-title {
    margin-top: 25px;
    margin-bottom: 23px;
  }
  .text-banner-sec.text-blocks .carditem.color_card .carditem-text {
    padding: 80px 15px;
  }
  .imggrid-txt-row.no-slider .igt-col.content {
      margin-top: 10px;
  }
  .pg-txt-banner {
    margin-top: 0px;
  }
  .pg-txt-banner .carditem img {
    margin-bottom: 25px;
    max-width: 195px;
  }
  .ic-img-col, .ic-content-col, .ic-list-col {
      width: 100%;
  }
  .ic-list-col ul {
      gap: 5px;
  }
  .list_lower-row {
      margin-top: 20px;
      gap: 5px;
  }
  .link-wrap {
     margin-top: 30px;
  }
  .full-banner-slider .slick-slide img {
    aspect-ratio: 1.14 / 1;
    min-height: unset;
  }
  .mb-center .igt-boxinner > * {
      text-align: center;
  }
  .igt-img img {
      height: 370px;
      object-fit: cover;
  }
  .igt-boxinner h3 {
    margin-top: 20px;
  }
  .mbp20 .carditem-text p:not(.body2) {
    font-size: 20px;
  }
}
/* end responsive */

/* end home page */

/* gallery page */
body.page-id-3046 {
  background-color: var(--color8);
}
.gallery-block .fg-light .fg-tag-item .fg-tag-link {
    padding: 0 2px 5px 2px;
    font-size: 18px !important;
    font-family: 'trade-gothic-next';
    font-weight: 400;
    line-height: 1.3;
}
.gallery-block .fg-tag-list {
    gap: 7px 35px;
    justify-content: space-around;
}
.fg-tag-list:after {
    display: none;
}
.fg-masonry .fg-column-width, .fg-masonry .fg-gutter-width {
    display: none !important;
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Columns */
  gap: 10px; /* Adjust spacing */
}
.masonry-item {
  break-inside: avoid; /* Prevents breaking inside a column */
}
@media (max-width: 1024px) {
  .gallery-block .fg-tag-list {
      gap: 7px 20px;
  }
}
@media (max-width: 767px) {
  .gallery-block .fg-tag-list {
      justify-content: flex-start;
      gap: 7px 15px;
  }
  .gallery-block .fg-light .fg-tag-item.fg-selected .fg-tag-link {
      font-size: 16px !important;
  }
}

/* end gallery page */

/* neighborhood page */
.py15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.pt85 {
  padding-top: 85px;
}
.txt-img-block .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
}
.txt-img-block .col-md-6 {
    width: calc(50% - 7.5px);
}
.img-area img {
    width: 100%;
    object-fit: cover;
    height: auto !important;
    aspect-ratio: 1 / .9;
}
.txt-img-block .content-area {
    gap: 15px;
}
.txt-img-block .content-area * {
    margin: 0;
}
.txt-img-block .content-area p {
    font-size: var(--body2);
}
.ucg-neighborhood-map {
    padding-top: 40px;
    padding-bottom: 55px;
    padding-left: 15px;
    padding-right: 15px;
}
.ucg-neighborhood-map > div {
    width: 100%;
    margin: 0 auto;
}
.ucg-neighborhood-map .places-filters span {
    padding: 0 0 !important;
    font-size: 18px;
    font-family: 'trade-gothic-next';
    letter-spacing: 0.7px;
    line-height: 1;
}
.ucg-neighborhood-map .places-filters {
    margin-bottom: 25px;
    justify-content: center !important;
    column-gap: 40px;
}
.ucg-neighborhood-map .places-filters span.active:not(.transit-toggle) {
    text-decoration: underline;
}
.ucg-neighborhood-map .places-filters .places-filter {
    position: relative;
}
.ucg-neighborhood-map .places-filters .places-filter:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #000000;
    position: absolute;
    right: -20px;
    top: 0;
}
.ucg-neighborhood-map #map {
  min-height: calc(95vh - 100px);
  max-height: calc(95vh - 100px);
}
.ucg-scores {
    background-color: #445D5C;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 15px;
    padding-right: 15px;
}
.ucg-scores .scores {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
.ucg-scores .scores .score {
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
}
.ucg-scores .scores .score .value {
    font-size: 76px;
    line-height: 1;
    margin: 0;
    color: #ffffff;
    font-family: 'literata-variable';
    font-weight: 200;
}
.ucg-scores .scores .score .name {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-family: 'trade-gothic-next';
}
@media (max-width: 1024px) {
  .ucg-scores .scores .score .value {
    font-size: calc(76px * .8);
  }
  .ucg-scores {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media (max-width: 960px) {
  .ucg-scores .scores {
      flex-flow: row nowrap;
      justify-content: space-around;
  }
  .ucg-neighborhood-map .places-filters {
    row-gap: 20px;
    padding: 11px 15px !important;
    background-color: #ffffff;
    position: relative;
    margin: 0 15px 60px 15px;
    width: calc(100% - 30px);
    border-radius: 25px;
  }
  .ucg-neighborhood-map .places-filters .transit-toggle {
    margin-top: 20px;
    position: absolute;
    bottom: -38px;
    left: 5px;
    width: calc(100% - 30px);
    font-size: 16px;
    text-transform: capitalize;
  }
  .ucg-neighborhood-map .places-filters .places-filter.active::after {
      content: "";
      width: 18px;
      height: 10px;
      display: inline-block;
      background-image: url(http://dev-blackwell.upshiftclient.com/wp-content/uploads/2025/02/Down.svg);
      background-repeat: no-repeat;
      background-size: contain;
      position: relative;
      right: auto;
      top: 2px;
  }
  .ucg-neighborhood-map .places-filters span.places-filter {
      text-align: center;
      font-size: 16px !important;
  }
  .ucg-neighborhood-map .places-filters .places-filter.active {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      background-color: #ffffff;
  }
  .ucg-neighborhood-map .places-filters .transit-toggle.active::after, .ucg-neighborhood-map .places-filters .transit-toggle::after {
      font-size: 25px;
      right: 0;
  }
  .ucg-neighborhood-map .places-filters .places-filter:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .pt85 {
    padding-top: 50px;
  }
  .txt-img-block .col-md-6 {
      width: 100%;
  }
  .ucg-scores .scores .score .value {
    font-size: 45px;
  }
  .ucg-neighborhood-map {
      padding: 50px 0 0 0;
  }
  .ucg-scores {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ucg-scores .scores {
      flex-wrap: wrap;
      row-gap: 35px;
  }
  .ucg-scores .scores .score {
      width: 100%;
  }
}
@media (min-width: 650px) {
  .ucg-neighborhood-map, .ucg-scores {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .ucg-scores .scores {
    max-width: 95%;
  }
}
/* end neighbourhood page */
/* floorplan Landing page */
.imgbox-wrap {
    padding-top: 55px;
    padding-bottom: 50px;
}
.imgbox-wrap.three .pg-container > .pg-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 32px;
}
.imgbox-wrap.three .carditem {
    width: calc(33.33% - 22px);
}
.imgbox-wrap .carditem-text {
    width: 85% !important;
    padding: 24px 24px;
    margin: -32px 0 0 auto !important;
    background: #FFFFFF !important;
    z-index: 1;
    position: relative;
}
.imgbox-wrap img.d-block {
    height: 245px;
    object-fit: cover;
}
.imgbox-wrap .carditem-text img {
    width: auto;
    max-height: 48px;
	min-height: unset;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}
.imgbox-wrap .carditem-text p {
    margin: 0;
}
.imgbox-wrap .carditem-text .body1 {
	color: #B49A81;
  margin-bottom: 10px;
}
.imgbox-wrap .carditem-text h3 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
}
/*.imgbox-wrap.three .carditem:nth-child(1) a.bbt-primary {*/
/*    background-color: #676464 !important;*/
/*    border-color: #676464 !important;*/
/*}*/

/*.imgbox-wrap.three .carditem:nth-child(2) a.bbt-primary {*/
/*    background: #51302f !important;*/
/*    border-color: #51302f !important;*/
/*}*/

/*.imgbox-wrap.three .carditem:nth-child(3) a.bbt-primary {*/
/*    background: #836A4D !important;*/
/*    border-color: #836A4D !important;*/
/*}*/

/*.imgbox-wrap.three .carditem:nth-child(1) a.bbt-primary:hover, */
/*.imgbox-wrap.three .carditem:nth-child(2) a.bbt-primary:hover, */
/*.imgbox-wrap.three .carditem:nth-child(3) a.bbt-primary:hover {*/
/*    background: #445D5C !important;*/
/*    border-color: #445D5C !important;*/
/*}*/
/*ul .residence a {*/
/*   color: #51302f !important; */
/*}*/
/*ul .reserve a {*/
/*   color: #676464 !important; */
/*}*/
/*ul .reunion a {*/
/*   color: #836A4D !important; */
/*}*/
/*ul#menu-left-manu li.menu-item a:hover {*/
/*    color: var(--color1);*/
/*}*/
body #blueprint.blueprint-overview .fp-tabs .fp-tab:nth-child(1) {
    border-top-left-radius: 10px;
}
body #blueprint.blueprint-overview .fp-tabs .fp-tab:nth-child(3) {
    border-top-right-radius: 10px;
}
#blueprint.blueprint-overview .fp-filters .availability-filters-section-primary-inner .availability-filters #filter-collapse {
    border-radius: 7px;
    padding: 10px 20px;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .primary-action .fp-button-1 {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px !important;
    font-family: 'trade-gothic-next', sans-serif;
    letter-spacing: 1.12px;
}
/* responsive */
@media (max-width: 1024px) {
  .imgbox-wrap .carditem-text {
      width: 92% !important;
      padding: 25px 20px 5px 20px;
  }
  .imgbox-wrap.three .pg-container > .pg-row {
      gap: 25px 20px;
  }
  .imgbox-wrap.three .carditem {
      width: calc(33.33% - 14px);
  }
}
@media (max-width: 767px) {
  .imgbox-wrap.three .pg-container > .pg-row {
    row-gap: 55px;
  }
  .imgbox-wrap {
    padding-top: 0px;
  }
  .imgbox-wrap.three .carditem {
      width: 100%;
  }
  .imgbox-wrap .carditem-text {
    padding-bottom: 5px;
    width: calc(100% - 30px) !important;
    margin: -30px auto 0 auto !important;
  }
  .imgbox-wrap .carditem-text .card-item-text-inner {
    text-align: center; 
  }
  .imgbox-wrap .carditem-text img {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
  }
}
/* end responsive */
/* end floorplan landing page */
/* contact us */
/* form & map */
.map-row .form-half-col:first-child iframe {
    max-width: 400px;
    width: 100%;
    height: 250px;
}
.map-col {
    display: flex;
    align-items: center;
}
.map-col >* {
    width: 100%;
}
.map-col p {
    margin: 0;
}
.map-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 25px;
}
.map-row .form-half-col {
    width: calc(50% - 13px);
}
.map-row .gf_browser_chrome.gform_wrapper {
    padding: 0;
}
.map-row h5 {
    font-weight: 700 !important;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.map-row h5.operation {
    font-size: 14px;
}
.map-row h5:not(:first-child) {
    margin-top: 25px;
}
.map-row ul.ftr-menu-list {
    padding: 0;
    list-style-type: none;
    margin: 0 0 50px 0;
}
.map-row .address a, .map-row ul.ftr-menu-list li {
    font-size: 14px;
    line-height: 1.5 !important;
}
.map-row .address {
    line-height: 1.2;
}
.map-row .newform iframe {
  max-width: 600px;
  width: 100% !important;
}
h2.gform_title {
    font-size: 22px;
    font-family: 'trade-gothic-next';
    font-weight: 400;
    line-height: 1.5; /* 136.364% */
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.gform_description {
    font-size: 18px;
    margin: 0;
}
.map-row form {
    margin-top: 40px;
}
.map-row form .gform_fields {
    gap: 20px;
}
.map-row form .gform_fields input {
    padding: 15px 20px;
    background: transparent;
    height: unset;
    line-height: 1;
    font-size: 16px;
    border: 1px solid #A5A194 !important;
    border-radius: 0px;
    box-shadow: none;
    outline: none;
    color: #000000;
}
.map-row form .gform_fields input.gfield-choice-input {
    width: 24px;
    height: 24px;
    padding: 0;
    background-color: #FFFFFF;
}
.map-row form .gform_fields .gchoice {
    display: flex !important;
    align-items: center;
}
.map-row form .gform_fields .gchoice label {
    font-size: 16px;
    color: #000000;
}
.map-row form input#gform_submit_button_5 {
    background: #445D5C !important;
    color: #ffffff !important;
    border-radius: 10px 10px;
    font-size: 14px;
    letter-spacing: 1.12px;
    font-family: 'trade-gothic-next', sans-serif;
    font-weight: 700;
    padding: 12px 16px 12px 16px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #445D5C !important;
    transition: all .3s ease-in-out;
    line-height: 1.4;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
}
.map-row form input#gform_submit_button_5:hover {
    background: #836A4D !important;
    color: #ffffff !important;
    border-color: #836A4D !important;
    transition: all .3s ease-in-out;
}
.mt0 {
    margin-top: 0;
}
.secpy60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.darkbg {
    background-color: #445D5C;
}
.newform .note {
    margin-bottom: 40px;
}
.newform .note h2 {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-family: 'trade-gothic-next';
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.newform .note h2 {
		font-size: calc(22px * 0.85);
	}
	.newform .note {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
  .map-row .form-half-col {
    width: 100%;
  }
  .mbmt0 {
    margin-top: 0px;
  }
	.newform .note h2 {
		font-size: calc(22px * 0.75);
		margin-bottom: 10px;
	}
	.newform .note {
		margin-bottom: 15px;
	}
	.map-row ul.ftr-menu-list {
		margin-bottom: 30px;
	}
	.map-row h5 {
	    font-size: 14px !important;
	}
}
/* end form & map */
/* end contact us */
/* floorplan page */
.color2bg {
  background-color: #7C6A52;
}
/* end floorplan page */
/* legal pages */
.color3bg {
    background-color: #445D5C;
}
.minheight65 {
  min-height: 65vh;
  display: flex;
  align-items: center;
}
.smmt40 .mt-4 {
    margin-top: 20px !important;
}
.UCG-block .h1-sizeh2 h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.48px;
  font-family: 'literata-variable';
}
.color-black h1 {
    color: #000000;
}
.imgtxt-banner .carditem img {
    max-width: 100%;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    margin-bottom: 0px;
}
.text-blocks.imgtxt-banner .carditem .carditem-text {
    max-width: 100%;
}
.pg-txt-banner.bg-transparent {
    background-color: transparent;
}
.legal-content .carditem-text {
    padding: 0 0 !important;
}
.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}
.legal-content p {
    margin-bottom: 20px;
    font-size: var(--body2) !important;
}
.legal-content ul li {
  font-size: var(--body2) !important;
}
/* responsive */
@media (max-width: 1024px) {
  .UCG-block .h1-sizeh2 h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .UCG-block .h1-sizeh2 h1 {
    font-size: 35px;
  }
  .fancybox-content {
    padding: 44px 15px;
  }
}
/* end responsive */
/* end legal pages */

/* global popup */

.popup-title {
    position: absolute;
    top: 50px;
    left: -51px;
    z-index: 11119;
    transform: rotate(-90deg);
    background-color: #445D5C;
    color: #ffffff;
    padding: 12px 34px;
    width: max-content;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
}
.popup-title h5 {
  font-family: 'metropolis bold', sans-serif;
  font-size: 14px !important;
  letter-spacing: 1.12px;
  font-weight: 600;
  line-height: 1.5;
}
.popup-title .bbt-secondary.white {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.popup-wrap {
    position: fixed;
    top: 50vh;
    left: 0;
    z-index: 1;
}
.popup-wrap .popup-content {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 380px;
    width: 98vw;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
    background-color: #445d5c;
    padding: 43px 53px 50px 50px;
    transform: translateX(-104%);
    transition: transform .3s ease-in-out;
}
.popup-wrap.show .popup-content {
  transform: translateX(0);
    transition: transform .3s ease-in-out;
}
.popup-wrap.show .popup-title {
  display: none;
  opacity: 1;
  transition: opacity .1s ease-in-out .3s;
}
.popup-close {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}
.popup-wrap .popup-close img {
    display: block;
    cursor: pointer;
}
.popup-content{
   color: #ffffff;
}
.popup-wrap.show .popup-content a.bbt-secondary {
    margin-top: 20px !important;
}
.popup-wrap .content-title {
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
    line-height: 1.3;
    text-transform: unset;
}
.popup-wrap a.popup-btn {
  min-width: 175px;
  width: auto;
  background-color: var(--black) !important;
  color: var(--white) !important;
  border: 1px solid var(--black) !important;
  display: inline-block;
  margin-top: 24px;
}
.popup-wrap a.popup-btn:hover {
    background: transparent !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}
.bbt-primary, .bbt-secondary, .bbt-tertiary {
    box-shadow: none !important;
    outline: none !important;
}
@media (max-width: 1024px) {
  .popup-title {
    right: -37px;
  }
}
@media (max-width: 767px) {
  .popup-wrap .popup-content {
    padding: 41px 20px 25px 20px;
  }
  .popup-wrap .content-title {
      font-size: calc(30px * 0.75);
      margin-bottom: 20px;
  }
  .popup-title {
      padding: 10px 28px;
      left: -47px;
  }
  .popup-wrap a.popup-btn {
      min-width: auto;
      font-size: 14px;
  }
  .page-id-3046 .fancybox-slide {
      padding: 55px 20px !important;
  }
}
/* end global popup */
.floorplan-container .row {
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}
.floorplan-container .row>* {
    padding: 0;
}
body.page-id-3443 #blueprint.blueprint-overview .fp-filters .fp-filter .select2-container:after {
    color: #ffffff !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .actions .action:nth-child(3) {
    display: none;
}
.right-menu-inner .address a {
    display: block !important;
}
.social-icons .social-full-col ul {
    background: #0000;
    border: none !important;
}

.social-icons .social-full-col:after {
	background-color: #0000;
}

/* select#input_5_11, select#input_5_13 {
    padding: 15px 20px;
    background: transparent;
    height: unset;
    line-height: 1;
    font-size: 16px;
    border: 1px solid #A5A194 !important;
    border-radius: 0px;f
    box-shadow: none;
    outline: none;
    color: #000000;
} */


@media (min-width: 2300px) {
  .ic-list-col ul {
  	font-size: var(--body3);
  }
}


.single.single-floor_plan .panels img {    
    left: -3em;
    position: relative;
}
#property-type {
    background-image: url(/wp-content/uploads/2025/05/angle-down-white.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 14px) center;
}



.lt_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 45px !important;
}

.lt_logo .logo_tt {
    width: 100%;
    max-width: 230px;
}

.heroblock.style-a.full-banner-slider p {
    position: absolute;
    bottom: 5%;
    left: 7%;
    text-shadow: 1px 1px 4px #000000;
    color: #fff;
}

.pg-txt-banner .carditem.color_card .carditem-text {
    max-width: 1160px;
    padding: 0;
}

.map-row .address{
	margin-bottom: 10px !important;
}

/* .color_bgc{
    background: #d1ccbd;
} */
