/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "Gloria Rocha";
  src: url("../fonts/GloriaRocha-Regular.woff2") format("woff2"), url("../fonts/GloriaRocha-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 1.1	Theme Reset Style */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Inter", sans-serif;
  color: #C2C1BA;
  background-color: #FFFEF5;
  font-size: 16px;
  font-size: 1.0666666667rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #C2C1BA;
  line-height: 1.8em;
}
@media (max-width: 575px) {
  p {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #161616;
  font-family: "Gloria Rocha";
  font-weight: 600;
}

ul {
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.box-style {
  padding: 0 50px;
}
@media (max-width: 1700px) {
  .box-style {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .box-style {
    padding: 0 10px;
  }
}

.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

.section-bg {
  background: #F9F9FC;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

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

.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
.contact-validation-active label.error {
  color: red;
  font-size: 0.9333333333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}
.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}
.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #6B1F3C;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}
.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(107, 31, 60, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #6B1F3C;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-to-top:hover {
  background-color: #6B1F3C;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.section-title {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .section-title {
    margin-bottom: 32px;
  }
}
.section-title h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.8px;
  }
}
.section-title h2 span {
  color: #6B1F3C;
}
.section-title p {
  font-size: 18px;
  margin-bottom: 0;
}

.theme-btn, .view-cart-btn,
.theme-btn-s3,
.theme-btn-s4 {
  background: #fff;
  color: #6B1F3C;
  display: inline-block;
  font-weight: 600;
  padding: 15px 45px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-size: 1.0666666667rem;
  transition: all 0.3s;
}
.theme-btn:hover, .view-cart-btn:hover, .theme-btn:focus, .view-cart-btn:focus, .theme-btn:active, .view-cart-btn:active,
.theme-btn-s3:hover,
.theme-btn-s3:focus,
.theme-btn-s3:active,
.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
  background: #6B1F3C;
  color: #fff;
}
.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn:focus:after, .view-cart-btn:focus:after, .theme-btn:active:after, .view-cart-btn:active:after,
.theme-btn-s3:hover:after,
.theme-btn-s3:focus:after,
.theme-btn-s3:active:after,
.theme-btn-s4:hover:after,
.theme-btn-s4:focus:after,
.theme-btn-s4:active:after {
  border: 1px solid #6B1F3C;
}
.theme-btn:hover:after, .view-cart-btn:hover:after,
.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .theme-btn, .view-cart-btn,
  .theme-btn-s3,
  .theme-btn-s4 {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .theme-btn, .view-cart-btn,
  .theme-btn-s3,
  .theme-btn-s4 {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.theme-btn i, .view-cart-btn i,
.theme-btn-s3 i,
.theme-btn-s4 i {
  position: relative;
  top: 2px;
}

.theme-btn-s2 {
  background: transparent;
  color: #6B1F3C;
  display: inline-block;
  font-weight: 600;
  padding: 15px 45px;
  border: 1px solid #6B1F3C;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-size: 1.0666666667rem;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
  background: #571931;
  color: #fff;
}
@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.theme-btn-s4:hover {
  background: #53182f;
}
.theme-btn-s4:hover:after {
  border: 1px solid #53182f;
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
  background: #6B1F3C;
  color: #fff;
}
.view-cart-btn:after {
  display: none;
}
.view-cart-btn:hover {
  background-color: #4b162a;
}
.view-cart-btn.s1 {
  background: rgba(107, 31, 60, 0.2);
  color: #FFC815;
}
.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.preloader {
  background-color: #6B1F3C;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  overflow: hidden;
}
.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.preloader .vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
.preloader * {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.preloader img {
  max-width: 70px;
}
.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}
.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  -webkit-transform-origin: 60px 60px;
  -moz-transform-origin: 60px 60px;
  -ms-transform-origin: 60px 60px;
  -o-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}
.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  -moz-transform: scale3d(0.5, 0.5, 1);
  -ms-transform: scale3d(0.5, 0.5, 1);
  -o-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
}
.preloader #particles-background {
  background: #2c2d44;
  background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-o-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.preloader [not-existing] {
  zoom: 1;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  background-color: #fff;
  position: relative;
  z-index: 111;
}
@media (max-width: 991px) {
  .site-header {
    margin-bottom: 0;
    border-radius: 0;
    background: #fff;
    border-top: 1px solid rgba(35, 35, 35, 0.09);
  }
}

.site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.navbar-brand {
  color: #fff;
  font-weight: 700;
}
.navbar-brand:hover {
  color: #fff;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.site-header .navigation > .container {
  position: relative;
  justify-content: center;
}

.site-header .row {
  width: 100%;
}

@media (max-width: 991px) {
  .site-header .navigation {
    padding: 20px 0;
  }
}
.site-header #navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  justify-content: center;
}

.site-header #navbar nav {
  justify-content: center;
}

.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a.active,
.site-header #navbar > ul li.current-menu-item a {
  text-decoration: none;
  color: #6B1F3C;
}

.site-header ul li.current-menu-item a {
  color: #6B1F3C;
}

@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .site-header .navbar-header button span:last-child {
    margin: 0;
  }
}
.site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul {
    z-index: 101;
  }
  .site-header #navbar ul a {
    color: #000;
  }
  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current a {
    color: #6B1F3C;
  }
  .site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .site-header .navbar-toggler .first-angle,
  .site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header .x-close .middle-angle {
    opacity: 0;
  }
  .site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}
.site-header .navigation {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 991px) {
  .site-header .navigation .col {
    padding-left: 0;
  }
}
.site-header .navigation > .container {
  position: relative;
}
@media (max-width: 991px) {
  .site-header .navigation {
    padding: 20px 0;
  }
}
.site-header #navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #6B1F3C;
}
@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
  }
  .site-header #navbar > ul > li > a {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.36px;
    padding: 30px 20px;
    display: block;
    color: #C2C1BA;
    position: relative;
  }
}
@media screen and (min-width: 992px) and (max-width: 1870px) {
  .site-header #navbar > ul > li > a {
    padding: 35px 18px;
  }
}
@media screen and (min-width: 992px) {
  .site-header #navbar > ul > li > a:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    content: "";
    background: #C5C4BD;
  }
  .site-header #navbar > ul > li:first-child a:before {
    display: none;
  }
  .site-header #navbar > ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 235px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    font-size: 1.0666666667rem;
    display: block;
    padding: 10px 15px;
    color: #161616;
    position: relative;
    overflow: hidden;
    font-weight: 700;
  }
  .site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 4px;
    width: 0px;
    height: 2px;
    content: "";
    background: #6B1F3C;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .site-header #navbar > ul > li .sub-menu a:hover:after, .site-header #navbar > ul > li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li a {
    display: block;
    color: #161616;
    font-family: "Gloria Rocha";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.5px;
  }
  .site-header #navbar > ul > li a:hover, .site-header #navbar > ul > li a.active {
    color: #6B1F3C;
  }
  .site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }
  .site-header #navbar > ul .menu-item-has-children > a:hover, .site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }
  .site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }
  .site-header #navbar > ul .menu-item-has-children > a.rotate {
    color: #fff;
  }
}
.site-header #navbar .language {
  display: none;
}
@media screen and (min-width: 992px) {
  .site-header .navbar-header .open-btn {
    display: none;
  }
  .site-header #navbar .close-navbar {
    display: none;
  }
}
.site-header .menu-close {
  display: none;
}
.site-header .language ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
.site-header .language ul li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.32px;
  color: rgba(22, 22, 22, 0.3);
}
.site-header .language ul li a:hover {
  color: #6B1F3C;
}
.site-header .language ul li + li {
  padding-left: 10px;
  margin-left: 10px;
  position: relative;
}
.site-header .language ul li + li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "/";
}
@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
  }
  .site-header .mobail-menu {
    text-align: right;
  }
  .site-header .mobail-menu button {
    background-color: #fff;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }
  .site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }
  .site-header .mobail-menu button span {
    background-color: #161616;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .site-header .mobail-menu button span:last-child {
    margin: 0;
  }
  .site-header #navbar {
    background: #FFFEF5;
    display: block !important;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -110%;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }
  .site-header #navbar .navbar-nav {
    display: block;
  }
  .site-header #navbar .nav {
    position: relative;
    z-index: 101;
    padding: 0 20px;
  }
  .site-header #navbar .nav a {
    color: #000;
    padding-bottom: 20px;
    border-bottom: 1px solid #CCA7B6;
  }
  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current {
    color: #6B1F3C;
  }
  .site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }
  .site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }
  .site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .site-header #navbar .language {
    position: absolute;
    left: 20px;
    top: 40px;
    display: block;
  }
  .site-header #navbar .language ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
  }
  .site-header #navbar .language ul li a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.32px;
    color: rgba(22, 22, 22, 0.3);
  }
  .site-header #navbar .language ul li a:hover {
    color: #6B1F3C;
  }
  .site-header #navbar .language ul li + li {
    padding-left: 10px;
    margin-left: 10px;
    position: relative;
  }
  .site-header #navbar .language ul li + li::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "/";
  }
  .site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #161616;
    border: 0;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }
  .site-header .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .site-header .navbar-toggler .first-angle,
  .site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header .x-close .middle-angle {
    opacity: 0;
  }
  .site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}

@media (max-width: 440px) {
  .site-header .navbar-header .navbar-brand {
    margin-right: 0;
  }
}
@media (max-width: 1500px) {
  .site-header #navbar > ul > li > a {
    padding: 30px 15px;
  }
}
@media (max-width: 1400px) {
  .site-header #navbar > ul > li > a {
    padding: 30px 10px;
  }
}
@media (max-width: 1200px) {
  .site-header #navbar > ul > li > a {
    padding: 30px 6px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li > a {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li > a {
    padding: 15px 0px;
  }
}
@media (max-width: 991px) {
  .site-header,
  .header-style-2 {
    z-index: 99;
  }
}
.site-header .navigation.sticky-header {
  padding: 0 130px;
  background: #fff;
}

@media (max-width: 1700px) {
  .site-header .navigation.sticky-header {
    padding: 0 50px;
  }
}
@media (max-width: 1400px) {
  .site-header .navigation.sticky-header {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .site-header .navigation.sticky-header {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .site-header .navigation.sticky-header {
    padding: 20px 10px;
  }
}
/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 hero-slider*/
.hero-slider {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.hero-slider .container-fluid {
  padding: 0;
}
.hero-slider .hero-img {
  text-align: center;
}
.hero-slider .hero-img img {
  width: 100%;
}
@media (max-width: 575px) {
  .hero-slider .hero-img img {
    min-height: 337px;
    object-fit: cover;
  }
}
.hero-slider .hero-slider-text {
  padding: 30px;
  background: rgba(25, 0, 27, 0.68);
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 576px;
}
@media (max-width: 991px) {
  .hero-slider .hero-slider-text {
    left: 0px;
    position: relative;
    margin-bottom: 30px;
    background: #fff;
  }
}
@media (max-width: 575px) {
  .hero-slider .hero-slider-text {
    padding: 0;
    width: 94%;
    left: 3%;
    padding-top: 55px;
  }
}
.hero-slider .hero-slider-text h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2px;
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .hero-slider .hero-slider-text h2 {
    padding-bottom: 0;
    border: 0;
  }
}
.hero-slider .hero-slider-text h2 span {
  color: #FFC815;
}
@media (max-width: 1399px) {
  .hero-slider .hero-slider-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .hero-slider .hero-slider-text h2 {
    font-size: 40px;
    color: #161616;
  }
  .hero-slider .hero-slider-text h2 span {
    color: #6B1F3C;
  }
}
@media (max-width: 575px) {
  .hero-slider .hero-slider-text h2 {
    font-size: 30px;
  }
}
.hero-slider p {
  color: #fff;
}
@media (max-width: 991px) {
  .hero-slider p {
    color: #161616;
  }
}
@media (max-width: 991px) {
  .hero-slider .theme-btn, .hero-slider .view-cart-btn {
    background: #6B1F3C;
    color: #fff;
  }
}

/* 3.4 property-area */
@media (max-width: 991px) {
  .property-area {
    padding-bottom: 0;
  }
}
.property-area .property-wrap {
  border: 1px solid #CCA7B6;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
@media (max-width: 991px) {
  .property-area .property-wrap {
    border: 0;
  }
}
@media (max-width: 991px) {
  .property-area .property-wrap .tab-content > .tab-pane {
    display: block;
  }
}
@media (max-width: 991px) {
  .property-area .property-wrap .tab-pane {
    margin-bottom: 60px;
  }
}
.property-area .property-wrap .property-top {
  padding: 30px;
  padding-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .property-area .property-wrap .property-top {
    position: relative;
    padding: 0;
  }
}
.property-area .property-wrap .property-top h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .property-area .property-wrap .property-top h2 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.8px;
    text-align: center;
  }
}
.property-area .property-wrap .property-top h2 span {
  color: #6B1F3C;
}
.property-area .property-wrap .property-top .tab-nav {
  display: flex;
  list-style: none;
}
@media (max-width: 991px) {
  .property-area .property-wrap .property-top .tab-nav {
    display: none;
  }
}
.property-area .property-wrap .property-top .tab-nav li {
  margin-right: 10px;
  padding: 10px 25px;
  transition: all 0.3s;
  cursor: pointer;
}
.property-area .property-wrap .property-top .tab-nav li.active {
  background: #FFC815;
  color: #6B1F3C;
  font-weight: 700;
}
.property-area .property-wrap .property-content {
  padding: 30px;
  padding-top: 210px;
}
@media (max-width: 1199px) {
  .property-area .property-wrap .property-content {
    padding: 15px;
    padding-top: 210px;
  }
}
@media (max-width: 991px) {
  .property-area .property-wrap .property-content {
    padding: 0;
  }
}
.property-area .property-wrap .property-content h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #6B1F3C;
  display: none;
}
@media (max-width: 991px) {
  .property-area .property-wrap .property-content h3 {
    display: block;
    margin-bottom: 30px;
  }
}
.property-area .property-wrap .property-content .property-content-item h4 {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9BDC5;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .property-area .property-wrap .property-content .property-content-item h4 {
    color: #161616;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 0;
    border: 0;
    font-family: "Inter", sans-serif;
  }
}
.property-area .property-wrap .property-content .property-content-item p {
  margin-bottom: 20px;
}
.property-area .property-wrap .property-content .property-content-item p strong {
  color: #6B1F3C;
}
.property-area .property-wrap .property-img {
  overflow: hidden;
}
.property-area .property-wrap .property-img img {
  min-height: 755px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .property-area .property-wrap .property-img img {
    min-height: 850px;
  }
}
@media (max-width: 575px) {
  .property-area .property-wrap .property-img img {
    min-height: auto;
  }
}
.property-area .property-wrap .property-img .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.property-area .property-wrap .property-img .owl-nav [class*=owl-]:hover {
  background: #6B1F3C;
  color: #fff;
}
.property-area .property-wrap .property-img .owl-nav [class*=owl-] {
  background: rgba(22, 22, 22, 0.7);
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 0;
}
@media (max-width: 575px) {
  .property-area .property-wrap .property-img .owl-nav [class*=owl-] {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
.property-area .property-wrap .property-img .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}
.property-area .property-wrap .property-img .owl-nav .owl-prev,
.property-area .property-wrap .property-img .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.property-area .property-wrap .property-img .owl-nav .owl-prev {
  left: 15px;
}
.property-area .property-wrap .property-img .owl-nav .owl-next {
  right: 15px;
}

/* 3.4 map-section */
.map-section .map iframe {
  width: 100%;
  height: 621px;
}
.map-section .map-section-text {
  max-width: 371px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .map-section .map-section-text {
    margin-bottom: 30px;
  }
}
.map-section .map-section-text h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .map-section .map-section-text h2 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.8px;
    text-align: center;
  }
}
.map-section .map-section-text h2 span {
  color: #6B1F3C;
}

/* 3.4 faq-area */
.faq-area .faq-item {
  border-top: 1px solid #CCA7B6;
}
.faq-area .accordion-item {
  border: 0;
  border-bottom: 1px solid #CCA7B6;
  background: none;
}
.faq-area .accordion-item button {
  padding: 30px 0px;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  line-height: normal;
  background: none;
  color: #6B1F3C;
}
@media (max-width: 575px) {
  .faq-area .accordion-item button {
    padding: 24px 0px;
  }
}
.faq-area .accordion-item button::after {
  background: none;
  content: "\e64b";
  font-family: "themify";
  font-size: 12px;
  font-weight: 700;
}
.faq-area .accordion-item button:not(.collapsed)::after {
  position: relative;
  top: -5px;
}
.faq-area .accordion-item button.collapsed {
  color: #6B1F3C;
}
.faq-area .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #CCA7B6;
}
.faq-area .accordion-item .accordion-body {
  padding: 20px 0;
  display: flex;
}
@media (max-width: 575px) {
  .faq-area .accordion-item .accordion-body {
    flex-wrap: wrap;
  }
}
.faq-area .accordion-item .accordion-body .faq-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .faq-area .accordion-item .accordion-body .faq-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .faq-area .accordion-item .accordion-body .faq-wrap {
    display: block;
  }
}
.faq-area .accordion-item .accordion-body .faq-wrap .faq-content {
  max-width: 190px;
  flex-basis: 20%;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .faq-area .accordion-item .accordion-body .faq-wrap .faq-content {
    flex-basis: 33%;
    margin-bottom: 20px;
    padding-right: 20px;
  }
}
.faq-area .accordion-item .accordion-body .faq-wrap .faq-content:last-child {
  padding-right: 0px;
}
.faq-area .accordion-item .accordion-body .faq-wrap .faq-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.faq-area .accordion-item .accordion-collapse {
  border: 0;
}
.faq-area .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.documents-section {
  padding-bottom: 90px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .documents-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .documents-section {
    padding-bottom: 50px;
  }
}
.documents-section .section-title {
  max-width: 370px;
}
.documents-section .documents-wrap {
  max-width: 1097px;
}
.documents-section .documents-item {
  margin-bottom: 30px;
}
.documents-section .documents-item .documents-img {
  border: 1px solid #CCA7B6;
}
.documents-section .documents-item .documents-img img {
  width: 100%;
}
.documents-section .documents-item .documents-text {
  padding-top: 16px;
}
.documents-section .documents-item .documents-text h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 8px;
}
.documents-section .documents-item .documents-text p {
  max-width: 149px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
}

.contact-section .contact-info-wrap {
  max-width: 390px;
}
.contact-section .contact-info-wrap p {
  margin-bottom: 15px;
}
.contact-section .contact-form-area .form-field {
  margin-bottom: 65px;
}
@media (max-width: 575px) {
  .contact-section .contact-form-area .form-field {
    margin-bottom: 32px;
  }
}
.contact-section .contact-form-area .form-field label {
  color: #6B1F3C;
  font-family: "Gloria Rocha";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.contact-section .contact-form-area .form-field input,
.contact-section .contact-form-area .form-field textarea {
  width: 100%;
  height: 40px;
  background: none;
  border: 0;
  border-bottom: 1px solid #6B1F3C;
  border-radius: 0;
  padding: 0;
}
.contact-section .contact-form-area .form-field input:focus,
.contact-section .contact-form-area .form-field textarea:focus {
  outline: none;
  box-shadow: none;
}
.contact-section .contact-form-area .form-field textarea {
  height: 80px;
}
@media (max-width: 575px) {
  .contact-section .contact-form-area .form-field textarea {
    height: 64px;
  }
}
.contact-section .contact-form-area .form-field.email {
  margin-bottom: 30px;
}
.contact-section .contact-form-area .checkbox-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
@media (max-width: 575px) {
  .contact-section .contact-form-area .checkbox-wrap {
    margin-bottom: 32px;
    display: block;
  }
}
.contact-section .contact-form-area .checkbox-wrap .form-group {
  display: block;
  margin-bottom: 15px;
}
.contact-section .contact-form-area .checkbox-wrap .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.contact-section .contact-form-area .checkbox-wrap .form-group label {
  position: relative;
  cursor: pointer;
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.contact-section .contact-form-area .checkbox-wrap .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #6B1F3C;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  margin-top: -3px;
}
.contact-section .contact-form-area .checkbox-wrap .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 14px;
  border: solid #6B1F3C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-section .contact-form-area .submit-area .theme-btn, .contact-section .contact-form-area .submit-area .view-cart-btn {
  background: #6B1F3C;
  color: #fff;
}
.contact-section .contact-form-area .submit-area .theme-btn:hover, .contact-section .contact-form-area .submit-area .view-cart-btn:hover {
  background-color: #571931;
}
.contact-section .contact-form-area .submit-area .theme-btn i, .contact-section .contact-form-area .submit-area .view-cart-btn i {
  top: 0;
  margin-left: 10px;
}

.site-footer-section {
  padding: 30px;
  background: #6B1F3C;
}
@media (max-width: 991px) {
  .site-footer-section {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .site-footer-section {
    padding: 30px 10px;
  }
}
.site-footer-section .copyright {
  text-align: center;
}
.site-footer-section .copyright p {
  color: rgba(255, 254, 245, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .site-footer-section .copyright p {
    margin-top: 12px;
  }
}/*# sourceMappingURL=style.css.map */