/*
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.
*/


/*====================== Display css ===================*/
:root {
    --primary-color: #899CA7;
    --secondary-color: #59454D;
    --accent-color: #555759;
    --black: #000000;
    --white: #FFFFFF;
    --bgcolor: #F4F0E8;
	--body4: 12px;
	--body5: 11px;	
	--font1: "aptos-serif",sans-serif;
	--font2: "utile-display",sans-serif;
}
body {
	font-family: var(--font2) !important;
	font-weight: 100;
	letter-spacing: 0.32px;
}
h2 {
	font-family: var(--font2);
	font-weight: 400;
}
h3 {
	font-family: var(--font2);
	font-weight: 400;
}
h1, h4, h5, h6 {
    font-family: var(--font2);
	font-weight: 500;
}
.pg--width {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.pg-container {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.pg--width {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}
@media (min-width: 1025px) {
	.pg-container {
		max-width: 86%;
	}
}
@media (max-width: 767px) {
	.pg-container > .row {
		max-width: 100%;
		margin: 0;
	}
}

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

 /****** header Styles *********/
 .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;
  
}
.simple-header .nav-wrapper .menu a:hover{
  color: var(--secondary-color);
}
.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(--secondary-color);
}
.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-weight: 500;
  color: var(--white);
}
header.active-menu .main-menu {
  overflow: auto;
  padding: 30px 70px;
  height: 100%;
  min-height: 100vh;
}
.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(--secondary-color);
}



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

.iconclass {
  max-width: 16px;
}
.iconclass:hover {
  margin-top: -5px;
}
header.new-header-two {
            background: var(--secondary-color);
            position: relative;
        }

        .new-header-two .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 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(--black);
            font-size: 16px;
            line-height: 1.375;
            letter-spacing: 0.04em;
            font-weight: 500;
            
        }
        .new-header-two .menu a:hover {
            color: var(--secondary-color);
        }
        .humburger {
            display: flex;
            flex-direction: column;
            max-width: 28px;
            width: 100%;
            gap: 5px;
            cursor: pointer;
            min-width: 28px;
        }
        .humburger span{
            width: 100%;
            height: 3px;
            background: var(--black);
        }
        .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(--secondary-color);
            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: 0 0;
            height: 100%;
            min-height: 100vh;
        }
        .new-header-two .main-menu ul.nav li a:hover{
            color: var(--secondary-color);
        }
        .new-header-two.style-b .nav-bar-wrapper {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        @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.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(--secondary-color);
        }
        .new-header-two .top-header ul a i{
            color: var(--secondary-color);
        }
        .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: 100%;
            min-height: 100vh;
         }
        .menu-dark .main-menu{
         background: var(--black);
        }
         .main-menu .logo-wrapper {
            width: 100%;
            padding: 20px 0px;
            border-bottom: 1px solid #e7e7e8;
         }
        .main-menu .logo-wrapper .logo-hr {
            display: flex;
            align-items: center;
            justify-content: space-between;
         }
         .new-header-two .main-menu ul.nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 0;
            align-items: flex-start;
            list-style: none;
         }
        .new-header-two .main-menu ul.nav li a {
            font-size: 60px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.125;
            color: var(--white);
            letter-spacing: 0.015em;
            text-transform: uppercase;
        }
        .new-header-two .menu-footer {
            width: 100%;
            border-top: 1px solid #e7e7e8;
            padding: 35px 0;
         }
         .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(--white);
            font-size: 16px;
            line-height: 1.375;
            letter-spacing: 0.04em;
            font-weight: 500;
            
         }
         .new-header-two .main-menu ul + ul {
            padding-top: 30px !important;
            border-top: 1px solid var(--white);
            margin-top: 20px !important;
         }
         .new-header-two .main-menu ul.nav-2 li a:hover{
            color: var(--secondary-color);
         }
         .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(--secondary-color);
         }
         .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(--secondary-color);
         }
         .new-header-two .menu-footer .header-btn{
            display: inline-block !important;
         }
         /****** 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 {
            padding-top: 20px !important;
            border-top: 1px solid #e7e7e8;
            margin-top: 20px !important;
         }
        .menu_dropdown-wrap {
            width: 100%;
            max-height: calc(100vh - 100px);
            display: flex;
            flex-direction: column;
        }
        .menu_dropdown-wrap .menu_upper {
            padding: 35px 0;
        }
        .menu-light .main-menu ul + ul a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .menu-footer .row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            row-gap: 20px;
        }
        .pg-container.menu_upper {
            max-width: 100%;
        }
        .pg-container.menu_upper .row {
            row-gap: 40px;
        }
        @media (min-width: 1025px) {
            .pg-container.menu_upper {
                max-width: 95%;
            }
            .menu_upper .row, .menu-footer .row {
                display: flex;
                flex-wrap: wrap;
                column-gap: 30px;
            }
            .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);
            }
        }
        @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 (max-width: 1024px) {
            .menu_dropdown-wrap .menu_upper {
                padding: 20px 0;
            }
            .new-header-two .menu-footer {
                padding: 20px 0 32px 0;
            }
        }
         @media (max-width: 960px){
            .new-header-two .main-menu ul.nav li a{
               color: var(--black);
               font-size: 16px;
               line-height: 1.375;
               letter-spacing: 0.04em;
               font-weight: 500;
            }
            .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-weight: 600;
  text-align: center;
}
.announcement {
  position: relative;
  width: 100%;
  background: var(--primary-color);
  height: 0;
  top: 0;
  color: var(--white);
  overflow: hidden;
  transition: all .3s ease;
  z-index: 9999;
}

.active.announcement {
    padding: 15px 0px;
    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;
	width: 25px;
	height: 25px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	right: -2px;
	align-items: center;
	justify-content: center;
    cursor: pointer;
}
.announcement .announcement-row {
    position: relative;
    padding-right: 30px;
    text-align: center;
}
.announcement-text * {
	text-align: center;
	margin: 0
}
.announcement .close i {
    font-size: 22px;
}
.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: -2px;
  }
}
@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 .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(--secondary-color);
    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: var(--bgcolor);}

.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-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 { 
    padding: 0 0 0 0;
    color: var(--black);
    margin: 10px 0 5px 0;
 }
.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(--secondary-color);
    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: 20px;
    padding-bottom: 32px;
}
.footer1 .col-right {display: flex;justify-content: end;}
.footer1 .f-row1  ul li a {
    color: var(--black);
    margin-right: 15px;
    font-size: 24px;}
.footer-bottom .logo-wrap img {
        max-width: 140px !important;
	    width: auto;
    }

/*     .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: 15px;
    padding-bottom: 32px;
}
.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) {

.ucg-neighborhood-map #map {
    min-height: 100vw;
}
  .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-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 .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;
}
@media (max-width: 1024px) {
	ul#menu-privacy-menu {
		column-gap: 2.2vw;
	}
}
.cta-section.cta-accent.cntr-cta-section .col-right {
    display: flex;
    align-items: center;
}
section.cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
section.cta-section .col-left p, section.cta-section .col-right p {
    margin: 0;
}
section.cta-section .col-left > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1010px;
    width: 100%;
}
@media (min-width: 767px) {
    .cta-btn-inner {
        max-width: 300px;
        margin: 0 0 0 auto;
    }
}

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

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

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

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

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

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

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

.ucg-neighborhood-map #map .marker img {
    width: 300% !important;
    position: absolute;
    top: -90px;
    left: -50px;
}

#map .marker .map-marker-color-icon {
    height: 1.5rem !important;
    width: 1.5rem !important;
}


.body1 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
	letter-spacing: 0.4px;
	font-family: var(--font2);
}
.body2 {
    font-size: 16px;
    font-weight: 100;
    line-height: 1.4;
	letter-spacing: 0.32px;
}
.body3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
	letter-spacing: 0.28px;
}
.body4 {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
	letter-spacing: 0.24px;
	font-family: var(--font2);
}
.body5 {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
	letter-spacing: 0px;
}
/* gallery block */
section.gallery-block {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FAF9F5;
}
.gallery-pg-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-pg-tabs .tab {
    padding: 10px 40px;
    line-height: 1.2;
    font-size: 18px;
    letter-spacing: 1px;
    background-color: transparent;
    cursor: pointer;
}
.gallery-pg-tabs .tab.active {
    background-color: #986147;
    color: var(--white);
}
.gallery-pg-tabs .tab h4 {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    color: var(--black);
    
    display: flex;
    align-items: center;
}
.gallery-pg-tabs .tab.active > * {
    color: var(--white);
}
.gallery-pg-tabs .tab:not(:first-child) {
    border-left: 1px solid var(--black);
}
.gallery-block .tab-content {
  display: none;           
}
.gallery-block .tab-content.active {
  display: block;
}
.gallery-block .fg-filtering-container {
    padding: 0;
    margin: 52px auto !important;
}
.gallery-block .fg-light .fg-tag-item.fg-selected .fg-tag-link {
    background-color: transparent;
    border-bottom: 1px solid var(--black);
    color: var(--black);
}
.gallery-block .fg-light .fg-tag-item .fg-tag-link {
    border-radius: 0;
    padding: 0 15px 7px 15px;
    border: none;
    
    font-size: 16px !important;
    color: var(--black);
    background-color: unset;
}
.gallery-block .fg-tag-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px 15px;
    flex-wrap: wrap;
}
.gallery-block:not(.masonry) .foogallery.foogallery-container, 
.gallery-block:not(.masonry) .gallery-content-wrap {
    padding: 0;
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.gallery-block:not(.masonry) .foogallery.foogallery-container .fg-item, 
.gallery-block:not(.masonry) .gallery-content-wrap .view-img, 
.gallery-block:not(.masonry) .gallery-content-wrap .tour {
    margin: 0;
    width: calc(25% - 23px);
    aspect-ratio: 1 / 0.91;
}
.gallery-block .foogallery.foogallery-container .fg-item *, .gallery-block .gallery-content-wrap .view-img *, .gallery-block .gallery-content-wrap .tour * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
.gallery-block .foogallery.foogallery-container .fg-item figure {
    margin: 0;
    border: none;
    display: block;
    width: 100%;
    box-shadow: none !important;
}
.gallery-block .foogallery.foogallery-container .fg-item a, .foogallery.foogallery-container .fg-item span, .foogallery.foogallery-container .fg-item img {
    display: inline-block;
    border: none;
}
.gallery-block .foogallery.foogallery-container .fg-item figure img {
    width: 100% !important;
}
.gallery-block .foogallery.foogallery-container .fg-item .fg-loader {
    width: 55px;
    height: 55px;
    top: 30%;
    left: 34%;
    align-items: center;
}
.gallery-block .foogallery.fg-light .fg-item.fg-loading {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* mesonary */
.gallery-block.masonry .foogallery .fg-column-width, .gallery-block.masonry .fg-masonry .fg-gutter-width {
    display: none !important;
}
/*.gallery-block.masonry .foogallery.fg-dark .fg-item-inner {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.gallery-block.masonry .fg-masonry .fg-item {
    position: relative !important;
    left: unset !important;
    top: unset !important;
    margin: 0;
    width: auto;
}*/
.fg-masonry.fg-col2 .fg-item {
    width: calc(50% - 23px); 
    padding-right: 15px;
}
.fg-masonry.fg-col2 .fg-item:nth-child(2n) {
    padding-right: 0px;
    padding-left: 15px;
}
.fg-masonry.fg-col2 .fg-item {
    margin-bottom: 30px !important;
}
/*.gallery-block.masonry .foogallery.fg-masonry, */.gallery-block.masonry .gallery-content-wrap {
  column-count: 2; /* Two fixed columns */
  column-gap: 30px; /* Space between columns */
  height: auto !important;
}
/*.gallery-block.masonry .foogallery.fg-masonry .fg-item,*/ 
.gallery-block.masonry .gallery-content-wrap .tour, 
.gallery-block.masonry .gallery-content-wrap .view-img {
  break-inside: avoid; /* Prevent items from breaking across columns */
  margin-bottom: 30px;
}
.gallery-block.masonry .gallery-content-wrap img {
   width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}
.foogallery.fg-dark .fg-item.fg-error, .foogallery.fg-dark .fg-item.fg-idle, .foogallery.fg-dark .fg-item.fg-loading {
  background-color: transparent !important;
  border: none !important;
  box-shadow: unset !important;
}
.viewtab div#tab-1 {
    width: 100%;
}
/* end mesonary */
/* slider */
.gallery-block .foogallery.fg-slider, .fg-slider .fg-panel {
    background: unset;
    border: none;
    box-shadow: none;
}
.gallery-block .foogallery.fg-slider * {
    border: none !important;
}

.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumbs-stage, .gallery-block .fg-panel-thumbs-top .fg-panel-thumbs-stage {
    background: transparent !important;
}
.gallery-block .fg-panel.fg-light :is(.fg-panel-button,.fg-panel-thumbs-button,.fg-panel-thumb,.fg-panel-thumb-spacer), 
.gallery-block .fg-panel.fg-light:is(.fg-medium,.fg-panel-no-mobile) .fg-panel-cart-inner, 
.gallery-block .fg-panel.fg-light:is(.fg-medium,.fg-panel-no-mobile):not(.fg-panel-info-overlay) .fg-panel-info-inner {
    background: transparent;
}
.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumb {
    margin: 15px 7.5px !important;
}
.gallery-block .fg-panel-thumb-media, .gallery-block .fg-panel-thumb-media img {
    height: 140px;
    min-height: 140px;
    object-fit: cover;
}
.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumbs-inner {
    height: auto;
    min-height: auto;
}
.fg-panel.fg-light,.fg-panel.fg-light .fg-panel-thumb:is(.fg-idle,.fg-loading,.fg-error) .fg-panel-thumb-media {
    background-color: transparent !important;
}
/* end slider */
@media (max-width: 1024px) {
  section.gallery-block {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .gallery-block:not(.masonry) .foogallery.foogallery-container .fg-item, 
  .gallery-block:not(.masonry) .gallery-content-wrap .view-img, 
  .gallery-block:not(.masonry) .gallery-content-wrap .tour {
      width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  section.gallery-block {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .gallery-block .foogallery.foogallery-container, .gallery-block .gallery-content-wrap {
    gap: 10px;
  }
  .gallery-block:not(.masonry) .foogallery.foogallery-container .fg-item, 
  .gallery-block:not(.masonry) .gallery-content-wrap .view-img, 
  .gallery-block:not(.masonry) .gallery-content-wrap .tour {
      width: calc(45% - 5px) !important;
      min-width: calc(45% - 5px) !important;
      max-width: calc(45% - 5px) !important;
  }
  .gallery-pg-tabs .tab {
      padding: 15px 15px;
      display: flex;
      align-items: stretch;
      align-self: stretch;
      text-align: center;
  }
  .gallery-block .fg-filtering-container {
    margin: 25px auto !important;
  }
  .fg-masonry.fg-col2 .fg-item {
    padding-right: 5px;
  }
  .fg-masonry.fg-col2 .fg-item:nth-child(2n) {
      padding-right: 0px;
      padding-left: 5px;
  }
  .fg-masonry.fg-col2 .fg-item {
      margin-bottom: 10px !important;
  }
  /*.gallery-block.masonry .foogallery.fg-masonry, */.gallery-block.masonry .gallery-content-wrap {
    column-gap: 10px; /* Space between columns */
  }
  /*.gallery-block.masonry .foogallery.fg-masonry .fg-item,*/ 
  .gallery-block.masonry .gallery-content-wrap .tour, 
  .gallery-block.masonry .gallery-content-wrap .view-img {
    margin-bottom: 10px;
  }
  .gallery-block .fg-panel-thumbs-bottom .fg-panel-thumb {
      margin: 5px 2.5px !important;
  }
  .gallery-block .fg-panel-thumb-media, .gallery-block .fg-panel-thumb-media img {
      height: 47px;
      min-height: 47px;
  }
}
/* end gallery block */

/* pricebox block */
.pricebox {
    width: calc(33.33% - 22px);
}
.pricebox-wrapper {
    gap: 25px 22px;
    justify-content: space-between;
}
.pricebox-inner {
    background-color: #FAF9F5;
    border-radius: 5px;
    overflow: hidden;
}
.pricebox-header {
    padding: 40px 40px 25px 40px;
    border-bottom: 1px solid #F0F3F9;
}
.pricebox-header h2 {
    margin-bottom: 6px;
    letter-spacing: -0.4px;
}
.pricebox-header p {
    margin-bottom: 14px;
}
.pricebox-header h5 {
    letter-spacing: 1.3px;
    line-height: 1.2 !important;
    text-transform: uppercase;
}
.pricebox-details {
    background-color: var(--white);
    padding: 24px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricebox-details ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricebox-details ul li {
    padding-left: 28px;
    position: relative;
}
.pricebox-details ul li:after {
    content: "";
    width: 22px;
    height: 22px;
    background: url(https://block.upshiftclient.com/wp-content/uploads/2025/02/CheckCircle.svg);
    position: absolute;
    left: 0;
    top: 6px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}
.pricebox-btn {
  margin-top: 28px;
}
/* responsive */
@media (max-width: 1024px) {
  .pricebox-wrapper {
      column-gap: 15px;
  }
  .pricebox {
      width: calc(33.33% - 10px);
  }
  .pricebox-details {
      padding: 24px 20px 40px 20px;
  }
}
@media (max-width: 767px) {
  .pricebox {
      width: 100%;
  }
}
/* end responsive */
/* end pricebox block */
/* progrssbar */
.line-progress-row {
    gap: 25px 45px;
}
.line-progress-row .progressbar-col {
    width: calc(50% - 22.5px);
}
.line-progressbar .progrss_bar-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.line-progressbar .progrss_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.line-progressbar .progress {
    width: 100%;
    max-width: 100%;
    height: 4px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    border-radius: 0px;
}
.line-progressbar .progress-fill {
    height: 100%;
    width: 0;
    background: #986147;
    transition: width 1.5s ease-in-out;
}
@media (max-width: 1024px) {
  .line-progressbar .progrss_bar-container {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .line-progress-row .progressbar-col {
      width: 100%;
  }
}
.circular-progressbar .progrss_bar-container {
    display: flex;
    gap: 40px 20px;
}
.circular-progressbar .progrss_bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: calc(33.33% - 20px);
}
.circular-progressbar .progress {
    width: 85%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#eee 0deg, #eee 360deg); /* Default empty */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--black);
    aspect-ratio: 1 / 1;
}
.circular-progressbar .progress::before {
    content: "";
    position: absolute;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background: #FAF9F5;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}
.circular-progressbar .progress-fill {
    display: none;
}
.circular-progressbar .progressbar-col {
    width: 100%;
}
.circular-progressbar .progressbar-col p {
    text-align: center;
}
.circular-progressbar .progrss_bar span.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    display: block;
}
.circular-progressbar .progrss_bar > span {
    display: none;
}
/* responsive */
@media (max-width: 540px) {
  .circular-progressbar .progrss_bar-container {
    flex-wrap: wrap;
  }
  .circular-progressbar .progrss_bar {
      width: 100%;
  }
  .circular-progressbar .progress {
      max-width: 310px;
  }
}
/* end responsive */
/* end progressbar */
/* headerbar */
section.headerbar {
    position: relative;
}
.header-wrapper {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lg_bar .header-wrapper {
  min-height: 360px;
}
.header-wrapper h1 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.1px;
    margin: 0;
    text-align: center;
}
.lg_bar .header-wrapper h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -0.2px;
    margin: 0;
}
section.headerbar.with-bgimg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
section.headerbar.with-bgimg:after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black)4D;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.headerbar.with-bgimg .header-wrapper h1 {
  color: var(--white);
}
.header-wrapper {
    position: relative;
    z-index: 11;
}
/* end headerbar */
/* image only */
.full-container {
  max-width: 100%;
  width: 100%;
}
.images-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 32px;
}
.with1row .images-grid-col {
    width: 100%;
}
.with2row .images-grid-col {
    width: calc(50% - 16px);
}
.with3row .images-grid-col {
    width: calc(33.33% - 22px);
}
.with4row .images-grid-col {
    width: calc(25% - 24px);
}
.images-grid-col figure {
    margin: 0;
    height: 100%;
}
.images-grid-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* responsive */
@media (max-width: 1024px) {
  .images-grid-row {
    gap: 20px 20px;
  }
  .with2row .images-grid-col {
    width: calc(50% - 10px);
  }
  .with3row .images-grid-col {
      width: calc(33.33% - 14px);
  }
  .with4row .images-grid-col {
      width: calc(25% - 15px);
  }
}
@media (max-width: 767px) {
  .images-grid-row {
    gap: 10px 10px;
  }
  .with2row .images-grid-col {
    width: calc(50% - 5px);
  }
  .with3row .images-grid-col {
      width: calc(33.33% - 7px);
  }
  .with4row .images-grid-col {
      width: calc(25% - 8px);
  }
}
/* end responsive */
/* end image only */
/* testimonials block */
.one-slide .testimonial-details {
    margin-bottom: 40px;
}
.two-slide .testimonial-details {
    margin-bottom: 30px;
}
.three-slide .testimonial-details {
    margin-bottom: 20px;
}
.testimonial-details * {
    margin: 0;
    text-align: center;
    font-weight: 500 !important;
    color: var(--black);
}
.one-slide .testimonial-details > * {
    font-size: 40px;
    line-height: 1.2;
}
.two-slide .testimonial-details > * {
    font-size: 27px;
    line-height: 1.3;
}
.three-slide .testimonial-details > * {
    font-size: 18px;
    line-height: 1.4;
}
.testimonial-slide .name {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    color: var(--black);
}
.testimonial-slider.two-slide .slick-track, .testimonial-slider.three-slide .slick-track {
    display: flex;
    gap: 50px;
}
.testimonial-slider ul.slick-dots {
    margin: 50px 0 0 0;
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 8px;
}
.testimonial-slider ul.slick-dots li {
    line-height: 1;
}
.testimonial-slider ul.slick-dots li button {
    padding: 0;
    border: none;
    background: #E7E7E7;
    width: 11px;
    height: 11px;
    font-size: 0px;
    border-radius: 50%;
}
.testimonial-slider ul.slick-dots li.slick-active button {
    background-color: #986147;
}
/* responsive */
@media (max-width: 1024px) {
  .testimonial-slider.two-slide .slick-track, .testimonial-slider.three-slide .slick-track {
     gap: 28px;
  }
  .one-slide .testimonial-details > * {
    font-size: calc(40px * .8);
  }
  .testimonial-slider ul.slick-dots {
      margin-top: 35px;
  }
}
@media (max-width:767px) {
  .testimonial-slider.two-slide .slick-track, .testimonial-slider.three-slide .slick-track {
     gap: 2px;
  }
  .one-slide .testimonial-details > *, .two-slide .testimonial-details > *, .three-slide .testimonial-details > * {
    font-size: 16px;
    line-height: 1.4;
  }
  .testimonial-slide .name {
    font-size: 14px;
  }
  .testimonial-slider ul.slick-dots {
      margin-top: 20px;
  }
}
/*end responsive */
/* end testimonials block */
/* footer3 block */
footer.footer3 {
    padding: 65px 0 40px 0;
    background-color: #FAF9F5;
}
.footer3 .ftr-menu-wrap {
    padding-top: 50px;
}
.footer3 ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer3 .ftr__col > * {
    max-width: 280px;
    width: 100%;
    text-align: center;
    margin: 0;
}
.footer3 .ftr__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer3 .ftr__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer3 .ftr__col li, .footer3 .ftr__col a, .footer3 .ftr__col p {
    font-size: 16px;
    font-weight: 500;
}
.footer3 ul.lt_logo, .footer6 ul.lt_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}
.footer3 .Footer-newlogo {
    padding-top: 65px;
}
.footer3 .ftr-social-row, .footer6 .ftr-social-row {
    padding: 40px 0 45px 0;
}
.footer3 .ftr-social-row ul, .footer6 .ftr-social-row ul {
    gap: 10px 25px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    background-color: #FAF9F5;
    width: fit-content;
    margin: 0 auto;
}
.footer3 .ftr-social-row ul i, .footer6 .ftr-social-row ul i {
    font-size: 26px;
}
.footer3 .social-full-col, .footer6 .social-full-col {
    position: relative;
}
.footer3 .social-full-col:after, .footer6 .social-full-col:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer3 ul.lt_logo img, .footer6 ul.lt_logo img {
    max-width: 135px;
    width: 100%;
}
.footer3 .bottom_col, .footer6 .bottom_col {
    gap: 15px 50px;
    width: fit-content;
    margin: 0 auto 25px auto;
}
.footer3 .bottom_col ul, .footer6 .bottom_col ul {
    gap: 5px 40px;
}
.footer3 .bottom_col ul li a, .footer6 .bottom_col ul li a {
    font-size: 12px;
}
.footer3 .bottom_col *, .footer6 .bottom_col * {
    margin: 0;
}
.footer3 .ftr-btm-txt-col p, .footer6 .ftr-btm-txt-col p {
    text-align: center;
}
.footer3 .ftr-btn-icon-col ul, .footer6 .ftr-btn-icon-col ul {
    gap: 7px;
}
.footer3 .ftr-btn-icon-col ul img, .footer6 .ftr-btn-icon-col ul img {
    width: 20px;
    height: 18px;
    object-fit: contain;
    object-position: center;
}
/* responsive */
@media (max-width: 767px) {
  footer.footer3 {
    padding: 40px 0 30px 0;
  }
  .footer3 img {
      max-width: 150px;
      width: 100%;
  }
  .footer3 .ftr-menu-wrap {
      padding-top: 40px;
  }
  .footer3 .ftr__col {
      justify-content: flex-start;
      gap: 10px;
  }
  .footer3 .ftr__col > * {
      text-align: left;
  }
  .footer3 .ftr-menu-wrap .row {
      row-gap: 25px;
  }
  .footer3 .Footer-newlogo {
      padding-top: 45px;
  }
  .footer3 ul.lt_logo, .footer6 ul.lt_logo {
      justify-content: flex-start;
  }
  .footer3 .ftr-social-row, .footer6 .ftr-social-row {
      padding: 50px 0 15px 0;
  }
  .footer3 .social-full-col:after, .footer6 .social-full-col:after {
      top: -23px;
      transform: translateY(0);
  }
  .footer3 .ftr-social-row ul, .footer6 .ftr-social-row ul {
      padding: 0 0;
      margin: 0 0;
  }
  .footer3 .social-full-col ul, .footer6 .social-full-col ul {
      padding: 0;
      margin: 0;
      column-gap: 12px;
  }
  .footer3 .ftr-social-row ul i, .footer6 .ftr-social-row ul i {
      font-size: 18px;
  }
  .footer3 .bottom_col ul, .footer6 .bottom_col ul {
      column-gap: 13px;
      flex-wrap: wrap;
  }
  .footer3 .bottom_col, .footer6 .bottom_col {
      margin-bottom: 15px;
  }
  .footer3 .ftr-btm-txt-col p, .footer6 .ftr-btm-txt-col p {
      text-align: left;
  }
  .footer3 .ftr-btn-icon-col, .footer6 .ftr-btn-icon-col {
      margin-top: 15px;
  }
}
/* end responsive */
/* end footer3 block */
/* footer4 block */
footer.footer4, footer.footer5 {
    background-color: #FAF9F5;
}
.footer4 ul, .footer5 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footer4-row, .footer5-row {
    display: flex;
    flex-wrap: wrap;
}
.footer4-col {
    width: 50%;
}
.footer4-col.left {
    padding: 35px 25px 45px 0;
    padding-left: calc(calc(100% - 1210px) /2);
    background-color: var(--white);
}
.footer4 .ftr-logo img {
    max-width: 190px;
}
.footer4 .ftr-logo {
    padding-bottom: 25px;
    border-bottom: 1px solid #7C8C91;
    margin-bottom: 55px;
}
.footer4 .ftr-title, .footer5 .ftr-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer4-col.left > .row, .footer5-col.right .row {
    row-gap: 60px;
    padding-bottom: 45px;
    border-bottom: 1px solid #7C8C91;
    margin-bottom: 30px;
}
.footer4 .hours-wrap p, .footer5 .hours-wrap p {
    gap: 7px;
    font-weight: 500;
    margin: 0;
}
.footer4 .hours-wrap p .hr-time {
    font-size: 12px;
    padding: 5px 10px 5px 10px;
    background-color: #FAF9F5;
    line-height: 1;
    border-radius: 100px;
}
.footer4 .hours-wrap, .footer5 .hours-wrap {
    gap: 10px 30px;
}
.footer4 .ftr-social-wrap, .footer5 .ftr-social-wrap {
    gap: 20px;
    justify-content: space-between;
}
.footer4 .social-col i, .footer5 .social-col i {
    font-size: 26px;
}
.footer4 .social-col, .footer5 .social-col {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer4 .social-col a, .footer5 .social-col a {
    color: var(--black);
}
.footer4 .Footer-newlogo, .footer5 .Footer-newlogo {
    display: flex;
    gap: 10px 15px;
}
.footer4-col.right {
    display: flex;
    align-items: stretch;
}
.footer4 .ftr-map-wrap {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.footer4 .ftr-map-wrap iframe {
    width: 100%;
    height: 100%;
}
.footer4 .footer-bottom-row, .footer5 .footer-bottom-row {
    padding: 35px 0;
}
.footer4 .bottom_col, .footer5 .bottom_col {
  gap: 10px 20px;
}
.footer4 .ftr-bottom-txt, .footer5 .ftr-bottom-txt {
  gap: 10px 50px;
}
.footer4 .ftr-bottom-wrap p, .footer5 .ftr-bottom-wrap p {
    margin: 0;
}
.footer4 .ftr-btn-icon-col ul, .footer5 .ftr-btn-icon-col ul {
    gap: 7px;
}
.footer4 .ftr-btn-icon-col img, .footer5 .ftr-btn-icon-col img {
    width: 20px;
}
.footer4 .ftr-btm-txt-col, .footer5 .ftr-btm-txt-col {
    margin-top: 15px;
}
.footer4 .ftr-menu a, .footer5 .ftr-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
}
.footer4 .ftr-menu a img, .footer5 .ftr-menu a img {
    width: 20px;
    max-height: 25px;
    object-fit: cover;
}
.footer4 ul.ftr-menu, .footer5 ul.ftr-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer4 .ftr-menu.lg_img a img, .footer5 .ftr-menu.lg_img a img {
    width: 30px;
}
/* end footer4 block */
/* footer5 block */
.footer5-col {
    padding-top: 100px;
    padding-bottom: 90px;
}
.footer5-col.left {
    width: 40%;
}
.footer5-col.right {
    width: 60%;
    padding-right: calc(calc(100% - 1230px) /2);
    padding-left: 50px;
}
.footer5-col.left {
    padding-left: calc(calc(100% - 1240px) /2);
    background-color: var(--white);
    padding-right: 30px;
}
.footer5-col.left .inner {
    padding-left: 15px;
}
.footer5-col.right .inner {
    padding-right: 15px;
}
.footer5 .ftr-logo {
    margin-bottom: 50px;
}
.footer5-col.right .row {
    row-gap: 60px;
}
.footer5-col h3 {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.footer5-col p {
    font-size: 16px;
}
.footer5 .ftr-btn {
    margin-top: 28px;
}
.footer5 .hr-time {
    font-size: 12px;
    padding: 5px 10px 5px 10px;
    background-color: #986147;
    color: var(--white);
    line-height: 1;
    border-radius: 100px;
}
.footer5 .ftr-social-wrap {
    margin-top: 70px;
    padding-top: 55px;
    border-top: 1px solid var(--black);
}
/* end footer5 block */
/* footer6 block */
footer.footer6 {
    padding: 65px 0 40px 0;
    background-color: #FAF9F5;
}
.footer6 .ftr-menu-wrap {
    gap: 5px;
    padding-top: 18px;
}
.footer6 .ftr-menu-wrap p {
    margin: 0;
    font-size: 16px;
}
footer.footer6 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footer6 .Footer-newlogo {
    padding-top: 18px;
}
/* end footer6 block */

/* floorplan block */
.floor_list {
    background-color: #FAF9F5;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* end floorplan block */

.address a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
	color: var(--black);
}

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

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

.gform-body.gform_body input#input_8_12 {
    width: 100% !important;
}

.gform-body.gform_body .gchoice.gchoice_8_9_1 {
    align-items: center;
}

body #map .marker .map-marker-color-icon {
    z-index: 9999;
    position: relative;
}
/* accordion animation */
.animatedimg, .media--picture, .slider-animatedimg, .hover-animatedimg {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.tab-img-col .animatedimg {
    border-radius: 10px;
}
.slide-ratio .animatedimg, 
.carditem .hover-animatedimg {
    border-radius: 10px 10px 0 0;
}
.hover-animatedimg {
    cursor: default;
}
.animatedimg img, .media--picture img, .slick-slide .slider-animatedimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 7s ease-in-out infinite alternate;
    transform-origin: center center;
}
.carditem .hover-animatedimg, 
.carditem .hover-animatedimg img {
    height: unset;
}
.media--picture {
    margin: 0;
}
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}
.hover-animatedimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 6s ease-in-out;
    transform: scale(1) translate(0, 0);
}
.hover-animatedimg:hover img, .carditem:hover .hover-animatedimg img {
    transform: scale(1.1) translate(-2%, -2%);
}
.features-slider3 .slider-animatedimg {
    aspect-ratio: 1 / 0.52;
}
.animated-block {
    overflow: hidden;
    display: flex;
}
.hero-slider-new {
    overflow: hidden;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    height: 100vh;
    position: relative;
}
.pin-spacer {
    order: 0;
    place-self: auto;
    grid-area: auto;
    z-index: auto;
    float: none;
    flex-shrink: 1;
    display: block;
    margin: 0px;
    inset: 0px;
    position: absolute;
    flex-basis: auto;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    padding: 0px;
}
.section__media-wrap {
    width: 100% !important;
    height: 100vh;
    overflow: hidden;
    position: absolute !important;
    top: 0;
    left: auto;
    right: 0;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    transform: translate(0px, 0px);
}
.animated-block .section__media-wrap {
    left: 0;
    right: auto;
}
.animated-block .row,
.animated-block .dotStyle.hero-slider,
.animated-block .slick-list,
.animated-block .slick-track,
.animated-block .slick-slide,
.animated-block .slick-slide img {
    height: 100% !important;
}
.section__media--picture {
    transition: none;
    transform: translate3d(0px, 0px, 0px) scale(1.3);
}
.right.animated-block .section__media-wrap {
    left: auto;
    right: 0;
}
.section__media-wrap .section__media--picture {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}
.section__media-wrap .section__media--picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    vertical-align: bottom;
    aspect-ratio: 2044 / 1588;
}
@media (max-width: 767px) {
	.hero-slider-new, .pin-spacer, .section__media-wrap {
		height: 55vh;
	}
	.animated-block {
		height: auto;
	}
}
/* end accordion animation */
.page-id-3046 .fg-panel .fg-panel-area.fg-panel-content {
  height: calc(100vh - 120px);
}
.fg-panel-thumbs-viewport .fg-panel-thumb.fg-type-image, .fg-panel-thumbs-viewport .fg-panel-thumb.fg-type-image * {
  width: 100%;
}
.fg-panel-area.fg-panel-thumbs, .fg-panel-thumbs .fg-panel-area-inner.fg-panel-thumbs-inner, 
.fg-panel-thumbs-viewport .fg-panel-thumb.fg-type-image {
    height: 120px !important;
    min-height: 120px !important;
}
.fg-panel-thumbs-viewport .fg-panel-thumb.fg-type-image * {
    height: 90px !important;
    min-height: 90px !important;
    width: 100% !important;
}
.fg-media.fg-loaded .fg-media-content {
	object-fit: contain !important;
	padding: 15px 10px;
}
.fg-panel-thumb-caption {
    display: none !important;
}
.fg-panel.fg-medium.fg-x-large-width .fg-panel-thumb-media {
    width: 100%;
}
.fg-panel-thumb-wrap img {
    width: 100% !important;
    padding: 0 5px;
    object-fit: cover !important;
    height: 100%;
}
.fg-panel.fg-medium.fg-x-large-width .fg-panel-thumb-media {
    width: 100% !important;
    min-width: 100% !important;
}
figure.fg-panel-thumb.fg-type-image {
    padding: 0;
	background-color: transparent !important;
}
.fg-panel.fg-medium.fg-x-large-width .fg-panel-thumb-media {
    margin: 0 !important;
}
.text-block.with-img img {
    aspect-ratio: 1 / 0.5;
}
.tab-row.align-items-center {
    align-items: stretch !important;
}
@media (min-width: 920px) {
	.fg-medium:is(.fg-panel-thumbs-top,.fg-panel-thumbs-bottom) .fg-panel-thumbs-inner, .fg-medium:is(.fg-panel-thumbs-left,.fg-panel-thumbs-right) .fg-panel-thumb, .fg-medium:is(.fg-panel-thumbs-top,.fg-panel-thumbs-bottom) .fg-panel-thumbs-inner, .fg-panel-thumbs-viewport {
    /*height: 160px !important;*/
    /*min-height: 160px !important;*/
}
.gallery-block .fg-panel-thumbs-bottom .fg-panel-thumbs-stage {
    min-height: fit-content !important;
}
.gallery-block .fg-panel-thumb-media img {
    WIDTH: 100%;
    /*HEIGHT: 140px ! IMPORTANT;*/
    /*min-height: 140px !important;*/
	display: flex !important;
}
	.fg-x-large-width:is(.fg-panel-thumbs-top,.fg-panel-thumbs-bottom) .fg-panel-thumb {
	height: unset !important;
    /*min-height: 140px !important;*/
}
	.fg-panel.fg-medium.fg-x-large-width .fg-panel-thumb-media {
    height: unset !important;
    /*min-height: 140px !important;*/
}
.fg-panel-thumbs-viewport .fg-panel-thumbs-stage .fg-panel-thumb {
  min-width: 150px !important;
}
.page-id-3046 .fg-panel .fg-panel-area.fg-panel-content {
  height: calc(100vh - 160px);
}
.fg-panel-area.fg-panel-thumbs, .fg-panel-thumbs .fg-panel-area-inner.fg-panel-thumbs-inner, 
.fg-panel-thumbs-viewport .fg-panel-thumb.fg-type-image {
    height: 160px !important;
    min-height: 160px !important;
}
.fg-panel-thumbs-viewport .fg-panel-thumb.fg-type-image * {
    height: 140px !important;
    min-height: 140px !important
}
}
@media (min-width: 1500px) {
    .fg-panel-thumbs-viewport .fg-panel-thumbs-stage .fg-panel-thumb {
      min-width: 250px !important;
    }
}
@media (max-width: 767PX) {
	.gallery-block .fg-panel-thumb-media, .gallery-block .fg-panel-thumb-media img {
		HEIGHT: UNSET ! IMPORTANT;
		ASPECT-RATIO: 1 / .45;
	}
}
/* unit feature */
.apartment-details .inset {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 70px;
    align-items: center;
}
.apartment-details .inset .single-image {
    width: calc(50% - 35px);
}
.apartment-details .inset .info {
    width: calc(50% - 35px);
}
.apartment-details h2 {
    width: 100%;
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3; /* 133.333% */
    text-transform: uppercase;
    color: var(--black);
    
    margin: 0;
}
.single-image img {
    max-height: 75vh;
    width: 100%;
    object-fit: contain;
    height: auto;
}
.apartment-details.fancybox-content {
    max-width: calc(100dvw - 4rem) !important;
    width: 100%;
    padding: 75px 70px;
}
.info .avl {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    text-transform: capitalize;
    
}
.info .metacontent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 10px;
    margin-bottom: 12px;
}
.info .metacontent p {
    margin: 0;
    position: relative;
    font-size: 19px;
    
}
.info .metacontent p:after {
    content: "|";
    margin-left: 10px;
}
.head {
    margin: 25px 0 5px 0;
    padding-top: 25px;
    border-top: 1px solid #D9D9D9;
    font-size: 20px;
    font-weight: 500;
    color: #090909D9;
    
}
.info ul.list {
    margin: 0;
    padding-left: 30px;
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info ul.list li {
    font-size: 22px;
    
    font-weight: 100;
    color: #090909D9;
}
.engrain-link {
    display: none;
}
.actions {
    margin-top: 50px;
}
.actions p {
    margin: 0;
}
.actions .link a {
    display: inline-block;
    max-width: 460px;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    
    text-decoration: none;
    background-color: #CBA052;
    color: var(--white);
    cursor: pointer;
}
.actions .link a:hover {
    background-color: var(--black);
    color: var(--white);
}
.apartment-details.fancybox-content .fancybox-close-small {
    display: flex;
    align-items: center;
    justify-content: center;
}
.apartment-details .fancybox-button.fancybox-close-small svg {
    width: 37px;
    height: 37px;
}
.apartment-details .fancybox-button.fancybox-close-small svg path {
    fill: var(--black);
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__plan-detail:after {
    color: var(--black);
}
.foogallery .fg-panel-buttons .fg-panel-button.fg-panel-button-prev, 
.foogallery .fg-panel-buttons .fg-panel-button.fg-panel-button-next {
    width: 45px !important;
    height: 45px !important;
    background: var(--black)57 !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.foogallery .fg-panel-buttons .fg-panel-button.fg-panel-button-prev path, 
.foogallery .fg-panel-buttons .fg-panel-button.fg-panel-button-next path {
    fill: var(--white);
}
.foogallery .fg-panel-area-inner.fg-panel-thumbs-inner button.fg-panel-thumbs-button.fg-panel-thumbs-prev, 
.foogallery .fg-panel-area-inner.fg-panel-thumbs-inner button.fg-panel-thumbs-button.fg-panel-thumbs-next {
    background: var(--black)57 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.fg-panel:is(.fg-medium,.fg-panel-no-mobile) .fg-panel-buttons :is(.fg-panel-button-prev,.fg-panel-button-next) {
    visibility: visible !important;
    opacity: 1 !important;
}
.foogallery .fg-panel-area-inner.fg-panel-thumbs-inner button.fg-panel-thumbs-button.fg-panel-thumbs-prev path, .fg-panel-area-inner.fg-panel-thumbs-inner button.fg-panel-thumbs-button.fg-panel-thumbs-next path {
    fill: var(--white) !important;
}
.gallery-block .foogallery.foogallery-container .fg-caption-title {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 5px 15px;
    height: fit-content;
    max-width: 90%;
    word-break: break-all;
}

@media (min-width: 650px) {
    .apartment-details.fancybox-content {
        max-width: calc(100dvw - 10rem) !important;
        overflow: hidden !important;
        overflow-y: auto !important;
    }
}
@media (max-width: 1024px) {
    .apartment-details .inset .info {
        width: calc(50% - 35px);
    }
    .apartment-details.fancybox-content {
        padding: 75px 40px;
        overflow: hidden;
    }
    .apartment-details .inset {
        gap: 25px 50px;
    }
    .apartment-details .inset .single-image, .apartment-details .inset .info {
        width: calc(50% - 25px);
    }
}
@media (max-width: 767px) {
   .apartment-details.fancybox-content {
        padding: 40px 20px 25px 20px;
    }
    .apartment-details .inset .single-image, .apartment-details .inset .info {
        width: 100%;
    }
    .apartment-details h2 {
        font-size: 22px;
    }
    .info .metacontent p {
        font-size: 17px;
    }
    .head {
        margin: 15px 0 5px 0;
        padding-top: 15px;
        font-size: 18px;
    }
    .info ul.list li {
        font-size: 17px;
    }
    .actions {
        margin-top: 20px;
    }
    .actions .link a {
        font-size: 16px;
        padding: 12px;
    } 
}
/* end unit feature */


/* splash page */
/* header & footer */
.nav-bar .logo img {
    max-height: 105px;
    width: auto;
    object-fit: contain;
}
.header-btn .bbt-primary {
    border-color: var(--white);
}
.header-btn .mb-btn {
	display: none;
}
.footer1 .f-row2 .col-right {
    flex-wrap: wrap;
    gap: 15px 35px;
}
.footer1 .f-row2 .col-right ul {
    margin: 0;
    align-items: center;
    gap: 10px;
}
.footer1 .f-row2 .col-right li {
    line-height: 1;
}
.footer1 .f-row2 .col-right li a {
    display: inline-block;
    margin: 0;
}
.footer-bottom .logo-wrap {
    margin: 0;
    gap: 10px 25px;
}
.footer-bottom .logo-wrap li {
    line-height: 1;
}
.footer1 .footer-bottom .logo-wrap li a {
    margin: 0;
    display: inline-block;
}
.body5, .body5 li, .body5 li a {
    font-size: var(--body5);
}
.page-id-5035 .footer1 .f-bg2 {
    background: var(--secondary-color);
}
.page-id-5035 .footer1 .f-bg2 * {
    filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
	.new-header-two .nav-bar {
		padding: 5px 0;
	}
	.nav-bar .logo img {
		max-height: 95px;
	}
	.header-btn .lg-btn {
		display: none;
	}
	.header-btn .mb-btn {
		display: flex;
		align-items: center;
		gap: 11px;
	}
	.footer1 .f-bg2 {
		padding-top: 80px;
		padding-bottom: 37px;
	}
	.footer1 .f-row1 {
		padding: 0;
	}
	.footer1 .footer-bottom .social-full-col ul {
		gap: 10px;
		margin: 0 0;
	}
/* 	.footer1 .footer-bottom .social-full-col ul {
		justify-content: center;
		margin: 0 auto 10px auto;
		width: fit-content;
		position: relative;
	} */
/* 	.footer1 .footer-bottom .social-full-col ul:before {
		content: "";
		width: calc(100vw - 30px);
		height: 1px;
		background: #000000;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	} */
	.footer1 .footer-bottom .social-full-col ul li {
		line-height: 1;
	}
	.footer1 .footer-bottom .social-full-col ul li a {
		margin: 0;
	}
	.footer-bottom .logo-wrap {
		gap: 10px 15px;
	}
/* 	.footer1, .footer1 * {
		text-align: center;
		justify-content: center;
	} */
	.footer1 .col-right {
		margin-top: 25px;
		margin-bottom: 25px;
	}
	.footer1 .f-row2 .col-right {
		margin: 15px 0;
	}
	ul#menu-privacy-menu {
		width: 100%;
		margin-bottom: 40px;
		flex-direction: column;
		align-items: flex-start;
	}
	.footer1 .footer-bottom {
		padding-bottom: 0;
	}
	.footer1 .footer-bottom p {
		font-size: 11px;
	}
	.footer-bottom .logo-wrap {
		flex-wrap: wrap;
	}
	.footer-bottom .logo-wrap img {
		max-width: 100px;
	}
}
/* end header & footer */
body {
    background-color: var(--bgcolor) !important;
}
.UCG-block  .display1, .UCG-block .display1 > * {
    font-size: 84px;
	font-family: var(--font1);
    font-weight: 300;
    line-height: 1;
	text-transform: none;
}
.secpy {
	padding-top: 100px;
	padding-bottom: 100px;
}
@media (max-width: 1024px) {
	.UCG-block .display1, .UCG-block .display1 > * {
		font-size: 60px;
	}
	.secpy {
		padding-top: 65px;
		padding-bottom: 65px;
	}
}
@media (max-width: 768px) {
	.UCG-block .display1, .UCG-block .display1 > * {
		font-size: 54px;
	}
	.secpy {
		padding-top: 32px;
		padding-bottom: 32px;
	}
}
/* hero banner slider */
.hero-banner-slider {
    margin-top: -1px;
}
.hero-banner-slider .slick-slide {
    position: relative;
}
.hero-banner-slider .slick-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #00000040;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-banner-slider .slick-slide img.img-fluid {
    aspect-ratio: 2.1 / 1;
    width: 100%;
    height: auto;
	min-height: 545px;
    object-fit: cover;
    object-position: center;
}
.hero-banner-slider .text-wrapper {
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-45%);
    width: 100%;
	z-index: 11;
}

.img-area {
    position: relative;
}
.hero-banner-slider .banner__text {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}
.hero-banner-slider .banner__text .display1 {
    max-width: 580px;
    width: 100%;
}



.hero-banner-slider .banner__text * {
    color: var(--white);
}
.hero-banner-slider .arrowStyle .slick-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    bottom: 25%;
    transform: translateY(-25%);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center center;
}
.hero-banner-slider .arrowStyle .slick-arrow.slick-prev {
    left: 15px;
    right: auto;
    background-image: url(/wp-content/uploads/2025/11/arrow-left.svg);
}
.hero-banner-slider .arrowStyle .slick-arrow.slick-next {
    left: 55px;
    background-image: url(/wp-content/uploads/2025/11/arrow-icon1.svg);
}
.hero-banner-slider .arrowStyle .slick-arrow:before {
    display: none !important;
}
@media (min-width: 767px) {
	.hero-banner-slider .arrowStyle .slick-arrow.slick-prev {
		left: calc(20px);
	}
	.hero-banner-slider .arrowStyle .slick-arrow.slick-next {
		left: calc(60px);
		background-image: url(/wp-content/uploads/2025/11/arrow-icon1.svg);
	}
}
@media (min-width: 1025px) {
	.hero-banner-slider .arrowStyle .slick-arrow {
    	width: 40px;
		height: 40px;
		background-size: 16px;
		bottom: 6vw;
	}
	.hero-banner-slider .arrowStyle .slick-arrow.slick-prev {
		left: calc(calc(8% + 10px));
		right: auto;
		background-image: url(/wp-content/uploads/2025/11/arrow-left.svg);
	}
	.hero-banner-slider .arrowStyle .slick-arrow.slick-next {
		left: calc(calc(8% + 10px) + 55px);
		background-image: url(/wp-content/uploads/2025/11/arrow-icon1.svg);
	}
}
@media (min-width: 1251px) {
	.hero-banner-slider .arrowStyle .slick-arrow {
		bottom: 10vw;
	}
}
/* end hero banner slider */
/* full text banner */
.full-txt-banner .carditem-text {
    background: transparent !important;
    padding: 0 !important;
}
.full-txt-banner .carditem-text > * {
    padding: 0;
    margin: 0 0 7px 0px;
}
.full-txt-banner .carditem-text .button_warp {
    margin: 16px 0 0 0;
}
.list-block .list-heading {
    text-align: left;
    margin-bottom: 20px;
}
.textbox-sec .row {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 33px;
}
.textbox-sec .row .carditem {
    padding: 0 0;
}
.textbox-sec .carditem-text {
    padding: 35px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
	height: 100%;
}
.textbox-sec .carditem-text > * {
    margin: 0;
}
.page-id-5035 .textbox-sec {
	padding-bottom: 64px;
}
.page-id-5035 .full-txt-banner .carditem-text div, .page-id-5035 .full-txt-banner .carditem-text p {
	color: var(--white);
}
@media (max-width: 1024px) {
	.textbox-sec .row {
		column-gap: 20px;
	}
}
@media (max-width: 767px) {
	.textbox-sec .row {
		column-gap: 20px;
	}
	.textbox-sec .row .carditem {
		flex: 0 0 100%;
	}
	.textbox-sec .carditem-text {
		padding: 35px 16px;
	}
}
/* end full text banner */
/* overlap banner */
.overlap-box-sec .text-wrapper {
    padding: 32px 32px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 520px;
    width: calc(100% - 40px);
}
.overlap-box-sec .text-wrapper h4 {
    margin-bottom: 35px;
    color: var(--primary-color);
}
.overlap-box-sec .text-wrapper h2 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}
.overlap-box-sec .bbt-primary {
	position: relative;
	padding-right: 30px;
    background-image: url('/wp-content/uploads/2025/11/chevron-right.png');
	background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    background-size: 9px;
}
@media (max-width: 1024px) {
	.overlap-box-sec .text-wrapper {
		padding: 10px 35px 10px 35px;
	}
	.overlap-box-sec .text-wrapper h4 {
		margin-bottom: 15px;
	}
	.overlapping-text2-row .image-design img {
		aspect-ratio: 1 / 0.7;
		object-fit: cover;
		object-position: center;
	}
}
/* end overlap banner */
/* full image slider */
.full-img-slider.slick-slider {
    max-width: 100%;
}
.full-img-slider .slider-animatedimg {
    aspect-ratio: 1.84 / 1;
}
.fullimg-slide-content {
    margin-top: 15px;
    padding: 10px 80px 10px 0;
}
.full-img-slide a {
    text-decoration: none;
}
.full-img-slider .slick-arrow {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 0;
    bottom: 8px;
    font-size: 0;
    cursor: pointer;
    background-image: url(/wp-content/uploads/2025/11/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
	z-index: 1111;
}
.full-img-slider .slick-arrow.slick-prev {
    right: 40px;
    transform: rotate(180deg);
}
.full-img-slider .slick-disabled {
    opacity: 0.65;
}
@media (max-width: 767px) {
	.full-img-slider .slider-animatedimg {
		aspect-ratio: 1.65 / 1;
	}
	.full-img-slider .slick-arrow {
		width: 20px;
		height: 20px;
		bottom: 10px;
		background-size: 20px;
	}
	.full-img-slider .slick-arrow.slick-prev {
		right: 32px;
	}
	.fullimg-slide-content {
		margin-top: 5px;
		padding-right: 65px;
	}
}
/* end full image slider */
/* list block */
.list-block .list-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #74858E !important;
}
.list-block .row.row-cols-lg-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 50px;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.list-block .row.row-cols-lg-3 .col {
    width: calc(33.33% - 34px);
    padding: 0;
}
.list-block .col h4 {
    margin-bottom: 10px;
}
.list-block .row.row-cols-lg-3 .col > h4:nth-child(3) {
    margin-top: 24px;
}
.contact-info h5 {
    text-transform: capitalize;
}
.list-block .col ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media (max-width: 1024px) {
	.list-block .row.row-cols-lg-3 {
		column-gap: 35px;
	}
	.list-block .row.row-cols-lg-3 .col {
		width: calc(33.33% - 24px);
	}
}
@media (max-width: 767px) {
	.list-block .list-heading {
		text-align: left;
		margin-bottom: 20px;
	}
	.list-block .row.row-cols-lg-3 .col {
		width: calc(100%);
	}
}
/* end list block */
/* media & text block */
section.text-style.style-a .media--picture {
    aspect-ratio: 1.08 / 1;
}
.text-style .content-area {
    padding: 50px 35px 50px 35px;
}
@media (min-width: 1024px) {
	.text-style .content-area {
		padding: 50px 100px 50px 50px;
	}
	.text-style .content-area > * {
		max-width: 36vw;
		width: 100%;
	}
}
/* end media & text block */
/* contact form */
.direction-map .map-row .gform_heading > *, .direction-map .map-row form * {
    color: #FFFFFF;
}
.direction-map .map-row .gform_heading {
    margin-bottom: 32px;
}
.direction-map .map-row .gform_title {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.52px;
	text-transform: uppercase;
    margin: 0 0 5px 0;
}
.direction-map .map-row .gform_fields {
    gap: 25px 20px;
}
.direction-map .gform-theme--foundation .gform-grid-row {
    gap: 25px 20px;
    max-width: 100%;
    margin: 0;
}
.direction-map .gform-theme--foundation .gform-grid-row > span {
    padding: 0;
}
.direction-map .map-row .gform_fields input:not(.gfield-choice-input), .direction-map .map-row .gform_fields select, .direction-map .map-row .gform_fields textarea {
    padding: 16px 20px;
    background-color: #846A74;
	color: #FFFFFF;
    border: 1px solid #4C3B41 !important;
    height: unset;
    line-height: 1;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
	font-family: var(--font2);
	box-shadow: none !important;
	outline: none;
}
.direction-map .map-row .gform_fields textarea {
    height: 162px;
    min-height: unset !important;
}
.direction-map form .gform-footer input#gform_submit_button_8[type="submit"] {
    background: var(--primary-color);
    color: var(--bgcolor);
    border-radius: 16px;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    border: 1px solid var(--bgcolor) !important;
    display: inline-block;
    padding: 7px 16px 9px 16px;
	font-family: var(--font2);
    font-weight: 700;
    text-transform: uppercase;
	box-shadow: none !important;
	outline: none;
    transition: all .3s ease-in-out;
}
body.page-id-5035 .direction-map form .gform-footer input#gform_submit_button_8[type="submit"] {
	border-color: #74858E;
}
.direction-map form .gform-footer input#gform_submit_button_8[type="submit"]:hover, 
.direction-map form .gform-footer input#gform_submit_button_8[type="submit"]:focus, 
body.page-id-5035 .direction-map form .gform-footer input#gform_submit_button_8[type="submit"]:hover, 
body.page-id-5035 .direction-map form .gform-footer input#gform_submit_button_8[type="submit"]:focus {
	background: #74858e;
    color: var(--bgcolor);
}
.direction-map form .gfield_description {
    font-size: 14px;
	font-weight: 400;
}
.direction-map form .gfield_checkbox label {
    font-size: 11px;
}
.direction-map form .gfield_checkbox input {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
}
.direction-map form .gfield_checkbox input:before {
    color: var(--secondary-color);
}
body.page-id-5035 .contact-info * {
    color: #000000;
}
body:not(.page-id-5035) .contact-info * {
    color: var(--white);
}
.contact-info-inner h4, .contact-info-inner h5 {
    margin-bottom: 8px;
}
.contact-info-inner {
    margin-bottom: 16px;
}
.contact-info .text-link {
    font-family: var(--font2);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.contact-info .text-link:hover {
    color: var(--white) !important;
}
.contact-info .social-contact {
    margin-top: 16px;
}
.contact-info .social-contact ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 15px;
}
.contact-info .social-contact ul i {
    font-size: 22px;
    color: #846A74;
}
.page-id-5035 .contact-info .social-contact ul i {
    color: #cccccc;
}
.contact-img {
	margin-top: 64px;
}
.contact-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 /1;
}
.direction-map form .gform_validation_errors {
    background: var(--white) !important;
    padding: 7px !important;
}
body.page-id-5035 .direction-map .map-row .gform_heading > *, body.page-id-5035 .direction-map .map-row form * {
	color: #000000;
}
body.page-id-5035 .direction-map .map-row .gform_fields input:not(.gfield-choice-input), 
body.page-id-5035 .direction-map .map-row .gform_fields select, 
body.page-id-5035 .direction-map .map-row .gform_fields textarea {
    background-color: #FAF8F4 !important;
    border-color: #837A7D !important;
    color: #000000 !important;
}
.contact-info-inner .address span[itemprop="streetAddress"] {
    display: block;
}
/* Datepicker icon */
.direction-map .map-row .gform_fields input.datepicker {
    padding-right: 40px;
    background-image: url('/wp-content/uploads/2025/11/Calendar.svg');
    background-repeat: no-repeat !important;
    background-position: calc(100% - 15px) center !important;
    background-size: 18px !important;
}
body.page-id-5035 .direction-map .map-row .gform_fields input.datepicker {
	background-image: url('/wp-content/uploads/2025/11/Calendar-gray.svg');
}
/* Remove default select arrow */
.direction-map .map-row .gform_fields select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
    padding-right: 40px;
}

/* Custom select arrow */
.direction-map .map-row .gform_fields select {
    background-image: url('/wp-content/uploads/2025/11/Down-2.png') !important;
	min-height: 50px;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 15px) center !important;
    background-size: 18px !important;
}
body.page-id-5035 .direction-map .map-row .gform_fields select {
	background-image: url('/wp-content/uploads/2025/11/Down-gray.svg') !important;
}
/* Hide old arrow in IE/Edge */
select::-ms-expand {
    display: none;
}

@media (max-width: 1024px) {
	.direction-map .map-row .gform_fields, .direction-map .gform-theme--foundation .gform-grid-row {
		gap: 20px 10px;
	}
	.direction-map .map-row .gform_title {
		font-size: 25px;
	}
}
@media (max-width: 767px) {
	.map-row .form-half-col.map-col, .map-row .form-half-col.col-left {
		width: 100% !important;
	}
	.direction-map .map-row .gform_title {
		font-size: 23px;
	}
}
/* end contact form */
/* end splash page */
