
:root {
  --blue: #25292F;
  --yellow: #B5995A;
  --white: #fff;
  --black: #000;
  --dark-blue:#14171C;
  --black-two:#0F0F0F;
  --font-one:"Playfair Display", serif;
  --font-two:"Montserrat", serif;
 }
/* --------------------------Top Bar---------------------------- */

.site-header {
  /* position: absolute  ;
  z-index: 9;
  left: 0;
  right: 0;
  width: 100%; */
}
#vw-sticky-menu{
  background: #25292F;
}
#header{
  margin-top: 20px;
}

/* --------------------------Header---------------------------- */
.head-togle{
  text-align: end;
  align-items: center;
  display: flex;
  /* justify-content: end; */
  padding: 0;
}
#sidebar1, .mobile-menu{
    display: none;
}
#header_widgets .header_title{
  margin: 0;
    padding: 0;
    color: #fff;
    position: relative;
}
.header_title::after
{
  content: "";
  position: absolute;
  border-bottom: 1px solid #fff;
   top: 0;
   /* left: 0; */
   right: 0;
   bottom:0;
   width:83px;
}
.menubar {
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}
#header .logo, #footer .logo {
  margin: 0;
  padding: 16px 0;
}

.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  background-color: #F82938;
  padding: 0px 10px;
  height: 75px;
}

/*----------------Menu bar-----------*/
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
ul.list_nav {
  margin: 0 auto;
  text-align: center;
  display: block;
}

.main-navigation li {
  position: relative;
  display: inline-block;
  cursor: pointer;
    padding: 20px 0;
}
.primary_nav{
  display: flex;
  justify-content: center;
  gap: 50px;
}
.main-navigation a {
  display: block;
  font: 500 16px / 18px var(--font-one);
  letter-spacing: 0px;
  color: var(--white)
}
#menu-primary-menu li ul {
    z-index: 99;
    position: absolute;
    left: 0;
    top: 50px;
    opacity: 0;
    white-space: nowrap;
    transition: all .5s ease-in-out;
    width: 100%;
    min-width: 220px;
}
/* .current-menu-item a,.current-menu-parent .current-menu-item a{
  color: var(--yellow);
} */

.primary_nav>li>ul>.menu-column-title>a {
    font: normal normal 600 18px/22px var(--font-two);
    margin-block: 15px;
    display: inline-block;
}
.primary_nav>li>ul>li a {
  font:500 14px/20px var(--font-two);
  letter-spacing: 0px;
}
.side-navigation ul li.current_page_item {
    border: 2px solid #fff;
    border-radius: 50px;
    background: #566e89;
    padding: 4px 26px;
    margin: 20px;
}
.main-navigation ul ul li, .menubar.scrolled .main-navigation ul ul li {
  float: none;
  display: block;
  text-align: left
}
.main-navigation ul ul li:last-child {
  border-bottom: 0;
}

.sub-menu .current-menu-item a ,#sidebar1 .main-navigation .current_page_item>a{
  background: unset;
  border:unset;
  color: var(--yellow);
}
#menu-primary-menu>.menu-item-has-children::before {
  content: "\f078";
  font-family: 'font awesome 5 free';
  font-weight: 800;
  position: absolute;
  right: -20px;
  bottom: 0;
  top: 20px;
  font-size: 12px;
}

.sub-menu li{
  padding:15px 20px;
  background: #25292F;
}
#header .sub-menu{
  /* display: none; */
  visibility: hidden;
  transform: perspective(600px) scaleY(0);
  -webkit-transform: perspective(600px) scaleY(0);
  -moz-transform: perspective(600px) scaleY(0);
  -ms-transform: perspective(600px) scaleY(0);
  -o-transform: perspective(600px) scaleY(0);
  transform-origin: top center;
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -o-transform-origin: top center;
  transition: all .5s ease-in-out 0s;
  -webkit-transition: all .5s ease-in-out 0s;
  -moz-transition: all .5s ease-in-out 0s;
  -ms-transition: all .5s ease-in-out 0s;
  -o-transition: all .5s ease-in-out 0s;
  border-radius: 6px;
}
.primary_nav>li:hover>.sub-menu{
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  transform: perspective(600px) scale(1) !important;
  -webkit-transform: perspective(600px) scale(1) !important;
  -moz-transform: perspective(600px) scale(1) !important;
  -ms-transform: perspective(600px) scale(1) !important;
  -o-transform: perspective(600px) scale(1) !important;
  transform-origin: top center !important;
  -webkit-transform-origin: top center !important;
  -moz-transform-origin: top center !important;
  -ms-transform-origin: top center !important;
  -o-transform-origin: top center !important;
  transition: all .5s ease-in-out 0s !important;
  -webkit-transition: all .5s ease-in-out 0s !important;
  -moz-transition: all .5s ease-in-out 0s !important;
  -ms-transition: all .5s ease-in-out 0s !important;
  -o-transition: all .5s ease-in-out 0s !important;
}
.primary_nav>li:hover>.sub-menu li:nth-child(odd) {
  animation-name: menurhs;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  border-radius: 0;
}
.primary_nav>li:hover>.sub-menu li:nth-child(even) {
  animation-name: menulhs;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  border-radius: 0;
}

@keyframes menulhs {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes menurhs {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.main-navigation a {
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all .5s ease;
}

.main-navigation a:before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 15px;
  z-index: -1;
  height: 2px;
  width: 35px;
  margin-top: 0;
  background-color: #B5995A;
  /* opacity: 0.5; */
  -moz-transform: translate3d(-100%,-100%,0) scale(0);
  -ms-transform: translate3d(-100%,-100%,0) scale(0);
  -webkit-transform: translate3d(-100%,-100%,0) scale(0);
  transform: translate3d(-100%,-100%,0) scale(0);
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.current-menu-item a:before{
  transform: translate3d(-40%, -50%, 0) scale(1);
}
.main-navigation li:hover>a:before {
    -moz-transform: translate3d(-40%,-50%,0) scale(1);
    -ms-transform: translate3d(-40%,-50%,0) scale(1);
    -webkit-transform: translate3d(-40%,-50%,0) scale(1);
    transform: translate3d(-40%,-50%,0) scale(1)
}

ul.mainmenu ul.sub-menu li a:before {
    left: 25px;
}

.search-form input.search-field.search-input{
  border: none;
  border-radius: 4px;
  opacity: 1;
  padding: 0 10px;
  background-color: transparent;
  width: 100%;
  font: 400 14px / 17px "Montserrat", serif;

}
.search-main-box{
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px 10px 10px 0;
  border-radius: 6px;
}
.search-form  [type=submit]{
  padding: 1px 15px;
  border-right: 1px solid #000 !important;
  border: none;
  background: transparent;
}
:focus-visible {
    outline: unset !important;
}
.header-login {
  color: #000;
}
.menu-wrap{
      padding-right: 10px;
}
/*---------------- Custom Footer ----------------------*/
#custom_footer {
  padding: 0;
}
.footer-contact i {
  font-size: 35px;
  color: var(--lightgrey11);
}
.footer-contact p {
  font-size: 14px;
  color: var(--lightgrey11);
  margin: 0;
}
.footer-contact {
  background-size: 100% 50% !important;
  position: relative;
  top: -34px;
}
.footer-contact h2{
  color: #fff;
  font: normal normal normal 36px/35px DM Serif Display;
}
.footer-contact-detail{
  /* transform: translate(10px, 80%); */
  color: #fff;
  margin-top: 30%;
}
.footer-menu-wrap {
  padding: 40px 15px;
  border-bottom: solid 1px var(--grey2);
}
.footer-menu ul {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.footer-menu ul li {
  list-style: none;
  display: inline-block;
  padding: 0 20px;
}
.footer-menu ul li a {
  color: var(--lightgrey11);
  font-size: 14px;
  text-transform: uppercase;
}
.footer-menu ul li a:hover {
  color: var(--orange);
}
/*---------------- Footer Section ----------------------*/

#footer {
  text-align: left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#footer::after{
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.8;
  z-index: -1;
}
.footer_hide {
  display: none;
}


#footer ul {
  margin: 0;
}
#footer ul li {
  list-style: none;
  margin: 0 0 5px 0;
  padding: 5px;
}
#footer ul li a {
  color: #fff;
  font: 400 16px / 24px Montserrat;
}
#footer ul li{
  position: relative;
      transition: 0.5s;
}
#footer ul li:hover{
  padding-left: 25px;
}
#footer ul li::before{
  content: '';
  position: absolute;
  inset: 15px 0 0 0;
  width: 19px;
  height: 5px;
  background: #B5995A;
  border-radius: 0;
  opacity: 0;
}
#footer ul li:hover::before{
  opacity: 1;
  animation: 4s ease 0s normal forwards 1 fadeIn;
}

.custom-social-icons a i:hover{
  box-shadow: 0 0 4px 1px #B5995A;
}
.newsletter-form-box>p{
  width: 100%;
}
.newsletter-form-box [type=submit] {
  color: #fff;
  font-family: 'FontAwesome';
  right: 10px;
  top: 20px;
  font-size: 20px;
  position: absolute;
  background: transparent;
  border: none;
}
.newsletter-form-box .wpcf7-form-control::-webkit-input-placeholder {
  color: #fff;
  font-size: 40px;
}
.newsletter-form-box .wpcf7-spinner{
  position: absolute;
  right: -32px;
  margin: 0px 3px;
  top: 10px;
}


.copyright a{
  color: #fff;
    font: 500 14px / 30px Montserrat;
  font-weight: 500;
}
.copyright a:hover,#sidebar .widget_categories a:hover, #sidebar .widget_custom_html a:hover,#sidebar .widget_recent_entries ul li a:hover,
.widget_wpb_widget a:hover, .widget_wpb_widget p:hover{
  color: #B5995A;
}
.widget_recent_entries img {
  width: 100px;
}
.newsletter-form-box input[type="email"]{
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 400;
  line-height: 65.95px;
  background: transparent;
  border: none;
  padding: 0;
  color: #fff;
  border-bottom: 1px solid #FFF;
  border-radius: 0;
}
#footer h3{
  margin-bottom: 25px;
  font: normal normal bold 20px / 28px Montserrat;
  letter-spacing: 0px;
  color: #fff;
}
.about_me h6{
  font: 500 16px / 29px "Montserrat", serif;
  color: #FFFFFF;
}
.widget_wpb_widget a,.widget_wpb_widget p{
  font: 400 15px / 30px Montserrat;
  letter-spacing: 0px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
}
.add-title{
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.6px;
}

.custom-social-icons a span{
  display: none;
}
.custom-social-icons a i {
  background: #fff;
  width: 25px;
  height: 25px;
  line-height: 23px;
  text-align: center;
  border-radius: 3px;
}
.custom-social-icons {
  display: flex;
  gap: 5px;
}
.custom-social-icons i{
  color: #000;
}
.custom_instagram{
  background: #fff;
  border-radius: 3px;
}
.custom_instagram i{
  color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
}
.custom_facebook i{
    color: #3D6AD6
}
.custom_pinterest i{
    color: #D32F2F
}
.about_me{
  margin-top: 15%;
}
#footer .widget_wpb_social_widget h3{
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.6px;
  margin-bottom: 0;
}
#footer .social_widget .widget_wpb_social_widget{
  display: flex;
  gap: 11%;
}
.copyright-outer {
  border-top: 1px solid #373737;
}


.offcanvas{
  background: #25292F;
  padding-top: 3%;
    padding-left: 15px;
}
.btn-close{
  content: '\f077';
  font-family: "font awesome 6 free";
  background-image: unset !important;
  height: unset !important;
  width: unset !important;
  opacity: 1 !important;
}
.btn-close i{
  font-size: 30px;
  color: #B5995A;
}
.btn-close:hover{
  opacity: 1 !important;
}
.offcanvas-header{
  justify-content: end;
}
.contact-details a{
  font: 400 15px / 30px Montserrat;
    color: #fff;
}
.offcan-social-media-plateform{
  display: flex;
  gap: 10px;
}
.offcan-social-media-plateform i{
  background: #B5995A;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.offcan-social-media-plateform i:hover{
  background: #000;
}

.footer-col-four .widget_custom_html{
  display: flex;
  margin-top: 10%;
}
.footer-col-four .widget-title{
  margin-bottom: 0;
    font-size: 14px;
}

.payment-wrap{
  position: absolute;
  left: -35px;
  bottom: 0;
}
.footer-payment-images {
  width: 39px;
  height: 27px;
}