* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
:root {
  --theme-color: #000;
  --secondary-color: #1590c4;
  --text-color: #575757;
  --title-color: #0f0f0f;
  --text-font: 'Plus Jakarta Sans', sans-serif;
  --title-font: 'Libre Baskerville', serif;
}
body {
  font-size: 16px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 400;
  background: #fff;
  font-family: var(--text-font);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 15px;
  }
}
.large-container {
  max-width: 1550px;
  padding: 0 15px;
  margin: 0 auto;
}
.container-fluid {
  padding: 0;
}
.auto-container {
  position: static;
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}
.small-container {
  max-width: 680px;
  margin: 0 auto;
}
.boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}
a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
a:hover {
  text-decoration: none;
  outline: none;
}
input,
button,
select,
textarea {
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: #fff0;
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
input {
  transition: all 500ms ease;
}
button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}
p {
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
  transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  margin: 0;
  transition: all 500ms ease;
}
.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: var(--secondary-color);
}
.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 14px;
  background: #fff;
  color: red;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
  font-weight: 400;
}
.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}
.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255 255 255 / .3);
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.handle-preloader .loader-section {
  background-color: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}
.handle-preloader .animation-preloader .spinner {
  border: 3px solid #fff;
  border-top-color: rgb(255 255 255 / .5);
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 36px;
    letter-spacing: 6px;
  }
}
.centred {
  text-align: center;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
figure {
  margin: 0;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.row {
  --bs-gutter-x: 30px;
}
.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 19px 34px;
  font-family: var(--text-font);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  z-index: 1;
  transition: all 500ms ease;
}
.theme-btn:hover {
  color: #fff;
}
.theme-btn:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}
.theme-btn:hover:before {
  transform: scale(1, 1);
}
.theme-btn.btn-three {
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 17px 34px;
}
.parallax-bg {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pagination {
  position: relative;
  display: block;
}
.pagination li {
  position: relative;
  display: inline-block;
  margin: 0 3px;
}
.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  height: 54px;
  width: 54px;
  line-height: 54px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  text-align: center;
  color: var(--title-color);
  z-index: 1;
  transition: all 500ms ease;
}
.pagination li a:hover,
.pagination li a.current {
  color: #fff;
  background: #1590c4;
  border-color: #1590c4;
}
.sec-pad {
  padding: 142px 0 150px 0;
}
.mr-0 {
  margin: 0px !important;
}
.scroll-to-top {
  position: fixed;
  right: 0;
  bottom: 100px;
  transform: rotate(90deg);
  z-index: 99;
}
.scroll-to-top .visible {
  visibility: visible !important;
  opacity: 1 !important;
}
.scroll-to-top .scroll-top-inner {
  opacity: 0;
  visibility: hidden;
}
.scroll-to-top .scroll-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.scroll-to-top .scroll-bar {
  width: 50px;
  height: 2px;
  margin-right: 10px;
  position: relative;
}
.scroll-to-top .scroll-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f4244f;
  opacity: .3;
}
.scroll-to-top .scroll-bar .bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: currentColor;
}
.scroll-to-top .scroll-bar-text {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--theme-color);
  transition: all 500ms ease;
}
.light-home .scroll-to-top .scroll-bar-text {
  color: var(--secondary-color);
}
.scroll-to-top .scroll-bar-text:hover {
  transform: scale(1.1);
}
@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px #fff0;
    box-shadow: 0 0 0 30px #fff0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0;
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px #fff0;
    box-shadow: 0 0 0 30px #fff0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0;
  }
}
.sec-title {
  position: relative;
  display: block;
}
.sec-title h2 {
  position: relative;
  display: block;
  font-size: 43px;
  line-height: 58px;
  font-weight: 700;
  margin: 0;
}
.sec-title.light h2 {
  color: #fff !important;
}
.sec-title p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.main-header {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  border-bottom: 1px solid rgb(0 0 0 / .1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .header-lower .outer-box {
  padding-left: 85px;
}
.main-header .menu-right-content {
  position: relative;
  display: flex;
  align-items: center;
}
.main-header .menu-right-content .support-box {
  position: relative;
  display: block;
  padding: 0 0 0 47px;
  margin-right: 45px;
}
.main-header .menu-right-content .support-box .icon-box {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 32px;
}
.main-header .menu-right-content .support-box p {
  font-size: 14px;
  line-height: 20px;
}
.main-header .menu-right-content .support-box a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 34px;
  color: #0f0f0f;
  font-weight: 700;
}
.main-header .header-lower {
  position: relative;
  padding: 0 130px;
}
.main-header .nav-toggler {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 130px;
  height: 100px;
  font-size: 42px;
  color: #fff;
  line-height: 100px;
  text-align: center;
  cursor: pointer;
  transition: all 500ms ease;
}
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  width: 20%;
  transform: scaleX(0);
  transform-origin: left center;
  cursor: url(../images/icons/cross-out.png), pointer;
  z-index: 9999999;
  border-right: 1px solid rgb(255 255 255 / .1);
  transition: transform .65s .3s cubic-bezier(.7, 0, .2, 1);
}
.xs-sidebar-group.isActive .xs-overlay {
  transform: scaleX(1);
  transition-delay: .03s;
}
.xs-sidebar-group .xs-overlay-2 {
  left: 20%;
  transition-delay: .06s;
}
.xs-sidebar-group .xs-overlay-3 {
  left: 40%;
  transition-delay: .09s;
}
.xs-sidebar-group .xs-overlay-4 {
  left: 60%;
  transition-delay: .12s;
}
.xs-sidebar-group .xs-overlay-5 {
  left: 80%;
  transition-delay: .15s;
}
.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 50px;
  right: 35px;
  z-index: 1;
}
.xs-sidebar-widget {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  z-index: 999999999;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  transition: all 900ms ease;
  visibility: hidden;
  opacity: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
  -webkit-transition: all 0.7s cubic-bezier(.9, .03, 0, .96) 0.6s;
  -o-transition: all 0.7s cubic-bezier(.9, .03, 0, .96) 0.6s;
  transition: all 0.7s cubic-bezier(.9, .03, 0, .96) 0.6s;
}
.sidebar-textwidget {
  padding: 50px 40px 50px 40px;
}
.xs-sidebar-group .close-side-widget {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #0e132d;
  color: #0e132d;
  border-radius: 50%;
  font-weight: 400;
  font-size: 20px;
  transition: all 500ms ease;
}
.sidebar-widget-container {
  position: relative;
  opacity: 0;
  visibility: hidden;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
  opacity: 1;
  visibility: visible;
}
.xs-bg-black {
  background-color: var(--secondary-color);
}
.xs-sidebar-group .logo {
  position: relative;
  display: block;
  padding-bottom: 25px;
  margin-bottom: 35px;
  border-bottom: 1px solid #e0e0e0;
}
.xs-sidebar-group h3 {
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 28px;
}
.xs-sidebar-group .content-inner .text {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 35px;
}
.xs-sidebar-group .content-inner p {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 28px;
  font-family: 'Barlow', sans-serif;
  color: #444;
  margin-bottom: 0;
}
.xs-sidebar-group .content-inner .info-box {
  position: relative;
  display: block;
  margin-bottom: 48px;
}
.xs-sidebar-group .content-inner .info-box .info li {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 25px;
  font-family: 'Barlow', sans-serif;
  color: #444;
  padding-left: 47px;
  margin-bottom: 25px;
}
.xs-sidebar-group .content-inner .info-box .info li:last-child {
  margin-bottom: 0px !important;
}
.xs-sidebar-group .content-inner .info-box .info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
}
.xs-sidebar-group .content-inner .info-box .info li:first-child .icon {
  top: 7px;
}
.xs-sidebar-group .content-inner .info-box .info li:nth-child(3) .icon {
  left: 8px;
}
.xs-sidebar-group .subscribe-inner .form-group {
  position: relative;
  margin-bottom: 0;
}
.xs-sidebar-group .subscribe-inner .form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #e3dfdf;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  color: #444;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.xs-sidebar-group .content-inner .info-box .info li a {
  display: inline-block;
  color: #444;
}
.xs-sidebar-group .content-inner .info-box .info li a:hover {
  text-decoration: underline;
}
.main-menu {
  float: left;
}
.main-menu .navbar-collapse {
  padding: 0;
  display: block !important;
}
.main-menu .navigation {
  margin: 0;
}
.main-menu .navigation > li {
  position: inherit;
  float: left;
  z-index: 2;
  margin: 0 16px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0px !important;
}
.main-menu .navigation > li:first-child {
  margin-left: 0px !important;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 38px 0;
  font-weight: 500;
  font-family: var(--text-font);
  opacity: 1;
  color: #fff;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.light-home .main-menu .navigation > li > a {
  color: #fff;
}
.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 250px;
  margin-top: 15px;
  z-index: 100;
  display: none;
  background: rgb(2 2 2);
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
}
.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  line-height: 30px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  font-family: var(--text-font);
  color: #fff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li > a {
  border-bottom: 1px solid rgb(255 255 255 / .1);
}
.main-menu .navigation > li > .megamenu li > a {
  padding-left: 0;
}
.main-menu .navigation > li > .megamenu h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover {
  padding-left: 35px;
}
.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: 'Font Awesome 6 Free';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 10px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  z-index: 5;
}
.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0%;
  margin-top: 15px;
  background: rgb(2 2 2);
  width: 250px;
  z-index: 100;
  display: none;
  border-radius: 0;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li > ul.from-right {
  left: auto;
  right: 0;
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  font-family: var(--text-font);
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / .1);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:last-child > a {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  padding-left: 35px;
}
.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}
.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  top: 100%;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 0;
}
.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}
.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}
.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
}
.mobile-menu .nav-logo img {
  max-width: 160px;
}
.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0;
}
.main-menu .navigation > li.dropdown > .megamenu {
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0;
}
.main-menu .navigation li.dropdown .megamenu li h4 {
  margin-bottom: 10px;
}
.sticky-header .main-menu .navigation > li > a {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #000;
}
.sticky-header .main-menu .navigation > li.dropdown > a:before {
  top: 27px;
}
.sticky-header .main-menu:before {
  top: 15px;
}
.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}
.mobile-menu .navbar-collapse {
  display: block !important;
}
.mobile-menu .nav-logo {
  position: relative;
  padding: 50px 25px;
  text-align: left;
  padding-bottom: 100px;
}
.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: .7;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
}
.mobile-menu .menu-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgb(255 255 255 / .1);
}
.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgb(255 255 255 / .1);
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgb(255 255 255 / .1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.mobile-menu .navigation li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.mobile-menu .navigation li > a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.mobile-menu .navigation li.current > a:before {
  height: 100%;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  background: rgb(255 255 255 / .1);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu {
  display: none;
}
.mobile-menu .social-links {
  position: relative;
  padding: 0 25px;
}
.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px;
}
.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
div#mCSB_1_container {
  top: 0px !important;
}
.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}
.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgb(255 255 255 / .8);
  margin-bottom: 3px;
}
.mobile-menu .contact-info ul li a {
  color: rgb(255 255 255 / .8);
}
.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0;
}
.main-header .outer-box {
  position: relative;
}
.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}
.owl-nav button {
  background: #fff0;
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.demo-rtl {
  position: fixed;
  top: 390px;
  left: 10px;
  z-index: 9999;
}
button.rtl {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  margin: 0;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / .1);
  transition: all 500ms ease;
}
.light-home button.rtl {
  background: var(--secondary-color);
}
.demo-ltr {
  position: fixed;
  top: 390px;
  left: auto;
  right: 10px;
  z-index: 9999;
}
button.ltr {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: rgb(0 0 0);
  transition: all 500ms ease;
}
.light-home button.ltr {
  background: var(--secondary-color);
}
.boxed_wrapper.ltr .demo-rtl {
  display: block;
}
.boxed_wrapper.ltr .demo-ltr {
  display: none;
}
.boxed_wrapper.rtl .demo-rtl {
  display: none;
}
.boxed_wrapper.rtl .demo-ltr {
  display: block;
}
.list-style-one {
  position: relative;
  display: block;
}
.list-style-one li {
  position: relative;
  display: block;
  padding-left: 24px;
  margin-bottom: 8px;
}
.list-style-one li:last-child {
  margin-bottom: 0;
}
.list-style-one li:before {
  position: absolute;
  content: '';
  border: 2px solid #0f0f0f;
  border-radius: 50%;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
}
.accordion-box .block .acc-content {
  display: none;
}
.accordion-box .block .acc-content.current {
  display: block;
}
@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px #fff0;
    box-shadow: 0 0 0 30px #fff0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0;
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px #fff0;
    box-shadow: 0 0 0 30px #fff0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0;
  }
}
.list-style-two li {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
  padding-left: 17px;
  margin-bottom: 20px;
}
.list-style-two li:last-child {
  margin-bottom: 0;
}
.list-style-two li:before {
  position: absolute;
  content: '';
  background: #111;
  width: 5px;
  height: 5px;
  left: 0;
  top: 9px;
  border-radius: 50%;
}
.header-style-five {
  box-shadow: 0 10px 30px 0 #00000008;
}
.main-menu .navigation > li > ul > li > a:hover {
  color: var(--theme-color);
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--theme-color);
}
.pt_0 {
  padding-top: 0px !important;
}
.nice-select:before {
  position: absolute;
  content: '\e902';
  font-family: 'icomoon';
  font-size: 12px;
  top: 10px;
  right: 25px;
}
.nav-style-one .owl-nav button {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #fff;
  text-align: center;
  border: 1px solid rgb(80 174 177 / .3);
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  color: var(--title-color);
  transition: all 500ms ease;
}
.nav-style-one .owl-nav button:hover {
  color: #fff;
}
.nav-style-one .owl-nav button.owl-prev {
  margin-right: 10px;
}
.main-footer {
  position: relative;
  background: #202020;
}
.main-footer .widget-section {
  position: relative;
  padding: 100px 0 110px 0;
}
.main-footer .logo-widget .footer-logo {
  position: relative;
  display: block;
  margin-bottom: 35px;
}
.main-footer .logo-widget p {
  color: rgb(255 255 255 / .75);
  margin-bottom: 35px;
}
.main-footer .logo-widget .info-list li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: rgb(255 255 255 / .75);
  font-weight: 700;
  padding-left: 33px;
  margin-bottom: 13px;
}
.main-footer .logo-widget .info-list li a {
  display: inline-block;
  color: rgb(255 255 255 / .75);
}
.main-footer .logo-widget .info-list li a.phone {
  font-size: 20px;
  line-height: 35px;
  color: #fff;
}
.main-footer .logo-widget .info-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
}
.main-footer .logo-widget .info-list li span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #ebebeb;
}
.main-footer .widget-title {
  position: relative;
  display: block;
  margin-bottom: 35px;
  padding-bottom: 13px;
}
.main-footer .widget-title:before {
  position: absolute;
  content: '';
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
}
.main-footer .widget-title h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
.main-footer .links-widget .links-list li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 22px;
}
.main-footer .links-widget .links-list li:last-child {
  margin-bottom: 0;
}
.main-footer .links-widget .links-list li a {
  display: inline-block;
  color: rgb(255 255 255 / .75);
}
.main-footer .schedule-widget .widget-content {
  position: relative;
  display: block;
  background: #242424;
  border-radius: 5px;
  padding: 36px 40px;
}
.main-footer .schedule-widget .schedule-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.main-footer .schedule-widget .schedule-list li:last-child {
  margin-bottom: 0;
}
.main-footer .schedule-widget .schedule-list li .day {
  position: relative;
  display: inline-block;
  margin-right: 28px;
  min-width: 36px;
}
.main-footer .schedule-widget .schedule-list li .line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgb(255 255 255 / .6);
}
.main-footer .schedule-widget .schedule-list li .time {
  position: relative;
  display: inline-block;
  float: right;
  margin-left: 20px;
  min-width: 100px;
}
.main-footer .schedule-widget .schedule-list li span {
  font-size: 16px;
  line-height: 24px;
  color: rgb(255 255 255 / .75);
  font-weight: 500;
}
.main-footer .pattern-layer {
  position: absolute;
  left: 0;
  top: 40px;
  width: 446px;
  height: 480px;
  background-repeat: no-repeat;
}
.footer-bottom {
  position: relative;
  background: #1a1a1a;
  padding: 35px 0;
}
.footer-bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .bottom-inner p {
  font-size: 14px;
  line-height: 30px;
  color: #bbb9ba;
}
.footer-bottom .bottom-inner p a {
  display: inline-block;
  color: #bbb9ba;
}
.footer-bottom .bottom-inner .social-links {
  position: relative;
  display: flex;
  align-items: center;
}
.footer-bottom .bottom-inner .social-links li {
  margin-right: 10px;
}
.footer-bottom .bottom-inner .social-links li:last-child {
  margin: 0px !important;
}
.footer-bottom .bottom-inner .social-links li a {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: rgb(255 255 255 / .5);
  border-radius: 5px;
  text-align: center;
}
.footer-bottom .bottom-inner .social-links li a:hover {
  color: #fff;
}
.header-style-two {
  position: relative;
}
.header-top {
  position: relative;
  width: 100%;
  background: rgb(80 174 177 / .15);
  padding: 20px 0;
}
.header-style-two .outer-container {
  position: relative;
  max-width: 1550px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}
.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 380px;
}
.header-top .top-inner p {
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
}
.header-top .top-inner .info-list {
  position: relative;
  display: flex;
  align-items: center;
}
.header-top .top-inner .info-list li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
  padding-left: 26px;
  margin-right: 40px;
}
.header-top .top-inner .info-list li:last-child {
  margin: 0px !important;
}
.header-top .top-inner .info-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
}
.header-style-two .header-lower {
  padding: 0;
}
.header-style-two .header-lower .logo-box {
  position: absolute;
  padding: 38px 72px 39px 72px;
  left: 0;
  top: -60px;
  border-bottom-right-radius: 50px;
}
.header-style-two .header-lower .outer-box {
  padding-left: 380px;
}
.header-style-two .menu-right-content .support-box .icon-box {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  font-size: 25px;
  color: #fff;
  text-align: center;
  top: 0;
}
.header-style-two .menu-right-content .support-box {
  padding-left: 70px;
  margin: 0px !important;
}
.google-map-section {
  position: relative;
  height: 560px;
}
.google-map-section iframe {
  position: relative;
  width: 100%;
  height: 560px;
}
