@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary: #22A8A4;
  --secondary: #272343;
  --filterPrimary: invert(48%) sepia(77%) saturate(457%) hue-rotate(129deg) brightness(99%) contrast(81%);
  --filterSecondary: invert(10%) sepia(39%) saturate(1406%) hue-rotate(214deg) brightness(92%) contrast(89%);
  --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: "Alexandria", sans-serif;
  scroll-behavior: smooth;
}

*::first-letter {
    text-transform: capitalize;
}

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

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

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

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

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

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

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.dir_ltr {
  direction: ltr;
}

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

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.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,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

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;
  background-color: transparent;
}

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;
}

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

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

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

form textarea {
  resize: none;
}

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

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  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: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  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);
}

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

.secImg {
  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;
}

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}

#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader::before {
  top: 0;
}

#preloader::after {
  bottom: 0;
}

#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}

#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #0005;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#preloader #loading-wrapper.show {
  display: block;
}

#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}

#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  animation: loader 3s linear infinite;
}

#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
   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;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
    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: 17px;
  height: 6px;
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.products_sec .swiper-pagination .swiper-pagination-bullet-active {
  /*width: 17px;*/
  background: var(--secondary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.products_sec .swiper-button-next,
.products_sec .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #D9D9D9;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.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 6 Pro";
  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: '\f105';
}

.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: '\f104';
}

.butn {
  position: relative;
  padding: .5rem 1.5rem;
  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;
  height: 45px;
  font-weight: bold;
}

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

.butn.sm_butn {
  padding: 0;
  width: 45px;
  height: 45px;
}

.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_butn {
  background-color: var(--secondary);
  color: #fff;
}

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

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

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

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

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

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

.sec_head {
  position: relative;
  padding-bottom: 15px;
}

.sec_head .sec_title {
  font-size: 31px;
  color: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec_head .sec_title::before {
  content: '';
  background: url(../images/icon.png) center no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  display: inline-block;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.sec_head::after, .sec_head::before {
  content: '';
  height: 1px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 25px;
}

.sec_head::after {
  width: 100%;
  background-color: #D9D9D9;
}

.sec_head::before {
  height: 4px;
  width: 20%;
  background-color: var(--primary);
  z-index: 1;
  bottom: -1.5px;
}

.modal .btn-close {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
  position: absolute;
  left: 15px;
  top: 15px;
}

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

.modal .modal-content .form-control {
  border-radius: 35px;
}

.modal .modal-content .butn {
  min-width: 100px;
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 .2em;
  text-align: center;
  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: 140px;
  font-size: 16px;
}

.locModal .inputLabel {
  text-align: start;
  font-size: 12px;
  font-weight: bold;
  color: #888;
  display: block;
  text-align: start;
  margin-bottom: .5rem;
}

.logoutModal .icon_box {
  width: 80px;
  height: 80px;
  background-color: #f7f7f7;
  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;
  margin: 0 auto 25px auto;
}

.logoutModal .icon_box .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top_nav {
  position: relative;
  z-index: 99;
  padding: 1rem 0;
}

.navs-container .top_nav .logo {
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .top_nav .search_box .form-group .form-control {
  height: 55px !important;
  background-color: #EBEBEB;
  border-color: #EBEBEB;
  border-radius: 0;
}

.navs-container .top_nav .search_box .form-group .form-control.select_categ {
  width: 150px;
  border-radius: 0 25px 25px 0;
}

.navs-container .top_nav .search_box .form-group .form-control.search_input {
  border-radius: 25px 0 0 25px;
}

.navs-container .top_nav .search_box .form-group .form-control:focus {
  border-color: #EBEBEB !important;
}

.navs-container .top_nav .search_box .form-group .search_butn {
  width: 45px;
  height: 45px;
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  background-color: var(--primary);
  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;
  color: #fff;
  border-radius: 50%;
}

.navs-container .top_nav .search_box .form-group::after {
  content: '';
  width: 1px;
  height: 28px;
  background-color: #6A6A6A;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-start: 126px;
}

.navs-container .top_nav .nav_end .butn {
  font-size: 13px;
}

.navs-container .top_nav .nav_end .butn.sm_butn {
  width: 40px;
  height: 40px;
}

.navs-container .top_nav .nav_end .butn.cart_butn {
  height: 40px;
}

.navs-container .top_nav .nav_end .lang_butn {
  font-size: 14px;
}

.navs-container .top_nav .nav_end .dropdown-menu {
  text-align: center;
  border-radius: 0 0 15px 15px;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 15px 0 #3331;
          box-shadow: 0px 0px 15px 0 #3331;
  font-size: 14px;
  border-top: 4px solid var(--primary);
  left: -50px !important;
}

.navs-container .top_nav .nav_end .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}

.navs-container .navbar {
  background-color: var(--secondary);
  padding: 0;
  position: relative;
  z-index: 9;
}

.navs-container .navbar .nav-link {
  padding: 1.5rem 2vw;
  color: #fff;
  font-size: 16px;
}

.navs-container .navbar .nav-link:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.navs-container .navbar .has_dropdown {
  position: relative;
}

.navs-container .navbar .has_dropdown .drop_down {
  background-color: #fff;
  border-radius: 0 0 33px 33px;
  width: 220px;
  padding: .5rem;
  position: absolute;
  top: 72px;
  -webkit-box-shadow: 0px 0px 15px 0 #3331;
          box-shadow: 0px 0px 15px 0 #3331;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  border: 1px solid #f5f5f5;
}

.navs-container .navbar .has_dropdown .drop_down a {
  display: block;
  padding: .5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.navs-container .navbar .has_dropdown .drop_down a:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.navs-container .navbar .has_dropdown:hover .drop_down {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.navs-container .navbar .phone_link {
  direction: ltr;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.navs-container .navbar .phone_link i {
  color: var(--primary);
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.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;
}

.footer .newsletter_box {
  background-color: var(--primary);
  position: relative;
  border-radius: 20px;
  padding: 60px 2vw;
  overflow: hidden;
}

.footer .newsletter_box .txt_box .title {
  font-size: 45px;
}

.footer .newsletter_box .txt_box .subtitle {
  font-size: 25px;
}

.footer .newsletter_box .form_box .form-control {
  height: 55px !important;
  border-radius: 25px;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
}

.footer .newsletter_box .form_box i {
  color: var(--secondary);
  position: absolute;
  inset-inline-start: 15px;
  top: 20px;
}

.footer .newsletter_box .form_box .submit_butn {
  height: 45px;
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
}

.footer .newsletter_box .newsletter_icon {
  position: absolute;
  left: 10%;
  bottom: 0;
  opacity: .2;
}

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

.footer .footer_box .content .logo {
  width: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .footer_box .content .p {
  font-size: 12px;
  color: #888888;
}

.footer .footer_box .content .social_links a {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .footer_box .content .social_links a .socaiIcon {
  width: 40px;
  height: 40px;
}

.footer .footer_box .content .links a {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  color: #777777;
}

.footer .footer_box .content .links a i {
    margin-inline-end: 7px;
    color: var(--primary);
}

.footer .footer_box .content .links a:hover {
  -webkit-padding-start: 7px;
          padding-inline-start: 7px;
}

.footer .footer_box .content .payLogo {
  max-width: 40px;
  height: 20px;
  -webkit-margin-end: 1vw;
          margin-inline-end: 1vw;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .footer_box .content .copyright_p {
  color: #7A7A7A;
  font-size: 14px;
}

.footer .footer_box .content .copyright_p .alyom_logo {
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
      background: linear-gradient(to right, #38B1AE, #90D6D5);
}
.header .item {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
 
}
.header .item .img_box {
    height: 600px;
}

.header .item .txt_box .title {
  font-size: 51px;
}

.categ_sec .categ_item .img_box {
  width: 215px;
  height: 215px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px auto;
  position: relative;
  overflow: hidden;
}

.categ_sec .categ_item .img_box .secImg {
  -o-object-fit: contain;
     object-fit: contain;
}

.categ_sec .categ_item .img_box::after {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/categ_frame.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.categ_sec .categ_item .title {
  color: var(--secondary);
  font-weight: 500;
  font-size: 25px;
}

.categ_sec .categ_item:hover .img_box::after {
  -webkit-animation: rotate-center 2s linear infinite both;
          animation: rotate-center 2s linear infinite both;
}

.categ_sec .categ_item:hover .title {
  color: var(--primary);
}

.products_sec .banner_box {
  background: linear-gradient(to bottom, #38B1AE, #90D6D5);
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
      display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
      margin-bottom: 25px;
}

.products_sec .banner_box .txt_content {
  padding: 50px 2vw;
  /*position: absolute;*/
  /*top: 5%;*/
  /*right: 0;*/
  /*left: 0;*/
  text-align: center;
}

.products_sec .banner_box .txt_content .title {
  font-size: 30px;
  line-height: 1.5;
}

.products_sec .banner_box .secImg {
    width: 100%;
    height: 200px;
    object-fit: contain
}

.products_sec .prod_card {
  position: relative;
  -webkit-border-end: 1px solid #D9D9D9;
          border-inline-end: 1px solid #D9D9D9;
  padding: 5px 15px;
  margin-bottom: 30px;
}

.products_sec .prod_card .img_box {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.products_sec .prod_card .img_box .warranty_badge {
    width: 150px;
    height: 34px;
    top: 20px;
    right: -40px;
    position: absolute;
    display: block;
    background: #f5f5f5;
    font-size: 9px;
    font-weight: bold;
    color: var(--primary);
    text-align: center;
    line-height: 34px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    z-index: 8;
}

.products_sec .prod_card .img_box .secImg {
  -o-object-fit: contain;
     object-fit: contain;
}

.products_sec .prod_card .img_box .butns {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  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;
  z-index: 5;
}

.products_sec .prod_card .img_box .butns .butn {
  font-size: 12px;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products_sec .prod_card .img_box .butns .butn:nth-child(2) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.products_sec .prod_card .img_box .butns .butn.active {
  background-color: #167370;
  color: #fff;
}

.products_sec .prod_card .img_box .off_badge {
  background-color: #167370;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: .2rem  .5rem;
  border-radius: 5px;
  z-index: 5;
}

.products_sec .prod_card .img_box::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);
  background-color: #fff7;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products_sec .prod_card .card-body {
  text-align: center;
  padding: 1.5rem 0 0 0;
}

.products_sec .prod_card .card-body .title {
  color: var(--secondary);
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products_sec .prod_card .card-body .stars i {
  color: #D2D2D2;
  font-size: 11px;
}

.products_sec .prod_card .card-body .stars i.active {
  color: #FFC24D;
}

.products_sec .prod_card .card-body .price {
  font-size: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products_sec .prod_card .card-body .price del {
  color: #C1C1C1;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
  font-size: 19px;
}

.products_sec .prod_card .card-body .price span {
  color: var(--primary);
}

.products_sec .prod_card:hover .img_box .butns .butn {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.products_sec .prod_card:hover .img_box::after {
  opacity: 1;
}

.products_sec .col-lg-3:last-child .prod_card {
  -webkit-border-end: none;
          border-inline-end: none;
}

.products_sec .arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products_sec .arrows .swiper-button-next,
.products_sec .arrows .swiper-button-prev {
  right: unset;
  left: unset;
  position: relative;
  margin: 0 5px;
}

.banner_sec {
  overflow: unset;
}

.banner_sec .inner {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  height: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 4vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*-webkit-padding-start: 4vw;*/
  /*        padding-inline-start: 4vw;*/
background: linear-gradient(to right, #38B1AE, #90D6D5);
}

.banner_sec .inner .txt_box .title {
  font-size: 41px;
}

.banner_sec .inner .txt_box .subtitle {
  font-size: 23px;
  color: #494949;
}

.banner_sec .pattern {
  position: absolute;
  right: 0;
  top: -30%;
}

.partners_sec {
  background-color: #F3F3F3;
}

.partners_sec .logo_box {
  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;
}

.partners_sec .logo_box .partnerLogo {
  max-width: 80%;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners_sec .logo_box .partnerLogo:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  padding: 0 !important;
}

.pg_header .bread {
  padding: 25px 0 !important;
  border-bottom: 1px solid #eee;
}

.pg_header .item {
  position: relative;
  -webkit-padding-end: 45px;
          padding-inline-end: 45px;
  font-size: 15px;
  color: #888888;
}

.pg_header .item::after {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../images/icon.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  inset-inline-end: 7px;
}

.pg_header .item.active {
  color: var(--primary);
}

.pg_header .item.active::after {
  display: none;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.products_pg .filter_box .form-group {
  margin-bottom: 15px;
}

.products_pg .filter_box .form-group .form-control {
  background-color: #EBEBEB;
  border-color: #EBEBEB;
  border-radius: 25px;
}

.products_pg .filter_box .search_butn {
  width: 55px !important;
  height: 55px;
  border-radius: 50%;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about_pg .txt_box .p {
  line-height: 2.2;
}

.about_pg .img_box {
  position: relative;
  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;
}

.about_pg .img_box .secImg {
  border-radius: 50%;
  width: 500px;
  height: 500px;
}

.about_pg .img_box::before {
  content: '';
  width: 550px;
  height: 550px;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background: url(../images/icon.svg) no-repeat center;
  background-size: contain;
}

.about_cards {
  overflow: unset;
}

.about_cards .about_card {
  border-radius: 25px;
  outline: 5px solid #F0F2F4;
  margin: 10px auto 20px auto;
  position: relative;
  height: calc(100% - 30px);
}

.about_cards .about_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_cards .about_card .box .icon_box {
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_cards .about_card .box .icon_box .title_w_line {
  font-size: 22px;
  margin-top: 5px;
}

.about_cards .about_card .box .icon_box .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about_cards .about_card .box .icon_box::before {
  content: '';
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: absolute;
  inset-inline-start: -8px;
  top: -8px;
  background-color: rgba(34, 168, 164, 0.09);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.about_cards .about_card .box .content .p {
  color: #7c8181;
  font-size: 13px;
}

.about_cards .about_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
}

.about_cards .about_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  position: absolute;
  top: -5px;
  right: 47px;
}

.about_cards .pattern {
  position: absolute;
  left: 0;
  top: -50%;
  opacity: .1;
}

/**********************************************
    Start Edit contact  Page 
**********************************************/
.contact_pg .contact_card {
  text-align: center;
  position: relative;
  background-color: #f5f5f5;
  margin-bottom: 35px;
  margin-top: 30px;
  padding: 60px 1.5rem 2rem  1.5rem;
  height: calc(100% - 65px);
  border-radius: 20px;
}

.contact_pg .contact_card .circle_box {
  width: 90px;
  height: 90px;
  background-color: #f5f5f5;
  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;
  margin: auto;
  top: -45px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact_pg .contact_card .circle_box .content {
  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;
  background-color: #fff;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.contact_pg .contact_card .circle_box .content .icon_box {
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
  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;
  position: relative;
  z-index: 5;
}

.contact_pg .contact_card .circle_box .content .icon_box i {
  font-size: 25px;
  color: var(--primary);
}

.contact_pg .contact_card .circle_box .content .icon_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_pg .contact_card .circle_box .content::before {
  content: '';
  width: 45px;
  height: 40px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}

.contact_pg .contact_card .circle_box .content::after {
  content: '';
  width: 30px;
  height: 20px;
  background-color: var(--secondary);
  position: absolute;
  top: -1px;
  right: 40px;
}

.contact_pg .contact_card .txt_box .label {
  color: #777;
}

.contact_pg .contact_card .txt_box .data {
  font-size: 17px;
  font-weight: bold;
  color: #222;
}

.contact_pg .contact_card .txt_box .social_links a {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.contact_pg .contact_card .txt_box .social_links a .socaiIcon {
  width: 25px;
  height: 25px;
}

.contact_pg .map_box {
  border: 5px solid #f5f5f5;
  border-radius: 20px;
}

.contact_pg .map_box iframe {
  border-radius: 20px !important;
}

.contact_pg .form_box {
  background-color: #f5f5f5;
  padding: 40px 3vw;
  border-radius: 20px;
}

.contact_pg .form_box .form-control {
  border-radius: 35px;
  border-color: #fff;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
}

.contact_pg .form_box .phone_group .form-control {
  padding-left: 140px;
}

.contact_pg .form_box .phone_group .phoneSelect {
  border: none !important;
  position: absolute;
  left: 5px;
  top: 0;
  width: 80px;
  background-color: transparent;
}

.contact_pg .form_box .phone_group .phoneSelect:focus-visible {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.contact_pg .form_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  inset-inline-start: 15px;
  top: 19px;
}

.contact_pg .form_box textarea.form-control {
  padding-top: 17px;
}

.contact_pg .form_box .butn {
  padding: 0.8rem 2.9rem;
  border-radius: 35px;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content_pg .inner {
  height: 100%;
  width: 100%;
  border-radius: 25px;
  outline: 5px solid #F0F2F4;
  margin: 10px auto;
  position: relative;
}

.content_pg .inner .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 70px 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content_pg .inner .box .p {
  font-size: 14px;
  line-height: 2.5;
  text-align: justify;
}

.content_pg .inner::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--secondary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.content_pg .inner::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
    Start Edit product_det Page 
**********************************************/
.product_det .swiper_box {
  border: 1px solid #ddd;
  padding: 20px 15px 15px 15px;
  border-radius: 15px;
}

.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: 15px;
}

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

.product_det .swiper_box .sm-slide-swiper {
  overflow: hidden;
  height: 100px;
  padding-bottom: 4px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.product_det .swiper_box .sm-slide-swiper .swiper-slide {
  opacity: 1;
  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: contain;
     object-fit: contain;
  margin: 4px;
  border-radius: 15px;
  border: 3px 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: 3px solid var(--primary) !important;
}

.product_det .taxt_box .categ {
  font-size: 14px;
}

.product_det .taxt_box .categ .categ_logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f9f9f9;
  -webkit-box-shadow: 2px 5px 10px 0 #0001;
          box-shadow: 2px 5px 10px 0 #0001;
}

.product_det .taxt_box .rate_ratio i {
  color: #FF9500;
}

.product_det .taxt_box .rate_ratio small {
  color: #888;
  font-size: 60%;
}

.product_det .taxt_box .price {
  font-size: 30px;
}

.product_det .taxt_box .price del {
  color: #C1C1C1;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
  font-size: 19px;
}

.product_det .taxt_box .price span {
  color: var(--primary);
}

.product_det .taxt_box .off_badge {
  background-color: #167370;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: .2rem  .5rem;
  border-radius: 5px;
  z-index: 5;
}

.product_det .taxt_box .p {
  font-size: 16px;
}

.product_det .taxt_box .share_links .title {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.product_det .taxt_box .share_links .title::after {
  content: '';
  width: 45px;
  height: 2px;
  display: inline-block;
  background-color: var(--primary);
  margin: 0 10px;
}

.product_det .taxt_box .share_links .links a {
  margin: 0 5px;
  font-size: 20px;
}

.product_det .taxt_box .share_links .links a .socaiIcon {
  width: 30px;
  height: 30px;
}

.product_det .desc_wrapper .nav {
  background-color: #f5f5f5;
  padding: 0 2rem;
  border-radius: 15px 15px 0 0;
}

.product_det .desc_wrapper .nav .nav-link {
  font-size: 13px;
  padding: .5rem 1.5rem;
  height: 60px;
  border-radius: 0;
  font-weight: bold;
  color: #888;
  border-top: 5px solid transparent;
}

.product_det .desc_wrapper .nav .nav-link.active {
  background-color: #fff;
  color: var(--secondary);
  border-top: 5px solid var(--primary);
  height: 66px;
  margin-top: -6px;
}

.product_det .desc_wrapper .tab_wrapper {
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  padding: 45px 2vw;
}

.product_det .desc_wrapper .tab_wrapper .p {
  font-size: 12px;
  line-height: 2.2;
  text-align: justify;
}

.product_det .desc_wrapper .tab_wrapper .ul_custom .li {
  position: relative;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  margin-bottom: 15px;
}

.product_det .desc_wrapper .tab_wrapper .ul_custom .li::before {
  content: '';
  width: 20px;
  height: 5px;
  background-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 90%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 90%, 0% 100%);
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
}

.product_det .desc_wrapper .tab_wrapper .ul_custom .li:nth-child(even)::before {
  background-color: var(--secondary);
}

.product_det .desc_wrapper .tab_wrapper .review_item {
  position: relative;
  padding: 30px 2vw;
  border-radius: 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .name {
  font-size: 13px;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .rating i {
  font-size: 11px;
  color: #BDBDBD;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .rating i.active {
  color: #DE980F;
}

.product_det .desc_wrapper .tab_wrapper .review_item .prof_data .rating .date {
  color: #7E7E7E;
  font-size: 11px;
}

.product_det .desc_wrapper .tab_wrapper .review_item .review_det {
  color: #606060;
  font-size: 12px;
  margin-bottom: 0;
}

.qty-container {
  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;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: .2rem;
}

.qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: 1px solid transparent !important;
  max-width: 60px;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
  background-color: transparent;
  padding: 10px 13px;
  font-size: 10px;
  height: 38px;
  width: 45px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #777;
}

.qty-container .qty-btn-plus {
  margin-left: -1px;
}

.qty-container .qty-btn-minus {
  margin-right: -1px;
}

/**********************************************
    Start Edit checkout_pg
**********************************************/
.checkout_pg .alert  {
    margin-top: 30px;
}
.checkout_pg .sec_title {
  font-size: 20px;
}

.checkout_pg .sec_title::after {
  margin: 15px 0 0 0;
}

.checkout_pg .box {
  border: 5px solid #f7f7f7;
  border-radius: 20px;
  padding: 50px 3vw 35px 3vw;
  position: relative;
}

.checkout_pg .box::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/icon.png) no-repeat center;
  background-color: #fff;
  padding: 5px 10px;
  background-size: contain;
  display: block;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.checkout_pg .box .form-check-label {
  color: #454545;
  font-size: 14px;
}

.checkout_pg .box .form-control {
  border-radius: 20px;
  font-size: 12px;
  color: #989898;
}

.checkout_pg .box input, .checkout_pg .box select {
  height: 50px !important;
}

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

.checkout_pg .box .copoun_box {
  position: relative;
}

.checkout_pg .box .copoun_box .apply_butn {
  position: absolute;
  left: 5px;
  top: 5px;
  height: 40px;
  font-size: 12px;
}

.checkout_pg .box .data_item {
  margin-bottom: 30px;
}

.checkout_pg .box .data_item .label {
  color: #3A3F54;
  font-size: 17px;
}

.checkout_pg .box .data_item .label i {
  color: var(--primary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.checkout_pg .box .data_item .data {
  color: #474747;
  font-size: 14px;
}

.checkout_pg .box .inputLabel {
  font-size: 14px;
  color: #3A3F54;
  display: block;
  margin-bottom: 10px;
}

.checkout_pg .box .table thead, .checkout_pg .box .table tbody, .checkout_pg .box .table tfoot, .checkout_pg .box .table tr, .checkout_pg .box .table td, .checkout_pg .box .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
}

.checkout_pg .box .table thead tr {
  background-color: var(--secondary);
  border-radius: 25px;
  text-align: center;
}

.checkout_pg .box .table thead tr th {
  color: #fff;
  font-size: 14px;
  padding: 1rem 1rem;
}

.checkout_pg .box .table thead tr th:nth-child(1) {
  border-radius: 0 25px 25px 0;
}

.checkout_pg .box .table thead tr th:last-child {
  border-radius: 25px 0 0 25px;
}

.checkout_pg .box .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.checkout_pg .box .table td .prodImg {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.checkout_pg .box .table td .qty-container {
  padding: 0;
}

.checkout_pg .box .table tr:last-child td {
  border-bottom: 1px solid transparent;
}

.checkout_pg .box .summary_box {
  padding: 0 25px;
}

.checkout_pg .box .summary_box .label {
  font-size: 12px;
  margin-bottom: 0;
}

.checkout_pg .box .summary_box span {
  font-size: 14px;
}

.checkout_pg .box .summary_box .item:last-child .label, .checkout_pg .box .summary_box .item:last-child span {
  font-weight: bold;
}

.checkout_pg .butns .butn {
  min-width: 120px;
}

.checkout_pg .details_box .label {
  color: #3A3F54;
  font-size: 15px;
}

.checkout_pg .details_box .label i {
  color: var(--primary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.checkout_pg .details_box .data {
  color: #474747;
  margin-bottom: 0;
  font-size: 13px;
}

.checkout_pg .file-upload {
  display: block;
  font-size: 12px;
  position: relative;
}

.checkout_pg .file-upload .file-select {
  display: block;
  border: 2px solid #EEEEEE;
  color: #2B2B2B;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.checkout_pg .file-upload .file-select .file-select-button {
  background: #EEEEEE;
  padding: 0 10px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 85px;
  font-size: 18px;
  text-align: center;
}

.checkout_pg .file-upload .file-select .file-select-name {
  line-height: 50px;
  display: inline-block;
  padding: 0 10px;
  position: absolute;
  top: 0;
  inset-inline-start: 90px;
  color: #666;
}

.checkout_pg .file-upload .file-select input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.checkout_pg .file-upload .file-select:hover {
  border-color: #ccc;
}

.checkout_pg .file-upload .file-select:hover .file-select-button {
  background: #ccc;
  color: #ffffff;
}

.checkout_pg .file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

.checkout_pg .file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #2B2B2B;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.checkout_pg .file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 55px;
  line-height: 55px;
}

.checkout_pg .file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.checkout_pg .file-upload.active .file-select {
  border-color: var(--primary);
}

.checkout_pg .file-upload.active .file-select .file-select-button {
  background: var(--primary);
  color: #ffffff;
}

.checkout_pg .sm_table th, .checkout_pg .sm_table td {
  text-align: center;
  padding: 1rem 0.5rem !important;
  font-size: 12px !important;
}

.checkout_pg .checks_box .form-check {
    height: calc(100% - 1rem);
  padding-right: 0 !important;
}

.checkout_pg .checks_box .form-check .form-check-label {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  text-align: center;
      font-size: 12px;
}

.checkout_pg .checks_box .form-check .form-check-label .smImg {
  max-width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  display: block;
  margin: 0 auto 15px auto !important;
}

.checkout_pg .checks_box .form-check .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.checkout_pg .checks_box .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--primary);
  color: var(--primary);
}

.checkout_pg .phone_group .form-control {
  padding-left: 140px;
}

.checkout_pg .phone_group .phoneSelect {
  border: none !important;
  position: absolute;
  left: 10px;
  top: 0;
  width: 80px;
  background-color: transparent;
}

.checkout_pg .phone_group .phoneSelect:focus-visible {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

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

.data-group {
  margin: 10px 0;
  position: relative;
}

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

.data-group .data {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 13px;
  background-color: #f9f9f9;
  margin-top: 10px;
  border: 1px solid #f9f9f9;
}

.data-group .data i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.data-group .comp_img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
  border-radius: 12px;
}

.data-group .comp_img_small {
  width: 100px;
  height: 80px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

/**********************************************
    Start Edit register  Pages
**********************************************/
.register_pg .inner {
  border: 5px solid #f7f7f7;
  border-radius: 20px;
}

.register_pg .inner .head_box {
  background-color: var(--secondary);
  padding: 30px 0;
  border-radius: 20px 20px 0 0;
  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;
}

.register_pg .inner .head_box .logo {
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

.register_pg .inner .form_box {
  padding: 35px;
}

.register_pg .inner .form_box .text_box .p {
  font-size: 12px;
  color: #888;
}

.register_pg .inner .form_box .form-group .form-control {
  border-radius: 35px;
  border-color: #f2f2f2;
  background-color: #f7f7f7;
  -webkit-padding-start: 55px;
          padding-inline-start: 55px;
}

.register_pg .inner .form_box .form-group .form-control::-webkit-input-placeholder {
  font-size: 13px;
}

.register_pg .inner .form_box .form-group .form-control:-ms-input-placeholder {
  font-size: 13px;
}

.register_pg .inner .form_box .form-group .form-control::-ms-input-placeholder {
  font-size: 13px;
}

.register_pg .inner .form_box .form-group .form-control::placeholder {
  font-size: 13px;
}

.register_pg .inner .form_box .form-group .icon {
  font-size: 20px;
  color: var(--primary);
  position: absolute;
  inset-inline-start: 20px;
  top: 14px;
}

.register_pg .inner .form_box .phone_group .form-control {
  padding-left: 140px;
}

.register_pg .inner .form_box .phone_group .phoneSelect {
  border: none !important;
  position: absolute;
  left: 10px;
  top: 0;
  width: 80px;
  background-color: transparent;
}

.register_pg .inner .form_box .phone_group .phoneSelect:focus-visible {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.register_pg .inner .form_box .forget_link,
.register_pg .inner .form_box .resend_link {
  color: #666;
  font-size: 12px;
}

.register_pg .inner .form_box .another_opt {
  font-size: 13px;
  color: #888;
}

.register_pg .inner .form_box .another_opt a {
  color: var(--primary);
}

.register_pg .inner .form_box .submit_butn {
  width: 200px;
}

.show_hide_password .show_pass {
  position: absolute;
  top: 21px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #eee;
  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 notifications_pg
**********************************************/
.notifications_pg .noti_card {
  border-radius: 15px;
  padding: 35px 20px;
  margin-bottom: 35px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 3px 6px 15px 0 #5551;
          box-shadow: 3px 6px 15px 0 #5551;
  position: relative;
}

.notifications_pg .noti_card .date {
  position: absolute;
  inset-inline-end: 15px;
  top: 5px;
  font-size: 11px;
  font-weight: bold;
  color: #aaa;
}

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

.notifications_pg .noti_card .content {
  width: calc(100% - 80px);
}

.notifications_pg .noti_card .content .title {
  font-weight: bold;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.notifications_pg .noti_card .content .p {
  margin-top: 15px;
  font-size: 13px;
  color: #888;
}

.notifications_pg .noti_card:hover .title {
  color: var(--primary);
}

/**********************************************
    Start Edit order_det Page 
**********************************************/
.order_det_pg .order-details {
  padding: 0 3vw 3vw;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-top: 120px;
}

.order_det_pg .order-details .order-head {
  border-radius: 20px;
  padding: 2.5vw;
  margin-bottom: 50px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-top: -80px;
  background-color: #fff;
}

.order_det_pg .order-details .order-head p {
  margin: .5rem;
  color: #888;
}

.order_det_pg .order-details .order-head p span {
  font-weight: 500;
  color: #202020;
  margin-right: 15px;
}

.order_det_pg .order-details .order-head p .color-primary {
  color: var(--primary);
}

.order_det_pg .order-details .order-body .checkout_pg .box {
  border: none;
  border-radius: 0;
  padding: 0;
}

.order_det_pg .qr_box {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid #9993;
}

.order_det_pg .qr_box .sec-img {
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.order_det_pg .pay_box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}

.order_det_pg .pay_box li {
  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: 15px 0;
  border-bottom: 1px solid #9993;
}

.order_det_pg .pay_box li:last-of-type {
  border: 0;
  padding-bottom: 0;
}

.order_det_pg .checkout_pg .box::before {
  display: none;
}

.table td,
.table th {
  white-space: nowrap;
  text-align: center;
}

/**********************************************
    Start Edit profile_pg
**********************************************/
.profile_pg .prof-side .wrapper {
  padding: 3vw 2vw;
  border-radius: 20px;
  margin-bottom: 25px;
  border: 5px solid #f7f7f7;
}

.profile_pg .prof-side .wrapper.prof-data .img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 10px 0 rgba(136, 136, 136, 0.15);
          box-shadow: 0 3px 10px 0 rgba(136, 136, 136, 0.15);
  margin: auto;
  overflow: hidden;
  padding: 0px;
}
.profile_pg .prof-side .wrapper.prof-data .img-box img {
  border-radius: 50%;
}

.profile_pg .prof-side .wrapper.links-data .nav-link {
  color: #666;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  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: 50px 3vw;
  border-radius: 20px;
  background-color: #fff;
  border: 5px solid #f7f7f7;
  position: relative;
}

.profile_pg .tab_wrapper .sec_head .sec_title::before {
  width: 40px;
  height: 40px;
}

.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.profile_tab .form-control {
  border-radius: 13px;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}

.profile_pg .tab_wrapper.profile_tab .editPhone_butn {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 100px;
  min-width: 100px;
}

.profile_pg .tab_wrapper.orders_tab .sm_butn {
  width: 30px;
  height: 30px;
}

.profile_pg .tab_wrapper.orders_tab .checkout_pg .box {
  padding: 0;
  border: none;
}

.profile_pg .tab_wrapper.orders_tab .checkout_pg .box::before {
  display: none;
}

.profile_pg .tab_wrapper.loc_tab .loc_card {
  border: 1px solid #eee;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}

.profile_pg .tab_wrapper.loc_tab .loc_card .heading {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.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: #f7f7f7;
  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: 60px;
  height: 60px;
  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: var(--primary);
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}

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

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

.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;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
    .d_mob_none {
        display: none !important;
    }
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .header .item .img_box {
        height: 300px;
    }
  .navs-container .top_nav .search_box {
      margin: 10px 0 ;
  }
    .navs-container .navbar {
      z-index: 99;
    }

  .navs-container .navbar .navbar-toggler {
        position: absolute;
        top: -55px;
    }
    .navs-container .top_nav .nav_end .butn.cart_butn {
        padding: 0rem;
        /*font-size: 12px;*/
      width: 40px;
    }
    .navs-container .top_nav .nav_end .butn.cart_butn i {
        margin: 0 !important;
      
    }
    .banner_sec .inner {
        height: auto;
    }
    .banner_sec .inner .secImg {
        margin: 10px 0;
    }
    .about_pg .img_box {
        margin-top: 35px;
    }
    .about_pg .img_box .secImg {
        width: 300px;
        height: 300px;
    }
    .about_pg .img_box::before {
        width: 350px;
        height: 350px;
    }
    
    .header .item .txt_box .title ,
    .banner_sec .inner .txt_box .title {
        font-size: 35px;
        line-height: 1.5;
    }
    
    .footer .footer_box .copyright_p  {
        font-size: 8px;
    }
    .footer .footer_box .copyright_p .alyom_logo  {
        width: 40px ;
    }
    .product_det .taxt_box .share_links .title {
        font-size: 12px;
    }
    .product_det .taxt_box .share_links .title::after {
        width: 30px;
    }
    .product_det .desc_wrapper .nav .nav-link {
        font-size: 10px;
        padding: .5rem;
    }
    .navs-container .top_nav .nav_end .dropdown-menu {
        inset-inline-end: 0 !important;
    }
    
    .register_pg .code_txt ,
    .register_pg .resend_link {
        font-size: 12px;
    }
    .footer .newsletter_box .txt_box .title {
        font-size: 40px;
    }
    .product_det .taxt_box .price {
        font-size: 20px;
    }
    .sec_head .sec_title {
        font-size: 22px;
    }

}

[type="tel"], [type="url"], [type="email"], [type="number"] {
    direction: inherit;
}

/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}

html[dir="ltr"] .navs-container .top_nav .search_box .form-group .form-control.select_categ {
    width: 150px;
    border-radius: 25px 0 0 25px;
}

html[dir="ltr"] .navs-container .top_nav .search_box .form-group .form-control.search_input {
    border-radius: 0 25px 25px 0;
}

html[dir="ltr"] .navs-container .top_nav .search_box .form-group::after {
    inset-inline-start: 145px;
}
html[dir="ltr"] .swiper-container .swiper-button-next::before, 
html[dir="ltr"] .swiper-container .swiper-button-prev::before {
    transform: rotateY(180deg);
}

html[dir="ltr"] .contact_pg .form_box .phone_group .phoneSelect  ,
html[dir="ltr"] .register_pg .inner .form_box .phone_group .phoneSelect ,
html[dir="ltr"] .checkout_pg .phone_group .phoneSelect  {
    left: 45px;
}






/*# sourceMappingURL=style.css.map */