/*

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.

*/





:root {
  --brand: #D53832;
  --black: #000000;
  --white: #FFFFFF;
  --bg-gray: rgba(244, 244, 244, 0.94);
  --bg-color: #efefef;
  --body-bg: #F4F4F4;
  --body2-size: 16px;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'butler medium';
    src: url('../fonts/butler/Butler_Medium.woff2') format('woff2'),
         url('../fonts/butler/Butler_Medium.woff') format('woff');        
     font-weight: 500;
     font-style: normal;
}
@font-face {
    font-family: 'butler bold';
    src: url('../fonts/butler/Butler_Bold.woff2') format('woff2'),
         url('../fonts/butler/Butler_Bold.woff') format('woff');        
     font-weight: 600;
     font-style: normal;
}
@font-face {
    font-family: 'butler extrabold';
    src: url('../fonts/butler/Butler_ExtraBold.woff2') format('woff2'),
         url('../fonts/butler/Butler_ExtraBold.woff') format('woff');        
     font-weight: 700;
     font-style: normal;
}
@font-face {
    font-family: 'metropolis medium', sans-serif;
    src: url('../fonts/metropolis/Metropolis-Medium.woff2') format('woff2'),
         url('../fonts/metropolis/Metropolis-Medium.woff') format('woff');        
     font-weight: 500;
     font-style: normal;
}
@font-face {
    font-family: 'metropolis regular', sans-serif;
    src: url('../fonts/metropolis/Metropolis-Regular.woff2') format('woff2'),
         url('../fonts/metropolis/Metropolis-Regular.woff') format('woff');        
     font-weight: 400;
     font-style: normal;
}
@font-face {
    font-family: 'metropolis bold', sans-serif;
    src: url('../fonts/metropolis/Metropolis-Bold.woff2') format('woff2'),
         url('../fonts/metropolis/Metropolis-Bold.woff') format('woff');        
     font-weight: 600;
     font-style: normal;
}
@font-face {
    font-family: 'gotham medium', sans-serif;
    src: url('../fonts/gotham/GothamMedium.woff2') format('woff2'),
         url('../fonts/gotham/GothamMedium.woff') format('woff');        
     font-weight: 500;
     font-style: normal;
}
@font-face {
    font-family: 'gotham regular', sans-serif;
    src: url('../fonts/gotham/GothamBook.woff2') format('woff2'),
         url('../fonts/gotham/GothamBook.woff') format('woff');        
     font-weight: 400;
     font-style: normal;
}

body {
  font-size: 16px;
  font-family: 'metropolis regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--body-bg);
}
.home {
  background-color: var(--bg-gray);
}
.full-container, .full-width .pg-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1750px) {
  .full-container, .full-width .pg-container {
    max-width: 98%;
  }
}



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

 /****** header Styles *********/
 .announcement {
    display: none !important;
}
 .simple-header {
  background: var(--white);
  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: var(--black);
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.simple-header .nav-wrapper .menu a:hover {
  color: var(--brand);
}
.hamburger {
  display: none;
}
.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@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: var(--black);
  }
  .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: var(--white);
      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 var(--black);
      width: 100%;
      background: var(--white);
      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: var(--black);
  font-size: 14px;
  line-height: 1.375;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.simple-header .top-header ul li a:hover{
  color: var(--brand);
}
.simple-header .btn-style:hover{
  color: var(--black)  !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: var(--black);
  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;
  padding: 0px 70px;
  transition: all 0.3s ease;
  z-index: 99;
}
.main-menu .close-btn {
  cursor: pointer;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--white);
}
header.active-menu .main-menu {
  overflow: auto;
  padding: 30px 70px;
  height: 100%;
}
.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: var(--white);
  line-height: 44px;
  font-weight: 400;
  text-align: right;
  text-decoration: none;
}
.main-menu ul.nav li a:hover{
  color: var(--brand);
}



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

.iconclass {
  max-width: 18px;
}
header.new-header-two {
            background: var(--white);
            position: relative;
        }

        .new-header-two .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 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: var(--white);
            font-size: 14px;
            line-height: 1.8;
            letter-spacing: 0.56px;
            font-weight: 500;
            font-family: 'gotham medium', sans-serif;
            transition: all .3s ease-in-out;
        }
    
        .header-btn {
            text-decoration: none;
            color: var(--white);
            font-size: 14px;
            line-height: 1.4;
            letter-spacing: 0;
            font-weight: 500;
            font-family: 'gotham medium', sans-serif;
            transition: all .3s ease-in-out
        }
        .new-header-two .menu a:hover {
            color: var(--brand);
            transition: all .3s ease-in-out
        }
        .humburger {
            display: flex;
            flex-direction: column;
            max-width: 34px;
            width: 100%;
            gap: 6px;
            cursor: pointer;
            min-width: 34px;
            cursor: pointer;
        }
        .humburger span {
            width: 100%;
            height: 3px;
            background: var(--white);
        }
        .new-header-two ul.menu li{
            position: relative;
        }
        .new-header-two ul.menu li .sub-menu {
            display: block;
            position: absolute;
            background: var(--white);
            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: var(--white);
            -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(--brand);
            color: var(--black);
        }
        .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;
            padding: 0px 70px;
            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: var(--white);
            text-align: right;
            cursor: pointer;
        }
        .new-header-two.active-menu .main-menu {
            overflow: auto;
            padding: 30px 70px;
            height: 100%;
        }
        .new-header-two .main-menu ul.nav li a:hover{
            color: var(--brand);
        }
        .new-header-two.style-b .nav-bar-wrapper {
            display: flex;
            gap: 30px;
            align-items: center;
        }
		.new-header-two .main-menu ul.nav-2 .address a {
			padding-left: 25px;
			position: relative;
		}
		.new-header-two .main-menu ul.nav-2 .address a:before {
			content: "";
			width: 15px;
			height: 15px;
			background-image: url('/wp-content/uploads/2025/01/location-red.svg');
			position: absolute;
			left: 0;
			top: 5px;
			background-repeat: no-repeat !important;
			background-size: contain !important;
			background-position: center !important;
		}
		.new-header-two .main-menu ul.nav-2 .address.dniphone a:before {
			background-image: url('/wp-content/uploads/2025/01/call-red.svg');
		}
        @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;
            }
            header.active-menu .main-menu {
                padding: 30px 40px;
            }
            .main-menu ul.nav li a {
                font-size: 18px;
            }
        }
        @media (max-width:767px) {
            .header-btn{
                display: none;
            }
            header.active-menu .main-menu {
                padding: 30px 20px;
            }
        }
        /******* 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: var(--black);
        }
        .new-header-two .top-header ul a:hover{
            color: var(--brand);
        }
        .new-header-two .top-header ul a i{
            color: var(--brand);
        }
        .new-header-two .top-header ul a:hover i{
            color: var(--black);
        }
        .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: 34px 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: var(--black);
        }
        .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;
            }
        }
        @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: 38px 0;
            }
            .humburger.mobile-only {
                display: flex;
            }
        }
        @media (min-width: 991px) {
            .new-header-two.style-d .logo {
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
        }
        /******** Mega Menu ******/
        .new-header-two.active-menu .main-menu {
            overflow: auto;
            padding: 0px 0px;
            height: fit-content;
            background-image: url(/wp-content/uploads/2024/11/Parkline_IconPattern-white.png) !important;
            background-repeat: repeat !important;
            background-color: #F4F4F4 !important;
			box-shadow: 0px 0px 15px 0px #00000059 !important;
         }
        .menu-dark .main-menu{
         background: var(--black);
        }
         .main-menu .logo-wrapper {
            width: 100%;
            padding-bottom: 0px;
            background-color: var(--black); 
         }
        .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: 20px;
            padding: 0;
            align-items: flex-start;
            list-style: none;
         }
        .new-header-two .main-menu ul.nav li a {
            font-size: 32px;
            font-style: normal;
            font-weight: 700;
            line-height: 1.2;
            color: var(--black);
            letter-spacing: 1.44px;
            text-transform: uppercase;
            font-family: 'butler extrabold';
            text-align: left;
        }
        .new-header-two .menu-footer {
            width: 100%;
            margin-top: 40px;
            padding-top: 20px;
         }
         .new-header-two .main-menu ul.nav-2 {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 16px;
         }
         .new-header-two .main-menu ul.nav-2  li a {
            text-decoration: none;
            color: var(--black);
            font-size: 16px;
            line-height: 1.6;
            letter-spacing: 0.64px;
            font-weight: 400;
            font-family: 'gotham regular', sans-serif;
         }
         .new-header-two .main-menu ul + ul {
            padding-top: 0px !important;
         }
         .new-header-two .main-menu ul.nav-2 li a:hover{
            color: var(--brand);
         }
         .new-header-two .menu-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 20px;
         }
         .new-header-two .menu-footer ul li a{
            font-size: 20px;
            color: var(--white);
         }
        
         .new-header-two .menu-footer ul li a:hover{
            color: var(--brand);
         }
         .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(--brand);
         }
         /****** Menu Light ******/
         .menu-light.active-menu .main-menu{
            background: var(--white);
         }
         .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: var(--black);
         }
         .menu-light .main-menu ul + ul {
            margin-top: 60px !important;
         }
         @media (max-width: 960px){
            .new-header-two .main-menu ul.nav li a{
               font-size: 22px;
            }
            .new-header-two .main-menu ul.nav-2 li a i {
               margin-left: 0;
            }
         }
     
     .new-header-two.menu-light .top-header {
        padding: 5px;
      }

/******* 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-family: "aaux-next", sans-serif;
  font-weight: 600;
  text-align: center;
}
.announcement {
  position: relative;
  width: 100%;
  background: #a0582d;
  height: 0;
  top: 0;
  color: var(--white);
  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: var(--black);
}

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: var(--white) !important;
  margin: 0 !important
}
.announcement h2 {
  font-size: 24px;
  font-weight: 500;
}
.announcement .btn-secondry {
  border-color: var(--white);
  color: var(--white);
  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: var(--black);
  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: var(--black);
}

footer ul li a {
  color: var(--black);
  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: var(--black);}
.footer1 button {position: absolute;
    top: 8px;
    right: 9px;border-radius: 2px;
    border: 0;
    background: var(--brand);
    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: var(--black);
    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: var(--white);
    background: var(--brand);
    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: var(--black);
    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;
}

/* fonts */
.UCG-block .display1, .display1 {
  font-family: 'butler medium';
  font-weight: 500;
  font-size: 76px;
  letter-spacing: 3.04px;
  text-transform: uppercase;
  line-height: 1.14;
}
.UCG-block .display2, .display2, .UCG-block .h1d2 h1, .UCG-block .h2d2 h2 {
    font-family: 'butler medium';
    font-weight: 500;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}
.UCG-block .body1, .body1, .nm-list li, .UCG-block .pbody1 p, .outside-content p {
  font-family: 'metropolis regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
  letter-spacing: 0px;
	
}
.UCG-block .body2, .body2, .UCG-block .pbody2 p, .list2 ul li  {
  font-family: 'metropolis regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0px;
}
.UCG-block .body3, .body3, .UCG-block .pbody3, .list3 ul li {
  font-family: 'metropolis regular', sans-serif;
  font-weight: 400;
  line-height: 1.35;
  font-size: 14px;
  letter-spacing: 0px;
}
.UCG-block .body4, .body4 {
  font-family: 'metropolis regular', sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: 13px;
  letter-spacing: 0px;
}
.UCG-block .body5, .body5 {
  font-family: 'metropolis regular', sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: 11px;
  letter-spacing: 0px;
}
.white {
  color: var(--white) !important;
}
.mb55 {
  margin-bottom: 55px;
}
.mb40, .listmy40 ul {
  margin-bottom: 40px !important;
}
.mb32, .listmy32 ul, .pmb32 p {
  margin-bottom: 32px !important;
}
.mb25, .listmy25 ul {
  margin-bottom: 25px !important;
}
.mb20, .listmy20 ul, .h3mb20 h3 {
  margin-bottom: 20px !important;
}
.mb15, .h1mb15 h1, .h2mb15 h2, .h3mb15 h3, .h4mb15 h4 .pmb15 p, .listmy15 ul {
  margin-bottom: 15px !important;
}
.mb10, .h2mb10 h2 {
  margin-bottom: 10px !important;
}
.cta-titlebar h2, .map-title h2, .h2my0 h2 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.listmy0 ul {
  margin-bottom: 0px;
}
a {
  cursor: pointer !important;
  display: inline-block;
  color: var(--black);
  text-decoration: underline;
}
figure {
  margin-bottom: 0px;
}
.sec-py {
  padding-top: 100px;
  padding-bottom: 100px;
}
.sec-pt {
    padding-top: 100px;
}
.sec-pb {
    padding-bottom: 100px;
}
.sec-smpy {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec-smpb, section.img-with-content {
  padding-bottom: 25px;
}
.sec-pb0 {
  padding-bottom: 0px;
}
/* end fonts */

/* header */
@media (min-width: 1025px) {
  .bbt-primary, .bbt-secondary, .bbt-tertiary {
    min-width: 205px;
    width: auto;
  }
}
.nav-bar .logo img, .logo-hr .logo img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}
.close-btn i {
    font-size: 47px;
    color: var(--white);
}
.menu-bar .header-btn .bbt-primary {
    background: var(--brand) !important;
    border: 1px solid var(--white) !important;
    padding: 12px 18px !important;
    width: auto;
    min-width: 175px;
    color: var(--white) !important;
    font-size: 14px;
    transition: all .3s ease-in-out;
}
.menu-bar .header-btn .bbt-primary:hover {
    background-color:  transparent !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
    transition: all .3s ease-in-out;
}
/*
.home header.new-header-two {
  background-color: rgba(0 0 0 / 80%);
  position: absolute;
  width: 100%;
  top: 0;
}
*/


/* body.noscroll {
    overflow: hidden !important;
} */
header.new-header-two {
  background-color: var(--black);
/*   z-index: 1111119; */
}
.new-header-two .main-menu ul.nav-2:nth-child(2) li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.menu-divider {
    margin-top: 25px;
    height: 0px;
    border-bottom: 1px solid #000000;
    max-width: 185px;
    width: 100%;
}
.menu-divider a {
    font-size: 0px !important;
}
.menu_dropdown-wrap.pg--width {
    width: 100%;
    height: 100%;
	min-height: calc(100vh - 100px);
    justify-content: flex-start;
}
.menu_dropdown-wrap .mt-5 {
    margin-top: 0 !important;
    padding-top: 60px;
}
.menu-footer .header-btn a {
    background-color: var(--brand) !important;
    border: 1px solid var(--brand) !important;
    color: var(--white) !important;
    padding: 12px 16px !important;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.28px;
    font-family: 'metropolis medium', sans-serif;
    transition: all .3s ease-in-out;
}
.menu-footer .header-btn a:hover {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    transition: all .3s ease-in-out;
}
.menu-bar .header-btn a:hover {
    background: transparent !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}
.menu-footer .header-btn a {
    min-width: 125px;
    width: auto;
}
.new-header-two .menu-footer .pg-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 20px;
}
.menu-light .main-menu ul + ul li a {
    max-width: 180px;
    width: 100%;
}
.menu_dropdown-wrap {
    padding-bottom: 90px;
	background-color: #F4F4F4 !important;
    background-image: url(/wp-content/uploads/2024/11/Parkline_IconPattern-white.png);
    background-repeat: repeat;
    background-position: top center;
}
.menu-footer ul.social-icons li, .menu-footer ul.social-icons li a {
    line-height: 1;
    display: inline-flex;
}
@media (min-width: 650px) {
  #blueprint.blueprint-overview .fp-tabs {
      width: calc(100% + 5%) !important;
      margin-left: -2.5% !important;
  }
}
@media (min-width: 1024px) {
  .menu_dropdown-wrap.pg--width {
    height: 100%;
      display: flex;
      flex-direction: column;
  }
}
@media (max-width: 1024px) {
  ul#menu-humberger-seccond-menu {
      margin-top: 40px;
  }
  .menu-divider {
      margin-top: 0;
  }
  .menu-light .main-menu ul + ul {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .menu-footer .pg-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }
  .menu_dropdown-wrap .mt-5 {
      padding-top: 32px;
  }
/*   .menu-divider {
      display: none;
  } */
  ul#menu-humberger-seccond-menu {
      margin-top: 10px;
  }
  .menu-light .main-menu ul + ul {
      margin-top: 20px !important;
  }
  .new-header-two .menu-footer {
      margin-top: 10px;
  }
  .menu_dropdown-wrap {
      padding-bottom: 50px;
  }
  .menu_dropdown-wrap.pg--width {
      height: unset;
  }
}
/* end header */
/* footer */
footer.footer-wrapper {
    background-color: var(--black);
    padding-top: 60px;
}
.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 20px;
  position: relative;
  z-index: 1;
  background-color: var(--black);
  width: fit-content;
  margin: 0 auto;
}
/* .f2-logo img {
    max-width: 155px;
} */
.f2-logo {
    margin-bottom: 14px;
}
.ftr-title {
    text-transform: uppercase;
    margin-bottom: 19px;
}
.ftr-menu-wrap li, .ftr-menu-wrap a, .ftr-menu-wrap p {
    font-size: 16px;
    font-family: 'gotham regular', sans-serif;
    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: 55px 0;
}
.social-full-col {
    position: relative;
}
.social-full-col:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.social-full-col li {
  line-height: 1;
}
.social-full-col i {
    font-size: 25px;
    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;
}
footer .bottom_col ul {
    gap: 5px 40px;
}
.ftr-btn-icon-col ul {
    gap: 7px;
}
.ftr-btn-icon-col img {
    width: 16px;
}
.ftr-menu-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.ftr-menu-wrap a {
    text-decoration: none;
}
.ftr-menu-list span.h5 {
    font-family: 'gotham regular', sans-serif !important;
    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;
}
/* end footer */
/* global popup */
.popup-title {
    position: absolute;
    top: 50px;
    left: -51px;
    z-index: 11119;
    transform: rotate(-90deg);
    background-color: var(--brand);
    color: #ffffff;
    padding: 12px 34px;
    width: max-content;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
}
.popup-title h5 {
  font-family: 'metropolis bold', sans-serif;
  font-size: 14px !important;
  letter-spacing: 1.12px;
  font-weight: 600;
  line-height: 1.5;
}
.bbt-secondary.white {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.popup-wrap {
    position: fixed;
    top: 50vh;
    right: 45px;   
	z-index: 1;
}
.popup-wrap .popup-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 330px;
    width: 98vw;
    background-color: var(--brand);
    padding: 43px 53px 50px 50px;
    transform: translateX(135%);
    transition: transform .3s ease-in-out;
}
.popup-wrap.show .popup-content {
  transform: translateX(calc(100% - 285px));
  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-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;
  }
}
/* end global popup */

@media (max-width: 767px) {
  footer.footer-wrapper {
    padding-top: 40px;
  }
  .f2-logo img {
      max-width: 140px;
  }
  .f2-logo {
      margin-bottom: 20px;
  }
  .ftr-title, .ftr-menu-wrap .address, .main-ftr-wrap ul li, .main-ftr-wrap ul li a, .main-ftr-wrap p {
    text-align: left;
  }
  .social-full-col:after {
      top: -24px;
      transform: translateY(0);
  }
  .social-full-col ul {
      padding: 0;
      margin: 0;
      column-gap: 12px;
  }
  .ftr-social-row {
      padding: 50px 0 15px 0;
  }
  .social-full-col i {
      font-size: 18px;
  }
  footer .bottom_col ul {
      column-gap: 13px;
      flex-wrap: wrap;
  }
  .ftr-title {
      margin-bottom: 13px;
  }
  .ftr-menu-wrap .row {
      row-gap: 25px;
  }
  .main-ftr-wrap {
    padding-top: 25px;
    padding-bottom: 30px;
  }
  .ftr-bottom-wrap .body5 {
    padding-top: 15px;
  }
}
/* global settings */
/* end global settings */

/* home */
h1, h2, h3, h4, h5, h6 ,p {
  margin: 0px;
}
/* video banner */
.video-content {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
    position: absolute;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    z-index: 1;
	display: none;
}
.video-content.hidden {
    opacity: 0;
    pointer-events: none;
}
.video-btn img {
    width: 100px;
    height: 100px;
    cursor: pointer;
}
.video-container {
    position: relative;
    display: flex;
}
/* .video-container:after {
    content: "";
    width: 100%;
    height: 45%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 30.63%, rgba(102, 102, 102, 0.00) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
} */
#video-btn {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -40%);
}
.video-content > div > * {
    color: var(--white);
    text-align: center;
}
.video-content > div.d-flex {
    gap: 29px;
}
.banner-btn-wrap {
    gap: 15px 43px;
    margin-top: 10px;
}
/* end video banner */
/* image group */
.center-txt-banner .carditem-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.staggered-img-row {
    max-width: calc(calc(100% / 12)* 11);
    width: 100%;
    margin: 0 auto;
    align-items: flex-end !important;
}
.hm-staggered-sec .padding2 {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    row-gap: 75px;
    justify-content: space-between;
    margin: 0 0 0 auto;
}
.staggered-img-row .half-col {
    display: flex;
}
.hm-staggered-sec {
    padding-top: 83px;
    padding-bottom: 100px;
}
.img_group-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.img_group-row .img_group-col {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.img_group-row .img_group-col:nth-child(1) {
    margin-bottom: 50px;
}
.img_group-row .img_group-col:nth-child(2) {
    margin-top: 65px;
}
.img_group-row .img_group-col:nth-child(1) img {
    border-radius: 23px;
}
.staggered-img-row .half-col:nth-child(1) {
    width: calc(50% - 26px);
}
.staggered-img-row .half-col:nth-child(2) {
    width: 50%;
}
.staggered-img-row .half-col:nth-child(1) .mt-4 {
    display: none;
}
.animated-headline {
	transition: transform .5s ease-in-out;
}
/* end image group */
/* overlay box */
.img-txt-overlay-content {
    padding-top: 50px;
    padding-bottom: 50px;
}
.box__row {
    gap: 30px 27px;
}
.box__row .box__col {
    width: calc(50% - 14px);
}
.img-box-wrap {
    position: relative;
}
.overlay-content {
    position: absolute;
    bottom: 50px;
    padding: 15px 20px;
    text-align: center;
    width: 100%;
}
.img-box-wrap .overlay-content {
    display: none;
}
.img-box-wrap figure {
    margin: 0;
}
.img-box-wrap img {
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
}
.box__col.left img {
    border-radius: 30px 0 0 30px;
}
.box__col.right img {
    border-radius: 0 30px 30px 0;
}
.overlay-content .h1 {
  text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.50);
}
.box__col .overlay_txt {
    margin-bottom: 25px;
    text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.50);
}
.outside-content {
    margin-top: 27px;
    padding: 0 50px 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.outside-content > * {
    text-align: center;
    max-width: 470px;
}
.outside-content > a {
    display: inline-block;
}
.outside-content p {
  margin-bottom: 27px;
}
/* end overlay box */
/* feature slider */
.full-slider-with-txt {
    padding-bottom: 50px;
}
.full-slider-with-txt.pb0 {
  padding-bottom: 0px !important;
}
.full-slider-with-txt .slider-content-wrapper {
    margin: 0 auto;
    padding: 45px 0px 50px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: space-between;
}
.full-slider-with-txt.no-content .slider-content-wrapper {
    display: none;
}
.slider-content-wrapper .topArrow-slide-link {
    width: calc(100% - 225px) !important;
}
.feture-bbt {
    display: flex;
    width: fit-content;
}
.full-slider-with-txt .slider-content-wrapper .topArrow-slide-content > * {
    max-width: 900px;
    width: 100%;
}
.full-slider-with-txt .feature_txt-col.full {
    display: none;
}
.full-slider-with-txt .slick-slider {
    position: relative;
}
img {
    width: 100%;
}
.full-slider-with-txt .slick-slide a {
    width: 100%;
}
.full-slider-with-txt .slick-slide img {
  aspect-ratio: 1.95 / 1;
  height: auto;
  object-fit: cover;
}
.feture-bbt .topArrow-slide-link {
    display: none;
}
.full-slider-with-txt .slick-slide .feture-bbt a {
    width: fit-content;
}
.slider-arrow-wrap, .img-with-content .dotStyle.hero-slider {
    position: relative;
}
.img-with-content .hero-slider .slick-slide {
    display: flex;
}
.img-with-content .dotStyle .slick-arrow {
  display: block !important;
}
.img-with-content .dotStyle .slick-dots {
    display: none !important;
}
.slider-arrow-wrap .slider-btn-wrap {
    position: absolute;
    width: 100%;
    top: auto;
    bottom: 10px;
}
.slider-btn-wrap .custom-btn, .img-with-content .dotStyle .slick-arrow {
    width: 35px;
    position: absolute;
    bottom: 55px;
    right: 36px;
    cursor: pointer;
}
.slider-btn-wrap .custom-btn.custom-prev, .img-with-content .dotStyle .slick-arrow.slick-prev {
    right: calc(36px + 45px);
}
.img-with-content .dotStyle .slick-arrow {
  font-size: 0px;
  border: 0;
  height: 35px;
  background-color: transparent;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  z-index: 1111;
}
.img-with-content .dotStyle .slick-arrow.slick-prev {
    background-image: url(/wp-content/uploads/2024/11/slider-prev.svg);
}
.img-with-content .dotStyle .slick-arrow.slick-next {
    background-image: url(/wp-content/uploads/2024/11/slider-next.svg);
}
.full-slider-with-txt .slick-arrow {
    display: none !important;
}
/* end feature slider */
/* full image */
.full-img-wrap .carditem {
    width: 100%;
}
.full-img-wrap img {
    aspect-ratio: 1.95 / 1;
    object-fit: cover;
}
.full-img-wrap .pg-row .pg-row {
    display: none;
}
/* end full image */
/* list */
.hm-text-list {
    padding-top: 50px;
    padding-bottom: 150px;
}
.text-list-wrap > * {
    color: var(--black);
}
.hm-text-list h3 {
    margin-bottom: 28px;
}
.main_center h3 {
  text-align: center;
}
.hm-text-list .col h4 {
    font-family: 'metropolis bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.16px;
    text-transform: unset;
    margin-bottom: 5px;
}
.hm-text-list .col >* {
    max-width: 256px;
    width: 100%;
}
.text-list-wrap ul.list-style {
    padding-left: 7px;
    margin-bottom: 20px;
    list-style-type: none !important;
}
.text-list-wrap ul.list-style li {
    margin-bottom: 2px;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}
.txt-withdecoration {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    line-height: 1.5 !important;
    max-width: 100% !important;
    width: fit-content !important;
    transition: color .3s ease-in-out;
    cursor: pointer;
}
.txt-withdecoration:hover {
  color: var(--brand);
  transition: color .3s ease-in-out;
}
.text-list-wrap .bbt-tertiary, .bb-type2 .bbt-tertiary {
    border-color: #00263A !important;
    width: auto;
    min-width: auto;
}
.bbt-tertiary i {
    display: none;
}
.text-list-wrap .bbt-tertiary:hover, .bb-type2 .bbt-tertiary:hover {
    color: #D53832 !important;
    border-color: #D53832 !important;
}
/* end list*/
/* cta */
.cta-section.pg-cta {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pg-cta .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    align-items: center;
    justify-content: space-between;
}
.pg-cta .cta-col.col-left {
    width: calc(60% - 30px);
}
.pg-cta .cta-col.col-right {
    width: 40%;
}
.pg-cta .cta-col.col-left > div {
    max-width: 685px;
    width: 100%;
}
.pg-cta .cta-col.col-right .cta-btn-inner {
    width: 100%;
    text-align: right;
}
/* end cta */
/* end home */

/* home page */
@media (max-width: 1024px) {
  .staggered-img-row {
    max-width: 100%;
  }
  .hm-staggered-sec .padding2 {
    row-gap: 40px;
  }
  .img_group-row, .img_group-row .img_group-col {
    gap: 10px;
  }
  .video-wrap {
    min-height: 650px;
    padding: unset;
  }
  .video-content > div {
      gap: 25px;
  }
  .banner-btn-wrap {
      column-gap: 25px;
  }
  .hm-staggered-sec {
      padding-top: 65px;
      padding-bottom: 32px;
  }
  .img_group-row .img_group-col {
    width: 100%;
    margin: 0 !important;
  }
  .img_group-row .img_group-col:nth-child(2) {
      flex-direction: row;
  }
  .overlay-content {
    bottom: 15px;
  }
  .box__row {
      column-gap: 20px;
  }
  .box__row .box__col {
      width: calc(50% - 10px);
  }
  .outside-content {
      margin-top: 20px;
      padding: 0 15px 15px 15px;
  }
  .outside-content p {
    margin-bottom: 15px;
  }
  .full-slider-with-txt .slider-content-wrapper {
      padding: 25px 0;
  }
  .hm-text-list {
      padding-bottom: 65px;
  }
  .list-title {
      margin-bottom: 15px;
  }
  .text-list-wrap .row {
      row-gap: 30px;
  }
  .text-list-wrap ul.list-style {
      margin-bottom: 10px;
  }
  .cta-section.pg-cta {
      padding-top: 65px;
      padding-bottom: 65px;
  }
}
@media (max-width: 767px) {
  .video-wrap {
    min-height: 95vw;
    padding-top: 95vh !important;
  }
  .video-container:after {
    height: 65%;
  }
  #video-btn {
    top: 28%;
    transform: translate(-50%, -28%);
  }
  .video-btn img {
      width: 55px;
      height: 55px;
  }
  .hm-staggered-sec {
      padding-top: 52px;
      padding-bottom: 5px;
  }
  .staggered-img-row .half-col, .pg-cta .cta-col.col-left, .pg-cta .cta-col.col-right {
      width: 100% !important;
  }
  .box__row .box__col {
    width: 100%;
  }
  .box__col.left img, .box__col.right img {
      border-radius: 32px;
  }
  .full-slider-with-txt .slider-content-wrapper {
      padding: 10px 10px 0px 10px;
      width: 100%;
  }
  .slider-content-wrapper .topArrow-slide-link {
      width: 100% !important;
  }
  .feture-bbt {
      width: 100%;
  }
  .text-list-wrap ul.list-style {
      margin-bottom: 7px;
  }
  .pg-cta .cta-col.col-right .cta-btn-inner {
      text-align: left;
  }
  .hm-staggered-sec .padding2 {
    row-gap: 25px;
  }
  .hm-text-list {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .list-block.text-list-wrap {
      padding: 52px 0;
  }
  .cta-section.pg-cta {
      padding-top: 52px;
      padding-bottom: 52px;
  }
}
/* end home page */
/* end responsive */

/* amenities page */
.img-with-content .row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 20px;
    justify-content: space-between;
    align-items: center;
}
.img-with-content .col-md-6 {
    width: calc(50% - 10px);
}
.img-with-content .col-md-5 {
    width: calc(42% - 10px);
}
.img-with-content .col-md-7 {
    width: calc(58% - 10px);
}
.dot-list ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.dot-list ul li {
  position: relative;
  padding-left: 18px;
}
/* .dot-list ul li {
  font-size: 14px;
} */
.dot-list ul li:after, .text-list-wrap ul.list-style li:after {
    content: "";
    max-width: 6px;
    max-height: 6px;
    min-width: 6px;
    min-height: 6px;
    width: 6px !important;
    height: 6px !important;
    background-image: url(/wp-content/uploads/2024/12/circle-solid.svg);
    background-repeat: no-repeat !important;
    background-size: contain !important;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}
/*ul.dot-list.body3 li:after {
    top: 6px;
}*/
.text-list-wrap ul.list-style li:after {
  top: 7px;
  transform: unset !important;
}
.content__wrap.right {
    padding: 20px 40px 20px 30px;
}
.content__wrap.left {
    padding: 20px 20px 20px 50px;
}
.img-with-content .dotStyle.hero-slider {
	border-radius: 30px;
	overflow: hidden;
}
.img-with-content .hero-slider .slick-slide {
	border-radius: 30px;
	overflow: hidden;
	aspect-ratio: 1.62 / 1;
	height: auto !important;
	min-height: 430px;
}
.img-with-content img {
    height: 100% !important;
    border-radius: 30px;
    object-fit: cover;
}
.amenities-list-wrap ul.list-style {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.amenities-list-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
.amenities-list-wrap .row {
    margin-top: 28px;
}
.amenities-list-wrap ul.list-style li {
    font-size: 14px;
}
.amenities-list-wrap .col > * {
    max-width: 230px;
    width: 100%;
}
.list-btn-wrap {
    margin-top: 28px;
}
.animation-hero-sec {
    padding-top: 52px;
    padding-bottom: 25px;
}
.animated_content-row {
    max-width: calc(calc(100% / 12) * 10.5);
    width: 100%;
    margin: 0 auto;
}
.animation-col {
    max-width: 910px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 25px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.animation-col .maintitle {
    max-width: 590px;
    width: 100%;
}
.animation-col .subtitle {
    margin-bottom: 7px;
}
.animation-wrapper {
  position: relative;
  overflow: visible;
}
.animation-col .img-banner img {
    aspect-ratio: 1.75 / 1;
    max-height: 90vh;
    object-fit: cover;
}
.list-block .row {
    row-gap: 25px;
}
.full-slider-with-txt .slick-slide {
  display: flex;
}
.full-slider-with-txt .slick-slide video {
    display: block;
}
.full-slider-with-txt .slick-slide img,
.full-slider-with-txt .slick-slide video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
}
.img-banner video {
    display: flex;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.75 / 1;
    max-height: calc(87vh - 140px);
}
.animation-hero-sec .img-banner figure img {
    width: 100%;
    max-height: calc(87vh - 140px);
    object-fit: cover;
}
/* responsive */
@media (max-width: 1024px) {
  .amenities-list-wrap ul.list-style {
      margin-top: 10px;
  }
  .img-with-content img {
    min-height: 400px;
  }
  .content__wrap.left, .content__wrap.right {
    padding: 0px 0px;
  }
}
@media (max-width: 767px) {
  .animation-hero-sec {
    padding-top: 52px;
    padding-bottom: 20px;
  }
  .animation-col {
    padding-top: 45px;
  }
  .img-with-content .img-area, .img-with-content .content__wrap {
      width: 100%;
  }
  .img-with-content .slick-track {
      margin: 0;
  }
  .img-with-content .img-area {
      order: 0;
  }
  .img-with-content .content__wrap {
      order: 1;
  }
  .list-block {
      padding: 52px 0px;
  }
  .full-slider-with-txt .slick-slide img {
      min-height: 200px;
  }
  .slider-btn-wrap .custom-btn {
      width: 28px;
      bottom: 10px;
      right: 10px;
  }
  .slider-btn-wrap .custom-btn.custom-prev {
      right: calc(28px + 18px);
  }
  .amenities-list-wrap {
      padding-top: 52px;
      padding-bottom: 52px;
  }
  .amenities-list-wrap .row {
      margin-top: 15px;
  }
  .img-with-content img {
    min-height: unset;
  }
}
/* end responsive */
/* end amenities page */

/* Start Contact page */
.map-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px 50px;
}
.map-row .form-half-col {
    width: calc(60% - 25px);
}
.map-row .form-half-col.map-col {
    width: calc(40% - 25px);
}
.text-block.hero-txt {
    padding-top: 160px;
}
.contact-banner .carditem {
    padding-bottom: 160px;
    max-width: 520px;
    width: 100%;
}
.map-col h5 {
    text-transform: uppercase;
}
.map-col a {
    color: var(--black);
}
.map-col iframe {
    margin-top: 50px;
    max-width: 400px;
    width: 100%;
    height: 250px;
}
.gform_heading .gform_title {
    margin-bottom: 20px;
}
form#gform_8 {
    margin-top: 40px;
}
#gform_8 input, #gform_8 select, #gform_8 textarea {
    padding: 16px 20px;
    line-height: 1.2;
    height: auto;
    width: 100%;
    border: 1px solid #A5A194 !important;
    font-size: 16px;
    border-radius: 0;
    outline: none !important;
    background-color: transparent;
    box-shadow: none !important; 
}
#gform_8 textarea {
    height: 162px;
    resize: none;
}
.gform-theme--foundation .gform_fields {
    gap: 25px 20px !important;
}
#gform_8 .gfield-choice-input {
    padding: 0;
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 5px;
}
.gchoice.gchoice_8_13_1 {
    display: flex;
    align-items: center;
}
#gform_8 input[type="submit"] {
  background-color: var(--brand);
  border: none !important;
  color: var(--white) !important;
  width: auto;transition: all .3s ease-in-out;
}
#gform_8 input[type="submit"]:hover, #gform_8 input[type="submit"]:focus {
    background-color: var(--black);
}
#gform_8 input.datepicker {
    background-image: url(/wp-content/uploads/2024/12/calendar-regular.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 10px) center;
}
.img-wrapper .overlay__content .content-area a {
    background-color: transparent !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}
.img-wrapper .overlay__content .content-area a:hover {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    color: var(--white) !important;
}
/*.Banner-text .card-item-text-inner {
    max-width: 260px;
    padding: 3em;
}

h2.gform_title {
    font-size: 34px !important;
    letter-spacing: 0.34px !important;
}

::placeholder {
    font-family: "Work Sans", sans-serif;    
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

body input, body textarea {
    border: 1px solid #A5A194 !important;
    border-radius: 2px !important;
}

p.gform_description {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 30px 0px;
    font-family: "Work Sans", sans-serif;    
}

p.gform_required_legend {
    display: none;
}

input#gform_submit_button_8 {
    background: #D53832 !important;
    font-family: 'metropolis regular', sans-serif;
    letter-spacing: 0.28px;
}

input#gform_submit_button_8:hover{
   background: #000 !important;
}

.gform-theme--foundation .gform_fields{
  gap: 30px !important;
}

input#input_8_12 {
    width: 100% !important;
}

.direction-map.direction-map-dark.light .form-half-col.map-col {
    display: block;
}

.direction-map-dark.light .map-col p {
    line-height: 40px;
}

.direction-map-dark.light .map-col p a {
    color: #000;
    text-decoration: underline;
}

body .map-col iframe {
    width: 400px;
    height: 260px;
    min-height: 260px;
    margin-top: 40px;
}

.media-set .content-area {
    margin-left: 10%;
    padding: 4% 2% !important;
}

.media-set .content-area h3 {
    padding-bottom: 25px;
}

.media-set .content-area {
    margin-left: 10%;
    padding: 50px !important;
}*/
/* responsive */
@media (max-width: 1024px) {
  .text-block.hero-txt {
      padding-top: 65px;
  }
  .contact-banner .carditem {
      padding-bottom: 65px;
  }
  .gform_heading .gform_title {
      margin-bottom: 10px;
  }
  form#gform_8 {
      margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .text-block.hero-txt {
      padding-top: 52px;
  }
  .contact-banner .carditem {
      padding-bottom: 40px;
  }
  .map-row .form-half-col {
      width: 100% !important;
  }
  .map-col iframe {
      margin-top: 20px;
  }
  #gform_8 input, #gform_8 select, #gform_8 textarea {
      padding: 14px 20px;
  }
  .gform-theme--foundation .gform_fields {
      row-gap: 15px !important;
  }
}
/* end responsive */
/* end contact page */
/* neighborhood page */
.page-id-3229 .content__wrap .content-area {
    max-width: 500px;
    width: 100%;
}
.ucg-neighborhood-map {
  margin-top: -1px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #D5D5D5;
}
.ucg-neighborhood-map .places-filters .places-filter {
    padding: 0;
    position: relative;
}
.ucg-neighborhood-map .places-filters .transit-toggle {
    padding: 0;
}
.ucg-neighborhood-map .places-filters {
    justify-content: center;
    gap: 10px 30px;
    margin: 10px 0 20px 0;
    position: relative;
}
.ucg-neighborhood-map .places-filters span {
    font-size: 16px;
}
.ucg-neighborhood-map .places-filters > span {
    line-height: 1;
    padding-bottom: 1px;
}
.ucg-neighborhood-map .places-filters .places-filter.active {
    border-bottom: 1px solid #000000;
}
.ucg-neighborhood-map .places-filters .places-filter:after {
    content: "" !important;
    width: 1px;
    height: 100%;
    background-color: #000000;
    position: absolute !important;
    right: -15px !important;
    top: 0;
    display: block !important;
}
.ucg-scores {
    padding-top: 40px;
    padding-bottom: 90px;
    background: #d5d5d5;
    margin-top: -1px;
}
.ucg-scores .scores {
    flex-flow: row;
    justify-content: center;
    gap: 20px 100px;
    align-items: center;
    justify-content: center;
}
.ucg-scores .score {
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
}
.ucg-neighborhood-map #map {
    min-height: 85vh !important;
}
.title-banner.map-title {
    background-color: #d5d5d5;
    padding-top: 50px;
}
.title-banner .carditem-text {
    padding: 0 0 !important;
}
.title-banner .carditem-text h2 {
    padding: 0;
}
/* end neighborhood page */
/* penthouse */
body.page-id-3243 {
  background-color: #FFFFFF;
}
/*.img-with-bg .slick-slide {
    background-color: #EEF0F0;
}*/
.page-id-3243 .plan-titlebar {
    padding-top: 56px;
}
.plan-titlebar .cta-col.col-left, .plan-titlebar .cta-col.col-right {
    width: 100%;
}
.plan-titlebar h2 {
    text-align: center;
}
.penthouse-floorplan {
    padding-top: 75px;
}
@media (max-width: 1024px) {
  .penthouse-floorplan {
      padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .page-id-3243 .plan-titlebar {
      padding-top: 52px;
  }
}
/* end penthouse */
/* floor plan */
body.page-id-3102 {
    background: transparent;
}
.floor-banner .carditem {
    padding-bottom: 100px;
    max-width: 580px;
    width: 100%;
}
.align-center .staggered-img-row {
    align-items: center !important;
}
.img_group-row .img_group-col:nth-child(2) .grid-item {
    width: 100%;
}
.list-s-style .row {
    display: flex;
    gap: 32px 32px;
    justify-content: space-between;
    max-width: calc(calc(100% / 12)* 10) !important;
    width: 100% !important;
    margin: 0 auto;
}
.list-s-style .col {
    width: calc(50% - 16px);
    padding: 0;
}
.list-s-style ul.list-style {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.list-s-style ul.list-style li {
    margin: 0;
    padding: 9px 0 8px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'gotham regular', sans-serif !important;
    border-bottom: 1px solid #A5A194;
}
.list-s-style ul.list-style li:nth-child(1) {
    border-top: 1px solid #A5A194;
}
.plan-wrapper {
    padding-top: 65px;
}
.max450, .pmax450 p {
  max-width: 450px;
  width: 100%;
}
.list-s-style .list-title {
    color: var(--black);
    text-align: center;
}
.top-banner-block.brand-bg {
    background-color: var(--brand);
}
.img_group-col:nth-child(1) .grid-item {
    width: 100%;
}
.pg-floorplan.plan-titlebar {
    padding-top: 60px;
	padding-bottom: 30px;
}
.pg-floorplan .cta-col.col-right {
    justify-content: center;
    margin-top: 32px;
}
.pg-floorplan .cta-btn-inner div > * {
    text-align: center;
}
.pg-floorplan h4 {
  text-transform: unset;
}
#blueprint.blueprint-overview .fp-tabs .fp-tab {
    border-bottom: 0;
    background: #000000;
    color: #ffffff;
    font-size: 14px !important;
}
#blueprint.blueprint-overview .fp-tabs .fp-tab[aria-selected="true"] {
    background: #ffffff;
    color: #000000;
    border-bottom: 2px solid #ffffff;
    margin-bottom: -1px;
}
#blueprint.blueprint-overview .fp-filters .fp-filter .select2-container .select2-selection, #blueprint.blueprint-overview .fp-filters .fp-filter input[type=text].flatpickr {
    border: 1px solid #000000;
}
#blueprint.blueprint-overview .fp-tabs {
    border-bottom: 1px solid #000000;
    padding: 0px;
}
#blueprint .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 10px !important;
}
#blueprint.blueprint-overview .fp-filters .fp-filter .select2-container::after {
    height: 15px;
    top: 20%;
    transform: translateY(-20%);
    bottom: unset;
    right: 5px;
}
#blueprint .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
#blueprint.blueprint-overview .fp-panels {
    padding: 0;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan {
    border: 1px solid #000000;
    text-align: center;
    margin-bottom: 0px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .primary-action a:link, #blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .primary-action a:visited {
    background: var(--brand);
    border: 1px solid var(--brand);
    padding: 10px 15px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .primary-action a:hover {
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}
#blueprint.blueprint-overview .fp-panels {
    padding: 0 0;
}
#blueprint.blueprint-overview .fp-tabs {
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}
#blueprint.blueprint-overview .fp-tabs .fp-tab[aria-selected=true] {
    background: #F4F4F4;
    border-bottom: 1px solid #F4F4F4;
}
#blueprint.blueprint-overview .fp-filters {
    padding: 0;
    background: transparent;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .dimensions {
    padding: 0;
    justify-content: center;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .availability, #blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .price {
  font-weight: 400 !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .actions {
    padding: 0;
    text-align: center;
    justify-content: center;
    list-style-type: none;
    gap: 7px;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .actions .action {
    width: fit-content !important;
    margin: 0 !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .actions svg {
    width: 22px;
    fill: #000000 !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .actions svg path {
    fill: #000000;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper {
    padding: 0;
    background: transparent;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-inquire {
    border: 1px solid #000000;
    color: #000000;
    font-size: 12px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply:link {
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    font-size: 12px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply:visited {
    background: var(--brand);
    border: 1px solid var(--brand);
}
.css-2okqzz-primaryStyle-styles {
    background-color: var(--brand);
    color: #ffffff;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan:hover {
  border-top: 1px solid #000000 !important;
}
.fp-single-p2 a {
    color: #000000;
    text-decoration: underline;
}
#blueprint.blueprint-overview .fp-filters .fp-filter .select2-container .select2-selection, #blueprint.blueprint-overview .fp-filters .fp-filter input[type=text].flatpickr {
    height: 33px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .images {
    position: relative;
    z-index: 1;
}
.slides.floor-plan-images .slick-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 11;
    cursor: pointer;
}
.slides.floor-plan-images .slick-arrow.next {
    left: auto;
    right: 0;
}
.filters-results-status.availability-filters__results-info.filter-units-results-info {
    margin-top: 25px;
}
ul.dimensions {
    padding: 0;
}
.single-floor_plan .details .images .slick-arrow i:before {
    content: "";
}
.single-floor_plan .details .images .slick-arrow.slick-prev::after, .single-floor_plan .details .images .slick-arrow.prev::after, .single-floor_plan .details .images .slick-arrow.slick-next::after, .single-floor_plan .details .images .slick-arrow.next::after {
    color: #000000;
    font-size: 37px;
}
/* responsive */
@media (min-width: 1750px) {
  .max450 {
      max-width: 610px;
  }
  .full-slider-with-txt .slider-content-wrapper .topArrow-slide-content > * {
    max-width: 1250px;
  }
}
@media (min-width: 960px) {
	#blueprint.blueprint-overview .fp-filters__filters {
	    gap: 32px !important;
	}
}
@media (max-width: 1024px) {
  .floor-banner .carditem {
    padding-bottom: 65px;
  }
  .list-s-style .row {
    column-gap: 30px;
  }
  .list-s-style .col {
      width: calc(50% - 15px);
  }
  .img_group-row .img_group-col:nth-child(2) .grid-item {
      width: calc(50% - 5px);
  }
  .pg-floorplan .cta-col.col-right {
      margin-top: 20px;
  }
  .plan-wrapper {
    padding-top: 32px;
  }
  .ucg-scores .scores {
    column-gap: 52px;
  }
}
@media (max-width: 767px) {
  .floor-banner .carditem {
    padding-bottom: 32px;
  }
  .list-s-style .col {
      width: 100%;
  }
  #blueprint.blueprint-overview .fp-tabs .fp-tab {
      padding: 7px 10px;
  }
  #blueprint.blueprint-overview .fp-filters .fp-filter {
      row-gap: 5px;
  }
  #blueprint.blueprint-overview .fp-filters__filters {
      row-gap: 7px;
  }
  .ucg-scores .scores {
    column-gap: 25px;
  }
}
/* end responsive */
/* end floor plan */
/* gallery */
.gallery-banner {
    padding-bottom: 140px;
}
.gallery-banner .carditem {
    max-width: 520px;
    width: 100%;
}
.gallery .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    justify-content: space-between;
    margin-bottom: 32px;
	  z-index: 11;
}
/* .gallery .swiper-slide {
    margin: 0 !important;
} */
.gallery .mySwiper2 .swiper-slide {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  max-height: 90vh;
}
.swiper-thumbs {
  margin-top: 20px !important;
}
.swiper-thumbs .swiper-wrapper {
    display: flex !important;
    gap: 10px !important;
}
/* .gallery .swiper-slide {
    opacity: 0;
} */
.gallery .swiper-slide.swiper-slide-active {
    opacity: 1;
}
.gallery .swiper-slide.swiper-slide-visible {
  opacity: 1;
}
/* .gallery .swiper {
    padding: 0 15px;
} */

.gallery .slider.slider-for.slick-initialized.slick-slider .swiper-slide img {
    object-fit: contain;
    aspect-ratio: 1.35 / 1;
/*     max-height: calc(85vh - 100px); */
}
.gallery .thumgbb .swiper-slide img {
    aspect-ratio: 1 / 0.7;
    border-radius: 0px;
    object-fit: cover;
}
.slider.slider-nav.thumgbb {
    padding-top: 20px;
}

.gallery .slider-nav img.slick-slide, .gallery .swiper-thumbs .swiper-slide img {
    aspect-ratio: 1 / 0.7;
    border-radius: 0px;
    object-fit: cover;
}
.gallery .filters button {
    border: none;
    padding: 0;
    font-size: 18px;
    font-family: 'metropolis medium', sans-serif;
    font-weight: 500;
    letter-spacing: 1.5px;
    background-color: transparent;
}
.gallery .filters button.active {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.gallery .slider-nav .slick-slide {
    margin: 0 7.5px;
}
.gallery button.slick-arrow, .thumbnails .swiper-button-next, .thumbnails .swiper-button-prev, .gallery .swiper-button-prev, .gallery .swiper-button-next {
    padding: 0 0;
    width: 28px;
    min-width: 28px;
    height: 28px;
    position: absolute;
    top: 55%;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 0px;
    border: none;
    background-color: var(--white);
    background-repeat: no-repeat !important;
    background-size: 18px !important;
    background-position: center center !important;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    cursor: pointer !important;
}
.gallery .swiper-thumbs .swiper-button-prev, .gallery .swiper-thumbs .swiper-button-next {
  top: 67%;
}
.gallery button.slick-prev.slick-arrow, .thumbnails .swiper-button-prev, .gallery .swiper-button-prev {
    left: 2px;
    background-image: url(/wp-content/uploads/2024/11/arrow-left-long-solid.svg);
}
.gallery button.slick-next.slick-arrow, .thumbnails .swiper-button-next, .gallery .swiper-button-next {
    right: 2px;
    background-image: url(/wp-content/uploads/2024/11/arrow-right-long-solid.svg);
}
.thumbnails .swiper-wrapper {
    overflow: hidden !important;
}
.thumbnails .swiper-wrapper img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.slider.slider-for.slick-initialized.slick-slider iframe {
	object-fit: cover;
	aspect-ratio: 1.35 / 1;
    max-height: calc(-100px + 90vh);
}
.dd-title {
  display: none !important;
}
/* @media (max-width: 1024px) {
  .gallery-banner {
      padding-bottom: 65px;
  }
  .gallery .filters {
    margin-bottom: 20px;
  }
  .gallery .filters button {
    font-size: 16px;
  }
  .dd-title {
    display: flex !important;
	width: auto;
    margin: 0 auto 30px auto;
    justify-content: center;
	cursor: pointer;
  }
  img.dd-arrow {
    max-width: 18px;
    min-width: 18px;
    object-fit: contain;
  }
  .thumbnails {
    display: flex;
    justify-content: space-around;  
    gap: 15px;
    position: relative;
    margin-top: 20px;
  }
  .gallery .filters {
    display: none;
    position: absolute;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
	padding: 7px 10px;
    background-color: #FFFFFF;
  }
  .gallery .filters .tab-link {
	width: 100%;
  }
  .gallery .filters .tab-link {
	margin: 7px 0;
  }
} */

/* responsive */




@media (min-width: 1750px) {
  .gallery-banner .carditem {
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .gallery-banner {
      padding-bottom: 52px;
  }
  .thumbnails {
    margin-top: 10px;
  }
  .gallery .slider-nav .slick-slide {
      margin-right: 10px;
  }
  .main-image img {
      aspect-ratio: 1 / 0.7;
  }
  .thumbnails .swiper-wrapper img {
    height: 120px;
  }
  .gallery .filters {
      justify-content: flex-start;
      gap: 17px;
  }
  .gallery .mySwiper2 .swiper-slide {
      aspect-ratio: 1 / 0.7;
  }
  .gallery button.slick-arrow, .thumbnails .swiper-button-next, .thumbnails .swiper-button-prev, .gallery .swiper-button-prev, .gallery .swiper-button-next {
      width: 25px;
      min-width: 25px;
      height: 25px;
      background-size: 12px !important;
      top: 62%;
  }
  .gallery .swiper-thumbs .swiper-button-prev, .gallery .swiper-thumbs .swiper-button-next {
    top: 81% !important;
  }
	.gallery .slider.slider-for.slick-initialized.slick-slider .swiper-slide img, .slider.slider-for.slick-initialized.slick-slider iframe {
		max-height: 250px;
	}
}
/* end responsive */
/* end gallery */
/* single floor plan */
.floor-titlebar {
    padding: 160px 0 20px 0;
    border-bottom: 1px solid #cfd2d3;
}
.floor-titlebar {
    padding: 160px 0 20px 0;
    border-bottom: 2px solid #dee2e6;
}
.arrow-btn {
    border: none;
    padding: 0.5rem 0.75rem;
    line-height: 1;
    color: var(--black) !important;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.arrow-btn:hover {
  text-decoration: underline;
}
.arrow-btn.arrow-btn-right:after, .arrow-btn.arrow-btn-left:before {
    content: "";
    width: 50px;
    height: 14px;
    display: inline-block;
}
.arrow-btn.arrow-btn-left:before {
    margin-right: 0.5em;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.arrow-btn.arrow-btn-left:before {
    content: url(/wp-content/uploads/2024/11/light-arrow.svg);
}
.arrow-btn.arrow-btn-right:after {
    margin-left: 0.5em;
}
.arrow-btn.arrow-btn-right:after {
    content: url(/wp-content/uploads/2024/11/light-arrow.svg);
}
.fp-col-1 hr {
    width: 32px;
    height: 2px;
    background-color: var(--brand);
    opacity: 1;
    margin: 8px 0 16px 0;
}
.fp-col-1 .body2, .fp-key-plan-wrapper .body2 {
    text-transform: uppercase;
    line-height: 1.28;
    letter-spacing: 0.1em;
}
.mb16 {
    margin-bottom: 16px;
}
.single-flor-wrap .bbt-primary, .single-flor-wrap .bbt-secondary, .single-flor-wrap .bbt-tertiary {
    min-width: unset;
    width: 100%;
}
.fp-col-1, .fp-col-3 {
    width: 185px;
}
.fp-col-2 {
    width: calc(100% - 370px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-col-2 .fp-plan-img-wrapper, .fp-col-2 .fp-plan-img-wrapper * {
    width: 100%;
    text-align: center;
}
.fp-plan-img-wrapper img {
  object-fit: contain;
  /*max-height: 400px !important;*/
}
.floor-plate .floor-plate__image {
    max-height: 175px;
    object-fit: contain;
}
.floor-contact {
  background-color: #343a40 !important;
  padding-top: 75px;
  padding-bottom: 75px;
}
.gform_heading {
    display: none;
}
.gform_legacy_markup_wrapper {
    max-width: 730px;
    margin: 0 auto;
}
li#field_9_11 {
    margin: 0 0 20px 0 !important;
    width: 100%;
    padding: 0 !important;
    justify-content: center;
}
.gform_legacy_markup_wrapper form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}
/* body .gform_legacy_markup_wrapper ul li.gfield {
    width: calc(50% - 10px);
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    display: flex !important;
} 
.gform_legacy_markup_wrapper label.gfield_label {width: 0;height: 0;overflow: hidden;visibility: hidden;opacity: 1;}
body .gform_legacy_markup_wrapper .top_label div.ginput_container {
    margin: 0;
    width: 100%;
}
.gform_legacy_markup_wrapper .top_label input.small, .gform_legacy_markup_wrapper .top_label select.small {
    width: 100% !important;
    padding: 9px 15px !important;
    font-size: 16px !important;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0px;
    color: #ffffff;
    height: 44px;
    outline: none !important;
    box-shadow: none !important;
}
*/

.gform_legacy_markup_wrapper .top_label input::placeholder {
    color: #ffffff;
    font-size: 16px;
}
.floor-contact .gform_legacy_markup_wrapper ul.gform_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}
.floor-contact li.gf_left_third {
    width: calc(33.33% - 41px) !important;
}
body .gform_legacy_markup_wrapper ul li.req-txt {
    display: block !important;
    font-size: 16px;
}
.floor-contact li.req-txt a {
    color: #ffffff;
    text-decoration: underline;
}
.floor-contact li.req-txt a:hover {
    text-decoration: underline;
}
.floor-contact .gform_legacy_markup_wrapper .gform_footer {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.gform_legacy_markup_wrapper .gform_footer input {
    margin: 0 !important;
    background: #D53832 !important;
    color: #ffffff !important;
    border-radius: 0px 0px;
    font-size: 15px !important;
    letter-spacing: 0.28px;
    font-family: 'metropolis medium', sans-serif;
    font-weight: 500;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #D53832 !important;
    transition: all .3s ease-in-out;
    line-height: 1.3 !important;
    min-width: 150px;
}
.gform_legacy_markup_wrapper .gform_footer input:hover {
  background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #FFFFFF !important;
}
.floor-contact .col-12 {
  max-width: 750px;
    width: 100%;
}
.single-floor_plan #gallery {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #cfd2d3!important;
    margin-top: 50px;
}
.single-floor_plan #gallery .section-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.single-floor_plan #gallery .media .image a {
  width: 100%;
  display: block;
  cursor: pointer;
}
.single-floor_plan #gallery .media .image a:after {
    content: "\2b";
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 5px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.single-floor_plan #gallery .media .image a img {
    width: 100%;
    height: 170px;
    display: block;
    object-fit: cover;
    cursor: pointer;
}
.medium-title {
    font-size: 12px;
    text-align: center;
    padding: 7px;
    background-color: rgba(0,0,0,0.9);
    color: #ffffff;
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.single-txt-banner {
    background-color: #f0f0f0;
    padding-top: 48px;
    padding-bottom: 48px;
}
.plan-disclaimer {
    max-width: 1140px;
    margin: 0 auto;
}
.single-txt-banner {
    background-color: #f0f0f0;
    padding-top: 48px;
    padding-bottom: 48px;
}
.plan-disclaimer {
    max-width: 1040px;
    margin: 0 auto;
}
.single-flor-wrap .navigator {
    width: 100%;
}
.single-floor_plan #gallery .media .slick-arrow {
    width: 50px;
}
.single-floor_plan #gallery .media .slick-arrow.slick-prev {
    left: -45px;
}
.single-floor_plan #gallery .media .slick-arrow.slick-prev::after, .single-floor_plan #gallery .media .slick-arrow.slick-next::after {
    content: "";
    width: 100%;
    height: 25px;
    background-image: url(/wp-content/uploads/2024/11/light-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.single-floor_plan #gallery .media .slick-arrow.slick-next {
    right: -45px;
}
.single-floor_plan #gallery .media .slick-arrow.slick-prev::after {
    transform: rotate(180deg);
}
.gform_heading p {
    font-size: 18px;
}
.gform_heading .gform_required_legend {
    display: none;
}
span.fw600 {
    font-weight: 600 !important;
}
label.gform-field-label, .gfield p {
    color: var(--black) !important;
}
.gform-theme--framework a {
    text-decoration: underline;
    color: var(--black) !important;
}
body.page-id-3745 a:hover {
    color: var(--block);
}
body.page-id-3745 .w_break {
  word-break: break-all;
}
body.page-id-3745 .mt-4 {
    display: none !important;
    margin: 0 !important;
}
body.page-id-3745 .text-blocks .carditem.color_card .carditem-text {
    padding: 0;
}
.page-id-3745 .carditem-text h3 {
    margin-bottom: 10px;
}
.page-id-3745 .carditem-text .mt-4 {
    display: none;
}
.page-id-3745 .carditem-text p {
    font-size: 18px;
    margin-bottom: 32px;
}
.page-id-3745 .carditem-text ul li {
  font-size: 18px;
}
.page-id-3745 .carditem-text p:not(:last-child) {
    margin-bottom: 10px;
}
/* responsive */
@media (max-width: 1024px) {
  .single-floor_plan #gallery .media .slick-arrow {
      top: auto;
      bottom: -41px;
      width: 32px;
  }
  .single-floor_plan #gallery .media .slick-arrow.slick-prev {
      left: calc(50% - 37px);
  }
  .single-floor_plan #gallery .media .slick-arrow.slick-next {
      right: calc(50% - 37px);
  }
}
@media (max-width: 767px) {
  .floor-plan-row {
    padding-top: 25px;
  }
  .fp-col-2 {
      width: calc(100% - 185px);
  }
  .fp-col-3 {
      width: 100%;
  }
  .single-floor_plan #gallery {
      padding-bottom: 75px;
  }
  .single-floor_plan .floor-plan-images, .single-floor_plan .floor-plan-image {
      margin-bottom: 0px;
  }
  .fp-col-3 > .pt-5 {
      padding-top: 0px !important;
  }
  .disclaimer-group {
      display: none;
  }
  .fp-plan-img-wrapper, .fp-plan-img-wrapper > * {
      width: 100%;
  }
  .floor-titlebar {
      padding: 65px 0 20px 0;
      margin-bottom: 16px;
  }
  .mb-mb16 {
    margin-bottom: 16px;
  }
  .floor-contact {
      padding-top: 52px;
      padding-bottom: 52px;
  }
  .gform_legacy_markup_wrapper ul.gform_fields {
      row-gap: 20px;
  }
  li#field_9_11 {
      margin-bottom: 10px !important;
  }
  body .gform_legacy_markup_wrapper ul li.gfield {
      width: 100% !important;
  }
  .gform_legacy_markup_wrapper .gform_footer input {
      width: auto !important;
  }
}
@media (max-width: 575px) {
  .floor-plan-row {
    padding-top: 25px;
  }
  .fp-col-31, .fp-col-2 {
      width: 100%;
  }
  .floor-titlebar {
      padding: 52px 0 20px 0;
  }
}
/* end responsive */
/* end floor plan */
/* responsive */
@media (min-width: 1025px) {
	.menu_upper .col-lg-9, .menu-footer .col-lg-9 {
		width: calc(72% - 15px);
	}
	.menu_upper .col-lg-3, .menu-footer .col-lg-3 {
		width: calc(28% - 15px);
	}
	.menu_upper .row, .menu-footer .row {
		display: flex;
		flex-wrap: wrap;
		column-gap: 30px;
	}
}
@media (min-width: 1100px) {
	.menu_dropdown-wrap > .pg-container.menu_upper, .menu_dropdown-wrap .menu-footer .pg-container {
		padding-left: 90px;
		padding-right: 90px;
	}
}
@media (min-width: 1300px) {
	.menu_dropdown-wrap > .pg-container.menu_upper, .menu_dropdown-wrap .menu-footer .pg-container {
		padding-left: 150px;
		padding-right: 150px;
	}
}
@media (min-width: 1750px) {
  .UCG-block .display1, .display1 {
    font-size: calc(76 * 1.2);
  }
  .UCG-block .display2, .display2, .UCG-block .h1d2 h1, .UCG-block .h2d2 h2 {
    font-size: calc(60px * 1.2);
  }
  .UCG-block .body1, .body1, .gform_heading p, .nm-list li,.nm-list li, .UCG-block .pbody1 p, .outside-content p, .page-id-3745 .carditem-text p, .page-id-3745 .carditem-text ul li {
    font-size: calc(18px * 1.3);
  }
  .UCG-block .body2, .body2, .ftr-menu-wrap li, .ftr-menu-wrap a, .ftr-menu-wrap p, .UCG-block .pbody2, .list2 ul li  {
    font-size: calc(16px * 1.3);
  }
  .UCG-block .body3, .body3, .UCG-block .pbody3, .list3 ul li {
    font-size: calc(14px * 1.3);
  }
  .UCG-block .body4, .body4, .amenities-list-wrap ul.list-style li, .text-list-wrap ul.list-style li {
    font-size: calc(13px * 1.3);
  }
  .UCG-block .body5, .body5 {
    font-size: calc(11px * 1.3);
  }
  .bbt-primary, .bbt-secondary, .bbt-tertiary {
    font-size: calc(15px * 1.3) !important;
  }
  .nav-bar .logo img, .logo-hr .logo img {
    max-height: 100px;
  }
  .new-header-two .menu a, .menu-footer .header-btn a, ul.dot-list.body3 li {
    font-size: calc(14px * 1.3) !important;
  }
  .new-header-two .main-menu ul.nav-2 li a {
    font-size: calc(16px * 1.3);
  }
  .menu-light .main-menu ul + ul li a {
  max-width: 250px;
  }
  .social-icons .iconclass {
    max-width: 25px;
  }
  .new-header-two .main-menu ul.nav li a {
    font-size: calc(32px * 1.3);
  }
  .new-header-two .main-menu ul.nav {
    row-gap: 32px;
  }
  .social-full-col i {
    font-size: 32px;
  }
  .ftr-btn-icon-col img {
    width: 22px;
  }
  .popup-title {
    left: -55px;
  }
  .popup-title h5 {
    font-size: 16px !important;
  }
}
@media (max-width: 1024px) {
  .UCG-block .display1, .display1 {
      font-size: 57px;
  }
  .UCG-block .display2, .display2, .UCG-block .h1d2 h1, .UCG-block .h2d2 h2 {
      font-size: 46px;
  }
  .UCG-block .body1, .body1, .nm-list li, .nm-list li, .UCG-block .pbody1 p, .outside-content p .page-id-3745 .carditem-text p, .page-id-3745 .carditem-text ul li {
    font-size: 17px;
  }
  .mb55 {
    margin-bottom: 37px;
  }
  .mb40, .listmy40 ul {
    margin-bottom: 30px !important;
  }
  .mb32, .listmy32 ul, .pmb32 p {
    margin-bottom: 25px !important;
  }
  .mb25, .listmy25 ul {
    margin-bottom: 22px !important;
  }
  .mb20, .listmy20 ul, .h3mb20 h3 {
    margin-bottom: 18px !important;
  }
  .sec-py {
    padding-top: 65px;
      padding-bottom: 65px;
  }
  .sec-pt {
      padding-top: 65px;
  }
  .sec-pb {
      padding-bottom: 65px;
  }
	.new-header-two .main-menu ul.nav {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
  .UCG-block .display1, .display1 {
    font-size: 48px;
  }
  .UCG-block .display2, .display2, .UCG-block .h1d2 h1, .UCG-block .h2d2 h2 {
    font-size: 40px;
  }
  .UCG-block .body1, .body1, .outside-content p .gform_heading p, .nm-list li, .nm-list li, .UCG-block .pbody1 p, .page-id-3745 .carditem-text p, .page-id-3745 .carditem-text ul li {
    font-size: 16px;
  }
  .UCG-block .body2, .body2, .ftr-menu-wrap li, .ftr-menu-wrap a, .ftr-menu-wrap p, .UCG-block .pbody2, .list2 ul li {
    font-size: 15px;
  }
  .UCG-block .body3, .body3, .UCG-block .pbody3, .list3 ul li {
    font-size: 14px;
  }
  .mb55 {
    margin-bottom: 32px;
  }
  .mb40, .listmy40 ul {
    margin-bottom: 25px !important;
  }
  .mb32, .listmy32 ul, .pmb32 p {
    margin-bottom: 20px !important;
  }
  .mb25, .listmy25 ul {
    margin-bottom: 18px !important;
  }
  .mb20, .listmy20 ul, .h3mb20 h3 {
    margin-bottom: 15px !important;
  }
  .sec-py {
    padding-top: 52px;
      padding-bottom: 52px;
  }
  .sec-pt {
      padding-top: 52px;
  }
  .sec-pb {
      padding-bottom: 52px;
  }
  .mb-pt0 {
    padding-top: 0px;
  }
  .mb-pb0 {
    padding-bottom: 0px;
  }
}
/* end responsive */

.menu_upper .row, .menu-footer .row {
	width: 100%;
}
div#inquire-modal-form .fp-single-p2 {
    font-size: 14px !important;
}
.fancybox-slide .gallery {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}
.fancybox-slide .gallery .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.fancybox-slide .gallery .slick-arrow i {
    font-size: 32px;
}
.fancybox-slide .gallery .prev.slick-arrow {
    left: 5px;
}
.fancybox-slide .gallery .next.slick-arrow {
    left: auto;
    right: 5px;
}
.fancybox-slide .gallery .image img {
    height: 450px;
    margin-bottom: 15px;
}




.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;
}




#header header.new-header-two.sticky {
    position: fixed;
    width: 100%;
    height: auto;
    top: -320px;
    z-index: 11119;
    animation: headslideDown 0.4s ease forwards;
}
header.new-header-two ul.social-icons {
    display: none;
    opacity: 0;
}
header.new-header-two.active-menu ul.social-icons {
    display: block;
    opacity: 1;
}
@keyframes headslideDown {
    0% {
        top: -200px; /* Off-screen */
    }
    100% {
        top: 0; /* Fully visible */
    }
}


.version-message {
    color: #fff;
    font-size: 12px;
}

.version-main {
    position: absolute;
    right: 25px;
    margin-top: -20px;
}