:root {
  --primary: #F4A0C5;
  --secondary: #024C99;
  --filterPrimary: invert(99%) sepia(96%) saturate(5363%) hue-rotate(282deg) brightness(94%) contrast(105%);
  --filterSecondary: invert(13%) sepia(86%) saturate(3521%) hue-rotate(198deg) brightness(101%) contrast(103%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #0F2C52;
}

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

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.8rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
  border-radius: 15px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form textarea {
  resize: none;
}

form input,
form select {
  height: 60px !important;
}

form .form-check-input {
  height: 1em !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form iframe {
  border-radius: 15px;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.slide_rtl.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination,
.products-sec .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.products-sec .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.products-sec .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.products-sec .swiper-button-next,
.products-sec .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #eee;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.products-sec .swiper-button-next::before,
.products-sec .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.products-sec .swiper-button-next:hover,
.products-sec .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before,
.products-sec .swiper-button-next:hover::before,
.products-sec .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.products-sec .swiper-button-next,
.products-sec .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before,
.products-sec .swiper-button-next::before,
.products-sec .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.products-sec .swiper-button-prev,
.products-sec .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before,
.products-sec .swiper-button-prev::before,
.products-sec .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .8rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 25px;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.white_butn {
  color: var(--secondary);
  background-color: #fff;
}

.butn.dark_butn {
  background-color: #0F2C52;
  color: #fff;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.gray_butn {
  background-color: #f9f9f9;
  color: var(--secondary);
}

.butn:hover {
  background-color: #66CDF6;
  border: 1px solid #66CDF6;
  color: #fff !important;
}

.butn:hover i {
  animation: floatingX .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

button {
  background-color: transparent;
}

.sec_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}

.sec_title::after {
  content: '';
  width: 33px;
  height: 8px;
  background: url(../images/icons/sec_title.svg) no-repeat center;
  background-size: contain;
  display: block;
}

.badge {
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
}

.badge.white_badge {
  color: var(--primary);
  background-color: #fff;
}

.badge.secondaey_badge {
  color: #fff;
  background-color: var(--secondary);
}

.badge.gray_bagde {
  background-color: #eee;
  color: var(--primary);
}

.badge.offer_badge {
  background-color: #CBFFD8;
  color: #333;
}

.badge.primary_badge {
  background-color: var(--primary);
  color: #fff;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--secondary);
  margin: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 45px;
  height: 40px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

.modal-content {
  padding: 20px;
  border-radius: 20px;
}

.modal-content .btn-close {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
  opacity: 1;
}

.logoutModal .img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 30px auto;
  display: block;
}

.locModal .btn-close {
  position: unset;
}

.rateModal .img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.rateModal .stars-content .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 2em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 .2em;
  text-align: center;
  width: 5em;
  margin: auto;
}

.rateModal .stars-content .star-rating i {
  margin: 0 5px;
}

.rateModal .stars-content .star-rating input {
  display: none;
}

.rateModal .stars-content .star-rating label {
  color: #FFEEC9;
  cursor: pointer;
}

.rateModal .stars-content .star-rating :checked ~ label {
  color: #FFD06A;
}

.rateModal .stars-content .star-rating label:hover,
.rateModal .stars-content .star-rating label:hover ~ label {
  color: #FFB820;
}

.rateModal .butn {
  min-width: 170px;
  font-size: 16px;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar.home_nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  background-color: transparent !important;
}

.navs-container .navbar .logo {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  color: #0F2C52;
  margin: 0 7px;
}

.navs-container .navbar .nav-link.active {
  color: var(--primary) !important;
  font-weight: bold;
}

.navs-container .navbar .lang_butn {
  font-weight: bold;
  color: #777;
}

.navs-container .navbar .lang_butn .flag {
  width: 30px;
  height: 20px;
  border-radius: 5px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.navs-container .navbar .sm_butn {
  width: 45px;
  height: 45px;
  position: relative;
}

.navs-container .navbar .sm_butn .sm_icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .sm_butn .num {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  color: #fff;
  position: absolute;
  top: -6px;
  right: -2px;
}

.navs-container .navbar .lang_dropdown .dropdown-menu {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  -webkit-box-shadow: 3px 6px 10px #0002;
          box-shadow: 3px 6px 10px #0002;
}

.navs-container .navbar .lang_dropdown .dropdown-menu a {
  font-size: 14px;
  padding: 0.3rem 0;
  display: block;
  font-weight: bold;
  color: #888;
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.tab-bar-mob {
  background-image: -webkit-gradient(linear, left top, right top, from(#040710), to(#050916));
  background-image: linear-gradient(to right, #040710, #050916);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1rem;
  z-index: 9;
  -webkit-box-shadow: -3px -6px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: -3px -6px 15px 0 rgba(0, 0, 0, 0.2);
}

.tab-bar-mob .links .link {
  font-size: 13px;
  min-width: 85px;
  text-align: center;
  color: #ddd;
}

.tab-bar-mob .links .link .icon {
  font-size: 18px;
  display: block;
  color: #fff;
  margin: 0 auto 5px auto;
  opacity: .8;
}

.tab-bar-mob .links .link.active {
  font-weight: bold;
  color: var(--primary);
}

.tab-bar-mob .links .link.active .icon {
  color: var(--primary);
  opacity: 1;
}

.footer .newsletter_outer {
  padding: 100px 0 0 0;
  margin-bottom: -100px;
}

.footer .newsletter_outer .inner {
  background-color: #0F2C52;
  border-radius: 0px;
  padding: 70px 2vw;
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 50px rgba(184, 198, 217, 0.5);
          box-shadow: 10px 10px 50px rgba(184, 198, 217, 0.5);
}

.footer .newsletter_outer .inner .form-group .form-control {
  background-color: #163967;
  border: 1px solid #163967;
  color: #eee;
  border-radius: 25px;
}

.footer .newsletter_outer .inner .form-group .butn {
  position: absolute;
  top: 5px;
  left: 5px;
}

.footer .footer_outer {
  padding: 170px 0 30px 0;
  background-color: #F9F9F9;
}

.footer .footer_outer .content {
  margin-bottom: 30px;
}

.footer .footer_outer .content .logo {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -35px;
  display: block;
  margin-bottom: 20px;
}

.footer .footer_outer .content .p {
  font-size: 12px;
  line-height: 1.7;
}

.footer .footer_outer .content .links .item {
  display: block;
  color: #555;
  margin-bottom: 18px;
}

.footer .footer_outer .content .social_links .sm_butn i {
  margin: 0;
}

.footer .foot .foot_links a {
  color: #888;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.footer .foot .foot_links a,
.footer .foot .copyright_p {
  font-size: 14px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
  padding: 160px 0 30px 0;
}

.header .text-box .title {
  font-size: calc(1vw + 35px);
}

.header .sec-img {
  height: 470px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
}

.products-sec .prod_card {
  background-color: #F8F8F8;
  padding: 15px;
  -webkit-box-shadow: -3px 3px 6px 0 #0002;
          box-shadow: -3px 3px 6px 0 #0002;
  border-radius: 20px;
  margin-bottom: 35px;
  margin-top: 10px;
  height: calc(100% - 45px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products-sec .prod_card .img-box {
  position: relative;
  height: 330px;
}

.products-sec .prod_card .img-box .sec-img {
  border-radius: 20px;
}

.products-sec .prod_card .img-box .badge {
  position: absolute;
  top: 15px;
  right: 15px;
}

.products-sec .prod_card .img-box .badge.rating_badge {
  right: unset;
  left: 15px;
}

.products-sec .prod_card .img-box .hvr_butns {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.products-sec .prod_card .img-box .hvr_butns .sm_butn {
  -webkit-transform: scale(0px);
          transform: scale(0px);
  opacity: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  margin: 5px 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products-sec .prod_card .img-box .hvr_butns .sm_butn i {
  position: relative;
  top: 3px;
}

.products-sec .prod_card .img-box .hvr_butns .sm_butn.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.products-sec .prod_card .card-body {
  text-align: center;
}

.products-sec .prod_card .card-body .title {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products-sec .prod_card .card-body .cart_butn {
  margin: 0 auto -50px auto;
}

.products-sec .prod_card:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.products-sec .prod_card:hover .title {
  color: var(--primary);
}

.products-sec .prod_card:hover .img-box .sm_butn {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.banner-sec {
  padding: 150px 0 200px 0;
}

.banner-sec .main_img {
  position: absolute;
  left: -14%;
  bottom: -27px;
  width: 57%;
}

.banner-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#E5F6FD));
  background-image: linear-gradient(to bottom, #fff, #E5F6FD);
  height: 85%;
}

.gallery-sec {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#05478D), to(#0F2C52));
  background-image: linear-gradient(to bottom, #05478D, #0F2C52);
}

.gallery-sec .gallery_box {
  height: 265px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-sec .gallery_box .sec-img {
  border-radius: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery-sec .gallery_box:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about-sec {
  padding: 50px 0;
}

.about-sec .text-box .p {
  line-height: 2.2;
}

.about-sec .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #F0FBFE;
  height: 80%;
}

.contact-sec .text-box {
  background-color: #F8F8F8;
  padding: 50px 2vw;
  -webkit-padding-end: 2.5vw;
          padding-inline-end: 2.5vw;
  border-radius: 0 20px 20px 0;
}

.contact-sec .form_box {
  background-color: #0F2C52;
  border-radius: 20px;
  padding: 3.5vw;
}

.contact-sec .sec-img {
  height: 530px;
  border-radius: 20px;
}

.contact-sec .map_box iframe {
  border-radius: 0 20px 20px 0;
}

.contact-sec.prop-sec .text-box {
  -webkit-padding-end: 2vw;
          padding-inline-end: 2vw;
  -webkit-padding-start: 2.5vw;
          padding-inline-start: 2.5vw;
  border-radius: 20px 0 0 20px;
}

.feedback-sec .feedback_card {
  position: relative;
  padding: 35px 20px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: -3px 3px 6px 0 #0002;
          box-shadow: -3px 3px 6px 0 #0002;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.feedback-sec .feedback_card .head {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.feedback-sec .feedback_card .head .sm_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
}

.feedback-sec .feedback_card .head .rating_ratio {
  font-size: 14px;
  min-width: 40px;
}

.feedback-sec .feedback_card .head .rating_ratio i {
  color: #F68209;
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
}

.feedback-sec .feedback_card .p {
  font-size: 14px;
}

.downloading-sec .down_butn {
  width: 210px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  display: inline-block;
  border-radius: 15px;
}

.downloading-sec .down_butn .down_img {
  width: 100%;
}

.downloading-sec .down_butn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 3px 6px 15px 0 #0002;
          box-shadow: 3px 6px 15px 0 #0002;
}

.downloading-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  width: 90%;
  background-color: #EFFAFE;
  border-radius: 90px 0 0 90px;
  height: 355px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**********************************************
    Start Edit pg-header 
**********************************************/
.pg-header {
  background-color: var(--secondary);
}

.pg-header .bread .item {
  margin: 0 5px;
  color: #eee;
}

.pg-header .bread .item.active {
  color: var(--primary);
}

.pg-header .bread a:hover {
  color: var(--secondary) !important;
}

.pg-header .bread .icon {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pg-header .pg_title {
  margin-bottom: 1rem !important;
  color: #fff;
}

.pg-header .pattern {
  position: absolute;
  left: 0;
  top: 10px;
  width: 20%;
}

/**********************************************
    Start Edit register Page 
**********************************************/
.register-pg .register-box {
  background-color: #fff;
  border: 10px solid #f5f5f5;
  border-radius: 20px;
}

.register-pg .register-box .head {
  border-radius: 13px 13px 0 0;
  padding: 35px 15px;
  background-color: #0F2C52;
}

.register-pg .register-box .head .logo {
  width: 150px;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.register-pg .register-box .card-body {
  padding: 3rem 1.5rem;
  border-radius: 0 0 20px 20px;
}

.register-pg .form-control {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}

.register-pg .forget_pass {
  font-size: 14px;
  color: #777;
}

.register-pg .submit_butn {
  border-radius: 15px;
}

.show_hide_password {
  position: relative;
}

.show_hide_password .show_pass {
  position: absolute;
  top: 24px;
  left: 20px;
  cursor: pointer;
  color: #888;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.profile-avatar input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  z-index: 3;
}

.profile-avatar button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #ddd;
          box-shadow: 0px 0px 10px #ddd;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #eee;
  position: absolute;
  right: 2px;
  bottom: 0px;
  cursor: pointer;
}

.profile-avatar button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.products-pg .filter_wrapper {
  border-radius: 20px;
  background-color: #F8F8F8;
  padding: 30px 25px;
}

.products-pg .filter_wrapper .label {
  margin-bottom: .5rem;
  display: block;
  font-size: 12px;
}

.products-pg .filter_wrapper .form-control {
  border: 1px solid #fff;
}

.products-pg .filter_wrapper .submit_butn {
  border-radius: 15px;
  height: 60px;
  margin-top: 27px;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.content-pg .inner {
  border: 10px solid #f5f5f5;
  border-radius: 20px;
  padding: 3vw;
  overflow: hidden;
}

/**********************************************
    Start Edit Contact Page 
**********************************************/
.contact-pg .contact_card {
  position: relative;
  padding: 25px;
  border-radius: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #F8F9FA;
  margin: 10px 0;
}

.contact-pg .contact_card .icon_outer {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  border-radius: 20px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-pg .contact_card .icon_outer .icon {
  height: 35px;
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.contact-pg .contact_card .content {
  width: calc(100% - 120px);
}

.contact-pg .contact_card .content .title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-pg .contact_card .content .p {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  color: #7F7E87;
  font-size: 18px;
}

.contact-pg .contact_card:hover {
  background-color: var(--primary);
}

.contact-pg .contact_card:hover .icon_outer {
  background-color: #fff;
}

.contact-pg .contact_card:hover .icon_outer .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.contact-pg .contact_card:hover .title,
.contact-pg .contact_card:hover .p {
  color: #fff;
}

.contact-pg .main_inner {
  padding: 3vw 3vw;
  border-radius: 20px;
  border: 10px solid #f8f8f8;
  overflow: hidden;
}

/**********************************************
    Start Edit news Page 
**********************************************/
.news-pg .news_card .card-body {
  text-align: start;
}

.news-pg .news_card .card-body .date {
  color: #666;
}

.news-pg .news_card .card-body .p {
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}

/**********************************************
    Start Edit news det Page 
**********************************************/
.news-det .box {
  padding: 20px;
  border-radius: 20px;
  border: 10px solid #f8f8f8;
}

.news-det .box .img-box {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.news-det .related_news {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 30px 20px;
}

.news-det .related_news .news_item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.news-det .related_news .news_item .sm_img {
  width: 120px;
  height: 100px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.news-det .related_news .news_item .content {
  width: calc(100% - 135px);
}

.news-det .related_news .news_item .content .title {
  font-size: 1.1rem;
}

.news-det .related_news .news_item .content .p {
  font-size: 12px;
  line-height: 1.7;
  height: 44px;
  overflow: hidden;
  color: #777;
}

.news-det .related_news .news_item .content .more_butn {
  font-size: 14px;
  font-weight: bold;
  color: var(--secondary);
}

.news-det .related_news .news_item:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery-pg .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-pg .nav .nav-link {
  background-color: #f8f8f8;
  margin: 0 10px;
  min-width: 150px;
  padding: 1.2rem 1rem;
  border-radius: 10px;
  color: #777;
  text-transform: capitalize;
}

.gallery-pg .nav .nav-link.active {
  color: #fff !important;
  background-color: var(--secondary) !important;
}

.gallery-pg .nav .nav-link.active i {
  color: var(--primary);
}

.gallery-pg .tab_wrapper {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 10px solid #f8f8f8;
}

.gallery-pg .gallery_card {
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
}

.gallery-pg .gallery_card .sec-img {
  border-radius: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery-pg .gallery_card .button {
  background-color: var(--primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
          transform: translate(-50%, -50%) scale(0.85);
  z-index: 6;
}

.gallery-pg .gallery_card .button.is-play .button-outer-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.gallery-pg .gallery_card .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-pg .gallery_card .button.is-play .triangle {
  -webkit-animation: fadeIn 7s ease;
          animation: fadeIn 7s ease;
}

.gallery-pg .gallery_card .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
          animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.gallery-pg .gallery_card .button .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
          animation: smallScale 3s infinite;
}

.gallery-pg .gallery_card .button .has-delay-short {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

.gallery-pg .gallery_card::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  pointer-events: none;
}

.gallery-pg .gallery_card.lg_card {
  height: 450px;
}

.gallery-pg .gallery_card.lg_card .button {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

/**********************************************
    Start Edit notifications Page 
**********************************************/
.notifications-pg .noti_card {
  border-radius: 20px;
  padding: 35px 20px;
  margin-bottom: 40px;
}

.notifications-pg .noti_card .noti_icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.notifications-pg .noti_card .content {
  width: calc(100% - 65px);
}

.notifications-pg .noti_card.done {
  -webkit-box-shadow: 0 0 15px 0 #9df5b9;
          box-shadow: 0 0 15px 0 #9df5b9;
}

.notifications-pg .noti_card.error {
  -webkit-box-shadow: 0 0 15px 0 #f5baba;
          box-shadow: 0 0 15px 0 #f5baba;
}

.notifications-pg .noti_card.premium {
  -webkit-box-shadow: 0 0 15px 0 #f5f29d;
          box-shadow: 0 0 15px 0 #f5f29d;
}

.notifications-pg .noti_card.exclamation {
  -webkit-box-shadow: 0 0 15px 0 #9dd8f5;
          box-shadow: 0 0 15px 0 #9dd8f5;
}

.notifications-pg .noti_card:last-child {
  margin-bottom: 0;
}

/**********************************************
    Start Edit profile Page 
**********************************************/
.profile-pg {
  background-color: #f6f6f6;
}

.profile-pg .prof-side .wrapper {
  padding: 3vw 2vw;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 25px;
}

.profile-pg .prof-side .wrapper.prof-data .img-box {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
  margin: auto;
  overflow: hidden;
}

.profile-pg .prof-side .wrapper.links-data .nav-link {
  color: #333;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 5px;
}

.profile-pg .prof-side .wrapper.links-data .nav-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

.profile-pg .tab_wrapper {
  padding: 3vw;
  border-radius: 20px;
  background-color: #fff;
}

.profile-pg .tab_wrapper .primary_butn {
  min-width: 180px;
  font-weight: bold;
}

.profile-pg .tab_wrapper.profile_tab .editData_box {
  display: none;
}

.profile-pg .tab_wrapper.orders_tab {
  padding: 45px 20px;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive .table th,
.profile-pg .tab_wrapper.orders_tab .table-responsive .table td {
  padding: 1rem 0.5rem;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive td {
  vertical-align: middle;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive::-webkit-scrollbar {
  height: 5px;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive .prod_img {
  min-width: 50px;
  height: 40px;
  border-radius: 10px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.profile-pg .tab_wrapper.orders_tab .badge {
  width: 100px;
  padding: .6rem;
  text-align: center;
}

.profile-pg .tab_wrapper.orders_tab .more-butn {
  color: #888;
  display: block;
  text-align: center;
}

.profile-pg .tab_wrapper.loc_tab .loc_card {
  background-color: #f9f9f9;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading {
  padding: 25px;
  border-bottom: 1px solid #ddd;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .icon-outer {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 25px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .title {
  font-size: 1rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn {
  background-color: transparent;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 13px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn.edit {
  color: #3a9b27;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn.delete {
  color: #f14343;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body {
  padding: 1.25rem 2rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .icon-outer {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  background-color: #f8f1d7;
  border-radius: 10px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .icon-outer .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .content {
  width: calc(100% - 80px);
}

.data-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.data-group .label {
  font-size: 12px;
  font-weight: bold;
}

.data-group .data {
  padding: 1rem 1.5rem;
  border-radius: 15px;
  background-color: #f8f8f8;
  margin-top: 10px;
}

.bg-transparent {
  background-color: transparent !important;
}

/**********************************************
    Start Edit product-det Page 
**********************************************/
.product-det .swiper_box .lg-slide-swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  overflow-x: hidden;
}

.product-det .swiper_box .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-radius: 25px;
}

.product-det .swiper_box .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-det .swiper_box .sm-slide-swiper {
  overflow: hidden;
  height: 100px;
  padding-bottom: 4px;
}

.product-det .swiper_box .sm-slide-swiper .swiper-slide {
  opacity: .5;
  cursor: pointer;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.product-det .swiper_box .sm-slide-swiper .sm-bg-header {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 4px;
  border-radius: 25px;
  border: 1px solid transparent;
  padding: 0px;
}

.product-det .swiper_box .sm-slide-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.product-det .swiper_box .sm-slide-swiper .swiper-slide-thumb-active .sm-bg-header {
  border: 1px solid var(--primary) !important;
}

.product-det .text-box .share_box .share_butn {
  background-color: #B4B4B4;
  color: #fff;
}

.product-det .text-box .share_box .icons {
  position: absolute;
  top: 68px;
  left: 0;
}

.product-det .text-box .share_box .icons a {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: #Fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
}

.product-det .text-box .share_box .icons a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.product-det .text-box .share_box .icons a:nth-child(2) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.product-det .text-box .share_box .icons a:nth-child(3) {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.product-det .text-box .share_box .icons a:nth-child(4) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.product-det .text-box .share_box .icons a:nth-child(5) {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.product-det .text-box .share_box .icons a.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.product-det .text-box .form-check-label {
  font-size: 14px;
}

.product-det .text-box .rate .stars i {
  color: #EAEAE9;
}

.product-det .text-box .rate .stars i.active {
  color: #FAB707;
}

.product-det .text-box .bt {
  border-top: 1px solid #eee;
}

.product-det .prod_inner .nav-link {
  background-color: #ECF0F3;
  color: #888;
  border-radius: 25px 25px 0 0;
  min-width: 150px;
  padding: 1.2rem 3rem;
  font-size: 14px;
  font-weight: bold;
}

.product-det .prod_inner .nav-link.active {
  background-color: #fff;
  color: #222;
}

.product-det .prod_inner .tab_wrapper {
  background-color: #fff;
  border-radius: 25px 0 25px 25px;
  padding: 45px 3vw;
}

.product-det .prod_inner .tab_wrapper .p {
  line-height: 2.2;
}

.product-det .prod_inner .tab_wrapper .comment_item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.product-det .prod_inner .tab_wrapper .comment_item .head .sm_img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
}

.product-det .prod_inner .tab_wrapper .comment_item .head .rating_ratio {
  font-size: 14px;
  min-width: 40px;
}

.product-det .prod_inner .tab_wrapper .comment_item .head .rating_ratio i {
  color: #F68209;
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
}

.product-det .prod_inner .tab_wrapper .comment_item .head .date {
  color: #666;
  font-size: 14px;
}

.product-det .prod_inner .tab_wrapper .comment_item .txt {
  color: #888;
  line-height: 1.8;
  font-size: 14px;
}

.product-det .prod_inner .tab_wrapper .comment_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-det .vid_inner iframe {
  border-radius: 25px;
}

.sticky_buttons {
  background-color: rgba(15, 44, 82, 0.9);
  position: fixed;
  bottom: 83px;
  right: 0;
  left: 0;
  z-index: 9;
  padding: 0.8rem 0.5rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: -3px -6px 15px 0 #0001;
          box-shadow: -3px -6px 15px 0 #0001;
}

.sticky_buttons .butn {
  padding: 0.7rem 1rem;
}

.quantity-container {
  background-color: #fff;
  border-radius: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
}

.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  background-color: #f8f8f8;
}

.quantity-container .qt-plus:hover,
.quantity-container .qt-minus:hover {
  background-color: var(--primary) !important;
  color: #fff;
}

.quantity-container .qt-plus .fa,
.quantity-container .qt-minus .fa {
  font-weight: 300;
}

.quantity-container .qt {
  display: inline-block;
  min-width: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

/**********************************************
    Start Edit cart Page 
**********************************************/
.cart-pg .cart_box {
  background-color: #fff;
  padding: 40px 2vw;
  border-radius: 20px;
  position: relative;
}

.cart-pg .cart_box .table-responsive .table th,
.cart-pg .cart_box .table-responsive .table td {
  padding: 1rem 0.5rem;
}

.cart-pg .cart_box .table-responsive td {
  vertical-align: middle;
}

.cart-pg .cart_box .table-responsive::-webkit-scrollbar {
  height: 5px;
}

.cart-pg .cart_box .table-responsive .prod_img {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  border: 1px solid var(--secondary);
}

.cart-pg .summary-checkout {
  background-color: #fff;
  padding: 30px 20px 30px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cart-pg .summary-checkout .card-body .item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 15px 0;
  border-bottom: 1px solid #ddd;
}

.cart-pg .summary-checkout .card-body .item .prod-img {
  width: 70px;
  height: 70px;
}

.cart-pg .summary-checkout .card-body .item .info-inner {
  margin: 0 10px;
}

.cart-pg .summary-checkout .card-body .item .info-inner .prod-name {
  margin-bottom: 0;
}

.cart-pg .summary-checkout .card-body .item .info-inner .delete-btn {
  background-color: transparent;
  border: transparent;
  color: #FF4A63;
  font-size: 14px;
  font-weight: bold;
  margin-top: 18px;
}

.cart-pg .summary-checkout .card-body .item .info-l .number-input {
  width: 60px;
  height: 25px !important;
  margin-left: auto;
}

.cart-pg .summary-checkout .card-body .item .info-l .price {
  margin-bottom: 0;
  margin-top: 15px;
}

.cart-pg .summary-checkout .footer-card {
  padding: 1.25rem;
}

.cart-pg .summary-checkout .footer-card .code-group {
  position: relative;
}

.cart-pg .summary-checkout .footer-card .code-group .code-input {
  height: 55px;
}

.cart-pg .summary-checkout .footer-card .code-group .submit-btn {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  width: 60px;
  font-size: 12px;
  height: 55px;
  border-radius: 15px 0 0 15px;
}

.cart-pg .summary-checkout .footer-card .summary_price .price_item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-pg .summary-checkout .alert_data {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.alert_data {
  -webkit-padding-start: 35px !important;
          padding-inline-start: 35px !important;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #888;
}

.alert_data::before {
  content: '\f06a';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 15px;
  right: 13px;
  color: var(--secondary);
}

/**********************************************
    Start Edit checkout Page 
**********************************************/
.checkout-pg .sm_box {
  background-color: #fff;
  padding: 30px 2vw;
  border-radius: 20px;
  position: relative;
}

.checkout-pg .sm_box .form-check .sm_img {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .sm_box .apply_butn {
  position: absolute;
  left: 5px;
  top: 5px;
}

.checkout-pg .lg_box {
  background-color: #fff;
  padding: 30px 3vw;
  border-radius: 20px;
  position: relative;
}

.checkout-pg .form-control {
  background-color: #ECF0F3;
  border: 1px solid #ECF0F3;
  border-radius: 25px;
}

.checkout-pg iframe {
  border-radius: 25px;
}

.checkout-pg .agreeCheckbox {
  font-size: 13px;
}

/**********************************************
    Start Edit order_det_pg Page 
**********************************************/
.order_det_pg .order-details {
  padding: 3vw;
  background-color: #f9f9f9;
  border-radius: 20px;
}

.order_det_pg .order-details .order-head {
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 15px 0 #0001;
          box-shadow: 10px 10px 15px 0 #0001;
  padding: 2.5vw;
  margin-bottom: 50px;
  background-color: #fff;
}

.order_det_pg .order-details .order-head ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order_det_pg .order-details .order-head ul li {
  width: 50%;
  margin: 5px 0;
}

.order_det_pg .order-details .order-head ul li p {
  margin: 0;
}

.order_det_pg .order-details .order-head ul li span {
  font-weight: bold;
  margin-right: 15px;
}

.order_det_pg .order-details .order-body .table-bordered {
  border: none;
}

.order_det_pg .order-details .order-body .table-bordered th, .order_det_pg .order-details .order-body .table-bordered td {
  border: 1px solid var(--primary);
}

.order_det_pg .order-details .order-body .table-bordered th.text-left, .order_det_pg .order-details .order-body .table-bordered td.text-left {
  text-align: initial;
}

.order_det_pg .order-details .order-body .table .img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.order_det_pg .order-details .order-body .table thead th {
  background-color: var(--primary);
  color: #fff;
}

.order_det_pg .table th, .order_det_pg .table td {
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 1.5rem;
}

.order_det_pg .table_box {
  border-radius: 15px;
  border-top: 0.2px solid var(--primary);
  border-right: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
  border-bottom: 0.2px solid var(--primary);
  overflow: hidden;
}

.order_det_pg .qr_box {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
}

.order_det_pg .qr_box .sec-img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media print {
  .img img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    border: 1px solid #9993;
    border-radius: 10px;
    padding: 5px;
  }
  #print_btn {
    display: none !important;
  }
}

/**********************************************
    Start Edit Dark mode 
**********************************************/
.dark_mode .header,
.dark_mode .navbar {
  background-color: #193F65;
}

.dark_mode .section,
.dark_mode .footer {
  background-color: #0f243a;
}

.dark_mode .section.bg-light,
.dark_mode .profile-pg .tab_wrapper.loc_tab .loc_card {
  background-color: #142e49 !important;
}

.dark_mode .footer .footer_outer,
.dark_mode .pg-header,
.dark_mode .register-pg .register-box,
.dark_mode .profile-pg .prof-side .wrapper,
.dark_mode .profile-pg .tab_wrapper,
.dark_mode .news-det .related_news,
.dark_mode .cart-pg .cart_box,
.dark_mode .cart-pg .summary-checkout,
.dark_mode .checkout-pg .lg_box,
.dark_mode .checkout-pg .sm_box,
.dark_mode .gallery-pg .tab_wrapper,
.dark_mode .contact-pg .contact_card,
.dark_mode .products-pg .filter_wrapper {
  background-color: #0b1928;
}

.dark_mode .footer .foot,
.dark_mode .modal-content {
  background-color: #08121d !important;
}

.dark_mode .register-pg .register-box,
.dark_mode .gallery-pg .tab_wrapper,
.dark_mode .contact-pg .main_inner,
.dark_mode .content-pg .inner,
.dark_mode .news-det .box {
  border: 10px solid #08121d;
}

.dark_mode .products-sec .prod_card,
.dark_mode .feedback-sec .feedback_card {
  background-color: #0b1928;
  -webkit-box-shadow: -3px 3px 6px 0 #0005;
          box-shadow: -3px 3px 6px 0 #0005;
}

.dark_mode form .form-control,
.dark_mode .products-pg .filter_wrapper .form-control {
  background-color: #11253a;
  border: 1px solid #11253a;
  color: #fff;
}

.dark_mode form .form-control::-webkit-input-placeholder,
.dark_mode .products-pg .filter_wrapper .form-control::-webkit-input-placeholder {
  color: #ddd;
}

.dark_mode form .form-control:-ms-input-placeholder,
.dark_mode .products-pg .filter_wrapper .form-control:-ms-input-placeholder {
  color: #ddd;
}

.dark_mode form .form-control::-ms-input-placeholder,
.dark_mode .products-pg .filter_wrapper .form-control::-ms-input-placeholder {
  color: #ddd;
}

.dark_mode form .form-control::placeholder,
.dark_mode .products-pg .filter_wrapper .form-control::placeholder {
  color: #ddd;
}

.dark_mode .data-group .data,
.dark_mode .product-det .prod_inner .tab_wrapper {
  background-color: #11253a;
  color: #fff;
}

.dark_mode .title,
.dark_mode .sec_title,
.dark_mode .name,
.dark_mode .country,
.dark_mode .modal-title,
.dark_mode .product-det .price,
.dark_mode .product-det .sm_title,
.dark_mode .cart-pg .summary-checkout .alert_data,
.dark_mode .total_box h6,
.dark_mode .total_box h5,
.dark_mode .table .prod_name,
.dark_mode .products-pg .filter_wrapper .label {
  color: #fff;
}

.dark_mode p,
.dark_mode a,
.dark_mode span,
.dark_mode .navs-container .navbar .nav-link,
.dark_mode .footer .content .links .item,
.dark_mode .profile-pg .prof-side .wrapper.links-data .nav-link,
.dark_mode .table-responsive .table th,
.dark_mode .table-responsive .table td,
.dark_mode form .form-check-label,
.dark_mode .date,
.dark_mode .txt,
.dark_mode .product-det .prod_inner .tab_wrapper .comment_item .txt,
.dark_mode .product-det .prod_inner .tab_wrapper .comment_item .head .date {
  color: #ddd;
}

.dark_mode .navs-container .navbar .sm_butn.secondary_border_butn {
  border: 1px solid #ddd;
  color: #ddd;
}

.dark_mode .header .shape {
  opacity: .1;
}

.dark_mode .banner-sec::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#203e4b));
  background-image: linear-gradient(to bottom, transparent, #203e4b);
}

.dark_mode .about-sec::before,
.dark_mode .contact-sec .text-box,
.dark_mode .downloading-sec::before {
  background-color: #1d4566;
}

.dark_mode .footer .newsletter_outer .inner {
  -webkit-box-shadow: 10px 10px 50px #0002;
          box-shadow: 10px 10px 50px #0002;
}

.dark_mode .product-det .prod_inner .nav-link.active {
  background-color: #11253a;
  color: #fff !important;
}

#modeSwitcher {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

#modeSwitcher .checkbox {
  opacity: 0;
  position: absolute;
}

#modeSwitcher .checkbox:checked + .label {
  background-color: #0F2C52;
}

#modeSwitcher .checkbox:checked + .label .ball {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

#modeSwitcher .checkbox:checked + .label .ball::after {
  content: '';
  position: absolute;
  background-color: #0F2C52;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  bottom: 50%;
  left: -5%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

#modeSwitcher .label {
  background-color: #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  margin: 0;
  position: relative;
  height: 45px;
  width: 65px;
}

#modeSwitcher .label .fa-moon {
  background-color: #888;
  display: none;
}

#modeSwitcher .label .ball {
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 6px;
  height: 30px;
  width: 30px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
/*# sourceMappingURL=style.css.map */