:root {
  --theme-1: #000000;
  --theme-2: #ffffff;
  --theme-3: #80d080;
  --theme-4: #003f7a;
  --theme-5: #00b2ed;
  --theme-6: #eeeeee;
  --font-heading: "Titillium Web", sans-serif;
  --font-body: "Titillium Web", sans-serif;
  --fontawesome: "Font Awesome 6 Pro";
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--theme-1);
  font-weight: 400;
  overflow-x: hidden !important;
  font-size: 15px;
}

a {
}

a,
a:hover {
  text-decoration: none;
}

a,
button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

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

.wrapper-lg {
  padding-top: 80px;
  padding-bottom: 80px;
}

.wrapper-md {
  padding-top: 60px;
  padding-bottom: 60px;
}

.wrapper-sm {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ************* HEADER ************* */
.header {
  padding: 0;
  width: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 123;
}

.header.header-style-4 {
  padding: 0.5rem;
  background-color: var(--theme-3);
}

.header .main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  position: relative;
}

.header .main-header .header-left {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header .main-header .header-left .header-logo {
  margin-right: 0;
}

.header .main-header .header-left .header-logo img {
  width: 240px;
  object-fit: cover;
}

.header .main-header .header-right {
  /*width: 30%;*/
  width: max-content;
  text-align: right;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}

.header .nav-main-menu {
  display: inline-block;
  width: 100%;
  padding: 0px;
}

.header .main-menu li {
  display: inline-block;
  position: relative;
  padding: 0px 0.25rem;
}

.header .main-menu li.has-children > a::after {
  content: "";
  height: 10px;
  width: 10px;
  background: url(../img/arrow-up.svg) no-repeat center;
  opacity: 1;
  margin-left: 0px;
  position: absolute;
  top: 44px;
  right: 0px;
}

.header .main-menu li.has-children > a:hover::after {
  background: url(../img/arrow-up-hover.svg) no-repeat center;
}

.header .main-menu li.hr {
  padding: 0px 22px;
}

.header .main-menu li.hr span {
  background-color: #ececec;
  height: 1px;
  width: 100%;
  display: block;
  margin: 5px 0;
}

.header .main-menu li a {
  font-style: normal;
  font-weight: 600;
  color: var(--theme-4);
  display: block;
  padding: 0.25rem;
  text-decoration: none;
  position: relative;
}

.header .main-menu li.social-item {
  padding: 0px 0.25rem;
}

.header .main-menu li a:hover {
  color: var(--theme-2);
}

.header .main-menu li a i {
  color: var(--theme-2);
  background: var(--theme-4);
  padding: 0;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
}

.header .main-menu li ul {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.2s;
  position: absolute;
  top: 40px;
  left: 0px;
  z-index: 999;
  min-width: 220px;
  box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.header .main-menu li ul.sub-menu {
  background-color: var(--theme-2);
  border: 1px solid var(--theme-2);
}

.header .main-menu li ul li {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.header .main-menu li ul li a {
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--theme-4);
  position: relative;
  padding: 8px 16px 8px 16px;
  transition: 0.3s;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
  min-width: 200px;
}

.header .main-menu li ul li a:hover {
  transition: 0.5s;
  background-color: transparent;
  color: var(--theme-5);
}

.header .main-menu li ul li a:hover::after {
  opacity: 1;
  transition-duration: 0.3s;
  background: url(../img/arrow-up-hover2.svg) no-repeat right center;
}

.header .main-menu li ul li ul {
  top: 0px;
  left: 100%;
}

.header .main-menu li.mega-li {
  position: static;
}

.header .main-menu li.mega-li .mega-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  display: none;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner {
  max-width: 1125px;
  margin: auto;
  border: 1px solid #2b2c2d;
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);
  background-color: #1e1e1e;
  position: relative;
  background-image: url(../imgs/template/bg-menu-dark.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner h6 {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul {
  display: inline-block;
  box-shadow: none;
  padding: 0px;
  border: 0px;
  position: relative;
  top: auto;
  left: auto;
  opacity: 1;
  visibility: visible;
  margin-top: 16px;
  min-width: 100%;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li {
  padding: 0px;
  margin-bottom: 12px;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a {
  padding: 0px;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a:after {
  display: none;
}

.header .main-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.header .main-menu li:hover > ul li {
  width: 100%;
}

.header .main-menu li:hover.mega-li .mega-menu {
  display: block;
}

.header.header-style-5 .top-bar {
  margin-bottom: 0px;
}

.header.stick {
  padding: 0px;
}

.header.header-6 {
  padding: 15px 0px;
}

.header.header-6.stick {
  padding: 10px 0px;
  background-color: #f4f6f9;
  border-bottom-color: #eceef2;
}

.box-desc-menu {
  border-radius: 8px;
  background-color: #2b2c2d;
  padding: 24px;
  margin-top: 40px;
}

.box-desc-menu p {
  color: #898a8a;
}

.sticky-bar.stick {
  animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  left: 0;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #191919;
  background: #2b2c2d;
}

.sticky-bar.stick .burger-icon {
  top: 15px;
}

.sticky-bar.stick.header-style-2 {
  background-color: var(--theme-2);
  border-bottom-color: var(--theme-2);
}

.sticky-bar.stick.header-style-2 .top-bar {
  display: none;
}

.body-overlay-1 {
  background: transparent;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  cursor: crosshair;
  z-index: 997;
}

.mobile-menu-active .body-overlay-1 {
  opacity: 1;
  visibility: visible;
}

.form-search {
  position: relative;
  top: 0;
  right: 0;
  width: 200px;
  z-index: 1234;
  padding: 5px 5px;
  /* display: none; */
  border-radius: 8px;
  background-color: TRANSPARENT;
  padding: 1rem !important;
}

.form-search .form-control {
  height: 38px;
  line-height: 1;
  padding: 8px 12px 8px 12px;
  font-size: 14px;
  background-color: TRANSPARENT;
  color: var(--theme-4);
  border: 1px solid var(--theme-4);
}

.form-search .btn-search-2 {
  position: absolute;
  top: 16px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: url(../img/search.svg) no-repeat center;
  background-color: var(--theme-4);
  border: 0px;
  border-radius: 0px 8px 8px 0;
}

.mobile-header-wrapper-style {
  position: fixed;
  top: 0;
  max-width: 380px;
  width: 100%;
  min-height: 100vh;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  z-index: 1006;
}

.mobile-header-wrapper-style.sidebar-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
  padding: 0px 0px 30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .burger-icon {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  flex-shrink: 0;
  display: block;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 20px 24px;
  background-color: var(--theme-3);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-top
  .mobile-header-logo
  a {
  display: block;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-top
  .mobile-header-logo
  a
  img {
  width: 140px;
  max-width: 100%;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area {
  padding: 30px 30px 30px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li {
  display: block;
  position: relative;
  padding: 13px 0;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li.hr {
  display: none;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li:last-child {
  border-bottom: none;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li.has-children
  .menu-expand {
  right: 0;
  position: absolute;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  font-size: 12px;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 38px;
  top: 5px;
  color: #191919;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li.has-children
  .menu-expand
  i {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.5;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li.has-children.active
  > .menu-expand {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li.has-children.active
  > .menu-expand
  i::before {
  content: "\f113";
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  a {
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #191919;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  a
  i {
  margin-right: 5px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul {
  padding: 10px 0 0 10px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li {
  padding: 10px 0;
  border-bottom: none;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li.has-children
  .menu-expand {
  top: 0px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li:hover
  a {
  padding-left: 13px;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li:hover
  a::before {
  opacity: 1;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li
  a {
  font-size: 16px;
  display: block;
  font-weight: 500;
  color: #434445;
  padding-left: 15px;
  position: relative;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li
  a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 5px;
  height: 5px;
  background-color: #b1b2b8;
  border-radius: 50%;
  opacity: 0.7;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li
  ul {
  margin-top: 0;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li
  ul
  li.has-children.active {
  padding-bottom: 0;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-menu-wrap
  nav
  .mobile-menu
  li:hover
  > a {
  color: var(--theme-3);
  padding-left: 3px;
  transition-duration: 0.2s;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .categories-dropdown-wrap
  ul
  li
  a {
  padding: 5px 15px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ececec;
  margin: 17px 0 30px 0;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info {
  position: relative;
  margin-bottom: 13px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info:last-child {
  margin-bottom: 0;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  a {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #191919;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  a:hover {
  color: #d280e5;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  a
  i {
  font-size: 14px;
  color: #d280e5;
  margin-right: 8px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  .lang-curr-dropdown {
  margin-top: 5px;
  display: none;
  background-color: transparent;
  box-shadow: none;
  padding: 10px 0 0 0;
  width: 100%;
  z-index: 11;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  .lang-curr-dropdown
  ul
  li {
  padding-bottom: 10px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  .lang-curr-dropdown
  ul
  li:last-child {
  padding-bottom: 0px;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  .lang-curr-dropdown
  ul
  li
  a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info
  .lang-curr-dropdown
  ul
  li
  a:hover {
  color: #d280e5;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-info-wrap
  .single-mobile-header-info:hover
  > a {
  color: #191919;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .mobile-header-border {
  border-bottom: 1px solid #ececec;
}

.mobile-header-wrapper-style
  .mobile-header-wrapper-inner
  .mobile-header-content-area
  .site-copyright {
  font-size: 13px;
  color: #434445;
}

.burger-icon {
  position: absolute;
  width: 24px;
  height: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999999;
  display: none;
}

.burger-icon > span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}

.burger-icon > span.burger-icon-top {
  top: 2px;
}

.burger-icon > span.burger-icon-bottom {
  bottom: 2px;
}

.burger-icon > span.burger-icon-mid {
  top: 9px;
}

.burger-icon.burger-close > span.burger-icon-top {
  display: none;
  opacity: 0;
}

.burger-icon.burger-close > span.burger-icon-mid {
  top: 8px;
  transform: rotate(45deg);
}

.burger-icon.burger-close > span.burger-icon-bottom {
  bottom: 10px;
  transform: rotate(-45deg);
}

.burger-icon > span::before,
.burger-icon > span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #333;
}

.sidebar-visible .burger-icon.burger-icon-white > span::before,
.sidebar-visible .burger-icon.burger-icon-white > span::after {
  background-color: #1e1e1e;
}

.burger-icon.burger-icon-white > span::before,
.burger-icon.burger-icon-white > span::after {
  background-color: var(--theme-1);
}

.mobile-search form {
  background-color: #eceef2;
  border-radius: 8px;
  height: 44px;
  padding: 8px 15px 11px 30px;
  position: relative;
}

.mobile-search form input {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: auto;
}

.mobile-search form i {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 18px;
  color: #5a5b5b;
}

.mobile-social-icon h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
}

.mobile-social-icon a.icon-socials {
  background-color: #eceef2;
}

.mobile-social-icon a {
  text-align: center;
  font-size: 14px;
  margin-right: 5px;
  transition-duration: 0.5s;
  height: 30px;
  width: 30px;
  display: inline-flex;
  background: #efeaff;
  border-radius: 30px;
  line-height: 1;
  align-content: center;
  justify-content: center;
}

.mobile-social-icon a img {
  max-width: 18px;
}

.mobile-social-icon a img:hover {
  opacity: 0.8;
}

.mobile-social-icon a:hover {
  transform: translateY(-2px);
  transition-duration: 0.5s;
  margin-top: -2px;
}

.mobile-social-icon a:last-child {
  margin-right: 0;
}

.mobile-account {
  margin: 15px 0;
  padding: 30px 0 20px 0;
  border-top: thin solid #ececec;
}

.mobile-account .mobile-menu {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.mobile-account h6 {
  font-weight: 600;
  font-size: 18px;
}

.mobile-account ul li {
  padding: 13px 0;
}

.mobile-account ul li a {
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #434445;
  transition-duration: 0.2s;
}

.mobile-account ul li:hover a {
  padding-left: 3px;
  transition-duration: 0.2s;
  color: #d280e5;
}

.sidebar-title {
  border-bottom: thin solid #ececec;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.search-form form {
  position: relative;
}

.search-form form input {
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 64px;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

.search-form form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-size: 20px;
  height: 100%;
  padding: 0 24px;
  background-color: transparent;
  color: #242424;
}

.header-style-2 .btn.btn-search {
  background: url(../img/search-black.svg) no-repeat center;
  padding: 10px 30px;
}

.btn.btn-brand-4-medium {
  padding: 12px 12px;
  display: flex;
  align-items: center;
}

/* ************* OWL CAROUSEL/NAVIGATION ************* */
.banner-item {
  position: relative;
  overflow: hidden;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 1200px;
}

.banner-title {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.banner-subtitle {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.5rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }
}

#owl-banner .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}

#owl-banner .owl-dots .owl-dot span,
#owl-projects .owl-dots .owl-dot span,
#owl-partners .owl-dots .owl-dot span,
#owl-testimonials .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--theme-1);
}

#owl-banner .owl-dots .owl-dot.active span,
#owl-banner .owl-dots .owl-dot:hover span,
#owl-projects .owl-dots .owl-dot.active span,
#owl-projects .owl-dots .owl-dot:hover span,
#owl-partners .owl-dots .owl-dot.active span,
#owl-partners .owl-dots .owl-dot:hover span,
#owl-testimonials .owl-dots .owl-dot.active span,
#owl-testimonials .owl-dots .owl-dot:hover span {
  background-color: var(--theme-4);
}

#owl-galeria .item img,
#owl-thumbs .item img {
  border-radius: 8px;
}

#owl-thumbs {
  margin-top: 20px;
}

/*
#owl-thumbs .owl-nav {
position: absolute;
bottom: 50%;
left: 0;
right: 0;
transform: translateY(50%);
top: 0;
}
*/
#owl-thumbs .owl-nav button {
}

#owl-thumbs .owl-nav button:hover {
  background: transparent;
}

#owl-thumbs .owl-nav .owl-prev,
#owl-thumbs .owl-nav .owl-next {
  color: var(--theme-4);
  font-size: 26px;
}

#owl-thumbs .owl-nav .owl-prev {
  position: absolute;
  left: -40px;
  bottom: 50%;
  top: 0;
  transform: translateY(50%);
}

#owl-thumbs .owl-nav .owl-next {
  position: absolute;
  right: -40px;
  bottom: 50%;
  top: 0;
  transform: translateY(50%);
}

/* ************* PRODUTOS/PROJETOS/PARCEIROS ************* */

.products-filter {
  background: var(--theme-5);
  color: var(--theme-4);
}
.products-list {
  background: var(--theme-6);
}

.produto-item .produto-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.produto-item .card-title {
  text-align: center;
  color: var(--theme-4);
}
.btn-products {
  background: var(--theme-3);
  border: 1px solid var(--theme-3);
  color: var(--theme-4);
  font-weight: 600;
  font-size: 14px;
}
.solutions {
  background-color: var(--theme-4);
  color: var(--theme-2);
}

.projects .title,
.partners .title {
  color: var(--theme-4);
  margin-bottom: 40px;
  position: relative;
}

.projects .title::after,
.partners .title::after,
.testimonials .title::after {
  position: absolute;
  width: 200px;
  height: 2px;
  background: var(--theme-3);
  content: "";
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.projects .projects-item {
}

.projects .projects-item .image img {
  border-radius: 8px;
}

.projects .projects-item .info {
  text-align: center;
  background-color: var(--theme-5);
  color: var(--theme-4);
  border-radius: 8px;
}

.projects .projects-item .info .subtitle {
  margin: 10px;
  padding: 10px;
}

.product-single,
.project-single {
  background-color: var(--theme-2);
}

.product-single .btn-back,
.project-single .btn-back {
  background: var(--theme-5);
  border: 2px solid var(--theme-5);
  color: var(--theme-4);
  display: inline-block;
  font-weight: 600;
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
}

.product-single .btn-back:hover,
.project-single .btn-back:hover {
  background: var(--theme-2);
  border: 2px solid var(--theme-5);
  color: var(--theme-5);
}

.product-single .title,
.project-single .title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--theme-4);
}

.products-filter,
.product-single-catalog {
  background-color: var(--theme-5);
}

.product-single-catalog .accordion,
.product-single-catalog .accordion .accordion-item {
  border: 0 !important;
}

.product-single-catalog .accordion .accordion-item {
  margin-bottom: 0.5rem;
}

.product-single-catalog .accordion-button:not(.collapsed) {
  background: var(--theme-4);
  border: 1px solid var(--theme-4);
  color: var(--theme-2);
  font-weight: 600;
}

.product-single-catalog .title {
  color: var(--theme-4);
}

.product-single-catalog .subtitle {
  color: var(--theme-2);
}

.product-single-contact,
.project-single-contact {
  background-color: var(--theme-4);
  color: var(--theme-3);
}

.product-single-contact .btn-contact,
.project-single-contact .btn-contact {
  background: var(--theme-3);
  border: 2px solid var(--theme-3);
  color: #ffffff;
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

.product-single-contact .btn-contact:hover,
.project-single-contact .btn-contact:hover {
  background: var(--theme-2);
  border: 2px solid var(--theme-2);
  color: var(--theme-4);
}

.product-single .btn-shop,
.product-single-catalog .btn-contact {
  background: var(--theme-4);
  border: 2px solid var(--theme-4);
  color: #ffffff;
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

.product-single .btn-shop:hover,
.product-single-contact .btn-contact:hover {
  background-color: transparent;
  color: var(--theme-4);
}

/* ************* FUNDADORES/DEPOIMENTOS ************* */
.founders,
.testimonials {
  background-color: var(--theme-4);
  color: var(--theme-2);
}

.founders .founders-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

.founders .founders-item .image {
  flex: 0 0 150px;
  width: 150px;
  min-width: 150px;
}

.founders .founders-item .image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.founders .founders-item .info {
  flex: 1;
}

.founders .founders-item .info .subtitle {
  color: var(--theme-3);
}

.founders .founders-item .info .text {
  line-height: 1.6;
}

.testimonials .title {
  margin-bottom: 40px;
  position: relative;
}

.testimonials .subtitle {
  color: var(--theme-3);
}

/* ************* ASSESORIA ************* */
.consultancy {
  background-color: var(--theme-3);
  color: var(--theme-4);
}

.consultancy .title {
  margin: 0;
  flex: 1;
}

.consultancy .buttons-wrapper {
  display: flex;
  gap: 15px;
}

.consultancy .btn {
  white-space: nowrap;
}

.consultancy .btn-consultancy {
  background: var(--theme-4);
  border: 2px solid var(--theme-4);
  color: #ffffff;
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 35px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.consultancy .btn-consultancy:hover {
  background-color: transparent;
  color: var(--theme-4);
}

.values {
  background: var(--theme-4) url(../img/bg-values.png) no-repeat bottom center;
  color: var(--theme-2);
}

.card-values {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  top: 60px;
}

.card-values:hover {
  transform: translateY(-5px);
}

.values .col-lg-4:nth-child(1) .card-values {
  background-color: var(--theme-6);
  color: var(--theme-4);
}

.values .col-lg-4:nth-child(2) .card-values {
  background-color: var(--theme-5);
  color: var(--theme-4);
}

.values .col-lg-4:nth-child(3) .card-values {
  background-color: var(--theme-3);
  color: var(--theme-4);
}

.card-values h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card-values .text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ************* FOOTER ************* */
.footer {
  background-color: var(--theme-3);
  color: var(--theme-4);
}

.copyright {
  background-color: var(--theme-4);
}

.copyright p,
.copyright a {
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--theme-2);
}

/* ************* FOOTER ************* */
.contato .title {
  color: var(--theme-4);
  text-transform: uppercase;
}

.contato-form .card {
  background-color: var(--theme-4);
}

.contato-form form {
  padding: 30px;
  border-radius: 8px;
}

.contato-form label {
  margin-bottom: 8px;
  color: var(--theme-2);
  display: block;
}

.contato-form .obg {
  color: #dc3545;
}

/* Estilos para validaÃ§Ã£o */
.contato-form .form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contato-form .was-validated .form-control:valid {
  border-color: #28a745;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contato-form .was-validated .form-control:invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contato-form .invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 4px;
}

.contato-form .was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}

/* Estilos para o botÃ£o */
.contato-form .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-weight: 500;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.contato-form .btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
  transform: translateY(-2px);
}

.contato-form .btn-primary:active {
  transform: translateY(0);
}

.contato-form .btn-primary:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
}

.contato-form .alert {
  margin-top: 20px;
  border-radius: 4px;
  padding: 15px;
}

.contato-form .alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.contato-form .alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.contato-form .form-switch {
  padding-left: 2.5em;
}

.contato-form .form-check-input {
  height: 1.5em;
  width: 3em;
  cursor: pointer;
}

.contato-form .form-check-label {
  cursor: pointer;
}

.contato-form .g-recaptcha {
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.contato-form .spinner-border {
  margin-right: 8px;
}

.contato-form .alert {
  animation: fadeIn 0.3s ease-in-out;
}

.btn-whatsapp {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  display: block;
  background: #25d366;
  color: var(--theme-2);
}

/* ************* RESPONSIVE ************* */
@media (max-width: 1199.98px) {
  .burger-icon {
    display: block;
  }

  .form-search {
    display: none;
  }

  .header .main-header .header-left .header-logo img {
    width: 180px;
  }

  .header .main-header .header-right {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .header.header-style-4 {
    padding: 0.375rem 0.5rem;
  }

  .header .main-header .header-left .header-logo img {
    width: 150px;
  }

  .mobile-header-wrapper-style {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .header.header-style-4 {
    padding: 0.25rem 0.5rem;
  }

  .header .main-header .header-left .header-logo img {
    width: 130px;
  }
}

@media (max-width: 400px) {
  .header .main-header .header-left .header-logo img {
    width: 110px;
  }
}

@media only screen and (min-width: 240px) and (max-width: 768px) {
  #owl-thumbs .owl-nav .owl-prev,
  #owl-thumbs .owl-nav .owl-next {
    display: none;
  }
}

@media (max-width: 991px) {
  .banner-item {
    height: 420px;
  }
  .banner-item img {
    height: 420px;
    object-fit: cover;
  }
  .banner-content {
    width: 100%;
  }
  .founders .founders-item {
    display: block;
  }
}
