/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --tecture-font: "minion-pro", serif;
  --tecture-font-2: "lato", sans-serif;
  --tecture-gray: #cccccc;
  --tecture-gray-rgb: 204, 204, 204;
  --tecture-white: #ffffff;
  --tecture-white-rgb: 255, 255, 255;
  --tecture-base: #7d6b33;
  --tecture-base-rgb: 125, 107, 51;
  --tecture-black: #000000;
  --tecture-black-rgb: 0, 0, 0;
  --tecture-bdr-color: rgba(0, 0, 0, 1);
  --tecture-bdr-color-rgb: 0, 0, 0;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--tecture-font);
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  color: var(--tecture-gray);
}

body.locked {
  overflow: hidden;
}

.body-bg-color-1 {
  position: relative;
  background-color: #000000;
}

.theme-border-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 1px;
  background-color: var(--tecture-black);
  z-index: -1;
}

.theme-border-right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100px;
  width: 1px;
  background-color: var(--tecture-bdr-color);
  z-index: -1;
}

a {
  color: var(--tecture-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tecture-font);
  color: var(--tecture-white);
  margin: 0;
  font-weight: 700;
  font-style: italic;
}

p {
  font-family: var(--tecture-font-1);
  color: #aeb0b4;
  font-size: 17px;
  line-height: 26px;
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}


ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}



@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}



@media (min-width: 1200px) {
  .auto-container {
    position: static;
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto;
  }
}






::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--tecture-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.section-shape-4 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 80px; /* keep this at 100px as you want */
  background-color: var(--tecture-bdr-color); /* keep your theme border colour */
  background-image: url("../images/side-bar.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: 80px auto; /* force your 80px PNG to fit inside the 100px strip */
  z-index: 2; /* sit above the video */
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 58px;
  margin-top: -12px;
}

.section-title__title {
  color: var(--tecture-white);
  font-size: 54px;
  line-height: 64px;
  font-weight: 700;
  text-transform: uppercase;
}


.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 17px;
  color: var(--tecture-white);
  background-color: var(--tecture-base);
  padding: 17px 40px 17px;
  border-radius: 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  overflow: hidden;
  font-family: var(--tecture-font);
  text-transform: capitalize;
  gap: 5px;
  z-index: 1;
}

.thm-btn span {
  font-size: 23px;
  position: relative;
  display: inline-block;
  top: -1px;
}

.thm-btn:before {
  content: "";
  background-color: var(--tecture-white);
  width: 50%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.thm-btn:after {
  content: "";
  background-color: var(--tecture-white);
  width: 50%;
  height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.thm-btn:hover:before,
.thm-btn:hover:after {
  height: 100%;
}

.thm-btn:hover {
  color: var(--tecture-black);
}


.preloader {
  position: fixed;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--tecture-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--tecture-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tecture-bdr-color);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}


/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--tecture-base);
  border-color: var(--tecture-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--tecture-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--tecture-white);
  color: var(--tecture-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--tecture-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:before {
  background-color: var(--tecture-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:after {
  background-color: var(--tecture-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}




/*== checked Css Css ======*/
.checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--tecture-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--tecture-font);
}

.checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--tecture-base);
  border-radius: 50%;
  margin: 2px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 input[type="checkbox"]:checked+label span {
  border-color: #e3e4ea;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}















/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: block;
  padding-left: 260px;
  z-index: 1;
}

.main-menu__logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  max-width: 260px;
  width: 100%;
  z-index: 2;
}

.main-menu__top {
  position: relative;
  display: block;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--tecture-black);
  padding: 10px 30px;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--tecture-white-rgb), .30);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 20px;
  color: var(--tecture-base);
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 15px;
  font-weight: 500;
  color: var(--tecture-white);
}

.main-menu__contact-list li .text p a {
  color: var(--tecture-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--tecture-base);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-time {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-time-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-time-icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--tecture-base);
}

.main-menu__top-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--tecture-white);
  margin-left: 10px;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(var(--tecture-white-rgb), .10);
  border-radius: 50%;
  font-size: 15px;
  color: var(--tecture-white);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--tecture-white);
  border: 1px solid rgba(var(--tecture-basw-rgb), 1);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tecture-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 5px;
}

.main-menu__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--tecture-white);
  padding: 0 30px 0;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__search-and-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 9px 0;
}

.main-menu__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 25px;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--tecture-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--tecture-base);
}

.main-menu__btn:hover {
  color: var(--tecture-white);
}

.main-menu__btn:before,
.main-menu__btn:after {
  background-color: var(--tecture-black);
}


.stricky-header .main-menu__top {
  display: none;
}


.stricky-header.main-menu {
  background-color: #000000;
  border-bottom: 1px solid #7d6b33;
}






.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 27px;
  padding-bottom: 27px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 25px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--tecture-black);
  font-weight: 700;
  padding-left: 7px;
  padding-right: 7px;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--tecture-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 33px;
  border-radius: 0px;
  background-color: var(--tecture-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  opacity: 0.20;
  border-radius: 5px;
  z-index: -1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 20px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 52%;
  right: 7px;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--tecture-black);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--tecture-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}


.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}






.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}



.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(var(--tecture-black-rgb), .10);
}

.main-menu .main-menu__list>li>ul>li:last-child,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child,
.stricky-header .main-menu__list>li>ul>li:last-child,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child {
  border-bottom: 0;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 0;
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--tecture-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--tecture-base);
  color: var(--tecture-white);
  padding-left: 25px;
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--tecture-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--tecture-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--tecture-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--tecture-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--tecture-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--tecture-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--tecture-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--tecture-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--tecture-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--tecture-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--tecture-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--tecture-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--tecture-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--tecture-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--tecture-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--tecture-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--tecture-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  width: 100%;
  background: #000000;
  transition: all 500ms ease;
  z-index: 999;
  border-bottom: 1px solid var(--tecture-base);
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 100px 0;
  z-index: 1;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 6px 0;
}


.main-menu-two__left {
  position: relative;
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 130px;
}

.main-menu-two__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-two__search-and-nav-sidebar-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 17.5px 45px;
  gap: 20px;
  border-radius: 10px;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid var(--tecture-white);
  border-radius: 50%;
  font-size: 16px;
  color: var(--tecture-white);
}

.main-menu-two__search:hover {
  background-color: var(--tecture-black);
  border: 1px solid var(--tecture-black);
  color: var(--tecture-white);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid var(--tecture-white);
  border-radius: 50%;
  font-size: 16px;
  color: var(--tecture-white);
}

.main-menu-two__nav-sidebar-icon a:hover {
  background-color: var(--tecture-black);
  border: 1px solid var(--tecture-black);
  color: var(--tecture-white);
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--tecture-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--tecture-base);
}

.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 47px;
  padding-bottom: 47px;
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--tecture-white);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--tecture-base);
}

.stricky-header.main-menu-two {
  background-color: var(--tecture-black);
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--tecture-black);
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 9px 0px 9px;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li+li {
  margin-left: 50px;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 16px;
  color: var(--tecture-base);
}

.main-menu-three__contact-list li .text {
  margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  color: var(--tecture-white);
}

.main-menu-three__contact-list li .text p a {
  color: var(--tecture-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--tecture-base);
}

.main-menu-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--tecture-white);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:hover {
  color: var(--tecture-base);
}

.main-menu-three__social a+a {
  margin-left: 25px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 0px 0px;
  z-index: 1;
}

.main-menu-three__logo {
  position: relative;
  display: block;
}

.main-menu-three__logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33px 0px 33px;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-menu-three__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--tecture-black);
  font-size: 21px;
}

.main-menu-three__search:hover {
  color: var(--tecture-base);
}

.main-menu-three .main-menu__list>li,
.stricky-header.main-menu-three .main-menu__list>li {
  padding-top: 34px;
  padding-bottom: 34px;
}

.stricky-header.main-menu-three {
  background-color: var(--tecture-white);
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-four__wrapper {
  position: relative;
  display: block;
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  z-index: 1;
}

.main-menu-four__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 0px 0px;
  z-index: 1;
}

.main-menu-four__logo {
  position: relative;
  display: block;
}

.main-menu-four__logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33px 0px 33px;
}

.main-menu-four__left {
  position: relative;
  display: block;
}

.main-menu-four__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-four__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-four__search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

.main-menu-four__search {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--tecture-black);
  font-size: 21px;
}

.main-menu-four__search:hover {
  color: var(--tecture-base);
}

.main-menu-four .main-menu__list>li,
.stricky-header.main-menu-four .main-menu__list>li {
  padding-top: 34px;
  padding-bottom: 34px;
}

.stricky-header.main-menu-four {
  background-color: var(--tecture-white);
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-five {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-five__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header-five__logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.main-header-five__logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tecture-black);
  padding: 48px 75px;
}

.main-menu-five__top {
  position: relative;
  display: block;
  background-color: var(--tecture-black);
}

.main-menu-five__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 9px 375px 9px;
  padding-right: 75px;
}

.main-menu-five__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-five__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-five__contact-list li+li {
  margin-left: 50px;
}

.main-menu-five__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-five__contact-list li .icon i {
  font-size: 16px;
  color: var(--tecture-base);
}

.main-menu-five__contact-list li .text {
  margin-left: 10px;
}

.main-menu-five__contact-list li .text p {
  font-size: 16px;
  color: var(--tecture-white);
}

.main-menu-five__contact-list li .text p a {
  color: var(--tecture-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-five__contact-list li .text p a:hover {
  color: var(--tecture-base);
}

.main-menu-five__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-five__social-box {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-five__social-box:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -30px;
  bottom: -5px;
  width: 1px;
  background-color: rgba(var(--tecture-white-rgb), .20);
}

.main-menu-five__social-box-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.main-menu-five__social-box-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--tecture-white);
  font-family: var(--tecture-font);
}

.main-menu-five__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-five__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--tecture-white);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-five__social a:hover {
  color: var(--tecture-base);
}

.main-menu-five__social a+a {
  margin-left: 25px;
}

.main-menu-five__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-five__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 75px 0;
  padding-left: 375px;
  z-index: 1;
}

.main-menu-five__left {
  position: relative;
  display: block;
}

.main-menu-five__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-five__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-five__search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 10px 0;
}

.main-menu-five__search {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--tecture-black);
  font-size: 21px;
}

.main-menu-five__search:hover {
  color: var(--tecture-base);
}

.stricky-header.main-menu-five {
  background-color: var(--tecture-white);
}

.stricky-header .main-menu-five__wrapper-inner {
  padding: 0 75px 0;
  padding-left: 75px;
}


/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--tecture-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--tecture-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:after {
  background-color: var(--tecture-black);
  border-radius: 0;
}

.search-popup__content .thm-btn:before {
  background-color: var(--tecture-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--tecture-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--tecture-white);
}


/*--------------------------------------------------------------
# End Header Css
--------------------------------------------------------------*/

/*** 
=============================================
    Welcome Style1 
=============================================
***/
.welcome-style1 {
  padding: 120px 0 120px;
}

.welcome-style1 .section-title {
  margin-bottom: 50px;
}

.welcome-style1__content {
  position: relative;
  display: block;
  padding-right: 20px;
}

.welcome-style1__content .title {
  position: relative;
  display: block;
  padding-bottom: 21px;
}

.welcome-style1__content .title h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

.welcome-style1__content .text {
  position: relative;
  display: block;
}

.welcome-style1__content .text p+p {
  margin-top: 21px;
}

.welcome-style1__content .bottom-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 36px;
}

.welcome-style1__content .bottom-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.welcome-style1__content .bottom-box .mail-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 30px;
}

.welcome-style1__content .bottom-box .mail-box h3 {
  font-size: 22px;
  line-height: 28px;
}

.welcome-style1__content .bottom-box .mail-box h3 a {
  color: var(--tecture-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.welcome-style1__content .bottom-box .mail-box h3 a:hover {
  color: var(--tecture-white);
}

.welcome-style1__img {
  position: relative;
  display: block;
  padding-top: 0px;
}

.welcome-style1__img .row {
  --bs-gutter-x: 0px;
}

.welcome-style1__img .img1 {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: -30px;
  z-index: 5;
}

.welcome-style1__img .img1::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tecture-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.welcome-style1__img .img1:hover::before {
  opacity: .50;
}

.welcome-style1__img .img1 img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.welcome-style1__img .img1:hover img {
  transform: scale(1.05) rotate(0deg);
}

.welcome-style1__img .img1 .video-btn {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.welcome-style1__img .img1 .video-btn .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--tecture-base);
  color: var(--tecture-white);
  font-size: 25px;
  line-height: 20px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.welcome-style1__img .img1 .video-btn .video-popup:hover {
  background-color: var(--tecture-white);
  color: var(--tecture-base);
}

.welcome-style1__img .img1 .video-btn .video-popup::before,
.welcome-style1__img .img1 .video-btn .video-popup::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.7);
  -o-box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.7);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.7);
  box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.67);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.welcome-style1__img .img1 .video-btn .video-popup::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.welcome-style1__img .img1 .video-btn .video-popup:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.welcome-style1__img .img2 {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: -94px;
  margin-right: -30px;
}

.welcome-style1__img .img2::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tecture-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.welcome-style1__img .img2:hover::before {
  opacity: .50;
}

.welcome-style1__img .img2 img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.welcome-style1__img .img2:hover img {
  transform: scale(1.05) rotate(0deg);
}

/*** 
=============================================
    Service Style4
=============================================
***/
.service-style4 {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.single-service-style4 {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.single-service-style4 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-service-style4 .img-box::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tecture-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-service-style4:hover .img-box::before {
  opacity: .6;
}

.single-service-style4 .img-box img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.single-service-style4:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-service-style4 .img-box .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(70px);
  transition: all 0.5s ease-in-out 0s;
  z-index: 5;
}

.single-service-style4:hover .img-box .overlay-icon {
  opacity: 1;
  transform: translateY(0px);
}

.single-service-style4 .img-box .overlay-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(0, 0, 0, 0.6);
  color: var(--tecture-white);
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4 .img-box .overlay-icon a:hover {
  color: var(--tecture-white);
  background-color: var(--tecture-base);
}

.single-service-style4 .content-box {
  position: relative;
  display: block;
  padding-top: 22px;
}

.single-service-style4 .content-box h3 {
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.single-service-style4 .content-box h3 a {
  color: var(--tecture-white);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4 .content-box h3 a:hover {
  color: var(--tecture-base);
}

.single-service-style4 .content-box p {
  margin: 0;
}


.service-style4__carousel.owl-theme {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-style4__carousel.owl-theme .owl-nav {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 53px;
}

.service-style4__carousel.owl-theme .owl-nav .owl-next {
  height: 60px;
  width: 60px;
  line-height: 82px;
  border-radius: 0;
  color: var(--tecture-white);
  background-color: var(--tecture-base);
  font-size: 22px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-style4__carousel.owl-theme .owl-nav .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 82px;
  border-radius: 0;
  color: var(--tecture-white);
  background-color: var(--tecture-base);
  font-size: 22px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-style4__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 10px;
}

.service-style4__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 10px;
}

.service-style4__carousel.owl-theme .owl-nav .owl-next span,
.service-style4__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-style4__carousel.owl-theme .owl-nav .owl-next:hover,
.service-style4__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--tecture-white);
  color: var(--tecture-base);
}

.service-style4__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.service-style4_carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.service-style4__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}



/*** 
=============================================
    slogan-one
=============================================
***/
.slogan-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 110px 0px 120px;
  z-index: 10;
  border-bottom: 2px solid var(--tecture-base);
  border-top: 1px solid var(--tecture-base);
}

.slogan-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;

  z-index: -1;
}

.slogan-one__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .9;
  background-color: var(--tecture-black);
}

.slogan-one__content {
  position: relative;
  display: block;
}

.slogan-one__content .title {
  position: relative;
  display: block;
}

.slogan-one__content .title h3 {
  color: var(--tecture-white);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}

.slogan-one__content .title h4 {
  color: var(--tecture-white);
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 25px;
}

.slogan-one__content .title p {
  margin: 0;
}

.slogan-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 53px;
}

.slogan-one__content .btn-box .thm-btn:before {
  width: 51%;
}

.topbar {
  background: linear-gradient(to right, #332c1a, #7d6b33);
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  border-bottom: 1px solid #332c1a;
  color: #ffffff;
  position: relative;
}

.topbar__left {
  margin-left: -160px;
}

.topbar__right {
  margin-right: -160px;
}

.topbar__link,
.topbar__social {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topbar__link:hover,
.topbar__social:hover {
  color: #000000;
}

.topbar__social {
  margin-left: 10px;
  font-size: 14px;
}

.topbar__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #ffffff;
}

.project-two__img a {
  display: block;
}
.project-two__img a img {
  display: block;
  width: 100%;
  height: auto;
}
.thm-btn--alt {
  background: transparent;
  border: 1px solid currentColor;
}
.thm-btn--alt:hover {
  background: #000000;
  color: #fff;
}

/* base alt button */
.main-slider-two .thm-btn.thm-btn--alt {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  transition: background-color .25s, color .25s, border-color .25s;
}

/* force black on hover */
.main-slider-two .thm-btn.thm-btn--alt:hover,
.main-slider-two .thm-btn.thm-btn--alt:focus {
  background-color: #000 !important;
  background-image: none !important;   /* in case the theme uses gradients */
  color: #fff !important;
  border-color: #000 !important;
}

/* if your theme uses a ::before hover overlay, neutralize it */
.main-slider-two .thm-btn.thm-btn--alt::before {
  background: transparent !important;
}
.main-slider-two .thm-btn.thm-btn--alt:hover::before {
  opacity: 0 !important;
}

/* optional: ensure the icon inherits the hover color */
.main-slider-two .thm-btn.thm-btn--alt .icon-up-right-arrow { color: currentColor; }

/* Slider alt button: remove theme overlay that causes half-white hover */
.main-slider-two .thm-btn.thm-btn--alt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent !important;
  background-image: none !important;
  border: 1px solid currentColor;
  color: inherit;
  overflow: hidden; /* just in case the theme animates overlays */
  transition: background-color .25s, color .25s, border-color .25s;
}

/* kill any pseudo overlays */
.main-slider-two .thm-btn.thm-btn--alt::before,
.main-slider-two .thm-btn.thm-btn--alt::after,
.main-slider-two .thm-btn.thm-btn--alt:hover::before,
.main-slider-two .thm-btn.thm-btn--alt:hover::after {
  content: none !important;
  display: none !important;
  background: none !important;
  width: 0 !important;
  transform: none !important;
  opacity: 0 !important;
}

/* force solid black on hover */
.main-slider-two .thm-btn.thm-btn--alt:hover,
.main-slider-two .thm-btn.thm-btn--alt:focus {
  background-color: #000 !important;
  background-image: none !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* ensure the icon follows the text colour */
.main-slider-two .thm-btn.thm-btn--alt .icon-up-right-arrow {
  color: currentColor !important;
  background: transparent !important;
}

/* Frame clips content and each slide can anchor children */
.main-slider-two--framed .main-slider-two__frame{ position:relative; overflow:hidden; }
.main-slider-two--framed .main-slider__carousel .item{ position:relative; }

/* No dark overlay so the image pops */
.hfs-overlay{ display:none !important; }

/* ===== Gold ribbon container across the bottom (transparent) ===== */
:root{ --r-pad: clamp(12px, 1.8vw, 24px); }

.main-slider-two__ribbon{
  position:absolute; z-index:5;
  left:var(--r-pad); right:var(--r-pad); bottom:var(--r-pad);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  pointer-events:none; /* children re-enable */
}

/* Left gold chip sized to its text */
.main-slider-two__ribbon .r-chip{
  pointer-events:auto;
  display:inline-flex; align-items:center; gap:10px;
  padding: clamp(10px, 1.1vw, 14px) clamp(14px, 1.5vw, 22px);
  background: linear-gradient(90deg, rgba(125,107,51,.96) 0%, rgba(180,156,78,.96) 100%);
  border:1px solid #7d6b33; border-radius:12px;
  text-decoration:none; box-shadow:0 10px 28px rgba(0,0,0,.28);
  max-width:min(78%, 880px);
}
.r-chip .r-title{
  color:#fff; font-weight:800; letter-spacing:.06em;
  font-size: clamp(14px, 1.15vw, 18px); line-height:1.25; text-transform:uppercase;
}
.r-chip .r-sub{
  color:rgba(255,255,255,.92); font-weight:600;
  font-size: clamp(12px, .95vw, 16px); line-height:1.2;
}

/* Right circular arrow CTA */
.main-slider-two__ribbon .r-cta{
  pointer-events:auto;
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center;
  background: linear-gradient(90deg, rgba(125,107,51,1) 0%, rgba(180,156,78,1) 100%);
  border:1px solid #7d6b33; text-decoration:none;
  box-shadow:0 10px 28px rgba(0,0,0,.28);
}
.main-slider-two__ribbon .r-cta .icon-up-right-arrow{ color:#fff; font-size:18px; line-height:1; }

/* Subtle hover */
.r-chip:hover, .r-cta:hover{ filter:saturate(1.05) brightness(1.02); }

/* Desktop: let the image breathe (hide old headline/buttons) */
@media (min-width: 992px){
  .main-slider-two__content{ display:none !important; }
}

/* Mobile/tablet: simplify */
@media (max-width: 991.98px){
  .main-slider-two__ribbon{ left:12px; right:12px; bottom:12px; gap:10px; }
  .r-chip{ padding:10px 14px; }
  .r-chip .r-title{ font-size:14px; letter-spacing:.05em; }
  .r-chip .r-sub{ display:none; }
  .r-cta{ width:40px; height:40px; }
  .r-cta .icon-up-right-arrow{ font-size:17px; }
}

/* If space is very tight, hide the circle and keep only the chip */
@media (max-width: 380px){
  .main-slider-two__ribbon .r-cta{ display:none; }
}


/* Sidebar ALT button: clean outline + solid black hover */
.info-sidebar .thm-btn.thm-btn--alt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent !important;
  background-image: none !important;
  border: 1px solid currentColor;
  color: inherit;
  overflow: hidden; /* if theme animates overlays */
  transition: background-color .25s, color .25s, border-color .25s;
}

/* Nuke theme hover overlays that cause split/half backgrounds */
.info-sidebar .thm-btn.thm-btn--alt::before,
.info-sidebar .thm-btn.thm-btn--alt::after,
.info-sidebar .thm-btn.thm-btn--alt:hover::before,
.info-sidebar .thm-btn.thm-btn--alt:hover::after {
  content: none !important;
  display: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  transform: none !important;
}

/* Force solid black on hover */
.info-sidebar .thm-btn.thm-btn--alt:hover,
.info-sidebar .thm-btn.thm-btn--alt:focus {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #000000 !important;
  border-color: #7d6b33 !important;
}

/* Ensure the icon follows the text colour */
.info-sidebar .thm-btn.thm-btn--alt .icon-up-right-arrow {
  color: currentColor !important;
  background: transparent !important;
}

/* Base: icon sizing and alignment */
.main-menu__list > li > a,
.main-menu__list li ul li > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-icon {
  display: inline-block;
  width: 20px;           /* requested size */
  height: 20px;
  object-fit: contain;
}

/* Submenu icons a bit smaller for visual balance (optional) */
.menu-icon--sub {
  width: 24px;
  height: 24px;
}

/* Caret arrows for dropdown triggers */
.main-menu__list li.dropdown > a .menu-caret {
  margin-left: 8px;
  font-size: 0.9em;
  line-height: 1;
  opacity: 0.8;
}

/* Align nested dropdown caret (Venetian) neatly */
.main-menu__list li.dropdown ul li.dropdown > a .menu-caret {
  margin-left: 6px;
}

/* Optional: subtle hover cue on caret */
.main-menu__list li.dropdown > a:hover .menu-caret,
.main-menu__list li.dropdown ul li.dropdown > a:hover .menu-caret {
  opacity: 1;
}

/* Make sure icons don't stretch the menu height */
.main-menu-two .main-menu__list > li > a .menu-text { line-height: 1.3; }

/* If your theme adds underline on links, remove for icons */
.main-menu__list img.menu-icon { vertical-align: middle; }

.thm-btn--alt:hover,
.thm-btn--alt:hover span {
    color: #000 !important;
}

/* reset the anchor so it doesn’t generate the circle */
.main-menu-two__nav-sidebar-icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  background: none;
  height: auto;
  width: auto;
  padding: 0;
}

/* hover state applies to both icon and text */
.main-menu-two__nav-sidebar-icon a:hover .navSidebar-icon {
  background-color: var(--tecture-black);
  border-color: var(--tecture-black);
}
.main-menu-two__nav-sidebar-icon a:hover .navSidebar-text {
  color: var(--tecture-black);
}

/* the actual emblem circle */
.navSidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid var(--tecture-white);
  border-radius: 50%;
  overflow: hidden;
}

.navSidebar-icon img {
  max-width: 60%;
  height: auto;
}

/* stacked text beside it */
.navSidebar-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.2;
  color: var(--tecture-white);
}

/* remove background from the anchor hover */
.main-menu-two__nav-sidebar-icon a:hover {
  background: none;
  border: none;
  color: inherit;
}

/* make the whole box turn gold on hover */
.main-menu-two__search-and-nav-sidebar-icon:hover {
  background-color: #7d6b33; /* gold */
}

/* adjust text & icon colors for contrast on gold */
.main-menu-two__search-and-nav-sidebar-icon:hover .navSidebar-text {
  color: #000;
}

.main-menu-two__search-and-nav-sidebar-icon:hover .navSidebar-icon {
  border-color: #000;
  background-color: #fff; /* optional: white circle fill, keeps emblem visible */
}

.main-menu-two__search-and-nav-sidebar-icon:hover .navSidebar-icon img {
  filter: invert(0); /* adjust if your logo/emblem is light and needs contrast */
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* =========================
   ATOC – Nav tweaks (hover + logo size)
   ========================= */

/* Base + sticky: keep menu titles white (normal, hover, current) */
.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--tecture-white) !important;
}
.main-menu-two .main-menu__list > li:hover > a,
.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a {
  color: var(--tecture-white) !important;
}

/* If you want to be extra explicit for the inner span */
.main-menu-two .main-menu__list > li > a .menu-text {
  color: var(--tecture-white) !important;
}

/* Keep the dropdown chevron white as well */
.main-menu-two .main-menu__list > li.dropdown > a:after,
.main-menu-two .main-menu__list > li:hover > a:after,
.main-menu-two .main-menu__list > li.current > a:after,
.stricky-header.main-menu-two .main-menu__list > li.dropdown > a:after,
.stricky-header.main-menu-two .main-menu__list > li:hover > a:after,
.stricky-header.main-menu-two .main-menu__list > li.current > a:after {
  color: var(--tecture-white) !important;
}

/* Enlarge logo and reduce menu item vertical padding */
.main-menu-two__logo { padding: 100; } /* remove extra vertical padding */
.main-menu-two__logo img {
  height: 120px;      /* tweak to taste (72–84px typically works) */
  width: auto;
  display: block;
}

@media (max-width: 1399.98px) {
  .main-menu-two__logo img { height: 80px; }
}

/* Tighten menu items so overall header height stays reasonable */
.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
  padding-top: 26px;   /* was 47px */
  padding-bottom: 26px;
}

/* Optional: if the gold hover block looks too tall after padding change,
   you can slightly reduce its height to keep the visual weight balanced */
.main-menu-two .main-menu__list > li > a::before,
.stricky-header.main-menu-two .main-menu__list > li > a::before {
  height: 30px; /* was 33px; adjust if needed */
}

/* =========================
   ATOC – Dropdown hover contrast
   ========================= */

/* Default submenu links: keep text black */
.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  color: var(--tecture-black) !important;
}

/* Hover/active: faint gold background, text stays black */
.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li:focus-within > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:focus-within > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:focus-within > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:focus-within > a {
  background-color: rgba(var(--tecture-base-rgb), 0.12) !important; /* soft gold */
  color: var(--tecture-black) !important; /* keep text black */
  padding-left: 25px; /* preserve your nudge */
}

/* If you wrap text in .menu-text, force that to stay black too */
.main-menu .main-menu__list > li > ul > li > a .menu-text,
.main-menu .main-menu__list > li > ul > li > ul > li > a .menu-text {
  color: var(--tecture-black) !important;
}

/* Optional: give hover box a subtle rounding to read as a “box” */
.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a {
  border-radius: 6px;
}

/* ATOC – Bigger top-level nav titles */
.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  font-size: 20px;            /* was 18px */
  line-height: 1.1;
}

/* If titles are wrapped in <span class="menu-text"> keep it in sync */
.main-menu-two .main-menu__list > li > a .menu-text { font-size: inherit; }

/* Match the dropdown chevron size to the bigger titles */
.main-menu-two .main-menu__list > li.dropdown > a:after,
.stricky-header.main-menu-two .main-menu__list > li.dropdown > a:after {
  font-size: 16px;            /* was 14px */
}

/* Optional responsive scaling */
@media (min-width: 1400px) {
  .main-menu-two .main-menu__list > li > a,
  .stricky-header.main-menu-two .main-menu__list > li > a {
    font-size: 22px;
  }
}
@media (max-width: 1299.98px) {
  .main-menu-two .main-menu__list > li > a,
  .stricky-header.main-menu-two .main-menu__list > li > a {
    font-size: 18px;          /* tighter on smaller desktops/tablets */
  }
}

/* If the gold hover block looks short after upsizing, nudge its height */
.main-menu-two .main-menu__list > li > a::before,
.stricky-header.main-menu-two .main-menu__list > li > a::before {
  height: 34px;               /* try 32–36px until it fully covers the text */
}

/* ATOC – Feature strip (Shutters + Motorised) */
.feature-wide {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
}

.feature-wide__media {
  margin: 0;
  aspect-ratio: 21 / 9;       /* narrow landscape */
  overflow: hidden;
}

.feature-wide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease, opacity .5s ease;
  opacity: .95;
}

.feature-wide__caption {
  position: absolute;
  left: 38px;
  bottom: 30px;
  right: 18px;
  color: var(--tecture-white);
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

.feature-wide__eyebrow {
  display: inline-block;
  font: 600 12px/1 var(--tecture-font-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(var(--tecture-base-rgb), .3);
  border: 1px solid rgba(var(--tecture-base-rgb), .6);
  border-radius: 4px;
  margin-bottom: 6px;
}

.feature-wide__title {
  font-size: 24px;
  line-height: 1.1;
  margin: 6px 0 0;
  color: #fff;
}

.feature-wide:hover .feature-wide__img {
  transform: scale(1.06);
  opacity: 1;
}

/* ATOC – Feature strip adjustments (no radius, aligned gutters, white frame) */

/* 1) Match the container gutters above (your site sets 30px) */
.project-two__features .row {
  --bs-gutter-x: 30px; /* overrides g-4 so edges align perfectly */
}

/* 2) Remove all rounding */
.feature-wide,
.feature-wide__media,
.feature-wide__img {
  border-radius: 0 !important;
}

/* 3) Thick white border around the images */
.feature-wide__media {
  border: 10px solid #fff;   /* adjust to 8–14px to taste */
  background: #000;          /* safety backdrop */
}

/* Keep the narrow landscape look */
.feature-wide__media { aspect-ratio: 21 / 9; }

/* 4) Preserve tidy scaling on hover (no clipping) */
.feature-wide { overflow: visible; }
.feature-wide__img { transform: scale(1.02); transition: transform .5s ease, opacity .5s ease; }
.feature-wide:hover .feature-wide__img { transform: scale(1.06); }

/* 5) Optional: reduce the border slightly on small screens */
@media (max-width: 575.98px) {
  .feature-wide__media { border-width: 8px; }
}

/* If your design needs the white frame to wrap the entire tile (image + caption),
   use this instead of the media border:
.feature-wide {
  border: 10px solid #fff;
}
*/
/* ATOC – Project Two refinements (width, flush top, square edges, white frame, shadow) */

/* +200px wider than your global 1400px container (only for this section) */
@media (min-width: 1400px) {
  .project-two--wide .container { max-width: 1600px; }
}

/* Remove any angled cut/arrow decoration, make text area flush with the carousel */
.project-two .section-shape-1 { display: none !important; } /* kill the angled overlay image */
.project-two__top { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.project-two__bottom { padding-top: 0 !important; margin-top: 0 !important; }

/* Safety: nuke common pseudo “angle/arrow” accents in this block only */
.project-two .section-title::before,
.project-two .section-title::after,
.project-two .sec-title-animation::before,
.project-two .sec-title-animation::after {
  content: none !important;
  display: none !important;
}

/* Align gutters with the carousel block above */
.project-two__features .row { --bs-gutter-x: 30px; }

/* Square edges everywhere in this strip */
.feature-wide,
.feature-wide__media,
.feature-wide__img { border-radius: 0 !important; }

/* Thick white frame and subtle shadow on the feature-strip images */
.feature-wide__media {
  border: 12px solid #fff;                 /* thick white outline */
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,.18); /* faint drop shadow */
  aspect-ratio: 21 / 9;                    /* narrow landscape */
}
@media (max-width: 575.98px) {
  .feature-wide__media { border-width: 10px; }
}

/* Keep hover tidy (no clipping of the shadow) */
.feature-wide { overflow: visible; }
.feature-wide__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease, opacity .5s ease;
  opacity: .95;
}
.feature-wide:hover .feature-wide__img { transform: scale(1.06); opacity: 1; }

/* Apply the same white frame + shadow to all carousel images above */
.project-two__single,
.project-two__img { border-radius: 0 !important; overflow: visible; }

.project-two__img {
  border: 12px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.project-two__img img { display: block; width: 100%; height: auto; }

/* If Owl adds its own rounding on items/stage, flatten it too */
.project-two .owl-stage-outer,
.project-two .owl-item { border-radius: 0 !important; overflow: visible; }

/* ATOC – Card polish: white bars + tidy gold outline */

/* 1) Content bars: force pure white, no overlays, stay flush */
.project-two__content{
  background:#fff !important;            /* kill the light grey */
  background-image:none !important;      /* in case anything sneaks in */
  opacity:1 !important;
  margin:0 !important;
  padding:12px 22px !important;
  border:0 !important;
}
.project-two__content::before,
.project-two__content::after{
  content:none !important;               /* remove any decorative overlays */
}

/* Title stays black on white */
.project-two__title,
.project-two__title a{ color:var(--tecture-black) !important; }

/* 2) Arrow badge – smaller + balanced */
.project-two__arrow a{
  height:40px;
  width:40px;
  font-size:14px;        /* icon size */
  line-height:1;
}
@media (max-width:575.98px){
  .project-two__arrow a{ height:36px; width:36px; font-size:13px; }
}

/* 3) Gold offset outline behind each framed image */
:root{
  --atoc-outline: 1px;                /* line thickness */
  --atoc-outline-offset: 18px;        /* distance from image frame */
  --atoc-outline-alpha: .6;           /* visibility of the gold */
}

/* make sure the image can show the outline behind it */
.project-two__single{ position:relative; overflow:visible; }
.project-two__img{ position:relative; z-index:1; }

/* draw the gold rectangle offset around the image (behind it) */
.project-two__img::after{
  content:"";
  position:absolute;
  z-index:0;
  top:calc(-1 * var(--atoc-outline-offset));
  left:calc(-1 * var(--atoc-outline-offset));
  right:calc(-1 * var(--atoc-outline-offset));
  bottom:calc(-1 * var(--atoc-outline-offset));
  border:var(--atoc-outline) solid rgba(var(--tecture-base-rgb), var(--atoc-outline-alpha));
  pointer-events:none;
}

/* keep the white frame + shadow on the image itself */
.project-two__img{
  border:12px solid #fff;
  box-shadow:0 12px 40px rgba(0,0,0,.18);
  box-sizing:border-box;
  border-radius:0 !important;
}

/* tighten outline on small screens so it doesn't crowd the grid */
@media (max-width:991.98px){
  :root{ --atoc-outline-offset: 14px; }
}
@media (max-width:575.98px){
  :root{ --atoc-outline-offset: 10px; }
}

  :root{
    /* tweak if you want to nudge closer to your brand gold */
    --atoc-gold-dark:#6f5d29;
    --atoc-gold:#7d6b33;
    --atoc-gold-light:#6f5d29;
    --atoc-gold-verylight:#7d6b33;
  }

  .trust-strip{
    position:relative;
    color:#fff;
    /* metallic gold gradient */
    background:
      linear-gradient(
        180deg,
        var(--atoc-gold-dark) 0%,
        var(--atoc-gold) 18%,
        var(--atoc-gold-light) 38%,
        var(--atoc-gold-verylight) 50%,
        var(--atoc-gold-light) 62%,
        var(--atoc-gold) 82%,
        var(--atoc-gold-dark) 100%
      );
    /* subtle inset sheen for depth */
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      inset 0 -1px 0 rgba(0,0,0,.25);
  }

  /* diagonal glossy pass */
  .trust-strip::before{
    content:"";
    position:absolute; inset:0;
    background:
      linear-gradient(135deg,
        rgba(255,255,255,.22) 0%,
        rgba(255,255,255,0) 35%,
        rgba(255,255,255,0) 65%,
        rgba(255,255,255,.15) 100%);
    pointer-events:none;
  }

  .trust-strip .container{padding-top:16px;padding-bottom:16px}
  .trust-list{display:flex;align-items:center;gap:24px;margin:0;padding:0;list-style:none}

  .trust-item{display:flex;align-items:center;gap:12px;flex:1;min-width:0;color:#fff}
  .trust-item + .trust-item{border-left:1px solid rgba(255,255,255,.45);padding-left:24px}

  .trust-icon{width:26px;height:26px;flex:0 0 26px;display:inline-flex}
  /* SVGs use fill="currentColor", so they inherit white from .trust-item */

  .trust-title{font-weight:700;font-size:16px;line-height:1.2;letter-spacing:.01em;color:#fff}

  @media (max-width: 991px){
    .trust-list{flex-wrap:wrap}
    .trust-item{flex:1 1 calc(50% - 12px)}
    .trust-item + .trust-item{
      border-left:none;padding-left:0;
      border-top:1px solid rgba(255,255,255,.35);
      padding-top:12px;margin-top:12px
    }
  }
  @media (max-width: 575px){
    .trust-item{flex:1 1 100%}
  }

/* ========= ATOC Framed Hero — single source of truth ========= */
.main-slider-two--framed{
  /* Tunables */
  --hfs-height: 640px;                 /* hero frame height */
  --hfs-gap: 80px;                     /* outer space above & below the frame */
  --hfs-pad-left: clamp(48px,8vw,120px);
  --hfs-pad-right: clamp(16px,6vw,80px);
  --hfs-pad-bottom: clamp(28px,5vw,64px);

  /* Gradient controls (tweak these) */
  --hfs-grad-height: 60%;              /* how tall the gradient is */
  --hfs-grad-opacity: 0.9;             /* bottom opacity (0–1) */

  background:#000;
  position:relative;
  padding:var(--hfs-gap) 0;
}

/* Left gold slat sidebar (kept) */
.main-slider-two--framed .section-shape-4{
  position:absolute; left:0; top:0; bottom:0; width:56px; z-index:1;
  background-repeat:no-repeat; background-position:left top; background-size:cover;
  pointer-events:none;
}

/* Pattern overlay above black background, behind the frame */
.main-slider-two--framed .hfs-overlay{
  position:absolute; inset:0; z-index:0;
  background-image:url(../images/shapes/hero-overlay.png);
  background-repeat:repeat; background-position:center; background-size:auto;
  opacity:.35; pointer-events:none;
}

/* Frame with white border */
.main-slider-two__frame{
  position:relative; z-index:2;
  height:var(--hfs-height); min-height:var(--hfs-height);
  border:12px solid #fff; border-radius:0; overflow:hidden; background:transparent;
}

/* INNER shadow (inside the border) – above image, below text */
.main-slider-two__frame::before{
  content:""; position:absolute; inset:0;
  box-shadow: inset 0 0 5px rgba(0,0,0,.3);
  z-index:10; pointer-events:none;
}

/* Bottom gradient for readability – above image, below text */
.main-slider-two__frame::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:var(--hfs-grad-height);
  /* use vars so you can tune the strength/height quickly */
  background: linear-gradient(to top, rgba(0,0,0,var(--hfs-grad-opacity)), rgba(0,0,0,0));
  z-index:0; pointer-events:none;
}

/* Make Owl honor the frame height */
.main-slider__carousel,
.main-slider__carousel .owl-stage-outer,
.main-slider__carousel .owl-stage,
.main-slider__carousel .owl-item{ height:100%; }
.main-slider__carousel .item{ position:relative; height:100%; }

/* Image layer (lowest) */
.main-slider-two__bg{ position:absolute; inset:0; z-index:1; }
.main-slider-two__bg .bg-image{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  transform:scale(1); transition:transform 6.5s ease-out;
  will-change:transform;
}
.main-slider__carousel .owl-item.active .bg-image{ transform:scale(1.07); }

/* Copy pinned bottom-left (TOPMOST) */
.main-slider-two__content{
  position:absolute; z-index:30 !important;  /* ensure above gradient & any theme styles */
  top:auto !important;
  left:var(--hfs-pad-left); right:var(--hfs-pad-right); bottom:var(--hfs-pad-bottom);
  text-align:left; color:#fff; text-shadow:0 2px 14px rgba(0,0,0,.35);
}
.main-slider-two__title{
  font-size:clamp(26px,4.2vw,56px); line-height:1.06;
  margin:0 0 10px; opacity:0; transform:translateY(18px);
}
.main-slider-two__text{
  font-size:clamp(14px,1.1vw,18px); margin:0 0 14px;
  opacity:0; transform:translateY(18px);
}
.main-slider-two__btn-box{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-start;
  opacity:0; transform:translateY(18px);
}

/* Staggered entrance */
.main-slider__carousel .owl-item.active .main-slider-two__title{ animation:hfs-rise .75s cubic-bezier(.2,.8,.2,1) .15s forwards; }
.main-slider__carousel .owl-item.active .main-slider-two__text { animation:hfs-rise .75s cubic-bezier(.2,.8,.2,1) .30s forwards; }
.main-slider__carousel .owl-item.active .main-slider-two__btn-box{ animation:hfs-rise .75s cubic-bezier(.2,.8,.2,1) .45s forwards; }
@keyframes hfs-rise{ to{ opacity:1; transform:none; } }

/* Remove dots (we already have nav on the right) */
.main-slider-two__frame .owl-dots{ display:none !important; }

/* Responsive tuning */
@media (max-width: 1200px){
  .main-slider-two--framed{ --hfs-height:600px; }
}
@media (max-width: 992px){
  .main-slider-two--framed{ --hfs-height:560px; --hfs-gap:40px; }
}
@media (max-width: 576px){
  .main-slider-two--framed{
    --hfs-height:460px; --hfs-gap:32px;
    --hfs-pad-left:24px; --hfs-pad-right:16px; --hfs-pad-bottom:24px;
    --hfs-grad-height: 55%;
    --hfs-grad-opacity: 0.85;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .main-slider__carousel .owl-item.active .bg-image{ transform:none !important; transition:none !important; }
  .main-slider-two__title,.main-slider-two__text,.main-slider-two__btn-box{
    animation:none !important; opacity:1 !important; transform:none !important;
  }
}

/* Video behaves like background image but with NO grow */
.main-slider-two__bg .bg-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  transform:none !important; transition:none !important;
  pointer-events:none;
}

/* === ATOC Strapline (unique classes) === */
/* Uses your heading font if you've set --heading-font globally */
.atoc-strap{
  /* make it full-bleed even inside a .container */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  /* bar styling */
  background: linear-gradient(90deg, #554b2a 0%, #9b874e 50%, #554b2a 100%);
  /* if you have a brand gold var, uncomment the next line and delete the line above */
  /* background: linear-gradient(90deg, var(--brand-gold-dark,#6f5717), var(--brand-gold,#b99738), var(--brand-gold-light,#f1d888)); */
}

.atoc-strap__text{
  font-family: var(--heading-font, "minion-pro", serif);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: clamp(12px, 2.2vw, 22px) clamp(16px, 4vw, 28px);
  margin: 0;
  /* pop over the gold bar */
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  /* prevent accidental wrap gaps on very long displays */
  white-space: normal;
}

/* Optional: slightly smaller on narrow mobiles */
@media (max-width: 420px){
  .atoc-strap__text{ letter-spacing: .04em; }
}

/* Strapline: responsive sizing and tracking */
.atoc-strap__text{
  /* desktop top size stays the same, scales down on smaller screens */
  font-size: clamp(18px, 2.6vw, 34px);
  letter-spacing: clamp(.04em, .08vw, .10em);
  line-height: 1.1;
}

/* Tablets and down: a touch tighter padding */
@media (max-width: 991.98px){
  .atoc-strap__text{
    padding: clamp(10px, 2vw, 18px) clamp(14px, 3.2vw, 24px);
  }
}

/* Small phones: ease tracking and shadow for clarity */
@media (max-width: 575.98px){
  .atoc-strap__text{
    letter-spacing: .045em;
    text-shadow: 0 1px 6px rgba(0,0,0,.45);
  }
}

/* Very small devices */
@media (max-width: 380px){
  .atoc-strap__text{
    font-size: clamp(16px, 6vw, 20px);
    letter-spacing: .04em;
  }
}

/* ===== Media Hero (single video, framed) ===== */
.media-hero--framed{
  /* Tunables */
  --mh-height: 640px;                 /* frame height */
  --mh-gap: 80px;                     /* space above/below the frame */
  --mh-pad-left: clamp(36px,7vw,120px);
  --mh-pad-right: clamp(16px,5vw,64px);
  --mh-pad-bottom: clamp(22px,5vw,56px);

  /* gradient controls behind text (tweak as needed) */
  --mh-grad-height: 60%;
  --mh-grad-opacity: 0.9;

  background:#000;
  position:relative;
  padding:var(--mh-gap) 0;
}

/* subtle pattern overlay above black background, behind frame */
.media-hero__overlay{
  position:absolute; inset:0; z-index:0;
  background-image:url(assets/images/patterns/hero-overlay.png);
  background-repeat:repeat; background-position:center; background-size:auto;
  opacity:.35; pointer-events:none;
}

/* white frame with square corners */
.media-hero__frame{
  position:relative; z-index:2;
  height:var(--mh-height); min-height:var(--mh-height);
  border:12px solid #fff; border-radius:0; overflow:hidden; background:transparent;
}

/* inner shadow + bottom gradient (both sit above media, below text) */
.media-hero__frame::before{
  content:""; position:absolute; inset:0; z-index:10; pointer-events:none;
  box-shadow: inset 0 0 5px rgba(0,0,0,.3);
}
.media-hero__frame::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:var(--mh-grad-height);
  background: linear-gradient(to top, rgba(0,0,0,var(--mh-grad-opacity)), rgba(0,0,0,0));
  z-index:11; pointer-events:none;
}

/* media layer (video fills the frame height) */
.media-hero__bg{ position:absolute; inset:0; z-index:1; }
.media-hero__video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  transform:none !important; transition:none !important;
  pointer-events:none;
}

/* content: small title, bottom-left, above overlays */
.media-hero__content{
  position:absolute; z-index:30 !important; top:auto !important;
  left:var(--mh-pad-left); right:var(--mh-pad-right); bottom:var(--mh-pad-bottom);
  text-align:left; color:#fff; text-shadow:0 2px 14px rgba(0,0,0,.35);
}
.media-hero__title{
  font-family: var(--heading-font, inherit);
  font-weight: 700;
  font-size: clamp(22px, 3.8vw, 42px);
  line-height: 1.06;
  margin: 0;
  letter-spacing: .02em;
}

/* responsive tweaks */
@media (max-width: 1200px){
  .media-hero--framed{ --mh-height:600px; }
}
@media (max-width: 992px){
  .media-hero--framed{ --mh-height:540px; --mh-gap:48px; }
}
@media (max-width: 576px){
  .media-hero--framed{
    --mh-height:440px; --mh-gap:32px;
    --mh-pad-left:24px; --mh-pad-right:16px; --mh-pad-bottom:20px;
    --mh-grad-height: 55%;
    --mh-grad-opacity: 0.85;
  }
}

/* reduced motion safety */
@media (prefers-reduced-motion: reduce){
  .media-hero__video{ transition:none !important; }
}


  /* Framed video with centred, slightly smaller video under a full-size PNG overlay */
  .framed-video{position:relative; display:block; width:100%;
    /* adjust this to change the gap between video edge and overlay edge */
    --video-inset: 16px;
  }
  /* The overlay image sets the height of the figure and sits above the video */
  .framed-video__overlay{
    position:relative; z-index:2; display:block; width:100%; height:auto; pointer-events:none;
  }
  /* Centre the video and make it slightly smaller than the overlay */
  .framed-video > video{
    position:absolute; z-index:1; top:50%; left:50%; transform:translate(-50%,-50%);
    width:calc(100% - (var(--video-inset) * 2));
    height:calc(100% - (var(--video-inset) * 2));
    object-fit:cover; border:0; display:block;
  }
  @media (prefers-reduced-motion: reduce){ .framed-video > video{animation:none;} }
  .visually-hidden{position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap;}

  /* ===== ATOC responsive foundation (safe, light) ===== */

/* Media always fluid */
.about-two img,
.about-two video{max-width:100%;height:auto;display:block}

/* Sensible gaps and no odd offsets inside about-two variants */
.about-two .row{row-gap:24px}
.about-two__left,
.about-two__right{margin:0 !important}

/* Headings scale down cleanly */
@media (max-width: 991.98px){
  .about-two .section-title__title{font-size:26px;line-height:1.3}
}
@media (max-width: 575.98px){
  .about-two .section-title__title{font-size:22px}
  .about-two__btn{padding:12px 20px}
}

/* Two-column sections stack to one column under lg */
@media (max-width: 991.98px){
  .about-two .row > [class*="col-"]{width:100%}
}

/* Framed videos or images keep aspect without overflow */
.about-two__img{position:relative;overflow:hidden;border-radius:10px}
.about-two__img img,
.about-two__img video{object-fit:cover}

/* === ATOC Topbar fixes (desktop + responsive) === */

/* Let height grow naturally and add a little breathing room */
.topbar{
  height: auto;
  line-height: 1.2;
  padding: 6px 0;
}

/* Use flex from your HTML and remove theme offsets */
.topbar__left,
.topbar__right{ margin: 0 !important; }

/* Centre block joins the flex row (no absolute) + bigger letter spacing */
.topbar__center{
  position: static !important;
  transform: none !important;
  white-space: nowrap;
  letter-spacing: .12em;         /* character spacing up */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

/* Links and socials: modest tracking so they read cleanly */
.topbar__link{ letter-spacing: .06em; font-weight: 600; font-size: 12px; }
.topbar__social{ letter-spacing: .04em; }

/* Keep socials visible and aligned */
.topbar__right{ display: flex; align-items: center; gap: 10px; }

/* === Tablet and down: wrap gracefully === */
@media (max-width: 991.98px){
  .topbar .container{ flex-wrap: wrap; gap: 6px 12px; }
  .topbar__left, .topbar__right{ flex: 1 1 auto; }
  .topbar__center{
    order: 2;                     /* tagline drops to its own line */
    flex: 1 0 100%;
    text-align: center;
    margin-top: 2px;
    letter-spacing: .10em;
  }
}

/* === Small phones: tighten type, keep icons, optionally hide email link === */
@media (max-width: 575.98px){
  .topbar__link{ font-size: 11px; letter-spacing: .05em; }
  .topbar__center{ font-size: 11px; letter-spacing: .08em; }
  .topbar__right .topbar__social{ font-size: 13px; }
  /* Optional: comment this out if you want to keep the email visible */
  .topbar__left a[href^="mailto:"]{ display: none; }
}

/* === ATOC topbar: centre-only layout below 992px === */
@media (max-width: 991.98px){
  .topbar .container{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:0 !important;
  }

  /* drop phone/email and socials */
  .topbar__left,
  .topbar__right{
    display:none !important;
  }

  /* tagline centred, larger, with wider tracking */
  .topbar__center{
    position:static !important;     /* kill absolute centring from theme */
    transform:none !important;
    margin:0 auto !important;
    text-align:center !important;
    width:100%;
    max-width:100%;
    font-size:13px;                 /* a touch bigger */
    letter-spacing:.16em;           /* wider character spacing */
    line-height:1.3;
    white-space:normal;             /* allow graceful wrap */
    text-transform:uppercase;
    font-weight:700;
    padding:0px 0px;
  }
}

/* tiny phones: ease tracking a bit for readability */
@media (max-width: 420px){
  .topbar__center{
    font-size:13px;
    letter-spacing:.12em;
  }
}

/* ===== ATOC header/nav fixes ===== */

/* 0) Put the left gold strip behind, not over the logo */
.main-header-two .section-shape-4{
  z-index: 0 !important;      /* was 2 */
  left: -40px !important;      /* tuck it further left so it never touches the logo */
  pointer-events: none;
}
.main-header-two .main-menu-two__wrapper-inner{ z-index: 3 !important; } /* keep header above */

/* 1) Fluid padding + no wrapping pressure on the right cluster */
.main-header-two .main-menu-two__wrapper-inner{
  padding: 0 clamp(24px, 4.5vw, 100px) 0 !important; /* breathe as width shrinks */
}
.main-header-two .main-menu-two__right{
  gap: clamp(28px, 4vw, 80px) !important;            /* was 130px – too large at wide widths */
  flex-wrap: nowrap !important;                      /* keep it on one line */
}

/* 2) Start the compact layout early (<=1835px) */
@media (max-width: 1835px){
  /* hide the round “Get In Touch” box earlier so the menu never wraps */
  .main-header-two .main-menu-two__search-and-nav-sidebar-icon{ display:none !important; }

  /* tighten item spacing and scale titles a touch */
  .main-header-two .main-menu__list > li + li{ margin-left: 18px !important; }
  .main-header-two .main-menu__list > li > a{
    font-size: clamp(17px, 1.05vw, 20px) !important;
    padding-left: 6px; padding-right: 6px;
    white-space: nowrap;
  }

  /* reduce tall vertical padding so the bar doesn’t “grow” when it reflows */
  .main-header-two .main-menu__list > li{
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  /* shrink logo slightly so the line holds */
  .main-header-two .main-menu-two__logo img{
    height: clamp(84px, 6vw, 110px) !important;
    width: auto;
    display:block;
  }
}

/* 3) Tighter again as we approach the 1400 band (no sudden jump) */
@media (max-width: 1500px){
  .main-header-two .main-menu__list > li + li{ margin-left: 16px !important; }
  .main-header-two .main-menu__list > li > a{ font-size: 18px !important; }
  .main-header-two .main-menu-two__logo img{ height: 80px !important; }
}

/* 4) Keep sticky header on mobile (theme hides it by default) */
@media (max-width: 1199.98px){
  .stricky-header{ display:block !important; }                /* re-enable */
  .stricky-header.main-menu{ background:#000 !important; }    /* match desktop sticky colour */
  .stricky-header .main-menu__list > li{ padding-top: 18px; padding-bottom: 18px; }
}

/* 5) Safety: ensure desktop menu stays flex above 1200 (theme toggles this) */
@media (min-width: 1200px){
  .main-menu .main-menu__list,
  .stricky-header .main-menu__list{ display:flex !important; }
}

/* ===== ATOC mobile menu – full screen, big logo, tidy socials, clean close ===== */
@media (max-width: 1199.98px){

  /* Make the overlay and drawer fill the viewport */
  .mobile-nav__wrapper{
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10000 !important;
  }
  .mobile-nav__overlay{
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,.6) !important;
  }
  .mobile-nav__content{
    position: fixed !important;
    inset: 0 !important;                  /* full screen drawer */
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    background: #000 !important;
    color: #fff !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 22px 22px 26px !important;
  }

  /* Big brand logo (your markup uses .logo-box) */
  .mobile-nav__content .logo-box img{
    height: 65px !important;             /* increase here if you want it larger */
    width: auto !important;
    display: block !important;
  }
  .mobile-nav__content .logo-box{ margin: 0 0 12px !important; }

  /* Close button: X in a circle, no white square */
  .mobile-nav__close{
    position: absolute !important; top: 14px !important; right: 14px !important;
    width: 44px !important; height: 44px !important;
    background: transparent !important; border: 2px solid #fff !important; border-radius: 50% !important;
    display: grid !important; place-items: center !important;
  }
  .mobile-nav__close i,
  .mobile-nav__close svg{ display: none !important; }
  .mobile-nav__close::before,
  .mobile-nav__close::after{
    content: "" !important;
    position: absolute !important;
    width: 20px !important; height: 2px !important; background: #fff !important;
  }
  .mobile-nav__close::before{ transform: rotate(45deg); }
  .mobile-nav__close::after{  transform: rotate(-45deg); }

  /* Menu items spacing */
  .mobile-nav__content .main-menu__list > li{ margin: 0 0 4px !important; }
  .mobile-nav__content .main-menu__list > li > a{
    padding: 12px 6px !important;
    font-size: 16px !important; line-height: 1.25 !important;
  }

  /* CTA block and contact */
  .mobile-nav__cta,
  .mobile-nav__contact{ margin-top: 14px !important; }

  /* Socials: bigger, spaced, not tucked under the CTA */
  .mobile-nav__top{ margin-top: 12px !important; }
  .mobile-nav__social{
    display: flex !important; flex-wrap: wrap !important;
    gap: 10px 12px !important; margin-top: 6px !important; padding-bottom: 6px !important;
  }
  .mobile-nav__social a{
    width: 44px !important; height: 44px !important;
    display: grid !important; place-items: center !important;
    border: 1px solid #7d6b33 !important; border-radius: 50% !important;
    font-size: 18px !important; color: #fff !important;
  }
  .mobile-nav__social a:hover{ background:#7d6b33 !important; color:#000 !important; }
}

/* ===== ATOC mobile header tidy (logo + burger on one row) ===== */
@media (max-width: 991.98px){
  /* Use a simple two-item row */
  .main-header-two .main-menu-two__wrapper-inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding:8px 12px !important;            /* pulls logo slightly left */
    gap:10px !important;
  }

  /* Logo sizing */
  .main-header-two .main-menu-two__logo{ margin-left:0 !important; }
  .main-header-two .main-menu-two__logo img{
    height:65px !important;                 /* adjust 44–56px to taste */
    width:auto !important;
    display:block !important;
  }

  /* Hide desktop nav; show only burger */
  .main-header-two .main-menu__list{ display:none !important; }
  .main-header-two .main-menu-two__main-menu-box{
    display:flex !important; align-items:center !important;
  }

  /* Burger button styling and size */
  .main-header-two .mobile-nav__toggler{
    display:inline-flex !important;
    width:42px; height:42px;
    align-items:center; justify-content:center;
    border:1px solid #7d6b33; border-radius:50%;
    color:#fff !important;
  }
  .main-header-two .mobile-nav__toggler i{ font-size:18px; line-height:1; }

  /* Remove the decorative left strip on phones so it never clips the logo */
  .main-header-two .section-shape-4{ display:none !important; }
}

/* Sticky header version (same sizing when it snaps) */
@media (max-width: 1199.98px){
  .stricky-header .main-menu-two__wrapper-inner{
    padding:6px 12px !important;
  }
  .stricky-header .main-menu-two__logo img{
    height:44px !important; width:auto !important;
  }
  .stricky-header .mobile-nav__toggler{
    width:40px; height:40px;
  }
}


/* Stop the heading's own animation on mobile/tablet; keep the column's WOW */
@media (max-width: 991.98px){
  .section-title__title.title-animation,
  .section-title .title-animation,
  .section-title.sec-title-animation .title-animation,
  .section-title.animation-style2 .title-animation{
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Kill mobile gaps caused by <br> in headings */
@media (max-width: 991.98px){
  .section-title__title br{ display:none !important; }
  .section-title__title{
    line-height: 1.22 !important;
    font-size: clamp(18px, 3.6vw, 22px) !important; /* scales neatly down */
    margin-top: 0 !important;
  }
}

/* Optional: keep desktop nice and tight too */
@media (min-width: 992px){
  .section-title__title{ line-height: 1.25; }
}

/* Stop animations only in the INTRO section on mobile/tablet */
@media (max-width: 991.98px){
  /* neutralise WOW + title animations inside #about-intro only */
  #about-intro .wow,
  #about-intro .fadeInLeft,
  #about-intro .fadeInRight,
  #about-intro .fadeInUp,
  #about-intro .fadeInDown,
  #about-intro .section-title__title.title-animation,
  #about-intro .section-title.sec-title-animation .title-animation,
  #about-intro .animation-style2 .title-animation{
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  /* tidy heading spacing while we are here */
  #about-intro .section-title__title br{ display:none !important; }
  #about-intro .section-title__title{ line-height:1.22 !important; }
}

/* Footer spacing on mobile */
@media (max-width: 575.98px){
  /* Add vertical gap between stacked columns */
  .site-footer .row,
  .footer-one .row{ row-gap: 30px !important; }

  /* Make sure each widget has a little breathing room */
  .site-footer .footer-widget,
  .footer-one .footer-widget{ margin-top: 0 !important; }

  /* Headings and lists spacing */
  .site-footer .footer-widget__title{ margin: 0 0 8px !important; }
  .site-footer .footer-widget ul{ margin: 0 0 0 !important; }
}

/* Remove leading line breaks inside section titles on mobiles */
@media (max-width: 991.98px){
  .section-title__title br:first-child,
  .section-title__title br:first-child + br{ display:none !important; }
  .section-title__title{ line-height:1.22 !important; }
}

/* ===== ATOC | About-two title offset (desktop only) ===== */

/* default offset you can tweak site-wide */
.about-two{ --about-title-offset: clamp(10px, 2.2vw, 38px); }

/* apply the offset to the title wrapper */
@media (min-width: 992px){
  .about-two .section-title{ margin-top: var(--about-title-offset) !important; }
}

/* kill leading <br> gaps and keep lines tight on mobile */
@media (max-width: 991.98px){
  .about-two .section-title__title br:first-child,
  .about-two .section-title__title br:first-child + br{ display:none !important; }
  .about-two .section-title{ margin-top: 0 !important; }
  .about-two .section-title__title{ line-height: 1.22 !important; }
}

/* optional: if a section is already perfectly aligned (no offset) */
.about-two.about-no-offset{ --about-title-offset: 0px; }

/* optional: if you prefer vertical centring of text and image on very wide screens */
@media (min-width: 1200px){
  .about-two .row{ align-items: center; }
}

/* ===== ATOC | Consistent spacing above About buttons ===== */

/* Default top gap above the button wrapper */
.about-two .about-two__btn-box{
  margin-top: clamp(14px, 2.2vw, 28px) !important;
}

/* If the button follows the copy block, ensure the last paragraph
   does not add extra margin so the gap looks deliberate */
.about-two .about-two__copy > *:last-child{
  margin-bottom: 0 !important;
}

/* If the button sits straight after a section title, give it the same gap */
.about-two .section-title + .about-two__btn-box{
  margin-top: clamp(14px, 2.2vw, 28px) !important;
}

/* Phones: a touch tighter so it feels compact */
@media (max-width: 575.98px){
  .about-two .about-two__btn-box{ margin-top: 16px !important; }
}

/* ===== ATOC | Cookie banner ===== */
.atc-cookie{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9990;
  background:#000;
  border-top:1px solid #7d6b33;
  color:#fff;
  font-size:14px;
}

.atc-cookie__inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.atc-cookie__text{
  margin:0;
  line-height:1.4;
  color:#ddd;
}
.atc-cookie__text a{
  color:#7d6b33;
  text-decoration:underline;
}

.atc-cookie__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.atc-cookie__btn{
  border:1px solid #7d6b33;
  background:#7d6b33;
  color:#000;
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  cursor:pointer;
  font-weight:600;
}
.atc-cookie__btn:hover{
  background:#9f8740;
}

.atc-cookie__link{
  font-size:13px;
  color:#fff;
  text-decoration:underline;
}

/* Stack nicely on phones */
@media (max-width:575.98px){
  .atc-cookie__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .atc-cookie__actions{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}
