/*
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 {
  --sage: #828A7D;
  --softwhite: #F8F5EE;
  --sandstone: #EDE8DC;
  --camel: #BC8C44;
  --cloud: #CAD9E3;
  --clay: #A9431E;
  --stone: #A69F88;
  --color1: #000000;
  --color2: #333333;
  --color3: #666666;
  --color4: #999999;
  --color5: #cccccc;
  --color6: #e6e6e6;
  --color7: #f2f2f2;
  --lg-font: calc(100vw - 1650px);
}
body {
  font-family: "trade-gothic-next",sans-serif;
  font-weight: 400;
  background-color: var(--softwhite);
  color: var(--color1);
}
body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
/*====================== Display css ===================*/

.display1{
    font-size: 4.75em !important;
    line-height: 1.1em !important;
}

.display2 {
    font-size: 3.25em !important;
    line-height: 1em !important;
}

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

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

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

 /****** header Styles *********/
 .simple-header {
  background: #fff;
  position: relative;
  z-index: 99;
}
.simple-header .nav-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.simple-header .nav-wrapper .menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.simple-header .header-btn a,
.simple-header .nav-wrapper .menu a{
  text-decoration: none;
  color: var(--color1);
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.04em;
  font-weight: 500;
  
}
.simple-header .nav-wrapper .menu a:hover{
  color: #B7BF10;
}
.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(--color1);
  }
  .hamburger-inner:before {
      transition: top 75ms ease .12s, opacity 75ms ease;
      top: -5px;
      display: block;
      content: "";
  }
  .hamburger-inner:after {
      transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
      bottom: -5px;
      display: block;
      content: "";
  }
  .is-active .hamburger-inner:after {
      bottom: 0;
      transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
      transform: rotate(-90deg);
  }
  .is-active .hamburger-inner:before {
      top: 0;
      transition: top 75ms ease, opacity 75ms ease .12s;
      opacity: 0;
  }
  .is-active .hamburger-inner {
      transition-delay: 0.12s;
      transition-timing-function: cubic-bezier(0.215,0.61,0.355,1);
      transform: rotate(45deg);
  }
  header.simple-header.is-active .menu-wrapper:before {
      content: '';
      display: block;
      position: absolute;
      background: #fff;
      width: 100%;
      height: 100%;
      top: 0;
      z-index: -1;
  }
  .simple-header .nav-wrapper .menu-wrapper {
      height: 0;
      transition: all .3s ease;
      overflow: hidden;
      display: flex;
      position: absolute;
      flex-direction: column;
      align-items: flex-start;
      top: 60px;
      border-top: 0 solid var(--color1);
      width: 100%;
      background: #fff;
      padding: 0;
      left: 0;
      z-index: 9999999999;
  }
  header.simple-header.is-active .menu-wrapper{
      height: auto;
      padding: 35px 0 ;
      border-width: 1px;
  }
  .simple-header .nav-wrapper .menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      flex-direction: column;
  }
  .header-btn {
      display: flex;
      gap: 20px;
      flex-direction: column;
  }
}



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

.simple-header .desktop-menu span {
  width: 100%;
  height: 4px;
  background: var(--color1);
  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: #ffffff;
}
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: #ffffff;
  line-height: 44px;
  font-weight: 400;
  text-align: right;
  text-decoration: none;
}
.main-menu ul.nav li a:hover{
  color: #B7BF10;
}



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

.iconclass {
  max-width: 20px;
}
header.new-header-two {
            position: relative;
        }

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

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

        .new-header-two ul.menu {
            list-style: none;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 0;
        }
        .new-header-two a {
            text-decoration: none;
        }
        .new-header-two .menu a {
            text-decoration: none;
            color: var(--color1);
            font-size: 20px;
            line-height: 1.375;
            letter-spacing: 0.04em;
            font-weight: 500;
			font-family: "trade-gothic-next", sans-serif;
        }
        .header-btn {
            text-decoration: none;
            font-size: 18px !important;
            line-height: 1.275;
            letter-spacing: 0.04em;
            font-weight: 400 !important;
        }
        .new-header-two .menu a:hover {
            color: var(--sage);
        }
		.active-menu .menu a {
			color: #F8F5EE;
		}
        .active-menu .menu a:hover {
          color: #000000 !important;
        }
        .active-menu .header-btn:hover {
          color: var(--camel) !important;
        }
        .new-header-two ul.menu li{
            position: relative;
        }
        .new-header-two ul.menu li .sub-menu {
            display: block;
            position: absolute;
            background: #fff;
            z-index: 10;
            padding: 5px 0px 10px 0px;
            box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
            transform: perspective(300px) rotateX(-15deg);
            visibility: hidden;
            width: auto;
            min-width: 210px;
            max-width: 320px;
            -webkit-border-radius: 6px;
            border-radius: 6px;
            padding-top: 15px;
            padding-bottom: 15px;
            opacity: 0;
            list-style: none;
        }
        .new-header-two ul.menu li:hover .sub-menu {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
            display: block !important;
            opacity: 1;
            visibility: visible;
            background-color: #fff;
            -webkit-box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
        }
        .new-header-two ul.menu li .sub-menu li a{
            padding: 8px 10px;
            display: block;
        }
        .new-header-two ul.menu li .sub-menu li:hover a{
            background: #B7BF10;
            color: var(--color1);
        }
        .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: #fff;
            text-align: right;
            cursor: pointer;
        }
        .new-header-two.active-menu .main-menu {
            overflow: auto;
            padding: 30px 70px;
            height: 100%;
            min-height: 100vh;
        }
        .new-header-two .main-menu ul.nav li a:hover{
            color: var(--color1);
            transition: all .3s ease-in-out;
        }
        .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-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(--color1);
        }
        .new-header-two .top-header ul a:hover{
            color: var(--sandstone);
            transition: all .3s ease-in-out;
        }
        .new-header-two .top-header ul a i{
            color: var(--sandstone);
            transition: all .3s ease-in-out;
        }
        .new-header-two .top-header ul a:hover i{
            color: var(--color1);
        }
        .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(--color1);
        }
        .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, .new-header-two .nav-bar .menu-bar {
                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: 30px 0px;
            height: 100%;
            min-height: 100vh;
         }
        .menu-dark .main-menu{
         background: var(--color1);
        }
         .main-menu .logo-wrapper {
            width: 100%;
            padding-bottom: 20px;
            border-bottom: 1px solid #e7e7e8;
         }
        .main-menu .logo-wrapper .logo-hr {
            display: flex;
            align-items: center;
            justify-content: space-between;
         }
         .new-header-two .main-menu ul.nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 0;
            align-items: flex-start;
            list-style: none;
			text-align:left;
         }
        .new-header-two .main-menu ul.nav li a {
            font-size: 60px;
            font-style: normal;
            font-weight: normal;
            line-height: 1.2;
            color: var(--softwhite);			
            letter-spacing: 0.5px;
            font-family: "the-seasons",sans-serif;
            transition: all .3s ease-in-out;
        }
        .new-header-two .menu-footer {
            width: 100%;
            border-top: 1px solid #e7e7e8;
            margin-top: 50px;
            padding-top: 50px;
         }
         .new-header-two .main-menu ul.nav-2 {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 12px;
         }
         .new-header-two .main-menu ul.nav-2  li a {
            text-decoration: none;
            color: var(--softwhite);
            font-size: 30px;
            line-height: 1.4;
            letter-spacing: 0.5px;
            font-weight: 400;
            font-family: "the-seasons",sans-serif;
            transition: all .3s ease-in-out;
            
         }
         .new-header-two .main-menu ul + ul {
            padding-top: 30px !important;
            border-top: 1px solid #fff;
            margin-top: 20px !important;
         }
         .new-header-two .main-menu ul.nav-2 li a:hover{
            color: var(--color1);
            transition: all .3s ease-in-out;
         }
         .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: #fff;
         }
        
         .new-header-two .menu-footer ul li a:hover{
            color: #B7BF10;
         }
         .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: #B7BF10;
         }
         .new-header-two .menu-footer .header-btn{
            display: inline-block !important;
         }
         /****** Menu Light ******/
         .menu-light.active-menu .main-menu{
            background: #fff;
         }
         .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(--color1);
         }
         .menu-light .main-menu ul + ul {
            padding-top: 30px !important;
            border-top: 1px solid #e7e7e8;
            margin-top: 20px !important;
         }
         @media (max-width: 960px){
            .new-header-two .main-menu ul.nav li a {
               color: var(--softwhite);
               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-family: "aaux-next", sans-serif;
  font-weight: 600;
  text-align: center;
}
.announcement {
  position: relative;
  width: 100%;
  background: #828a7d;
  height: 0;
  top: 0;
  color: #fff;
  overflow: hidden;
  transition: all .3s ease;
  z-index: 99999;
}

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

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


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

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

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

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

@media (max-width: 1400px){
  .announcement .close {
      right: 30px;
  }
}
@media (max-width: 1200px){
  .announcement-text{
      flex-direction: column;
      align-items: flex-start;
      gap: 10px
  }
}
@media (max-width: 880px){
  .announcement .close {
      right: 20px;
      top: 20px;
  }
}
@media (max-width: 767px) {
  .announcement .close {
      position: absolute;
      padding: 8px;
      border: 1px solid var(--darkBlue);
      max-width: 30px;
      height: 30px;
      top: 30px;
      display: flex;
      right: 30px;
  }
  .active.announcement {
      padding: 30px 20px;
      height: auto;
      transition: all .5s ease;
  }
}
@media (max-width: 1024px) {
  .simple-header .header-btn,
  .simple-header .nav-wrapper .menu  {
      max-width: 690px;
      width: 100%;
      margin: 0 auto;
      padding: 0 16px;
  }
  .menu-wrapper {
      gap: 20px;
  }
  .simple-header .desktop-menu{
      display: none;
  }
}
@media (max-width: 768px) {
  .simple-header .header-btn,
  .simple-header .nav-wrapper .menu   {
      max-width: 516px;
  }
.bottom-footer .menu2 {
    justify-content: flex-start;
    margin: 0px;
    padding: 0px;
}
}
.simple-header .medium {
  font-size: 16px;
  padding: 10px 20px;
}
/*========== global css =========*/
.UCG-block .h1, .UCG-block h1, .news-blobk h1, .bio-page .titlebt h1, 
.single-post h1 {
    font-family: "trade-gothic-next",sans-serif;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1.35;
}
.UCG-block .h2, .UCG-block h2, .single-post h2 {
    font-family: "trade-gothic-next",sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    line-height: 1.4;
}
.UCG-block .h3, .UCG-block h3, .single-post h3 {
    font-family: "trade-gothic-next",sans-serif;
    font-size: 21px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.4;
}
.UCG-block .h4, .footer-title, .UCG-block h4, .menu-address-wrap h4, .menu-social-wrap h4, .single-post h4 {
    font-family: "trade-gothic-next",sans-serif;
    font-size: 15px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.UCG-block .h5, .UCG-block h5, .single-post h5 {
    font-family: "trade-gothic-next-condensed",sans-serif;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.UCG-block .h6, .UCG-block h6, .single-post h6 {
    font-family: "trade-gothic-next-condensed",sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.UCG-block .d1, .UCG-block .h2d1 h2, .single-post .d1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: 0.15px;
  font-family: "the-seasons", sans-serif;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 24px;
  font-weight: 300;
  text-transform: unset;
}
.UCG-block .d2, .single-post .d2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: 0.15px;
  font-family: "the-seasons", sans-serif;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 15px;
  color: var(--color1);
  font-weight: 300;
  text-transform: unset;
}
.UCG-block .p1, .UCG-block .p1mb1 p .UCG-block .hm-cta p:nth-child(2), .UCG-block .mt-type2 .content-area p:nth-child(2), .UCG-block .p1p2 p:nth-child(2), .single-post .p1 {
    font-family: "the-seasons", sans-serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.9px;
}
.UCG-block .p2, .UCG-block .p2 p, .UCG-block .cta-btn-inner p, .UCG-block .p1p2 p:nth-child(3), .single-post .p2 {
    font-family: "the-seasons", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: normal;
    letter-spacing: 0.9px;
}
.UCG-block .p3, .UCG-block .p3 p, .UCG-block .hm-cta p:nth-child(3), .UCG-block .mt-type2 .content-area p:nth-child(3), .single-post .p3, .single-post ul li {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0px;
  margin-bottom: 6px;
}
.UCG-block .p4, .single-post .p4 {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0px;
}
.p5 {
    font-size: 12px !important;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0px;
    margin-bottom: 8px;
}
.gap10px {
  gap: 10px;
}
.brand-color, .h5brand h5 {
  color: var(--sage) !important;
}
.ftr-title {
  text-transform: uppercase;
}
.animation-space svg text {
    font-weight: 300;
}
@media (min-width: 1650px) {
  .UCG-block .h1, .UCG-block h1, .news-blobk h1, .bio-page .titlebt h1, .single-post h1 {
    font-size: calc(19px * 1.31);
  }
  .UCG-block .h2, .UCG-block h2, .single-post h2 {
    font-size: calc(24px * 1.31);
  }
  .UCG-block .h3, .UCG-block h3, .single-post h3 {
    font-size: calc(21px * 1.31);
  }
  .UCG-block .h4, 
  .footer-title, .UCG-block h4, .menu-address-wrap h4, .menu-social-wrap h4, 
  .footer-title, .UCG-block h4, .menu-address-wrap h4, .menu-social-wrap h4, 
  .single-post h4 {
    font-size: calc(15px * 1.31);
  }
  .UCG-block .h5, .UCG-block h5, .single-post h5 {
    font-size: calc(19px * 1.31);
  }
  .UCG-block .h6, .UCG-block h6, .single-post h6 {
    font-size: calc(18px * 1.31);
  }
  .UCG-block .d1, .UCG-block .h2d1 h2, .single-post .d1 {
    font-size: calc(68px * 1.31);
  }
  .UCG-block .d2, .single-post .d2 {
    font-size: calc(54px * 1.31);
  }
  .UCG-block .p1, .UCG-block .p1mb1 p .UCG-block .hm-cta p:nth-child(2), .UCG-block .mt-type2 .content-area p:nth-child(2), .UCG-block .p1p2 p:nth-child(2), 
  .single-post .p1 {
    font-size: calc(22px * 1.31);
  }
  .UCG-block .p2, .UCG-block .p2 p, .UCG-block .cta-btn-inner p, .UCG-block .p1p2 p:nth-child(3), 
  .single-post .p2 {
    font-size: calc(18px * 1.31);
  }
  .UCG-block .p3, .UCG-block .p3 p, .UCG-block .hm-cta p:nth-child(3), .UCG-block .mt-type2 .content-area p:nth-child(3), .single-post .p3, .single-post ul li {
    font-size: calc(17px * 1.31);
  }
  .UCG-block .p4, .ftr-menu-wrap a, .single-post .p4 {
    font-size: calc(14px * 1.31);
  }
  .p5, footer .footer-bottom ul.d-flex li a, .single-post .p5 {
    font-size: calc(12px * 1.31) !important;
  }
}
@media (max-width: 1024px) {
  .UCG-block .h1, .UCG-block h1, .news-blobk h1, .bio-page .titlebt h1, 
  .single-post h1 {
    font-size: calc(19px * 0.9);
  }
  .UCG-block .h2, .UCG-block h2, .single-post h2 {
    font-size: calc(24px * 0.9);
  }
  .UCG-block .h3,.UCG-block h3, .single-post h3 {
    font-size: calc(21px * 0.9);
  }
  .UCG-block .h5, .UCG-block h4, .single-post h4 {
    font-size: calc(15px * 0.9);
  }
  .UCG-block .h5, .UCG-block h5, .single-post h5 {
    font-size: calc(19px * 0.9);
  }
  .UCG-block .h6, .UCG-block h6, .single-post h6 {
    font-size: calc(18px * 0.9);
  }
  .UCG-block .d1, .UCG-block .h2d1 h2, .single-post .d1 {
    font-size: calc(68px * 0.9);
  }
  .UCG-block .d2, .single-post .d2 {
    font-size: calc(54px * 0.9);
  }
  .UCG-block .p1, .UCG-block .p1mb1 p .UCG-block .hm-cta p:nth-child(2), .UCG-block .mt-type2 .content-area p:nth-child(2), .UCG-block .p1p2 p:nth-child(2), 
  .single-post .p1 {
    font-size: calc(22px * 0.9);
  }
  .UCG-block .p2, .UCG-block .p2 p, .UCG-block .cta-btn-inner p, .UCG-block .p1p2 p:nth-child(3), .single-post .p2 {
    font-size: calc(18px * 0.9);
  }
  .UCG-block .p3, .UCG-block .p3 p, .UCG-block .hm-cta p:nth-child(3), .UCG-block .mt-type2 .content-area p:nth-child(3), .single-post .p3, .single-post ul li {
    font-size: calc(17px * 0.9);
  }
}
@media (max-width: 767px) {
  .UCG-block .h1,.UCG-block h1, .news-blobk h1, .bio-page .titlebt h1, 
  .single-post h1 {
    font-size: calc(19px * 0.85);
  }
  .UCG-block .h2,.UCG-block h2, .single-post h2 {
    font-size: calc(24px * 0.85);
  }
  .UCG-block .h3, .UCG-block h3, .single-post h3 {
    font-size: calc(21px * 0.85);
  }
  .UCG-block .h5, .UCG-block h5, .single-post h5 {
    font-size: calc(19px * 0.85);
  }
  .UCG-block .h6, .UCG-block h6, .single-post h6 {
    font-size: calc(18px * 0.85);
  }
  .UCG-block .d1, .UCG-block .h2d1 h2, .single-post .d1 {
    font-size: calc(68px * 0.85);
  }
  .UCG-block .d2, .single-post .d2 {
    font-size: calc(54px * 0.85);
  }
  .UCG-block .p1, .UCG-block .p1mb1 p .UCG-block .hm-cta p:nth-child(2), .UCG-block .mt-type2 .content-area p:nth-child(2), .UCG-block .p1p2 p:nth-child(2), 
  .single-post .p1 {
    font-size: calc(22px * 0.85);
  }
  .UCG-block .p2, .UCG-block .p2 p, .UCG-block .cta-btn-inner p, .UCG-block .p1p2 p:nth-child(3), .single-post .p2 {
    font-size: calc(18px * 0.85);
  }
  .UCG-block .p3, .UCG-block .p3 p .UCG-block .hm-cta p, .UCG-block .mt-type2 .content-area p:nth-child(3), .single-post .p3, .single-post ul li {
    font-size: calc(17px * 0.85);
  }
}
/*========= bhakti's header & footer css =========*/
header#header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.new-header-two .nav-bar {
    padding: 20px 0 16px 0;
    transition: padding .4s ease;
}
.active-menu .main-header {
    background: var(--sage);
}
.active-menu .header-btn {
  background-color: var(--sandstone) !important;
}
header.sticky .new-header-two .nav-bar {
    padding: 16px 0 16px 0;
    transition: padding .4s ease;
}
.new-header-two.active-menu .nav-bar, .new-header-two.active-menu.sticky .nav-bar {
    padding-top: 16px !important;
}
.nav-bar .menu-bar {
    width: 39%;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--color1);
}
header.sticky .logo.sticky-logo {
  display: flex;
}
header#header:not(.sticky) .logo.sticky-logo {
  display: none;
}
header.sticky .logo.main-logo {
  display: none;
}

.nav-bar .main-logo img {
  min-width: 100% !important;
  width: 100%;
  display: inline-block;
  object-fit: contain;
}
.logo.sticky-logo img {
    object-fit: contain;
}
.header-btn {
  padding: 5px 10px !important;
}
.open_menu ul.menu li a {
    text-transform: uppercase;
    font-weight: 500;
}
.humburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #828a7d;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all .2s ease-in-out;
}
.close-btn i {
  width: 40px;
  height: 40px;
  background-color: #F8F5EE;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}
.humburger span {
    width: 18px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 5px;
}
.menu_icon, .close-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.icon_txt {
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 500;
    transition: all .2s ease-in-out;
}
.menu_icon:hover .humburger {
    background: #000000;
    transition: all .2s ease-in-out;
}
.menu_icon:hover .icon_txt {
    color: var(--sage);
    transition: all .2s ease-in-out;
}
.close-btn .icon_txt {
	color: #F8F5EE;
}
.close-btn:hover .icon_txt {
    color: #000000;
    transition: all .2s ease-in-out;
}
header:not(.active-menu) .close-btn {
  display: none;
}
.active-menu .menu_icon .menu_icon {
    display: none !important;
}
.menu-sage .main-menu {
  background: #828A7D;
}
.main-header {
    position: relative;
    z-index: 100009;
}
.main-menu.dropdown-menu-wrapper {
    padding-top: 0px !important;
}
.hamburger_dropdown {
    padding-top: 140px;
}
.active-menu .main-menu.dropdown-menu-wrapper {
  height: 100vh;
  overflow-y: auto;
}
.active-menu .menu_icon {
    display: none;
} 
.hamburger_dropdown {
    width: 100%;
}
.menu-address-wrap, .hamburger_dropdown ul.social-icons, .menu-subtitle {
    text-align: left;
    max-width: 200px;
    width: 100%;
}
.menu-address-wrap {
  margin: 0 0 30px auto;
 }
 .menu-subtitle {
  margin-left: auto;
  margin-right: 0px;
  text-transform: uppercase;
 }
.hamburger_dropdown ul.social-icons {
    padding: 0;
    margin: 0 0 0 auto;
    list-style-type: none;
    gap: 0 12px;
}
.menu-address-wrap p:last-child {
    margin-bottom: 0;
}
.menu-address-wrap a {
    color: var(--softwhite);
    font-size: 17px;
    transition: color .2s ease-in-out;
	font-family: "trade-gothic-next", sans-serif;
}
.menu-address-wrap a:hover {
  color: var(--color1);
  transition: color .2s ease-in-out;
}
.new-header-two .main-menu ul.nav-2:nth-child(2) {
    display: none;
}
.new-header-two .main-menu ul.nav li {
    display: flex;
    flex-direction: row;
    width: 100%;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}
.new-header-two .main-menu ul.nav li a {
    text-align: left !important;
}
header:not(.active-menu) .header-btn:not(:hover) {
    background: var(--sage) !important;
    border-color: var(--sage) !important;
    color: #ffffff !important;
}
@media (min-width: 767px) {
  .menu-address-wrap a.dniphonehref {
      font-weight: 500;
      font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .center-logo-col {
      max-width: 20%;
      width: 100%;
  }
  .center-logo-col a {
      max-width: 187px;
      width: 100%;
      display:  flex;
      justify-content: center;
  }
}
@media (min-width: 1450px) {
  .menu-address-wrap a {
    font-size: 18px;
  }
  .iconclass {
    max-width: 24px;
  }
}
@media (max-width: 1150px) {
  .humburger .icon_txt {
    font-size: 16px;
  }
  .new-header-two .menu a {
    font-size: 16px;
  }
  .header-btn {
    font-size: 16px;
  }
  .nav-bar .main-logo img, .logo.sticky-logo img {
    max-width: 150px;
    width: 100%;
  }
  }
@media (max-width: 1024px) {
  .new-header-two .main-menu ul.nav li a {
      font-size: 32px;
  }
  .new-header-two .main-menu ul.nav-2 li a {
    font-size: 22px;
  }
  .center-logo-col {
      max-width: 37%;
  }
}
@media (max-width: 767px) {
  .hamburger_dropdown {
    padding-top: 95px;
  }
  .new-header-two .main-menu ul.nav li a, .new-header-two .main-menu ul.nav-2 li a {
      font-size: 20px;
      line-height: 1.4;
  }
  .new-header-two .main-menu ul.nav, .new-header-two .main-menu ul.nav-2 {
      gap: 10px;
      margin-bottom: 10px;
  }
  .menu-address-wrap, .hamburger_dropdown ul.social-icons, .menu-subtitle {
      max-width: 100%;
  }
  .menu-address-wrap {
      margin-top: 10px;
      margin-bottom: 15px;
  }
  .new-header-two .nav-bar {
      padding: 20px 0 12px 0;
      flex-direction: row-reverse;
  }
  .new-header-two .nav-bar .menu-bar {
      justify-content: end;
      width: 50%;
      border: none;
      padding: 0;
  }
  .menu_icon, .close-btn {
      gap: 5px;
  }
  .humburger, .close-btn i {
      width: 32px;
      height: 32px;
      gap: 2.5px;
  }
  .icon_txt {
      font-size: 14px;
  }
  .humburger span {
      width: 16px;
      height: 2px;
  }
}
footer.footer3.footer-wrapper {
    background: var(--sage);
    padding: 48px 0 72px 0;
    margin-bottom: -30px;
}
.f2-logo {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 32px;
}
.f2-logo a {
    width: 35%;
    text-align: center;
}
.f2-logo:before, .f2-logo:after {
    content: "";
    width: calc(calc(100% - 35%) /2);
    height: 1px;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.f2-logo:after {
    left: auto;
    right: 0;
}
.f2-logo a img {
    width: 75%;
    margin: 0 auto;
}
.color-white, .color-white a {
    color: #ffffff;
}
.ftr-title {
  margin-bottom: 15px !important;
}
.footer-wrapper ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 10px;
}
.ftr-menu-wrap ul {
  display: flex;
  flex-direction: column;
}
/*.ftr-menu-wrap li {
    line-height: 1;
}*/
.ftr-menu-wrap a {
    text-decoration: underline;
    text-transform: capitalize;
    text-underline-offset: 3px;
}
.ftr-menu-wrap {
    margin-bottom: 72px;
}
.footer-bottom {
  margin-top: 10px;
  gap: 15px 50px;
}
.footer-bottom li a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ftr-btn-icon-col li img {
    min-width: 25px;
    max-width: 25px;
}
footer ul li .white-color a:hover, footer ul li a:hover {
    color: var(--sandstone) !important;
}
.menu-social-wrap {
    max-width: 200px;
    margin: 0 0 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ftr-menu-wrap li i {
    font-size: 20px;
}
@media (max-width: 1024px) {
  .ftr-menu-wrap {
      margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  footer.footer3.footer-wrapper {
      padding: 40px 0 40px 0;
  }
  .f2-logo:before {
      display: none;
  }
  .f2-logo {
      padding-bottom: 15px;
      justify-content: flex-start;
  }
  .f2-logo a {
      text-align: left;
  }
  .f2-logo:after {
      width: 100%;
      top: auto;
      transform: none;
      bottom: 0;
  }
  .ftr-menu-wrap .col {
      width: 100%;
      flex-basis: 100%;
  }
  .ftr-menu-wrap > .row {
      flex-wrap: wrap;
      gap: 25px;
  }
  .ftr-title {
      margin-bottom: 10px !important;
  }
  .ftr-menu-wrap {
      margin-bottom: 15px;
  }
  .footer-wrapper .f-bg2 ul {
      flex-wrap: wrap;
      row-gap: 5px;
  }
  .f2-logo a img {
      width: auto;
      height: auto;
      min-width: 180px;
  }
  .menu-social-wrap {
      max-width: 100%;
  }
}
/*========= end header & footer css ========*/

/******* 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(--color1);
  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(--color1);
}

footer ul li a {
  color: var(--color1);
  text-decoration: navajowhite;
  font-size: 16px;
}
.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(--color1);}
.footer1 button {position: absolute;
    top: 8px;
    right: 9px;border-radius: 2px;
    border: 0;
    background: #B7BF10;
    padding: 8px 15px;}
    .footer-signup2 button img {max-width: 18px;}
.footer1  .footer-links  {padding: 90px 0 90px 0px;}

.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(--color1);
    margin: 10px 0 5px 0;
    line-height: 22px;}
.footer1 .footer-bottom img {max-width: 20px;}
.footer1 .footer-bottom  .cpryt  {font-size: 14px;}
.footer1 .footer-links .f-para {    font-size: 15px;
    margin-top: 15px;
    line-height: 22px;}
.footer1 .footer-btn {max-width: fit-content;
    display: flex;
    padding: 6px 25px;
    color: #fff;
    background: #B7BF10;
    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(--color1);
    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;
}
.menu-address-wrap h4, .menu-social-wrap h4 {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
	color: var(--softwhite);
}
/*========== home page =======*/
div#container {
    margin-top: 114px;
}
figure img {
  display: block;
}
.heroblock .arrowStyle .slick-arrow, .img-txt-slider-wrap button.slick-arrow, .banner-slider-with-txt button.slick-arrow {
    padding: 0 !important;
    width: 55px;
    height: 55px;
}
.heroblock .arrowStyle .slick-arrow:before, .img-txt-slider-wrap button.slick-arrow:before, 
.banner-slider-with-txt button.slick-arrow:before {
    font-size: 55px;
}
.banner-img-col {
    width: 100%;
    height: 70vh;
}
.with-content .banner-img-col {
    width: 50%;
}
.with-content .banner-content-col {
    width: 50%;
}
.banner-txt-slide:not(.with-content) .banner-content-col {
  display: none;
}
.banner-img-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner-txt-slider img {
    max-width: 100%;
}
.banner-content-col figure.logo-icon {
    margin: 0;
}
.banner-content-col figure.logo-icon img {
    max-width: 35px;
    width: 100%;
    margin: 0 auto 12px auto;
}
.banner-content-col .tagline {
    text-align: center;
    color: var(--camel);
    font-weight: 600 !important;
}
.banner-txt-slider {
    background: var(--sandstone);
}
.banner-txt-slider .cont__inner {
    min-height: 84%;
    height: auto;
    padding: 50px 50px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    text-align: center;
}
.banner-txt-slider figure.sign-img {
    margin: -15px -37px 0 0;
}
.banner-txt-slider figure.sign-img img {
  margin: 0 0 0 auto;
}
.heroblock .text-wrapper p {
    font-family: "trade-gothic-next",sans-serif !important;
    letter-spacing: 1px;
}
section.cta-section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.cta-section.cta-accent.cntr-cta-section .col-right {
    justify-content: flex-end;
}
.cta-section .col-right .cta-btn-inner {
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.tagline-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
    color: var(--camel);
}
.mb1, .h1mb1 h1, .h2mb1 h2, .p1mb1 p, .mt-type2 .content-area p:nth-child(2), .p1p2.p1mb1 p:nth-child(2) {
  margin-bottom: 16px !important;
}
.mb15 {
  margin-bottom: 20px !important
}
.mb2, .h1mb2 h1, .h2mb2 h2 {
  margin-bottom: 24px !important;
}
.mb40, .h1mb40 h1, .h2mb40 h2, .h3mb40 h3, .pmb40 p, .mt-type2 .content-area p:nth-child(3), .mt-type2 .content-area h3 {
  margin-bottom: 40px !important;
}
.mb4, .h1mb4 h1, .h2mb4 h2 {
  margin-bottom: 50px !important;
}
.mb55, .h2mb55 h2 {
  margin-bottom: 55px !important;
}
.pmy0 p, .h2my0 h2, .p1p2.p2my0 p:nth-child(3) {
  margin-bottom: 0 !important;
}
section.text-style.style-a {
    padding-top: 72px;
    padding-bottom: 72px;
}
.home section.text-style.style-a.right .row > div:nth-child(2) .content-area, .home  section.text-style.style-a.left .row > div:nth-child(1) .content-area {
  /*padding-right: clamp(20px, calc(calc(100% - 85%) / 2), calc(calc(100% - 85%) / 2)) !important;*/
  max-width: 350px;
  width: 100%;
}
.banner-slider-with-txt .slick-slide .cont__inner > div > * {
  opacity: 0;
}
.banner-slider-with-txt .slick-active .cont__inner > div > * {
  opacity: 0;
  transform: translateY(37px); /* Starts slightly below */
  transition: opacity .1s ease, transform 0.4s ease .1s; /* Smooth transition */
}
.banner-slider-with-txt .slick-active.slide-up .cont__inner > div > * {
  opacity: 1;
  transform: translateY(0); /* Slides to original position */
  transition: opacity .1s ease, transform 0.4s ease .1s;
}
.UCG-block .text-style.style-a.right .content-area {
    padding: 25px 0 25px 25px;
}
.UCG-block .text-style.style-a.left .content-area, .UCG-block .text-style.style-a.right .content-area {
  justify-content: flex-end;
  padding-top: 40px;
  padding-bottom: 40px;
}
.text-style.img-type1 .img-area img {
    aspect-ratio: 16 / 9;
}
.text-style.img-type2 .img-area img, .img-type2 .slider-img-col img {
   aspect-ratio: 4 / 3;
}
.text-style.img-type3 .img-area img {
   aspect-ratio: 3 / 4;
}
.img-type4 img {
  aspect-ratio: 3 / 2;
}
.img-type1  .slick-slide img {
    min-height: unset !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    height: unset !important;
}
/*.home  section.text-style.style-a.left .row > div:nth-child(1) {
  padding-left: clamp(20px, calc(calc(100% - 85%) / 2), calc(calc(100% - 85%) / 2)) !important;
}*/
.UCG-block .text-style.style-a.left .content-area {
    padding: 25px 32px 25px 0;
}
section.heroblock.style-a {
    margin-top: -1px;
    padding-top: 72px;
}
.wp-container-core-group-is-layout-1 {
    gap: 25px;
}
.footer-bottom-wrap {
    row-gap: 15px;
    column-gap: 50px;
    margin-top: 10px;
}
.home section.text-style {
    overflow: hidden;
}
section.text-blocks .row {
    max-width: 100%;
    margin: 0 !important;
    width: 100% !important;
}
.banner-txt-slide .slide__inner {
    width: 100%;
}
.home .wp-block-group figure.wp-block-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
/*======= end home page ======= */
/* apartments */
.sage, .h2sage h2, .h3sage h3, .darktext .content-area h3 {
    color: var(--sage) !important;
}
.camel, .h1camel h1, .h2camel h2, .h3camel h3 {
  color: var(--camel) !important;
}
.cloud, .h2cloud h2, .h3cloud h3 {
  color: var(--cloud) !important;
}
.black {
  color: var(--color1) !important;
}
.white, .lighttxt .content-area p, .lighttxt .img-txt-slider-wrap p {
  color: #ffffff !important;
}
.light, .lighttxt .img-txt-slider-wrap h3 {
  color: var(--softwhite) !important;
}
.fw-nm {
  font-weight: 400 !important;
}
.UCG-block .text-style.bg-transparent .content-area {
    background: transparent !important;
}
section.list-block.bg-transparent {
    background: transparent !important;
}
.page-id-2752 .UCG-block .text-style.style-a.left .content-area > * {
    max-width: 286px;
    width: 100%;
}
section.text-style.style-a.right.ryt-content-space .content-area {
    max-width: 310px;
    width: 100%;
}
@media (min-width: 1650px) {
  .page-id-2752 .UCG-block .text-style.style-a.left .content-area > * {
      max-width: 365px;
  }
  section.text-style.style-a.right.ryt-content-space .content-area {
    max-width: 450px;
  }
}
.UCG-block .bg-transparent .content-area {
    background: transparent !important;
}
section.text-style.wide-yspace {
    padding: 145px 0;
}
section.text-style.dark-bg {
    background: #6d6359 !important;
}
.list-block .row.row-cols-lg-2 {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.list-block ul.list-style {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.list-block ul.list-style li {
    padding: 5px 0;
    border-top: 1px solid #cccccc;
    margin: 0;
}
section.text-style.style-a.right.bg-transparent.small-img img {
    max-width: 450px;
    width: 100%;
}
.img-banner figure.full-img {
    margin: 0;
}
.img-banner figure.full-img img {
    max-width: 100%;
    width: 100%;
}
.animated_content-row {
    padding: 25px 0 0 0;
    margin-bottom: 72px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 35px;
}
.animated_content-row .col6 {
    max-width: calc(50% - 18px);
    width: 100%;
}
.animated_content-row .animation-space.col6 {
    margin-left: 5vw;
    max-width: calc(calc(50% - 18px) - 5vw);
}
.fw600 {
  font-weight: 600!important;
}
.max-600, .mt-type2 .content-area p:nth-child(2) {
  max-width: 600px;
  width: 100%;
}
.max-500, .mt-type2 .content-area p:nth-child(3) {
  max-width: 500px;
  width: 100%;
}
.align-bottom.text-style.style-a .content-area {
    justify-content: end;
}
/* responsive */
@media (min-width: 1650px) {
  .banner-txt-slider .cont__inner {
    max-width: 610px;
  }
  .home section.text-style.style-a.right .row > div:nth-child(2) .content-area, .home section.text-style.style-a.left .row > div:nth-child(1) .content-area {
    max-width: calc(350px + 1.5vw);
  }
}
@media (max-width: 1024px) {
  .banner-txt-slider .cont__inner {
      padding: 35px 40px;
  }
  .banner-txt-slider figure.sign-img {
      margin: -10px -10px 0 0;
  }
  .dotStyle.hero-slider, .dotStyle.hero-slider div, .dotStyle.hero-slider img {
      height: 100%;
  }
  .UCG-block .text-style.style-a.left .content-area, .UCG-block .text-style.style-a.right .content-area {
      padding-top: 30px;
      padding-bottom: 30px;
  }
  .mb40, .h1mb40 h1, .h2mb40 h2, .h3mb40 h3, .pmb40 p, .mt-type2 .content-area p:nth-child(3), .mt-type2 .content-area h3 {
    margin-bottom: 30px !important;
  }
  .mb4, .h1mb4 h1, .h2mb4 h2 {
    margin-bottom: 35px !important;
  }
  .mb55, .h2mb55 h2 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 991px) {
  section.cta-section .row > div {
      width: 100%;
  }
  .cta-section .col-right .cta-btn-inner {
      max-width: 100%;
      align-items: flex-start;
  }
  section.cta-section .row {
      row-gap: 20px;
  }
  .wp-container-core-group-is-layout-1 {
      gap: 18px;
  }
}
@media (max-width: 767px) {
  section.heroblock.style-a {
    padding-top: 52px;
  }
  div#container {
      margin-top: 77px;
  }
  .single-post div#container {
      margin-top: 125px;
  }
  .with-content .banner-img-col {
      width: 100%;
      height: auto;
  }
  .with-content .banner-img-col img {
      height: 250px;
  }
  .with-content .banner-content-col {
      width: 100%;
  }
  .banner-txt-slider .slick-track {
      display: flex;
  }
  .banner-txt-slide:not(.with-content) .banner-txt-slide {
      display: flex !important;
      align-items: stretch;
      height: auto;
  }
  .banner-txt-slide {
    display: flex !important;
    height: auto;
  }
  .banner-txt-slide:not(.with-content) .banner-img-col {   	 
       height: 40vh !important;
   }
  	
  .banner-slider-with-txt .banner-txt-slide.without-content {
	  height: 40vh !important;
  }
	
  .banner-txt-slider figure.sign-img img {
    max-height: 30px;
  }
  section.cta-section, section.text-style.style-a {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .mbpt-0 {
    padding-top: 0px !important;
  }
  .wp-container-core-group-is-layout-1 {
      gap: 10px;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .heroblock .arrowStyle .slick-arrow {
      width: 18px;
      height: 32px;
  }
  .arrowWithDots .slick-arrow.slick-prev::before, .arrowStyle .slick-arrow.slick-prev::before {
      width: 18px;
  }
  .heroblock .arrowStyle .slick-arrow:before {
      font-size: 30px;
  }
  .mb40, .h1mb40 h1, .h2mb40 h2, .h3mb40 h3, .pmb40 p, .mt-type2 .content-area p:nth-child(3), .mt-type2 .content-area h3 {
    margin-bottom: 24px !important;
  }
  .mb4, .h1mb4 h1, .h2mb4 h2 {
    margin-bottom: 25px !important;
  }
  .mb55, .h2mb55 h2 {
    margin-bottom: 25px !important;
  }
}
/* end responsive */
@media (min-width: 767px) {
  .animation-space svg.h1-svg {
      margin-bottom: 15px;
  }
  .grid11-container .pg-container > .row {
    width: calc((100% / 12)* 10.5);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1650px) {
  .max-600 {
    max-width: 775px;
  }
  .max-500 {
    max-width: 700px;
  }
  .animated_content-row .animation-space.col6 {
      max-width: 480px;
      width: 100%;
  }
  .list-block .row.row-cols-lg-2 {
      max-width: calc(800px + 10vw);
  }
}
@media (max-width: 1024px) {
  section.text-style.wide-yspace {
      padding: 72px 0;
  }
}
@media (max-width: 767px) {
  .UCG-block .text-style.style-a .row {
    row-gap: 25px;
  }
  .UCG-block .text-style.style-a.left .content-area, .UCG-block .text-style.style-a.right .content-area {
    padding: 0px;
  }
  .list-block {
      padding: 0 0 45px 0;
  }
  section.text-style.wide-yspace {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
/* end apartments */
/* amenities */
.animation-wrapper {
  position: relative;
}
.img-banner img {
  max-height: 70vh;
  min-height: 480px;
  width: 100%;
  object-fit: cover;
}
.animated_content-row {
  padding-top: 50px;
}
.animation-space {
  position: absolute;
  top: 140px;
  transition: transform 0.3s ease-in-out;
  z-index: 1111;
}
.animation-space .subtitle {
  color: var(--camel);
}
.animation-space .maintitle {
  color: var(--color1);
}
.animation-space svg {
    vertical-align: top;
    overflow: visible;
}
.svg-text {
  width: 100%;
  height: auto;
}
.svg-text-fill {
  fill: url(#text-gradient);
}
svg.h5-svg text {
    letter-spacing: 1px;
}
.nm-contentbox {
  margin-top: 50px;
  margin-left: auto !important;
  margin-right: 0 !important;

}
figure.full-img img {
    max-width: 100%;
}
section.img-txt-slider {
    position: relative;
}
.img-txt-slider-wrap button.slick-arrow, .banner-slider-with-txt button.slick-arrow {
    padding: 0;
    background: transparent;
    font-size: 0;
    border: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.img-txt-slider-wrap button.slick-arrow:before, .banner-slider-with-txt button.slick-arrow:before {
    display: block;
    position: absolute;
    font-family: 'FontAwesome';
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}
.img-txt-slider-wrap.slick-slider, .banner-slider-with-txt .slick-slider {
    position: unset;
}
.img-txt-slider-wrap button.slick-prev:before, .banner-slider-with-txt button.slick-prev:before {
    content: '\f053';
}
.img-txt-slider-wrap button.slick-next:before, .banner-slider-with-txt button.slick-next:before {
    content: '\f054';
}
.img-txt-slider-wrap button.slick-prev {
    left: 4rem;
}
.img-txt-slider-wrap button.slick-next{
    right: 4rem;
}

.banner-slider-with-txt .banner-txt-slider.slick-initialized.slick-slider {
    position: relative;
}

.banner-slider-with-txt button.slick-next {
    right: 5px;
}

.banner-slider-with-txt button.slick-prev{
	left: 5px;
}



button.slick-arrow:before {
    font-weight: 300 !important;
    font-family: "Font Awesome 6 Sharp" !important;
}
.img-txt-slide .row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 30px;
}
section.img-txt-slider.align-bottom .slider-cont-col {
    display: flex;
    align-items: stretch;
}
.align-bottom .img-txt-slide .content-area {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.img-txt-slide .row .col-md-4 {
    width: calc(33.33% - 15px);
}
.img-txt-slide .row .col-md-8 {
    width: calc(66.66% - 15px);
}
.img-txt-slide .row .col-md-6 {
    width: calc(50% - 15px);
}
.slider-img-col img {
    width: 100%;
    object-fit: cover;
}
.amenities-contentbox .card-item-text-inner {
    padding: 20px 0 0 0;
    max-width: 985px;
    width: 100%;
}
section.img-txt-slider {
  padding-top: 72px;
  padding-bottom: 72px;
}
section.img-txt-slider.has-title {
    padding-top: 40px;
    padding-bottom: 65px;
}
section.img-txt-slider.right .slider-cont-col {
  order: 2;
}
.slider-img-col img {
    max-width: 100%;
    width: 100%;
    /*max-height: 450px;*/
    object-fit: cover;
}
.banner-txt-slide .banner-content-col .tagline {
    letter-spacing: 2px;
}
section.img-txt-slider .slick-track {
    display: flex;
    align-items: center;
}
.max290 .img-txt-slide .content-area {
  max-width: 290px;
  width: 100%;
}
@media (min-width: 1650px) {
  .max290 .img-txt-slide .content-area {
    max-width: 365px;
  }
}
@media (max-width: 1450px) {
  .img-txt-slider-wrap button.slick-prev {
      left: 0px;
  }
  .img-txt-slider-wrap button.slick-next {
      right: 0px;
  }
}
@media (min-width: 768px) {
    .page-id-3153 .animated_content-row .animation-space.col6 {
        max-width: 450px;
    }
}
@media (max-width: 1024px) {
  .nm-contentbox {
    margin-top: 0px;
  }
  .animated_content-row {
    margin-bottom: 45px;
  }
  .animation-space {
    top: 50px;
  }
  .img-txt-slider-wrap.slick-slider {
    position: relative;
    padding-top: 40px;
  }
  .img-txt-slider-wrap button.slick-arrow {
      top: 5px;
      transform: unset;
      bottom: auto;
      left: auto;
      width: 20px;
      height: 32px;
  }
  .img-txt-slider-wrap button.slick-arrow:after {
    width: 20px;
  }
  .img-txt-slider-wrap button.slick-next {
      right: 4rem;
  }
  .img-txt-slider-wrap button.slick-prev {
      right: calc(4rem + 32px);
  }
  .img-txt-slider-wrap button.slick-arrow:before {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .animated_content-row .col6 {
      max-width: 100%;
  }
  .animated_content-row .animation-space.col6 {
      margin-left: 20px;
      max-width: calc(100% - 20px);
      padding: 30px 20px 32px 0;
  }
  .animated_content-row {
    padding: 0 0 0 0;
    margin-bottom: 0px;
  }
  .img-txt-slide .row .col-md-8, .img-txt-slide .row .col-md-4 {
    width: 100%;
  }
  /*.img-txt-slider-wrap button.slick-prev {
      left: 5px;
  }
  .img-txt-slider-wrap button.slick-next {
      right: 5px;
  }*/
  section.img-txt-slider {
      padding-top: 52px;
      padding-bottom: 52px;
  }
  .img-txt-slider-wrap button.slick-next {
      right: .5rem;
  }
  .img-txt-slider-wrap button.slick-prev {
      right: calc(.5rem + 37px);
  }
  .align-bottom .img-txt-slide .content-area > *:last-child {
  	margin-bottom: 0px !important;
  }
  .banner-slider-with-txt .pg-container {
      position: relative;
  }
  .banner-slider-with-txt button.slick-arrow {
      top: 32px;
      transform: unset;
  }
  .banner-slider-with-txt button.slick-next {
      right: 0;
  }
  .banner-slider-with-txt button.slick-prev {
      left: auto;
      right: 40px;
  }
  .banner-slider-with-txt button.slick-arrow {
    width: 35px;
      height: 32px;
  }
  .banner-slider-with-txt button.slick-arrow:before {
      font-size: 32px;
  }
}
/* end amenities */
/* neighborhood */
.video-wrapper {
    position: relative;
}
#banner-video {
    max-width: 100%;
    width: 100%;
}
.video-wrapper .video-btn {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff94;
    padding: 2px 17px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    color: #ffffff;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}
.video_content-row {
    padding: 15px 0 65px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: self-end;
    gap: 0 35px;
}
.video_content-row .col6 {
    width: calc(50% - 18px);
}
.video-space {
    margin-bottom: 20px;
}
.video-space > * {
    max-width: 500px;
    width: 100%;
}
.video_content-row {
    padding: 15px 0 65px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: self-end;
    gap: 0 35px;
}
.video_content-row .col6 {
    width: calc(50% - 18px);
}
.video-space {
    margin-bottom: 25px;
}
.video-space > * {
    max-width: 450px;
    width: 100%;
}
.content-list-wrap ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.content-list-wrap ul li, .content-list-wrap ul li a {
    font-size: 14px;
}
.content-list-wrap ul li span, .content-list-wrap ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 300;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  width: fit-content;
  color: #000000;
  transition: color .3s ease-in-out;
}
.content-list-wrap ul li a i {
  color: #000000;
  transition: color .3s ease-in-out;
}
.content-list-wrap ul li a:hover, .content-list-wrap ul li a:hover i {
  color: var(--camel);
  transition: color .3s ease-in-out;
}
#places-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 40px;
    margin-bottom: 20px;
}
#places-filters span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 600;
}
#places-filters span:not(:last-child):after {
    content: "";
    width: 2px;
    height: 18px;
    background: #000000;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
#places-filters span.active {
    text-decoration: underline;
}
#places-filters span i.icon {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #000000;
}
.neighborhood-map div#map {
    min-height: 79vh !important;
}
@media (max-width: 1024px) {
  #places-filters {
    gap: 10px 30px;
  }
  #places-filters span {
    font-size: 16px;
    letter-spacing: 1px;
  }
  #places-filters span:not(:last-child):after {
    right: -15px;
  }
  #places-filters span i.icon {
      width: 16px !important;
      height: 16px !important;
  }
  .neighborhood-map div#map {
    min-height: 450px;
  }
}    
@media (max-width: 767px) {
  .video_content-row .col6 {
      width: 100%;
  }
  .video_content-row {
      padding-bottom: 0;
  }
  .neighborhood-map div#map {
    min-height: 380px;
  }
  ul.content-list-wrap li span {
    font-size: 16px;
  }
}
/* end neighborhood */
/* gallery */
.cta-section.content-titlebar {
    padding-top: 20px;
}
.cta-section.content-titlebar .col-sm-6 {
    width: calc(50% - 18px);
}
.cta-section.content-titlebar .row {
    gap: 25px 35px;
    align-items: flex-end;
}
.cta-section.content-titlebar .col-right .cta-btn-inner {
    max-width: 100%;
}
.cta-section.content-titlebar .col-sm-6:nth-child(1) > * {
  max-width: 450px;
  width: 100%;
}
.cta-section.content-titlebar:not(.mb-0) .col-sm-6:nth-child(1) {
    margin-bottom: 20px;
}
.cta-section .col-left, .cta-section .col-right {
    padding: 0;
}
#ucg-gallery .tabs ul.list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    padding: 0;
}
#ucg-gallery .tabs ul.list li.item {
    border: 1px solid #000000 !important;
    padding: 4px 10px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #000000;
    background: var(--sandstone);
}
#ucg-gallery .tabs ul.list li.item.active {
    background: var(--camel);
}
#ucg-gallery.ucg-gallery .filters {
    background: transparent;
    padding: 0;
}
#ucg-gallery.ucg-gallery .filters ul.list {
    padding: 0;
    gap: 15px !important;
    margin: 0 0 35px 0;
    justify-content: space-between !important;
}
#ucg-gallery.ucg-gallery .filters ul.list .item.active {
    color: #000000 !important;
}
.ucg-gallery > .photos.staggered > .inset .image .overlay-link:before {
    display: none !important;
}
.img-with-space {
    padding-left: 2rem;
    padding-right: 2rem;
}
.ucg-gallery .filters .filter .list .item {
    font-size: 14.25px;
    letter-spacing: 1px;
    font-weight: 600;
}
.ucg-gallery .filters .filter {
    padding: 0 2px;
}
@media (min-width: 1440px) {
  .img-with-space {
      padding-left: 5rem;
      padding-right: 5rem;
  }
}
@media (max-width: 767px) {
  .cta-section.content-titlebar .col-sm-6 {
      width: 100%;
  }
  .cta-section.content-titlebar:not(.mb-0) .col-sm-6:nth-child(1) {
      margin-bottom: 0;
  }
  .contact-contentlist .carditem {
      padding: 0;
      width: 100%;
      flex: unset !important;
  }
  .contact-contentlist .row {
      row-gap: 25px;
  }
  #ucg-gallery .tabs ul.list {
      margin-bottom: 15px;
  }
  #ucg-gallery.ucg-gallery .filters ul.list {
      margin-bottom: 20px;
  }
  #ucg-gallery .tabs ul.list li.item {
      font-size: 14px;
  }
  #ucg-gallery .tabs ul.list {
      gap: 10px;
  }
}
/* end gallery */
/* contact */
.h2-center h2 {
  text-align: center;
}
.content-imgbox img {
    max-width: 150px;
    height: auto;
    object-fit: contain !important;
    min-height: unset !important;
    display: inline-block;
    margin-bottom: 16px;
}
.content-imgbox h4 {
  color: var(--black);
  margin-bottom: 16px;
}
.content-imgbox p {
  margin-bottom: 0px !important;
}
section.sm-pt {
    padding-top: 40px;
}
section.sec-py {
    padding-top: 72px;
    padding-bottom: 72px;
}
section.sec-pb {
    padding-bottom: 65px;
}
.sec-pb.contactbox-wrap {
    padding-bottom: 80px;
    margin-top: 50px;
}
.contactbox-wrap .carditem img {
    border-radius: 0 0;
}
.carditem img .carditem-text {
    width: 100%;
}
.contactbox-wrap .card-item-text-inner {
    width: 100%;
    padding: 10px 0 0;
}
.contactbox-wrap .carditem-text {
    width: 100%;
}
.contactbox-wrap .card-item-text-inner .mb1 {
    margin-bottom: 5px !important;
}
.sec-md-py {
  padding-top: 45px;
  padding-bottom: 45px;
}
.gform-theme--foundation form#gform_5 .gform_fields {
    gap: 25px;
}
.gform-theme--foundation form#gform_5 .gform-grid-row input {
    box-shadow: none !important;
    border-radius: 0px;
}
.gform-theme--framework form#gform_5 input {
    border-radius: 0 !important;
    box-shadow: none !important;
}
form#gform_5 .ginput_container.ginput_container_select select {
    border-radius: 0px !important;
    box-shadow: none !important;
}
.gform-theme--foundation form#gform_5 fieldset {
  gap: 25px;
  display: flex !important;
  width: 100%;
}
.gform-theme--foundation form#gform_5 fieldset .gform-grrid-row {
    width: 100%;
    min-width: 100%;
}
.gform-theme--foundation form#gform_5 .gform-grid-row {
    gap: 25px;
    width: 100%;
    margin: 0;
}
.gform-theme--foundation form#gform_5 .gform-grid-row .gform-grid-col {
    padding: 0;
}
.direction-map ul.social-links {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0 !important;
    gap: 10px 15px;
}
.direction-map ul.social-links i {
    font-size: 19px;
}
.gform-theme--framework form input#gform_submit_button_5 {
  background: transparent !important;
  color: #000000;
  border-radius: 25px !important;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "trade-gothic-next",sans-serif;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000 !important;
  margin: 0 !important;   
  padding: 8px 20px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}
.gform-theme--framework form input#gform_submit_button_5:hover, .gform-theme--framework form input#gform_submit_button_5:focus, .gform-theme--framework form input#gform_submit_button_5:focus-visible {   
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.gfield a {
    color: #212529;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.map-row {
    display: flex;
}
.direction-map.direction-map-dark .form-half-col.map-col {
    width: 25%;
}
.map-row .form-half-col.col-left {
    width: calc(75% - 30px);
}
.direction-map div#field_5_13 {
    transform: translateY(24px);
    margin-top: 50px;
}
.direction-map .gform-theme--foundation .gform_footer {
    margin: -75px 0 0 0 !important;
    position: relative;
    z-index: 1;
}
.footer-bottom p.p5 {
    padding-top: 1px;
    margin-bottom: 0px;
    margin-right: 10px;
}
footer .footer-bottom ul.d-flex li a {
    font-weight: 300;
    font-size: 12px;
}
.footer-bottom p {
    COLOR: #000000;
}
.footer-bottom ul li {
    line-height: 0.7;
}
.footer-bottom-wrap p {
    color: #000000 !important;
    margin-bottom: 0;
}
.ftr-menu-wrap li {
    line-height: 1;
}
.ftr-menu-wrap .col.f2-col4 li {
    max-width: 200px;
    width: 100%;
}
/* single floor plan */
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__actions {
    gap: 10px;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-inquire {
    margin: 0;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .actions {
    display: none;
}
.single-floor_plan .details .features .actions .action.inquire {
    border: 1px solid #000000;
    color: #000000;
    font-size: 16px !important;
}
.single-floor_plan .details .features .actions .action.inquire:hover {
    background: #000000;
    color: #ffffff !important;
}
.single-floor_plan .details .navigator {
    gap: 10px;
}
.single-floor_plan .details .navigator .item:link, .single-floor_plan .details .navigator .item:visited {
    padding: 9px 15px;
    border: 1px solid #000000;
    border-radius: 25px;
    color: #000000;
}
.single-floor_plan .details .features .actions .action.email:link, .single-floor_plan .details .features .actions .action.email:visited {
    color: #000000;
}
.inquire-modal__cta-link {
    border: 1px solid #000000 !important;
    color: #000000 !important;
    font-size: 10px !important;
    padding: 8px 20px;
    border-radius: 20px;
}
.inquire-modal__cta-link:hover, .inquire-modal__cta-link:focus, .inquire-modal__cta-link:focus-visible {
    border: 1px solid #000000 !important;
    color: #ffffff !important;
    background-color: #000000 !important;
}
#inquireModal, .inquire-modal__footer {
    background-color: #EDE8DC !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply {
    border-radius: 30px;
    padding: 10px 30px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply, #blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply:link {
  background-color: #000000 !important;
}
.single-floor_plan .blueprint-container #availability-table_wrapper .availability-table__action-apply:hover, 
.single-floor_plan .blueprint-container #availability-table_wrapper .availability-table__action-apply:link, .single-floor_plan .blueprint-container #availability-table_wrapper .availability-table__action-apply:visited {
    background-color: var(--sage) !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply:hover, 
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply:visited {
   background-color: var(--sage) !important;
}
.availability-single-top {
    background-color: #EDE8DC !important;
}
#availability-table th, #availability-table td span {
    font-size: 14px !important;
}
.page-id-2911 .map-col p a, div#field_5_13 a {
    color: #000000;
}
.page-id-2911 .map-col p a:hover, div#field_5_13 a:hover {
  color: var(--camel);
}
.single-floor_plan .details .images .views {
    display: flex;
    justify-content: center;
}
.single-floor_plan .details .images .views .panels {
    width: 100%;
}
.single-floor_plan .floor-plan-image {
    width: calc(100% - 4rem);
    max-height: 65vh;
    height: auto;
    object-fit: contain;
}
.bio-page .titlebt h1 {
  color: var(--camel);
}
.bio-page .titlebt .col-md-4 {
    font-size: 16px;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table tbody tr .fp-apt {
    font-size: 14px !important;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-inquire, #blueprint.blueprint-overview .fp-panels .fp-panel.apartments #availability-table_wrapper .availability-table__action-apply:link {
    font-size: 12px !important;
}
/* end single floor plan */
@media  (max-width: 1024px) {
  .sec-pb.contactbox-wrap {
      padding-bottom: 65px;
  }
}
@media (max-width: 767px) {
  .sec-md-py {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  section.sec-py {
    padding-top: 52px !important;
    padding-bottom: 52px !important
  }
  section.sec-pb, .sec-pb.contactbox-wrap {
    padding-bottom: 52px;
  }
  section.mb-pt0 {
    padding-top: 0px !important;
  }
  section.text-style .content-area >*:last-child {
      margin-bottom: 0 !important;
  }
  .direction-map div#field_5_13 {
      transform: translateY(10px);
  }
  .direction-map .gform-theme--foundation .gform_footer {
      margin-top: -140px !important;
  }
  .sec-pb.contactbox-wrap {
      margin-top: 0px;
  }
  #blueprint.blueprint-overview .fp-tabs .fp-tab {
    padding: 7px 15px;
    font-size: 14px !important;
  }
}
@media (max-width: 640px) {
  .direction-map.direction-map-dark .form-half-col.map-col {
      width: 100%;
  }
  .map-row .form-half-col.col-left {
      width: 100%;
  }
  .gform-theme--foundation form#gform_5 .gform_fields > fieldset, .gform-theme--foundation form#gform_5 .gform_fields > div {
      max-width: 100% !important;
  }
  .map-row {
      padding: 0 0 65px 0;
      flex-direction: column-reverse;
  }
  .direction-map div#field_5_13 {
      transform: translateY(65px);
  }
  .direction-map .gform-theme--foundation .gform_footer {
      margin-top: -70px !important;
  }
}
@media (max-width: 500px) {
  section.text-style.style-a.right.ryt-content-space .content-area {
    max-width: 100%;
  }
}
/* end contact */
/* floor plan */
#blueprint.blueprint-overview .fp-tabs {
    border-bottom: 1px solid #010000;
}
#blueprint.blueprint-overview .fp-tabs .fp-tab {
    border-bottom: 0;
    background: #010000;
    color: var(--softwhite);
    font-size: 16px !important;
}
#blueprint.blueprint-overview .fp-tabs .fp-tab[aria-selected="true"] {
    background: var(--softwhite);
    color: #010000;
    border-bottom: 2px solid var(--softwhite);
    margin-bottom: -1px;
}
#blueprint.blueprint-overview .fp-tabs {
    border-bottom: 1px solid #010000;
}
#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 #010000;
    height: 34px;
}
#blueprint.blueprint-overview .fp-tabs {
    border-bottom: 1px solid #010000;
    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 #010000;
}
#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: #010000;
    border: 1px solid #010000;
    padding: 10px 15px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.single-floor_plan .details .features .dimensions {
    padding: 0;
}
.single-floor_plan .blueprint-container .availability-single-top .subhead {
    font-weight: 400 !important;
}
.single-floor_plan .blueprint-container #availability-table_wrapper .availability-table thead .sorting, .single-floor_plan .blueprint-container #availability-table_wrapper .availability-table thead .sorting_asc, .single-floor_plan .blueprint-container #availability-table_wrapper .availability-table thead .sorting_desc {
    font-weight: 400 !important;
    font-family: 'Barlow-Medium';
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .price {
    font-weight: 400 !important;
    font-family: 'Barlow-Regular';
    margin-top: 5px;
}
#blueprint.blueprint-overview .fp-panels .fp-panel.plans .fp-plan .dimensions {
    padding: 0;
}
#inquireModal p, .inquire-modal__meta-item, .inquire-modal__price, .inquire-modal__cta-heading, .inquire-modal__cta-body {
    font-weight: 400 !important;
}
.page-template-floor-plans .gform_wrapper form .gform_body .gform_fields .gfield label, .page-template-aro-plans .gform_wrapper form .gform_body .gform_fields .gfield label, .single-floor_plan .gform_wrapper form .gform_body .gform_fields .gfield label, .page-template-aro-plan .gform_wrapper form .gform_body .gform_fields .gfield label {
    font-size: 14px !important;
}
.inquire-modal__footer-heading {
    font-size: 16px !important;
}
.single-floor_plan .blueprint-container #availability-table_wrapper .availability-table thead .sorting_asc:after {
    height: 12px !important;
    color: #b1b4b4;
}
.single-floor_plan .blueprint-container #availability-table_wrapper .availability-table__actions {
    gap: 10px;
}
.single-floor_plan .blueprint-container #availability-table_wrapper .availability-table__action-inquire {
    margin: 0;
}
.single-floor_plan .details .features .dimensions .dimension.price, .inquire-modal__price span {
    font-weight: 400 !important;
}
#blueprint.blueprint-overview .fp-filters .fp-filter label.focused {
   background: transparent !important;
}
.images.floor-plan-images img {
    max-height: 695px;
    height: auto;
    object-fit: contain !important;
}
@media (min-width: 960px) {
  #blueprint.blueprint-overview .fp-filters .fp-filter label {
        top: 50% !important;
        transform: translateY(-50%);
    }
  #blueprint.blueprint-overview .fp-filters .fp-filter label.focused {
      transform: translateY(-3.2rem) !important;
  }
}
/* end floor plan */
/* Initial state for the slide-up effect */
.slide-section .slide-up {
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0.2s, transform 0.5s ease-in-out 0.3s;
    transform: translateY(20px);
}
/* When the .animated class is added */
.slide-section.animated .slide-up {
    opacity: 1;
    transform: translateY(0px);
}


.single-floor_plan .details {
    background: #fff !important;
}



/* global popup */

.popup-title {
    position: absolute;
    top: 50px;
    left: -51px;
    z-index: 11119;
    transform: rotate(-90deg);
    background-color: #828a7d;
    color: #ffffff;
    padding: 12px 34px;
    width: max-content;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
}



.popup-title h5 {
  font-family: 'metropolis bold', sans-serif;
  font-size: 14px !important;
  letter-spacing: 1.12px;
  font-weight: 600;
  line-height: 1.5;
}
.bbt-secondary.white {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.popup-wrap {
    position: fixed;
    top: 50vh;
    left: 0;
    z-index: 1;
}
.popup-wrap .popup-content {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 330px;
    width: 98vw;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
	background-color: #828a7d;
    padding: 43px 53px 50px 50px;
    transform: translateX(-104%);
    transition: transform .3s ease-in-out;
}
.popup-wrap.show .popup-content {
  transform: translateX(0);
    transition: transform .3s ease-in-out;
}
.popup-wrap.show .popup-title {
  display: none;
  opacity: 1;
  transition: opacity .1s ease-in-out .3s;
}
.popup-close {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}
.popup-wrap .popup-close img {
    display: block;
    cursor: pointer;
}
.popup-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 */


.popup-wrap .popup-content .bbt-secondary {
    border: 1px solid #fff !important;
    color: #fff !important;
}

.popup-wrap .popup-content .bbt-secondary:hover {
    background: #f8f5ee !important;
    border: 1px solid #fff !important;
	color:#000 !important;
}

.page-id-3153 .img-type1.h2camel.h2mb2.p2 .hero_titlebar .text-center.h2.mb15 h2 {
    color: var(--camel) !important;
}




ul.social-icons.d-flex.align-items-center a.p3 {
    color: #f8f5ee;
}

i.fa-classic.fa-brands.fa-instagram, i.fa-classic.fa-brands.fa-facebook-f, i.fa-classic.fa-brands.fa-youtube {
    font-size: 26px;
}


ul.social-icons.d-flex.align-items-center {
    flex-direction: row !important;
}

.direction-map-dark.light .ftr-menu-list {
    margin: 0px;
    padding: 0px;
}

ul.ftr-menu-list li {
    font-size: 16px;
    color: #000;
    list-style: none;
}

p.locationmp {
    max-width: 180px;
}

.form-half-col.map-col .social-icons {
    padding: 0px;
    gap: 12px;
    list-style: none;
}

body {
    font-family: "trade-gothic-next", sans-serif;
    font-weight: 400;
    background-color: var(--softwhite);
    color: var(--color1);
}

.footer3.footer-wrapper .ftr-menu-list li {
    color: #f8f5ee;
}

.toppadding {
    padding-top: 0px !important;
}