@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url("../fonts/fontawesome6/css/fontawesome.css");
@import url("../fonts/fontawesome6/css/brands.css");
@import url("../fonts/fontawesome6/css/solid.css");
@import url("../fonts/icofont/icofont.min.css");

/* =============== css variables =============== */

* {
  --body-font: "Figtree", Helvetica, Arial, sans-serif;
  --body-font-size: 17px;
  --body-font-color: #475467;
  --body-font-color-bg-dark: rgba(255, 255, 255, .6);
  --body-font-weight: 400;
  --heading-font: "Figtree", Helvetica, Arial, sans-serif;
  --heading-font-weight: 600;
  --heading-font-color: #101828;
  --heading-font-color-bg-dark: #ffffff;
  --heading-text-transform: none;
  --h1-font-size: 60px;
  --h1-font-weight: var(--heading-font-weight);
  --h1-letter-spacing: -0.02em;
  --h1-line-height: 1.15em;
  --h1-margin-bottom: 20px;
  --h2-font: var(--heading-font);
  --h2-font-size: 48px;
  --h2-font-weight: var(--heading-font-weight);
  --h2-letter-spacing: -0.015em;
  --h2-line-height: 1.2em;
  --h2-margin-bottom: 25px;
  --h3-font-size: 26px;
  --h3-font-weight: var(--heading-font-weight);
  --h3-letter-spacing: 0;
  --h3-line-height: 1.5em;
  --h3-margin-bottom: 10px;
  --h4-font-size: 20px;
  --h4-font-weight: var(--heading-font-weight);
  --h4-letter-spacing: 0;
  --h4-line-height: 1.6em;
  --h4-margin-bottom: 10px;
  --h5-font-size: 18px;
  --h5-font-weight: var(--heading-font-weight);
  --h5-letter-spacing: 0;
  --h5-line-height: 1.6em;
  --h5-margin-bottom: 10px;
  --h6-font-size: 16px;
  --h6-font-weight: var(--heading-font-weight);
  --h6-letter-spacing: 0;
  --h6-line-height: 1.6em;
  --h6-margin-bottom: 10px;
  --mainmenu-font: var(--body-font);
  --mainmenu-font-size: 17px;
  --mainmenu-font-weight: bold;
  --mainmenu-letter-spacing: 0;
  --mainmenu-text-transform: none;
  --logo-width: 180px;
  --logo-footer-width: 150px;
  --border-default: solid 1px rgba(30, 30, 30, 1);
  --bg-default: #FCFDFD;
  --bg-light: #E1EBE2;
  --bg-dark-1: #092519;
  --bg-dark-1-rgb: 9, 37, 25;
  --bg-color-even: #E8E8E8;
  --bg-color-odd: #F4F4F4;
  --swiper-theme-color: var(--secondary-color);
  --rounded-1: 20px;
  --border-color: #bbbbbb;
  --container-max-width: 1240px;
  --btn-color: #101828;
  --btn-hover-bg: var(--primary-color);
  --btn-font-family: var(--body-font);
  --btn-font-size: 16px;
  --btn-font-weight: bold;
  --btn-letter-spacing: 0;
  --btn-padding: 5px 30px;
  --btn-rounded: 6px;
  --btn-text-decoration: none;
  --btn-text-transform: none;
  --text-circle-width: 350px;
  --text-circle-speed: 10s;
}

/* =============== base =============== */

.bg-dark,
.bg-dark-1 {
  background-color: var(--bg-dark-1);
}

.id-color {
  color: var(--primary-color);
}

.rounded-1 {
  border-radius: var(--rounded-1) !important;
  -moz-border-radius: var(--rounded-1) !important;
  -webkit-border-radius: var(--rounded-1) !important;
}

html {
  background: var(--bg-default);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

body {
  background: var(--bg-default);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  color: var(--body-font-color);
  padding: 0;
  line-height: 1.9em;
  word-spacing: 0px;
}

a,
a:hover {
  color: var(--body-font-color);
  text-decoration: none;
  outline: none;
}

.text-light a,
.text-light a:hover {
  color: var(--body-font-color-bg-dark);
  text-decoration: none;
  outline: none;
}

a,
img {
  outline: 0;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

strong {
  font-weight: bold;
}

.text-light strong {
  color: #fff;
}

/* =============== header =============== */

header {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1001;
  background: var(--bg-dark-1);
  margin: 0;
}

header div#logo {
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header .logo-2 {
  display: none;
}

header .logo-scroll {
  display: none;
}

header.smaller {
  position: fixed;
  top: 0px;
  background: var(--bg-dark-1);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
}

header.header-light.smaller {
  background: rgba(255, 255, 255, 1.0);
}

header.smaller div#logo .logo-2 {
  display: inline-block;
}

.header-light {
  background: #ffffff;
}

header.header-light div#logo .logo {
  display: none;
}

div#logo img {
  max-width: var(--logo-width);
}

footer .logo-footer {
  max-width: var(--logo-footer-width);
}

/* =============== menu btn (mobile) =============== */

#menu-btn {
  line-height: 1.5em;
  display: none;
  float: right;
  width: 32px;
  height: 32px;
  padding: 4px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  margin-top: 0px;
  margin-left: 20px;
}

#menu-btn:before {
  font-family: FontAwesome;
  content: "\f0c9";
  font-size: 20px;
}

#menu-btn.menu-open:before {
  content: "\f068";
}

/* =============== section =============== */

section {
  padding: 100px 0 100px 0;
}

section.no-bg {
  background: none !important;
}

/* =============== footer =============== */

footer {
  color: var(--body-font-color-bg-dark);
  background: var(--bg-dark-1);
  padding: 100px 0 0 0;
}

footer p {
  line-height: 1.8em;
}

footer h5 {
  color: #fff;
  font-size: 18px;
  text-transform: none;
}

footer a {
  color: var(--body-font-color-bg-dark);
  text-decoration: none !important;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}

h2.text-light,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}

.subfooter {
  margin-top: 50px;
  border-top: solid 1px rgba(255, 255, 255, .1);
  padding: 20px 0 20px 0;
}

/* =============== header mobile =============== */

header.header-mobile {
  position: fixed !important;
  background: var(--heading-font-color);
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

header.header-mobile .container {
  max-width: 100% !important;
  padding-left: 20px;
  padding-right: 20px;
}

header.header-mobile nav {
  float: none;
}

header.header-mobile.header-light {
  background: #fff;
}

/* =============== menu side area =============== */

.menu_side_area {
  display: flex;
  align-items: center;
}

.rtl .menu_side_area {
  margin-left: 0;
}

.menu_side_area .btn-line {
  display: inline-block;
}

/* =============== contact form =============== */

.error {
  display: none;
  margin-top: 30px;
  color: #e7505a;
  clear: both;
  padding: 20px;
  background: rgba(231, 80, 90, .1);
  border: solid 1px #e7505a;
}

.success {
  display: none;
  color: #96c346;
  margin-top: 30px;
  clear: both;
  padding: 20px;
  background: rgba(150, 195, 70, .1);
  border: solid 1px #96c346;
}

#success_message {
  display: none;
}

.form-control {
  padding: 10px;
  border: solid 1px rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, .025);
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}

.form-control:focus {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.text-light .form-control {
  color: #ffffff;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, .025);
}

.text-light ::placeholder {
  color: #ffffff;
  opacity: 1;
}

.text-light::-ms-input-placeholder {
  color: #ffffff;
}

.error_input {
  border-bottom: solid 1px #ff0000 !important;
}

/* =============== buttons =============== */

a.btn-main,
a.btn-main:active,
a.btn-main:focus,
a.btn-main:visited,
.btn-main,
input[type=button].btn-main {
  background: var(--primary-color);
  color: var(--btn-color);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  padding: var(--btn-padding);
  text-decoration: var(--btn-text-decoration);
  text-transform: var(--btn-text-transform);
  border-radius: var(--btn-rounded);
  -moz-border-radius: var(--btn-rounded);
  -webkit-border-radius: var(--btn-rounded);
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  outline: 0;
}

a.btn-main.fx-slide {
  overflow: hidden;
}

a.btn-main.fx-slide span {
  display: block;
  position: relative;
  transition: all .3s ease-in-out;
}

a.btn-main.fx-slide:hover span {
  transform: translate(0, 40px);
  opacity: 0;
}

a.btn-main.fx-slide:hover:before {
  opacity: 1;
  transform: translate(0, 0);
}

a.btn-main.fx-slide:before {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translate(0, -100%);
  transition: all 0.3s ease-in-out;
}

a.btn-main:hover,
.btn-main:hover {
  color: #fff;
  background: var(--btn-hover-bg);
}

/* =============== headings =============== */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-font-color);
  text-transform: var(--heading-text-transform);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  margin-bottom: var(--h1-margin-bottom);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  margin-bottom: var(--h2-margin-bottom);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  margin-bottom: var(--h3-margin-bottom);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  letter-spacing: var(--h5-letter-spacing);
  line-height: var(--h5-line-height);
  margin-bottom: var(--h5-margin-bottom);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  letter-spacing: var(--h6-letter-spacing);
  line-height: var(--h6-line-height);
  margin-bottom: var(--h6-margin-bottom);
}

/* =============== text color utilities =============== */

.text-light,
.text-light p {
  color: var(--body-font-color-bg-dark);
}

.text-dark {
  color: var(--heading-font-color) !important;
}

.text-white {
  color: #fff;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
  color: var(--heading-font-color-bg-dark);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: #fff;
}

/* =============== watermark =============== */

.wm {
  text-align: center;
  width: 150%;
  font-size: 400px;
  font-weight: bold;
  position: absolute;
  left: 0;
  z-index: 0;
  font-family: var(--heading-font);
  line-height: 1.5em;
  margin-left: 0;
  letter-spacing: -.08em;
  top: 50%;
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, .5) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, .5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translate(-50%, -50%);
  -webkit-user-select: none;
  user-select: none;
}

/* =============== social icons =============== */

.social-icons {
  display: inline-block;
}

.social-icons i {
  text-shadow: none;
  padding: 10px 5px;
  width: 36px;
  height: 36px;
  text-align: center;
  font-size: 16px;
  margin: 0 3px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}

.social-icons i:hover {
  background: #fff;
  border-color: #eceff3;
  color: #333;
}

/* =============== preloader =============== */

#de-loader {
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: -2px 0 0 -2px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =============== overflow =============== */

.overflow-hidden {
  overflow: hidden;
}

/* =============== transitions =============== */

header,
header *,
.hover,
.hover *,
.social-icons a i,
.btn-main,
.error_input,
.d-prev:before,
.d-next:before {
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  outline: none;
}

.owl-prev,
.owl-next {
  -o-transition: .2s ease;
  -ms-transition: .2s ease;
  -moz-transition: .2s ease;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  outline: none;
}

/* =============== animations =============== */

@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

/* =============== bootstrap overrides =============== */

.container-fluid {
  padding: 0px;
  margin: 0px;
}

/* =============== bg-blur =============== */

.bg-blur {
  background: rgba(0, 0, 0, .15);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* =============== nav-pills =============== */

.nav-pills .nav-link {
  font-weight: 500;
}

/* =============== subtitle / uptitle =============== */

.subtitle {
  position: relative;
  font-weight: 600;
  display: inline-block;
  font-size: 17px;
  font-family: var(--body-font);
  color: var(--primary-color);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.text-light .subtitle {
  border-color: rgba(255, 255, 255, .5);
}

/* =============== de-flex =============== */

.de-flex {
  display: flex;
  justify-content: space-between;
}

.de-flex>.de-flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =============== borders =============== */

.border-bottom-white-trans-1 {
  border-bottom: solid 1px rgba(255, 255, 255, .1);
}

.border-bottom-white-trans-2 {
  border-bottom: solid 1px rgba(255, 255, 255, .2);
}

.border-bottom-white-trans-3 {
  border-bottom: solid 1px rgba(255, 255, 255, .3);
}

.border-bottom-white-trans-4 {
  border-bottom: solid 1px rgba(255, 255, 255, .4);
}

.border-bottom-white-trans-5 {
  border-bottom: solid 1px rgba(255, 255, 255, .5);
}

.border-bottom-white-trans-6 {
  border-bottom: solid 1px rgba(255, 255, 255, .6);
}

.border-bottom-white-trans-7 {
  border-bottom: solid 1px rgba(255, 255, 255, .7);
}

.border-bottom-white-trans-8 {
  border-bottom: solid 1px rgba(255, 255, 255, .8);
}

.border-bottom-white-trans-9 {
  border-bottom: solid 1px rgba(255, 255, 255, .9);
}

/* =============== custom tabs =============== */

.de-tab .d-tab-nav {
  padding: 0;
  list-style: none;
  position: relative;
}

.de-tab .d-tab-nav .active-tab {
  border-bottom: none;
  font-weight: 500;
  position: relative;
  color: var(--btn-color);
  background: var(--primary-color);
}

.de-tab .d-tab-nav li {
  display: inline-block;
  cursor: pointer;
  padding: 8px 20px;
}

.de-tab .d-tab-content {
  padding: 0;
  margin: 0;
  list-style: none;
}

.de-tab .d-tab-content>li {
  display: none;
}

.de-tab.pill .d-tab-nav {
  background: rgba(var(--primary-color-rgb), .2);
  display: flex;
  justify-content: space-around;
  border: none;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  overflow: hidden;
}

.de-tab.pill .d-tab-nav li {
  font-weight: 500;
  color: #000000;
  text-align: center;
  flex-grow: 1;
}

.de-tab.pill .d-tab-nav .active-tab {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
}

.de-tab.plain .d-tab-nav li {
  font-weight: 500;
  color: #000000;
  text-align: center;
  padding: 0;
  margin: 0;
  opacity: .4;
}

.de-tab.plain .d-tab-nav .active-tab {
  background: none;
  font-weight: bold;
  opacity: 1;
}

@media only screen and (max-width: 767px) {

  .d-tab-nav,
  .d-tab-nav li {
    display: block !important;
  }
}

/* =============== swiper =============== */

.swiper {
  background: var(--bg-dark-1);
}

.swiper,
.sw-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-slide {
  position: relative;
  background: var(--bg-dark-1);
}

.sw-overlay {
  background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 50%);
}

.swiper-inner {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  width: 100px;
  font-size: 20px;
  text-align: right;
  position: absolute;
  left: auto;
  right: 40px;
  bottom: 40px;
  font-weight: 400;
}

.swiper-pagination-total {
  font-size: 20px;
  opacity: .5;
}

.swiper-pagination-current {
  color: #ffffff;
  font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

/* =============== player =============== */

.player {
  margin: 0 auto;
  background: none;
  width: 120px;
  height: 120px;
  border: solid 2px #fff;
  position: relative;
  text-indent: -9999px;
}

.player span {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 20px solid #ffffff;
  border-bottom: 15px solid transparent;
  position: absolute;
  top: 37.5%;
  left: 45%;
}

.player:hover {
  background: var(--primary-color);
  cursor: pointer;
  border: none;
  box-shadow: none;
}

/* =============== owl carousel =============== */

.d-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.d-custom-nav {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100px;
  z-index: 100;
}

.owl-nav {
  display: flex;
}

.owl-prev,
.owl-next,
.d-nav-left,
.d-nav-right {
  cursor: pointer;
  position: absolute;
  top: 27.5%;
  z-index: 100;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 1.0);
  border: solid 1px #ccc;
}

.owl-prev:hover,
.owl-next:hover {
  transform: scale(1.1);
  -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
}

.owl-prev,
.d-nav-left {
  left: -12px;
  border-radius: 60px;
  padding-left: 4px;
}

.owl-next,
.d-nav-right {
  right: -12px;
  border-radius: 60px;
  padding-right: 4px;
}

.d-nav-left i,
.d-nav-right i {
  position: absolute;
  top: 20px;
  color: #111111;
  font-size: 20px;
  font-weight: bold;
}

.owl-next i,
.d-nav-left i {
  top: 12px;
  left: 16px;
}

.owl-prev,
.owl-next {
  display: none;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 20px;
}

.owl-dots {
  text-align: center;
}

.owl-dots button {
  border: none;
  outline: none;
  padding: 0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .15);
}

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

.owl-dot {
  background: #ccc;
  border: none;
  margin: 5px;
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 60px;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
}

.text-light .owl-dot {
  background: rgba(255, 255, 255, .2);
}

.owl-stage {
  overflow: none;
}

.owl-item.active div blockquote {
  position: relative;
  overflow: hidden;
}

.owl-item.active div blockquote,
.owl-item.active div blockquote .de_testi_by {
  opacity: 1;
}

/* =============== declass utilities =============== */

/* width percent */
.w-10 {
  width: 10%
}

.w-20 {
  width: 20%
}

.w-30 {
  width: 30%
}

.w-40 {
  width: 40%
}

.w-50 {
  width: 50%
}

.w-60 {
  width: 60%
}

.w-70 {
  width: 70%
}

.w-80 {
  width: 80%
}

.w-90 {
  width: 90%
}

.w-100 {
  width: 100%
}

/* width px */
.w-10px {
  width: 10px
}

.w-15px {
  width: 18px
}

.w-20px {
  width: 20px
}

.w-24px {
  width: 24px
}

.w-30px {
  width: 30px
}

.w-40px {
  width: 40px
}

.w-50px {
  width: 50px
}

.w-60px {
  width: 60px
}

.w-70px {
  width: 70px
}

.w-80px {
  width: 80px
}

.w-90px {
  width: 90px
}

.w-100px {
  width: 100px
}

.w-110px {
  width: 110px
}

.w-120px {
  width: 120px
}

.w-130px {
  width: 130px
}

.w-140px {
  width: 140px
}

.w-150px {
  width: 150px
}

.w-160px {
  width: 160px
}

.w-170px {
  width: 170px
}

.w-200px {
  width: 200px
}

.w-250px {
  width: 250px
}

.w-300px {
  width: 300px
}

.w-400px {
  width: 400px
}

.w-500px {
  width: 500px
}

.h-auto {
  height: auto;
}

/* height percent */
.h-10 {
  height: 10%
}

.h-20 {
  height: 20%
}

.h-30 {
  height: 30%
}

.h-40 {
  height: 40%
}

.h-50 {
  height: 50%
}

.h-60 {
  height: 60%
}

.h-70 {
  height: 70%
}

.h-80 {
  height: 80%
}

.h-90 {
  height: 90%
}

.h-100 {
  height: 100%
}

/* height px */
.h-10px {
  height: 10px
}

.h-20px {
  height: 20px
}

.h-24px {
  height: 24px
}

.h-40px {
  height: 40px
}

.h-50px {
  height: 50px
}

.h-60px {
  height: 60px
}

.h-70px {
  height: 70px
}

.h-80px {
  height: 80px
}

.h-90px {
  height: 90px
}

.h-100px {
  height: 100px
}

.h-110px {
  height: 110px
}

.h-120px {
  height: 120px
}

.h-130px {
  height: 130px
}

.h-140px {
  height: 140px
}

.h-150px {
  height: 150px
}

.h-200px {
  height: 200px
}

.h-250px {
  height: 250px
}

.h-300px {
  height: 300px
}

/* top percent */
.top-10 {
  top: 10%
}

.top-20 {
  top: 20%
}

.top-30 {
  top: 30%
}

.top-40 {
  top: 40%
}

.top-50 {
  top: 50%
}

.top-60 {
  top: 60%
}

.top-70 {
  top: 70%
}

.top-80 {
  top: 80%
}

.top-90 {
  top: 90%
}

.top-100 {
  top: 100%
}

/* top px */
.top-10px {
  top: 10px
}

.top-20px {
  top: 20px
}

.top-30px {
  top: 30px
}

.top-40px {
  top: 40px
}

.top-50px {
  top: 50px
}

.top-60px {
  top: 60px
}

.top-70px {
  top: 70px
}

.top-80px {
  top: 80px
}

.top-90px {
  top: 90px
}

.top-100px {
  top: 100px
}

/* bottom percent */
.bottom-10 {
  bottom: 10%
}

.bottom-20 {
  bottom: 20%
}

.bottom-30 {
  bottom: 30%
}

.bottom-40 {
  bottom: 40%
}

.bottom-50 {
  bottom: 50%
}

.bottom-60 {
  bottom: 60%
}

.bottom-70 {
  bottom: 70%
}

.bottom-80 {
  bottom: 80%
}

.bottom-90 {
  bottom: 90%
}

.bottom-100 {
  bottom: 100%
}

/* bottom px */
.bottom-10px {
  bottom: 10px
}

.bottom-20px {
  bottom: 20px
}

.bottom-30px {
  bottom: 30px
}

.bottom-40px {
  bottom: 40px
}

.bottom-50px {
  bottom: 50px
}

.bottom-60px {
  bottom: 60px
}

.bottom-70px {
  bottom: 70px
}

.bottom-80px {
  bottom: 80px
}

.bottom-90px {
  bottom: 90px
}

.bottom-100px {
  bottom: 100px
}

/* left pos percent */
.start-10 {
  left: 10%
}

.start-20 {
  left: 20%
}

.start-30 {
  left: 30%
}

.start-40 {
  left: 40%
}

.start-50 {
  left: 50%
}

.start-60 {
  left: 60%
}

.start-70 {
  left: 70%
}

.start-80 {
  left: 80%
}

.start-90 {
  left: 90%
}

.start-100 {
  left: 100%
}

/* left pos px */
.start-10px {
  left: 10px
}

.start-20px {
  left: 20px
}

.start-30px {
  left: 30px
}

.start-40px {
  left: 40px
}

.start-50px {
  left: 50px
}

.start-60px {
  left: 60px
}

.start-70px {
  left: 70px
}

.start-80px {
  left: 80px
}

.start-90px {
  left: 90px
}

.start-100px {
  left: 100px
}

/* right pos percent */
.end-10 {
  right: 10%
}

.end-20 {
  right: 20%
}

.end-30 {
  right: 30%
}

.end-40 {
  right: 40%
}

.end-50 {
  right: 50%
}

.end-60 {
  right: 60%
}

.end-70 {
  right: 70%
}

.end-80 {
  right: 80%
}

.end-90 {
  right: 90%
}

.end-100 {
  right: 100%
}

/* right pos px */
.end-10px {
  right: 10px
}

.end-20px {
  right: 20px
}

.end-30px {
  right: 30px
}

.end-40px {
  right: 40px
}

.end-50px {
  right: 50px
}

.end-60px {
  right: 60px
}

.end-70px {
  right: 70px
}

.end-80px {
  right: 80px
}

.end-90px {
  right: 90px
}

.end-100px {
  right: 100px
}

/* margin left percent */
.ms-10 {
  margin-left: 10%
}

.ms-20 {
  margin-left: 20%
}

.ms-30 {
  margin-left: 30%
}

.ms-40 {
  margin-left: 40%
}

.ms-50 {
  margin-left: 50%
}

.ms-60 {
  margin-left: 60%
}

.ms-70 {
  margin-left: 70%
}

.ms-80 {
  margin-left: 80%
}

.ms-90 {
  margin-left: 90%
}

.ms-100 {
  margin-left: 100%
}

/* margin left px */
.ms-10px {
  margin-left: 10px
}

.ms-20px {
  margin-left: 20px
}

.ms-30px {
  margin-left: 30px
}

.ms-40px {
  margin-left: 40px
}

.ms-50px {
  margin-left: 50px
}

.ms-60px {
  margin-left: 60px
}

.ms-70px {
  margin-left: 70px
}

.ms-80px {
  margin-left: 80px
}

.ms-90px {
  margin-left: 90px
}

.ms-100px {
  margin-left: 100px
}

/* margin top px */
.mt-10 {
  margin-top: 10px
}

.mt-20 {
  margin-top: 20px
}

.mt-30 {
  margin-top: 30px
}

.mt-40 {
  margin-top: 40px
}

.mt-50 {
  margin-top: 50px
}

.mt-60 {
  margin-top: 60px
}

.mt-70 {
  margin-top: 70px
}

.mt-80 {
  margin-top: 80px
}

.mt-90 {
  margin-top: 90px
}

.mt-100 {
  margin-top: 100px
}

/* margin top negative px */
.mt-min-10 {
  margin-top: -10px
}

.mt-min-20 {
  margin-top: -20px
}

.mt-min-30 {
  margin-top: -30px
}

.mt-min-40 {
  margin-top: -40px
}

.mt-min-50 {
  margin-top: -50px
}

.mt-min-60 {
  margin-top: -60px
}

.mt-min-70 {
  margin-top: -70px
}

.mt-min-80 {
  margin-top: -80px
}

.mt-min-90 {
  margin-top: -90px
}

.mt-min-100 {
  margin-top: -100px
}

/* margin bottom px */
.mb-10 {
  margin-bottom: 10px
}

.mb-20 {
  margin-bottom: 20px
}

.mb-25 {
  margin-bottom: 25px
}

.mb-30 {
  margin-bottom: 30px
}

.mb-40 {
  margin-bottom: 40px
}

.mb-50 {
  margin-bottom: 50px
}

.mb-60 {
  margin-bottom: 60px
}

.mb-70 {
  margin-bottom: 70px
}

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

.mb-90 {
  margin-bottom: 90px
}

.mb-100 {
  margin-bottom: 100px
}

/* margin right negative px */
.me-min-10 {
  margin-right: -10px
}

.me-min-20 {
  margin-right: -20px
}

.me-min-30 {
  margin-right: -30px
}

.me-min-40 {
  margin-right: -40px
}

.me-min-50 {
  margin-right: -50px
}

.me-min-60 {
  margin-right: -60px
}

.me-min-70 {
  margin-right: -70px
}

.me-min-80 {
  margin-right: -80px
}

.me-min-90 {
  margin-right: -90px
}

.me-min-100 {
  margin-right: -100px
}

/* font-size px */
.fs-12 {
  font-size: 12px
}

.fs-14 {
  font-size: 14px
}

.fs-15 {
  font-size: 15px
}

.fs-16 {
  font-size: 16px
}

.fs-18 {
  font-size: 18px
}

.fs-20 {
  font-size: 20px
}

.fs-24 {
  font-size: 24px
}

.fs-28 {
  font-size: 28px
}

.fs-30 {
  font-size: 30px
}

.fs-32 {
  font-size: 32px
}

.fs-36 {
  font-size: 36px
}

.fs-40 {
  font-size: 40px
}

.fs-48 {
  font-size: 48px
}

.fs-56 {
  font-size: 56px
}

.fs-60 {
  font-size: 60px
}

.fs-64 {
  font-size: 64px
}

.fs-72 {
  font-size: 72px
}

.fs-84 {
  font-size: 84px
}

.fs-96 {
  font-size: 96px
}

.fs-120 {
  font-size: 120px
}

.fs-150 {
  font-size: 150px
}

.fs-200 {
  font-size: 200px
}

/* font-weight */
.fw-100 {
  font-weight: 100 !important
}

.fw-200 {
  font-weight: 200 !important
}

.fw-300 {
  font-weight: 300 !important
}

.fw-400 {
  font-weight: 400 !important
}

.fw-500 {
  font-weight: 500 !important
}

.fw-600 {
  font-weight: 600 !important
}

.fw-bold {
  font-weight: bold !important
}

/* padding */
.p-10 {
  padding: 10px
}

.p-15 {
  padding: 15px
}

.p-20 {
  padding: 20px
}

.p-30 {
  padding: 30px
}

.p-40 {
  padding: 40px
}

.p-50 {
  padding: 50px
}

.p-60 {
  padding: 60px
}

.p-70 {
  padding: 70px
}

.p-80 {
  padding: 80px
}

.p-90 {
  padding: 90px
}

.p-100 {
  padding: 100px
}

/* padding bottom */
.pb-10 {
  padding-bottom: 10px
}

.pb-20 {
  padding-bottom: 20px
}

.pb-30 {
  padding-bottom: 30px
}

.pb-40 {
  padding-bottom: 40px
}

.pb-50 {
  padding-bottom: 50px
}

.pb-60 {
  padding-bottom: 60px
}

.pb-70 {
  padding-bottom: 70px
}

.pb-80 {
  padding-bottom: 80px
}

.pb-90 {
  padding-bottom: 90px
}

.pb-100 {
  padding-bottom: 100px
}

/* padding top */
.pt-10 {
  padding-top: 10px
}

.pt-20 {
  padding-top: 20px
}

.pt-30 {
  padding-top: 30px
}

.pt-40 {
  padding-top: 40px
}

.pt-50 {
  padding-top: 50px
}

.pt-60 {
  padding-top: 60px
}

.pt-70 {
  padding-top: 70px
}

.pt-80 {
  padding-top: 80px
}

.pt-90 {
  padding-top: 90px
}

.pt-100 {
  padding-top: 100px
}

/* padding left */
.ps-10 {
  padding-left: 10px
}

.ps-20 {
  padding-left: 20px
}

.ps-30 {
  padding-left: 30px
}

.ps-40 {
  padding-left: 40px
}

.ps-50 {
  padding-left: 50px
}

.ps-60 {
  padding-left: 60px
}

.ps-70 {
  padding-left: 70px
}

.ps-80 {
  padding-left: 80px
}

.ps-90 {
  padding-left: 90px
}

.ps-100 {
  padding-left: 100px
}

/* hover effects */
.hover:hover .hover-scale-1-1 {
  transform: scale(1.1);
}

.hover:hover .hover-scale-1-2 {
  transform: scale(1.2);
}

.hover-scale-in-1 {
  transform: scale(1.1);
}

.hover:hover .hover-scale-in-1 {
  transform: scale(1);
}

.hover-op-0 {
  opacity: 1;
}

.hover:hover .hover-op-0 {
  opacity: 0;
}

.hover-op-1,
.hover-op-05 {
  opacity: 0;
}

.hover:hover .hover-op-1 {
  opacity: 1;
}

.hover:hover .hover-op-05 {
  opacity: .5;
}

.hover:hover .hover-bg-color {
  background: var(--primary-color) !important;
}

.hover:hover .hover-bg-dark {
  background: var(--heading-font-color);
}

/* opacity */
.op-05 {
  opacity: .05
}

.op-1 {
  opacity: .1
}

.op-2 {
  opacity: .2
}

.op-3 {
  opacity: .3
}

.op-4 {
  opacity: .4
}

.op-5 {
  opacity: .5
}

.op-6 {
  opacity: .6
}

.op-7 {
  opacity: .7
}

.op-8 {
  opacity: .8
}

.op-9 {
  opacity: .9
}

/* line height */
.lh-1 {
  line-height: 1em
}

.lh-1-1 {
  line-height: 1.1em
}

.lh-1-2 {
  line-height: 1.2em
}

.lh-1-3 {
  line-height: 1.3em
}

.lh-1-4 {
  line-height: 1.4em
}

.lh-1-5 {
  line-height: 1.5em
}

.lh-1-6 {
  line-height: 1.6em
}

.lh-1-7 {
  line-height: 1.7em
}

.lh-1-8 {
  line-height: 1.8em
}

/* min height */
.mh-80 {
  min-height: 80px
}

.mh-100 {
  min-height: 100px
}

.mh-200 {
  min-height: 200px
}

.mh-300 {
  min-height: 300px
}

.mh-400 {
  min-height: 400px
}

.mh-500 {
  min-height: 500px
}

.mh-600 {
  min-height: 600px
}

.mh-700 {
  min-height: 700px
}

.mh-800 {
  min-height: 800px
}

.mh-900 {
  min-height: 900px
}

.mh-1000 {
  min-height: 1000px
}

/* max height */
.max-h-80 {
  max-height: 80px
}

.max-h-100 {
  max-height: 100px
}

.max-h-200 {
  max-height: 200px
}

.max-h-300 {
  max-height: 300px
}

.max-h-400 {
  max-height: 400px
}

.max-h-500 {
  max-height: 500px
}

.max-h-600 {
  max-height: 600px
}

.max-h-700 {
  max-height: 700px
}

.max-h-800 {
  max-height: 800px
}

.max-h-900 {
  max-height: 900px
}

.max-h-1000 {
  max-height: 1000px
}

/* background dark opacity */
.bg-dark-10 {
  background: rgba(var(--bg-dark-1-rgb), .1)
}

.bg-dark-20 {
  background: rgba(var(--bg-dark-1-rgb), .2)
}

.bg-dark-30 {
  background: rgba(var(--bg-dark-1-rgb), .3)
}

.bg-dark-40 {
  background: rgba(var(--bg-dark-1-rgb), .4)
}

.bg-dark-50 {
  background: rgba(var(--bg-dark-1-rgb), .5)
}

.infinite {
  animation-iteration-count: infinite;
}

/* overlay-black */
.overlay-black-1 {
  background: rgba(0, 0, 0, .1)
}

.overlay-black-2 {
  background: rgba(0, 0, 0, .2)
}

.overlay-black-3 {
  background: rgba(0, 0, 0, .3)
}

.overlay-black-4 {
  background: rgba(0, 0, 0, .4)
}

.overlay-black-5 {
  background: rgba(0, 0, 0, .5)
}

.overlay-black-6 {
  background: rgba(0, 0, 0, .6)
}

.overlay-black-7 {
  background: rgba(0, 0, 0, .7)
}

.overlay-black-8 {
  background: rgba(0, 0, 0, .8)
}

.overlay-black-9 {
  background: rgba(0, 0, 0, .9)
}

/* overlay-dark */
.overlay-dark-1 {
  background: rgba(var(--bg-dark-1-rgb), .1)
}

.overlay-dark-2 {
  background: rgba(var(--bg-dark-1-rgb), .2)
}

.overlay-dark-3 {
  background: rgba(var(--bg-dark-1-rgb), .3)
}

.overlay-dark-4 {
  background: rgba(var(--bg-dark-1-rgb), .4)
}

.overlay-dark-5 {
  background: rgba(var(--bg-dark-1-rgb), .5)
}

.overlay-dark-6 {
  background: rgba(var(--bg-dark-1-rgb), .6)
}

.overlay-dark-7 {
  background: rgba(var(--bg-dark-1-rgb), .7)
}

.overlay-dark-8 {
  background: rgba(var(--bg-dark-1-rgb), .8)
}

.overlay-dark-9 {
  background: rgba(var(--bg-dark-1-rgb), .9)
}

/* overlay-white */
.overlay-white-1 {
  background: rgba(255, 255, 255, .1)
}

.overlay-white-2 {
  background: rgba(255, 255, 255, .2)
}

.overlay-white-3 {
  background: rgba(255, 255, 255, .3)
}

.overlay-white-4 {
  background: rgba(255, 255, 255, .4)
}

.overlay-white-5 {
  background: rgba(255, 255, 255, .5)
}

.overlay-white-6 {
  background: rgba(255, 255, 255, .6)
}

.overlay-white-7 {
  background: rgba(255, 255, 255, .7)
}

.overlay-white-8 {
  background: rgba(255, 255, 255, .8)
}

.overlay-white-9 {
  background: rgba(255, 255, 255, .9)
}

/* positions */
.absolute,
.abs {
  position: absolute;
}

.abs-center {
  left: 50%;
  transform: translateX(-50%);
}

.abs-middle {
  top: 50%;
  transform: translateY(-50%);
}

.abs-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.relative,
.position-relative {
  position: relative;
}

/* z-index */
.z-1 {
  z-index: 1
}

.z-2 {
  z-index: 2
}

.z-3 {
  z-index: 3
}

.z-4 {
  z-index: 4
}

.z-1000 {
  z-index: 1000
}

/* bg-color opacity */
.bg-color-op-1 {
  background: rgba(var(--primary-color-rgb), .1)
}

.bg-color-op-2 {
  background: rgba(var(--primary-color-rgb), .2)
}

.bg-color-op-3 {
  background: rgba(var(--primary-color-rgb), .3)
}

.bg-color-op-4 {
  background: rgba(var(--primary-color-rgb), .4)
}

.bg-color-op-5 {
  background: rgba(var(--primary-color-rgb), .5)
}

.bg-color-op-6 {
  background: rgba(var(--primary-color-rgb), .6)
}

.bg-color-op-7 {
  background: rgba(var(--primary-color-rgb), .7)
}

.bg-color-op-8 {
  background: rgba(var(--primary-color-rgb), .8)
}

.flex-end {
  justify-content: flex-end;
}

/* spacing helpers */
.no-bottom {
  margin-bottom: 0;
  padding-bottom: 0 !important;
}

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

.no-margin {
  margin: 0 !important;
}

.no-padding,
section.no-padding {
  padding: 0;
}

/* =============== media queries =============== */

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1304px;
  }
}

@media only screen and (max-width: 992px) {

  .container {
    max-width: 100%;
  }

  .mb-sm-20 {
    margin-bottom: 20px;
  }

  .mb-sm-30 {
    margin-bottom: 30px;
  }

  .mt-sm-0 {
    margin-top: 0;
  }

  .sm-mt-0 {
    margin-top: 0;
  }

  .p-sm-30 {
    padding: 40px;
  }

  .pb-sm-0 {
    padding-bottom: 0;
  }

  .mb-sm-0 {
    margin-bottom: 0;
  }

  .sm-p-40 {
    padding: 40px;
  }

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

  .sm-pt10 {
    padding-top: 10px;
  }

  #menu-btn {
    display: block;
    float: right;
    z-index: 1000;
    top: 0;
    right: 0;
  }

  #logo,
  #logo .inner {
    vertical-align: middle;
    height: auto;
  }

  header {
    display: none;
  }

  header.header-bg {
    background: rgba(0, 0, 0, 1);
  }

  header,
  header.fixed {
    display: block;
    position: inherit;
    margin: 0;
    padding: 0;
    margin-top: 0;
    height: auto;
    background: var(--bg-dark-1);
  }

  header.autoshow {
    height: auto;
    top: 0;
  }

  header.header-mobile-sticky {
    position: fixed;
  }

  .subfooter .de-flex,
  .subfooter .de-flex-col {
    display: block;
  }

  .subfooter .social-icons {
    margin-top: 20px;
  }

  .subfooter span.copy {
    margin-top: 20px;
    display: block;
  }

  .sm-img-fluid {
    width: 100%;
  }

  section {
    padding: 60px 0;
  }

  section.bottom-rounded {
    overflow: hidden;
    border-radius: 0 0 0% 0%;
    -moz-border-radius: 0 0 0% 0%;
    -webkit-border-radius: 0 0 0% 0%;
    padding-bottom: 60px;
  }

  h1,
  h1.ultra-big,
  h1.ultra-big .text-line,
  h1.ultra-big-2,
  .title-text,
  h1.slider-title {
    font-size: 60px;
  }

  h1.slider-title,
  h2.slider-title {
    margin-bottom: 0;
  }

  h2 {
    font-size: 40px;
  }

  .pos-sm-relative {
    position: relative !important;
  }

  /* padding top */
  .pt-sm-10 {
    padding-top: 10px
  }

  .pt-sm-20 {
    padding-top: 20px
  }

  .pt-sm-30 {
    padding-top: 30px
  }

  .pt-sm-40 {
    padding-top: 40px
  }

  .pt-sm-50 {
    padding-top: 50px
  }

  .pt-sm-60 {
    padding-top: 60px
  }

  .pt-sm-70 {
    padding-top: 70px
  }

  .pt-sm-80 {
    padding-top: 80px
  }

  .pt-sm-90 {
    padding-top: 90px
  }

  .pt-sm-100 {
    padding-top: 10px
  }

  /* padding bottom */
  .pb-sm-10 {
    padding-bottom: 10px
  }

  .pb-sm-20 {
    padding-bottom: 20px
  }

  .pb-sm-30 {
    padding-bottom: 30px
  }

  .pb-sm-40 {
    padding-bottom: 40px
  }

  .pb-sm-50 {
    padding-bottom: 50px
  }

  .pb-sm-60 {
    padding-bottom: 60px
  }

  .pb-sm-70 {
    padding-bottom: 70px
  }

  .pb-sm-80 {
    padding-bottom: 80px
  }

  .pb-sm-90 {
    padding-bottom: 90px
  }

  .pb-sm-100 {
    padding-bottom: 10px
  }

  /* margin top */
  .mt-sm-10 {
    margin-top: 10px
  }

  .mt-sm-20 {
    margin-top: 20px
  }

  .mt-sm-30 {
    margin-top: 30px
  }

  .mt-sm-40 {
    margin-top: 40px
  }

  .mt-sm-50 {
    margin-top: 50px
  }

  .mt-sm-60 {
    margin-top: 60px
  }

  .mt-sm-70 {
    margin-top: 70px
  }

  .mt-sm-80 {
    margin-top: 80px
  }

  .mt-sm-90 {
    margin-top: 90px
  }

  .mt-sm-100 {
    margin-top: 10px
  }

  /* margin bottom */
  .mb-sm-10 {
    margin-bottom: 10px
  }

  .mb-sm-20 {
    margin-bottom: 20px
  }

  .mb-sm-30 {
    margin-bottom: 30px
  }

  .mb-sm-40 {
    margin-bottom: 40px
  }

  .mb-sm-50 {
    margin-bottom: 50px
  }

  .mb-sm-60 {
    margin-bottom: 60px
  }

  .mb-sm-70 {
    margin-bottom: 70px
  }

  .mb-sm-80 {
    margin-bottom: 80px
  }

  .mb-sm-90 {
    margin-bottom: 90px
  }

  .mb-sm-100 {
    margin-bottom: 10px
  }

  /* font size vw */
  .fs-sm-1vw {
    font-size: 1vw
  }

  .fs-sm-2vw {
    font-size: 2vw
  }

  .fs-sm-3vw {
    font-size: 3vw
  }

  .fs-sm-4vw {
    font-size: 4vw
  }

  .fs-sm-5vw {
    font-size: 5vw
  }

  .fs-sm-6vw {
    font-size: 6vw
  }

  .fs-sm-7vw {
    font-size: 7vw
  }

  .fs-sm-8vw {
    font-size: 8vw
  }

  .fs-sm-9vw {
    font-size: 9vw
  }

  .fs-sm-10vw {
    font-size: 10vw
  }

  .fs-sm-11vw {
    font-size: 11vw
  }

  .fs-sm-12vw {
    font-size: 12vw
  }

  .fs-sm-13vw {
    font-size: 13vw
  }

  .fs-sm-14vw {
    font-size: 14vw
  }

  .fs-sm-15vw {
    font-size: 15vw
  }

  header.logo-center {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {

  header .btn-main {
    display: none;
  }

  .menu_side_area {
    margin-left: 20px;
    width: 100%;
    position: relative;
    right: 0;
    text-align: right;
    z-index: 0;
    display: block;
  }

  header .container {
    min-width: 100%;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  header a.btn-main {
    display: none !important;
  }

  section {
    padding: 40px 0;
  }

  h1,
  h1.ultra-big,
  h1.ultra-big .text-line,
  h1.ultra-big-2,
  .title-text,
  h1.slider-title,
  h2.slider-title {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .mt-xs-0 {
    margin-top: 0;
  }

  /* padding top */
  .pt-xs-10 {
    padding-top: 10px
  }

  .pt-xs-20 {
    padding-top: 20px
  }

  .pt-xs-30 {
    padding-top: 30px
  }

  .pt-xs-40 {
    padding-top: 40px
  }

  .pt-xs-50 {
    padding-top: 50px
  }

  .pt-xs-60 {
    padding-top: 60px
  }

  .pt-xs-70 {
    padding-top: 70px
  }

  .pt-xs-80 {
    padding-top: 80px
  }

  .pt-xs-90 {
    padding-top: 90px
  }

  .pt-xs-100 {
    padding-top: 10px
  }

  /* padding bottom */
  .pb-xs-10 {
    padding-bottom: 10px
  }

  .pb-xs-20 {
    padding-bottom: 20px
  }

  .pb-xs-30 {
    padding-bottom: 30px
  }

  .pb-xs-40 {
    padding-bottom: 40px
  }

  .pb-xs-50 {
    padding-bottom: 50px
  }

  .pb-xs-60 {
    padding-bottom: 60px
  }

  .pb-xs-70 {
    padding-bottom: 70px
  }

  .pb-xs-80 {
    padding-bottom: 80px
  }

  .pb-xs-90 {
    padding-bottom: 90px
  }

  .pb-xs-100 {
    padding-bottom: 10px
  }

  /* margin top */
  .mt-xs-10 {
    margin-top: 10px
  }

  .mt-xs-20 {
    margin-top: 20px
  }

  .mt-xs-30 {
    margin-top: 30px
  }

  .mt-xs-40 {
    margin-top: 40px
  }

  .mt-xs-50 {
    margin-top: 50px
  }

  .mt-xs-60 {
    margin-top: 60px
  }

  .mt-xs-70 {
    margin-top: 70px
  }

  .mt-xs-80 {
    margin-top: 80px
  }

  .mt-xs-90 {
    margin-top: 90px
  }

  .mt-xs-100 {
    margin-top: 10px
  }

  /* margin bottom */
  .mb-xs-10 {
    margin-bottom: 10px
  }

  .mb-xs-20 {
    margin-bottom: 20px
  }

  .mb-xs-30 {
    margin-bottom: 30px
  }

  .mb-xs-40 {
    margin-bottom: 40px
  }

  .mb-xs-50 {
    margin-bottom: 50px
  }

  .mb-xs-60 {
    margin-bottom: 60px
  }

  .mb-xs-70 {
    margin-bottom: 70px
  }

  .mb-xs-80 {
    margin-bottom: 80px
  }

  .mb-xs-90 {
    margin-bottom: 90px
  }

  .mb-xs-100 {
    margin-bottom: 10px
  }

  /* font size vw */
  .fs-xs-1vw {
    font-size: 1vw
  }

  .fs-xs-2vw {
    font-size: 2vw
  }

  .fs-xs-3vw {
    font-size: 3vw
  }

  .fs-xs-4vw {
    font-size: 4vw
  }

  .fs-xs-5vw {
    font-size: 5vw
  }

  .fs-xs-6vw {
    font-size: 6vw
  }

  .fs-xs-7vw {
    font-size: 7vw
  }

  .fs-xs-8vw {
    font-size: 8vw
  }

  .fs-xs-9vw {
    font-size: 9vw
  }

  .fs-xs-10vw {
    font-size: 10vw
  }

  .fs-xs-11vw {
    font-size: 11vw
  }

  .fs-xs-12vw {
    font-size: 12vw
  }

  .fs-xs-13vw {
    font-size: 13vw
  }

  .fs-xs-14vw {
    font-size: 14vw
  }

  .fs-xs-15vw {
    font-size: 15vw
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 480px) {
  header a.btn-main i {
    display: inline-block;
  }
}

@media only screen and (max-width: 992px) {
  section {
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
    background-attachment: scroll;
  }
}

/* ===== Flechas carousel galería ===== */
.d-custom-nav,
.de-custom-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: auto;
  position: static;
  width: auto;
}

.d-prev,
.d-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.d-custom-nav.dark .d-prev,
.d-custom-nav.dark .d-next,
.de-custom-nav.dark .d-prev,
.de-custom-nav.dark .d-next {
  background-color: rgba(0, 0, 0, 0.08);
  border: solid 1px rgba(0, 0, 0, 0.18);
}

.d-custom-nav.dark .d-prev:hover,
.d-custom-nav.dark .d-next:hover,
.de-custom-nav.dark .d-prev:hover,
.de-custom-nav.dark .d-next:hover {
  background-color: var(--melier-gold);
  border-color: var(--melier-gold);
}

.d-prev::before,
.d-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--heading-font-color, #101828);
  transition: color 0.3s;
}

.d-custom-nav.dark .d-prev:hover::before,
.d-custom-nav.dark .d-next:hover::before,
.de-custom-nav.dark .d-prev:hover::before,
.de-custom-nav.dark .d-next:hover::before {
  color: #ffffff;
}

.d-prev::before {
  content: "\f053";
}

.d-next::before {
  content: "\f054";
}

/* ===== Estilos añadidos para Flechas Laterales (nav-sides) ===== */
.nav-sides {
  position: absolute !important;
  top: 50% !important;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between !important;
  pointer-events: none;
  /* Para que la caja invisible no bloquee los clics en el carrusel */
  z-index: 10;
  padding: 0 30px;
}

.nav-sides .d-prev,
.nav-sides .d-next {
  pointer-events: auto;
  /* Reactivamos el clic solo en los botones */
  background-color: rgba(255, 255, 255, 0.95) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-sides .d-prev:hover,
.nav-sides .d-next:hover {
  background-color: #ffffff !important;
  transform: scale(1.1);
}

.nav-sides .d-prev:hover::before,
.nav-sides .d-next:hover::before {
  color: var(--melier-gold);
  /* Mantiene tu color dorado personalizado al pasar el mouse */
}

/* ===== Ajustes Responsive para Nav Laterales (Mobile) ===== */
@media (max-width: 768px) {
  .nav-sides {
    padding: 0 10px;
  }

  .nav-sides .d-prev,
  .nav-sides .d-next {
    width: 36px;
    height: 36px;
  }

  .nav-sides .d-prev::before,
  .nav-sides .d-next::before {
    font-size: 11px;
  }
}

/* ===== Ajustes de tamaño de Cards para Mobile ===== */
@media (max-width: 768px) {

  /* Limitamos la altura de la imagen para que la "card" sea más horizontal/rectangular */
  #paquetes-carousel .custom-carousel-img {
    height: 240px !important;
    /* Puedes subirlo a 280px o bajarlo a 200px según tu gusto */
    object-fit: cover !important;
    width: 100% !important;
  }

  /* Achicamos un poco el texto del título de la card para que sea proporcional */
  #paquetes-carousel h4.text-light {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  /* Hacemos un poco más discreto el texto de "Ver Galería" que aparece al centro */
  #paquetes-carousel .abs-middle {
    padding: 15px !important;
    font-size: 14px;
  }

  /* Le damos un poco de margen a los costados para que la card no pegue con los bordes de la pantalla (opcional) */
  #paquetes-carousel .item {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.d-prev,
.d-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.d-custom-nav.dark .d-prev,
.d-custom-nav.dark .d-next,
.de-custom-nav.dark .d-prev,
.de-custom-nav.dark .d-next {
  background-color: rgba(0, 0, 0, 0.08);
  border: solid 1px rgba(0, 0, 0, 0.18);
}

.d-custom-nav.dark .d-prev:hover,
.d-custom-nav.dark .d-next:hover,
.de-custom-nav.dark .d-prev:hover,
.de-custom-nav.dark .d-next:hover {
  background-color: var(--melier-gold);
  border-color: var(--melier-gold);
}

.d-prev::before,
.d-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--heading-font-color, #101828);
  transition: color 0.3s;
}

.d-custom-nav.dark .d-prev:hover::before,
.d-custom-nav.dark .d-next:hover::before,
.de-custom-nav.dark .d-prev:hover::before,
.de-custom-nav.dark .d-next:hover::before {
  color: #ffffff;
}

.d-prev::before {
  content: "\f053";
}

.d-next::before {
  content: "\f054";
}

/* Botón Flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #E89B17;
  /* Color oficial de WhatsApp */
  color: #FFF;
  border-radius: 50%;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  /* Asegura que siempre esté por encima */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #8C5A12;
  color: #FFF;
  transform: scale(1.1);
  /* Pequeño salto visual al pasar el cursor */
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
}

/* Ajuste para mantener proporciones en dispositivos móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }
}