@font-face {
  font-family: "Playwrite IE";
  src: url("../fonts/Playwrite_IE/PlaywriteIE-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 200 800;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
}

/**
 * File: styles.css
 * Description : Contains all necessary styling for the Cobbler Master -  Shoe Repair and Leather Accessories Service Center.
 * Author: xenioushk
 * URL: https://themeforest.net/item/cobbler-mastershoe-repair-and-leather-accessories-service-center/20722930
 * Project: Cobbler Master -  Shoe Repair and Leather Accessories Service Center.
 * Version: 1.0.2
 * Last Update: 24-09-2023
 **/
/*========================================================================*/
/*   TABLE OF CONTENT
/*========================================================================*/
/*
/*      01. GENERAL STYLING
/*      02. HEADER
/*      03. MAIN NAVIGATION MENU
/*      04. HOME PAGE
/*      05. BLOG LAYOUT
/*      06. BLOG SINGLE PAGE
/*      07. EVENTS/CAMPAIGN PAGE
/*      08. ABOUT US PAGE
/*      09. GALLERY PAGE
/*      10. SERVICE PAGE
/*      11. 404 PAGE
/*      12. FOOTER
/*      13. SIDEBAR & WIDGETS
/*      14. RESPONSIVE STYLING
/*
/*========================================================================*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800");

/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* Remove margins for navigation lists */
nav ul,
nav li {
  margin: 0;
  list-style: none;
  list-style-image: none;
}

small {
  font-size: 85%;
}

strong,
th {
  font-weight: bold;
}

td {
  vertical-align: top;
}

textarea {
  overflow: auto;
}

/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css ; */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/***********************************************************************************************/
/* 01. GENERAL STYLING  */
/***********************************************************************************************/
body {
  font:
    16px/28px "Manrope",
    sans-serif;
  color: #6e6e6e;
  font-style: normal;
  font-weight: 300;
  position: relative;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

a {
  color: #240c35;
  text-decoration: none;
  -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;
}

a:hover,
a:focus {
  color: #3b1754;
  text-decoration: none;
}

blockquote {
  font: "Manrope", sans-serif;
  color: #6e6e6e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #f7f7f7;
  line-height: 32px;
  margin: 0 0 16px 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 24px;
}

h2 + p {
  margin-top: 12px;
}

h3 {
  font-size: 20px;
}

h3 + p {
  margin-top: 12px;
}

h4 {
  font-size: 18px;
}

h4 + p {
  margin-top: 12px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 15px;
}

* + p {
  margin-top: 12px;
}

p {
  font:
    16px/28px "Manrope",
    sans-serif;
  color: #6e6e6e;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="button"],
textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

strong {
  font-weight: 600;
}

/*----- CUSTOM MARGIN ----*/
.no-margin {
  margin: 0px !important;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-12 {
  margin-top: 12px !important;
}

.margin-top-24 {
  margin-top: 24px !important;
}

.margin-top-32 {
  margin-top: 32px !important;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-12 {
  margin-bottom: 12px !important;
}

.margin-bottom-24 {
  margin-bottom: 24px !important;
}

.margin-bottom-32 {
  margin-bottom: 32px !important;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-right-0 {
  margin-right: 0px;
}

/*----- CUSTOM PADDING ----*/
.no-gutter [class^="col-"] {
  padding: 0px;
}

.no-padding {
  padding: 0px !important;
}

.padding-left-0 {
  padding-left: 0px;
}

.padding-right-0 {
  padding-right: 0px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-11 {
  padding-right: 11px;
}

/*----- PRE LOADER ----*/
#preloader {
  background: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

#preloader span {
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  position: absolute;
  top: 50%;
  display: none;
}

#backTop {
  width: 16px;
  height: 16px;
  padding: 10px;
  border-radius: 0px;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 999999999;
  display: none;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

#backTop:hover {
  opacity: 1;
}

#backTop:after {
  position: absolute;
  content: "-";
  width: 16px;
  height: 16px;
  text-align: center;
  top: 0;
  left: 0;
  color: #fff;
}

#backTop.custom {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background-color: #3b1754;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M18 15l-6-6-6 6"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  border: 0px solid #833bc0;
  -webkit-transition: 0.2s 0.2s ease-out;
  -moz-transition: 0.2s 0.2s ease-out;
  -o-transition: 0.2s 0.2s ease-out;
  transition: 0.2s 0.2s ease-out;
  right: 18px !important;
  bottom: 18px !important;
}

#backTop.custom:hover {
  background-color: #ffffff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%233b1754" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M18 15l-6-6-6 6"/></svg>');
  border: 0px solid #260e37;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 78px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff !important;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 999999998;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
}

@media (max-width: 767px) {
  #backTop.custom {
    right: 14px !important;
    bottom: 14px !important;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 66px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

.text-primary-color {
  color: #3b1754;
}

.text-light-color {
  color: #ffffff;
}

.text-dark-color {
  color: #111111;
}

.text-highlighter-white {
  font-weight: 500;
}

.text-bold {
  font-weight: bold;
}

.text-highlighter {
  color: #3b1754;
}

.text-highlighter-white {
  color: #ffffff;
}

.alert,
.progress,
.pre {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

hr {
  margin: 0px;
  border: 0px;
  height: 1px;
  background: #f2f2f2;
}

.no-border {
  border: 0px !important;
}

.inline li {
  display: inline-block;
  margin-right: 24px;
}

.inline li:last-child {
  margin-right: 0;
}

.narrow-p {
  margin: 0 auto 1.5em;
  width: 30%;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.cb {
  clear: both;
}

.db {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

span.border-light-dotted {
  border-bottom: 1px dotted #3b1754;
}

span.border-bold-dashed {
  border-bottom: 2px dashed #3b1754;
}

/*-----  BLOCKQUOTE ----*/
blockquote {
  padding: 12px 26px 26px 42px;
  margin: 0 0 20px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  background: #ffffff;
  position: relative;
  border: 1px solid #cccccc;
  border-left: 4px solid #4d4d4d;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

blockquote:before {
  display: block;
  position: absolute;
  left: 12px;
  top: 14px;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 15px;
  color: #d6d6d6;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

blockquote p {
  font-size: 14px;
  line-height: 24px;
}

blockquote:hover {
  border: 1px solid #a6a6a6;
  border-left: 4px solid #4d4d4d;
}

blockquote.testimonial {
  background: #ffffff;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}

cite {
  text-align: right;
  display: block;
}

cite:before {
  margin-right: 4px;
}

.bq-author {
  padding: 16px 0 0 110px;
  position: relative;
}

.bq-author:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 69px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 0 solid transparent;
  border-top: 22px solid #dcdcdc;
  z-index: 2;
}

.bq-author:after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 70px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 0 solid transparent;
  border-top: 20px solid #fff;
  z-index: 3;
}

.bq-author h6 {
  margin-bottom: 6px;
}

.bq-author .bq-author-info {
  font-size: 12px;
}

/*----- ORDERED/UNORDERED LISTS ----*/
ol li {
  padding: 0;
  margin: 0 0 10px 25px;
  list-style-type: decimal;
}

.section-container {
  margin: 24px 0 0 0;
}

.section-light-heading {
  font-family: "Manrope", sans-serif;
  font-size: 85px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.15em;
  position: absolute;
  text-transform: uppercase;
  width: 100%;
  color: #808080;
  opacity: 0.06;
}

.section-heading {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-family: "Manrope", sans-serif;
  color: #808080;
  margin-bottom: 24px;
  position: relative;
}

.section-heading:after {
  position: absolute;
  width: 60px;
  height: 1px;
  content: "";
  left: 0;
  bottom: -12px;
  background: transparent;
  border-bottom: 2px dashed #3b1754;
}

.section-heading-alt {
  color: #ffffff;
}

.section-heading-alt span {
  font-style: 400;
  color: #ffffff;
}

.section-subheading {
  position: relative;
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #555555;
}

.section-subheading span {
  font-style: 400;
  color: #555555;
}

.section-subheading-alt {
  color: #ffffff;
}

/*----- ACCORDION ----*/
.accordion .panel {
  margin-bottom: 3px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

.accordion .panel .panel-title a {
  display: block;
}

span.label {
  margin-right: 1px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  font-size: 100%;
}

/*----- BUTTONS ----*/
#btn,
.btn {
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#btn:hover,
.btn:hover {
  color: #000000;
}

.btn-custom {
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #cccccc;
  background: #3b1754;
  color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 12px 14px;
}

.btn-custom:hover {
  border-color: #a6a6a6;
  color: #3b1754;
  background: #ffffff;
}

.btn-custom-inverse {
  text-align: center;
  border: 1px solid #cccccc;
  color: #3b1754;
  background: #ffffff;
  padding: 12px 14px;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-custom-inverse:hover {
  background: #3b1754;
  color: #ffffff;
}

a.btn-load-more {
  margin-bottom: -36px;
  margin-top: 48px;
  background: transparent;
  color: #3b1754;
  background: #ffffff;
  border: 1px solid #3b1754;
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

a.btn-load-more:hover {
  color: #ffffff;
  background: #3b1754;
  border: 1px solid #3b1754;
}

a.btn-about {
  font-size: 16px;
  margin-top: 16px;
  background: #3b1754;
  border: 2px solid #3b1754;
  color: #ffffff;
  height: 42px;
  line-height: 24px;
  padding-left: 12px;
  padding-right: 12px;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-align: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

a.btn-about:hover {
  background: #240c35;
  border: 2px solid #3b1754;
  color: #ffffff;
}

.button {
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: white;
  font-weight: bold;
  height: 3em;
  line-height: 1em;
  padding: 1em;
}

.small-button {
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: #000000;
  font-weight: bold;
  height: 0;
  line-height: 0;
  padding: 1em 1em;
  margin: 6px 0;
  width: 100%;
}

/*----- CTA VIDEO  ----*/
.video-icon {
  border: 5px solid #111111;
  color: #3b1754;
  width: 120px;
  height: 120px;
  font-size: 110px;
  line-height: 112px;
  text-align: center;
  margin: 0 auto 24px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.video-icon > i {
  margin-left: 2px;
}

.video-icon:hover {
  color: #111111;
  border: 5px solid #3b1754;
}

.video-icon-invert {
  border: 5px solid #cccccc;
  color: #ffffff;
  width: 120px;
  height: 120px;
  font-size: 110px;
  line-height: 112px;
  text-align: center;
  margin: 0 auto 24px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.video-icon-invert > i {
  margin-left: 2px;
}

.video-icon-invert:hover {
  color: #ffffff;
  border: 5px solid #3b1754;
}

/*----- CTA BUTTONS  ----*/
.btn-cta {
  background: #2c2c2c;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 12px 24px;
  position: relative;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-cta:hover {
  color: #ffffff;
  background-color: #3b1754;
}

.btn-square {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-rounded {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-transparent {
  background: rgba(0, 0, 0, 0.2);
  color: #2c2c2c;
}

.btn-bordered {
  border: 1px solid #2c2c2c;
}

.btn-bordered:hover {
  border: 1px solid #3b1754;
}

.btn-invert {
  color: #ffffff;
  background-color: #3b1754;
}

.btn-invert:hover {
  background: #fafafa;
  color: #111111;
}

.btn-cta-1 {
  background: #fafafa;
  color: #111111;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 24px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-out 0s;
  margin-top: 6px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-cta-1:hover {
  color: #ffffff;
  background-color: #1a1a1a;
}

.btn-cta-2 {
  background: #2c2c2c;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 24px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-out 0s;
  margin-top: 6px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-cta-2:hover {
  background-color: #5f5f5f;
  color: #ffffff;
}

.btn-appointment-submit {
  background: #3b1754;
  border: 2px solid #3b1754;
  color: #ffffff;
  display: inline-block;
  font-weight: 400;
  padding: 12px 16px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-out 0s;
}

.btn-appointment-submit:focus,
.btn-appointment-submit:hover {
  background-color: #240c35;
  color: #ffffff;
}

.btn-theme {
  background: #3b1754;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-out 0s;
  margin-top: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-theme:hover {
  background-color: #1d0a2b;
  color: #ffffff;
}

.btn-theme2 {
  background: #d8a9c2;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-out 0s;
  margin-top: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-theme2:hover {
  background-color: #1d0a2b;
  color: #ffffff;
}

/*----- COMMENT BUTTON ----*/
#comment_btn {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #6e6e6e;
  padding: 6px 12px;
}

#comment_btn:hover {
  border: 1px solid #3b1754;
  color: #3b1754;
  background: transparent;
}

#contact-form .p-errors label {
  color: lightcoral;
}

#contact-form .p-errors input[type="text"],
#contact-form .p-errors input[type="email"],
#contact-form .p-errors textarea {
  border-color: lightcoral;
}

.wp-caption {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin-bottom: 0px;
  font-size: 12px;
  font-style: italic;
  line-height: 34px;
}

.sticky {
  margin-bottom: 21px;
  background: #ffffff;
}

/*----- SECTION OVERLAY  ----*/
.section-theme-bg-overlay {
  position: relative;
  clear: both;
}

.section-theme-bg-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(57, 105, 247, 0.8);
  content: "";
  width: 100%;
  height: 2000px;
}

.section-white-bg-overlay {
  position: relative;
  clear: both;
}

.section-white-bg-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  width: 100%;
  height: 2000px;
}

.section-black-bg-overlay {
  position: relative;
  clear: both;
}

.section-black-bg-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(83, 83, 83, 0.9);
  content: "";
  width: 100%;
  height: 2000px;
}

/*------------------------------ Gallery Caption  ---------------------------------*/
/*------------------------------ By Post Author ---------------------------------*/
/***********************************************************************************************/
/* 02. HEADER */
/***********************************************************************************************/
.main-header {
  height: auto;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .sticky-wrapper {
  background: #ffffff;
}

.main-header .navgiation-wrapper {
  background: #ffffff;
}

.main-header .top-bar {
  overflow: hidden;
  background: #f2f2f2;
  line-height: 36px;
  color: #6e6e6e;
  font-size: 15px;
}

.main-header .top-bar i {
  color: #3b1754;
  margin-right: 5px;
  display: inline-block;
}

.main-header .top-bar a {
  color: #3b1754;
}

.main-header p.top-bar-info {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 36px;
  padding: 6px 0;
  font-weight: 600;
}

.main-header a.free-estimate {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0px 24px;
  background: #3b1754;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.main-header a.free-estimate:hover {
  background: #240c35;
}

.main-header .top-bar-social {
  color: #ffffff;
  font-size: 16px;
  border: 0px solid #fff;
  letter-spacing: 1px;
  margin-top: 14px;
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.main-header .top-bar-social a {
  display: inline-block;
  -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;
}

.main-header .top-bar-social a i.fa {
  width: 32px;
  height: 32px;
  color: #3b1754;
  text-align: center;
  line-height: 32px;
  font-size: 18px;
  position: relative;
  top: -2px;
}

.main-header .top-bar-social a:hover i.fa {
  color: #6e6e6e;
}

.sticky-header {
  height: auto;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.sticky-header .top-bar {
  background: #333333;
}

.sticky-header .navgiation-wrapper {
  background: rgba(255, 255, 255, 0.97);
}

.sticky-header .sticky-wrapper {
  background: transparent !important;
}

.logo {
  margin-top: 32px;
  margin-bottom: 0;
}

.header-container {
  border-bottom: 0px solid #eeeeee;
  padding-bottom: 0px;
  box-shadow: 0px 0px 2px -4px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s 0.2s ease-out;
  -moz-transition: 0.2s 0.2s ease-out;
  -o-transition: 0.2s 0.2s ease-out;
  transition: 0.2s 0.2s ease-out;
}

/***********************************************************************************************/
/* 03. MAIN NAVIGATION MENU */
/***********************************************************************************************/
a.logo {
  margin-top: 6px;
  display: inline-block;
}

a.logo img {
  display: block;
}

.navbar-default {
  border: none;
  background: transparent;
  margin-bottom: 0px;
  padding: 0 !important;
}

.navbar-default .navbar-nav {
  margin-top: 10px;
}

.navbar-default .navbar-nav > li {
  margin-left: 20px;
}

.navbar-default .navbar-nav > li > a {
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 22px;
  line-height: 32px;
  color: #555555;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #3b1754;
}

.navbar-default .navbar-nav > li > a.nav-btn-appointment {
  border: 0px;
  font-size: 14px;
  display: inline-block;
  background: #3b1754;
  color: #ffffff !important;
  line-height: 22px !important;
  padding: 8px 16px !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  text-align: left;
  border-radius: 6px;
  margin-top: 12px;
  margin-bottom: 12px;

  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.navbar-default .navbar-nav > li > a.nav-btn-appointment:hover {
  background: #240c35;
}

.navbar-default .navbar-nav li.drop {
  position: relative;
}

.navbar-default .navbar-nav li.drop a:after {
  content: "";
  font-family: fontawesome;
  position: absolute;
  right: -3px;
  top: 15px;
  font-weight: normal;
}

.navbar-default .navbar-nav li ul.drop-down {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 69px;
  left: 0;
  width: 190px;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  text-align: left;
  -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;
}

.navbar-default .navbar-nav li ul.drop-down li {
  list-style: none;
  display: block;
  margin: 0;
}

.navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  top: 0px;
  left: 100%;
  border-bottom: none;
}

.navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 a:after {
  content: "";
}

.navbar-default .navbar-nav li ul.drop-down li a {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  display: block;
  color: #555555;
  padding: 12px 20px;
  text-transform: uppercase;
  background: #f7f7f7;
  margin: 0;
  border: none;
}

.navbar-default .navbar-nav li ul.drop-down li a:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
}

.navbar-default .navbar-nav li ul.drop-down li a:hover {
  background: #3b1754;
  color: #ffffff;
}

.navbar-default .navbar-nav li ul.drop-down li.drop a {
  display: inline-block;
  text-decoration: none;
  display: block;
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  text-transform: uppercase;
  margin: 0;
  border: none;
}

.navbar-default .navbar-nav li ul.drop-down li.drop a:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
}

.navbar-default .navbar-nav li ul.drop-down li.drop a:hover {
  color: #ffffff;
}

.navbar-default .navbar-nav li ul.drop-down li:hover ul.drop-down.level3 {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.navbar-default
  .navbar-nav
  li
  ul.drop-down
  li:hover
  ul.drop-down.level3
  a:after {
  content: "";
}

.navbar-default .navbar-nav li ul.drop-down li:last-child {
  border-bottom: none;
}

.navbar-default .navbar-nav li:hover > ul.drop-down {
  visibility: visible;
  opacity: 1;
}

header.one-page .navbar-nav > li {
  margin-left: 0;
}

header.one-page .navbar-nav > li > a span {
  color: #3b1754;
}

.stuck {
  position: fixed;
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 99;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  padding: 0px;
  margin: 0 !important;
  -webkit-box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.03);
}

.menu-container {
  border: 5px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
  padding: 0px 20px;
}

.menu-container .navbar-nav li ul.drop-down {
  top: 66px;
}

/***********************************************************************************************/
/* 04. HOME PAGE */
/***********************************************************************************************/
.section-content-block {
  padding: 130px 0 130px 0;
  background: #ffffff;
}

.section-pure-white-bg {
  background: #ffffff !important;
}

.section-pure-black-bg {
  background: #333333 !important;
}

.section-secondary-bg {
  background: #eeeeee !important;
}

.section-heading-wrapper {
  margin-bottom: 60px;
}

.section-heading-wrapper h2 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 0em;
  font-weight: 800;
  color: #555555;
  margin-bottom: 12px;
}

.section-heading-wrapper h3 {
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #3b1754;
  line-height: 32px;
}

.section-heading-wrapper-alt {
  margin-bottom: 60px;
}

.section-heading-wrapper-alt h2 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 0em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-heading-wrapper-alt h3 {
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #3b1754;
  line-height: 32px;
}

.home-page-section-heading span {
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
  color: #5e5e5e;
}

.home-page-section-sub-heading {
  font-size: 26px;
  line-height: 32px;
  font-style: italic;
  color: #777777;
}

/***********************************************************************************************/
/*  HOME PAGE 01 */
/***********************************************************************************************/
.slider-wrap {
  clear: both;
}

#slider_1 {
  text-align: center;
}

#slider_1 .item img {
  display: block;
  width: 100%;
  height: auto;
}

#slider_1 .slider_item_container {
  position: relative;
  text-align: center;
  width: 100%;
  min-height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  background: #000000;
}

#slider_1 .slider-content {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 100%;
}

#slider_1 .slider-content i.icon:before,
#slider_1 .slider-content i.icon:after {
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.7);
  color: #3b1754;
  display: inline-block;
  font-size: 100px;
  height: 150px;
  line-height: 150px;
  text-align: center;
  width: 150px;
  margin-bottom: 30px;
  margin-left: 0;
}

#slider_1 .slider-content h2 {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  line-height: 72px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

#slider_1 .slider-content h2 span {
  padding: 0 3px;
  font-weight: 800;
  color: #e5e5e5;
}

#slider_1 .slider-content h3 {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}

#slider_1 .slider-content .content-left {
  text-align: left;
}

#slider_1 .slider-content .content-center {
  text-align: center;
}

#slider_1 .slider-content .content-center h2 {
  position: relative;
}

#slider_1 .slider-content .content-center h2:after {
  left: 50%;
  margin-left: -50px;
}

#slider_1 .slider-content .content-right {
  text-align: right;
}

#slider_1 .slider-content .content-right h2 {
  position: relative;
}

#slider_1 .slider-content .content-right h2:after {
  left: initial;
  right: 0;
  margin-left: -50px;
}

#slider_1 .slider-content p {
  letter-spacing: 0.03em;
  fon-size: 20px;
  color: #6e6e6e;
  line-height: 30px;
}

#slider_1 .slider-content .slider-button {
  display: block;
  margin-top: 24px;
}

#slider_1 .slider-content .slider-button a.btn-slider {
  border: 0px;
  font-size: 18px;
  display: inline-block;
  background: #3b1754;
  color: #ffffff;
  line-height: 28px;
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

#slider_1 .slider-content .slider-button a.btn-slider:hover {
  background: #240c35;
}

#slider_1 .owl-nav {
  clear: both;
  color: #000000;
  font-size: 22px;
  line-height: 42px;
  margin-top: 0px;
  opacity: 1;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -32px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#slider_1 .owl-nav div.owl-prev {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  left: 6px;
  width: 60px;
  height: 60px;
  font-size: 42px;
  line-height: 52px;
  background: #fafafa;
  color: #3b1754;
  float: left;
}

#slider_1 .owl-nav div.owl-next {
  float: right;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  right: 6px;
  width: 60px;
  height: 60px;
  font-size: 42px;
  line-height: 52px;
  background: #fafafa;
  color: #3b1754;
}

#slider_1 .owl-nav:hover {
  opacity: 0.8;
}

#slider_1 .owl-dots {
  margin: 0;
  position: absolute;
  bottom: 24px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  text-align: center;
}

#slider_1 .owl-dots .owl-dot {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 2px;
  width: 16px;
  height: 8px;
  background: #fafafa;
  margin: 0 4px;
}

#slider_1 .owl-dots .owl-dot span {
  display: none;
}

#slider_1 .owl-dots .active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 24px;
  background: #3b1754;
}

#slider_1 .owl-dots .active span {
  display: none;
}

.about-us-wrapper {
  padding: 24px 24px 42px 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.about-us-wrapper h2 {
  font-size: 48px;
  line-height: 35px;
  font-weight: 700;
  color: #321448;
  letter-spacing: 4px;
}

.about-highlight {
  background: #fafafa;
  padding: 8px;
  text-align: center;
  -webkit-transition: "all" 0.5s ease-out;
  -moz-transition: "all" 0.5s ease-out;
  -o-transition: "all" 0.5s ease-out;
  transition: "all" 0.5s ease-out;
}

.about-highlight .highlight-box {
  border: 1px solid #eee;
  padding: 25px 15px;
}

.about-highlight .highlight-box h3 {
  font-size: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #6e6e6e;
}

.about-highlight:hover .highlight-box {
  border: 1px solid #3b1754;
}

.about-img {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.about-img img {
  vertical-align: middle;
}

.about-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3000px;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.about-img a {
  background: rgba(0, 0, 0, 0.8);
  border: 5px solid #3b1754;
  color: #e6e6e6;
  border-radius: 100%;
  font-size: 40px;
  height: 100px;
  left: 50%;
  line-height: 70px;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100px;
  margin-left: -50px;
  margin-top: -50px;
}

.about-img a > i {
  margin-left: 8px;
}

.about-img a:hover {
  background: rgba(0, 0, 0, 0.5);
  border: 5px solid #e6e6e6;
  color: #3b1754;
}

.about-details .about-heading {
  position: relative;
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #555555;
}

.about-details ul {
  list-style-type: none;
  margin-bottom: 0px;
}

.about-details ul li {
  padding-left: 24px;
  position: relative;
  line-height: 36px;
}

.about-details ul li:before {
  content: "";
  display: inline-block;
  width: 8px;
  background: #3b1754;
  border: 2px solid #3b1754;
  margin: 0 11px 0 0;
  height: 8px;
  position: absolute;
  top: 14px;
  left: 0px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.section-about-us {
  background: #ffffff;
}

.section-about-us .section-heading-wrapper {
  margin-bottom: 48px;
}

.section-about-us .section-heading-wrapper h3 {
  color: #3b1754;
}

.section-about-us .about-details {
  background: transparent;
  padding: 0 28px 0 0;
  border-radius: 0;
  box-shadow: none;
}

.section-about-us .about-details p {
  font-size: 16px;
  line-height: 2;
  color: #6e6e6e;
  margin-bottom: 18px;
}

.section-about-us .about-details p:last-child {
  margin-bottom: 0;
}

.section-about-us .about-img {
  border-radius: 16px;
  background: transparent;
  padding: 0;
  box-shadow: 0 16px 42px rgba(59, 23, 84, 0.12);
}

.section-about-us .about-img:before {
  display: none;
}

.section-about-us .about-img img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 16px;
}

.section-about-us .about-img--zoomed img {
  transform: scale(1.7);
  transform-origin: center center;
}

@media (min-width: 992px) {
  .section-about-us .row.wow.fadeInUp {
    display: flex;
    align-items: center;
  }

  .section-about-us .row.wow.fadeInUp > .col-lg-6:first-child {
    flex: 0 0 44%;
    max-width: 44%;
  }

  .section-about-us .row.wow.fadeInUp > .col-lg-6:last-child {
    flex: 0 0 56%;
    max-width: 56%;
  }

  .section-about-us .about-img {
    margin-left: 26px;
  }
}

@media (max-width: 991px) {
  .section-about-us .about-details {
    margin-bottom: 24px;
    padding: 0;
  }

  .section-about-us .about-details p {
    font-size: 16px;
    line-height: 1.9;
  }
}

/*-----  SERVICE LAYOUTS ----*/
.section-service-bg {
  background-image: url("../images/service_bg.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.service-layout-1 {
  overflow: hidden;
  margin: 0 0 32px 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.service-layout-1 img {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.service-layout-1 h2 {
  padding-top: 12px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #6e6e6e;
  font-weight: 700;
  text-transform: uppercase;
}

.service-layout-1 a {
  display: block;
}

.service-layout-1:hover img {
  opacity: 0.8;
}

.service-carousel {
  clear: both;
}

.service-carousel [class^="col-"] {
  width: 100%;
}

.service-carousel .owl-nav {
  clear: both;
  color: #000000;
  font-size: 22px;
  line-height: 42px;
  margin-top: -42px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-carousel .owl-nav div.owl-prev {
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  left: -4px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #3b1754;
  color: #ededed;
  float: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.service-carousel .owl-nav div.owl-next {
  text-align: center;
  float: right;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  right: -4px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #3b1754;
  color: #ededed;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.service-carousel .owl-nav:hover {
  opacity: 0.8;
}

.service-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.service-carousel .owl-dots .owl-dot {
  display: inline-block;
  padding: 2px;
  width: 24px;
  height: 8px;
  background: transparent;
  border: 1px solid #cccccc;
  margin: 0 4px;
}

.service-carousel .owl-dots .owl-dot span {
  display: block;
}

.service-carousel .owl-dots .active span {
  padding: 0px;
  width: 18px;
  height: 2px;
  background: #56257e;
}

.service-carousel:hover .owl-nav {
  opacity: 1;
}

/*-----  PROCESS BLOCK 01 ----*/
.section-process-bg {
  background: transparent;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.section-process-bg .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-process-bg .process-simple-video {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 16 / 9;
}

.section-process-bg .process-simple-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 767px) {
  .section-process-bg .process-simple-video {
    aspect-ratio: auto;
  }

  .section-process-bg .process-simple-video video {
    height: auto;
    object-fit: initial;
    background: transparent;
  }
}

.process-step-1 {
  text-align: left;
  margin-top: 0px;
  margin-bottom: 32px;
  position: relative;
  padding: 12px 12px 6px;
  background: #f7f7f7;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.process-step-1 .icon {
  bottom: 0;
  color: #d9d9d9;
  font-size: 100px;
  height: 100px;
  left: 0;
  line-height: 60px;
  margin-bottom: 50px;
  position: absolute;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100px;
  opacity: 0.15;
}

.process-step-1 figure {
  margin-bottom: 24px;
  overflow: hidden;
}

.process-step-1 figure img {
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
  display: block;
  transform: scale(1);
}

.process-step-1 h3 {
  text-transform: capitalize;
  font-size: 24px;
  color: #6e6e6e;
  font-weight: 500;
  font-style: italic;
}

.process-step-1 h3 span {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 800;
  color: #3b1754;
  font-style: normal;
}

.process-step-1:hover {
  clear: both;
  background: #f5f5f5;
}

.process-step-1:hover h3 {
  color: #3b1754;
}

.process-step-1:hover h3 span {
  color: #6e6e6e;
}

.process-step-1:hover figure {
  overflow: hidden;
}

.process-step-1:hover figure img {
  transform: rotate(15deg) scale(1.3);
}

/*----- TEAM LAYOUT ----*/
/*-----  TEAM LAYOUT 01 ----*/
.team-layout-1 {
  text-align: center;
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
  position: relative;
  overflow: hidden;
}

.team-layout-1 .team-member {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.team-layout-1 .team-member a {
  display: block;
}

.team-layout-1 .team-member a img {
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
  vertical-align: middle;
  transform: scale(1);
}

.team-layout-1 .team-info {
  padding: 20px 16px 12px;
  position: relative;
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
}

.team-layout-1 .team-info h3 {
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #111111;
  position: relative;
}

.team-layout-1 .team-info h4 {
  color: #808080;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-layout-1 .team-info .team-seperator {
  background: #3b1754;
  height: 1px;
  width: 40px;
  display: inline-block;
  margin: 6px 0 3px;
}

.team-layout-1 .team-info .team-social-share {
  opacity: 0;
  text-align: center;
  width: 180px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -90px;
  padding-top: 15px;
}

.team-layout-1 .team-info .team-social-share a {
  background: #3b1754;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  width: 32px;
  margin-bottom: 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.team-layout-1 .team-info .team-social-share a:hover {
  background: #ededed;
  color: #3b1754;
}

.team-layout-1:hover .team-social-share {
  opacity: 1;
  top: -100px;
}

.team-layout-1:hover .team-member img {
  transform: scale(1.07);
}

.team-carousel {
  clear: both;
}

.team-carousel [class^="col-"] {
  width: 100%;
}

.team-carousel .owl-nav {
  clear: both;
  color: #000000;
  font-size: 22px;
  line-height: 42px;
  margin-top: -42px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-carousel .owl-nav div.owl-prev {
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  left: -4px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #3b1754;
  color: #ededed;
  float: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.team-carousel .owl-nav div.owl-next {
  text-align: center;
  float: right;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  right: -4px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #3b1754;
  color: #ededed;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.team-carousel .owl-nav:hover {
  opacity: 0.8;
}

.team-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}

.team-carousel .owl-dots .owl-dot {
  display: inline-block;
  padding: 2px;
  width: 24px;
  height: 8px;
  background: transparent;
  border: 1px solid #cccccc;
  margin: 0 4px;
}

.team-carousel .owl-dots .owl-dot span {
  display: block;
}

.team-carousel .owl-dots .active span {
  padding: 0px;
  width: 18px;
  height: 2px;
  background: #56257e;
}

.team-carousel:hover .owl-nav {
  opacity: 1;
}

/*----- PRICING TABLE LAYOUTS ----*/
.section-pricing-table-bg {
  background-image: url("../images/pricing_table_bg.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/*----- PRICING TABLE LAYOUT 01 ----*/
.price-table-layout-1 {
  background-color: #f9f9f9;
  border: 1px solid #e6e6e6;
  padding: 24px 16px;
}

.price-table-layout-1 .price-table-heading .title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6e6e6e;
  margin-bottom: 32px;
}

.price-table-layout-1 .price-table-heading .currency {
  color: #3b1754;
  font-size: 32px;
  line-height: 28px;
  font-weight: 500;
  vertical-align: top;
}

.price-table-layout-1 .price-table-heading .price {
  color: #3b1754;
  font-size: 42px;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

.price-table-layout-1 .price-table-info p {
  margin-top: 32px;
}

.price-table-layout-1 a.price-plan-btn {
  background: #3b1754;
  display: inline-block;
  border: 2px solid #3b1754;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  padding: 9px 30px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin-top: 12px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.price-table-layout-1 a.price-plan-btn:hover {
  background: #e6e6e6;
  color: #3b1754;
}

.price-table-layout-1:hover {
  background-color: #f5f5f5;
}

/*----- TESTIMONIAL LAYOUTS ----*/
.section-testimonial-bg {
  background-image: url("../images/Bg/2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/*----- TESTIMONIAL LAYOUT 01 ----*/
.testimony-layout-1 {
  max-width: 65%;
  background: transparent;
  position: relative;
  padding: 80px 0 42px;
  margin: 0px;
}

.testimony-layout-1 img {
  height: 70px;
  max-width: 70px;
  margin-top: 5px;
  margin-right: 15px;
  float: left;
  border: 1px solid #cccccc;
  padding: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.testimony-layout-1 .testimony-info {
  overflow: hidden;
  padding-top: 0px;
}

.testimony-layout-1 .testimony-text {
  font-family: "Manrope", sans-serif;
  clear: both;
  position: relative;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.testimony-layout-1 .testimony-text:before {
  color: #ffffff;
  content: "\f10d";
  font-family: FontAwesome;
  display: block;
  font-size: 80px;
  font-style: normal;
  height: 48px;
  left: 0;
  line-height: 48px;
  margin-left: 0;
  opacity: 0.2;
  position: absolute;
  text-align: center;
  top: -70px;
  width: 48px;
}

.testimony-layout-1 h4 {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.testimony-layout-1 h6 {
  color: #f2f2f2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
}

.testimony-layout-1 span {
  font-size: 14px;
  text-transform: uppercase;
  color: #888888;
}

.testimonial-container.owl-carousel [class^="col-"] {
  width: 100%;
}

.testimonial-container {
  clear: both;
}

.testimonial-container .owl-nav {
  clear: both;
  color: #000000;
  font-size: 22px;
  line-height: 42px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -21px;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-container .owl-nav div.owl-prev {
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  left: -8px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #3b1754;
  color: #ededed;
  float: left;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.testimonial-container .owl-nav div.owl-next {
  text-align: center;
  float: right;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  right: -8px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background: #3b1754;
  color: #ededed;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.testimonial-container .owl-nav:hover {
  opacity: 0.8;
}

.testimonial-container .owl-dots {
  margin: 12px 0 0 0;
  padding: 0 0 0 6px;
  text-align: left;
}

.testimonial-container .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: transparent;
  border: 1px solid #cccccc;
  margin: 0 0 0 12px;
}

.testimonial-container .owl-dots .owl-dot span {
  display: block;
}

.testimonial-container .owl-dots .active span {
  position: relative;
  top: 2px;
  left: 2px;
  padding: 0px;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #56257e;
}

.testimonial-container:hover .owl-nav {
  opacity: 1;
}

/*----- NEWSLETTER LAYOUT 01 ----*/
.horizontal-newsletter {
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 12px;
}

.horizontal-newsletter .news-subscription input {
  background: #ffffff;
  border: 2px solid #cccccc;
  border-radius: 0px;
  color: #6e6e6e;
  height: 55px;
  padding-left: 13px;
  width: 100%;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.horizontal-newsletter .news-subscription button {
  background: #3b1754;
  border: 0 none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  height: 55px;
  width: 160px;
  position: absolute;
  top: 0;
  right: 0;
}

.horizontal-newsletter .news-subscription button:hover {
  background: #260e37;
}

.horizontal-newsletter .news-subscription button:hover:before {
  background: #260e37;
}

.horizontal-newsletter-margin {
  margin-top: 42px;
}

/*----- HOME BLOG LAYOUT 01 ----*/
.latest-blog {
  background: #f9fafb;
}

.latest-blog .news-content {
  padding: 0 25px 20px;
}

.latest-blog .latest-title {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.latest-blog .latest-title a {
  color: #555555;
}

.latest-blog .latest-title a:hover {
  color: #3b1754;
}

.latest-blog .latest-details {
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  background: #3b1754;
  display: inline-block;
  padding: 8px 10px;
}

.latest-blog .latest-details a {
  border-right: 1px solid #ffffff;
  color: #ffffff;
  display: inline-block;
  line-height: 14px;
  margin-right: 3px;
  padding-right: 8px;
  transition: all 0.3s ease 0s;
}

.latest-blog .latest-details a:last-child {
  border-right: medium none;
  margin-right: 0;
  padding-right: 0;
}

.latest-blog .latest-details a:hover {
  color: #ffffff;
}

.latest-blog .blog-details a {
  text-transform: uppercase;
  margin-left: 60px;
  font-size: 15px;
  color: #6e6e6e;
}

.latest-blog .blog-details a::after {
  background-color: #3b1754;
  bottom: 10px;
  content: "";
  height: 2px;
  left: 20px;
  position: absolute;
  width: 40px;
}

.latest-blog .blog-details a:hover {
  color: #3b1754;
}

/*----- CTA LAYOUTS ----*/
.section-cta-bg {
  background-image: url("../images/Bg/1.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.section-cta-bg-1 {
  background-color: #3b1754;
  background-image: url("../images/Logos/Logo-07.png");

  min-height: 500px;

  background-repeat: no-repeat;

  /* ✅ Proper positioning */
  background-position: right center;

  /* ✅ CONTROL SIZE (this is main fix) */
  background-size: 30%;

  position: relative;

  padding: 60px 0;
}

/*----- CTA LAYOUTS 01 ----*/
.cta-layout-01 {
  clear: both;
}

.cta-layout-01 h2 {
  font-size: 42px;
  line-height: 62px;
  font-weight: 600;
  letter-spacing: 0em;
}

.cta-layout-01 h2 span {
  margin-top: 12px;
  display: block;
  color: #d8a9c2;
  font-size: 52px;
  line-height: 62px;
}

.cta-layout-01 h2 span a,
.cta-layout-01 h2 span a:focus {
  color: inherit !important;
  font: inherit;
  line-height: inherit;
  text-decoration: none;
}

.cta-layout-01 h2 span a:hover {
  color: inherit !important;
  text-decoration: underline;
}

.cta-layout-01 h3 {
  font-size: 24px;
  line-height: 32px;
  margin-top: 12px;
  font-weight: 600;
  margin-bottom: 0;
}

/*----- CTA LAYOUTS 03 ----*/
.cta-video-box h4 {
  font-size: 36px;
  line-height: 48px;
}

/*----- SECTION APPOINTMENT ----*/
.section-appointment-bg {
  background-image: url("../images/Bg/4.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.appointment-form-wrapper {
  background: rgba(255, 255, 255, 0.9);
  padding: 42px 0px 32px;
  border: 1px solid #f2f2f2;
  -webkit-box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.appointment-form-wrapper .appointment-form-heading {
  position: relative;
  background: #3b1754;
  padding: 30px;
  margin: -1px -1px 48px -1px;
}

.appointment-form-wrapper .appointment-form-heading h3 {
  position: relative;
  clear: both;
  overflow: hidden;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin: 0;
  display: inline;
  text-transform: uppercase;
}

.appointment-form-wrapper .appointment-form-heading h3:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 1px;
  width: 60px;
  margin-right: -64px;
  margin-top: 1px;
  background: #ffffff;
}

.appointment-form-wrapper .appointment-form-heading h3.no-heading-line {
  clear: both;
}

.appointment-form-wrapper .appointment-form-heading h3.no-heading-line:after {
  display: none;
}

.appointment-form-wrapper .appointment-form-heading span {
  float: right;
  display: inline;
  background: #fafafa;
  color: #111111;
  font-weight: 400;
  padding: 0px 16px;
  font-size: 16px;
  line-height: 32px;
}

.appointment-form-wrapper .appoinment-form {
  padding: 0 12px;
}

.appointment-form-wrapper .appoinment-form .form-control {
  font-size: 14px;
}

.appointment-form-wrapper .appoinment-form .form-group {
  margin-bottom: 0;
  position: relative;
}

.appointment-form-wrapper .appoinment-form .form-group i {
  position: absolute;
  top: 12px;
  right: 32px;
  font-size: 17px;
  color: #c8c8c8;
  transition: all 0.5s ease 0s;
}

.appointment-form-wrapper .appoinment-form .form-control::-moz-placeholder {
  color: #aeaeae;
  font-size: 14px;
  text-transform: uppercase;
}

.appointment-form-wrapper .appoinment-form input[type="text"],
.appointment-form-wrapper .appoinment-form input[type="email"],
.appointment-form-wrapper .appoinment-form input[type="url"],
.appointment-form-wrapper .appoinment-form input[type="password"] {
  color: #aeaeae;
  border: 1px solid #b86dec;
  line-height: 42px;
  padding-right: 32px;
  height: 42px;
  margin-bottom: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.appointment-form-wrapper .appoinment-form input[type="text"]:focus,
.appointment-form-wrapper .appoinment-form input[type="email"]:focus,
.appointment-form-wrapper .appoinment-form input[type="url"]:focus,
.appointment-form-wrapper .appoinment-form input[type="password"]:focus {
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.appointment-form-wrapper .appoinment-form textarea {
  color: #aeaeae;
  border: 0px;
  border: 1px solid #b86dec;
  padding-left: 2px;
  margin-bottom: 12px;
  padding: 6px 12px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.appointment-form-wrapper .appoinment-form textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #cccccc;
}

.appointment-form-wrapper .appoinment-form select {
  border: 0px;
  border: 1px solid #b86dec;
  padding-left: 2px;
  margin-bottom: 24px;
  padding: 6px 12px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.appointment-form-wrapper .appoinment-form select:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #cccccc;
}

.appointment-form-wrapper .appoinment-form .select-style {
  position: relative;
}

.appointment-form-wrapper .appoinment-form .select-style select.form-control {
  border: 1px solid #b86dec;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("../images/down_arrow.png");
  background-position: 100% 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  box-shadow: none;
  color: #aeaeae;
  padding: 6px 12px;
  height: 42px;
  line-height: 32px;
  margin-bottom: 24px;
  font-size: 14px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/*----- CLIENT SPONSORS ----*/
.section-client-logo {
  clear: both;
}

.section-logo-bg {
  background-image: url("../images/counter_bg.jpg");
  background-repeat: no-repeat;
  background-position: 0 70%;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.logo-layout-1 {
  clear: both;
}

.logo-layout-1 .client-logo {
  padding: 16px;
  margin-bottom: 32px;
  border: 1px solid #cccccc;
}

.logo-layout-1 .client-logo img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 100%;
  margin: 0;
  display: block;
  opacity: 0.7;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.logo-layout-1 .client-logo:hover {
  border: 1px dotted #56257e;
}

.logo-layout-1 .client-logo:hover img {
  opacity: 1;
}

.no-border-logo-layout .client-logo {
  border: 0px solid transparent;
}

.no-border-logo-layout .client-logo:hover {
  border: 0px solid transparent;
}

.logo-items [class^="col-"] {
  width: 100%;
}

.logo-items {
  clear: both;
}

.logo-items .client-logo {
  margin-bottom: 0px;
}

.logo-items .owl-nav {
  clear: both;
  color: #000000;
  line-height: 32px;
  height: 32px;
  margin-top: -14px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo-items .owl-nav div.owl-prev {
  background: #2c2c2c;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  color: #ededed;
  float: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.logo-items .owl-nav div.owl-prev:hover {
  background: #3b1754;
}

.logo-items .owl-nav div.owl-next {
  background: #2c2c2c;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  color: #ededed;
  float: right;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.logo-items .owl-nav div.owl-next:hover {
  background: #3b1754;
}

.logo-items .owl-nav:hover {
  opacity: 0.8;
}

.logo-items .owl-dots {
  margin: 12px auto 0 auto;
  width: 100px;
  text-align: center;
}

.logo-items .owl-dots .owl-dot {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 2px;
  width: 12px;
  height: 8px;
  background: #c7c7c7;
  margin: 0 2px;
}

.logo-items .owl-dots .owl-dot span {
  display: none;
}

.logo-items .owl-dots .active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 16px;
  background: #3b1754;
}

.logo-items .owl-dots .active span {
  display: none;
}

.logo-items:hover .owl-nav {
  opacity: 1;
}

/***********************************************************************************************/
/*  HOME PAGE 02 */
/***********************************************************************************************/
.section-banner {
  padding: 200px 0px 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

.banner-content {
  width: 100%;
}

.banner-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 72px;
  margin: 0 0 0 0;
  color: #ffffff;
}

.banner-content h3 {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 32px;
  margin-top: 16px;
}

.banner-content a.btn-slider {
  border: 0px;
  font-size: 20px;
  display: inline-block;
  background: #3b1754;
  color: #ffffff;
  line-height: 32px;
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.banner-content a.btn-slider:hover {
  background: #240c35;
}

/***********************************************************************************************/
/* MAIN CONTENT */
/***********************************************************************************************/
.main-content {
  margin: 48px 0;
}

.btn-social-icon {
  height: 42px;
  width: 42px;
  border: 0;
  border-radius: 0px !important;
  margin: 3px 3px;
}

.btn-social-icon .fa {
  line-height: 42px;
  color: #ffffff;
}

.btn-goggle-plus {
  background-color: #26b84b;
}

.btn-goggle-plus:hover {
  background-color: #20993e;
}

.btn-envelope-o {
  background-color: #d74b3e;
}

.btn-envelope-o:hover {
  background-color: #ad3d32;
}

.section-transparent-bg {
  background: transparent !important;
}

/***********************************************************************************************/
/* 05. BLOG LAYOUT */
/***********************************************************************************************/
.single-post {
  margin-bottom: 50px;
}

.single-post p {
  line-height: 30px;
}

.single-post .single-post-content {
  margin-bottom: 30px;
  padding: 6px;
  background: #f9fafb;
}

.single-post .single-post-title {
  line-height: 24px;
}

.single-post .single-post-title h2 {
  font-size: 28px;
  line-height: 32px;
  line-height: 30px;
  font-weight: 500;
}

.single-post .single-post-title .single-post-meta {
  font-size: 15px;
}

.readmore {
  border: 0px;
  background: #3b1754;
  color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 12px 24px;
}

.readmore-sm {
  border: 0px;
  background: #3b1754;
  color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 6px 12px;
}

/***********************************************************************************************/
/* 06. BLOG SINGLE PAGE */
/***********************************************************************************************/
.single-post-inner {
  background: #f9fafb;
  padding: 30px;
}

.post-inner-featured-content {
  display: block;
}

.post-inner-featured-content img {
  display: block;
  width: 100%;
  text-align: center;
}

.single-post-inner-title {
  margin-bottom: 24px;
}

.single-post-inner-title h2 {
  font-size: 32px;
  margin: 32px 0 24px 0;
}

.single-post-inner-meta h2 {
  font-size: 24px;
}

.single-post-inner-meta .tag-list a {
  display: inline-block;
  padding: 4px 12px;
  margin-right: 3px;
  background: #3b1754;
  color: #ffffff;
}

.custom-post-info {
  margin: 0;
  padding: 0;
}

.custom-post-thumb-small {
  width: 70px;
  height: 70px;
}

.custom-post-thumb-medium {
  width: 350px;
  height: 120px;
}

.single-post-container {
  margin: 0 0 24px 0;
}

.single-post-container h3 {
  margin: 24px 0 12px 0;
  font-size: 18px;
  text-transform: capitalize;
}

.single-post-container h3 a {
  color: #555555;
}

.single-post-container h3 a:hover {
  color: #6e6e6e;
}

.single-post-container .custom-breadcrumb {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}

.single-post-container .article-meta-extra {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 6px 0;
  margin-bottom: 12px;
}

.single-post-container .article-meta-extra span {
  margin-right: 5px;
}

.single-post-container .article-meta-extra span:last-child {
  margin-right: 0px;
}

.single-post-container .article-meta-extra i {
  color: #555555;
  margin-right: 3px;
}

.single-post-container h2 + p {
  margin-top: 12px;
}

.single-post-content h1 {
  margin: 12px 0;
}

.single-post-content h2 {
  margin: 12px 0;
}

.single-post-content h3 {
  margin: 12px 0;
}

.single-post-content h4 {
  margin: 12px 0;
}

.single-post-content h5 {
  margin: 12px 0;
}

.single-post-content h6 {
  margin: 12px 0;
}

.articles-nav {
  margin-top: -1.5em;
  margin-bottom: 1.5em;
  padding: 0 2.4em;
}

.articles-nav .articles-nav-prev {
  float: left;
}

.articles-nav .articles-nav-next {
  float: right;
}

.aligncenter,
.alignleft,
.alignright,
.alignnone {
  margin: 12px 0 24px 0;
  max-width: 100%;
  height: auto;
}

.aligncenter,
img.centered {
  display: block;
  margin: 12px auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.alignnone {
  clear: both;
}

.wp-caption {
  text-align: center;
}

.wp-caption img {
  max-width: 100%;
  max-height: auto;
}

.wp-caption .wp-cap {
  margin-bottom: 0px;
  font-size: 12px;
}

.post-navigation {
  text-align: center;
  clear: both;
}

.post-navigation p {
  text-transform: uppercase;
}

.post-navigation p a {
  position: relative;
  padding-left: 24px;
  margin-right: 5px;
}

.post-navigation p a:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 4px;
  left: 3px;
  background: transparent;
  border: 1px solid #cccccc;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.post-navigation p a:hover:before {
  background: #3b1754;
  border: 1px solid #6e6e6e;
}

.post-navigation p a:first-child {
  margin-right: 0px;
}

.comments-nav-section,
.post-nav-section {
  margin: 24px 0 0 0;
}

.comments-nav-section p,
.post-nav-section p {
  margin-bottom: 0px;
}

.comments-nav-section a,
.post-nav-section a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  background: transparent;
  color: #6e6e6e;
  padding: 6px 12px;
}

.comments-nav-section a:hover,
.post-nav-section a:hover {
  border: 1px solid #3b1754;
  color: #3b1754;
  background: transparent;
}

.article-share-section {
  margin: 24px 0 0 0;
  border: 1px solid #cccccc;
  border-left: 0px;
  border-right: 0px;
  padding: 14px 0 10px 0;
}

.article-author {
  margin-top: 24px;
  background: #f9fafb;
  padding: 30px;
  min-height: 100px;
  padding-bottom: 24px;
}

.article-author .author-avatar img {
  width: 100px;
  max-width: 100%;
  max-height: auto;
  float: right;
  border: 1px solid #cccccc;
  padding: 3px;
  margin-top: 0px;
  margin-left: 12px;
}

.article-author .about_author {
  margin-bottom: 24px;
}

.article-author .social-icons a {
  display: inline-block;
  color: #3b1754;
  margin-right: 15px;
}

.article-author .social-icons a:hover {
  color: #3b1754;
}

.related-post {
  margin-top: 24px;
  background: #f9fafb;
  padding: 30px;
}

.related-post ul li {
  margin: 5px 0;
}

.related-post ul li a {
  position: relative;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
  color: #6e6e6e;
}

.related-post ul li a:hover {
  color: #3b1754;
}

ul.pagination li a {
  color: #3b1754;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 6px 12px;
  border: 0px;
  margin: 0 2px;
}

ul.pagination li a:hover {
  backgroud: #000 !important;
}

ul.pagination li a.current {
  background: #3b1754;
  color: #ffffff;
  border: 0px;
}

ul.pagination li:first-child {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

ul.pagination li:last-child {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comments-area {
  margin-top: 24px;
  background: #f9fafb;
  padding: 30px;
}

.article-add-comments {
  float: right;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #555555;
  border: 1px solid #cccccc;
  background: #ffffff;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.article-add-comments:hover {
  border: 1px solid #3b1754;
  color: #3b1754;
}

.commentslist {
  margin-top: 24px;
  counter-reset: comment-id;
}

.commentslist li {
  list-style-type: none;
  margin-left: 0px;
}

.commentslist li:first-child {
  margin-top: 24px;
}

.commentslist li + li {
  margin-top: 24px;
}

.commentslist li ol,
.commentslist li ul {
  padding-left: 3em;
  margin-left: 3em;
  border-left: 1px dotted #cccccc;
  list-style-type: none;
}

.commentslist li ol li,
.commentslist li ul li {
  position: relative;
}

.commentslist li ol li::before,
.commentslist li ul li::before {
  content: "";
  width: 2em;
  height: 1px;
  border-bottom: 1px dotted #cccccc;
  position: absolute;
  left: -3em;
  top: 2em;
}

.commentslist li article {
  background: #ffffff;
  padding: 12px;
}

.commentslist li article header {
  border-bottom: 1px solid #cccccc;
  font-size: 12px;
  margin-bottom: 1.5em;
  position: relative;
}

.commentslist li article header span {
  color: #bbbbbb;
}

.commentslist li article header::before {
  counter-increment: comment-id;
  content: counter(comment-id);
  position: absolute;
  right: 5px;
  top: 15px;
  color: #f8f8f8;
  font-size: 32px;
  font-family: "Manrope", sans-serif;
}

.commentslist li article header h5 {
  margin-bottom: 12px;
  text-transform: capitalize;
  color: #555555;
}

.commentslist li article header h5 a {
  color: #555555;
}

.commentslist li article header h5 a:hover {
  color: #6e6e6e;
}

.commentslist li article header h5 span {
  font-size: 12px;
  background: #000000;
  color: #ffffff;
  padding: 3px 5px;
  font-style: normal;
  margin-right: 0.5em;
}

.commentslist li article .comment_text {
  padding-right: 24px;
}

.comment-avatar img {
  width: 64px;
  height: 64px;
  float: right;
  background: #ffffff;
  margin: 2px;
  border: 1px solid #cccccc;
  padding: 2px;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.comment-avatar img:hover {
  border-color: #a6a6a6;
}

.waiting-moderation {
  color: #bbbbbb;
}

.comments-nav-section {
  margin: 48px 0;
}

.comments-nav-section .btn-primary {
  background: #ffffff;
}

.comments-nav-section .btn-primary:hover {
  background: #ffffff;
}

#comment-form label {
  margin-bottom: 12px;
}

#comment-form input[type="text"],
#comment-form input[type="email"],
#comment-form input[type="url"],
#comment-form input[type="password"] {
  border: 0px;
  border-bottom: 1px solid #eee;
  line-height: 42px;
  height: 42px;
  margin-bottom: 24px;
  padding: 0 12px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#comment-form input[type="text"]:focus,
#comment-form input[type="email"]:focus,
#comment-form input[type="url"]:focus,
#comment-form input[type="password"]:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #919191;
}

#comment-form textarea {
  border: 0px;
  border-bottom: 1px solid #eee;
  padding: 12px;
  margin-bottom: 24px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#comment-form textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 0px;
  border-bottom: 1px solid #919191;
}

/***********************************************************************************************/
/* PAGE HEADR AND BREADCRUMB */
/***********************************************************************************************/
.page-header {
  margin: 0;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-attachment: fixed;
  background-position: center center;
  background-color: transparent;
  background-image: url("../images/Bg/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border: 0px solid #fff;
}

.page-header:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.page-header h3 {
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  line-height: 24px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-header .page-breadcrumb {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.page-header .page-breadcrumb a {
  color: #ffffff;
}

.page-header .page-breadcrumb a:hover {
  color: #3b1754;
}

/***********************************************************************************************/
/* SINGLE TEAM PAGE */
/***********************************************************************************************/
.single-team {
  background: transparent;
  margin: 20px 0 30px;
  overflow: hidden;
  position: relative;
}

.single-team img {
  width: 100%;
}

.single-team-details h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 12px 0 0;
  text-transform: uppercase;
}

.single-team-details h4 {
  color: #9a9a9a;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.single-team-details ul.team-social-share-2 li {
  background: #3b1754;
  border-radius: 0;
  color: #ffffff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  margin-right: 15px;
  text-align: center;
  width: 40px;
}

.single-team-details ul.team-social-share-2 li a {
  color: #ffffff;
}

.single-team-details a.btn-team-details {
  border: 2px solid #3b1754;
  border-radius: 0;
  margin: 10px 0;
  padding: 10px 15px;
  text-transform: uppercase;
}

/***********************************************************************************************/
/* SERVICE PAGE */
/***********************************************************************************************/
.service-bottom-layout {
  margin-top: 30px;
}

.single-service-content h3 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 15px;
}

.single-service-content ul {
  list-style-type: none;
  margin-bottom: 16px;
  overflow: hidden;
}

.single-service-content ul li {
  padding-left: 32px;
  position: relative;
}

.single-service-content ul li:before {
  content: "\f00c";
  font-family: FontAwesome;
  display: inline-block;
  color: #3b1754;
  margin: 0 11px 0 0;
  position: absolute;
  left: 0px;
}

/***********************************************************************************************/
/*  FAQ PAGE */
/***********************************************************************************************/
.faq-layout {
  position: relative;
  overflow: hidden;
}

.faq-layout .panel {
  box-shadow: none;
}

.faq-layout .panel-default {
  position: relative;
  border: 0px solid #eee;
  padding: 17px 16px 0;
  background: #f7f7f7;
  border-radius: 0;
}

.faq-layout .faq-box .panel-heading {
  background: none;
  border: 0 none;
  display: block;
  padding: 16px;
  margin: -16px -15px;
  background: #3b1754;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.faq-layout .faq-box .panel-heading:hover {
  background: #2c2c2c;
}

.faq-layout .faq-box .panel-title {
  display: block;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  margin-top: 0;
  font-size: inherit;
  text-transform: uppercase;
  color: #ffffff;
}

.faq-layout .faq-box .panel-title > a {
  line-height: 24px;
  display: block;
  color: #ffffff;
}

.faq-layout .faq-box .panel-title > a:hover,
.faq-layout .faq-box .panel-title > a:focus {
  outline: none;
  color: #ffffff;
}

.faq-layout .faq-box .panel-body {
  padding-top: 32px;
  padding-left: 0px;
}

.faq-layout .faq-box .panel-heading [data-toggle="collapse"]:after {
  font-family: "FontAwesome";
  content: "\f0d8";
  float: left;
  color: #ffffff;
  font-size: 16px;
  margin-right: 10px;
}

.faq-layout .faq-box .panel-heading [data-toggle="collapse"].collapsed:after {
  content: "\f0d7";
}

/***********************************************************************************************/
/*  COMING SOON PAGE */
/***********************************************************************************************/
.section-coming-countdown-bg {
  background: transparent;
  background-image: url("../images/coming-soon.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  display: block;
  clear: both;
  position: relative;
  overflow: hidden;
}

#coming_countdown {
  font-size: 32px;
  clear: both;
  width: 900px;
  max-width: 100%;
  margin: 30px auto;
}

#coming_countdown .countdown_container {
  text-align: center;
  display: block;
  float: left;
  width: 25%;
}

#coming_countdown .countdown_container span.count_number {
  display: block;
  font-size: 90px;
  line-height: 100px;
  font-weight: 600;
  color: #3b1754;
  font-family: "Manrope", sans-serif;
}

#coming_countdown .countdown_container span.count_text {
  display: block;
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  color: #6e6e6e;
  text-transform: uppercase;
}

/***********************************************************************************************/
/* 09. GALLERY PAGE */
/***********************************************************************************************/
.section-gallery-block-parallax {
  background-attachment: scroll;
  background-color: transparent;
  background-image: url("../images/bg-geometry.png");
  background-repeat: repeat;
  background-size: initial;
}

.section-gallery-block {
  clear: both;
}

.gallery-container {
  padding: 12px;
  margin: 0;
}

.no-bottom-padding {
  padding-bottom: 0px;
}

.no-padding-gallery .gallery-container {
  padding: 0px;
  margin: 0;
}

.gallery-light-box {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery-light-box .gallery-img {
  display: block;
  position: relative;
  max-width: 100%;
  padding: 0px;
}

.gallery-light-box .gallery-img:before {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.gallery-light-box .gallery-img:after {
  font-family: FontAwesome;
  content: "\f1c5";
  position: absolute;
  right: 150%;
  margin-left: -21px;
  bottom: -64px;
  background: #ffffff;
  color: #3b1754;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: all 0.9s ease-out;
  -moz-transition: all 0.9s ease-out;
  -o-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
}

.gallery-light-box .gallery-img img {
  width: 100%;
  max-width: 100%;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.gallery-light-box:hover .gallery-img:before {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 1500px;
}

.gallery-light-box:hover .gallery-img:after {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.gallery-light-box:hover .gallery-img img {
  opacity: 0.4;
}

.gallery-light-box:hover .gallery-img figcaption {
  bottom: 0px;
  left: 0;
}

.filterable-gallery {
  clear: both;
}

.filterable-gallery .filter-items {
  text-align: center;
  margin-bottom: 32px;
}

.filterable-gallery .filter-items button {
  text-transform: uppercase;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  margin-right: 4px;
  border: 1px solid #cccccc;
}

.filterable-gallery .filter-items button.active {
  background: #3b1754;
  color: #ffffff;
}

.filterable-gallery .filter-items button:last-child {
  margin-right: 0px;
}

.filterable-gallery .filter-items button:hover,
.filterable-gallery .filter-items button:foucs {
  background: #3b1754;
  color: #ffffff;
}

.gallery-carousel {
  clear: both;
}

.gallery-carousel [class^="col-"] {
  width: 100%;
}

.gallery-carousel .owl-nav {
  clear: both;
  color: #000000;
  line-height: 32px;
  height: 32px;
  margin-top: -14px;
  opacity: 0.9;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-carousel .owl-nav div.owl-prev {
  background: #3b1754;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  color: #ededed;
  float: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.gallery-carousel .owl-nav div.owl-prev:hover {
  background: #2c2c2c;
}

.gallery-carousel .owl-nav div.owl-next {
  background: #3b1754;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  color: #ededed;
  float: right;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.gallery-carousel .owl-nav div.owl-next:hover {
  background: #2c2c2c;
}

.gallery-carousel .owl-nav:hover {
  opacity: 0.8;
}

.gallery-carousel .owl-dots {
  margin: 12px auto 0 auto;
  width: 100px;
  text-align: center;
}

.gallery-carousel .owl-dots .owl-dot {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 2px;
  width: 12px;
  height: 8px;
  background: #c7c7c7;
  margin: 0 2px;
}

.gallery-carousel .owl-dots .owl-dot span {
  display: none;
}

.gallery-carousel .owl-dots .active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 16px;
  background: #3b1754;
}

.gallery-carousel .owl-dots .active span {
  display: none;
}

.gallery-carousel:hover .owl-nav {
  opacity: 1;
}

/***********************************************************************************************/
/* 11. 404 PAGE */
/***********************************************************************************************/
.section-404 {
  background: #eeeeee;
}

.message-container-404 {
  margin: 48px 0;
}

.message-container-404 .text-404 {
  font-size: 170px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Manrope", sans-serif;
  text-align: center;
  margin: 80px 0;
  color: #3b1754;
}

.message-container-404 .text-404 span {
  color: #240c35;
}

.message-container-404 .search-form-404 {
  margin: 0 auto;
  padding: 5px 5px;
  width: 40%;
}

.message-container-404 .message-text-404 {
  padding: 24px 160px;
  display: block;
  text-align: center;
}

/***********************************************************************************************/
/* CONTACT PAGE */
/***********************************************************************************************/
.section-contact-block {
  position: relative;
  overflow: hidden;
}

.section-contact-block .content-block {
  padding: 0 48px 0 0;
}

.section-contact-block .contact-title {
  font-size: 24px;
  border-bottom: 3px solid #eeeeee;
  color: #5c5c5c;
  padding-bottom: 15px;
  position: relative;
}

.section-contact-block .contact-title:after {
  bottom: -3px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 32px;
  background: #3b1754;
}

.section-contact-block .contact-info li {
  margin-bottom: 24px;
}

.section-contact-block .contact-info .icon-container {
  display: inline-block;
  background: #3b1754;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
}

.section-contact-block .contact-info address {
  display: inline-block;
}

.section-contact-block .contact-info a {
  color: #6e6e6e;
}

.section-contact-block .contact-info a:hover {
  color: #3b1754;
}

.contact-info-section .contact-title {
  text-align: center;
  border-bottom: 0;
  margin-bottom: 42px;
}

.contact-info-section .contact-title:after {
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  border-radius: 999px;
}

.contact-info-section .contact-info {
  text-align: center;
}

.contact-info-section .contact-info li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-info-section .contact-info .icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  line-height: 1;
  font-size: 24px;
  color: #3b1754;
  background: transparent;
  border: 1.5px solid rgba(59, 23, 84, 0.28);
  border-radius: 50%;
  margin-right: 0;
  box-shadow: none;
}

.contact-info-section .contact-info address {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  margin: 0;
  text-align: left;
  font-style: normal;
  line-height: 1.8;
}

.contact-info-section .contact-info a {
  display: inline-block;
}

.section-contact-block .contact-form-block {
  padding: 0 0 0 0px;
}

.section-contact-block #contact-form input[type="text"],
.section-contact-block #contact-form input[type="email"],
.section-contact-block #contact-form input[type="url"],
.section-contact-block #contact-form input[type="password"] {
  border: 0px;
  border-bottom: 1px solid #eee;
  line-height: 42px;
  height: 42px;
  margin-bottom: 24px;
  padding-left: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.section-contact-block #contact-form input[type="text"]:focus,
.section-contact-block #contact-form input[type="email"]:focus,
.section-contact-block #contact-form input[type="url"]:focus,
.section-contact-block #contact-form input[type="password"]:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 0px;
  border-bottom: 1px solid #919191;
}

.section-contact-block #contact-form textarea {
  border: 0px;
  border-bottom: 1px solid #eee;
  padding-left: 2px;
  margin-bottom: 24px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.section-contact-block #contact-form textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
  border: 0px;
  border-bottom: 1px solid #919191;
}

/***********************************************************************************************/
/* 12. FOOTER */
/***********************************************************************************************/
footer {
  background-image: url("../images/footer_bg.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

footer:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  content: "";
  width: 100%;
  height: 2000px;
  margin-top: 30px;
}

footer p {
  color: #6e6e6e;
}

footer a {
  color: #6e6e6e;
}

footer a:hover {
  color: #3b1754;
}

footer .footer-intro {
  margin-bottom: 32px;
}

footer .social-icons {
  clear: both;
  padding: 0;
  margin-top: 0px;
}

footer .social-icons a {
  border: 1px solid #3b1754;
  background: #3b1754;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
  position: relative;
  text-align: center;
  -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;
  width: 40px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

footer .social-icons a:last-child {
  margin: 0;
}

footer .social-icons a:hover {
  background: #240c35;
  color: #ffffff;
}

.follow-us {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-widget-area .footer-widget .footer-logo {
  margin-bottom: 15px;
}

.footer-widget-area .footer-subscription input[type="email"] {
  background: #ffffff;
  border: 0 solid #cccccc;
  border-radius: 0;
  height: 48px;
  color: #6e6e6e;
}

.footer-widget-area .footer-subscription input[type="email"]:focus {
  box-shadow: none;
  color: #6e6e6e;
}

.footer-widget-area .footer-subscription input[type="submit"] {
  background: #3b1754;
  border: 0 solid #cccccc;
  color: #ffffff;
  height: 42px;
  letter-spacing: 2px;
  margin-top: 6px;
  padding: 0 18px;
  text-transform: uppercase;
}

.footer-widget-area .footer-widget-header h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 600;
  display: inline-block;
  color: #6e6e6e;
}

.footer-widget-area .footer-useful-links {
  clear: both;
}

.footer-widget-area .footer-useful-links li {
  margin-bottom: 8px;
  width: 50%;
  float: left;
}

.footer-widget-area .footer-about {
  border-bottom: 1px solid #666666;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.footer-widget-area .footer-about .footer-content a {
  color: #3b1754;
}

.footer-widget-area .opening-shedule li {
  border-bottom: 1px solid #666666;
  padding: 12px 0px 12px;
  color: #ffffff;
}

.footer-widget-area .opening-shedule li:first-child {
  padding-top: 0px;
}

.footer-widget-area .opening-shedule li:last-child {
  border: 0 none;
}

.footer-widget-area .fa-footer {
  display: inline;
  text-align: center;
  width: 12px;
  height: 12px;
  color: #3b1754;
  padding: 4px 6px 6px 0;
  margin-right: 0px;
}

.footer-widget-area .contact-us {
  clear: both;
}

.footer-widget-area .contact-us p {
  border-bottom: 1px solid #666666;
  padding-bottom: 10px;
}

.footer-widget-area .contact-us p:last-child {
  padding: 0;
  border: 0 none;
}

.footer-widget-area .fa-contact {
  display: inline-block;
  text-align: center;
  width: 12px;
  height: 12px;
  color: #3b1754;
  padding: 6px 6px 6px 0;
  margin-right: 6px;
  position: absolute;
}

.footer-widget-area .footer-widget + .footer-widget {
  margin-top: 24px;
}

.footer-widget-area li {
  line-height: 32px;
}

.footer-widget-area-bg {
  clear: both;
}

.footer-contents {
  background: #535353;
  border-top: 1px solid #cccccc;
  padding: 28px 0 20px 0;
}

.footer-contents .copyright-text {
  line-height: 36px;
  margin-bottom: 0;
}

.footer-nav li {
  display: inline;
  list-style-type: none;
}

.footer-nav li a {
  padding: 6px 12px;
  position: relative;
}

.footer-nav li a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 14px;
  right: 0;
  margin: 0;
  height: 8px;
  width: 1px;
  background: #808080;
}

.footer-nav li:last-child a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 12px;
  right: 0;
  color: #3b1754;
  margin: 0;
  height: 8px;
  width: 0px;
  background: #ffffff;
}

/***********************************************************************************************/
/* 13. SIDEBAR & WIDGETS */
/***********************************************************************************************/
.widget {
  background: #f9fafb;
  margin-bottom: 30px;
  padding: 20px;
}

.widget-title {
  position: relative;
  font-size: 24px;
  margin-bottom: 24px;
  text-transform: capitalize;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: inline-block;
  color: #111111;
}

.widget-title span {
  font-style: 400;
  color: #555555;
}

.widget ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 5px 0;
}

.widget ul li a {
  color: #6e6e6e;
}

.widget ul li a:hover {
  color: #3b1754;
}

.search-form {
  margin: 0 0 12px 0;
}

.search-form span.input-group-addon {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #3b1754;
  border-right: 0px;
  color: #ffffff;
  font-weight: bold;
  width: 10%;
  padding: 0 20px;
}

.search-form input[type="text"] {
  box-shadow: 0;
  margin-bottom: 0;
  font-size: 14px;
  padding-left: 5px;
  height: 42px;
  border: 0px;
  box-shadow: none;
  border-bottom: 1px solid #eee;
  width: 100%;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.search-form input[type="text"]:focus {
  box-shadow: none;
  border-bottom: 1px solid #d5d5d5;
}

.widget-post-category {
  margin: 11px auto;
}

.widget-post-category li {
  margin: 5px 0;
  padding: 0;
  text-transform: capitalize;
}

.widget-post-category li a {
  font-size: 15px;
  position: relative;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.single-recent-post {
  margin-bottom: 26px;
  overflow: hidden;
}

.single-recent-post a {
  color: #6e6e6e;
  margin-bottom: 8px;
  display: block;
}

.single-recent-post a:hover {
  color: #3b1754;
}

.single-recent-post span {
  font-size: 14px;
  display: block;
  color: #3b1754;
  padding-left: 2px;
}

.single-recent-post span i {
  font-size: 16px;
}

.single-post-thumb {
  float: left;
  margin-bottom: 10px;
  margin-right: 20px;
  margin-top: 5px;
  width: 100px;
}

.widget-recent-tags {
  margin: 0 auto;
}

.widget-recent-tags li {
  margin: 0px 5px 7px 0px;
  float: left;
}

.widget-recent-tags li a {
  padding: 3px 7px;
  text-transform: capitalize;
  text-align: center;
  border: 1px solid #3b1754;
  display: block;
  background: transparent;
  -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;
}

.widget-recent-tags li a:hover,
.widget-recent-tags li a:active {
  background: transparent;
  border: 1px solid #3b1754;
  background: #ffffff;
}

/***********************************************************************************************/
/* Widget Link Color */
/***********************************************************************************************/
.sidebar-widget a {
  color: #6e6e6e;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

.sidebar-widget a:hover {
  color: #3b1754;
}

/***********************************************************************************************/
/* CALENDAR WIDGET */
/***********************************************************************************************/
#calendar_wrap {
  margin: 0 auto 5px auto;
}

#calendar_wrap #wp-calendar {
  width: 100%;
  border: 1px solid #cccccc;
  padding: 2px;
}

#calendar_wrap #wp-calendar caption {
  border-color: #cccccc;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 1px medium;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

#calendar_wrap #wp-calendar thead {
  border-right: 1px solid #cccccc;
}

#calendar_wrap #wp-calendar thead th {
  border-right: 1px solid #cccccc;
}

#calendar_wrap #wp-calendar th {
  background: none repeat scroll 0 0 #f9f9f9;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

#calendar_wrap #wp-calendar tr th,
#calendar_wrap #wp-calendar thead th {
  font-weight: bold;
  padding: 9px 0;
  text-align: center;
}

#calendar_wrap #wp-calendar tbody {
  color: #aaa;
}

#calendar_wrap #wp-calendar tbody tr td {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding: 6px;
  background: #f5f5f5;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-align: center;
  -webkit-transition: 0.3s 0.2s ease-out;
  -moz-transition: 0.3s 0.2s ease-out;
  -o-transition: 0.3s 0.2s ease-out;
  transition: 0.3s 0.2s ease-out;
}

#calendar_wrap #wp-calendar tbody tr td:hover {
  background: #fafafa;
}

#calendar_wrap #wp-calendar tbody .pad {
  background: none;
}

#calendar_wrap #wp-calendar tfoot tr td {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding: 6px;
  text-align: center;
}

#calendar_wrap #wp-calendar tfoot #next {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

#calendar_wrap #wp-calendar tfoot #prev {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 10px;
}

#calendar_wrap #wp-calendar #today {
  background-color: #3b1754;
  color: #ffffff;
  font-weight: bold;
}

/***********************************************************************************************/
/* 14. RESPONSIVE STYLING */
/***********************************************************************************************/
/* Tablet Portrait size to standard (devices and browsers) */
@media only screen and (max-width: 1224px) {
  footer .footer-logo:after {
    display: none;
  }
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .header-top .icon-box .icon-container {
    font-size: 25px;
  }

  .header-top .icon-box .text {
    font-size: 13px;
  }

  .header-top .icon-box .text .head-heading {
    font-size: 13px;
  }

  .header-top .btn-quote .btn-request_quote {
    font-size: 12px;
    padding: 12px 3px;
  }

  .main-top-header p {
    font-size: 13px;
  }

  #slider_1 .slider-content h2 {
    font-size: 50px;
    line-height: 52px;
  }

  #slider_1 .slider-content h3 {
    font-size: 25px;
  }

  #slider_1 .slider-content p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1370px) {
  #slider_1 {
    text-align: center;
  }

  #slider_1 .slider_item_container {
    min-height: 520px;
  }

  #slider_1 .item img {
    display: block;
    width: 100%;
    height: auto;
  }

  #slider_1 .slider-content {
    margin-top: 24px;
  }

  #slider_1 .slider-content h3 {
    font-size: 24px;
  }

  #slider_1 .slider-content h2 {
    font-size: 60px;
    line-height: 60px;
  }

  /*----- Banner ----*/
  .section-banner {
    padding: 150px 0px;
  }

  .section-banner h2 {
    font-size: 60px;
    line-height: 60px;
  }

  .section-banner h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .btn-theme {
    line-height: 24px;
  }
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (max-width: 991px) {
  /*-----  HELPER CLASS----*/
  .no-padding-pricing-table,
  .no-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .header-top .col-logo {
    text-align: center;
  }

  /*-----  TOP BAR ----*/
  .main-header .top-bar {
    text-align: center;
    display: none;
  }

  .main-header ul.top-bar-info {
    padding: 0 0 12px 0;
    margin: 0;
    text-align: center;
  }

  .main-header ul.top-bar-info li {
    margin-right: 0;
    display: inline-block;
    width: 49%;
  }

  .main-header ul.top-bar-info li:after {
    display: none;
  }

  .top-donation-btn-container {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  a.logo {
    text-align: center;
  }

  .navbar-default .navbar-nav li ul.drop-down {
    top: 68px;
  }

  .navbar-default .navbar-header {
    width: 100%;
    text-align: center;
    clear: both;
    float: none;
    margin: 0;
  }

  .navbar-default .navbar-toggle span.icon-bar {
    height: 1px;
  }

  .navbar-default .navbar-right {
    float: none;
    padding: 0;
    margin: 0px 48px 0 0;
  }

  .navbar-default .navbar .navbar-collapse {
    text-align: center;
  }

  .top-location-info {
    display: block;
    text-align: center;
  }

  .main-menu-container {
    float: none;
  }

  .main-header {
    background: #2c2c2c;
    position: relative;
  }

  .sticky-wrapper {
    background: rgba(0, 0, 0, 0.8);
  }

  .navbar-nav > li {
    margin-left: 0;
  }

  .navbar-default .navbar-nav > li > a {
    font-weight: 500;
    padding-left: 12px;
    padding-right: 12px;
  }

  #slider_1 {
    text-align: center;
  }

  #slider_1 .slider_item_container {
    min-height: 480px;
  }

  #slider_1 .item img {
    display: block;
    width: 100%;
    height: auto;
  }

  #slider_1 .slider-content {
    top: 50%;
    transform: translateY(-48%);
  }

  #slider_1 .slider-content h2 {
    font-size: 60px;
    line-height: 72px;
    padding-bottom: 0px;
    margin-bottom: 24px;
  }

  #slider_1 .slider-content h3 {
    font-size: 24px;
    line-height: 32px;
  }

  /*-----  ABOUT ----*/
  .about-img {
    margin: 24px 0;
  }

  .page-header {
    padding: 80px 0;
  }

  .main-sidebar {
    width: 100%;
    border: 0px solid transparent;
  }

  .logo {
    text-align: center;
  }

  /*----- PROCESS BLOCK  ----*/
  .process-step-1,
  .process-step-2 {
    margin-bottom: 24px;
  }

  /*----- COUNTER BLOCK ----*/
  .counter-block-1,
  .counter-block-2 {
    margin-bottom: 24px;
  }

  /*----- PRICING TABLE ----*/
  .price-table-layout-1,
  .price-table-layout-2 {
    margin-bottom: 24px;
  }

  /*----- PRICING TABLE ----*/
  .price-table-layout-1,
  .price-table-layout-2 {
    margin-bottom: 24px;
  }

  /*----- TEAM LAYOUT  ----*/
  .team-layout-1 {
    margin-bottom: 24px;
  }

  .gallery-carousel .owl-controls {
    display: none;
  }

  /*----- COUNTDOWN LAYOUT ----*/
  #coming_countdown {
    font-size: 24px;
  }

  #coming_countdown .countdown_container span.count_number {
    font-size: 72px;
    line-height: 60px;
  }

  #coming_countdown .countdown_container span.count_text {
    font-size: 24px;
    line-height: 42px;
  }

  .footer-widget-area {
    padding: 42px 0 0 0;
  }

  .footer-widget {
    margin-bottom: 36px;
  }

  .footer-intro {
    display: none;
  }

  .footer-nav {
    display: none;
  }

  .copyright-text {
    text-align: center;
  }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  /*-----  HELPER CLASS----*/
  .btn-theme {
    padding: 12px 24px;
    font-size: 14px;
  }

  .no-padding-pricing-table,
  .no-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /*-----  TOP BAR ----*/
  .main-header .top-bar {
    text-align: center;
    display: none;
  }

  .main-header ul.top-bar-info {
    padding: 0 0 12px 0;
    margin: 0;
    text-align: center;
  }

  .main-header ul.top-bar-info li {
    margin-right: 0;
    float: left;
    width: 50%;
  }

  .main-header ul.top-bar-info li:after {
    display: none;
  }

  .main-menu-container {
    float: none;
  }

  .navbar-default .navbar-toggle {
    margin-top: 22px;
    float: right;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }

  .navbar-default .navbar-toggle span.icon-bar {
    color: #3b1754;
  }

  .navbar-default .nav > li > a,
  .navbar-default header.one-page .navbar-nav > li > a {
    padding: 5px 15px;
  }

  .navbar-default .navbar-nav > li > a.link-active {
    background: none;
  }

  .navbar-default .navbar .navbar-right {
    width: 100%;
    text-align: left;
  }

  .navbar-default .navbar-collapse {
    background: #0d0d0d;
    padding: 15px 0;
    border: 0;
  }

  .navbar-default .pull-left {
    float: none !important;
    overflow: hidden;
  }

  .navbar-default .pull-right {
    float: none !important;
  }

  .navbar-default .navbar-nav li ul.drop-down,
  .navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 {
    background: transparent;
    border: none;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    position: relative;
    width: auto;
    visibility: visible;
    opacity: 1;
    top: inherit;
    left: inherit;
  }

  .navbar-default .navbar-nav li ul.drop-down li a,
  .navbar-default .navbar-nav li ul.drop-down li ul.drop-down.level3 li a {
    background: none;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 20px;
  }

  .navbar-default .navbar-nav li ul.drop-down li a:hover,
  .navbar-default
    .navbar-nav
    li
    ul.drop-down
    li
    ul.drop-down.level3
    li
    a:hover {
    color: #ffffff;
  }

  .navbar-default .navbar-nav li ul.drop-down li.drop a {
    color: #ffffff;
  }

  .navbar-default .navbar-nav {
    margin: 0px;
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.7);
  }

  .navbar-default .navbar-nav li a {
    font-weight: bold;
    color: #3b1754;
  }

  .navbar-default .navbar-nav .drop-down li a {
    color: #ffffff;
  }

  .logo {
    text-align: center;
  }

  .main-header {
    background: #2c2c2c;
    position: relative;
  }

  .sticky-wrapper {
    background: rgba(0, 0, 0, 0.8);
  }

  .stuck {
    position: initial;
  }

  .section-content-block {
    padding: 36px 0;
  }

  .section-heading-wrapper,
  .section-heading-wrapper-alt {
    margin-bottom: 0px;
  }

  .section-heading-wrapper h2,
  .section-heading-wrapper-alt h2 {
    font-size: 32px;
    letter-spacing: 0em;
    line-height: 42px;
    margin-bottom: 24px;
  }

  .section-heading-wrapper h3,
  .section-heading-wrapper-alt h3 {
    display: none;
  }

  .section-heading {
    font-size: 32px;
    line-height: 36px;
    font-weight: normal;
    margin-bottom: 32px;
  }

  .section-heading:before {
    top: 42px;
  }

  .section-subheading {
    display: none;
  }

  .section-light-heading {
    font-size: 45px;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header h3 {
    text-align: center;
  }

  .page-header .page-breadcrumb {
    text-align: center;
  }

  #slider_1 .slider_item_container {
    min-height: 350px;
  }

  #slider_1 .slider-content {
    text-align: center;
    top: 50%;
    transform: translateY(-55%);
  }

  #slider_1 .slider-content h2 {
    font-size: 42px;
    line-height: 48px;
    padding-bottom: 0px;
    margin-bottom: 24px;
  }

  #slider_1 .slider-content h3 {
    display: none;
  }

  #slider_1 .slider-content .slider-button {
    margin-top: 16px;
  }

  #slider_1 .slider-content .slider-button a.btn-slider {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
    font-weight: 500;
    padding: 8px 16px;
  }

  /*----- BANNER ----*/
  .section-banner {
    padding: 130px 0px;
  }

  .section-banner .banner-content {
    transform: translateY(-30px);
  }

  .section-banner .banner-content h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .section-banner .banner-content h3 {
    display: none;
  }

  .section-banner .banner-content a.btn-slider {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
  }

  /*-----  ABOUT ----*/
  .about-img {
    margin: 24px 0 24px 0;
  }

  /*----- PROCESS BLOCK  ----*/
  .process-step-1,
  .process-step-2 {
    margin-bottom: 24px;
  }

  /*----- COUNTER BLOCK ----*/
  .counter-block-1,
  .counter-block-2 {
    margin-bottom: 24px;
  }

  /*----- APPOINTMENT FORM. ----*/
  .appointment-form-wrapper {
    clear: both;
  }

  .appointment-form-wrapper .appointment-form-heading {
    position: relative;
    background: #3b1754;
    padding: 12px 24px 18px;
    margin: -2px -5px 48px -5px;
    text-align: center;
  }

  .appointment-form-wrapper .appointment-form-heading h3 {
    margin: 0;
    display: block;
  }

  .appointment-form-wrapper .appointment-form-heading h3:after {
    display: none;
  }

  .appointment-form-wrapper .appointment-form-heading span {
    float: none;
    display: block;
    margin-top: 12px;
  }

  .appointment-form-wrapper .appoinment-form {
    padding: 32px 6px;
  }

  /*----- PRICING TABLE ----*/
  .price-table-layout-1,
  .price-table-layout-2 {
    margin-bottom: 24px;
  }

  /*----- TEAM LAYOUT  ----*/
  .team-layout-1 {
    margin-bottom: 24px;
  }

  /*----- CTA ----*/
  .section-cta-bg-1 {
    background: #f1f5f8;
  }

  .cta-layout-01 h2,
  .cta-layout-02 h2,
  .cta-video-box h2 {
    font-size: 32px;
    line-height: 60px;
  }

  .cta-layout-01 h2 span,
  .cta-layout-02 h2 span,
  .cta-video-box h2 span {
    font-size: 42px;
    line-height: 60px;
  }

  .cta-layout-01 h4,
  .cta-layout-02 h4,
  .cta-video-box h4 {
    font-size: 24px;
    line-height: 32px;
  }

  .appointment-form-wrapper {
    margin: 12px 0 48px 0;
    padding: 0px 5px 28px;
  }

  .appointment-form-wrapper h3 {
    font-weight: 600;
    margin: 0 -5px 32px;
    position: relative;
  }

  .appoinment-form {
    padding: 0 0px;
  }

  /*----- COUNTDOWN LAYOUT  ----*/
  #coming_countdown {
    font-size: 24px;
  }

  #coming_countdown .countdown_container span.count_number {
    font-size: 50px;
    line-height: 40px;
  }

  #coming_countdown .countdown_container span.count_text {
    font-size: 18px;
    line-height: 42px;
  }

  /*-----TESTIMONIALS ----*/
  .testimony-layout-1 {
    max-width: 100%;
  }

  .section-home-blog .latest-news-container {
    margin-bottom: 30px;
  }

  /*----- FAQ LAYOUT ----*/
  .faq-layout .faq-box .panel-heading [data-toggle="collapse"]::after {
    display: none;
  }

  .message-container-404 {
    margin: 48px 0;
  }

  .message-container-404 .text-404 {
    margin: 80px 0;
  }

  .message-container-404 .search-form-404 {
    padding: 5px;
    width: 100%;
  }

  .message-container-404 .message-text-404 {
    padding: 24px 0px;
  }

  .article-container-fix,
  .main-sidebar {
    width: 100%;
    margin-left: 0px;
    border: 0px solid transparent;
  }

  .post-details-container h3 {
    margin-top: 12px;
  }

  .post-box-container .bd-post-image-container {
    margin: 0 auto;
  }

  .image_gallery_carousel {
    margin-bottom: 48px;
  }

  a.btn-load-more {
    margin-bottom: -24px;
    margin-top: -16px;
  }

  .footer-nav {
    float: none;
    width: 100%;
    margin: 10px auto;
    display: inline-block;
    text-align: center;
  }

  .copyright-text {
    text-align: center;
  }

  .footer-widget-area {
    padding: 42px 0 0 0;
  }

  .footer-widget {
    margin-bottom: 36px;
  }

  .footer-intro {
    display: none;
  }

  .footer-nav {
    display: none;
  }

  .copyright-text {
    text-align: center;
  }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (min-width: 0px) and (max-width: 479px) {
  /*-----  HELPER CLASS----*/
  .btn-theme {
    padding: 12px 18px;
    font-size: 14px;
  }

  .no-padding-pricing-table,
  .no-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .main-header {
    background: #2c2c2c;
    position: relative;
  }

  .sticky-wrapper {
    background: rgba(0, 0, 0, 0.8);
  }

  /*-----  TOP BAR ----*/
  .main-header .top-bar {
    text-align: center;
    display: none;
  }

  .main-menu-container {
    float: none;
  }

  a.logo {
    text-align: center;
    width: 70%;
  }

  .navbar-default .navbar-toggle span.icon-bar {
    height: 1px;
  }

  .navbar-default .navbar-nav {
    margin: 0px;
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.7);
  }

  .navbar-default .navbar-nav li {
    margin-left: 0px;
  }

  .navbar-default .navbar-nav li a {
    font-weight: bold;
    color: #3b1754;
  }

  .navbar-default .navbar-nav .drop-down {
    color: #ffffff;
  }

  .navbar-default .navbar-nav .drop-down li a {
    color: #ffffff;
  }

  .logo {
    text-align: center;
  }

  .section-heading-wrapper,
  .section-heading-wrapper-alt {
    margin-bottom: 0px;
  }

  .section-heading-wrapper h2,
  .section-heading-wrapper-alt h2 {
    font-size: 32px;
    letter-spacing: 0em;
    line-height: 42px;
  }

  .section-heading-wrapper h3,
  .section-heading-wrapper-alt h3 {
    display: none;
  }

  .section-content-block {
    padding: 32px 0;
  }

  .page-header {
    padding: 80px 0;
  }

  .page-header h3 {
    font-size: 24px;
    line-height: 32px;
    margin: 12px 0;
  }

  /*----- HOME SLIDER ----*/
  #slider_1 .slider_item_container {
    min-height: 300px;
  }

  #slider_1 .slider-content {
    top: 50%;
    transform: translateY(-55%);
  }

  #slider_1 .slider-content i.icon:after,
  #slider_1 .slider-content i.icon:before {
    width: 50px;
    line-height: 50px;
    height: 50px;
    font-size: 20px;
    margin: 40px 0 10px;
  }

  #slider_1 .slider-content h2 {
    font-size: 42px;
    line-height: 48px;
    padding-bottom: 0px;
    margin-bottom: 12px;
  }

  #slider_1 .slider-content h3 {
    display: none;
  }

  #slider_1 .slider-content .slider-button {
    margin-top: 10px;
  }

  #slider_1 .slider-content .slider-button a.btn-slider {
    font-size: 14px;
    display: inline-block;
  }

  /*-----  ABOUT ----*/
  .about-img {
    margin: 24px 0;
  }

  .about-highlight {
    background: #fafafa;
  }

  .about-highlight .highlight-box {
    border: 1px solid #eee;
  }

  .about-highlight .highlight-box h3 {
    font-size: 18px;
  }

  /*----- PROCESS BLOCK  ----*/
  .process-step-1,
  .process-step-2 {
    margin-bottom: 24px;
  }

  /*----- CTA ----*/
  .section-cta-bg-1 {
    background: #f1f5f8;
  }

  .cta-layout-01 h2,
  .cta-layout-02 h2,
  .cta-video-box h2 {
    font-size: 42px;
    line-height: 60px;
  }

  .cta-layout-01 h2 span,
  .cta-layout-02 h2 span,
  .cta-video-box h2 span {
    font-size: 42px;
    line-height: 60px;
  }

  .cta-layout-01 h4,
  .cta-layout-02 h4,
  .cta-video-box h4 {
    font-size: 24px;
    line-height: 32px;
  }

  /*----- APPOINTMENT FORM ----*/
  .appointment-form-wrapper {
    clear: both;
    margin: 12px 0 48px 0;
  }

  .appointment-form-wrapper .appointment-form-heading {
    position: relative;
    background: #3b1754;
    padding: 12px 24px 18px;
    margin: -1px -1px 48px -1px;
    text-align: center;
  }

  .appointment-form-wrapper .appointment-form-heading h3 {
    margin: 0;
    display: block;
  }

  .appointment-form-wrapper .appointment-form-heading h3:after {
    display: none;
  }

  .appointment-form-wrapper .appointment-form-heading span {
    float: none;
    display: block;
    margin-top: 12px;
  }

  .appointment-form-wrapper .appoinment-form {
    padding: 32px 6px;
  }

  /*----- TEAM LAYOUT  ----*/
  .team-layout-1 {
    margin-bottom: 24px;
  }

  /*----- GALLERY LAYOUT  ----*/
  .filterable-gallery {
    clear: both;
  }

  .filterable-gallery .filter-items {
    text-align: center;
    margin-bottom: 24px;
  }

  .filterable-gallery .filter-items button {
    margin-bottom: 6px;
  }

  /*----- NEWSLETTER LAYOUT  ----*/
  .horizontal-newsletter .news-subscription button {
    font-size: 16px;
    width: 100px;
  }

  /*----- BLOG LAYOUT  ----*/
  .latest-news-container {
    border: 0px solid #cccccc;
  }

  .latest-news-container .news-content {
    padding: 12px 16px 24px;
  }

  /*----- BANNER ----*/
  .section-banner {
    padding: 80px 0px;
  }

  .section-banner .banner-content {
    transform: translateY(-20px);
  }

  .section-banner .banner-content h2 {
    font-size: 32px;
  }

  .section-banner .banner-content h3 {
    display: none;
  }

  .section-banner .banner-content a.btn-slider {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
  }

  /*----- FAQ LAYOUT ----*/
  .faq-layout .faq-box .panel-heading [data-toggle="collapse"]::after {
    display: none;
  }

  /*-----TESTIMONIALS ----*/
  .testimony-layout-1 {
    max-width: 100%;
  }

  /*----- COUNTDOWN LAYOUT ----*/
  #coming_countdown {
    font-size: 24px;
  }

  #coming_countdown .countdown_container span.count_number {
    font-size: 50px;
    line-height: 40px;
  }

  #coming_countdown .countdown_container span.count_text {
    font-size: 14px;
    line-height: 42px;
  }

  /*----- LOGO LAYOUT ----*/
  .logo-layout-1 .logo,
  .logo-layout-2 .logo {
    margin-top: 0px;
  }

  .message-container-404 {
    margin: 48px 0;
  }

  .message-container-404 .text-404 {
    margin: 80px 0;
  }

  .message-container-404 .search-form-404 {
    padding: 5px;
    width: 100%;
  }

  .message-container-404 .message-text-404 {
    padding: 24px 0px;
  }

  .about-footer {
    margin-bottom: 32px;
    padding-bottom: 22px;
  }

  .footer-widget-area {
    padding: 0;
  }

  .footer-widget {
    margin-bottom: 36px;
  }

  .footer-widget .footer-useful-links {
    clear: both;
  }

  .footer-widget .footer-useful-links li {
    width: 100%;
    float: none;
  }

  .footer-intro {
    display: none;
  }

  .footer-nav {
    display: none;
  }

  .copyright-text {
    text-align: center;
  }
}

/* Tab Portrait Size to Tab Landscape Size (devices and browsers) */
@media only screen and (min-width: 380px) and (max-width: 480px) {
  .xs-margin {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 600px) {
  .xs-margin {
    margin-left: 70px;
    margin-right: 70px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .xs-margin {
    margin-left: 120px;
    margin-right: 120px;
  }
}

/*# sourceMappingURL=styles.css.map */

/* Premium Footer Styling */
footer .footer-widget-area-bg {
  background-color: #000 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

footer .footer-widget-area-bg p {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 15px;
}

footer .footer-widget-area-bg a {
  color: #ffffff !important;
}

footer .footer-widget-area-bg a:hover {
  color: #ebcbe2 !important;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-brand-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.footer-brand-row .footer-logo {
  margin-bottom: 0;
}

.footer-whatsapp {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-whatsapp:hover {
  color: #ffffff !important;
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.36);
}

@media (max-width: 767px) {
  .footer-brand-row {
    justify-content: center;
    padding-right: 0;
  }

  .footer-whatsapp {
    position: static;
    transform: none;

    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .footer-whatsapp:hover {
    transform: translateY(-2px);
  }
}

/* Apply Playwrite IE to all h3 */
h3,
.h3 {
  font-family: "Playwrite IE", sans-serif !important;
}

.h3-manrope {
  font-family: "Manrope", sans-serif !important;
}

/* Tab Portrait Size to Tab Landscape Size (devices and browsers) */
@media only screen and (min-width: 380px) and (max-width: 480px) {
  .xs-margin {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 600px) {
  .xs-margin {
    margin-left: 70px;
    margin-right: 70px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .xs-margin {
    margin-left: 120px;
    margin-right: 120px;
  }
}

/*# sourceMappingURL=styles.css.map */

/* Premium Footer Styling */
footer .footer-widget-area-bg {
  background-color: #000 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

footer .footer-widget-area-bg p {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 15px;
}

footer .footer-widget-area-bg a {
  color: #ffffff !important;
}

footer .footer-widget-area-bg a:hover {
  color: #ebcbe2 !important;
}

.footer-logo {
  margin-bottom: 25px;
}

/* Apply Playwrite IE to all h3 */
h3,
.h3 {
  font-family: "Playwrite IE", sans-serif !important;
}

.h3-manrope {
  font-family: "Manrope", sans-serif !important;
}

.bulk-order-cta {
  background-color: #3b1754 !important;
  background-image: url("../images/Logos/Logo-07.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30%;
  min-height: 500px;
  padding: 60px 0;
}

.bulk-order-cta .cta-layout-01 {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.bulk-order-cta .row {
  display: flex;
  align-items: center;
  width: 100%;
}

.bulk-order-cta .row > .col-md-10 {
  width: 100%;
}

.bulk-order-cta .row > .col-md-2 {
  display: none;
}

.bulk-order-cta .cta-layout-01 h2,
.bulk-order-cta .cta-layout-01 h3 {
  color: #ffffff;
}

.bulk-order-cta .cta-layout-01 h2 {
  max-width: 620px;
}

.bulk-order-cta .cta-layout-01 h3 {
  max-width: 520px;
}

@media (max-width: 991px) {
  .bulk-order-cta {
    min-height: auto;
    padding: 54px 0 280px;
    background-position: center bottom 30px;
    background-size: 300px auto;
  }

  .bulk-order-cta .cta-layout-01 {
    min-height: auto;
  }

  .bulk-order-cta .row {
    display: block;
    text-align: center;
  }

  .bulk-order-cta .cta-layout-01 h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.25;
  }

  .bulk-order-cta .cta-layout-01 h2 span {
    font-size: 44px;
    line-height: 1.2;
  }

  .bulk-order-cta .cta-layout-01 h3 {
    max-width: none;
    font-size: 16px !important;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .bulk-order-cta {
    padding: 42px 0 220px;
    background-size: 220px auto;
    background-position: center bottom 24px;
  }

  .bulk-order-cta .cta-layout-01 h2 {
    font-size: 28px;
  }

  .bulk-order-cta .cta-layout-01 h2 span {
    font-size: 34px;
  }

  .bulk-order-cta .cta-layout-01 h3 {
    font-size: 14px !important;
  }
}

/* SECTION — product carousel (premium cards) */
.luxury-products-section {
  background: transparent !important;

  overflow: visible;
}

.luxury-products-section > .container {
  overflow: visible;
  background: transparent;
}

.luxury-products-section .service-carousel.owl-carousel,
.luxury-products-section .owl-carousel .owl-stage-outer,
.luxury-products-section .owl-carousel .owl-stage,
.luxury-products-section .owl-carousel .owl-item {
  background: transparent !important;
}

#product-range {
  scroll-margin-top: 100px;
}

.luxury-heading h2 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 0em;
  font-weight: 800;
  color: #555555;
  margin-bottom: 12px;
}

.luxury-heading h3 {
  font-family: "Playwrite IE", cursive !important;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #3b1754;
  line-height: 32px;
}

/* Featured row: 3 product cards inline, centered (same .lux-card + hover zoom) */
.lux-trio-section {
  background: linear-gradient(180deg, #f7f0f4 0%, #efe4ea 100%);
  padding: 72px 0 96px;
  border-top: 1px solid rgba(59, 23, 84, 0.06);
}

.lux-trio-heading h2 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  color: #555555;
  margin-bottom: 8px;
}

.lux-trio-heading h3 {
  font-family: "Playwrite IE", cursive !important;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #3b1754;
  margin-bottom: 0;
}

.lux-trio-row {
  margin-top: 36px;
}

.lux-trio-col {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 28px;
}

.lux-trio-col .lux-card {
  width: 100%;
  max-width: 420px;
}

/* Featured row: stronger in-frame zoom on photo cards (1st & 2nd) */
.lux-trio-section
  .lux-card:not(.lux-card--name-only)
  .lux-zoom-wrap
  .lux-product-img {
  width: 142%;
  height: 142%;
  transform: translate(-50%, -5%);
  object-position: 46% 0;
}

/* 3rd card: typography only — no product photo, no prices */
.lux-card--name-only {
  justify-content: center;
  align-items: stretch;
}

.lux-card--name-only .lux-card-typographic {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 48px 28px 56px;
  text-align: center;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 35%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(165deg, rgba(0, 0, 0, 0.2) 0%, transparent 45%);
  border-radius: 20px;
  margin: 12px 12px 16px;
}

.lux-name-display {
  font-family: "Playwrite IE", cursive !important;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #fff8fe;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0;
}

@media (min-width: 992px) {
  .lux-trio-col {
    margin-bottom: 0;
  }
}

.lux-card {
  background: linear-gradient(
    90deg,
    #4b004b 0%,
    #a01098 38%,
    #d020c8 50%,
    #a01098 62%,
    #4b004b 100%
  );
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.35s ease;
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 480px;
  display: flex !important;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.lux-card:hover {
  transform: translateY(-10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lux-card-media {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 20px;
  overflow: hidden;
  flex: 0 0 auto;
  height: 300px;
  padding: 0;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.lux-card-gallery {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: 20px;
}

.lux-card-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
}

.lux-card-gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.lux-card-gallery-slide .lux-zoom-wrap {
  position: absolute;
  inset: 0;
}

.lux-card-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59, 23, 84, 0.55);
  backdrop-filter: blur(4px);
}

.lux-card-gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition: all 0.25s ease;
}

.lux-card-gallery-dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: #ffffff;
}

/* Extra trim on bottom edge if any sparkle remains after cover crop */
.lux-card-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(
    to top,
    rgba(75, 0, 75, 0.35),
    rgba(75, 0, 75, 0)
  );
  pointer-events: none;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.lux-zoom-wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: 20px;
  cursor: crosshair;
}

.lux-zoom-lens {
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 38%;
  max-width: 128px;
  max-height: 128px;
  min-width: 72px;
  min-height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(59, 23, 84, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  border-radius: 6px;
  transition: opacity 0.12s ease;
}

.lux-zoom-wrap.is-active .lux-zoom-lens {
  opacity: 1;
}

.lux-zoom-flyout {
  position: fixed;
  width: min(460px, 54vw);
  height: min(460px, 54vw);
  z-index: 10050;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(59, 23, 84, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}

.lux-zoom-flyout.is-visible {
  opacity: 1;
  visibility: visible;
}

.lux-zoom-flyout-inner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #faf7fb;
}

/* Body-mounted portal — above carousel, header, etc. */
#lux-zoom-portal.lux-zoom-portal {
  z-index: 99999;
}

.lux-zoom-wrap .lux-product-img {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  display: block;
  width: 128%;
  height: 110%;
  max-width: none;
  transform: translate(-50%, var(--img-shift-y, -4%)) scale(var(--img-scale, 1));
  transform-origin: center center;
  object-fit: cover;
  object-position: 46% 0;
}

/* Per-image vertical alignment for carousel: keep bottle caps/bodies on a common row */
.service-carousel .lux-img-virtue {
  --img-scale: 1.22;
  --img-shift-y: -6%;
}

.service-carousel .lux-img-enmoda {
  --img-scale: 1.2;
  --img-shift-y: -5%;
}

.service-carousel .lux-img-hidden {
  --img-scale: 1.18;
  --img-shift-y: -7%;
}

.service-carousel .lux-img-aura {
  width: 126%;
  height: 126%;
  --img-scale: 1.14;
  --img-shift-y: -8%;
  object-position: 50% 54%;
}

.service-carousel .lux-img-mumbai {
  --img-scale: 1.22;
  --img-shift-y: -6%;
}

.service-carousel .lux-img-valorous {
  --img-scale: 1.2;
  --img-shift-y: -6%;
}

.service-carousel .lux-img-trail {
  --img-scale: 1.2;
  --img-shift-y: -6%;
}

.lux-card-media--aura::after {
  height: 6px;
  background: linear-gradient(
    to top,
    rgba(75, 0, 75, 0.35),
    rgba(75, 0, 75, 0)
  );
}

@media (max-width: 991px) {
  .lux-card-media {
    height: 280px;
  }

  .lux-zoom-wrap {
    cursor: default;
  }

  .lux-zoom-wrap .lux-product-img,
  .service-carousel .lux-img-aura {
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translate(-50%, -50%) scale(1.4) !important;
  }

  .lux-card-gallery-dots {
    bottom: 10px;
    gap: 6px;
    padding: 5px 8px;
  }

  .lux-card-gallery-dot {
    width: 8px;
    height: 8px;
  }

  .lux-card-gallery-dot.is-active {
    width: 18px;
  }

  .lux-zoom-lens,
  .lux-zoom-flyout,
  #lux-zoom-portal {
    display: none !important;
  }
}

.lux-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px 8px;
}

.lux-card h3.lux-title,
.lux-card .lux-title {
  font-family: "Playwrite IE", cursive !important;
  font-size: 22px;
  font-weight: 600;
  color: #fff8fe;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  line-height: 1.3;
}

.lux-pricing-block {
  width: 100%;
  max-width: 280px;
  margin: 14px auto 0;
  display: grid;
  gap: 10px;
}

.lux-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.lux-size {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  margin: 0;
}

.lux-mrp {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.lux-footer {
  margin-top: auto;
  padding: 14px 16px 18px;
  border-top: none;
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lux-btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.lux-btn-action:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.lux-btn-whatsapp {
  background: #25d366;
  color: #072313 !important;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.28);
}

.lux-btn-enquire {
  background: #ffffff;
  color: #4b0055 !important;
  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.22);
}

@media (max-width: 420px) {
  .lux-footer {
    grid-template-columns: 1fr;
  }
}

.service-carousel.owl-theme .owl-nav [class*="owl-"] {
  background: #3b1754 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  font-size: 20px;
  transition: all 0.3s ease;
}

.service-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #d8a9c2 !important;
  color: #3b1754 !important;
}

.owl-carousel .owl-stage-outer {
  padding: 10px 0;
  background: transparent;
}

.luxury-products-section .owl-carousel .owl-stage-outer {
  background: transparent !important;
  -webkit-transform: none;
  transform: none;
}

/* Product carousel: keep arrows outside the cards (not over images) */
.luxury-products-section .service-carousel.owl-carousel {
  position: relative;
  overflow: visible;
}

.luxury-products-section .service-carousel .owl-nav {
  margin-top: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 44px;
  pointer-events: none;
}

.luxury-products-section .service-carousel .owl-nav > [class*="owl-"] {
  pointer-events: auto;
}

.luxury-products-section .service-carousel .owl-nav .owl-prev,
.luxury-products-section .service-carousel .owl-nav .owl-next,
.luxury-products-section .service-carousel .owl-nav div.owl-prev,
.luxury-products-section .service-carousel .owl-nav div.owl-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  float: none !important;
  left: auto;
  right: auto;
  margin: 0 !important;
}

.luxury-products-section .service-carousel .owl-nav .owl-prev,
.luxury-products-section .service-carousel .owl-nav div.owl-prev {
  left: -52px !important;
}

.luxury-products-section .service-carousel .owl-nav .owl-next,
.luxury-products-section .service-carousel .owl-nav div.owl-next {
  right: -52px !important;
}

@media (max-width: 1199px) {
  .luxury-products-section .service-carousel .owl-nav .owl-prev,
  .luxury-products-section .service-carousel .owl-nav div.owl-prev {
    left: -40px !important;
  }

  .luxury-products-section .service-carousel .owl-nav .owl-next,
  .luxury-products-section .service-carousel .owl-nav div.owl-next {
    right: -40px !important;
  }
}

@media (max-width: 767px) {
  .luxury-products-section .service-carousel .owl-nav .owl-prev,
  .luxury-products-section .service-carousel .owl-nav div.owl-prev {
    left: -8px !important;
  }

  .luxury-products-section .service-carousel .owl-nav .owl-next,
  .luxury-products-section .service-carousel .owl-nav div.owl-next {
    right: -8px !important;
  }
}

.owl-carousel .owl-stage {
  display: flex !important;
}

.owl-carousel .owl-item {
  display: flex !important;
  flex: 1 0 auto;
}

/* LUXURY CONTACT FORM */
@media (min-width: 768px) {
  .lux-form-row {
    display: flex;
    align-items: stretch;
  }
}

.lux-contact-form-block {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(59, 23, 84, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lux-contact-title {
  font-family: "Playwrite IE", cursive !important;
  font-size: 34px;
  font-weight: 600;
  color: #3b1754;
  margin-bottom: 35px;
  margin-top: 0;
}

.lux-form-group {
  margin-bottom: 25px !important;
}

.lux-form-control {
  border: none !important;
  border-bottom: 1px solid rgba(59, 23, 84, 0.2) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 15px 0 !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 15px !important;
  color: #3b1754 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  height: auto !important;
}

.lux-form-control:focus {
  border-color: #3b1754 !important;
  outline: none !important;
  padding-left: 10px !important;
}

.lux-form-control::placeholder {
  color: #a894b4 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lux-btn {
  background: #3b1754 !important;
  color: #fff !important;
  font-family: "Manrope", sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  padding: 16px 40px !important;
  border-radius: 30px !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: all 0.4s ease !important;
  width: 100% !important;
  box-shadow: 0 10px 20px rgba(59, 23, 84, 0.15) !important;
}

.lux-btn:hover {
  background: #d8a9c2 !important;
  color: #3b1754 !important;
  box-shadow: 0 15px 30px rgba(216, 169, 194, 0.4) !important;
  transform: translateY(-2px);
}

.lux-map-block {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(59, 23, 84, 0.08);
  height: 100%;
}

.btn-send-now {
  border: 0px;
  font-size: 20px;
  display: inline-block;
  background: #3b1754;
  color: #ffffff;
  line-height: 32px;
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  transition: all 0.3s ease;
}

.btn-send-now:hover,
.btn-send-now:focus,
.btn-send-now:active,
.btn-send-now:active:focus {
  background: #240c35 !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Ensure bottom contact icons align perfectly in the same row */
ul.contact-info > li {
  display: flex !important;
  align-items: flex-start !important;
}

ul.contact-info > li .icon-container {
  flex-shrink: 0;
  margin-top: 8px; /* Gently aligns the icon with the center of the first line of text */
}

ul.contact-info > li address {
  margin-bottom: 0 !important;
  padding-left: 15px; /* Ensure spacing between icon and text */
}

/* Fix for breadcrumb link hover color getting lost against dark background */
.page-breadcrumb a:hover {
  color: #d8a9c2 !important;
}
