/* --------------------------------------------

1. Font style
2. Typography style
3. Preloader style
4. Owl-Theme Custom style
5. Section style
6. Navbar style
7. Header style
8. Slider Fade & Slider style
9. Kenburns SlideShow style
10. Parallax Header style
11. Kenburns SlideShow style
12. Video Background style
13. Banner Header style
14. About style
15. Services 1 style
16. Services 2 style
17. Services 3 style
18. Services 4 style
19. Adoption style
20. Pricing 1 style
21. Pricing 2 style
22. Team style
23. Team single style
24. Shop style
25. Testimonial style
26. FAQs (Accordion) style
27. Image Gallery style
28. Video Gallery style
29. Video Popup style
30. Clients style
31. Blog style
32. Blog Sidebar style
33. Post style
34. Contact style
35. 404 style
36. Button style
37. Footer style
38. toTop Button style
39. Worktime style
40. Table style
41. Call Center style
42. Form style
43. Overlay Effect Bg Image style
44. Responsive style

-------------------------------------------- */

/* ======= Font style ======= */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
/* variable */
:root {
  --base-color: #745c8c;
  --dark-brown: #6a3b22;
  --medium-brown: #c49878;
  --default-orange: rgb(246, 147, 46, 0.96);
  --very-light-blue: #1cb9bd;
  --white: #fff;
  --alt-font: "Urbanist", sans-serif;
  --primary-font: "Urbanist", sans-serif;
}
.bg-navy {
  background: var(--dark-brown);
}
.bg-light-gray {
  background-color: var(--very-light-blue);
}
.bg-gradient-lightgray {
  background-image: linear-gradient(
    to bottom,
    #f4f4f7,
    #f5f5f7,
    #f6f6f8,
    #f7f7f9,
    #f8f8fa,
    #f9f9fb,
    #fafafb,
    #fbfbfc,
    #fcfcfd,
    #fdfdfe,
    #ffffff
  );
}
.bg-purple {
  background: var(--base-color);
}

/* ======= Typography style ======= */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}
body {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75em;
  color: var(--medium-brown);
  overflow-x: hidden !important;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
p {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75em;
  color: var(--medium-brown);
  margin-bottom: 15px;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 27px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 21px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--alt-font);
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 15px 0;
  color: var(--dark-brown);
}
img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
b {
  font-weight: 600;
}
.text-dark {
  color: var(--dark-brown);
}
.small,
small {
  font-size: 16px;
}
/* text field */
button,
input,
optgroup,
select,
textarea {
  font-family: var(--primary-font);
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
  outline: none;
}
input[type="password"],
input[type="email"],
input[type="number"],
input[type="text"],
input[type="file"],
textarea {
  max-width: 100%;
  margin-bottom: 15px;
  padding: 14px 20px;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--medium-brown);
  background-image: none;
  border: none;
  border-radius: 30px;
  border: 1px solid #e4e2f3;
}
input[type="number"] {
  max-width: 140px;
  width: 140px;
  margin-bottom: 0;
  padding: 12px 30px;
}
.form-control {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 20px;
  font-size: 18px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--medium-brown);
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #e4e2f3;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 30px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 30px;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  background: var(--white);
  border: none;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
  color: var(--medium-brown);
  border: none;
}
select {
  padding: 10px;
  border-radius: 20px;
}
textarea:focus,
textarea:active,
textarea::placeholder {
  color: var(--medium-brown);
}
table,
th,
tr,
td {
  border: 0px solid var(--medium-brown);
}
th,
tr,
td {
  padding: 10px;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline;
}
/* submit and alert success  */
button[type="submit"],
input[type="submit"] {
  display: inline-block;
  height: auto;
  padding: 17px 35px;
  border: none;
  border-radius: 0;
  background-color: var(--base-color);
  -webkit-transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  transition: border-color 400ms ease, color 400ms ease,
    background-color 400ms ease;
  color: var(--white);
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  font-size: 18px;
  border-radius: 30px;
}
button[type="submit"]:hover,
input[type="submit"]:hover {
  border: none;
  background-color: var(--base-color);
  color: var(--white);
}
.send {
  color: white;
  text-decoration: none;
}
.send:hover {
  color: var(--white);
}
select {
  max-width: 100%;
}
.form-select {
  display: block;
  width: 100%;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--medium-brown);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23887bb6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  color: var(--medium-brown);
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px 20px;
  border: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 30px;
  padding-left: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 15px;
  border: 1px solid #e4e2f3;
  outline: none;
}
.form-control:focus,
.form-select:focus,
select:focus {
  outline: none;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border: 1px solid #e4e2f3;
}
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  margin: 5px 30px 15px 0px;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 12px;
}
input[type="checkbox"]:before {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid #eae7f5;
  background-color: #eae7f5;
  position: absolute;
  top: 0px;
  margin-left: -1px;
  border-radius: 3px;
}
input[type="checkbox"]:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  font-weight: normal;
  color: var(--base-color);
  background: transparent;
  position: absolute;
  top: 1px;
  margin-left: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  border: none;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  will-change: opacity;
  font-size: 12px;
}
input[type="checkbox"]:checked:after {
  opacity: 1;
}
/* placeholder */
::-webkit-input-placeholder {
  color: var(--medium-brown);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
}
:-moz-placeholder {
  color: var(--medium-brown);
}
::-moz-placeholder {
  color: var(--medium-brown);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--medium-brown);
}
/* Important */
.bg-position-top {
  background-position: top;
}
.bg-position-center {
  background-position: center;
}
.bg-position-bottom {
  background-position: bottom;
}
.o-hidden {
  overflow: hidden;
}
.position-re {
  position: relative;
}
.full-width {
  width: 100%;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-gray {
  background-color: var(--very-light-blue);
}
.bg-white {
  background-color: var(--white);
}
.pattern {
  background-repeat: repeat;
  background-size: auto;
}
.bold {
  font-weight: 400;
}
.count {
  font-family: var(--primary-font);
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  /*    left: 0;*/
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 9;
}
.v-middle2 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.v-bottom {
  position: absolute;
  width: 100%;
  bottom: 5%;
  left: 0;
  -webkit-transform: translate(0%, -5%);
  transform: translate(0%, -5%);
  z-index: 9;
}
.js .animate-box {
  opacity: 0;
}
:root {
  scroll-behavior: auto;
}
.position-relative {
  position: relative !important;
}
.bp-bottom {
  background-position: bottom;
}
.bp-top {
  background-position: top;
}
.bp-center {
  background-position: center;
}
.icon-bg {
  background: var(--white) !important;
}
hr {
  margin-top: 5px;
  margin-bottom: 15px;
  border: 0;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt--120 {
  margin-top: -120px !important;
}
.mt--130 {
  margin-top: -130px !important;
}
.mt--180 {
  margin-top: -180px !important;
}
.mt--219 {
  margin-top: -219px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-120 {
  margin-bottom: 120px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.br-20 {
  border-radius: 20px;
}
.icons {
  color: #fd961e;
  font-size: 16px;
  line-height: 1em;
  display: inherit;
  margin-bottom: 0;
  letter-spacing: -2px;
}
/* list */
.list {
  position: relative;
  display: block;
}
.list li {
  position: relative;
  display: flex;
  align-items: center;
}
.list li + li {
  margin-top: 0px;
}
.list-icon {
  display: grid;
  text-align: center;
  align-items: center;
  border-radius: 100%;
}
.list-icon span {
  font-size: 18px;
  color: var(--base-color);
}
.list-text {
  margin-left: 15px;
}
.list-text p {
  font-size: 18px;
  margin: 0;
}
/* vertical line */
.line-vr-section {
  position: relative;
  margin: -25px auto;
  border: 0;
  border-left: 1px solid;
  border-color: var(--base-color);
  width: 2px;
  height: 50px;
  z-index: 10;
  opacity: 1;
}
/* breadcrumb */
.breadcrumb {
  display: inline-flex;
  margin: 15px 0;
}
.breadcrumb a {
  color: var(--white);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}
/* WhatsApp Line */
div.whatsapp {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  text-orientation: sideways;
  text-orientation: sideways;
  margin: 0;
  position: absolute;
  top: 0;
  right: 40px;
  height: 55%;
  z-index: 9;
}
div.whatsapp .call {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7em;
  margin-top: 15px;
}
div.whatsapp .call span {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
div.whatsapp .icon {
  position: absolute;
  left: -1px;
  top: -55px;
  width: 55px;
  height: 55px;
  background: var(--default-orange) !important;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  border-radius: 100%;
}
div.whatsapp a .icon i {
  color: var(--white);
  font-size: 24px;
  transform: rotate(90deg);
}
@media screen and (max-width: 991px) {
  div.whatsapp {
    display: none;
  }
}
/* bottom fade */
.bottom-fade {
  width: 100%;
  top: 0;
  height: 100%;
  float: left;
  position: absolute;
  background: linear-gradient(
    to top,
    #000000 0%,
    rgba(0, 0, 0, 0.738) 19%,
    rgba(0, 0, 0, 0.541) 34%,
    rgba(0, 0, 0, 0.382) 47%,
    rgba(0, 0, 0, 0.278) 56.5%,
    rgba(0, 0, 0, 0.194) 65%,
    rgba(0, 0, 0, 0.126) 73%,
    rgba(0, 0, 0, 0.075) 80.2%,
    rgba(0, 0, 0, 0.042) 86.1%,
    rgba(0, 0, 0, 0.021) 91%,
    rgba(0, 0, 0, 0.008) 95.2%,
    rgba(0, 0, 0, 0.002) 98.2%,
    transparent 100%
  );
  z-index: 0;
  border-radius: 20px 20px 0 20px;
}
/* list style */
.listext {
  position: relative;
  display: block;
}
.listext li {
  position: relative;
  display: flex;
  align-items: center;
}
.listext li + li {
  margin-top: 10px;
}
.listext-icon {
  display: flex;
  align-items: center;
}
.listext-icon i {
  font-size: 18px;
  color: var(--default-orange);
  transform: rotate(30deg);
}
.listext-text {
  margin-left: 10px;
}
.listext-text p {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
  color: var(--dark-brown);
}
/* banner */
.banner {
  position: relative;
}
.banner .img {
  position: absolute;
  bottom: 0;
}
.divido {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

/* ======= Owl-Theme Custom style * ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
  line-height: 0.7;
  display: block;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  border-radius: 50%;
  background: #d7cff4;
  border: 1px solid #d7cff4;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--base-color);
  border: 1px solid var(--base-color);
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  outline: none;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  background: transparent;
}
/* owl-nav next and prev */
.owl-nav {
  position: absolute;
  bottom: 5%;
  right: 12%;
}
.owl-prev {
  float: left;
}
.owl-next {
  float: right;
}
/* owl-theme owl-nav */
.owl-theme .owl-nav {
  position: absolute !important;
  top: 45% !important;
  bottom: auto !important;
  width: 100%;
}
.owl-theme .owl-nav {
  position: relative;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-theme .owl-prev,
.owl-theme .owl-prev {
  left: 10px !important;
}
.owl-theme .owl-next {
  right: 10px !important;
}
.owl-theme .owl-prev > span,
.owl-theme .owl-next > span {
  position: absolute;
  line-height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.owl-theme .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--base-color);
  border-radius: 0;
  color: var(--white);
  font-size: 18px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
  border: 1px solid var(--base-color);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  border-radius: 100%;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--base-color);
  border: 1px solid var(--base-color);
  color: var(--white);
}
.owl-theme .owl-nav {
  top: 35% !important;
}
.owl-theme .owl-nav [class*="owl-"] {
  opacity: 0;
}
.owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}

/* ======= Section style ======= */
.section-padding {
  padding: 120px 0;
}
.section-title {
  font-size: 45px;
  font-family: var(--alt-font);
  font-weight: 600;
  color: var(--dark-brown);
  position: relative;
  margin-bottom: 15px;
  line-height: 1.2em;
}
[data-overlay-dark] .section-title span,
.section-title span {
  font-weight: 600;
  color: var(--default-orange);
}
.section-title.white {
  color: var(--white);
}
.section-subtitle {
  font-family: var(--primary-font);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--dark-brown);
  font-size: 18px;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.section-subtitle .icon {
  background-color: var(--default-orange);
  margin-right: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(30deg);
}
.section-subtitle .icon.icon-white {
  background-color: var(--white);
}
.section-subtitle .icon span {
  align-items: center;
  justify-content: center;
}
.section-subtitle .icon img {
  width: 25px;
}
.section-subtitle .icon.text-white {
  color: var(--white);
}
section.section-img {
  /* background-image: url(..img/1.jpg); */
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 30% auto;
}
/* section-info */
.section-info {
  position: relative;
  display: contents;
}
.section-info .icons {
  margin-right: 10px;
  padding: 0 20px;
  border-radius: 30px;
  background-color: var(--base-color);
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block !important;
  vertical-align: middle !important;
  letter-spacing: 1px;
}
.section-info .tag {
  margin-right: 10px;
  padding: 2px 20px;
  border-radius: 30px;
  background-color: var(--base-color);
  color: var(--white);
  font-family: var(--alt-font);
  font-size: 16px;
  font-weight: 500;
  display: inline-block !important;
  vertical-align: middle !important;
}
.section-info .desc {
  margin: 0;
  color: var(--dark-brown);
  display: inline-block;
  vertical-align: middle;
  display: inherit;
  font-weight: 400;
}
.section-info .text-decoration-line-bottom {
  border-bottom: 1px solid var(--default-orange);
  line-height: 1.5em;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 18px;
}
.text-decoration-line-bottom {
  border-bottom: 1px solid var(--default-orange);
  line-height: 1.5em;
}
.section-info.bg {
  background: var(--base-color);
}
@media screen and (max-width: 991px) {
  .section-title {
    font-size: 35px;
  }
  .section-info {
    display: block;
  }
}

/* ======= Slider Fade & Slider style ======= */
.slider-fade .owl-item,
.slider .owl-item {
  min-height: calc(93vh - 100px);
  position: relative;
}
.slider-fade .item,
.slider .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.slider-fade .item .caption,
.slider .item .caption {
  z-index: 9;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
/* owl-theme owl-dots */
.slider-fade .owl-theme .owl-dots,
.slider .owl-theme .owl-dots {
  position: absolute;
  bottom: 4vh;
  width: 100%;
}
.slider-fade .owl-theme .owl-dots .owl-dot span,
.slider .owl-theme .owl-dots .owl-dot span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
}
.slider-fade .owl-theme .owl-dots .owl-dot.active span,
.slider-fade .owl-theme .owl-dots .owl-dot:hover span,
.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  border: 1px solid var(--white);
}
/* owl-theme owl-nav */
.slider-fade .owl-theme .owl-nav,
.slider .owl-theme .owl-nav {
  position: absolute !important;
  top: 45% !important;
  bottom: auto !important;
  width: 100%;
}
.slider-fade .owl-theme .owl-nav,
.slider .owl-theme .owl-nav {
  position: relative;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider-fade .owl-theme .owl-prev,
.slider-fade .owl-theme .owl-prev,
.slider .owl-theme .owl-prev,
.slider .owl-theme .owl-prev {
  left: 10px !important;
}
.slider-fade .owl-theme .owl-next,
.slider .owl-theme .owl-next {
  right: 10px !important;
}
.slider-fade .owl-theme .owl-prev > span,
.slider-fade .owl-theme .owl-next > span,
.slider .owl-theme .owl-prev > span,
.slider .owl-theme .owl-next > span {
  position: absolute;
  line-height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slider-fade .owl-theme .owl-nav [class*="owl-"],
.slider .owl-theme .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
  line-height: 41px;
  background: transparent;
  border-radius: 100%;
  color: var(--white);
  font-size: 16px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
.slider-fade .owl-theme .owl-nav [class*="owl-"]:hover,
.slider .owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.slider-fade .owl-theme .owl-nav,
.slider .owl-theme .owl-nav {
  top: 40% !important;
}
.slider-fade .owl-theme .owl-nav [class*="owl-"],
.slider .owl-theme .owl-nav [class*="owl-"] {
  opacity: 0;
}
.slider-fade .owl-theme:hover .owl-nav [class*="owl-"],
.slider .owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .slider-fade .owl-theme .owl-nav,
  .slider .owl-theme .owl-nav {
    display: none;
  }
}

/* ======= Parallax Header style ======= */
.parallax-header {
  min-height: calc(93vh - 100px);
  background-position: center;
  background-position: 50% 0 !important;
}
.parallax-header.full-height {
  min-height: calc(93vh - 100px);
  background-position: center;
}
.parallax-header[data-overlay-dark] h6,
.parallax-header h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.parallax-header[data-overlay-dark] h6 .icon,
.parallax-header h6 .icon {
  background-color: var(--default-orange);
  margin-right: 10px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: flex;
}

.parallax-header[data-overlay-dark] h1,
.parallax-header h1 {
  position: relative;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 70px;
  color: var(--white);
  line-height: 1.1em;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin-bottom: 20px;
}
.parallax-header[data-overlay-dark] h1 span,
.parallax-header h1 span {
  color: var(--base-color);
  display: contents;
  font-style: italic;
  font-weight: 600;
}
.parallax-header[data-overlay-dark] p,
.parallax-header p {
  position: relative;
  font-family: var(--primary-font);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@media screen and (max-width: 991px) {
  .parallax-header[data-overlay-dark] h1,
  .parallax-header h1 {
    font-size: 35px;
  }
  .parallax-header[data-overlay-dark] p,
  .parallax-header p {
    font-size: 18px;
  }
  .md-hide {
    display: none;
  }
}

/* ======= Kenburns SlideShow style ======= */
.kenburns-section {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: calc(93vh - 100px);
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.kenburns-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background: var(--white);
}
.kenburns-inner {
  position: relative;
  z-index: 15;
}
.kenburns-inner .caption {
  position: relative;
}
.kenburns-inner .caption[data-overlay-dark] h6,
.kenburns-inner .caption h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 21px;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.kenburns-inner .caption[data-overlay-dark] h6 .icon,
.kenburns-inner .caption h6 .icon {
  background-color: var(--default-orange);
  margin-right: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: flex;
}
.kenburns-inner .caption[data-overlay-dark] h1,
.kenburns-inner .caption h1 {
  position: relative;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 70px;
  color: var(--white);
  line-height: 1.1em;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin-bottom: 20px;
}
.kenburns-inner .caption[data-overlay-dark] h1 span,
.kenburns-inner .caption h1 span {
  color: var(--base-color);
  display: contents;
  font-style: italic;
  font-weight: 600;
}
.kenburns-inner .caption[data-overlay-dark] p,
.kenburns-inner .caption p {
  position: relative;
  font-family: var(--primary-font);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#kenburnsSliderContainer .vegas-overlay {
  outline: none;
}
@media screen and (max-width: 991px) {
  .kenburns-inner .caption h1 {
    font-size: 35px;
  }
}

/* =======  Video Background style  ======= */
.video-fullscreen-wrap {
  position: relative;
  min-height: calc(93vh - 100px);
  overflow: hidden;
}
.video-fullscreen-video {
  height: calc(93vh - 100px);
}
.video-fullscreen-wrap video {
  width: 100vw;
  min-width: 100%;
  min-height: calc(93vh - 100px);
  -o-object-fit: cover;
  object-fit: cover;
}
.video-fullscreen-wrap .video-fullscreen-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-lauch-wrapper {
  border: none;
  background: none;
  width: 100%;
  padding: 0;
}
.video-fullscreen-wrap .overlay {
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 4;
}

.position-relative {
  position: relative !important;
}
.video-fullscreen-wrap[data-overlay-dark] h6,
.video-fullscreen-wrap h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.video-fullscreen-wrap[data-overlay-dark] h6 .icon,
.video-fullscreen-wrap h6 .icon {
  background-color: var(--default-orange);
  margin-right: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: flex;
}
.video-fullscreen-wrap[data-overlay-dark] h1,
.video-fullscreen-wrap h1 {
  position: relative;
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 70px;
  color: var(--white);
  line-height: 1.1em;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin-bottom: 20px;
}
.video-fullscreen-wrap[data-overlay-dark] h1 span,
.video-fullscreen-wrap h1 span {
  color: var(--base-color);
  display: contents;
  font-style: italic;
  font-weight: 600;
}
.video-fullscreen-wrap[data-overlay-dark] p,
.video-fullscreen-wrap p {
  position: relative;
  font-family: var(--primary-font);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@media screen and (max-width: 991px) {
  .video-fullscreen-wrap h1 {
    font-size: 35px;
  }
}

/* ======= Banner Header style ======= */
.banner-header {
  min-height: calc(65vh - 100px);
  background-position: center;
}
.banner-header.middle-height {
  min-height: calc(75vh - 100px);
}
.banner-header.full-height {
  min-height: calc(93vh - 100px);
}

.banner-header[data-overlay-dark] h6,
.banner-header h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.banner-header[data-overlay-dark] h6 .icon,
.banner-header h6 .icon {
  background-color: var(--default-orange);
  margin-right: 10px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: flex;
}

.banner-header h1 {
  font-size: 48px;
  color: var(--white);
  position: relative;
  line-height: 1.2em;
  margin-bottom: 0;
}
.banner-header h1 span {
  color: var(--base-color);
}
.banner-header h2 {
  font-size: 40px;
  color: var(--white);
  position: relative;
  line-height: 1.2em;
  margin-bottom: 0;
}
.banner-header h2 span {
  color: var(--base-color);
}
.banner-header p,
.banner-header[data-overlay-dark] p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--white);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
@media screen and (max-width: 991px) {
  .banner-header h1 {
    font-size: 35px;
  }
  .banner-header h2 {
    font-size: 30px;
  }
}

/* ======= About style ======= */

/* ======= Services 1 style =======  */

/* ======= Services 2 style ======= */
.services2 {
  position: relative;
  overflow: hidden;
}
.services2 .services2-container {
  width: 140%;
  position: relative;
}
.services2 .item {
  background: var(--white);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin: 30px 0;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  transition: background-color 300ms ease, transform 300ms ease,
    color 300ms ease;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  border-radius: 20px;
  transform: translateZ(100px);
  padding: 60px 30px;
}
.services2 .item.active {
  background: var(--base-color);
}
.services2 .item:hover {
  background: var(--base-color);
  transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.services2 .item h5 {
  font-size: 24px;
  color: var(--dark-brown);
  line-height: 1.2em;
  font-weight: 600;
}
.services2 .item.active h5 {
  color: var(--white);
}
.services2 .item:hover h5 {
  color: var(--white);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.services2 .item p {
  margin-bottom: 0;
}
.services2 .item.active p {
  color: var(--white);
}
.services2 .item:hover p {
  color: var(--white);
}
.services2 .item i {
  font-size: 60px;
  color: var(--default-orange);
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.services2 .item.active i {
  color: var(--white);
}
.services2 .item:hover i {
  color: var(--white);
}
/* for icon */
.services2 .item > span > span {
  top: 0px;
  z-index: 1;
  width: 80px;
  height: 80px;
  bottom: 0px;
  display: block;
  position: absolute;
  right: -10px;
}
.services2 .item > span {
  min-height: 80px;
  position: relative;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.services2 .item > span:before {
  top: 17px;
  z-index: 2;
  right: -2px;
  font-size: 60px;
  position: relative;
}
.services2 .item:hover > span {
  color: var(--white);
}

/* ======= Services 3 style ======= */
.services3 {
  position: relative;
}
.services3 .services3-container {
  width: 140%;
  position: relative;
}
.services3 .item {
  overflow: hidden;
  position: relative;
  padding: 60px 30px;
  text-align: left;
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 30px;
  text-align: center;
}
.services3 .item .cont {
  display: block;
}
.services3 .item .cont img {
  width: 80px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100%;
}
.services3 .item .cont i {
  font-size: 60px;
  color: var(--default-orange);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* icon bg */
.fill-color {
  fill: var(--default-orange);
}
.svg-image {
  fill-rule: evenodd;
  opacity: 0.3;
}
.services3 .item .cont > span > span {
  top: 0px;
  z-index: 1;
  width: 80px;
  height: 80px;
  bottom: 0px;
  display: block;
  position: absolute;
  right: -10px;
}
.services3 .item .cont > span {
  min-height: 80px;
  position: relative;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.services3 .item .cont > span:before {
  top: 30px;
  z-index: 2;
  right: -2px;
  font-size: 60px;
  position: relative;
}
.services3 .item .cont .title h3 {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  color: var(--dark-brown);
  line-height: 1.25em;
}
.services3 .item .cont .desc p {
  font-size: 18px;
  margin-bottom: 0;
}
.services3 .item .service3-btn {
  margin-top: 0;
  font-size: 18px;
  line-height: 3em;
  color: #030531;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services3 .item .service3-btn:before {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--base-color);
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services3 .item .thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  border-radius: 20px;
}
.services3 .item:hover .thumb {
  opacity: 1;
}
.services3 .item .thumb img {
  height: calc(100% + 20px);
  width: 100%;
  object-fit: cover;
  transform: translate(0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.services3 .item:hover .thumb img {
  transform: translateY(-15px);
  min-height: 100%;
}
.services3 .item .thumb:hover .icon {
  opacity: 1;
  transform: translateX(0px);
}
.services3 .item .thumb .icon {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 100%;
  background: var(--base-color);
  color: var(--white);
}
.services3 .item .thumb .icon i {
  font-style: normal;
  font-size: 15px;
  color: var(--white);
}
.services3 .item .thumb .icon:hover {
  background: var(--default-orange);
  color: var(--white);
}
.services3 .item .thumb .icon:hover i {
  color: var(--white);
}
@media (max-width: 991.98px) {
  .services3 .item {
    padding: 40px 30px;
  }
}

/* ======= Services 4 style ======= */
.services4 {
  position: relative;
  overflow: hidden;
}
.services4 .services4-container {
  width: 140%;
  position: relative;
}
.services4 .item {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services4 .item .img {
  position: relative;
}
.services4 .item .img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(transparent)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0,
    transparent 100%
  );
  border-radius: 20px;
}
.services4 .item .img img {
  width: 100%;
  border-radius: 20px;
}
.services4 .item .con {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.services4 .item .con .title {
  font-family: var(--alt-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2em;
}
.services4 .item .con .arrow {
  position: relative;
  display: block;
  top: 0px;
  transform: translateX(-66%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
}
.services4 .item:hover .con .arrow {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}
.services4 .item .con .arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--base-color);
  border-radius: 50%;
  font-size: 15px;
  color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services4 .item .con .arrow a:hover {
  background-color: var(--default-orange);
  color: var(--white);
}
.services4 .item .price {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--white);
  color: var(--dark-brown);
  font-size: 15px;
  font-weight: 400;
  padding: 5px 15px;
  border-radius: 20px;
}

/* ======= Adoption style ======= */

/* ======= Pricing 1 style ======= */

/* ======= Pricing 2 style ======= */
.pricing2 {
  outline: none;
  outline: 0;
  border: none;
  box-shadow: none;
}
.pricing2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
}
.pricing2 .list .item {
  line-height: 35px;
}
.pricing2 .list .flex .title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--dark-brown);
  font-size: 18px;
  font-weight: 400;
}
.pricing2 .list .flex .dots {
  flex-grow: 1;
  position: relative;
  margin: 0 20px;
}
.pricing2 .list .flex .dots:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed rgba(92, 77, 145, 0.3);
}
.pricing2 .list .flex .price {
  margin-left: auto;
  font-size: 18px;
  color: var(--default-orange);
  font-weight: 600;
}
.pricing2 .list .img {
  display: block;
  float: left;
  position: relative;
  top: 0px;
  margin-right: 15px;
  border-radius: 50%;
}
.pricing2 .list .img img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
}

/* ======= Team style ======= */

/* ======= Shop style ======= */

/* ======= Testimonial style ======= */

/* ======= Image Gallery style ======= */
.gallery-filter {
  width: 100%;
  padding-bottom: 30px;
  padding-left: 0px;
  position: relative;
}
.gallery-filter li {
  font-family: var(--primary-font);
  font-size: 21px;
  font-weight: 600;
  margin-right: 15px;
  display: inline-block;
  cursor: pointer;
  color: var(--dark-brown);
}
.gallery-filter li:last-child {
  margin-right: 0;
}
.gallery-filter li.active {
  color: var(--base-color);
  content: "";
  left: 0;
  bottom: -4px;
  border-bottom: 1px solid var(--base-color);
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.gallery-filter li:hover {
  color: var(--base-color);
}
.gallery-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  -moz-transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  transition: all 1.25s cubic-bezier(0.01, 0.71, 0.26, 0.94);
  border-radius: 20px;
}
.gallery-box {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 20px;
  isolation: isolate;
}
.gallery-box .gallery-img {
  position: relative;
  overflow: hidden;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  isolation: isolate;
}
.gallery-box .gallery-img:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-box .gallery-img > img {
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  border-radius: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-box:hover .gallery-img > img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.gallery-box .gallery-detail {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  padding: 20px;
  bottom: 0;
}
.gallery-box .gallery-detail h4 {
  font-size: 21px;
  color: var(--white);
  margin-bottom: 0;
  font-weight: 700;
}
.gallery-box .gallery-detail p {
  color: var(--base-color);
  margin-bottom: 0;
}
.gallery-box:hover .gallery-detail {
  opacity: 1;
  transform: translateX(0px);
}
/* magnific popup custom */
.mfp-counter {
  display: none;
}
.mfp-figure button {
  border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
  border: 0px solid transparent;
  background: transparent;
}
.mfp-bg,
body.mfp-zoom-out-cur {
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
}

/* ======= Video Gallery style ======= */
.vid-icon {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.vid-icon:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.video-gallery-button {
  position: relative;
  margin: auto;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  z-index: 4;
  margin-right: 20px;
  float: left;
}
.video-gallery-polygon {
  z-index: 2;
  padding-right: 5px;
  display: inline-block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--base-color);
  border-radius: 50%;
  color: var(--white);
  padding: 12px 11px 12px 13px;
  line-height: 0;
  box-shadow: 0px 0px 0px 5px rgb(255 255 255 / 10%);
}
.video-gallery-polygon:hover {
  background: var(--white);
  color: var(--base-color);
}
.video-gallery-polygon {
  font-size: 21px;
}
.video-gallery {
  position: relative;
}
.video-gallery .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  isolation: isolate;
}
.video-gallery .item img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.video-gallery .item:hover img {
  transform: scale(1.05);
}
.video-gallery .item .title {
  position: absolute;
  bottom: 0px;
  padding: 30px 15px 30px 80px;
  width: 100%;
  text-align: right;
}
.video-gallery .item .title h4 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 0;
  text-align: left;
}
.video-gallery .item .curv-butn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 0 40px 0 0;
}
.video-gallery .item .curv-butn .vid {
  position: absolute;
  top: 20px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 100%;
  background: transparent;
  color: var(--white);
}
.video-gallery .item .curv-butn .br-left-top {
  position: absolute;
  top: -24px;
  left: -1px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  line-height: 1;
}
.video-gallery .item .curv-butn .br-left-top svg {
  width: 24px;
  height: 24px;
}
.video-gallery .item .curv-butn .br-right-bottom {
  position: absolute;
  bottom: -1px;
  right: -24px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  line-height: 1;
}
.video-gallery .item .curv-butn .br-right-bottom svg {
  width: 24px;
  height: 24px;
}
.video-gallery .item .curv-butn .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: var(--white);
  border: 1px solid var(--default-orange);
  background-color: var(--default-orange);
  border-radius: 100%;
}
.video-gallery .item:hover .curv-butn .icon {
  background-color: var(--base-color);
  border: 1px solid var(--base-color);
  color: var(--white);
  border-radius: 100%;
}

/* ======= Video Popup style ======= */
.play-button {
  position: relative;
  margin: auto;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  z-index: 4;
}
.play-button svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.polygon {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 90px;
  font-size: 30px;
  z-index: 2;
}
.play-button svg.circle-fill {
  z-index: 1;
  stroke-dasharray: 322;
  stroke-dashoffset: 322;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.play-button:hover svg.circle-fill {
  stroke-dashoffset: 38.5;
}
.play-button svg.circle-track {
  z-index: 0;
}
/* video wrapper */

/* ======= Clients style ======= */

/* ======= Blog style ======= */
.blog1 .item {
  position: relative;
  border-radius: 20px;
  transition: all 0.4s ease;
  background: var(--white);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.blog1 .item:hover {
  transform: translateY(-10px);
}
.blog1 .item .img {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.blog1 .item .img .cat {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-left: 5px;
  display: inline-block;
  font-size: 15px;
  background: var(--base-color);
  color: var(--white);
  font-weight: 400;
  opacity: 0;
}
.blog1 .item:hover .img .cat {
  background: var(--default-orange);
  opacity: 1;
}
.blog1 .item .cont {
  padding: 40px 40px 40px 40px;
  position: relative;
  z-index: 2;
  border-radius: 0 0 10px 10px;
}
.blog1 .item .cont h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--dark-brown);
}
.blog1 .item .cont h4 a {
  text-decoration: none;
  color: var(--dark-brown);
}
.blog1 .item .cont p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
}
/* blog box author */
.blog1 .item * {
  transition: all 0.45s ease-out;
}
.blog1 .item .cont .author {
  position: absolute;
  display: contents;
}
.blog1 .item .cont .author > div {
  position: relative;
  height: 25px;
  overflow: hidden;
}
.blog1 .item .cont .author h5 {
  position: absolute;
  left: 0;
  margin: 0;
  bottom: 0;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-brown);
}
.blog1 .item .cont .author h5:nth-of-type(2) {
  opacity: 0;
  transform: translateY(150%);
}
.blog1 .item:hover .cont .author h5:first-of-type,
.blog1 .item:focus .cont .author h5:first-of-type {
  transform: translateY(150%);
  opacity: 0;
}
.blog1 .item:hover .cont .author h5:nth-of-type(2),
.blog1 .item:focus .cont .author h5:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
}
.blog1 .item .cont .author h5 a.text-decoration-line-bottom {
  border-bottom: 1px solid var(--default-orange);
}
.blog1 .item .cont .author h5:hover a.text-decoration-line-bottom {
  border-bottom: 1px solid var(--default-orange);
}
.blog1 .item .cont .author h5:hover a {
  color: var(--default-orange);
}
/* pagination */
.pagination-wrap {
  padding: 0;
  margin: 0;
}
.pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}
.pagination-wrap li a {
  background: var(--white);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--dark-brown);
  font-weight: 400;
  border: 1px solid var(--white);
  border-radius: 100%;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
.pagination-wrap li a i {
  font-size: 18px;
}
.pagination-wrap li a:hover {
  opacity: 1;
  text-decoration: none;
  background: var(--base-color);
  border: 1px solid var(--base-color);
  color: var(--white);
  transform: translate3d(0px, -6px, 0.01px);
}
.pagination-wrap li a.active {
  background-color: var(--base-color);
  border: 1px solid var(--base-color);
  color: var(--white);
}
@media screen and (max-width: 991px) {
  .blog1 .item {
    margin-bottom: 30px;
  }
  .blog1 .item .cont {
    padding: 40px 20px;
  }
  .pagination-wrap {
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

/* ======= Blog Sidebar style ======= */
.blog-sidebar .widget {
  background: var(--white);
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 20px;
  border: none;
}
.blog-sidebar .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.blog-sidebar .widget ul li {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.blog-sidebar .widget ul li a {
  color: var(--medium-brown);
}
.blog-sidebar .widget ul li a.active {
  color: var(--medium-brown);
}
.blog-sidebar .widget ul li a:hover {
  color: var(--default-orange);
}
.blog-sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget ul li i {
  font-size: 13px;
  margin-right: 10px;
  color: var(--default-orange);
}
.blog-sidebar .widget .recent li {
  display: block;
  overflow: hidden;
}
.blog-sidebar .widget .recent .thum {
  width: 100px;
  overflow: hidden;
  float: left;
  border-radius: 5px;
}
.blog-sidebar .widget .recent a {
  display: block;
  margin-left: 115px;
}
.blog-sidebar .widget-title {
  margin-bottom: 15px;
}
.blog-sidebar .widget-title h6 {
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e2f3;
  font-size: 21px;
  margin-bottom: 15px;
  color: var(--dark-brown);
}
.blog-sidebar .search form {
  position: relative;
}
.blog-sidebar .search form input {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  background: var(--very-light-blue);
  margin-bottom: 0;
  border: none;
  color: var(--medium-brown);
}
.blog-sidebar .search form input::placeholder {
  color: var(--medium-brown);
}
.blog-sidebar .search form button {
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: none;
  background: var(--base-color);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  padding: 0px 16px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100%;
  outline: none;
}
.blog-sidebar button[type="submit"] i {
  margin-right: 0px;
  color: var(--white);
}
.blog-sidebar .search:hover form button {
  background-color: var(--default-orange);
  color: var(--white);
  outline: none;
}
.blog-sidebar .tags li {
  margin: 4px !important;
  padding: 7px 21px;
  background-color: transparent;
  color: var(--medium-brown);
  float: left;
  border-radius: 50px;
  border: 1px solid #e4e2f3;
}
.blog-sidebar ul.tags li a {
  font-size: 16px;
  color: var(--medium-brown);
}
.blog-sidebar ul.tags li:hover,
.blog-sidebar ul.tags li:hover a {
  background-color: var(--default-orange);
  color: var(--white);
}

/* ======= Post style ======= */
.post {
  position: relative;
}
.post h3 {
  font-size: 30px;
}
.post .comment-section {
  position: relative;
}
.post .comment-section h4 {
  font-size: 24px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.post .comment-section h4 span {
  font-size: 18px;
  color: var(--medium-brown);
  margin-left: 15px;
}
.post .comment-section .wrap {
  display: flex;
}
.post .comment-section .wrap .img {
  margin-right: 20px;
  flex: 0 0 auto;
}
.post .comment-section .wrap .img img {
  border-radius: 100%;
  width: 100px;
}

/* ======= Contact style ======= */
.contact {
  position: relative;
}
.contact h5 {
  color: var(--dark-brown);
  font-size: 24px;
}
.contact .item {
  display: flex;
  align-items: center;
}
.contact .item .icon {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--very-light-blue);
  text-align: center;
  border-radius: 100%;
}
.contact .item .icon span {
  font-size: 18px;
  color: var(--base-color);
}
.contact .item .icon.color-1 span {
  font-size: 35px;
  color: var(--white);
}
.contact .item .text {
  margin-left: 10px;
}
.contact .item .text p {
  font-size: 18px;
  margin: 0;
}
.contact .item .text a {
  font-size: 18px;
  color: var(--medium-brown);
  font-weight: 400;
}
.contact .item .text a.color-1 {
  color: var(--white);
}

/* ======= 404 style ======= */
.not-found h1 {
  font-size: 180px;
  line-height: 160px;
  color: var(--base-color);
  font-weight: 900;
  text-shadow: 5px 5px var(--very-light-blue);
}
.not-found h3 {
  color: var(--dark-brown);
  font-size: 24px;
  line-height: 1.2em;
}
.not-found p {
  color: var(--medium-brown);
}
.not-found .search-form {
  position: relative;
  max-width: 520px;
  margin: 20px auto 0;
}
.not-found .search-form form {
  position: relative;
}
.not-found .search-form .form-group {
  position: relative;
  margin: 0;
}
.not-found .search-form .form-group input[type="text"],
.not-found .search-form .form-group input[type="search"],
.not-found .search-form .form-group input[type="email"] {
  position: relative;
  width: 100%;
  line-height: 30px;
  padding: 10px 100px 10px 20px;
  height: 60px;
  display: block;
  font-size: 18px;
  background: transparent;
  color: var(--white);
  border-radius: 0px;
  border: 1px solid var(--base-color);
  transition: all 300ms ease;
  border-radius: 30px;
}
.not-found .search-form .form-group input[type="text"]:focus,
.not-found .search-form .form-group input[type="email"]:focus,
.not-found .search-form .form-group input[type="search"]:focus {
  border-color: var(--base-color);
}
.not-found .search-form .form-group input::-webkit-input-placeholder {
  color: var(--medium-brown);
}
.not-found .search-form .form-group input[type="search"]:focus {
  color: var(--medium-brown);
}
.not-found .search-form .form-group .search-button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: none;
  background: var(--base-color);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  padding: 0px 16px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100%;
  outline: none;
}
.not-found .search-form .form-group .search-button span {
  outline: none;
}
.not-found .search-form:hover .form-group .search-button {
  background: var(--default-orange);
  color: var(--white);
  outline: none;
  -webkit-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
}
@media screen and (max-width: 991px) {
  .not-found h1 {
    font-size: 100px;
    line-height: 120px;
  }
}

/* ======= Button style ======= */
/* button 1 */
.button-1 {
  display: inline-block;
  height: auto;
  padding: 12px 36px;
  border-radius: 50px;
  background-color: var(--base-color);
  color: var(--white);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 18px;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
.button-1 i {
  margin-right: 5px;
  transform: rotate(30deg);
  display: inline-block;
  transition: 0.4s;
}
.button-1:hover {
  background-color: var(--default-orange);
  color: var(--white);
  transform: translate3d(0px, -6px, 0.01px);
}
.button-1:hover i {
  transform: rotate(-30deg);
  transition: 0.4s;
}
/* button 2 */
.button-2 {
  display: inline-block;
  height: auto;
  padding: 12px 36px;
  border-radius: 50px;
  background-color: var(--default-orange);
  color: var(--white);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 18px;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
.button-2 i {
  color: var(--white);
}
.button-2:hover {
  background-color: var(--base-color);
  color: var(--white);
  transform: translate3d(0px, -6px, 0.01px);
}
/* button 3 */
.button-3 {
  display: inline-block;
  height: auto;
  padding: 12px 36px;
  border-radius: 50px;
  background-color: var(--default-orange);
  color: var(--white);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 18px;
  transition: border-color 300ms ease, transform 300ms ease,
    background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}
.button-3 i {
  margin-right: 5px;
  transform: rotate(30deg);
  display: inline-block;
  transition: 0.4s;
  color: var(--white);
}
.button-3:hover {
  background-color: var(--white);
  color: var(--dark-brown);
  transform: translate3d(0px, -6px, 0.01px);
}
.button-3:hover i {
  transform: rotate(-30deg);
  transition: 0.4s;
  color: var(--dark-brown);
}

/* ======= Footer style ======= */

/* ======= toTop Button style ======= */

/* ======= Worktime style ======= */
.worktime {
  position: relative;
  background: var(--very-light-blue);
  padding: 60px 50px;
  border-radius: 20px;
}
.worktime ul {
  margin: 0;
  padding: 0;
}
.worktime ul li .tit,
.worktime ul li .dots,
.worktime ul li span {
  display: table-cell;
  white-space: nowrap;
}
.worktime ul li {
  margin-bottom: 10px;
  font-size: 18px;
}
.worktime ul li:last-of-type {
  margin-bottom: 0;
}
.worktime ul li span {
  white-space: nowrap;
  padding-left: 10px;
  color: var(--medium-brown);
}
.worktime ul li .tit {
  padding-right: 10px;
  color: var(--medium-brown);
}
.worktime ul li .dots {
  height: 0px;
  width: 100%;
  border-bottom: 1px dashed var(--medium-brown);
  position: relative;
  top: -7px;
}

/* ======= Table style ======= */
.table {
  margin-bottom: 0;
}
.table-bordered td,
.table-bordered th {
  border-top: 1px solid var(--very-light-blue);
  border-bottom: 1px solid var(--very-light-blue);
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
.table td {
  padding: 7px 0px;
  vertical-align: top;
  border-top: 1px solid var(--very-light-blue);
  color: var(--medium-brown);
}
.table th {
  padding: 5px 0px;
  vertical-align: top;
  color: var(--dark-brown);
  border-top: 1px solid transparent;
  font-weight: 600;
  font-size: 21px;
}
.table td a {
  color: var(--base-color);
}

/* ======= Call Center style ======= */
.call-center {
  position: relative;
  padding: 60px 0;
}
.call-center .item {
  display: flex;
  align-items: center;
}
.call-center .item .block {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}
.call-center .item p {
  font-family: var(--alt-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.call-center .item p b {
  color: var(--base-color);
}
.call-center .item h5 {
  color: var(--medium-brown);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  display: grid;
}
.call-center .item h5 b {
  font-size: 21px;
  color: var(--base-color);
  font-weight: 600;
}
.call-center .item .block .icon,
.call-center .item .block .img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.call-center .item .block .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  color: var(--base-color);
  font-size: 25px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.call-center .img {
  margin-left: 45px;
  z-index: 1;
}
.call-center .item .block .img img {
  border-radius: 50%;
  width: 100%;
  padding: 15px;
  background: var(--base-color);
}

/* ======= Form style ======= */
.form2 {
  box-shadow: 0px 5px 120px 0px rgba(92, 77, 145, 0.15);
  border-radius: 20px;
}
.form2 .head {
  background-color: var(--base-color);
  border-radius: 20px 10px 0 0;
  padding: 35px;
}
.form2 .head h5 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 0;
}
.form2 .head p {
  color: var(--white);
  margin-bottom: 0;
}
.form2 .cont {
  padding: 45px 30px;
  background: var(--white);
  border-radius: 0 0 10px 10px;
}
.col-auto {
  width: auto;
}
.ripple-icon {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.ripple-icon:after,
.ripple-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #eae7f5;
  -webkit-animation: ripple-sm 4s infinite ease-in-out;
  animation: ripple-sm 4s infinite ease-in-out;
  z-index: -1;
  border-radius: 50%;
}
.ripple-icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white);
  color: var(--base-color);
  display: inline-block;
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
}
@-webkit-keyframes ripple-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}
@keyframes ripple-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}
.form2-sidebar {
  position: relative;
  z-index: 9;
}
.z-index9 {
  z-index: 9;
}

/* ======= Overlay Effect Bg Image style ======= */
[data-overlay-dark] {
  position: relative;
}
[data-overlay-dark] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: var(--dark-brown);
  background: #05010c;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: var(--white);
}
[data-overlay-dark] p {
  color: var(--medium-brown);
}
[data-overlay-dark="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before {
  opacity: 1;
}

/* ======= Responsive style ======= */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1220px;
  }
}
@media screen and (max-width: 991px) {
  .bg-fixed {
    background-attachment: scroll !important;
  }
  .about .item .title h4,
  .blog .item .title h4,
  .footer .top .item h3 {
    font-size: 21px;
  }
  .accordion-box .block .content .price {
    display: block;
  }
  .footer .bottom .links ul {
    text-align: left;
  }
  .accordion-box .block .acc-btn {
    padding: 20px 60px 20px 20px;
  }
  .accordion-box .block .acc-btn:before {
    right: 25px;
    top: 18px;
  }
  .accordion-box .block .content {
    padding: 0px 25px 30px 25px;
  }
  .services2 .services2-container,
  .services3 .services3-container {
    width: 100%;
  }

  .about .phone {
    margin-top: 15px;
  }

  .note .txt {
    font-size: 18px;
  }

  .button-1,
  .button-2,
  .button-3 {
    padding: 12px 18px;
  }
}
