/*=============================================
  Header & Offcanvas Navigation
  Extracted from assets/css/main.css
=============================================*/

/*----------------------------------------*/
/*  Offcanvas Panel                        */
/*----------------------------------------*/
.twwwins-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 400px;
  height: 100%;
  background: #fff;
  padding: 50px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-delay: 0s;
  z-index: 999;
}
@media only screen and (max-width: 400px) {
  .twwwins-offcanvas {
    width: 100%;
    padding: 35px 30px;
  }
}
.twwwins-offcanvas-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-delay: 0.3s;
}
.twwwins-offcanvas-button-close svg {
  width: 30px;
  height: 30px;
  transition: 0.5s;
}
.twwwins-offcanvas-button-close svg:hover {
  color: var(--twwwins-gold-color);
  transform: rotate(-90deg);
}
.twwwins-offcanvas-title {
  font-size: 25px;
}
.twwwins-offcanvas-cta-title {
  font-size: 30px;
}
.twwwins-offcanvas-cta li {
  list-style: none;
}
.twwwins-offcanvas-cta li span {
  font-size: 17px;
  color: #000;
}
.twwwins-offcanvas-cta li span i {
  margin-right: 6px;
}
.twwwins-offcanvas-cta li a:hover {
  color: var(--twwwins-gold-color);
}
.twwwins-offcanvas-social a {
  font-size: 20px;
  margin-right: 15px;
}
.twwwins-offcanvas-header {
  padding: 0;
}
.twwwins-offcanvas-overlay {
  position: fixed;
  background-color: #000;
  width: 0;
  opacity: 0;
  height: 100%;
  z-index: 99;
  top: 0;
  right: 0;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-delay: 0.3s;
}
.twwwins-offcanvas-overlay-open {
  opacity: 0.5;
  visibility: visible;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-delay: 0s;
}
.twwwins-offcanvas-connect-social {
  z-index: 1;
  position: relative;
}
.twwwins-offcanvas-connect-social ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.twwwins-offcanvas-connect-social ul li {
  list-style: none;
}
.twwwins-offcanvas-connect-social ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--twwwins-gold-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--twwwins-theme-color);
}
.twwwins-offcanvas-connect-social ul li a:hover {
  background-color: var(--twwwins-gold-color);
  border-color: transparent;
}


/*----------------------------------------*/
/*  Header Sidebar Button & Animation      */
/*----------------------------------------*/
.header-sidebar-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  border-radius: 50px;
  background-color: var(--twwwins-gold-color);
}
.header-sidebar-btn:hover span {
  animation: bar_anim 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.header-sidebar-btn:hover span:nth-child(2) {
  animation-delay: 0.1s;
}
.header-sidebar-btn span {
  background: #000;
  width: 13px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  height: 2px;
  display: inline-block;
}
.header-sidebar-btn span:nth-child(2) {
  width: 20px;
}
.header-sidebar-btn-bg {
  width: 36px;
  height: 36px;
  background: #000;
  border-radius: 50px;
  justify-content: center;
  padding-right: 9px;
}
.header-sidebar-btn-bg span {
  background: #fff;
}
.header-sidebar-btn-bg span:nth-child(2) {
  width: 18px;
}
.header-sidebar-btn-bg-white {
  background: #fff;
}
.header-sidebar-btn-bg-white span {
  background: #000;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header-sidebar-btn {
    margin-left: 20px;
  }
}

@keyframes bar_anim {
  0%, 100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }
  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}

/*----------------------------------------*/
/*  3.1 Header Style 1                    */
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.twwwins-header-wrap {
  padding: 0 70px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800.98px), only screen and (min-width: 1600px) and (max-width: 1700.98px) {
  .twwwins-header-wrap {
    padding: 0 45px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px), only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .twwwins-header-wrap {
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .twwwins-header-wrap {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .twwwins-header-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 574.98px) {
  .twwwins-header-wrap {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-wrap {
    padding: 0 25px;
  }
}
.twwwins-header-menu {
  border-radius: 60px;
  padding: 0px 10px;
  display: inline-block;
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .twwwins-header-menu {
    transform: translateX(0);
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .twwwins-header-menu {
    transform: translateX(-10px);
  }
}
.twwwins-header-menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 19px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .twwwins-header-menu ul li {
    margin: 0 13px;
  }
}
.twwwins-header-menu ul li a {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--twwwins-theme-color);
  padding: 17.5px 0;
  line-height: 1.5;
  position: relative;
  line-height: 1;
  transform: translateY(-2px);
}
.twwwins-header-menu ul li a::before {
  position: absolute;
  content: "";
  background-color: var(--twwwins-gold-color);
  width: 0;
  height: 1.5px;
  border-radius: 10px;
  bottom: 12px;
  left: auto;
  right: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.twwwins-header-menu ul li .sub-menu {
  position: absolute;
  width: auto;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--twwwins-white-color);
  padding: 22px 0;
  border-radius: 20px;
  left: -32px;
  opacity: 0;
  visibility: hidden;
  top: 110%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.twwwins-header-menu ul li .sub-menu li {
  margin: 0;
  display: block;
  text-align: start;
}
.twwwins-header-menu ul li .sub-menu li a {
  padding: 11px 37px;
  position: relative;
  display: block;
}
.twwwins-header-menu ul li .sub-menu li a::before {
  display: none;
}
.twwwins-header-menu ul li .sub-menu li a span {
  display: inline-block;
  position: relative;
}
.twwwins-header-menu ul li .sub-menu li a span::before {
  position: absolute;
  content: "";
  background-color: var(--twwwins-gold-color);
  width: 0;
  height: 1.5px;
  border-radius: 10px;
  bottom: -4px;
  left: auto;
  right: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.twwwins-header-menu ul li .sub-menu li:hover > a span::before,
.twwwins-header-menu ul li .sub-menu li:focus-within > a span::before {
  width: 100%;
  left: 0;
  right: auto;
}
.twwwins-header-menu ul li .sub-menu li .sub-menu {
  left: 101%;
  top: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.twwwins-header-menu ul li .sub-menu li:hover .sub-menu,
.twwwins-header-menu ul li .sub-menu li:focus-within .sub-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.twwwins-header-menu ul li:hover > a::before,
.twwwins-header-menu ul li:focus-within > a::before {
  width: 100%;
  left: 0;
  right: auto;
}
.twwwins-header-menu ul li:hover .sub-menu,
.twwwins-header-menu ul li:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 105%;
}
.twwwins-header-menu ul li.active > a {
  color: var(--twwwins-red-color);
}
.twwwins-header-menu-grey {
  background-color: var(--twwwins-gray-color);
}
.twwwins-header-menu-white ul li a {
  color: var(--twwwins-white-color);
}
.twwwins-header-menu-white ul li .sub-menu li a {
  color: var(--twwwins-theme-color);
}
.twwwins-header-menu-border {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
}
.twwwins-header-border-gray {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.twwwins-header-border-white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
@media only screen and (min-width: 1700px) and (max-width: 1800.98px), only screen and (min-width: 1600px) and (max-width: 1700.98px) {
  .twwwins-header-cta {
    margin-left: -30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .twwwins-header-cta {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .twwwins-header-cta {
    margin-left: -50px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700.98px) {
  .twwwins-header-cta-phone {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .twwwins-header-cta-phone {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .twwwins-header-cta-phone {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1700px) and (max-width: 1800.98px), only screen and (min-width: 1600px) and (max-width: 1700.98px), only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .twwwins-header-area.container-wide, .twwwins-header-area .container-wide {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .twwwins-header-area.container-wide, .twwwins-header-area .container-wide {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .twwwins-header-area.container-wide, .twwwins-header-area .container-wide {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .twwwins-header-area.container-wide, .twwwins-header-area .container-wide {
    padding: 0 10px;
  }
}
.twwwins-header-area.twwwins-header-spacing-3 {
  padding-top: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-area.twwwins-header-spacing-3 {
    padding-top: 0;
  }
}
.twwwins-header-spacing {
  padding: 28px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .twwwins-header-spacing {
    padding: 20px 0;
  }
}
@media (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-spacing {
    padding: 15px 0;
  }
}
.twwwins-header-spacing-2 {
  padding: 19px 0;
}
.twwwins-header-spacing-4 {
  padding: 20px 0;
}
@media (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-spacing-4 {
    padding: 10px;
  }
}
@media (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-logo img {
    max-width: 163px;
  }
}
.twwwins-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.twwwins-header-top {
  padding: 4px 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding-bottom: 7px;
  z-index: 2;
  position: relative;
}
@media (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-top {
    padding: 5px;
    margin: 0 10px;
  }
}
.twwwins-header-top-cta {
  grid-gap: 40px;
}
@media (max-width: 574.98px) {
  .twwwins-header-top-cta {
    display: block;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-top-cta {
    justify-content: center;
  }
}
.twwwins-header-top-cta a {
  display: inline-block;
  font-size: 14px;
  color: var(--twwwins-theme-color);
  line-height: 1;
}
.twwwins-header-top-cta a:hover {
  color: var(--twwwins-red-color);
}
.twwwins-header-top-cta a span {
  color: var(--twwwins-body-color);
  transform: translateY(-1px);
  margin-right: 3px;
}
.twwwins-header-social {
  display: flex;
  grid-gap: 10px;
}
.twwwins-header-social a:hover {
  color: var(--twwwins-red-color);
}
.twwwins-header-social-wrap {
  grid-gap: 20px;
}
@media (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .twwwins-header-social-wrap {
    justify-content: center;
  }
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 10;
  visibility: visible;
  background: var(--twwwins-white-color);
  box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.08);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.header-sticky .twwwins-header-border-white, .header-sticky .twwwins-header-border-gray {
  border-color: transparent;
}
.header-sticky.twwwins-bg-gray {
  background-color: var(--twwwins-gray-color);
}
.header-sticky.sticky-black {
  background-color: var(--twwwins-white-color);
  opacity: .9;
}
.header-sticky.sticky-black .twwwins-header-border-white {
  border-color: transparent;
}
.header-sticky.sticky-black .twwwins-header-menu ul li .sub-menu {
  background-color: var(--twwwins-theme-color);
}
.header-sticky.sticky-black .twwwins-header-menu ul li .sub-menu li a {
  color: var(--twwwins-white-color);
}
.header-sticky .twwwins-header-spacing {
  padding: 12px 0;
}
.header-sticky.media {
  padding: 12px 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .header-sticky.media {
    padding: 12px 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .header-sticky.media {
    padding: 12px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header-sticky.media {
    padding: 12px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 574.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .header-sticky.media {
    padding: 12px 10px;
  }
}

/*----------------------------------------*/
/*  3.2 Mobile Menu Css Here
/*----------------------------------------*/
.twwwins-header-nav {
  justify-content: end;
}

.twwwins-offcanvas-menu {
  margin-bottom: 30px;
}
@media (max-width: 574.98px) {
  .twwwins-offcanvas-menu {
    width: 60%;
  }
}
.twwwins-offcanvas-menu ul li {
  position: relative;
  border-bottom: 1px solid var(--twwwins-gold-color);
  padding: 5px 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  list-style: none;
}
.twwwins-offcanvas-menu ul li .sub-menu {
  display: none;
}
.twwwins-offcanvas-menu ul li .sub-menu li {
  padding-left: 20px;
}
.twwwins-offcanvas-menu ul li .sub-menu li:last-child {
  border: 0;
  padding-bottom: 0;
}
.twwwins-offcanvas-menu ul li .sub-menu li a {
  transition: 0.4s;
}
.twwwins-offcanvas-menu ul li .sub-menu li a:hover {
  color: var(--twwwins-theme-color);
}
.twwwins-offcanvas-menu ul li .sub-menu li a i {
  display: none;
}
.twwwins-offcanvas-menu ul li .mega-menu {
  display: none;
}
.twwwins-offcanvas-menu ul li .mega-menu li {
  padding-left: 20px;
}
.twwwins-offcanvas-menu ul li .mega-menu li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.twwwins-offcanvas-menu ul li.active {
  transition: 0.3s;
}
.twwwins-offcanvas-menu ul li.active > a {
  color: var(--twwwins-gold-color);
}
.twwwins-offcanvas-menu ul li.active > .twwwins-menu-close > .twwwins-menu-close-icon {
  transform: rotate(90deg);
}
.twwwins-offcanvas-menu ul li.active button {
  background-color: var(--twwwins-gold-color);
}
.twwwins-offcanvas-menu ul li a {
  display: block;
  color: var(--twwwins-theme-color);
  font-weight: 600;
}
.twwwins-offcanvas-menu ul li a svg {
  display: none;
}

.twwwins-menu-close {
  position: absolute;
  right: 0;
  top: 3px;
  border: 1px solid var(--twwwins-gold-color);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.twwwins-menu-close .twwwins-menu-close-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid var(--twwwins-theme-color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform-origin: center;
  transition: 0.3s;
}