:root {
  --moveColor: #662d91;
  --yellowColor: #cb972b;
  --blueColor: #26286f;
}
body {
  font-family: 'Montserrat', sans-serif;
}

/* Let's get this party started */
body::-webkit-scrollbar {
  width: 10px;
}
/* Track */
body::-webkit-scrollbar-track {
  /* -webkit-border-radius: 10px;
  border-radius: 10px; */
}
/* Handle */
body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--moveColor);
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: var(--moveColor);
}

::-webkit-search-results-decoration {
  color: #fff;
  background-color: var(--moveColor);
}
::-moz-selection {
  color: #fff;
  background-color: var(--moveColor);
}
::selection {
  color: #fff;
  background-color: var(--moveColor);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a, a:hover {
  text-decoration: none;
  transition: .4s ease-in-out;
}

.loader {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blueColor);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
  background: var(--blueColor);
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
  background: var(--moveColor);
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
  background: var(--yellowColor);
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
  background: var(--blueColor);
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}



/* START => Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
}

header .head-header {
  border-bottom: 1px solid #fff;
  padding: .5rem 0;
}
header .head-header a {
  font-size: 14px;
}
header .head-header a:hover {
  color: #ccc;
}
header .head-header .left-head a:first-child {
  margin-right: .6rem
}
header .head-header .left-head a i {
  width: 20px;
}
header .head-header a {
  color: #fff;
}

.social-head a {
  color: #ececec;
  margin: auto .5rem;
}
.social-head a i {
  transition: 0.4s;
}
.social-head a:hover {
  color: var(--blueColor);
}
.social-head a:hover i.fa-facebook-f {
  color: #3b5998
}
.social-head a:hover i.fa-twitter {
  color: #55acee
}
.social-head a:hover i.fa-instagram {
  color: #e95950
}
.social-head a:hover i.fa-whatsapp {
  color: #4dc247
}
.social-head a:hover i.fa-linkedin-in {
  color: #007bb5
}
.social-head a:hover i.fa-youtube {
  color: #e95950
}
.social-head a:hover i.fa-telegram-plane {
  color: #0088cc;
}
.social-head a:hover i.fa-pinterest-p {
  color: #cb2027;
}

header .head-header .right-head a.langs {
  margin-left: 1rem;
  border-left: 1px solid #fff;
  padding-left: 1rem; 
}

.dropdown-toggle::after {
  border: 0;
}
.btn-account {
  color: #fff;
  padding: 1rem 0rem;
}
.btn-account:hover {
  color: #fff;
}
.dropdown-account .dropdown-menu {
  inset: 20px 0 auto auto !important;
  border-radius: 0 0 6px 6px;
  min-width: 13rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 0;
  transition: 0.5s;
}
.dropdown-account .dropdown-menu.show {
  inset: 0px 0 auto auto !important;
}
.dropdown-account .dropdown-menu a {
  font-size: 14px;
  display: block;
}
.dropdown-account .dropdown-menu hr {
  margin: 1rem auto;
}
.dropdown-account .dropdown-menu .link-login a {
  text-align: center;
  /* background-color: var(--blueColor); */
  border: 2px solid var(--moveColor);
  color: var(--blueColor);
  border-radius: 5px;
  padding: .5rem;
  display: block;
}
.dropdown-account .dropdown-menu .link-login a:hover {
  background-color: var(--blueColor);
  border: 2px solid var(--moveColor);
  color: #fff;
}
.or-reg {
  position: relative;
}
.or-reg span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #B15B5B;
  z-index: 1;
}
.dropdown-account .dropdown-menu .link-register a {
  color: #B15B5B;
  text-align: center;
  padding: .2rem .5rem;
  border-radius: 5px;
}
.dropdown-account .dropdown-menu .link-register a:hover {
  background-color: rgba(177, 91, 91, 0.1);
  color: #B15B5B;
}
.dropdown-account .dropdown-menu .link-item a {
  color: #444;
  display: block;
  padding: .5rem;
}
.dropdown-account .dropdown-menu .link-item a:hover {
  color: var(--blueColor);
}
.dropdown-account .dropdown-menu .link-langs a {
  text-align: center;
  color: #444;
}
.dropdown-account .dropdown-menu .link-langs a:hover {
  color: var(--blueColor);
  background-color: transparent;
  position: relative;
}
.brand-logo a {
  display: block;
}
.brand-logo img {
  padding: 3px;
  background-color: #fff;
  padding: 5px 8px;
  /* height: 130px; */
  width: 100%;
}
.action_header {
  margin-top: 1.3rem;
  margin-right: 1rem;
}
.menu-tabs > ul > li {
  position: relative;
}
.menu-tabs>ul>li>a {
  padding: 15px 5px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 13.5px;
}
.menu-tabs>ul>li>a:hover,
.menu-tabs>ul>li.active>a {
  color: var(--yellowColor);
}

.menu-tabs > ul > li > a + ul > li > a + ul,
.menu-tabs > ul > li > a + ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: var(--blueColor);
  margin: 0;
  padding: 15px 0;
  /* border-radius: 0 0 5px 5px; */
  -webkit-box-shadow: 0px 4px 7px -3px rgb(0 0 0 / 9%);
  -moz-box-shadow: 0px 4px 7px -3px rgba(0,0,0,.09);
  -ms-box-shadow: 0px 4px 7px -3px rgba(0,0,0,.09);
  -o-box-shadow: 0px 4px 7px -3px rgba(0,0,0,.09);
  box-shadow: 0px 4px 7px -3px rgb(0 0 0 / 9%);

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translateY(10px);
}
.menu-tabs > ul > li > a + ul > li > a + ul {
  left: 100%;
  top: 0;
  border-left: 1px solid var(--yellowColor);
}
.menu-tabs > ul > li:last-child > a + ul {
  right: 0;
  left: auto;
}
.menu-tabs > ul > li:last-child > a + ul > li > a + ul {
  left: auto;
  right: 100%;
  border-left: 0;
  border-right: 1px solid var(--yellowColor);
}
.menu-tabs > ul > li > a + ul > li {
  position: relative;
}
.menu-tabs > ul > li > a + ul > li:active > a + ul,
.menu-tabs > ul > li > a + ul > li:focus > a + ul,
.menu-tabs > ul > li > a + ul > li:hover > a + ul,
.menu-tabs > ul > li:active > ul,
.menu-tabs > ul > li:focus > ul,
.menu-tabs > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.menu-tabs > ul > li > a + ul li a {
  color: #fff;
  display: block;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 20px;
  text-transform: capitalize;
}
.menu-tabs > ul > li > a + ul li a:hover {
  color: var(--yellowColor);
}
.menu-tabs > ul > li > a + ul > li > a.has_sup {
  position: relative;
}
.menu-tabs > ul > li > a + ul > li > a.has_sup::after {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.menu-tabs > ul > li > a + ul > li:hover > a.has_sup::after {
  transform: translateY(-50%) rotate(90deg);
}
.menu-tabs > ul > li > a + ul > li > a.has_sup i.fade_mobe {
  display: none;
}

.btn__mobile {
  display: none;
}

/* cart style */
.btn-cart {
  width: 30px;
  position: relative;
}
.btn-cart svg {
  width: 30px;
  fill: #fff;
}
.btn-cart svg:hover {
  fill: var(--moveColor);
}
.btn-cart .count-cart {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--yellowColor);
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  font-weight: normal;
}
.box-mycart {
  position: fixed;
  right: -320px;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 320px;
  height: 100%;
  z-index: 999;
  transition: .5s linear;
}
.box-mycart.show {
  right: 0;
}
.box-mycart .head-cart {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--blueColor);
  color: #fff;
}
.box-mycart .head-cart {
  cursor: pointer;
}
.items-mycart {
  max-height: 300px;
  overflow-y: scroll;
}
.items-mycart::-webkit-scrollbar {
  width: 4px;
}
.items-mycart::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.items-mycart::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--blueColor);
}
.items-mycart::-webkit-scrollbar-thumb:window-inactive {
  background: var(--blueColor);
}

.items-mycart .item {
  position: relative;
  /* display: flex; */
  padding: .5rem .4rem;
}
.items-mycart .item .img-cart {
  width: 25%;
}
.items-mycart .item .txt {
  padding: 0 5px;
  width: 75%;
}
.items-mycart .item .txt a {
  display: block;
  color: #444;
  white-space: nowrap;
  width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.items-mycart .item .txt a:hover {
  color: var(--yellowColor);
}
.items-mycart .item .txt span.price {
  display: block;
  color: #444;
  font-size: 1rem;
}
.items-mycart .item .delete_item {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  border: 1px solid tomato;
  color: tomato;
  padding: 4px;
  border-radius: 2px;
  opacity: .5;
}
.items-mycart .item .delete_item:hover {
  color: #f00;
  opacity: 1;
  border-color: #f00;
}

.cart-footer .subtotal {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ececec;
}
.cart-footer .subtotal strong {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--blueColor);
}
.cart-footer p {
  display: block;
  margin: .5rem auto;
  text-align: center;
  color: var(--yellowColor);
}
.cart-footer .buttons-cart {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}
.cart-footer .buttons-cart a {
  display: block;
  padding: .5rem;
  margin-bottom: 1rem;
  color: var(--blueColor);
  border-radius: 4px;
}
.cart-footer .buttons-cart a:nth-child(1) {
  background-color: var(--blueColor);
  color: #fff;
}
.cart-footer .buttons-cart a:nth-child(1):hover {
  background-color: var(--yellowColor);
  color: #fff;
}
.cart-footer .buttons-cart a:nth-child(2) {
  background-color: var(--yellowColor);
  color: #fff;
}
.cart-footer .buttons-cart a:nth-child(2):hover {
  background-color: var(--blueColor);
  color: #fff;
}

.langs_down {
  margin-left: 1rem;
  border-left: 1px solid #fff;
  padding-left: 1rem;
}
.langs_down .dropdown-menu {
  inset: 20px 0 auto auto !important;
  border-radius: 6px;
  min-width: 6rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 0;
  transition: 0.5s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.langs_down .dropdown-menu.show {
  inset: 0px 0 auto auto !important;
}
.langs_down .dropdown-menu a {
  font-size: 14px;
  display: block;
  text-align: center;
  /* background-color: var(--mainColor); */
  color: var(--blueColor);
  border-radius: 5px;
  padding: .5rem;
  display: block;
}
.langs_down .dropdown-menu a {
  color: #444;
  display: block;
  padding: .5rem;
}
.langs_down .dropdown-menu a:hover {
  color: var(--yellowColor);
}
/* //END => Header */

/* START => Home Sliders */
.sec-slider {
  position: relative;
}
.home-slider,
.home-slider .owl-stage-outer,
.home-slider .owl-stage,
.home-slider .owl-item,
.home-slider .item {
  height: 100vh;
}
.home-slider .item {
  /* background-position: 100% 100%; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-slider .item .img-slide {
  width: 100%;
  height: 100%;
}
.home-slider .item .img-slide img {
  height: 100%;
  object-fit: cover;
}
.home-slider .item .item-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.home-slider .item .item-txt .h1 {
  display: block;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.home-slider .item .item-txt p {
  margin: 0;
  color: #fff;
  font-size: 1.6rem;
  padding-left: .2rem;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.btn-style1 {
  background-color: var(--yellowColor);
  border: 2px solid var(--yellowColor);
  color: #FFF;
  padding: 15px 30px;
  margin-top: 20px;
  font-weight: 500;
  border-radius: 10px;
  transition: all .5s;
  display: inline-block;
}
.btn-style1:hover {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
  color: #fff;
}
/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1
}
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0
}
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
.animate-300ms {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
.animate-500ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate-200ms {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.animate-400ms {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
.animate-600ms {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate-800ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}
.animate-100ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}
.home-slider.owl-theme .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  height: 100%;
  /* writing-mode: vertical-lr;
  text-orientation: mixed; */
  /* transform: rotate(90deg);*/
  transform-origin: right top 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(-50%);
  text-orientation: sideways;
  /* z-index: 999; */
  margin-top: 0 !important;
}
.home-slider.owl-theme .owl-dots>button {
  margin: 10px 0;
  font-size: 16px;
  cursor: pointer;
  transform: rotate(90deg);
  color: #FFF;
  outline: 0;
  transition: .5s;
}
.home-slider.owl-theme .owl-dots>button.active {
  color: var(--moveColor);
  font-size: 20px;
}
.home-slider.owl-theme .owl-nav {
  position: absolute;
  right: 25px;
  bottom: 20px;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--moveColor);
}
.home-slider.owl-theme .owl-nav>button {
  background-color: var(--yellowColor);
  color: #fff;
  border: 1px solid var(--yellowColor);
  padding: .5rem 1.3rem !important;
}
.home-slider.owl-theme .owl-nav>button:focus,
.home-slider.owl-theme .owl-nav>button:hover {
  outline: 0;
  background-color:var(--blueColor);
  color: #fff;
}
/* //END => Home Sliders */

/* START => About Us */
.txt_about strong {
  font-weight: bold;
  color: var(--blueColor);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.txt_about {
  font-size: 20px;
  font-weight: 500;
  -webkit-line-clamp: 16;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.section-about .btn-style1 {
  border-radius: 0;
  padding: 1.5rem 2rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-top: 3rem;
}
/* START => About Us */

/* */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title strong {
  text-transform: capitalize;
  font-weight: 700;
}
.section-title p {
  margin: 0;
  font-size: 1.2rem;
}

.section-services:nth-child(odd) {
  background-color: #f6f6f6;
}
.item-service {
  border: 1px solid #eee;
  padding: .2rem;
}
.section-services:nth-child(odd) .item-service {
  border: 1px solid #e0e0e0;
}
.item-service .img-service {
  display: block;
  height: 220px;
  overflow: hidden;
}
.item-service .img-service img {
  height: 100%;
}
.item-service .txt {
  padding: 0.5rem;
}
.item-service .txt .title {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  padding: 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-service .txt p {
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-service .link-view a {
  display: block;
  color: #333;
}
.item-service .txt .title:hover,
.item-service .link-view a:hover {
  color: var(--yellowColor);
}
.item-service .link-view a i {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.item-service .link-view a:hover i {
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -o-transform: translateX(30px);
}

.slides-services .owl-nav {
  margin-top: 10px;
}
.slides-services .owl-nav button.owl-prev,
.slides-services .owl-nav button.owl-next {
  width: 60px;
  height: 60px;
  line-height: 30px;
  border: 2px solid var(--yellowColor);
  background: transparent;
  padding: 0;
  outline: none;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.slides-services .owl-nav button.owl-next i,
.slides-services .owl-nav button.owl-prev i {
  font-size: 1rem;
  color: var(--yellowColor);
}
.slides-services .owl-nav [class*=owl-]:hover {
  background: var(--blueColor);
  border: 2px solid var(--blueColor);
}
/* */

/* START => Section Counter */
.section-counter .sec-title {}
.section-counter .sec-title strong {
  color: #fff;
}
.section-counter {
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.section-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  background-color: rgba(102, 45, 145, 0.8);
  z-index: -1;
}
.item-counter {
  padding: 1rem;
  text-align: center;
}
.item-counter .icon-img {
  height: 60px;
}
.item-counter .icon-img img {
  max-height: 100%;
}
.item-counter .numscroller {
  margin: 1rem auto;
  color: #fff;
  font-weight: 700;
}
.item-counter .title {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}
/* START => Section Counter */

/* START => testimonial */
.sec-tistimonilas .sec-title {
  color: #fff;
}
.bg__sections {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.bg__sections.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(38, 40, 111, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sec-tistimonilas .media-body p {
  color: #fff;
  line-height: 1.8;
  letter-spacing: 1.3px;
  word-wrap: break-word;
  font-size: 18px;
  font-weight: 300;
}
.name__client {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.swiper-button-prev {
  left: auto;
  right: 70px;
}
.swiper-button-next {
  right: 0px;
}
.swiper-button-next,
.swiper-button-prev {
  top: 80%;
  font-weight: bold;
  width: 60px;
  height: 60px;
  line-height: 30px;
  color: var(--yellowColor);
  border: 2px solid var(--yellowColor);
  background: transparent;
  padding: 0;
  outline: none;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.4rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--yellowColor);
  border: 2px solid var(--yellowColor);
  color: #fff;
}
/* //END => testimonial */

/* START => Footer */
footer {
  background-color: #fff;
  color: #444;
  position: relative;
  padding-bottom: 7rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
footer .brand-logo img {
  max-height: 240px;
}
footer a {
  color: #444;
  display: block;
  padding: .5rem 0;
}
.footer-copyright {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 80%;
  margin: auto;
  transform: translateX(-50%);
  background-color: var(--blueColor);
  border-radius: 30px;
  color: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
footer .footer-copyright a {
  color: var(--yellowColor);
  font-weight: bold;
}
footer .footer-copyright a:hover {
  color: var(--moveColor);
}
.social-links li,
.social-links a {
  display: inline-block;
  margin: auto 3px;
}
.social-links i {
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
}
.social-links a:hover i {
  transform: scale(1.2) rotate(360deg);
}
.social-links .fa-facebook-f { background-color: #3b5998 }
.social-links .fa-twitter { background-color: #55acee }
.social-links .fa-google-plus-g { background-color: #dd4b39 }
.social-links .fa-instagram { background-color: #e95950 }
.social-links .fa-linkedin-in { background-color: #007bb5 }
.social-links .fa-youtube { background-color: #e95950 }
.social-links .fa-snapchat { background-color: #ffcd36; }
/* //END => Footer */

/***********************************************************************************************/
/***********************************************************************************************/
/***********************************************************************************************/
/***********************************************************************************************/
/***********************************************************************************************/
/***********************************************************************************************/

/* START => Breadcrumb */
.breadcrumb-pages {
  padding: 13rem 0 2rem 0;
  background-color: var(--blueColor);
  text-align: center;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  /* background: rgb(230,126,34);
  background: -moz-linear-gradient(87deg, rgba(230,126,34,1) 10%, rgba(44,62,80,1) 100%);
  background: -webkit-linear-gradient(87deg, rgba(230,126,34,1) 10%, rgba(44,62,80,1) 100%);
  background: linear-gradient(87deg, rgba(230,126,34,1) 10%, rgba(44,62,80,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e67e22",endColorstr="#2c3e50",GradientType=1); */
  position: relative;
  z-index: 1;
}
.breadcrumb-pages::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(38, 40, 111, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.breadcrumb-pages strong {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.breadcrumb-pages ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb-pages ul li {
  color: #ccc;
  margin: auto .2rem;
}
.breadcrumb-pages ul li span {}
.breadcrumb-pages ul li a {
  color: #fff;
}
.breadcrumb-pages ul li a:hover {
  color: var(--blueColor);
}
/* START => Breadcrumb */

/*  */
.lead__txt {
  font-size: 16px;
  font-weight: 300;
  color: #666;
}
.txt ul li {
  margin-bottom: .5rem;
}
.block-value .sec-title strong {
  font-weight: 700;
  color: var(--blueColor);
}
.block-value .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.block-value .item p {
  margin: 0;
  color: var(--blueColor);
  font-weight: 300;
}

.price {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.min-add-button label {
  display: inline-block;
  font-size: 18px;
  color: #666;
  font-weight: bold;
}
.min-add-button a.input-group-addon {
  background-color: var(--blueColor);
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border-radius: 50%;
}
.min-add-button a.input-group-addon:focus,
.min-add-button a.input-group-addon:hover {
  background-color: var(--yellowColor);
}
.min-add-button .adults {
  color: #555;
  border: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  outline: none;
  width: 70px;
  height: 50px;
  background-color: transparent;
}

.btn-actions a.btn-add-cart {
  display: inline-block;
  padding: 1rem;
  color: #444;
  border-radius: 10px;
  border: 1px solid var(--blueColor);
  margin: auto 1rem;
}
.btn-actions a.btn-add-cart:hover {
  background-color: var(--blueColor);
  color: #fff;
}
/*  */

/* START => About Us */
.section-aboutus {
  padding-top: 12rem;
}
.txt-about {
  padding-top: 1rem;
}
.txt-about strong {}
.txt-about p {
  padding-left: .5rem;
  padding-right: 2rem;
}
.btn-more {
  background-color: transparent;
  border: 1px solid var(--blueColor);
  color: var(--blueColor);
  padding: 15px 2rem;
  margin-top: 1rem;
  border-radius: 5px;
  transition: all .5s;
  display: inline-block;
}
.btn-more:hover {
  color: #FFF;
  background-color: var(--blueColor);
}
.img-about {
  position: relative;
}
.img-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.img-about:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.img-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.5s;
}
.img-about:hover::after {
  top: 10px;
  left: -10px;
  background-color: var(--blueColor);
}
.btn-play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  animation: shadow-pulse 1s infinite;
  cursor: pointer;
  z-index: 1;
}
.btn-play-vid:hover {
  color: #fff;
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0)
  }
}
/* START => About Us */

/* START => Page Register & Login */
.form-register {
  padding: 2rem 3rem;
  width: 800px;
  margin: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
.form-register .title {
  text-align: center;
}
.form-register .form-title strong {
  color: #444;
  font-weight: 600;
}
.form-register .form-control {
  padding: .8rem 1rem;
}
.form-register .btn-more {
  padding: .8rem 3.5rem;
}
.form-register .btn-more {
  background-color: transparent;
  border: 1px solid var(--blueColor);
  color: var(--blueColor);
  padding: 15px 2rem;
  margin-top: 1rem;
  border-radius: 5px;
  transition: all .5s;
  display: inline-block;
}
.form-register .btn-more:hover {
  color: #FFF;
  background-color: var(--blueColor);
}
.link-login-reg a {
  color: #444;
  display: block;
}
.link-login-reg a.link-forget {
  color: var(--blueColor);
  margin-bottom: 1rem;
}
.link-login-reg a:hover {
  color: var(--yellowColor);
}
.link-login-reg a.btn-backhome {
  background-color: transparent;
  border: 1px solid var(--blueColor);
  color: var(--blueColor);
  padding: 1rem;
  display: inline-block;
  border-radius: 5px;
}
.link-login-reg a.btn-backhome:hover {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
  color: #fff;
}
/* //END => Page Register & Login */

/* START => Page Cart */
.page-cart table thead th {
  background-color: var(--moveColor);
  color: #fff;
  padding: 1.5rem 1rem;
}
.page-cart table td {
  color: #444;
  padding: 1.5rem 1rem;
}
.page-cart table td a {
  color: var(--moveColor);
}
.page-cart table td a:hover {
  color: #f00;
}
.page-cart table tfoot a {
  font-weight: bold;
  display: inline-block;
  background-color: var(--blueColor);
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.page-cart table tfoot a.btn-continue {
  background-color: var(--yellowColor);
}
.page-cart table tfoot a:hover {
  background-color: var(--yellowColor);
  color: #fff;
}
.page-cart table tfoot a:hover.btn-continue {
  background-color: var(--blueColor);
}
/* //END => Page Cart */

/* START => Page Account */
.page-account {}
.sidebar-links {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 10px;
}
.sidebar-links ul {}
.sidebar-links ul li {}
.sidebar-links ul li a {
  padding: 1rem 1.5rem;
  display: block;
  background-color: #E1EDFF;
  color: #444444;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.sidebar-links ul li a i {
  display: inline-block;
  font-size: 1.8rem;
  max-width: 13%;
  flex: 0 0 13%;
}
.sidebar-links ul li a:hover,
.sidebar-links ul li a.active {
  background-color: var(--blueColor);
  color: #fff;
}

.box-account {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem 2rem;
  height: 100%;
}
.box-account .title {
  color: var(--blueColor);
}
.box-account .form-control {
  padding: .8rem 1rem;
}

.table-custom {
  display: table;
  text-align: left;
  width: 100%;
  margin: auto;
  border-collapse: separate;
}

.table-custom .table_row {
  display: table-row;
  transition: .5s;
}
.table-custom .table_row:hover {
  box-shadow: 0 3px 10px rgba(88, 155, 255, 0.3);
}
.table-custom .table_row:hover > .table_small > .table_cell {
  /* border: 1px solid #589CFF; */
}

.table-custom .theader {
  display: table-row;
  border-radius: 30px;
}

.table-custom .table_header {
  display: table-cell;
  /* border-bottom: #ccc 1px solid; */
  /* border-top: #ccc 1px solid; */
  background: var(--blueColor);
  color: #e5e5e5;
  padding: 1rem .5rem;
  font-weight: 500;
}

.table-custom .table_header:first-child {
  /* border-left: #ccc 1px solid; */
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.table-custom .table_header:last-child {
  /* border-right: #ccc 1px solid; */
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.table-custom .table_small {
  display: table-cell;
  padding: 1rem .5rem;
}

.table-custom .table_row > .table_small > .table_cell {
  padding-top: 3px;
  padding-bottom: 3px;
  color: #5b5b5b;
  font-size: 14px;
  /* border-bottom: #ccc 1px solid; */
}
.c_pending {
  color: #589CFF !important;
}
.c_success {
  color: #00B406 !important;
}
.table-custom .table_row > .table_small > .table_cell a {
  color: #444;
}
.table-custom .table_row:hover > .table_small > .table_cell a {
  color: var(--yellowColor);
}

.btns_actions a {
  background-color: transparent;
  border: 1px solid #C1C2C4;
  color: #666 !important;
  font-size: 14px;
  padding: .3rem 1rem;
  border-radius: 2px;
  display: inline-block;
}
.btns_actions a:hover {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
  color: #fff !important;
}

@media screen and (max-width: 900px) {
  .table-custom .table {
    width: 90%
  }
}

@media screen and (max-width: 650px) {
  .table-custom .table {
    display: block;
  }
  .table-custom .theader {
    display: none;
  }
  .table-custom .table_cell {
    display: table-cell;
    width: 50%;
  }
  .table-custom .table_row {
    display: table;
    width: 100%;
    border-collapse: separate;
    padding: 1rem;
    margin: 5% auto 0;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .table-custom .table_small {
    display: table-row;
  }
  .table-custom .table_row > .table_small > .table_cell {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.modal-view-order .modal-body {
  padding: 2rem 1rem;
}
.modal-view-order .modal-header {
  border-bottom: 0;
  padding: 0;
}
.modal-view-order .modal-header .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
.modal-view-order .title-modal {
  color: var(--blueColor);
  font-weight: 600;
}
.progress-order {
  position: relative;
  display: flex;
  flex-direction: column;
}
.progress-order > div {
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.progress-order > div::after {
  content: "";
  position: absolute;
  top: 75%;
  left: 37px;
  background-color: #666;
  height: 50%;
  width: 2px;
  z-index: -1;
  /* transform: translateX(-50%); */
}
.progress-order > div:last-child::after {
  content: unset;
}
.progress-order > div.active::after {
  background-color: #00B406;
}
.progress-order > div i {
  font-size: 2.3rem;
  max-width: 18%;
  flex: 0 0 18%;
  text-align: center;
  background-color: #fff;
}
.progress-order > div strong {
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
}
.progress-order > div.active i,
.progress-order > div.active strong {
  color: #00B406;
}
.progress-order > div.inactive i,
.progress-order > div.inactive strong {
  color: red;
}


.box-account .txt {
  padding: 1rem;
}
.box-account .txt p {
  font-weight: 500;
  color: var(--blueColor);
  margin-bottom: 1rem;
}

.box-account textarea {
  height: 150px;
  resize: none;
}

.div-toggle {
  display: none;
}
/* //END => Page Account */

/* START => Page Contact Us */
.map-contact {
  line-height: 0;
}
.map-contact iframe {
  width: 100% !important;
  height: 400px !important;
}

.contact-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.contact-section .row > div {
  position: relative;
}
.contact-info {
  background-color: var(--blueColor);
  border-radius: 30px;
  padding: 3rem 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.contact-info .title {
  color: #fff;
}
.contact-info ul {
  margin: 0;
  padding: 0;
}
.contact-info ul li  {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  color: #fff;
}
.contact-info ul li i {
  width: 30px;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
}

.form-contact {
  background-color: #fff;
  border-radius: 30px;
  padding: 1rem 5rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.form-contact .title strong {
  color: #444;
}
.form-contact .title p {
  color: var(--yellowColor);
}
.form-contact form .form-control {
  padding: 1rem;
}
.form-contact form .form-control::placeholder {
  color: #bbb;
}
.form-contact form textarea {
  height: 150px;
  resize: none;
}
/* //END => Page Contact Us */

/* START => Page Checkout */
.box-cart strong {
  background-color: var(--blueColor);
  color: #fff;
  margin: 0;
  padding: 1rem;
  border-radius: 30px;
}
.box-cart .item {
  position: relative;
  padding: .5rem .5rem;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.box-cart .item:last-child {
  border-bottom: 0;
}
.box-cart .item .img {
  width: 60px;
  height: 60px;
  /* border-right: 1px solid #ddd; */
}
.box-cart .item .img img {
  object-fit: cover;
  height: 100%;
}
.box-cart .item .txt {
  padding-left: .5rem;
}
.box-cart .item .txt a {
  padding: 0;
  color: var(--blueColor);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 148px;
}
.box-cart .item .txt p {
  margin: 0;
}
.box-cart .item .txt p.qty {
  font-size: 14px;
}
.box-cart .item .txt p.price {
  font-size: 15px;
  color: var(--blueColor);
  font-weight: 500;
}
.box-cart .scroll-y {
  max-height: 240px;
}
.box-cart .total {
  padding: 1rem;
  background-color: var(--blueColor);
  border-radius: 30px;
}
.box-cart .total strong {
  padding: 0;
  font-size: 1.1rem;
  color: #fff;
  background-color: transparent;
}

.scroll-y {
  overflow-y: scroll;
  height: 200px;
}
.scroll-y::-webkit-scrollbar {
  width: 10px;
}
.scroll-y::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--moveColor);
}
.scroll-y::-webkit-scrollbar-thumb:window-inactive {
  background: var(--moveColor);
}

.payment-checkout {
  border: 1px solid #eee;
  padding: 1rem 3rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  height: 100%;
}
.payment-checkout img {
  display: block;
  margin: auto;
  height: 25px;
}
.payment-checkout .form-control {
  height: auto;
  padding: .7rem;
}
.payment-checkout .selectric {
  background: transparent;
  border: 0;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}
.payment-checkout .selectric .button {
  background-color: transparent;
}
.btn-checkout {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--yellowColor);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  transition: 0.2s;
  margin: auto;
  display: inline-block;
  padding: 1rem;
  border-radius: 30px;
  cursor: pointer;
  outline: unset !important;
}
.btn-checkout:hover {
  background-color: var(--blueColor);
  color: #fff;
}
.address-details {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 2rem;
}
.address-details .title img {
  max-height: 30px;
}
.address-details .title strong {
  color: #333;
  margin: auto .5rem;
}
.address-details a {
  color: #444;
  padding: .3rem .5rem;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
}
.address-details a:hover {
  background-color: var(--blueColor);
  color: #444;
}
.address-details p {
  color: #333;
  margin-bottom: 0;
  line-height: 1.8;
}
.payment-checkout form label {
  margin-bottom: .5rem;
  font-weight: bold;
  color: var(--blueColor);
}
/* //END => Page Checkout */