@charset "UTF-8";
/*==========
    Import abstract files
==========*/
:root {
  --primary: #0B0C16;
  --secondary: #C89858;
  --light: #ffffff;
  --error: #C4486E;
  --border: #707070;
  --gray: #777777;
  --gray2: #DDDDDD;
  --main-white: #FFFFFF;
  --main-gray: #0B0C16;
}

.fixed-navbar {
  background: #0B0C16;
  position: fixed !important;
  -webkit-animation: fixed-navbar .5s ease-in-out 1 forwards;
          animation: fixed-navbar .5s ease-in-out 1 forwards;
  -webkit-box-shadow: 0px 0px 4px #4a484861;
          box-shadow: 0px 0px 4px #4a484861;
}

.fixed-navbar .main-navbar__logo a {
  color: #ffffff !important;
}

.fixed-navbar .main-navbar__links__menu__item__link {
  color: #ffffff !important;
}

.trans-navbar {
  background: #0B0C16;
}

.trans-navbar .main-navbar__logo a {
  color: #ffffff;
}

.trans-navbar .main-navbar__links__menu__item__link {
  color: #ffffff;
}

.show-sidebar {
  -webkit-animation: show-sidebar 1s ease-in-out 1 forwards;
          animation: show-sidebar 1s ease-in-out 1 forwards;
}

.hide-sidebar {
  -webkit-animation: hide-sidebar 1s ease-in-out 1 forwards;
          animation: hide-sidebar 1s ease-in-out 1 forwards;
}

.show-theme-box {
  -webkit-animation: show-theme-box .5s ease-in-out 1 forwards;
          animation: show-theme-box .5s ease-in-out 1 forwards;
}

.hide-theme-box {
  -webkit-animation: hide-theme-box .5s ease-in-out 1 forwards;
          animation: hide-theme-box .5s ease-in-out 1 forwards;
}

.infinite-rotate {
  -webkit-animation: infinite-rotate 3s linear infinite;
          animation: infinite-rotate 3s linear infinite;
}

.display-element {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transition: .5s !important;
  transition: .5s !important;
}

.hide-element {
  opacity: 0 !important;
  visibility: hidden !important;
  -webkit-transition: .5s !important;
  transition: .5s !important;
}

/*==========
    Import base files
==========*/
/*=============
    fixed navbar
==============*/
@-webkit-keyframes fixed-navbar {
  from {
    top: -60px;
  }
  to {
    top: 0;
  }
}
@keyframes fixed-navbar {
  from {
    top: -60px;
  }
  to {
    top: 0;
  }
}

/*=============
    show sidebar
==============*/
@-webkit-keyframes show-sidebar {
  from {
    left: -100%;
  }
  to {
    left: 0px;
  }
}
@keyframes show-sidebar {
  from {
    left: -100%;
  }
  to {
    left: 0px;
  }
}

/*=============
    hide sidebar
==============*/
@-webkit-keyframes hide-sidebar {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
@keyframes hide-sidebar {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}

/*=============
    show theme-box
==============*/
@-webkit-keyframes show-theme-box {
  from {
    left: -120px;
  }
  to {
    left: 0px;
  }
}
@keyframes show-theme-box {
  from {
    left: -120px;
  }
  to {
    left: 0px;
  }
}

/*=============
    hide theme-box
==============*/
@-webkit-keyframes hide-theme-box {
  from {
    left: 0;
  }
  to {
    left: -120px;
  }
}
@keyframes hide-theme-box {
  from {
    left: 0;
  }
  to {
    left: -120px;
  }
}

/*=============
    infinity rotate
==============*/
@-webkit-keyframes infinite-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes infinite-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*=============
    header effect
==============*/
@-webkit-keyframes header-effect {
  from {
    right: 60%;
  }
  to {
    right: 50%;
  }
}
@keyframes header-effect {
  from {
    right: 60%;
  }
  to {
    right: 50%;
  }
}

@-webkit-keyframes img-header-effect {
  from {
    top: 10%;
  }
  to {
    top: 20%;
  }
}

@keyframes img-header-effect {
  from {
    top: 10%;
  }
  to {
    top: 20%;
  }
}

@-webkit-keyframes rotate-effect {
  from {
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotate-effect {
  from {
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes floating-element {
  0% {
    top: 30%;
  }
  50% {
    top: 28%;
  }
  100% {
    top: 30%;
  }
}

@keyframes floating-element {
  0% {
    top: 30%;
  }
  50% {
    top: 28%;
  }
  100% {
    top: 30%;
  }
}

@-webkit-keyframes right-left-animation {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes right-left-animation {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes reset-element {
  0% {
    top: 20%;
  }
  100% {
    top: 30%;
  }
}

@keyframes reset-element {
  0% {
    top: 20%;
  }
  100% {
    top: 30%;
  }
}

/*=============
    video shadow
==============*/
@-webkit-keyframes video-shadow {
  0% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  50% {
    -webkit-box-shadow: 0 0 0 0px #bfbdbd, 0 0 0px 10px #bfbdbd;
            box-shadow: 0 0 0 0px #bfbdbd, 0 0 0px 10px #bfbdbd;
  }
}
@keyframes video-shadow {
  0% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  50% {
    -webkit-box-shadow: 0 0 0 0px #bfbdbd, 0 0 0px 10px #bfbdbd;
            box-shadow: 0 0 0 0px #bfbdbd, 0 0 0px 10px #bfbdbd;
  }
}

/*=============
    preload effect
==============*/
@-webkit-keyframes preload-effect {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes preload-effect {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*=============
    swipe down
==============*/
@-webkit-keyframes swipe-effect {
  0% {
    bottom: 2.5rem;
  }
  50% {
    bottom: 3.5rem;
  }
  100% {
    bottom: 2.5rem;
  }
}
@keyframes swipe-effect {
  0% {
    bottom: 2.5rem;
  }
  50% {
    bottom: 3.5rem;
  }
  100% {
    bottom: 2.5rem;
  }
}

body {
  background: var(--primary);
}

label.error {
  color: #C4486E;
  font-size: 1rem;
  font-weight: bold;
}

label.error.valid {
  color: green;
}

.privacy {
  color: #C89858;
}

.viewbox-container {
  background: rgba(11, 12, 22, 0.9);
}

* {
  padding: 0;
  margin: 0;
}

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

a {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
  background: none;
}

button:focus {
  outline: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-prev, .slick-next {
  z-index: 3;
}

input, textarea {
  outline: none;
  border: none;
  background: none;
}

/*==========
    Import components files
==========*/
.collapse-sidebar {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 3;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 5px 10px;
  cursor: pointer;
  background: #0B0C16;
  color: #C89858;
}

@media (min-width: 992px) {
  .collapse-sidebar {
    display: none;
  }
}

.primary-btn {
  background: #C4486E;
  padding: .5rem 1rem;
  color: #DDDDDD;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
}

.primary-btn::after {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #C89858;
  display: block;
  -webkit-transition: .5s;
  transition: .5s;
}

.primary-btn span {
  position: relative;
  z-index: 1;
}

.primary-btn:hover {
  color: #ffffff;
}

.primary-btn:hover::after {
  width: 100%;
  -webkit-transition: width .5s;
  transition: width .5s;
}

.back-up-btn {
  -webkit-box-shadow: 0px 0px 10px #271e1e61;
          box-shadow: 0px 0px 10px #271e1e61;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  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;
  background: #0B0C16;
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

.nav-dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  padding-top: .9rem;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 5;
}

.nav-dropdown ul {
  background: #ffffff;
  padding: .6rem 1rem;
  border: 1px solid #707070;
}

.nav-dropdown ul li {
  padding: .2rem 0;
}

.nav-dropdown ul li a {
  white-space: nowrap;
  color: #0B0C16;
  font-size: 0.95rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
  font-weight: bold;
  -webkit-transition: .5s;
  transition: .5s;
}

.nav-dropdown ul li a.active {
  color: #C4486E;
}

.nav-dropdown ul li a:hover {
  color: #C4486E;
  -webkit-transition: .5s;
  transition: .5s;
}

.nav-dropdown ul li a img {
  height: 15px;
  width: 20px;
  margin-left: 0.2rem;
}

.side-bar {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  background: #ffffff;
  overflow-y: auto;
  z-index: 9;
  padding: 3rem 1.5rem 0 1.5rem;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .side-bar {
    width: 400px;
  }
}

.side-bar__close {
  cursor: pointer;
  position: absolute;
  left: 2rem;
  top: 2rem;
  font-size: 1.5rem;
}

.side-bar__title {
  color: #0B0C16;
  font-size: 1.8rem;
  font-family: "Traditional";
  text-transform: capitalize;
  font-weight: bold;
  padding-bottom: 2rem;
}

.side-bar__title::first-letter {
  color: #C89858;
}

.side-bar__text {
  color: #777777;
  font-family: "Segoe UI";
  padding-bottom: 1rem;
}

.side-bar__info {
  position: relative;
  padding-bottom: 2rem;
}

.side-bar__info::after {
  content: '';
  margin-bottom: 1rem;
  display: block;
  width: 80%;
  margin: 1.5rem auto 0;
  height: 1px;
  background: #0B0C16;
}

.side-bar__info span {
  display: block;
  padding: .2rem 0;
}

.side-bar__info span a {
  color: #C89858;
}

.side-bar__location {
  height: 400px;
  max-height: 400px;
  overflow-y: auto;
}

.side-bar__location__boxes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .5rem 0;
}

.side-bar__location__boxes__item__img {
  width: 30%;
  height: 100px;
}

.side-bar__location__boxes__item__img img {
  height: 100%;
  width: 100%;
}

.side-bar__location__boxes__item__content {
  width: 70%;
}

.side-bar__location__boxes__item__content h4 {
  color: #0B0C16;
  font-size: 1.3rem;
  text-transform: capitalize;
  font-weight: bold;
}

.side-bar__location__boxes__item__content p {
  color: #777777;
  font-size: 0.8rem;
  text-transform: capitalize;
  margin-bottom: 0;
}

.side-bar__location__boxes__item__content a {
  color: #C89858;
}

.side-bar__location__boxes__item__content a svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.change-theme {
  position: fixed;
  left: -120px;
  top: 30%;
  background: #0B0C16;
  width: 120px;
}

.change-theme ul {
  position: relative;
}

.change-theme ul li {
  padding: 3px 0;
}

.change-theme ul li a {
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.change-theme ul li a span:nth-of-type(1) {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  margin-right: 1rem;
}

.change-theme ul li a.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: .5;
  pointer-events: none;
}

.change-theme ul li:nth-of-type(1) span:nth-of-type(1) {
  background: #ffffff;
}

.change-theme ul li:nth-of-type(2) span:nth-of-type(1) {
  background: #252525;
}

.change-theme__btn {
  position: absolute;
  top: 0;
  right: -40px;
  background: #0B0C16;
  width: 40px;
  height: 40px;
  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;
  color: #C89858;
  background: #0B0C16;
  font-size: 1.2rem;
  cursor: pointer;
}

.slick-dots {
  bottom: -50px;
  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;
  padding: 1rem 0 2rem;
}

.slick-dots li {
  width: auto;
  height: auto;
  margin: 0 3px;
}

.slick-dots li.slick-active button {
  background: #0B0C16;
}

.slick-dots li button {
  background: #C4486E;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  padding: 0;
}

.slick-dots li button::before {
  display: none;
}

.video-modal .modal-dialog {
  height: 100%;
  width: 100% !important;
  margin: 0;
  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;
}

@media (min-width: 576px) {
  .video-modal .modal-dialog {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.video-modal .modal-header {
  border-bottom: transparent;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 5px;
  padding-right: 0;
  padding-left: 0;
}

.video-modal .modal-header button {
  color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 15px;
  padding: 5px 7px;
  cursor: pointer;
}

.video-modal .modal-content {
  border: none !important;
  width: 90%;
  margin: auto;
  background: transparent !important;
}

@media (min-width: 576px) {
  .video-modal .modal-content {
    width: 80%;
  }
}

@media (min-width: 767px) {
  .video-modal .modal-content {
    width: 60%;
  }
}

.video-modal .modal-content iframe {
  border: none;
  width: 100%;
  margin: auto;
  height: 350px;
}

@media (min-width: 767px) {
  .video-modal .modal-content iframe {
    height: 500px;
  }
}

.blog-modal {
  padding: 0;
}

.blog-modal img {
  height: 220px;
  width: 100%;
}

@media (min-width: 992px) {
  .blog-modal img {
    height: 300px;
  }
}

.blog-modal h1 {
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: uppercase;
  font-weight: bold;
  color: #0B0C16;
}

.blog-modal p {
  padding-bottom: 2rem;
  padding-right: 2rem;
  color: #777777;
}

@media (min-width: 576px) {
  .contact-modal .modal-dialog {
    max-width: 400px !important;
  }
}

.contact-modal .modal-header {
  background: #0B0C16;
}

.contact-modal .modal-header span.head {
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: capitalize;
  font-weight: bold;
}

.contact-modal .modal-header button.close {
  opacity: 1;
  color: #ffffff;
}

.contact-modal__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0;
  color: #0B0C16;
  font-size: 1.5rem;
  text-transform: capitalize;
}

.contact-modal__phone:hover span {
  color: #C89858;
  -webkit-transition: .5s;
  transition: .5s;
}

.contact-modal__phone span {
  -webkit-transition: .5s;
  transition: .5s;
  margin-right: 0.8rem;
}

.contact-modal__phone span:nth-of-type(1) {
  display: inline-block;
  width: 40px;
  height: 40px;
  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;
  background: #C89858;
  color: #ffffff;
  border-radius: 15px;
}

.general-head {
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
}

.general-head.center-box {
  text-align: center;
}

.general-head.center-box h2 {
  color: var(--gray);
  position: relative;
  font-size: 2.5rem;
  font-family: "Times New Roman";
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 3rem;
}

.general-head.center-box h2::before {
  content: '';
  position: absolute;
  right: calc(50% - 75px);
  bottom: -20px;
  z-index: 1;
  display: block;
  width: 150px;
  height: 2px;
  background: var(--gray);
}

.general-head.center-box h2::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  right: 160px;
  right: calc(50% + 85px);
  bottom: -30px;
  z-index: 1;
  display: block;
  color: #C4486E;
  font-size: 1.3rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (min-width: 992px) {
  .general-head.center-box p {
    width: 60%;
    margin: auto;
  }
}

.general-head.left-box h1 {
  color: var(--gray);
  font-size: 2.5rem;
  font-family: "Times New Roman";
  text-transform: capitalize;
  font-weight: bold;
}

.general-head.left-box h2 {
  color: #C89858;
  position: relative;
  font-size: 1.3rem;
  font-family: "Times New Roman";
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 3rem;
}

.general-head.left-box h2::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 1;
  display: block;
  width: 150px;
  height: 2px;
  background: var(--gray);
}

.general-head.left-box h2::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  right: 160px;
  bottom: -30px;
  z-index: 1;
  display: block;
  color: #C4486E;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.general-head__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  font-size: 5rem;
  font-family: "sitka";
  text-transform: uppercase;
  font-weight: bold;
  color: var(--gray);
  opacity: .1;
}

@media (min-width: 576px) {
  .general-head__bg {
    top: -3.5rem;
    font-size: 9rem;
  }
}

.general-head p {
  color: var(--gray);
  font-size: 1rem;
  font-family: "Segoe UI";
  padding-bottom: 1rem;
}

.general-head p.bread-crumb {
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  color: #DDDDDD;
}

.general-head p.bread-crumb a {
  color: #ffffff;
  padding: 0 .5rem;
  position: relative;
  z-index: 1;
}

.general-head p.bread-crumb a.active {
  color: #C4486E;
}

.social-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-info a {
  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;
  width: 40px;
  height: 40px;
  background: #252525;
  color: #C89858;
  margin-left: 1rem;
  border-radius: 50%;
  -webkit-transition: .5s;
  transition: .5s;
}

.social-info a svg {
  font-size: 1.3rem;
}

.social-info a:hover {
  background: #C89858;
  color: #ffffff;
  -webkit-transition: .5s;
  transition: .5s;
}

.custom-header {
  min-height: 500px;
  height: 500px;
  position: relative;
  text-align: center;
}

@media (min-width: 992px) {
  .custom-header {
    min-height: 100vh;
  }
}

@media (min-width: 992px) {
  .custom-header {
    text-align: right;
  }
}

.custom-header .general-head h1 {
  color: #ffffff;
}

.custom-header .general-head__bg {
  color: #DDDDDD !important;
}

.custom-header .social-info {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 0;
}

@media (min-width: 992px) {
  .custom-header .social-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.custom-header__content {
  margin-right: auto;
}

@media (min-width: 992px) {
  .custom-header__content {
    width: 55%;
  }
}

.custom-header__content .general-head {
  width: 100%;
}

.custom-header .swipe-down {
  position: absolute;
  bottom: 2.5rem;
  right: 50%;
  z-index: 1;
  font-size: 1.5rem;
  color: #ffffff;
  -webkit-animation: swipe-effect 2.5s linear infinite;
          animation: swipe-effect 2.5s linear infinite;
}

.preload {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  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;
  background: #0B0C16;
}

.preload .spinner2 {
  position: relative;
  width: 150px;
  height: 150px;
}

.preload .spinner2 .circle1 {
  position: absolute;
  border-radius: 50%;
  border: 4px solid transparent;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-bottom-color: #ffffff;
  border-top-color: #ffffff;
  -webkit-animation: preload-effect 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s infinite;
          animation: preload-effect 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s infinite;
}

.preload .spinner2 .circle2 {
  position: absolute;
  border-radius: 50%;
  border: 4px solid transparent;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-left-color: #C89858;
  border-right-color: #C89858;
  -webkit-animation: preload-effect 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
          animation: preload-effect 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
}

/*==========
    Import layout files
==========*/
/*==========
    Navbar Of Project
==========*/
.main-navbar {
  position: absolute;
  width: 100%;
  height: 70px;
  z-index: 8;
}

.main-navbar__logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-navbar__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Traditional";
  text-transform: capitalize;
  font-weight: bold;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__logo a span {
  margin-right: 0.5rem;
}

.main-navbar__logo a span::first-letter {
  color: #C89858;
}

.main-navbar__logo a:hover span {
  color: #C89858;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__logo a img {
  width: 150px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-navbar__links {
  height: 100%;
}

.main-navbar__links__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-navbar__links__menu__item {
  margin-right: 1.5rem;
  padding: .5rem 0;
  position: relative;
}

.main-navbar__links__menu__item:not(.contain-menu) {
  display: none;
}

@media (min-width: 992px) {
  .main-navbar__links__menu__item:not(.contain-menu) {
    display: block;
  }
}

@media (min-width: 992px) {
  .main-navbar__links__menu__item.contain-menu {
    display: none;
  }
}

.main-navbar__links__menu__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 0%;
  height: 2px;
  background: #C89858;
  -webkit-transition: .3s;
  transition: .3s;
}

.main-navbar__links__menu__item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #C89858;
}

.main-navbar__links__menu__item:not(.remove-hover):hover::after {
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}

.main-navbar__links__menu__item:not(.remove-hover):hover .nav-dropdown {
  top: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__links__menu__item__link {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__links__menu__item__link svg {
  font-size: 1.2rem;
}

.main-navbar__links__menu__item__link:hover {
  color: #C4486E;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__links__menu__item .sidebar-collapse, .main-navbar__links__menu__item .nav-collapse {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  padding: 5px 8px;
  background: #C89858;
  cursor: pointer;
}

.main-navbar__links__menu__item .sidebar-collapse:hover span:nth-of-type(1)::after, .main-navbar__links__menu__item .nav-collapse:hover span:nth-of-type(1)::after {
  width: 50%;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__links__menu__item .sidebar-collapse:hover span:nth-of-type(3)::before, .main-navbar__links__menu__item .nav-collapse:hover span:nth-of-type(3)::before {
  width: 50%;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__links__menu__item .sidebar-collapse span, .main-navbar__links__menu__item .nav-collapse span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  position: relative;
}

.main-navbar__links__menu__item .sidebar-collapse span:nth-of-type(2), .main-navbar__links__menu__item .nav-collapse span:nth-of-type(2) {
  width: 70%;
  margin: auto;
}

.main-navbar__links__menu__item .sidebar-collapse span:nth-of-type(1)::after, .main-navbar__links__menu__item .nav-collapse span:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: #0B0C16;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-navbar__links__menu__item .sidebar-collapse span:nth-of-type(3)::before, .main-navbar__links__menu__item .nav-collapse span:nth-of-type(3)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0B0C16;
  -webkit-transition: .5s;
  transition: .5s;
}

/*==========
    Navbar hidden menu
==========*/
.hidden-menu {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  background: var(--primary);
  z-index: 8;
  width: 100%;
  height: 100%;
  padding: .5rem 0;
}

.hidden-menu__close {
  padding: 1rem 1rem .5rem 1rem;
  color: var(--gray);
}

.hidden-menu ul li {
  padding: .5rem;
}

.hidden-menu ul li a {
  color: var(--gray);
  font-size: 1rem;
  text-transform: capitalize;
}

.hidden-menu ul li .hide-dropdown {
  padding-right: 2rem;
}

.hidden-menu ul li .hide-dropdown a {
  color: var(--gray);
}

.footer__email {
  color: #C89858;
  display: inline-block;
  margin-bottom: 1rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.footer__email:hover {
  color: #C4486E;
  -webkit-transition: .5s;
  transition: .5s;
}

.footer__head {
  color: var(--gray);
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  padding-bottom: 1rem;
}

.footer__text {
  color: #777777;
}

@media (min-width: 1200px) {
  .footer__content {
    padding-left: 3rem;
    padding-right: 5rem;
  }
}

.footer__content ul {
  display: block;
  width: 100%;
  padding-top: .5rem;
}

.footer__content ul li {
  border-bottom: 1px solid var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer__content ul li:last-of-type {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer__content ul li:last-of-type span:nth-of-type(2) {
  color: #777777 !important;
}

.footer__content ul li span {
  color: var(--gray);
  font-size: 1rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
  font-weight: bold;
}

.footer__content ul li span:nth-of-type(2) {
  color: #C89858;
  text-transform: uppercase;
}

.footer__news form.footer-form label.error {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
}

.footer__news form.footer-form div {
  border: 1px solid #C89858;
  position: relative;
  margin-top: 2rem;
}

.footer__news form.footer-form div input {
  width: calc(100% - 60px);
  padding: .6rem 1rem;
  color: var(--gray);
}

.footer__news form.footer-form div input::-webkit-input-placeholder {
  text-transform: capitalize;
  font-weight: bold;
}

.footer__news form.footer-form div input:-ms-input-placeholder {
  text-transform: capitalize;
  font-weight: bold;
}

.footer__news form.footer-form div input::-ms-input-placeholder {
  text-transform: capitalize;
  font-weight: bold;
}

.footer__news form.footer-form div input::placeholder {
  text-transform: capitalize;
  font-weight: bold;
}

.footer__news form.footer-form div button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: bold;
  color: #C4486E;
}

.footer__news form.footer-form div button::after {
  content: '';
  position: absolute;
  bottom: -.1rem;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gray);
}

.footer__copyright {
  display: block;
  margin: 2rem auto 1rem;
  padding: .8rem 1rem;
  background: var(--main-white);
  color: var(--primary);
  text-align: center;
  font-size: 1.1rem;
  font-family: "Sitka";
  text-transform: capitalize;
}

@media (min-width: 992px) {
  .footer__copyright {
    width: 50%;
  }
}

.footer__copyright span:nth-of-type(1) {
  color: #C4486E;
}

.footer__copyright a {
  color: #C89858;
}

/*==========
    Import pages files
==========*/
/*==========
    Header Of Project
==========*/
.header {
  position: relative;
  overflow: hidden;
}

.header .social-info {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 0;
}

@media (min-width: 992px) {
  .header .social-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__content .slick-dots {
  bottom: 0;
}

.header__content .slick-prev {
  display: none !important;
  right: 2rem;
}

.header__content .slick-prev::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  font-size: 1.6rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 992px) {
  .header__content .slick-prev {
    display: block !important;
  }
}

.header__content .slick-next {
  display: none !important;
  left: 2rem;
}

.header__content .slick-next::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  font-size: 1.6rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 992px) {
  .header__content .slick-next {
    display: block !important;
  }
}

.header__content__item {
  height: 450px;
  min-height: 450px;
  position: relative;
}

@media (min-width: 992px) {
  .header__content__item {
    height: 100vh;
    min-height: 100vh;
  }
}

.header__content__item__curly {
  display: none !important;
}

@media (min-width: 992px) {
  .header__content__item__curly {
    display: block !important;
  }
}

.header__content__item.left-content .header__content__item__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  right: -50%;
}

.header__content__item.left-content .header__content__item__curly {
  position: absolute;
  right: 10%;
  top: 30%;
}

.header__content__item.left-content .header__content__item__img img:nth-of-type(2) {
  right: -380px;
  top: 20%;
}

.header__content__item.left-content .header__content__item__img h1, .header__content__item.left-content .header__content__item__img h2 {
  right: -180px;
}

.header__content__item.left-content .header__content__item__img h2::after {
  content: attr(data-title);
  position: absolute;
  right: -150px;
  top: -100%;
  z-index: -2;
  font-size: 25rem;
  opacity: .1;
}

.header__content__item.right-content .header__content__item__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -50%;
}

.header__content__item.right-content .header__content__item__curly {
  position: absolute;
  left: 10%;
  top: 30%;
}

.header__content__item.right-content .header__content__item__img img:nth-of-type(2) {
  left: -380px;
  top: 20%;
}

.header__content__item.right-content .header__content__item__img h1, .header__content__item.right-content .header__content__item__img h2 {
  left: -180px;
}

.header__content__item.right-content .header__content__item__img h2::after {
  content: attr(data-title);
  position: absolute;
  left: -150px;
  top: -100%;
  z-index: -2;
  font-size: 25rem;
  opacity: .1;
}

.header__content__item.effect-header.left-content .header__content__item__bg {
  right: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.header__content__item.effect-header.right-content .header__content__item__bg {
  left: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.header__content__item.effect-header .header__content__item__curly {
  -webkit-animation: reset-element 1s linear 1 forwards, floating-element 2.5s linear 1s infinite;
          animation: reset-element 1s linear 1 forwards, floating-element 2.5s linear 1s infinite;
}

.header__content__item.effect-header .header__content__item__img {
  -webkit-animation: header-effect 1s linear 1 forwards;
          animation: header-effect 1s linear 1 forwards;
}

.header__content__item.effect-header .header__content__item__img h1 {
  -webkit-animation: right-left-animation 3.5s linear 1.5s infinite;
          animation: right-left-animation 3.5s linear 1.5s infinite;
}

.header__content__item.effect-header .header__content__item__img h2::after {
  -webkit-animation: rotate-effect 1s linear 1 forwards;
          animation: rotate-effect 1s linear 1 forwards;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.header__content__item__img {
  width: 230px;
  height: 250px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  z-index: 2;
  -webkit-transition: 1s;
  transition: 1s;
}

@media (min-width: 576px) {
  .header__content__item__img {
    width: 290px;
    height: 300px;
  }
}

@media (min-width: 992px) {
  .header__content__item__img {
    width: 350px;
    height: 400px;
  }
}

.header__content__item__img img:nth-of-type(1) {
  width: 100%;
  height: 100%;
}

.header__content__item__img img:nth-of-type(2) {
  position: absolute;
  top: 20%;
}

.header__content__item__img h1, .header__content__item__img h2 {
  display: none;
  position: absolute;
  color: #ffffff;
  width: 250px;
  font-size: 2.8rem;
  font-family: "sitka";
  text-transform: capitalize;
  font-weight: bold;
  z-index: 5;
}

@media (min-width: 992px) {
  .header__content__item__img h1, .header__content__item__img h2 {
    display: block;
  }
}

.header__content__item__img h1 {
  top: 20%;
}

.header__content__item__img h2 {
  top: -5%;
}

/*==========
    About us
==========*/
.about {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .about {
    padding: 5rem 0;
  }
}

.about__img {
  position: relative;
  padding-bottom: 2rem;
}

.about__img img {
  height: 300px;
  width: 100%;
}

@media (min-width: 992px) {
  .about__img img {
    height: 400px;
  }
}

.about__img__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.about__img__video video {
  display: none;
  width: 100%;
  height: 100%;
}

.about__img__video__btn {
  width: 70px !important;
  height: 70px !important;
}

.about__content__read-more {
  background: #C89858;
}

.about__content__read-more:hover::after {
  background: #C4486E;
}

.about__content__video {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #C4486E;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  -webkit-animation: video-shadow 5s infinite linear forwards;
          animation: video-shadow 5s infinite linear forwards;
  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;
}

.about__content__video:hover {
  color: #ffffff;
}

/*==========
    Work hours
==========*/
.work-hours {
  background: url("../imgs/work-hours-bg.jpg");
  background-size: cover;
}

.work-hours__content {
  width: 100%;
  padding: 2rem 1rem;
}

@media (min-width: 992px) {
  .work-hours__content {
    padding-top: 1rem;
    padding-left: 3rem;
    padding-bottom: 1rem;
    padding-right: 5rem;
  }
}

.work-hours__content h1 {
  color: #DDDDDD;
  font-size: 2.5rem;
  font-family: "Sitka small";
  text-transform: capitalize;
  font-weight: bold;
  padding-bottom: 2rem;
}

.work-hours__content ul {
  display: block;
  width: 100%;
}

.work-hours__content ul li {
  border-bottom: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.work-hours__content ul li:last-of-type {
  border: none;
}

.work-hours__content ul li:last-of-type span:nth-of-type(2) {
  color: #777777 !important;
}

.work-hours__content ul li span {
  color: #DDDDDD;
  font-size: 1rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
  font-weight: bold;
}

.work-hours__content ul li span:nth-of-type(2) {
  color: #C89858;
  text-transform: uppercase;
}

.work-hours__img {
  height: 350px;
}

@media (min-width: 992px) {
  .work-hours__img {
    height: 560px;
  }
}

.work-hours__img img {
  height: 100%;
  width: 100%;
}

/*==========
    services
==========*/
.services {
  padding: 6rem 0;
}

.services__cards {
  padding-top: 2rem;
}

.services__cards__item {
  padding: 0 1rem;
}

.services__cards__item__box__img {
  height: 250px;
}

.services__cards__item__box__img img {
  height: 100%;
  width: 100%;
}

.services__cards__item__box__content {
  -webkit-box-shadow: 0px 6px 10px #77777761;
          box-shadow: 0px 6px 10px #77777761;
  padding: .5rem 0 1rem;
  width: 90%;
  margin: auto;
  background: #ffffff;
  text-align: center;
  position: relative;
  top: -2rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.services__cards__item__box__content h3 {
  padding-bottom: .5rem;
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  color: #0B0C16;
}

.services__cards__item__box__content h4 {
  padding-bottom: .5rem;
  font-size: 1.1rem;
  font-family: "Sitka";
  text-transform: uppercase;
  font-weight: bold;
  color: #C89858;
}

.services__cards__item:hover .services__cards__item__box__content {
  top: -3rem;
  -webkit-transition: .5s;
  transition: .5s;
}

/*==========
    shpping now
==========*/
.shopping-now {
  background: var(--main-gray);
  padding: 2rem 0 4rem;
}

.shopping-now__cards {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shopping-now__cards__item {
  padding: 0 1rem 1rem 1rem;
  position: relative;
}

@media (min-width: 992px) {
  .shopping-now__cards__item {
    width: calc(100% / 4);
  }
}

.shopping-now__cards__item__offers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: .5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shopping-now__cards__item__offers span {
  padding: .2rem .5rem;
  font-family: "Sitka";
  text-transform: capitalize;
}

.shopping-now__cards__item__offers span.new {
  color: #ffffff;
  background: #C4486E;
}

.shopping-now__cards__item__offers span.offer {
  color: #0B0C16;
  background: #C89858;
}

.shopping-now__cards__item__offers span.special {
  color: #ffffff;
  background: #0B0C16;
}

.shopping-now__cards__item__box__img {
  height: 300px;
}

.shopping-now__cards__item__box__img img {
  height: 100%;
  width: 100%;
}

.shopping-now__cards__item__box__content {
  padding: .5rem 0 1rem;
  text-align: center;
  position: relative;
  top: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.shopping-now__cards__item__box__content h3 {
  padding-bottom: .5rem;
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  color: var(--gray);
}

.shopping-now__cards__item__box__content h4 {
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: uppercase;
  font-weight: bold;
  color: #C89858;
}

.shopping-now__cards__item__box:hover .shopping-now__cards__item__box__content {
  position: relative;
  top: -20px;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  background: var(--main-white);
}

.shopping-now__cards__item__box:hover .shopping-now__cards__item__box__content h3 {
  color: var(--primary) !important;
}

/*==========
    Best offers
==========*/
.best-offers {
  background: url("../imgs/offer.jpg");
  background-size: cover;
  padding: 2rem 0 2rem;
}

@media (min-width: 992px) {
  .best-offers {
    padding: 5rem 0 1rem;
  }
}

.best-offers__head {
  position: relative;
  z-index: 2;
}

.best-offers__head__bg {
  position: absolute;
  bottom: 0;
  right: 0rem;
  top: -5rem;
  font-size: 15rem;
  font-family: "Sitka";
  text-transform: uppercase;
  font-weight: bold;
  z-index: 0;
  color: #DDDDDD;
  opacity: .1;
}

@media (min-width: 576px) {
  .best-offers__head__bg {
    right: -2rem;
  }
}

.best-offers__head h1 {
  color: #DDDDDD;
  font-size: 2.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.best-offers__head h1::first-letter {
  color: #C4486E;
}

.best-offers__head h4, .best-offers__head button {
  margin-right: 2rem;
}

.best-offers__head h4 {
  color: #DDDDDD;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

@media (min-width: 992px) {
  .best-offers__head h4 {
    width: 30% !important;
  }
}

@media (min-width: 767px) {
  .best-offers__head h4 {
    width: 50%;
  }
}

.best-offers__head h4 span {
  color: #C89858;
}

.best-offers__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2rem;
}

.best-offers__time__item {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.best-offers__time__item span {
  text-align: center;
  color: #DDDDDD;
}

.best-offers__time__item span:nth-of-type(1) {
  width: 40px;
  height: 40px;
  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;
  background: #C89858;
  font-size: 1.3rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: .3rem;
}

.best-offers__time__item span:nth-of-type(2) {
  display: block;
  font-size: 1.2rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

/*==========
    our gallery
==========*/
.our-gallery {
  padding: 6rem 0 4rem;
}

.our-gallery__cards {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.our-gallery__cards__item {
  position: relative;
}

@media (min-width: 992px) {
  .our-gallery__cards__item {
    width: calc(100% / 4);
  }
}

.our-gallery__cards__item__box__img {
  height: 250px;
  position: relative;
}

.our-gallery__cards__item__box__img img {
  height: 100%;
  width: 100%;
}

.our-gallery__cards__item__box__img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 22, 0.5);
}

/*==========
    our blog
==========*/
.our-blog {
  padding: 2rem 0 3rem;
  background: var(--main-gray);
}

.our-blog__cards {
  padding-top: 2rem;
}

@media (min-width: 992px) {
  .our-blog__cards__item {
    padding: 0 2rem;
  }
}

.our-blog__cards__item__box__img {
  height: 250px;
}

@media (min-width: 992px) {
  .our-blog__cards__item__box__img {
    height: 300px;
  }
}

.our-blog__cards__item__box__img img {
  height: 100%;
  width: 100%;
}

.our-blog__cards__item__box__content {
  padding: .5rem 0 1rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.our-blog__cards__item__box__content h3 {
  padding: .5rem 0;
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  color: var(--gray);
}

.our-blog__cards__item__box__content p {
  color: #777777;
}

.our-blog__cards__item__box__content h4 {
  padding-bottom: .5rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #C89858;
}

/*==========
    our testmonial
==========*/
.testmonial {
  background: url("../imgs/testimonials-bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 3rem 0;
}

.testmonial .general-head h2 {
  color: #ffffff;
}

.testmonial__cards__item {
  padding: 5rem 0 2rem;
}

@media (min-width: 576px) {
  .testmonial__cards__item {
    padding: 5rem 1rem 2rem;
  }
}

@media (min-width: 992px) {
  .testmonial__cards__item {
    padding: 5rem 1.5rem 2rem;
  }
}

.testmonial__cards__item__box__content {
  padding: .5rem 0 1rem;
  position: relative;
  background: #ffffff;
}

.testmonial__cards__item__box__content h3 {
  padding: .5rem 0;
  padding-right: 7.5rem;
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  color: #0B0C16;
}

.testmonial__cards__item__box__content p {
  color: #777777;
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .testmonial__cards__item__box__content p {
    padding-left: 1rem;
    padding-right: 6rem;
  }
}

.testmonial__cards__item__box__content img {
  width: 90px;
  height: 95px;
  position: absolute;
  top: -60px;
  right: 20px;
  z-index: 2;
  -webkit-box-shadow: 0px 6px 10px #0B0C1699;
          box-shadow: 0px 6px 10px #0B0C1699;
  border-radius: 40px 0px;
}

/*==========
    contact
==========*/
.contact {
  padding: 3rem 0;
}

.contact .general-head h1 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  .contact .general-head p {
    width: 70%;
  }
}

.contact__info {
  overflow: hidden;
  padding-bottom: 1rem;
}

.contact__info div {
  padding-bottom: .5rem;
}

.contact__info div svg {
  color: #C89858;
  font-size: 1.3rem;
  margin-left: 0.5rem;
}

.contact__info div a {
  padding: 0 .5rem;
  color: var(--gray);
  font-size: 1rem;
  font-family: "Segoe U";
}

.contact__form {
  position: relative;
}

.contact__form__bg {
  position: absolute;
  bottom: 0;
  right: 25%;
  top: 0;
  font-size: 15rem;
  font-family: "Sitka";
  text-transform: uppercase;
  font-weight: bold;
  z-index: 0;
  color: var(--gray);
  opacity: .1;
}

.contact__form__box {
  margin-bottom: 2rem;
}

.contact__form__box input, .contact__form__box textarea {
  padding: 1rem 0;
  width: 100%;
  border-bottom: 1px solid #777777;
  color: #777777;
}

.contact__form__box input::-webkit-input-placeholder, .contact__form__box textarea::-webkit-input-placeholder {
  color: #777777;
  font-family: "Microsoft JhengHei UI";
  text-transform: capitalize;
  font-weight: bold;
}

.contact__form__box input:-ms-input-placeholder, .contact__form__box textarea:-ms-input-placeholder {
  color: #777777;
  font-family: "Microsoft JhengHei UI";
  text-transform: capitalize;
  font-weight: bold;
}

.contact__form__box input::-ms-input-placeholder, .contact__form__box textarea::-ms-input-placeholder {
  color: #777777;
  font-family: "Microsoft JhengHei UI";
  text-transform: capitalize;
  font-weight: bold;
}

.contact__form__box input::placeholder, .contact__form__box textarea::placeholder {
  color: #777777;
  font-family: "Microsoft JhengHei UI";
  text-transform: capitalize;
  font-weight: bold;
}

.contact__form__box textarea {
  height: 130px;
  resize: none;
}

/*==========
    map
==========*/
.map {
  background: url("../imgs/map.JPG");
  background-size: cover;
}

.map__content {
  height: 670px;
  width: 100%;
  background: rgba(11, 12, 22, 0.5);
  position: relative;
  padding-top: .2rem;
}

@media (min-width: 992px) {
  .map__content {
    padding-top: 1.5rem;
    height: 450px;
  }
}

.map__content__item {
  width: 200px;
  padding: 1rem .5rem;
  margin: 3rem auto;
  background: #ffffff;
  display: block;
  text-align: center;
}

.map__content__item h4 {
  color: #C89858;
  font-size: 1.3rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.map__content__item span {
  color: #0B0C16;
  font-size: 1rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

@media (min-width: 992px) {
  .map__content__item:nth-of-type(1) {
    position: absolute;
    top: 10%;
    right: 30%;
  }
  .map__content__item:nth-of-type(2) {
    position: absolute;
    top: 56%;
    right: 10%;
  }
  .map__content__item:nth-of-type(3) {
    position: absolute;
    top: 10%;
    right: 70%;
  }
  .map__content__item:nth-of-type(4) {
    position: absolute;
    top: 56%;
    right: 60%;
  }
}

.about-header {
  background: url("../imgs/header/about.jpg") no-repeat;
  background-size: cover;
}

/*==========
    branches
==========*/
.branches__cards__item {
  padding: 0 1rem;
}

.branches__cards__item__content {
  display: block;
  background: #C89858;
  padding: 1rem 2rem;
  text-align: center;
}

.branches__cards__item__content h1 {
  color: #0B0C16;
  font-size: 2rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.branches__cards__item__content p {
  color: #0B0C16;
  font-size: 1rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

/*==========
    team
==========*/
.team {
  margin-top: 3rem;
  padding: 2rem 0 5rem;
  background: var(--main-gray);
}

.team .general-head h2 {
  text-transform: capitalize;
}

.team .general-head h2::before, .team .general-head h2::after {
  display: none;
}

.team .general-head__bg {
  text-transform: capitalize;
}

.team__cards {
  padding-top: 2rem;
}

.team__cards__item {
  padding: 0 1rem;
}

.team__cards__item__box__img {
  height: 250px;
}

.team__cards__item__box__img img {
  height: 100%;
  width: 100%;
}

.team__cards__item__box__content {
  -webkit-box-shadow: 0px 6px 10px #77777761;
          box-shadow: 0px 6px 10px #77777761;
  padding: .5rem 0 1rem;
  width: 90%;
  margin: auto;
  background: #ffffff;
  text-align: center;
  position: relative;
  top: -2rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.team__cards__item__box__content h3 {
  padding-bottom: .5rem;
  font-size: 1.5rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
  color: #0B0C16;
}

.team__cards__item__box__content h4 {
  color: #C4486E;
  font-size: 1.1rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.team__cards__item:hover .team__cards__item__box__content {
  top: -3rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.services-header {
  background: url("../imgs/serv1.jpg") no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .services-header .custom-header__content {
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left;
  }
}

.services-page {
  background: var(--main-gray);
}

.services-page select {
  margin: 1rem 0;
  border: none;
  border: 2px solid #707070;
  background: transparent;
  padding: .5rem .3rem;
  width: 110px;
  color: var(--gray);
  text-transform: capitalize;
}

.services-page select option {
  color: #0B0C16;
}

.services-page select:focus {
  outline: none;
}

.services-desc {
  background: var(--main-gray);
}

.services-desc__list li {
  padding: .3rem 0;
  color: var(--gray);
}

.services-desc__list li::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  padding-left: 0.8rem;
  color: #C4486E;
}

.services-desc__book-now {
  padding-top: 2rem;
}

.services-desc__book-now__select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
}

.services-desc__book-now__select input {
  border: 1px solid #C89858;
  height: 100%;
  width: 100%;
  padding: 0 1rem;
  color: #C89858;
}

.services-desc__book-now__select input::-webkit-input-placeholder {
  color: var(--gray);
}

.services-desc__book-now__select input:-ms-input-placeholder {
  color: var(--gray);
}

.services-desc__book-now__select input::-ms-input-placeholder {
  color: var(--gray);
}

.services-desc__book-now__select input::placeholder {
  color: var(--gray);
}

.services-desc__book-now__select::after {
  position: absolute;
  top: 50%;
  left: .5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  color: var(--gray);
}

.services-desc__book-now__branch {
  height: 40px;
}

.services-desc__book-now__branch select {
  border: 1px solid #C89858;
  height: 100%;
  width: 100%;
  padding: 0 1rem;
  font-size: 1.1rem;
  text-transform: capitalize;
  outline: none;
  background: none;
  color: var(--gray);
}

.services-desc__book-now__branch select option {
  color: #0B0C16;
}

.services-desc__book-now button.primary-btn {
  width: 100%;
}

@media (min-width: 576px) {
  .services-desc__book-now button.primary-btn {
    width: auto;
  }
}

.products-header {
  background: url("../imgs/home-mua-10-min.jpg") no-repeat;
  background-size: cover;
}

.shop-products select {
  border: none;
  border: 2px solid #707070;
  background: transparent;
  padding: .5rem .3rem;
  width: 110px;
  color: var(--gray);
  text-transform: capitalize;
}

.shop-products select option {
  color: #0B0C16;
}

.shop-products select:focus {
  outline: none;
}

.product-desc {
  background: var(--main-gray);
}

.product-desc__img {
  position: relative;
}

.product-desc__img__offers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: .5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-desc__img__offers span {
  padding: .2rem .5rem;
  font-family: "Sitka";
  text-transform: capitalize;
}

.product-desc__img__offers span.new {
  color: #ffffff;
  background: #C4486E;
}

.product-desc__img__offers span.offer {
  color: #0B0C16;
  background: #C89858;
}

.product-desc__img__offers span.special {
  color: #ffffff;
  background: #0B0C16;
}

.product-desc__content .general-head h1 {
  color: #C89858;
  font-size: 2rem;
}

.product-desc__content__price {
  padding-bottom: 1rem;
  color: var(--gray);
  font-size: 1.5rem;
  font-family: "Sitka Small";
  text-transform: uppercase;
}

.product-desc__content__price span.instead {
  display: inline-block;
  padding: 0 .5rem;
  color: #C4486E;
  font-size: 1rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
}

.product-desc__content__price span.old-price {
  color: #777777;
}

.product-desc__content__code {
  padding: .5rem 0;
  color: var(--gray);
  font-size: 1rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
}

.product-desc__content__code span {
  color: #C89858;
}

.product-desc__content__cat {
  padding: .5rem 0;
  color: var(--gray);
  font-size: 1rem;
  font-family: "Sitka Small";
  text-transform: capitalize;
}

.product-desc__content__cat span {
  color: #C89858;
}

.user-control {
  background: var(--main-gray);
  padding: 10rem 0 5rem;
}

.user-control .nav-pills {
  margin-bottom: 0 !important;
  background: #C4486E;
}

.user-control .nav-pills .nav-item .nav-link {
  color: #ffffff;
  font-size: 1rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.user-control .nav-pills .nav-item .nav-link.active {
  background: #E784A2;
  color: #0B0C16;
  border-radius: 0 !important;
}

.user-control .tab-content .tab-pane {
  background: #ffffff;
}

.user-control form .form-group label:not(.error) {
  color: #0B0C16;
  font-size: 1rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.user-control form .form-group input {
  border-radius: 0 !important;
  border: none;
  border: 1px solid #707070;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.user-control form button[type="submit"] {
  background: #0B0C16;
  color: #C89858;
  font-size: 1.1rem;
  font-family: "Sitka";
  text-transform: capitalize;
  font-weight: bold;
}

.user-control form button[type="submit"]:hover {
  color: #ffffff;
  -webkit-transition: .5s;
  transition: .5s;
}

.user-profile {
  padding: 8rem 0 5rem;
}

.user-profile .user-profile__left {
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 30px;
  padding: 2rem 0;
  margin-bottom: 2rem;
  background: var(--main-white);
}

.user-profile .user-profile__left .user-profile__left__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1.3rem;
}

.user-profile .user-profile__left .user-profile__left__head .user-profile__left__head__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-gray);
  font-size: 30px;
}

.user-profile .user-profile__left .user-profile__left__head .user-profile__left__head__details {
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.user-profile .user-profile__left .user-profile__left__head .user-profile__left__head__details span {
  font-weight: bold;
  text-transform: capitalize;
  font-family: 'Tahoma';
}

.user-profile .user-profile__left .user-profile__left__head .user-profile__left__head__details span:nth-of-type(1) {
  color: var(--main-gray);
  font-size: 15px;
}

.user-profile .user-profile__left .user-profile__left__head .user-profile__left__head__details span:nth-of-type(2) {
  color: #09539D;
  font-size: 13px;
}

.user-profile .user-profile__left .user-profile__left__cat ul {
  padding: 0 10px;
}

.user-profile .user-profile__left .user-profile__left__cat ul li {
  padding: 5px 0;
}

.user-profile .user-profile__left .user-profile__left__cat ul li a {
  padding: 8px 10px;
  display: block;
  width: 100%;
  color: var(--main-gray);
  font-family: 'Tahoma';
  font-weight: bold;
  text-transform: capitalize;
  border: 1px solid #707070;
  border-radius: 10px;
  border-right: 8px solid #C89858;
  text-align: center;
  font-size: 15px;
  -webkit-transition: .5s;
  transition: .5s;
}

.user-profile .user-profile__left .user-profile__left__cat ul li a.active {
  color: #C89858;
}

.user-profile .user-profile__left .user-profile__left__cat ul li a:hover {
  text-decoration: none;
  color: #C89858;
  -webkit-transition: .5s;
  transition: .5s;
}

.user-profile .user-profile__right {
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 30px;
  padding: .5rem 0;
  background: var(--main-white);
}

@media (min-width: 576px) {
  .user-profile .user-profile__right {
    padding: .5rem 2rem;
  }
}

.user-profile .user-profile__right .user-profile__right__head {
  color: var(--main-gray);
  padding: 1rem 0;
  font-family: 'Tahoma';
  font-weight: bold;
  font-size: 20px;
  text-transform: capitalize;
}

@media (min-width: 576px) {
  .user-profile .user-profile__right .user-profile__right__head {
    font-size: 25px;
  }
}

.user-profile .user-profile__right .user-profile__right__head.contain-border {
  border-top: 1px solid #ddd;
}

.user-profile .user-profile__right .user-profile__right__details ul {
  padding-bottom: 1.2rem;
}

.user-profile .user-profile__right .user-profile__right__details ul li {
  padding: 3px 0;
}

.user-profile .user-profile__right .user-profile__right__details ul li span:nth-of-type(1) {
  color: var(--main-gray);
  font-family: 'Tahoma';
  font-weight: bold;
  text-transform: capitalize;
  min-width: 120px;
  display: inline-block;
  font-size: 14px;
}

.user-profile .user-profile__right .user-profile__right__details ul li span:nth-of-type(2) {
  color: var(--main-gray);
  font-family: 'Tahoma';
  font-weight: bold;
  text-transform: capitalize;
  font-size: 14px;
}

.user-profile .user-profile__right .user-profile__right__details ul li textarea.disable {
  width: 100%;
  resize: none;
  height: 100px;
  margin-top: 1rem;
  border: 1px solid #707070;
  opacity: .5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  color: var(--gray);
}

.user-profile .user-profile__right .user-profile__right__details .user-profile__right__details__right {
  height: 100%;
  padding: .3rem 0 1rem;
}

.user-profile .user-profile__right .user-profile__right__details .user-profile__right__details__right button {
  color: var(--main-white);
  background: var(--main-gray);
  padding: 8px 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Tahoma';
  width: 100%;
  cursor: pointer;
}

@media (min-width: 767px) {
  .user-profile .user-profile__right .user-profile__right__details .user-profile__right__details__right button {
    width: auto;
  }
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span, .user-profile .user-profile__right .user-profile__right__details .edit-address span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 15px;
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span input, .user-profile .user-profile__right .user-profile__right__details .edit-address span input {
  border: none;
  border: 1px solid #707070;
  padding: 7px 15px;
  display: inline-block;
  color: var(--main-gray);
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span input:focus, .user-profile .user-profile__right .user-profile__right__details .edit-address span input:focus {
  outline: none;
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span input::-webkit-input-placeholder, .user-profile .user-profile__right .user-profile__right__details .edit-address span input::-webkit-input-placeholder {
  color: var(--main-gray);
  text-transform: capitalize;
  font-family: 'sitka';
  font-weight: bold;
  font-size: 12px;
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span input:-ms-input-placeholder, .user-profile .user-profile__right .user-profile__right__details .edit-address span input:-ms-input-placeholder {
  color: var(--main-gray);
  text-transform: capitalize;
  font-family: 'sitka';
  font-weight: bold;
  font-size: 12px;
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span input::-ms-input-placeholder, .user-profile .user-profile__right .user-profile__right__details .edit-address span input::-ms-input-placeholder {
  color: var(--main-gray);
  text-transform: capitalize;
  font-family: 'sitka';
  font-weight: bold;
  font-size: 12px;
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span input::placeholder, .user-profile .user-profile__right .user-profile__right__details .edit-address span input::placeholder {
  color: var(--main-gray);
  text-transform: capitalize;
  font-family: 'sitka';
  font-weight: bold;
  font-size: 12px;
}

.user-profile .user-profile__right .user-profile__right__details .edit-user span textarea, .user-profile .user-profile__right .user-profile__right__details .edit-address span textarea {
  width: 100%;
  resize: none;
  height: 100px;
  border: 1px solid #707070;
  padding: 7px 15px;
  color: var(--primary);
}
/*# sourceMappingURL=main-rtl.css.map */