/* font */
@font-face {
  font-family: "Alexandria";
  src: url(../font/Alexandria-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Marhey";
  src: url(../font/Marhey-VariableFont_wght.ttf);
}

@font-face {
  font-family: "ElMessiri";
  src: url(../font/ElMessiri-VariableFont_wght.ttf);
}

@font-face {
  font-family: "cairo";
  src: url(../font/Cairo-VariableFont_slnt\,wght.ttf);
}

/* end font */
/* global */
* {
    scrollbar-width: thin;
    scrollbar-color: blue;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


*::-webkit-scrollbar-thumb {
    background-color: #00b3b4;
    border-radius: 20px;
}
.small-text {
  font-size: 0.7rem;
  font-family: "Alexandria";
  color: #444;
}
.svg {
    width: 30px;
    height: 30px;
}
#search-input::placeholder {
    color: #fff;
    opacity: 0.5;
}
#search-input:focus{
    background-color: #0d8281;
}
#search-input {
    text-align: center !important;
}
.btn-submit:hover{
    width: 50px;
    height: 50px;
}
.categories{
    max-height: 650px;
    overflow-y: scroll;
}
.top-30 {
  top: 90px;
}

.h-95 {
  height: 95%;
}

.w-95 {
  width: 95%;
}

.page-link:hover {
  color: #fd4f2c !important;
  background-color: white;
}

.active .page-link {
  background-color: #fd4f2c;
}

.active .page-link:hover {
  color: white !important;
  background-color: #fd4f2c;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.headding {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "cairo";
}

.normal {
  font-size: 1rem;
  font-family: "Alexandria";
}

.small {
  font-size: 0.8rem;
  font-family: "Alexandria";
}

.small-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
}
.search-title{
    font-size: 7rem;
}
@media screen and (max-width:700px) {
    #search-btn{
        position: relative !important;
    }
        .search-title {
            font-size: 3rem;
        }
}
.big-img {
  width: 100%;
  height: 100%;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

.table-width {
  min-width: 550px;
}

.table-width-sm {
  min-width: 350px;
}

svg path {
  fill: currentColor;
}

.bg-green {
  background-color: #0d8281;
}

.bg-orange {
  background-color: #fd4f2c;
}
.color-lymon{
    color: #c7ec02;
}

.xs-svg {
  height: 18px;
  padding: 2px;
}

.color-green {
  color: #0d8281;
}

.color-orange {
  color: #fd4f2c;
}

.orange-hover:hover {
  color: #fd4f2c !important;
}

.green-hover:hover {
  color: #0d8281 !important;
}

.color-danger {
  color: red;
}

.wishlist-btn {
  height: fit-content;
}

.wishlist-btn svg {
  height: 20px;
}

/* btn */
.btn-c-close {
  font-size: 40px;
  height: 35px;
  width: 35px;
}

.btn-c-close::before {
  content: '+';
  font-size: 50px;
  position: absolute;
  transform: rotate(45deg);
  top: 2px;
  left: 20px;
}

.btn-modal::before {
  top: -8px;
}

.btn-c-close:hover {
  background-color: transparent !important;
}

.btn-c-close:hover::before {
  color: red;
}

.btn-of {
  font-size: 40px;
  height: 35px;
  width: 35px;
  top: 100px;
  right: 30px;
  z-index: 1040;
}

.btn-of::before {
  content: '+';
  font-size: 50px;
  position: absolute;
  top: -26px;
  left: 0px;
}

.btn-model {
  display: inline-block;
  position: relative;
  padding: 7px;
  border: 1px solid transparent;
  text-align: center;
  background-color: transparent;
  z-index: 1;
  -webkit-tap-highlight-color: initial;
}

.btn-model::before {
  -webkit-font-smoothing: antialiased;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  transform: scale(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn-model:hover::before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scaleX(0);
}

.btn-orange {
  color: #fff;
  border-color: #fd4f2c;
}

.btn-orange::before {
  background-color: #fd4f2c;
}

.btn-orange:hover {
  color: #fd4f2c;
}

.btn-green {
  color: #fff;
  border-color: #0d8281;
}

.btn-green::before {
  background-color: #0d8281;
}

.btn-green:hover {
  color: #0d8281;
}

.btn-white-green {
  color: #0d8281;
  border-color: #fff;
}

.btn-white-green::before {
  background-color: #fff;
}

.btn-white-green:hover {
  color: #fff;
}

.btn-white-orange {
  color: #fd4f2c;
  border-color: #fff;
}

.btn-white-orange::before {
  background-color: #fff;
}

.btn-white-orange:hover {
  color: #fff;
}

/* end btn */
/* header */
.nav-img {
  height: 40px;
}

/* end header */
/* main */



.marquee {
  width: max-content;
  -moz-animation: marquee 40s linear infinite;
  -webkit-animation: marquee 40s linear infinite;
  animation: marquee 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@-moz-keyframes marquee {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(100%);
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes marquee {
  0% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  100% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.aritcle-img {
  width: 100%;
  height: 40vw;
  object-position: center;
  object-fit: cover;
}

.profile-pic {
  height: 200px;
  width: 200px;
  object-position: center;
  object-fit: cover;
}

.tender {
  width: 95%;
  margin: 10px;
  padding: 10px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
}

.preview-pic {
  height: 200px;
  object-position: center;
  object-fit: cover;
}

@media screen and (max-width: 777px) {
  .aritcle-img {
    height: 60vw;
  }
}

.table-img {
  height: 75px;
}

.slider-img {
  object-position: center;
  object-fit: cover;
  width: 90%;
  aspect-ratio: 8/1;
}
.midAdd-img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 8/1;
}
.sidebar-title {
  top: -23px;
  width: fit-content;
}

.border-green {
  border: solid 1px #0d8281;
}

.green-gradient {
  background: rgb(0, 108, 87);
  background: linear-gradient(90deg, rgba(0, 108, 87, 1) 26%, rgba(0, 244, 196, 1) 100%, rgba(0, 212, 255, 1) 100%);
}

.orange-gradient {
  background: rgb(168, 83, 27);
  background: linear-gradient(90deg, rgb(190, 93, 28) 26%, rgb(221, 124, 68) 100%, rgb(247, 160, 103) 100%);
}

.big-img {
  margin-top: 50px;
}

.sidebar-img {
  object-position: center;
  object-fit: cover;
  width: 95%;
  aspect-ratio: 1/2;
}

.profile-height {
  height: 300px;
}

/* end main */
/* footer */

/* end footer */

.final__pricing-table {
  margin: 60px auto;
}

.final__pricing-table:after {
  display: table;
  content: "";
  clear: both;
}

.final__pricing-table>div {
  display: block;
  float: left;
  min-height: 1px;
  background-color: #ffffff;
  color: #0d8281;
}

.final__pricing-table>div:not(:last-child) {
  margin-right: 2%;
}

.final__pricing-block {
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
}

.final__pricing-header {
  height: auto;
  padding: 30px 20px 40px;
  text-transform: uppercase;
}

.final__pricing-header .final__pricing-heading {
  font-size: 1.4rem;
  font-weight: 700;
}

.final__pricing-price {
  color: #fd4f2c;
}

.final__pricing-price>span {
  display: inline-block;
}

.final__pricing-price__currency {
  margin-top: 10px;
  vertical-align: top;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
}

.final__pricing-price__value {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.final__pricing-price__duration {
  margin-top: 10px;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.6;
}

.final__pricing-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.final__pricing-body ul li {
  display: block;
  padding: 10px 20px;
  margin: 0;
}

.final__pricing-body ul li:nth-child(2n) {
  background-color: #ffffff;
}

.final__pricing-body ul li:nth-child(2n + 1) {
  background-color: #f8f8f8;
}

.final__pricing-footer {
  padding: 40px 0 0;
}

.final__pricing-button {
  display: block;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #0d8281;
  color: #ffffff;
  border: none;
  border-bottom: dotted 0 #00b3b4 !important;
}

@media screen and (max-width: 778px) {
  .final__pricing-table {
    margin: auto;
  }

  .final__pricing-table>div {
    float: none;
    width: 100%;
  }

  .final__pricing-table>div:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .final__pricing-body {
    max-width: 100%;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }

  .final__pricing-body ul li {
    display: inline-block;
    vertical-align: middle;
  }

  .final__pricing-body ul li:not(:first-child) {
    margin-left: -5px;
  }

  .final__pricing-body ul li:nth-child(2n) {
    background-color: #e8e8e8;
  }

  .final__pricing-footer {
    padding-top: 0;
  }
}

ul.ks-cboxtags {
  list-style: none;
  padding: 20px;
}

ul.ks-cboxtags li {
  display: inline;
}

ul.ks-cboxtags li label {
  display: inline-block;
  background-color: rgba(255, 255, 255, .9);
  border: 2px solid rgba(139, 139, 139, .3);
  color: #adadad;
  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all .2s;
}

ul.ks-cboxtags li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.ks-cboxtags li label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  content: "\f067";
  transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label::before {
  content: "\f00c";
  transform: rotate(-360deg);
  transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label {
  border: 2px solid #1bdbf8;
  background-color: #12bbd4;
  color: #fff;
  transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

ul.ks-cboxtags li input[type="checkbox"]:focus+label {
  border: 2px solid #e9a1ff;
}

ul.ks-radiotags {
  list-style: none;
  padding: 20px;
}

ul.ks-radiotags li {
  display: inline;
}

ul.ks-radiotags li label {
  display: inline-block;
  background-color: rgba(255, 255, 255, .9);
  border: 2px solid rgba(139, 139, 139, .3);
  color: #adadad;
  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all .2s;
}

ul.ks-radiotags li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.ks-radiotags li label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  content: "\f067";
  transition: transform .3s ease-in-out;
}

ul.ks-radiotags li input[type="radio"]:checked+label::before {
  content: "\f00c";
  transform: rotate(-360deg);
  transition: transform .3s ease-in-out;
}

ul.ks-radiotags li input[type="radio"]:checked+label {
  border: 2px solid #1bdbf8;
  background-color: #12bbd4;
  color: #fff;
  transition: all .2s;
}

ul.ks-radiotags li input[type="radio"] {
  display: absolute;
}

ul.ks-radiotags li input[type="radio"] {
  position: absolute;
  opacity: 0;
}

ul.ks-radiotags li input[type="radio"]:focus+label {
  border: 2px solid #e9a1ff;
}
