:root {
  --org-color: #fab23d;
  --accent-color: #ffc812;
  --secondary-color: #000000;
  --secondary-color-tint-1: #262626;
  --secondary-color-tint-2: #383838;
  --threshold: 0.5;
  --border-threshold: 0.8;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  --border-alpha: calc(
    (var(--perceived-lightness) - var(--border-threshold)) * 100
  );
  --border-color: rgba(
    calc(var(--r) - 50),
    calc(var(--g) - 50),
    calc(var(--b) - 50),
    var(--border-alpha)
  );
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

body {
  position: relative;
  z-index: 1;
  direction: rtl !important;
}

/* Header Fix */

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #414c62 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #414c62;
  border-radius: 102px;
  border: 0px solid #ffffff;
}

.header-main .container {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 100%;
}

@media only screen and (min-width: 62rem) and (max-width: 75rem) {
  .header-main .container {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    max-width: 100%;
  }
}

@media only screen and (max-width: 36rem) {
  .header-main .container {
    position: sticky;
    top: 0;
    left: 0;
    transform: translateX(0%);
    z-index: 4;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

.btn-round i {
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  transition: all 0.3s ease;
}

.btn-round a {
  /* background-color: rgb(var(--r), var(--g), var(--b)); */
  background-color: var(--accent-color);
  font-size: 15px;
  display: inline-block;
  margin-left: 10px;
  padding: 6px 20px 6px 4px;
  border-radius: 20px;
  transition: all 0.3s ease;

  color: var(--secondary-color-tint-2);
}

.btn-round span {
  margin-left: 10px;
}

.btn-round a:hover {
  background-color: rgba(var(--r), var(--g), var(--b), 0.9);
  --threshold: 0.5;

  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

.btn-round a:hover i {
  background-color: var(--org-color);
  --threshold: 0.5;

  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable="true"] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    transparent
  );
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right))
      max(25px, env(safe-area-inset-bottom))
      max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-blog:before {
  content: "\f781";
}

.fa-bold:before {
  content: "\f032";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-circle:before {
  content: "\f111";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-fill:before {
  content: "\f575";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-key:before {
  content: "\f084";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-random:before {
  content: "\f074";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-video:before {
  content: "\f03d";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-youtube:before {
  content: "\f167";
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-brands-400.eot);
  src: url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-brands-400.woff2) format("woff2"),
    url(../webfonts/fa-brands-400.woff) format("woff"),
    url(../webfonts/fa-brands-400.ttf) format("truetype"),
    url(../webfonts/fa-brands-400.svg#fontawesome) format("svg");
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-regular-400.eot);
  src: url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-regular-400.woff2) format("woff2"),
    url(../webfonts/fa-regular-400.woff) format("woff"),
    url(../webfonts/fa-regular-400.ttf) format("truetype"),
    url(../webfonts/fa-regular-400.svg#fontawesome) format("svg");
}

.far {
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(../webfonts/fa-solid-900.eot);
  src: url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-solid-900.woff2) format("woff2"),
    url(../webfonts/fa-solid-900.woff) format("woff"),
    url(../webfonts/fa-solid-900.ttf) format("truetype"),
    url(../webfonts/fa-solid-900.svg#fontawesome) format("svg");
}

.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}

.fa,
.fas {
  font-weight: 900;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: vazir;
  src: url("../fonts/Vazir-Regular-FD.woff") format("woff");
  font-weight: normal;
  font-display: block;
}

@font-face {
  font-family: vazir;
  src: url("../fonts/Vazir-Bold-FD.woff") format("woff");
  font-weight: bold;
  font-display: block;
}

body {
  font-family: vazir;
}

/* ============================== Variables */

/* :root {
  --blue-light: #007dfe;
  --blue-dark: var(--org-color);
  --blue-dark-2: #0137a4;
} */

/* ============================== CSS RESET */

* {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--org-color);
}

a:hover {
  color: var(--org-color);
}

html {
  font-size: 16px;
}

/* === btn Round */

.btn-round a:hover {
  background-color: var(--secondary-color-tint-1);
  color: var(--accent-color);
}

.btn-round a:hover i {
  background-color: var(--accent-color);
}

/* === Btn main */

.btn-main a {
  background-color: var(--org-color);
  display: inline-block;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-main a span {
  margin-left: 0.9rem;
}

.btn-main a i {
  vertical-align: middle;
  font-size: 1.2rem;
}

/* === Btn more */

.btn-more a {
  font-size: 1rem;
  border: 2px solid var(--org-color);
  padding: 0.6rem 2rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--org-color);
  position: relative;
  overflow: hidden;
}

.btn-more a:hover {
  transform: scale(1.2);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  background-color: var(--org-color);
}

.btn-more a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  background-color: var(--org-color);
  transition: all 0.3s ease;
  z-index: -1;
  transform: rotate(90deg);
  opacity: 0;
}

.btn-more a:hover::before {
  opacity: 1;
  transform: rotate(0);
}

/* === Responsive Btn */

.responsive-btn {
  /* background-color: #efefef;
  outline: none;
  border: none;
  font-size: 1.5rem;
  padding: 0.6rem 0 0.6rem 1.2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */

  background-color: #efefef;
  outline: none;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  /* padding: 0.6rem 0 0.6rem 1.2rem; */
  border-radius: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
}

/* === Header main */

.header-main__menu {
  /* background-color: #fff; */
  background-color: var(--secondary-color-tint-2);
  box-shadow: 0 4px 14px rgba(5, 81, 81, 0.07);
  border-radius: 5px;
  padding: 0;
}

@media only screen and (max-width: 36rem) {
  .header-main__menu {
    border-radius: 0;
    display: flex;
    justify-content: center;
  }
}

.header-main__menu-brand a img {
  width: 8rem;
  object-fit: scale-down;
}

.header-form .input-group,
.blog-content-search {
  border-radius: 5px;
  overflow: hidden;
}

.header-form input,
.blog-content-search input,
.header-responsive-form input {
  padding: 6px 10px;
  font-size: 13px;
  outline: none !important;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.header-form input::placeholder,
.blog-content-search input::placeholder,
.header-responsive-form input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.header-responsive-form {
  z-index: 10;
}

.header-responsive-form > div,
.header-form .header-search-form {
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  border-radius: 5px;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 99;
}

.header-form .header-search-form {
  right: -38%;
}

.header-responsive-form-show,
.header-search-form-show {
  transform: translateY(5px) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: 0.4s;
}

.header-form button,
.blog-content-search button {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color) !important;
}

.header-form a,
.header-form a:hover {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  border-radius: 1.125rem;
}

.header-responsive-form button {
  background-color: var(--org-color);
  color: #fff !important;
}

.header-responsive-form > button {
  outline: none;
  border: none;
  background-color: transparent;
  color: #000 !important;
}

.header-main__menu-list > ul {
  display: flex;
  align-items: center;
}

.header-main__menu-list > ul > li {
  margin-left: 2.5rem;
  position: relative;
  padding: 1.7rem 0;
}

.header-main__menu-list > ul > li:hover > a {
  color: var(--org-color);
}

.header-main__menu-list ul li i {
  font-size: 1.1rem;
  color: #587c8a;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.header-main__menu-list > ul > li::after {
  content: "";
  position: absolute;
  background-color: var(--blue-light);
  width: 30%;
  height: 0.3rem;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.3s ease;
}

.header-main__menu-list > ul > li:hover::after {
  opacity: 1;
  visibility: visible;
  width: 80%;
}

.header-main__menu-list > ul > li:hover > a i {
  color: var(--blue-light);
}

/* level 1 menu */

.header-main__menu-list > ul > li > ul {
  position: absolute;
  background-color: var(--secondary-color-tint-2);
  /* width: 15rem; */
  width: max-content;
  min-width: 15rem;
  top: 5.4rem;
  right: 0;
  padding: 10px;
  border-radius: 0.4rem;
  box-shadow: 0 4px 14px rgba(5, 81, 81, 0.07);
  z-index: 9;
  display: none;
  transform: translateY(-8px);
}

.header-main__menu-list > ul > li:hover > ul {
  display: block;
}

.header-main__menu-list > ul > li > ul li {
  padding: 1rem;
  padding-left: 0;
  border-top: 1px solid #ffc81242;
  transition: all 0.3s ease;
  position: relative;
}

.header-main__menu-list > ul > li > ul li:first-child {
  border-top-color: transparent;
}

.header-main__menu-list > ul > li > ul li:hover > a {
  color: var(--org-color);
}

.header-main__menu-list ul li ul li a i {
  float: left;
  line-height: 2rem;
}

/* level 2 menu */

.header-main__menu-list > ul > li > ul > li > ul {
  position: absolute;
  width: max-content;
  min-width: 15rem;

  right: 103%;
  background-color: var(--secondary-color-tint-2);
  top: 0;
  border-radius: 0.4rem;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(5, 81, 81, 0.07);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-right: 5px;
}

.header-main__menu-list > ul > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}

.header-main__menu-list > ul > li > ul > li > ul li {
  padding: 10px;
}

/* level 3 menu */

.header-main__menu-list > ul > li > ul > li > ul > li ul {
  position: absolute;
  width: max-content;
  min-width: 15rem;
  right: 103%;
  background-color: #fff;
  top: 0;
  border-radius: 0.4rem;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(5, 81, 81, 0.07);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-right: 6px;
}

.header-main__menu-list > ul > li > ul > li > ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}

.header-main__menu-list > ul > li > ul > li > ul > li ul li {
  padding: 10px;
}

/* === Responsive Menu */
.responsive-menu__header {
  background-color: var(--secondary-color-tint-1);
  border-bottom: 1px solid #ffc81242;
  height: 6vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.3rem;
}

/* .responsive-menu__header .btn-close {
  font-size: 14px;
  color: #57606a !important;
  opacity: 1;
} */

.responsive-menu__header .btn-close {
  /* font-size: 20px;
  color: #57606a !important;
  opacity: 1;
  margin-left: auto;
  margin-right: 0; */
  font-size: 32px;

  opacity: 1;
  margin-left: auto;
  margin-right: 0;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 24 24'%3E%3Cpath fill='white' fill-rule='evenodd' d='M6.793 6.793a1 1 0 0 1 1.414 0L12 10.586l3.793-3.793a1 1 0 1 1 1.414 1.414L13.414 12l3.793 3.793a1 1 0 0 1-1.414 1.414L12 13.414l-3.793 3.793a1 1 0 0 1-1.414-1.414L10.586 12L6.793 8.207a1 1 0 0 1 0-1.414' clip-rule='evenodd'/%3E%3C/svg%3E")
    center/1em auto no-repeat;
  width: 0;
}

.responsive-menu__body {
  height: 100%;
  overflow-y: scroll;
  background-color: var(--secondary-color-tint-2);
}

.responsive-menu__list > ul > li {
  border-bottom: 1px solid #ffc81242;
  margin-bottom: 0.5rem;
  padding: 1.5rem 1rem;
}

.responsive-menu__list > ul > li:last-child {
  border-bottom: none;
}

.responsive-menu__list > ul > li > a {
  /* color: #242424; */
  color: #fff;
}

.responsive-menu__list > ul > li .arrow-down-responsive-header {
  background-color: var(--org-color);
  height: 25px;
  width: 25px;
  font-size: 1.2rem;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color) !important;
  float: left;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -3px;
  transition: 0.3s ease;
  cursor: pointer;
}

.responsive-menu__list ul li i.rotate {
  transform: rotate(180deg);
}

.responsive-menu__list > ul > li ul li i {
  background-color: #adb5bd;
  height: 20px;
  width: 20px;
  font-size: 1.1rem;
  margin-top: auto;
}

.responsive-menu__list ul li ul {
  /* background-color: #e9ecef; */
  /* background-color: var(--secondary-color-tint-1); */
  background-color: #323232;
  border-radius: 1rem;
  margin-top: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.responsive-menu__list ul li ul.show {
  margin-top: 2rem;
  height: auto;
  opacity: 1;
}

.responsive-menu__list ul li ul li {
  padding: 1.2rem 1rem;
  padding-right: 1.2rem;
}

.responsive-menu__list ul li ul li:not(:first-child) {
  border-top: 1px solid #ffc81214;
}

.responsive-menu__list ul li ul li a {
  font-size: 1rem;
  color: #fff;
}

@media only screen and (max-width: 25rem) {
  .responsive-menu__list ul li ul li a {
    font-size: 0.9rem;
    color: #fff;
  }
}

.responsive-menu__list ul li ul li ul {
  background-color: #383838;
  /* border-right: 2px solid #dee2e6; */
}

.responsive-menu__list ul li ul li ul li ul {
  background-color: #323232;
}

/* === Main Content Info */

.main-content-carousel.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 5px;
}

.main-content-carousel.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--org-color);
}

/* === Main Slider Info */

.main-slider-carousel.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--org-color);
  width: 15px;
  height: 5px;
}

.main-slider-carousel.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 5px;
  margin: 5px 4px;
}

/* === Head Info */

.head-info__title {
  font-size: 20px;
  color: var(--org-color);
  position: relative;
  display: inline-block;
}

.head-info__title.dark-bg {
  font-size: 20px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.head-info__title--white {
  color: #fff;
}

.head-info__title::after {
  content: "";
  position: absolute;
  background-color: var(--org-color);
  height: 2px;
  width: 25px;
  top: 50%;
  transform: translateY(-50%);
  right: -2.1rem;
}

.head-info__title.bg-dark::after {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  height: 2px;
  width: 25px;
  top: 50%;
  transform: translateY(-50%);
  right: -2.1rem;
}

.head-info__desc {
  font-size: 1.3rem;
  color: #100221;
  font-weight: 600;
  line-height: 2.1rem;
}

.head-info__desc.dark-bg {
  color: var(--org-color);
  font-weight: 500;
}

/* === Services */

.services {
  padding: 5rem 0;
  background-color: var(--secondary-color-tint-1);
}

@media only screen and (max-width: 62rem) {
  .services {
    padding: 40px 0;
    padding-bottom: 10px;
  }
}

.services__item {
  background-color: #fff;
  /* box-shadow: 0 4px 40px rgba(182, 185, 255, 0.32); */
  border-radius: 32px;
  padding: 21px 19px 37px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px #ffc8121c;
}

.services__item-icon {
  width: 100%;
  text-align: center;
}

.services__item-icon svg {
  margin-right: 11px;
}

.services__item-title {
  font-size: 1rem;
  color: #262626;
  font-weight: 600;
}

.services__item-desc {
  font-size: 13px;
  color: #262626;
  text-align: justify;
  line-height: 26px;
}

/* .services__item--selected {
  background: linear-gradient(360deg, #6b63ff 0%, #1799fb 100%);
  z-index: 1;
  animation: service_item_selected 0.5s linear;
} */

.services__item--selected {
  background: linear-gradient(
    360deg,
    var(--org-color) 20%,
    var(--accent-color) 100%
  );
  z-index: 1;
  animation: service_item_selected 0.5s linear;
}

@keyframes service_item_selected {
  from {
    opacity: 0.5;
    border-radius: 30%;
    transform: skew(5deg, -3deg);
  }

  to {
    opacity: 1;
    transform: skew(0);
  }

  /* 0% {
    opacity: 0.5;
    border-radius: 30%;
    transform: skew(5deg, -3deg);
  }
  50%{
    opacity: 0.75;
    border-radius: 15%;
    transform: skew(2.5deg, -1.5deg);
  }
  100%{
    opacity: 1;
    transform: skew(0);
  } */
}

.services__item--selected .services__item-title {
  color: var(--secondary-color-tint-1);
}

.services__item--selected .services__item-desc {
  color: var(--secondary-color-tint-2);
}

.services__item-icon .services-icon {
  color: #000;
}

.services__item--selected .services__item-icon .services-icon {
  color: #fff;
}

/* === About us */

/* .about-area .about-content-container {
  margin: 3rem 0;
} */

.about-area .about-image {
  /* margin-bottom: 2rem; */
  margin-bottom: 0;
}

.about-area .about-image img,
.contact-area .contact-image img {
  border-radius: 15px;
}

.about-area .about-text > p,
.contact-area .contact-text > p {
  font-size: 16px;
  text-align: justify;
  margin: 30px 0;
}

.about-area .about-text > a {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

/* === Contact Us area */

.contact-area {
  margin: 3rem 0;
}

.contact-area .conatct-cart {
  border-radius: 7px;
}

.contact-area .conatct-cart:hover .contact-icon-container {
  background-color: var(--secondary-color-tint-2);
}

.contact-area .contact-icon-container {
  padding: 15px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transition: 0.3s;
  line-height: 0;
}

.contact-area .contact-icon-container .contact-icon {
  /* color: var(--org-color); */
  color: var(--secondary-color-tint-1);
  transition: 0.3s;
}

.contact-area .conatct-cart:hover .contact-icon-container .contact-icon {
  /* --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  ); */
  color: var(--accent-color);
}

.contact-area .conatct-cart span {
  font-size: 1rem;
  /* color: var(--org-color); */
  color: var(--secondary-color-tint-2);
  font-size: 16px;
}

/* === Articles */

.articles {
  /* margin: 3rem 0; */
  padding: 4rem 0 1rem;
  background: linear-gradient(180deg, #f7fbff 0%, rgba(255, 200, 18, 0) 100%);
}

@media only screen and (max-width: 62rem) {
  .articles {
    /* margin: 3rem 0; */
    padding: 40px 0 1rem;
  }
}

.articles__item {
  background-color: #fff;
  box-shadow: 0 20px 20px rgba(220, 226, 255, 0.38);
  border-radius: 2rem;
  overflow: hidden;
}

.articles__item-thumb a {
  display: block;
}

.articles__item-thumb img {
  width: 100%;
  object-fit: cover;
}

.articles__item-content {
  padding: 1rem 1.5rem 1.9rem;
}

.articles__item-title a {
  font-size: 1rem;
  font-weight: 600;
  color: #001b24;
  transition: color 0.3s ease;
}

.articles__item-title a:hover {
  color: var(--org-color);
}

.articles__item-text {
  font-size: 14px;
  line-height: 1.9rem;
}

.articles__item-link a {
  font-size: 1rem;
  color: var(--org-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.articles__item-link a:hover {
  color: #001b24;
}

/* === Main Slider */

.slider__item {
  overflow: hidden;
  border-radius: 15px;
}

.slider__item-title > a {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.slider__item-title > a:hover {
  color: var(--org-color);
}

.slider__item-text > p {
  font-size: 14px;
}

.slider__item-link > a {
  font-size: 14px;
  color: var(--org-color);
  transition: 0.3s;
}

.slider__item-link > a:hover {
  color: #000;
}

/* === Videos */

.videos {
  padding: 5rem 0 4rem 0;
}

@media only screen and (max-width: 62rem) {
  .videos {
    padding: 40px 0 2rem 0;
  }
}

.videos__head {
  display: flex;
  align-items: center;
  line-height: 0;
}

.videos__head-icon {
  font-size: 1.7rem;
  color: var(--accent-color);
  padding: 8px;
  background-color: var(--secondary-color-tint-1);
  border-radius: 50%;
}

.videos__head-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.videos__spec {
  height: 27.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.videos__spec::before {
  content: "";
  position: absolute;
  bottom: -16rem;
  width: 100%;
  height: 12rem;
  box-shadow: 0 -117px 32px rgba(0, 0, 0, 0.9);
  transform: scale(1.2);
}

.videos__spec-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media only screen and (max-width: 48rem) {
  .videos__spec-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: black;
  }
}

.videos__spec-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  transform: translate(-50%, -50%);
}

.videos__spec-icon--sm {
  font-size: 1.2rem;
}

.videos__spec-icon i {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 3px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  transition: all 0.3s ease;
}

.videos__spec-icon--sm i {
  width: 3.5rem;
  height: 3.5rem;
  border-width: 2px;
  padding-left: 3px;
}

.videos__spec-icon:hover i {
  color: #eff7ff;
  border-color: #eff7ff;
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}

.videos__spec-content {
  position: absolute;
  bottom: 7rem;
  right: 5rem;
  left: 5rem;
}

.videos__spec-tag a {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  font-size: 14px;
  padding: 3px 1.2rem;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s ease;
}

.videos__spec-tag a:hover {
  background-color: #9535af;
}

.videos__spec-title a {
  font-size: 1.3rem;
  color: #fff;
  line-height: 2rem;
  transition: background 0.3s ease;
}

.videos__spec-title a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.videos__spec-footer {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.videos__spec-date {
  color: #fefefe;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos__spec-date--gray {
  color: #787878;
}

.videos__spec-view {
  color: #f34343;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos__item-thumb {
  width: 100%;
  height: 12.5rem;
  position: relative;
}

.videos__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.videos__item-title a {
  font-size: 1rem;
  color: #6e6e6e;
  font-weight: 600;
  transition: color 0.3s ease;
}

.videos__item-title a:hover {
  color: #001b24;
}

/* --- Footer */

.footer {
  margin-top: 20rem;
  background-color: var(--secondary-color-tint-1);
  border-radius: 12.5rem 0 0 0;
  padding: 6rem 0 0;
}

.footer__info {
  background-color: #fff;
  box-shadow: 0 5px 23px rgba(0, 0, 0, 0.09);
  border-radius: 15px;
  padding: 1rem;
  margin-left: 2rem;
  position: relative;
  margin-top: -19rem;
}

.footer__info-dots {
  position: absolute;
  top: -3rem;
  right: -3rem;
  z-index: -1;
}
.footer__tel {
  display: flex;
  border-bottom: 2px solid #f6f6f6;
  padding-bottom: 5px;
}

.footer__tel-icon {
  font-size: 3rem;
  color: var(--org-color);
}
.footer__tel-content {
  display: flex;
  flex-direction: column;
}

.footer__info-label {
  font-size: 1rem;
  color: #595959;
}

.footer__info-tel {
  font-size: 20px;
  color: #001b24;
  letter-spacing: 3px;
  transition: color 0.3s ease;
  text-align: end;
}

.footer__info-tel:hover {
  color: var(--blue-dark-2);
}

.footer__brand-img {
  /* width: 8rem; */
  width: 6rem;
}

.footer__brand-title {
  font-size: 1.5rem;
  color: #001b24;
  font-weight: 600;
}
.footer__contact-item {
  display: flex;
  align-items: center;
}
.footer__contact-item i {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.footer__contact-item-val {
  font-size: 14px;
  color: #31474e;
  /* line-height: 2.5rem; */
  line-height: 2;
}

.footer__social ul {
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer__content {
  display: flex;
  justify-content: center;
  text-align: start;
}

.footer__link:first-child {
  /* margin-left: 5rem;
  padding-right: 6rem; */
  /* margin-left: 7rem;
  padding-right: 5.5rem; */
}

.footer__link ul li {
  margin-bottom: 1.4rem;
}

.footer__link ul li a {
  font-size: 13px;
  color: #fff;
  transition: color 0.2s ease;
  position: relative;
}

.footer__link ul li a:hover {
  color: var(--accent-color);
}

.footer__link ul li a::before {
  content: "";
  position: absolute;
  right: -1.5rem;
  width: 8px;
  height: 3px;
  background-color: var(--org-color);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 1rem 2rem 2rem 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
}

.footer__link ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}

.social-media-footer {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  background-color: var(--org-color);
  padding: 4px;
  border-radius: 50%;
}

.footer__copyright {
  padding: 0 3rem;
}

.footer__copyright-text {
  margin-top: 5rem;
  color: #d9d9d9;
  border-top: 1px solid #ffc81242;
  padding: 2rem 0;
}

@media only screen and (max-width: 62rem) {
  .footer__copyright-text {
    margin-top: 1rem;
  }
}

/* Blog Area */

.content-wrapper {
  height: 100px;
  position: relative;
}
.content-text {
  position: absolute;
  /* z-index: 100; */
  left: 0;
  top: 50%;
  width: 100%;
  color: white;
  text-align: center;
}

.content-text h1 {
  font-size: 32px;
  font-weight: bold;
}

.blogs-content {
  padding: 8.125rem 0;
}

.blog-content-search a {
  padding: 10px;
}

.blogs-content .last-blog-container h2::after,
.blogs-content .tags-container h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--org-color);
  right: 0;
  bottom: 0;
}

.last-blog-container .last-blog {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
}

.last-blog-container h2 {
  font-size: 1.2rem;
}

.last-blog-container h5 {
  font-size: 0.8rem;
}

.last-blog-container .last-blog img {
  width: 110px;
}

/* .blogs-content .blog-cart > h3 > a,
.last-blog-container .last-blog > div > h3 > a {
  font-size: 1.1rem;
} */

.blogs-content .blog-cart .blog-info-author,
.blogs-content .blog-cart .blog-info-date {
  color: #595959;
}

.blogs-content .blog-cart .blog-info-author,
.blogs-content .blog-cart .blog-info-date,
.blogs-content .blog-cart .blog-info {
  font-size: 0.8rem;
}

.blogs-content .blog-cart p {
  font-size: 13px;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blogs-content .blog-cart p:not(:nth-of-type(2)) {
  color: red;
  display: none;
}

.active-blog-pagination,
.blog-pagination a:hover,
.blog-pagination a:focus {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color) !important;
}

.single-blog-content p {
  font-size: 15px;
  text-align: justify;
  margin: 15px 0 30px 0;
}

.single-blog-content h6 {
  color: var(--org-color);
}

/* End Blog Area */

/* Start Gallery Area */

.single-photo {
  margin-bottom: 30px;
}

.single-photo > div {
  margin-right: 20px;
  cursor: pointer;
}

/* End Gallery Area */

/* Start Single Service */

.single-service {
  margin-top: 6rem;
}

.single-service .service-text > h3 {
  color: var(--org-color);
}

.single-service .service-text > p {
  font-size: 16px;
  text-align: justify;
}

.single-service .service-label {
  font-size: 15px;
  margin-left: 20px;
}

.single-service .service-label span {
  color: var(--org-color);
}

/* End Single Service */

/* **************** Responsive **************** */

@media (max-width: 1199px) {
  .header-main__menu {
    padding: 10px 10px;
  }

  .header-main__menu-list > ul > li {
    margin-left: 2rem;
  }

  .blogs-content .blog-cart .blog-info-author,
  .blogs-content .blog-cart .blog-info-date,
  .blogs-content .blog-cart .blog-info {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .header-main__menu > .container > .row {
    flex-direction: row-reverse;
  }

  .header-main__menu > .container > .row > div:first-child {
    text-align: end;
  }

  .responsive-btn {
    background-color: #fff;
  }

  .header-form > .input-group > .input-group-text {
    background-color: #fff;
    border: none;
  }

  .header-form > .input-group > .input-group-text > .search-header-icon {
    color: #000;
  }

  .single-photo:nth-child(odd) > div {
    margin-right: 0;
  }

  .about-area .about-image,
  .about-area .about-image img {
    width: 100% !important;
  }

  .about-area .about-text {
    /* margin: 20px !important; */
  }

  .blogs-content .blog-cart > h3 > a,
  .last-blog-container .last-blog > div > h3 > a {
    font-size: 1.5rem;
  }

  .blogs-content .blog-cart .blog-info-author,
  .blogs-content .blog-cart .blog-info-date,
  .blogs-content .blog-cart .blog-info {
    font-size: 0.9rem;
  }
}

/* --- Medium devices (tablets, less than 992px) */

@media (min-width: 768px) and (max-width: 991.98px) {
  /* html {
    font-size: 15px;
  } */

  /* --- Btn main responsive */

  .btn-main a {
    font-size: 1rem;
  }

  /* --- Btn more responsive */

  .btn-more a {
    font-size: 1rem;
  }

  /* --- header main content responsive */

  .header-main__content {
    margin-bottom: 2rem;
  }

  .header-main__content-box {
    width: 60%;
  }

  .header-main__content-desc {
    font-size: 1.8rem;
    line-height: 3.8rem;
  }

  /* --- Head Info responsive */

  .head-info__title::after {
    right: -3.5rem;
  }

  /* --- Services responsive */

  .services__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 3rem;
  }

  .services__item-icon {
    width: 20%;
  }
  /* 
  .services__item-title {
    width: 80%;
    padding-right: 1.2rem;
    font-size: 1.2rem;
  } */

  .services__item-desc {
    font-size: 18px;
    line-height: 4rem;
  }

  /* --- Articles responsive */

  .articles__item {
    display: flex;
    height: 100%;
    position: relative;
  }

  .articles__item-thumb {
    height: 100%;
  }

  .articles__item-thumb a {
    height: 100%;
  }

  .articles__item-thumb img {
    height: 100%;
    width: 18rem;
    object-position: center center;
  }

  .articles__item-content {
    padding: 4rem 2.5rem;
  }

  .articles__item-title a {
    font-size: 1.1rem;
  }

  .articles__item-text {
    font-size: 1rem;
  }

  .articles__item-link a {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #001b24;
    padding: 10px 30px;
    color: #fff;
    border-radius: 0 1.2rem 0 0;
    font-size: 1rem;
  }

  .articles__item-link a:hover {
    color: #f1f1f1;
  }

  /* --- Videos responsive */

  .videos__spec {
    height: 18rem;
  }

  .videos__spec::before {
    bottom: -18rem;
    height: 13rem;
  }

  .videos__spec-content {
    bottom: 5rem;
    right: 2rem;
    left: 2rem;
  }

  .videos__spec-footer {
    bottom: 1rem;
    padding: 0 2rem;
  }

  .videos__spec .videos__spec-icon {
    top: -2px;
    left: -2px;
    font-size: 2.5rem;
    transform: translate(0);
    border: none;
  }

  .videos__spec .videos__spec-icon i {
    width: 8rem;
    height: 8rem;
    color: #001b24;
    background-color: #fff;
    border-radius: 0 0 4rem 0;
  }

  .videos__spec .videos__spec-icon:hover i {
    border: none;
    transform: scale(1);
  }

  .videos__item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 20px 20px rgba(220, 226, 255, 0.38);
  }

  .videos__item-thumb {
    width: 21rem;
    height: 12.5rem;
  }

  .videos__item-thumb img {
    border-radius: 10rem 0 0 4rem;
  }

  .videos__item-content {
    padding: 2rem 4rem;
    width: 100%;
  }

  .videos__item-title a {
    font-size: 1rem;
    line-height: 1.9rem;
  }

  /* .videos__spec-date,  .videos__spec-view {
    font-size: 1.5rem;
  } */

  /* --- Footer responsive */

  .footer__info {
    margin-left: 2rem;
  }

  .footer__brand-title {
    font-size: 1.8rem;
  }

  .footer__info-label,
  .footer__contact-item-val {
    line-height: 1.4rem;
  }

  .footer__info-dots {
    top: -3rem;
    right: 1rem;
  }

  .footer__head {
    /* padding-right: 4.5rem; */
  }

  .footer__content {
    justify-content: start;
  }

  .footer__copyright {
    padding: 0 3rem;
  }
}

/* === Small devices (landscape phones, less than 768px) */

@media (max-width: 767.98px) {
  /* html {
    font-size: 14px;
  } */

  .header-main__menu {
    padding: 1.3rem;
  }

  .header-main__content-desc {
    font-size: 1.8rem;
    line-height: 3.8rem;
  }

  .content-wrapper {
    padding: 0 1.3rem;
  }

  /* --- header main content responsive */

  .header-main__content {
    margin-bottom: 0;
  }

  .header-main__content-box {
    width: 90%;
  }

  /* --- Head Info responsive */

  .head-info__desc {
    width: 80%;
    margin: 0 auto;
  }

  .head-info__title::after {
    right: -3.5rem;
  }

  /* --- Services responsive */

  .services__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 3rem;
  }

  .services__item-icon {
    width: 20%;
  }
  /* 
  .services__item-title {
    width: 80%;
    padding-right: 2rem;
  } */

  .services__item-desc {
    font-size: 1.125rem;
    line-height: 4rem;
  }

  /* --- About us responsive */

  .about-area .about-text > p {
    font-size: 14px;
  }

  /* .about-area .about-text > h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
  } */

  /* --- Articles responsive */

  .articles__item {
    display: flex;
    height: 100%;
    position: relative;
  }

  .articles__item-thumb {
    height: 100%;
  }

  .articles__item-thumb a {
    height: 100%;
  }

  .articles__item-thumb img {
    height: 100%;
    width: 10rem;
    object-position: center center;
  }

  /* .articles__item-content {
    padding: 4rem 2rem;
  } */
  /* 
  .articles__item-link a {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #001b24;
    padding: 10px 30px;
    color: #fff;
    border-radius: 0 1.2rem 0 0;
    font-size: 1rem;
  } */

  .articles__item-link a:hover {
    color: #f1f1f1;
  }

  /* --- Videos responsive */

  .videos__spec {
    /* height: 25rem; */
    height: 18rem;
  }

  .videos__spec::before {
    bottom: -18rem;
    height: 13rem;
  }

  .videos__spec-content {
    /* bottom: 5rem; */
    bottom: 3rem;
    right: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background: #00000063;
  }

  .videos__spec-footer {
    bottom: 1rem;
    padding: 0 2rem;
  }

  .videos__spec .videos__spec-icon {
    top: -2px;
    left: -2px;
    font-size: 2.5rem;
    transform: translate(0);
    border: none;
  }

  .videos__spec .videos__spec-icon .play-icon {
    width: 5rem;
    height: 5rem;
    color: #001b24;
    background-color: #fff;
    border-radius: 0 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .videos__spec .videos__spec-icon:hover i {
    border: none;
    transform: scale(1);
  }

  .videos__item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 20px 20px rgba(220, 226, 255, 0.38);
  }

  .videos__item-thumb {
    width: 15rem;
    height: 10rem;
  }

  .videos__item-thumb img {
    border-radius: 100px 0 0 40px;
  }

  .videos__item-content {
    padding: 2rem;
    width: 100%;
  }

  /* --- Footer responsive */

  .footer__info {
    margin-left: 0;
  }

  .footer__brand-title {
    font-size: 1.8rem;
  }

  .footer__info-label,
  .footer__contact-item-val {
    line-height: 1.4rem;
  }

  .footer__info-dots {
    top: -3rem;
    right: 1rem;
  }

  .footer__head {
    /* padding-right: 3.5rem; */
  }

  .footer__content {
    justify-content: start;
  }

  .footer__copyright {
    padding: 0 3rem;
  }

  .footer__link:first-child {
    /* margin-left: 8rem;
    padding-right: 2rem; */
  }
}

@media only screen and (max-width: 36rem) {
  .header-main__menu {
    padding: 0.4rem;
  }
  .header-main__menu > .row {
    width: 100%;
  }
}

/*================================================
Login And Register Area CSS
=================================================*/

.login-area .login-content {
  width: 40%;
  box-shadow: 0 0 1.2rem #e6e6e6;
}

.login-area .login-content h1 {
  font-size: 1.8rem;
  line-height: 1.4;
}

.login-area .login-content > p a {
  color: #4d63dd;
}

.login-area .login-content h1 span {
  color: #4d63dd;
}

.login-area .login-content .login-form label {
  text-align: start;
  font-size: 0.9rem;
}

.login-content .login-toolbar li {
  margin: 0 1px;
}

.login-content .login-toolbar li a {
  padding: 10px 30px;
  display: block;
  background-color: var(--org-color);
  --threshold: 0.5;

  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login-content .login-toolbar li:last-child a {
  border-radius: 45px 0 0 45px;
}
.login-content .login-toolbar li:first-child a {
  border-radius: 0 45px 45px 0;
}

.login-content .login-toolbar li a.selected {
  background-color: rgba(var(--r), var(--g), var(--b), 0.9);
}

/* .login-area .login-content .login-form input,
.forget-password-container input {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 10px;
  transition: border-color 0.3s;
  font-size: 0.9rem;
} */

.login-area .login-content .login-form input:focus:not(input[type="submit"]),
.forget-password-container input:focus {
  border-color: #4d63dd;
}

.login-area .login-content .login-form .rules {
  text-align: start;
}

.login-area .login-content .login-form .rules label {
  color: rgba(0, 0, 0, 0.5);
}

.login-area .login-content .login-form a {
  text-align: start;
  font-size: 0.9rem;
  color: #4d63dd;
}

.login-area .login-content .login-form input[type="submit"] {
  padding: 15px;
  background-color: #4d63dd;
}

@media (max-width: 1199px) {
  .login-area .login-content {
    width: 50%;
  }

  .input-group > button {
    font-size: 10px;
  }

  .header-main__menu-list ul li a {
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  .login-area .login-content {
    width: 80%;
  }
}

@media (max-width: 575px) {
  .login-area .login-content {
    width: 100%;
  }
}

/*================================================
Forgot Password Area CSS
=================================================*/

.forget-password-container {
  box-shadow: 0 0 1.2rem #e6e6e6;
}

.forget-password-container .form-title {
  font-size: 1.8rem;
  text-align: center;
  color: #4d63dd;
}

.forget-password-container input {
  background-color: rgba(77, 99, 221, 0.2);
}

.forget-password-container .telNumber-forget {
  text-align: start;
  color: #595959;
  font-size: 13px;
}

.forget-password-container .confirm-button {
  background-color: #4d63dd;
  color: #fff;
  border: 0;
  font-size: 0.9rem;
  font-weight: bold;
}

/*================================================
404 Error Area CSS
=================================================*/

.error-area {
  padding: 10.5rem 0 0;
}

@media only screen and (max-width: 36rem) {
  .error-area {
    padding: 8.5rem 0 0;
  }
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content img {
  width: 45%;
}

.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 14px;
  color: #595959;
}

.error-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  padding: 13px 0;
  margin: 0 auto;
  border-radius: 30px;
  border-color: transparent;
  background: var(--org-color);
  color: #383838;
}

/*================================================
Dashboard Area CSS
=================================================*/
.main-dashboard .dashboard-sidebar > h1 {
  color: #4d63dd;
}

.main-dashboard .dashboard-sidebar > p {
  color: #595959;
}

.main-dashboard .dashboard-sidebar ul {
  padding: 0;
  text-align: start;
}

.main-dashboard .dashboard-sidebar ul li a {
  color: #595959;
  transition: 0.3s;
}

.main-dashboard .dashboard-sidebar ul li:last-child a {
  color: #ff0000;
}

.main-dashboard .dashboard-sidebar ul li a:hover {
  color: #4d63dd;
}

.main-dashboard .dashboard-sidebar > svg {
  margin-top: 1.5rem;
  width: 100%;
}

.main-dashboard .dashboard-content > div > div {
  flex: 1;
}

.main-dashboard .dashboard-content > div > div > a {
  display: block;
  color: #4d63dd;
}

.main-dashboard .dashboard-content .dashboard-title {
  color: #4d63dd;
}

.main-dashboard .dashboard-content .dashboard-text {
  color: #595959;
}

.main-dashboard .dashboard-content p:nth-child(odd) {
  color: #4d63dd;
}

/*================================================
Personal-Info Area CSS
=================================================*/

.main-dashboard .dashboard-content .personal-info-form div form {
  flex: 1;
  text-align: start;
}

.main-dashboard .dashboard-content .personal-info-form div div label {
  color: #4d63dd;
}

.main-dashboard .dashboard-content .personal-info-form div form input {
  background-color: #e9ecef;
  outline: none;
}

.personal-save {
  background-color: #4d63dd;
  color: white;
  outline: none;
}

/*================================================
appointment Orders Area CSS
=================================================*/

.dashboard-content table {
  text-align: start;
}

.dashboard-content table > tbody > tr {
  transition: 0.2s;
}

.dashboard-content table > tbody > tr:hover {
  background-color: #ececec;
}

.bg-green {
  background-color: rgb(0, 190, 0);
  color: #fff;
}

.bg-red {
  background-color: rgb(255, 40, 40);
  color: #fff;
}

/*================================================
appointment Area CSS
=================================================*/

.appoinment-title {
  background-color: #4d63dd;
  color: #fff;
}

.basket-status-layer {
  background-color: #ffffff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 20px 25px;
  margin-bottom: 30px;
  position: relative;
  z-index: -20 !important;
}

.mt-120 {
  margin-top: 7.5rem;
}

.basket-status-layer .inner {
  width: 100%;
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.basket-status-layer .inner .status-point {
  width: 100%;
  float: right;
  text-align: center;
  position: relative;
}

.basket-status-layer .inner .status-point:before {
  width: 70%;
  height: 25px;
  position: absolute;
  top: 0;
  left: -35%;
  border-bottom: 1px solid #d6dce8;
  content: "";
  z-index: 2;
}

.basket-status-layer .inner .status-point:first-child:after {
  width: 80%;
  height: 25px;
  position: absolute;
  top: 0;
  right: -45%;
  border-bottom: 1px dashed #d6dce8;
  content: "";
  z-index: 2;
}

.basket-status-layer .inner .status-point:before {
  width: 70%;
  height: 25px;
  position: absolute;
  top: 0;
  left: -35%;
  border-bottom: 1px solid #d6dce8;
  content: "";
  z-index: 2;
}

.basket-status-layer .inner .status-point .number {
  width: 57px;
  padding: 3px;
  position: relative;
  display: block;
  text-align: center;
  line-height: 45px;
  height: 57px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  z-index: 4;
  margin: 0 auto;
  font-weight: bold;
  color: #dfe0f4;
  font-size: 3rem;
}

.basket-status-layer .inner .status-point.done .number {
  font-weight: bold;
  color: #4d63dd;
}

.basket-status-layer .inner .status-point .title {
  color: #4d63dd;
  text-align: center;
  display: block;
  word-spacing: -2px;
  padding-top: 3px;
  font-size: 1.1rem;
}

.basket-status-layer .inner .status-point.current .title,
.basket-status-layer .inner .status-point.done .title {
  color: #4d63dd;
  font-weight: 500;
}

.basket-status-layer .inner .status-point.current .number {
  font-weight: bold;
  color: #4d63dd;
}

.bg-org-light {
  background-color: #4d63dd;
  color: #fff;
}

.patient-info,
.patient-reserve {
  box-shadow: rgb(0, 0, 0, 0.15) 0px 0px 1rem;
  border-radius: 5px;
  padding: 2em;
  margin-bottom: 1.5em;
}

.appointment-details ul li {
  text-align: right;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #555;
}

.datesSlider {
  position: relative;
  padding: 0 2em;
}

.slideBtns.prevBtn {
  right: 0;
}

.slideBtns {
  position: absolute;
  border-width: 0;
  outline-width: 0;
  background-color: transparent;
  color: var(--org-color);
  bottom: 0;
  line-height: 0;
  font-size: 2.2rem;
  padding: 0;
  z-index: 10;
}

.slideBtns.nextBtn {
  left: 0;
}

.slideBtns[disabled] {
  color: var(--alpha-color);
}

.datesSliderWraper {
  overflow-x: hidden;
}

.dayItem {
  padding: 0 1.5em;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s linear;
}

.dayItem::after,
.dayItem.active::after,
.dayItem.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: #d8d8d8;
  transition: 0.3s linear;
}

.dayItem.active::after {
  background-color: var(--org-color);
  animation: activeDayItem 0.3s linear;
}

.dayItem.active::before {
  background-color: #d8d8d8;
}

@keyframes activeDayItem {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.dayItem p {
  font-weight: 600;
  color: var(--org-color);
  font-size: 15px;
}

.date-values ul {
  padding: 0 2em;
  display: flex;
  flex-wrap: wrap;
  text-align: right;
}

.date-values ul li {
  background-color: rgb(238, 238, 238);
  list-style-type: none;
  font-size: 1rem;
  width: 4.375rem;
  border-radius: 0.85rem;
  cursor: context-menu;
  border: 1px solid #adb5bd;
  height: 2.5rem;
  margin: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-values ul li.available:hover {
  background-color: #ced0d3;
}

.date-values ul li.available {
  color: var(--org-color);
  background-color: transparent;
  border: 1px solid #333;
  cursor: pointer;
  transition: 0.3s;
}

.date-values ul li p {
  color: #4f4f4f;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.625rem;
}

.date-values ul li.available p span:first-child {
  text-decoration: none;
}

.date-values ul li p span:first-child {
  text-decoration: line-through;
}

.date-values ul li p span:last-child,
.date-values ul li:hover p span:first-child {
  display: none;
}

.date-values ul li:hover p span:last-child {
  display: block;
  color: #333333;
}

.loader iconify-icon {
  font-size: 3rem;
  color: var(--org-color);
}

@media screen and (max-width: 992px) {
  .date-values ul {
    justify-content: center;
  }
}

.outline-btn {
  font-size: 16px;
  color: var(--org-color);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -ms-inline-grid;
  display: inline-grid;
  padding: 12px 40px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid var(--org-color);
  transition: 0.3s;
}

.outline-btn:hover {
  background-color: var(--org-color);
  color: #fff;
}

.doctor-info img {
  width: 8.5em;
  height: 8.5em;
  border-radius: 1em;
  border: 3px solid rgb(236, 242, 255);
  margin-bottom: 1.5em;
}

.doctor-info span {
  color: #4d63dd;
  flex-grow: 1;
}

.doctor-info ul li {
  list-style-type: none;
  padding: 1em 0;
  border-bottom: none;
  text-align: right;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #555;
}

.patient-info,
.patient-reserve {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 5px;
  padding: 2em;
  margin-bottom: 1.5em;
}

.patient-info h5 {
  text-align: right;
  font-size: 1.075rem;
  font-weight: bold;
  color: #4d63dd;
  margin: 0.8rem;
}

.patient-info ul li {
  list-style-type: none;
  text-align: right;
  padding: 0.8em 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #555;
  border-bottom: 1px solid rgba(173, 181, 189, 0.2);
  font-size: 15px;
}

.appointment-btn {
  background-color: #4d63dd;
  color: #fff;
  width: 100%;
  margin: 1em 0;
  padding: 0.7em;
  font-size: 0.9375rem;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.2s;
}

.appointment-btn:hover {
  color: #fff;
}

.reciept-info p:last-child {
  font-size: 0.9rem;
}

.reciept-info .go-home {
  background-color: #4d63dd;
  border-color: transparent;
  font-size: 0.9rem;
}

/* All Doctors Page */
.pb-20px {
  padding-bottom: 20px !important;
}
.p-40px {
  padding: 40px !important;
}
.border-radius-6px {
  border-radius: 6px !important;
}
.box-shadow-quadruple-large,
.box-shadow-quadruple-large-hover:hover {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

.mb-20px {
  margin-bottom: 20px !important;
}

.h-150px {
  height: 150px !important;
}
.w-150px {
  width: 150px !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.infowindow .mb-3,
.mb-5px {
  margin-bottom: 5px !important;
}

.w-90 {
  width: 90% !important;
}
.lh-28 {
  line-height: 28px;
}
.pt-15px {
  padding-top: 15px !important;
}
.border-color-light-medium-gray {
  border-color: #eaeaeb !important;
}
.mb-25px {
  margin-bottom: 1.5625rem;
}

.all-doctors__btn {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  border-radius: 151px !important;
  font-size: 15px;
}

.all-doctors__btn:hover {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

.ptb-70px {
  padding-top: 70px;
  padding-bottom: 70px;
}

.p-10px {
  padding: 10px;
}

.color-org {
  color: var(--org-color);
}

/* Appointment Page */
.dayItem {
  flex: 1;
  text-align: center;
}

.slideBtns iconify-icon {
  background: var(--org-color);
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}

.slideBtns {
  bottom: -9px;
}

.booking-doc-img {
  position: relative;
  overflow: hidden;
}

.booking-doc-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  width: 100%;
  height: 100%;

  transform: translateY(101%);
  transition: all 0.3s;
  z-index: 3;
}

.booking-doc-img:hover::after {
  transform: translateY(0%);
}

.doctor-profile-btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%, 1000px);
  color: white;
  font-weight: bold;
  left: 50%;
  transition: all 0.3s;
  z-index: 4;
}

.booking-doc-img:hover .doctor-profile-btn {
  transform: translate(-50%, 200%);
}

/* Reserve Html */
#inpersonVisit,
#onlineVisit,
#mellat,
#zarinpal {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  width: 65px;
  display: flex;
  justify-content: center;
}

#onlineVisit ~ label,
#inpersonVisit ~ label,
#mellat ~ label,
#zarinpal ~ label {
  border: 1px solid var(--org-color);
  padding: 5px;
  border-radius: 3px;

  transition: all 0.3s;
  width: 65px;
  display: flex;
  justify-content: center;
}

#inpersonVisit:checked ~ label,
#onlineVisit:checked ~ label,
#mellat:checked ~ label,
#zarinpal:checked ~ label {
  transition: all 0.3s;
  background-color: var(--org-color);
  color: white;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.doctor-img {
  width: 80px;
  background: var(--org-color);
  padding: 1.5px;
  height: 80px;
  object-fit: cover;
}

.doctor-info-card {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.payment-cost {
  border-bottom: 1px solid #f5f5f5;
}

.appointement-details ul li:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}

.appointement-details ul li {
  padding: 0.75rem 0;
}

.appointement-details ul li p {
  margin-bottom: 0;
}

/* ==== Confirm Page  ==== */
.confirm-icon {
  align-self: center;
  font-size: 32px;
  margin-bottom: 15px;
  color: green;
  border: 2px solid green;
  border-radius: 50%;
  padding: 10px;
}

.appointement-details {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.appointement-details button {
  border-radius: 4px;
}

.user-tray__list {
  position: absolute;
  background-color: #fff;
  width: 12.5rem;
  left: -80px;
  top: 3.9rem;
  padding: 10px;
  border-radius: 0.4rem;
  box-shadow: 0 4px 14px rgba(5, 81, 81, 0.07);
  z-index: 9;
  display: none;
  transform: translateY(-8px);
}

.user-tray {
  line-height: 0;
}

.user-tray:hover .user-tray__list {
  display: block;
  cursor: pointer;
}

.user-tray iconify-icon {
  border: 1px solid var(--org-color);
  padding: 5px;
  border-radius: 50%;
  color: var(--org-color);
  font-size: 20px;
  transition: all 0.3s;
}

.user-tray:hover > iconify-icon {
  background-color: var(--org-color);
  color: white;
}

.user-tray__list--mobile {
  width: 13.5rem;
  left: -101px;
}

@media only screen and (min-width: 62rem) {
  .user-tray--mobile {
    display: none;
  }
}

.user-tray__list li a {
  margin-left: 2.5rem;
  position: relative;
  padding: 1.7rem 0;
  color: #001b24;
  background-color: transparent;
}

.user-tray__list li a:hover {
  background: transparent;
  color: var(--org-color);
}

.user-tray::after {
  content: "";
  width: 100%;
  height: 150%;
  position: absolute;
  top: 10px;
  left: 0;
}

.user-tray__list li:not(:last-child) {
  border-bottom: 1px solid #efefef;
}

.user-tray__list iconify-icon {
  background: transparent;
  color: var(--org-color);
}

.user-tray__list li:hover > iconify-icon {
  background-color: var(--org-color);
  color: #fff;
}

/* ============ Clinic Parts ============ */
.to-left {
  animation: toLeft 0.3s linear forwards;
}

.rotate-box {
  will-change: transform;
  min-height: 250px;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.min-h-300px {
  min-height: 300px !important;
}

.rotate-box.to-left .front-side,
.rotate-box.to-right .front-side {
  z-index: 1;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.rotate-box .back-side,
.rotate-box .front-side {
  position: absolute;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
}

.border-radius-6px {
  border-radius: 6px !important;
}

.box-shadow-quadruple-large,
.box-shadow-quadruple-large-hover:hover {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.rotate-box.to-left .back-side {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 1;
}

.rotate-box .back-side,
.rotate-box .front-side {
  position: absolute;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
}

.cover-background {
  background-size: cover;
  background-position: center center !important;
}

.box-shadow-quadruple-large,
.box-shadow-quadruple-large-hover:hover {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

.rotate-box.to-left .rotate-content-front,
.rotate-box.to-right .rotate-content-front {
  -webkit-transform: translateY(-50%) translateX(0) scale(1);
  transform: translateY(-50%) translateX(0) scale(1);
}

.rotate-box .rotate-content-back,
.rotate-box .rotate-content-front {
  position: relative;
  top: 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
}

.p-30px {
  padding: 30px !important;
}

.mb-25px {
  margin-bottom: 25px !important;
}

.h-70px {
  height: 70px !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.infowindow .mb-3,
.mb-5px {
  margin-bottom: 5px !important;
}

.fs-19 {
  font-size: 19px;
}

.bg-charcoal-blue {
  background-color: #202329;
}

.opacity-light {
  opacity: 0.65;
}

.box-shadow-quadruple-large .btn.btn-rounded.btn-rounded {
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.box-shadow-quadruple-large .btn.btn-rounded.btn-small {
  padding: 10px 26px;
}
.box-shadow-quadruple-large .btn.btn-white {
  background-color: #fff;
  color: #232323;
}
.box-shadow-quadruple-large .btn.btn-small {
  font-size: 12px;
  padding: 13px 26px;
}
.box-shadow-quadruple-large .btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: auto;
  font-family: var(--alt-font);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.rotate-box p {
  color: rgba(255, 255, 255, 0.7);
}
.opacity-extra-medium,
.opacity-full,
.opacity-full-dark,
.opacity-light,
.opacity-medium,
.opacity-very-light {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.rotate-box.to-left .rotate-content-back {
  -webkit-transform: translateY(-50%) translateX(400px) translateZ(60px)
    scale(0.88);
  transform: translateY(-50%) translateX(400px) translateZ(60px) scale(0.88);
}

.rotate-box .rotate-content-back,
.rotate-box .rotate-content-front {
  position: relative;
  top: 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
}

.rotate-box.to-left:hover .front-side {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.rotate-box.to-left .front-side,
.rotate-box.to-right .front-side {
  z-index: 1;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.rotate-box .back-side,
.rotate-box .front-side {
  position: absolute;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
}

.rotate-box.to-left:hover .back-side,
.rotate-box.to-right:hover .back-side {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.rotate-box.to-left:hover .rotate-content-front {
  -webkit-transform: translateY(-50%) translateX(-400px) scale(0.88);
  transform: translateY(-50%) translateX(-400px) scale(0.88);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.rotate-box.to-left:hover .back-side,
.rotate-box.to-right:hover .back-side {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.rotate-box.to-left:hover .rotate-content-back,
.rotate-box.to-right:hover .rotate-content-back {
  -webkit-transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
  transform: translateY(-50%) translateX(0) translateZ(0) scale(1);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.back-side {
  background: url("../img/clinic-parts/clinic-parts-1.webp");
}

/* AFTER DANGER CSS */
.about-us__content h2 {
  padding-right: 35px;
}

.about-us__content h2::after {
  right: 0rem;
}

.main-slider-carousel .slider__item-content {
  padding-left: 1rem;
  padding-right: 1rem;
}

.videos__spec-view {
  color: #f34343;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

p {
  line-height: 30px;
}

.about-us__text p {
  font-size: 17px;
  line-height: 2.3;
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .about-us__text {
    text-align: center;
  }
}

.rotate-content-front iconify-icon {
  font-size: 50px;
  color: var(--org-color);
}

/* یoctor protfolio page */
.doctor-portfolio__card {
  max-width: 51.875rem;
  border: 1.9px solid rgba(var(--r), var(--g), var(--b), 0.2);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.doctor-portfolio__card img {
  width: 150px;
  height: 150px;
  padding: 10px;
  background-color: rgba(var(--r), var(--g), var(--b), 0.1);
}

.doctor-portfolio__card p {
  color: #495057;
}

.doctor-portfolio__img {
  top: 0;
  transform: translateY(-47%);
}

.doctor-portfolio__card .doctor-portfolio__info a {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  border-radius: 1.125rem;
  padding: 7px;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media only screen and (max-width: 48rem) {
  .doctor-portfolio__img {
    top: 0;
    left: 50%;
    transform: translate(-50%, -47%);
  }

  .doctor-portfolio__info {
    text-align: center;
  }

  p {
    justify-content: center;
  }

  .doctor-portfolio__info a {
    margin: 0 auto;
    width: 50%;
  }
}

/*  Clinic Part Page */
.clinic-part__info {
  border: 1px solid rgba(var(--r), var(--g), var(--b), 0.2);
  border-radius: 6px;
  padding: 40px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  background: white;
  max-width: 800px;
  padding: 40px;
}

.clinic-part__info p {
  color: #495057;
}

.clinic-part__image img {
  width: 60%;
}

@media only screen and (max-width: 62rem) {
  .clinic-part__image img {
    width: 100%;
  }

  .clinic-part__info {
    margin-bottom: 40px;
    transform: translate(0%, -40%);
  }

  .mt-250px {
    margin-top: 250px;
  }

  .clinic-part__info {
    transform: translate(0%, 27%);
  }
}

@media only screen and (max-width: 48rem) {
  .mt-500px {
    margin-top: 500px;
  }
}

@media only screen and (max-width: 31.25rem) {
  .mt-600px {
    margin-top: 600px;
  }

  .clinic-part__info {
    transform: translate(0%, 10%);

    text-align: center;
  }
}

/* Preloader */
.preloader {
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999999;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  color: var(--org-color);
}

/* Servie Box Fix */
.services__item-link a {
  background-color: #f2f9ff;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--secondary-color-tint-2);
  border-radius: 20px 20px 20px 0;
  position: absolute;
  bottom: -6px;
  left: -6px;
  padding-left: 10px;
  padding-bottom: 6px;
  transition: 0.3s ease;
}

.services__item-icon {
  background-color: #f2f9ff;
  width: 80px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 80px 50px 120px 3px;
}

/* About us section fix */
.about-us__pic img {
  border-radius: 20px;
}
.about-us {
  padding: 100px 0;
}

@media only screen and (max-width: 62rem) {
  .about-us {
    padding: 40px 0;
    padding-top: 20px;
  }
}

.w-90 {
  width: 90%;
}

.header-main__menu-list > ul > li {
  position: relative;
  cursor: pointer;
}

.header-main__menu-list > ul > li::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 0;
}

.header-main__menu-list > ul > li > ul li {
  position: relative;
  cursor: pointer;
}

.header-main__menu-list > ul > li > ul li::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -31px;
  top: 0;
}

/* Custom bread crumb area */
.breadcrumb-area {
  padding: 210px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/breadcrumb/breadcrumb-blog.webp");
  background-position: center center;
}

@media only screen and (max-width: 62rem) {
  .breadcrumb-area {
    padding: 170px 0;
  }
}

@media only screen and (max-width: 36rem) {
  .breadcrumb-area {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 31.25rem) {
  .content-text h1 {
    font-size: 21px;
    font-weight: bold;
  }

  .single-service {
    margin-top: 4rem;
  }
}

/* Rich Text */
.richtext-sec * {
  font-family: vazir !important;
}

.richtext-sec img {
  max-width: 100%;
  height: auto;
  margin: 0.2em auto;
  display: block;
}

.service-image img {
  border-radius: 15px;
}

.richtext-sec img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 0.2em;
  display: block;
}

.richtext-sec li {
  list-style: unset !important;
}

.richtext-sec ul,
.richtext-sec ol {
  padding-right: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.richtext-sec h2,
.richtext-sec h3,
.richtext-sec h4,
.richtext-sec h5,
.richtext-sec h6 {
  margin: 0 0 0.5em !important;
  color: #32240c !important;
}

.richtext-sec h2 a,
.richtext-sec h3 a,
.richtext-sec h4 a,
.richtext-sec h5 a,
.richtext-sec h6 a {
  color: #bb852e !important;
  font-weight: bold;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.richtext-sec h2 a:hover,
.richtext-sec h3 a:hover,
.richtext-sec h4 a:hover,
.richtext-sec h5 a:hover,
.richtext-sec h6 a:hover {
  color: #bb852e !important;
  font-weight: bold;
  padding-bottom: 2px !important;
  border-bottom: 1px solid #bb852e;
}

.richtext-sec h2 {
  font-size: 26px !important;
  font-weight: bold;
}
.richtext-sec h3 {
  font-size: 23px !important;
  font-weight: bold;
  /* color: #644718; */
}

.richtext-sec h4 {
  font-size: 17px !important;
  font-weight: bold;
}
.richtext-sec h5 {
  font-size: 13px !important;
  font-weight: bold;
}
.richtext-sec h6 {
  font-size: 12px !important;
  font-weight: bold;
}

.richtext-sec iframe {
  width: 100% !important;
  height: 100% !important;
}

.h_iframe-aparat_embed_frame {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.h_iframe-aparat_embed_frame iframe,
.h_iframe-aparat_embed_frame object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}

@media only screen and (max-width: 48rem) {
  .richtext-sec h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    /* color: #644718; */
  }

  .richtext-sec h2 {
    font-size: 23px !important;
    font-weight: bold !important;
  }

  .richtext-sec h4 {
    font-size: 16px !important;
    font-weight: bold !important;
  }
}

/* Blog Fix */
.single-blog-content > img {
  border-radius: 10px;
}

.content-text ul li a {
  color: white;
}

.last-blog-container .last-blog img {
  border-radius: 10px;
}

.last-blog-container .last-blog {
  border-radius: 10px;
}

.last-blog h3 {
  font-size: 0.9375rem;
}

.blog-cart h3 {
  font-size: 1.25rem;
}

.blogs-content .blog-cart {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.blog-pagination a {
  width: 40px;
  height: 40px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
  transition: 0.3s;
  color: var(--org-color);
  border-radius: 50%;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 992px) {
  .blogs-content .blog-cart > h3 > a,
  .last-blog-container .last-blog > div > h3 > a {
    font-size: 1rem;
  }

  .blogs-content {
    padding: 3.125rem 0;
  }
}

/* Gallery */
.single-photo {
  position: relative;
  overflow: hidden;
  max-height: 21.875rem;
}

.single-photo img {
  transition: all 0.6s;
  cursor: pointer;
}

.single-photo:hover img {
  transform: scale(1.1);
}

.single-photo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: all 0.6s;
  background-color: var(--alpha-color);
}

.single-photo:hover .single-photo__overlay {
  opacity: 1;
}

.single-photo > div {
  overflow: hidden;
}

.single-photo__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s;
}

.single-photo:hover .single-photo__icon {
  transform: translate(-50%, -40%);
  opacity: 1;
}

@media only screen and (max-width: 48rem) {
  .single-photo > div {
    margin: 0;
  }
}

/*  Video Gallery Fix */
.recente-videos__video > div {
  width: 7.8125rem;
}

.recente-videos__video iframe {
  height: 70px;
}

.recente-videos__list {
  height: 455px;
  overflow-y: scroll;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 15px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Adjust for your desired aspect ratio (e.g., 16:9) */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 495px;
  border-radius: 15px;
}

.recent-videos__title:hover {
  color: var(--org-color);
  cursor: pointer;
}

.load-spinner {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--r), var(--g), var(--b), 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  backdrop-filter: blur(100px);
  border-radius: 5px;
  overflow: hidden;
  color: var(--org-color);
  z-index: 5;
}

.recente-videos__video {
  position: relative;
}

.recente-videos__video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 4;
}

.recent-videos__title {
  position: relative;
  z-index: 5;
}

/* * Contact Us */

.contact-us__socials {
  gap: 4px;
}

.contact-us__socials li {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--r), var(--g), var(--b), 0.3);
  line-height: 0;
  background-color: rgba(var(--r), var(--g), var(--b), 0.1);
  border-radius: 50px;

  padding: 5px;
  transition: all 0.3s;
  position: relative;
}

.contact-us__socials li:hover {
  transform: translateY(-2px);
  background-color: var(--org-color);
}

.contact-us__socials li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
}

.contact-us__socials li:hover iconify-icon {
  --threshold: 0.5;

  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

.contact-us__socials li iconify-icon {
  color: rgba(var(--r), var(--g), var(--b), 0.8);
  transition: all 0.3s;
}

/* About Us */

.about-us__desc ul {
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-us__desc ul li {
  position: relative;
}

.about-us__desc ul li::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--org-color);
  top: 50%;
  right: -14px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.about-area .about-image {
  margin-bottom: 0;
}

/* Utils */

.text-normal * {
  font-size: 14px !important;
  font-weight: normal !important;
  display: inline !important;
  font-family: vazir !important;
  color: #212529 !important;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.org-color {
  color: var(--org-color) !important;
}

.bg-org-color {
  background-color: var(--org-color);
}

.pt-200 {
  padding-top: 200px;
}

.pt-100 {
  padding-top: 100px !important;
}
.pt-180 {
  padding-top: 180px !important;
}

.fs-7 {
  font-size: 0.8rem;
}

.mt-6rem {
  margin-top: 6rem;
}

/* * New User Dashborad * */
.user-dashboard {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}

.user-dashboard__side-bar--pic {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  position: relative;
}

.user-dashboard__side-bar li {
  display: flex;
  padding: 20px;
  font-size: 23px;
  color: #777;
  justify-content: center;
  align-items: center;
  position: relative;
  border-right: 3px solid transparent;
}

.user-dashboard__side-bar li a {
  color: #777;
}

.user-dashboard__side-bar li:hover a {
  color: var(--org-color);
}

/* .user-dashboard__side-bar li.selected {
  border-right: 3px solid var(--org-color);
  
  color: var(--org-color);
} */

.user-dashboard__side-bar {
  border-right: 3px solid transparent;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.user-dashboard__side-bar li:hover {
  border-right: 3px solid var(--org-color);
  color: var(--org-color);
}

.user-dashboard__side-bar li a::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: transparent;
}

.user-dashboard__side-bar li a::after:hover {
  border-right: 3px solid var(--org-color);
}

.user-dashboard__side-bar {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  position: relative;
  background-color: white;
  z-index: 5;
}

.user-dashboard__side-bar {
  max-width: 3.75rem;
}

/* 
.user-dashboard__about{
  
  width: 100%;
  padding: 0.9375rem;
  padding-right: 3.125rem;
  z-index: -1;
  padding-bottom: 2.1875rem;
  color: white;
  background: rgb(1,55,164);
background: -moz-linear-gradient(49deg, rgba(1,55,164,1) 1%, rgba(78,123,213,1) 100%);
background: -webkit-linear-gradient(49deg, rgba(1,55,164,1) 1%, rgba(78,123,213,1) 100%);
background: linear-gradient(49deg, rgba(1,55,164,1) 1%, rgba(78,123,213,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0137a4",endColorstr="#4e7bd5",GradientType=1);
box-shadow: 0px 25px 20px -20px rgba(var(--r), var(--g), var(--b), 0.35);
} */

.user-dashboard__about {
  width: 100%;
  padding: 0.9375rem;
  padding-right: 3.125rem;
  z-index: -1;
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
  color: white;
  background: rgb(1, 55, 164);
  background: -moz-linear-gradient(
    49deg,
    rgba(1, 55, 164, 1) 1%,
    rgba(78, 123, 213, 1) 100%
  );
  background: -webkit-linear-gradient(
    49deg,
    rgba(1, 55, 164, 1) 1%,
    rgba(78, 123, 213, 1) 100%
  );
  background: linear-gradient(
    49deg,
    rgba(1, 55, 164, 1) 1%,
    rgba(78, 123, 213, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0137a4",endColorstr="#4e7bd5",GradientType=1);
  box-shadow: 0px 25px 20px -20px rgba(var(--r), var(--g), var(--b), 0.35);
}

.user-dashboard__about--pic {
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  position: relative;
  /* box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); */
  overflow: hidden;
}

/* .user-dashboard__side-bar--pic::after {
   
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
} */

.user-dashboard__side-bar__expand-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  cursor: pointer;
}

.user-dashboard__side-bar--menu-name {
  font-size: 13px;
}

.user-dashboard__side-bar__expand-btn iconify-icon {
  transition: all 0.3s;
}

.user-dashboard__side-bar__expand-btn:hover iconify-icon {
  transform: rotate(180deg);
}

.user-dashboard__about--info h6 {
  margin-top: 0;
  font-size: 1.5rem;
}

.user-dashboard__about--info span {
  font-size: 14px;
}

.user-dashboard__about--info span iconify-icon {
  font-size: 20px;
}

/* .user-dashboard__about--pic:after{
  content:"";
  display:block;
  width:50%;
  height:50%;
  background: white;
  position:absolute;
  bottom:0px;
  left:50%;
  transform:translateX(-50%);
  z-index:-1;
  box-shadow: 0px 5px 80px 0px;
} */

.user-dashboard__about--cta-btn {
  margin-right: auto;
}

.user-dashboard__about--cta-btn a:link,
.user-dashboard__about--cta-btn a:visited {
  background-color: white;
  border-radius: 5px;
  padding: 0.45rem 2rem;
  color: var(--org-color);
  cursor: pointer;
  font-weight: bold;
  margin-left: 3.125rem;
}

.user-dahsborad {
  background-color: rgba(var(--r), var(--g), var(--b), 0.04);
}

.user-dashboard__about--tool-bar {
  bottom: 0;
  right: 149px;
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

/* .user-dashboard__about--tool-bar li{
  border-bottom: 1px solid transparent;
}

.user-dashboard__about--tool-bar li.active{
  border-bottom: 1px solid white;
} */

.user-dashboard__about--tool-bar li.ac::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  content: "";
}

.user-dahsborad--init {
  padding: 15px 30px;
}

.action-card {
  max-width: 400px;
  background: white;
  padding: 20px;
  /* margin-bottom: 10px; */
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.6s;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}

.action-card--expandable--expand .action-card__inputs {
  max-height: 400px;
}

.action-card__inputs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.action-card__inputs label {
  color: rgba(var(--r), var(--g), var(--b), 0.8);
  font-size: 13px;
}

.action-card__inputs input {
  border-radius: 5px;
  color: rgba(var(--r), var(--g), var(--b), 0.9);
  font-size: 14px;
}

.action-card__inputs input:first-child {
  margin-bottom: 5px;
}

.action-card__form-btns button {
  font-size: 14px;
  border-radius: 5px;
}

.action-card:hover {
  border: 2px solid var(--alpha-color);
  cursor: pointer;
  box-shadow: none;
}

.action-card.action-card--expandable:hover .action-card__icon--arrow {
  transform: rotate(-90deg);
}

.action-card__icon--arrow {
  color: rgba(var(--r), var(--g), var(--b), 0.8);
  transition: all 0.3s;
  margin-left: 5px;
}

.action-card:hover .action-card__icon--arrow {
  margin-left: 0;
}

.action-card__top-desc {
  font-size: 13px;
  color: rgba(var(--r), var(--g), var(--b), 0.8);
}

.action-card--main-icon {
  align-items: center;
  line-height: 0;
  background: var(--org-color);
  color: white;
  font-size: 40px;
  padding: 5px;
  border-radius: 8px;
  margin-left: 10px;
}

.action-card__description {
  margin: 0;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.action-card__description a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.action-card__description span {
  font-size: 14px;
  color: rgba(var(--r), var(--g), var(--b), 0.8);
}

.action-card__icon--arrow {
  line-height: 0;
  color: var(--org-color);
}

.action-card__top-desc {
  font-size: 12px;
  color: rgba(var(--r), var(--g), var(--b), 0.8);
  padding: 2px 11px;
  background: rgba(var(--r), var(--g), var(--b), 0.1);
  border-radius: 60px;
}

.action-card__footer span {
  font-size: 13px;
  color: var(--org-color);
}

@media only screen and (max-width: 62rem) {
  .user-dashboard__side-bar {
    width: 100%;
    display: flex;
    max-width: 100%;
  }

  .user-dashboard__side-bar--pic {
    width: 80px;
    position: relative;
  }

  .user-dashboard__side-bar li {
    position: relative;
  }

  .user-dashboard__side-bar li.selected {
    border-top: 3px solid var(--org-color);
    border-right: 0;
    color: var(--org-color);
  }

  .user-dashboard__side-bar li:hover {
    border-top: 3px solid var(--org-color);
    border-right: 0;
    color: var(--org-color);
  }

  .user-dashboard__about--cta-btn a:link,
  .user-dashboard__about--cta-btn a:visited {
    background-color: white;
    border-radius: 5px;
    padding: 0.45rem 1rem;
    color: var(--org-color);
    cursor: pointer;
    font-weight: bold;
    margin-left: 0.925rem;
  }

  .user-dashboard__side-bar__expand-btn {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
      rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    cursor: pointer;
  }

  .user-dashboard__side-bar__expand-btn iconify-icon {
    transform: rotate(90deg);
  }

  .user-dashboard__side-bar__expand-btn:hover iconify-icon {
    transform: rotate(-90deg);
  }
}

@media only screen and (min-width: 62rem) {
  .user-dashboard__side-bar {
    height: 100%;
  }
}

/* Login Page  */
.login-content {
  border-radius: 2.8125rem;
  background-color: #f5f5f587;
}

.login-content .form-control {
  min-height: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #000000;
}

.login-content .btn-login {
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 0;
  --threshold: 0.5;

  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  border-radius: 5px;
  background-color: var(--org-color);
  padding: 10px 36px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login-content .login-toolbar li a {
  transition: all 0.2s;
}

.login-content .login-toolbar li a:hover {
  background-color: rgba(var(--r), var(--g), var(--b), 0.9);
}

@media only screen and (max-width: 768px) {
  .login-content .login-toolbar li {
    margin: 0 0 2px;
    width: 100%;
  }

  .login-content .login-toolbar a {
    border-radius: 5px;
  }
  .login-content .login-toolbar li:last-child a {
    border-radius: 5px;
  }
  .login-content .login-toolbar li:first-child a {
    border-radius: 5px;
  }
}

/* Forgot pass */
.spinner {
  line-height: 0;
}

/* * Desktop user menu */

.user-menu {
  padding: 4px !important;
  position: relative;
  cursor: pointer;
}

.user-menu:hover {
  cursor: pointer;
}

.user-menu ul li a {
  color: #001b24;
}

.user-menu ul li a:hover {
  color: var(--org-color);
}

.user-menu ul li:last-child iconify-icon {
  font-size: 19px;
}

.user-menu > a {
  background-color: rgb(var(--r), var(--g), var(--b));
  font-size: 15px;
  display: inline-block;
  margin-left: 10px;
  padding: 4px;
  border-radius: 20px;
  transition: all 0.3s ease;
  --threshold: 0.5;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

.user-menu > a i {
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  transition: all 0.3s ease;
}

.user-menu > a:hover i {
  background-color: var(--org-color);
  --threshold: 0.5;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
}

.user-menu::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 21px;
  left: 0;
  position: absolute;
}

.user-menu ul {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 15rem;
  right: 0;
  top: 4rem;
  padding: 10px;
  border-radius: 0.4rem;
  box-shadow: 0 4px 14px rgba(5, 81, 81, 0.07);
  z-index: 9;
  display: none;
  transform: translateY(-8px);
}

.user-menu {
  position: relative;
}

.user-menu:hover ul {
  display: block;
}
.user-menu:hover ul li {
  padding: 1rem;
  border-bottom: 1px solid #efefef;
  transition: all 0.3s ease;
  position: relative;
  color: var(--org-color);
}

.user-menu:hover ul li:last-child {
  border: none;
}

/* * mobile navbar  */
.rotate {
  transform: rotate(180deg);
}

/* Blogs Section Slider */
.main-slider-carousel.owl-carousel .owl-stage,
.main-slider-carousel.owl-carousel .owl-stage .owl-item {
  display: flex;
}

.main-slider-carousel.owl-carousel .owl-stage .owl-item {
  flex: 1;
}

.main-slider-carousel.owl-carousel .owl-stage .owl-item .item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.slider__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.slider__item-content {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.slider__item-title {
  height: 2rem;
}

.header-main__menu-list ul li a {
  /* color: #001b24; */
  color: white;
  position: relative;
  transition: color 0.3s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

@media only screen and (min-width: 62rem) and (max-width: 75rem) {
  .header-main__menu-list ul li a {
    /* color: #001b24; */
    color: white;
    position: relative;
    transition: color 0.3s ease;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
  }
}

.header-main__menu-list ul li a .arrow-down-header {
  transform: translateY(0);
}

/* Pagination Fix */
.blog-pagination a.disabled {
  color: #777 !important;
  background: #77777738;
  cursor: unset;
}

.blog-pagination a.disabled:hover {
  color: #777 !important;
  background: #77777738;
  cursor: unset;
}

/* footer fix */
.footer__copyright-text a:link,
.footer__copyright-text a:visited {
  color: #fff;
  transition: all 0.3s;
}

.footer__copyright-text a:hover,
.footer__copyright-text a:active {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.footer__tel-icon {
  font-size: 3rem;
  color: var(--org-color);
  line-height: 0;
}

.footer__tel {
  display: flex;
  border-bottom: 2px solid #f6f6f6;
  padding-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  /* align-items: center; */
  align-items: start;
  color: var(--org-color);
}

/* Single blog blockquote */
.richtext-sec blockquote {
  background-color: rgba(var(--r), var(--g), var(--b), 0.1);
  border-radius: 10px;
  padding-right: 40px;
  padding-left: 84px;
  position: relative;
  padding-top: 39px;
  padding-bottom: 39px;
  margin-bottom: 0;
  position: relative;
  margin-bottom: 1.5625rem;
}

.richtext-sec blockquote p {
  margin: 0;
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
  font-style: normal;
  color: #b37a1d;
}

.richtext-sec blockquote a {
  color: #b37a1d;
}

.richtext-sec blockquote ul li {
  list-style: none !important;
  position: relative;
  padding-right: 18px;
}

.richtext-sec blockquote ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23b37a1d' d='M529.408 149.376a29.12 29.12 0 0 1 41.728 0a30.59 30.59 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.59 30.59 0 0 1-.512 43.264a29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672zm256 0a29.12 29.12 0 0 1 41.728 0a30.59 30.59 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.59 30.59 0 0 1-.512 43.264a29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672z'/%3E%3C/svg%3E");
  position: absolute;
  top: 5px;
  right: 0;
}

.richtext-sec blockquote a:hover {
  color: var(--org-color);
}

.richtext-sec blockquote::after {
  content: "";
  right: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5px;
  background: var(--org-color);
  height: 80%;
  /* border-radius: 8px; */
}

@media only screen and (max-width: 75rem) {
  .richtext-sec blockquote {
    padding-right: 40px;
    padding-left: 40px;
  }
  .richtext-sec blockquote p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 62rem) {
  .richtext-sec blockquote {
    padding-right: 40px;
    padding-left: 40px;
  }
  .richtext-sec blockquote p {
    font-size: 18px;
  }
  .pb-max-lg-25 {
    padding-bottom: 1.5625rem;
  }
}

@media only screen and (max-width: 48rem) {
  .richtext-sec blockquote {
    padding-right: 40px;
    padding-left: 40px;
  }
  .richtext-sec blockquote p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 36rem) {
  .richtext-sec blockquote {
    background-color: rgba(var(--r), var(--g), var(--b), 0.1);

    padding-right: 30px;
    padding-left: 20px;
  }
  .richtext-sec blockquote p {
    font-size: 16px;
  }
}
.blog-cart a img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.blog-cart h3 {
  font-size: 1.15rem;
  height: 43px;
}

.tags-container h2 {
  font-size: 17px;
}
.tags-container h4 {
  font-size: 13px;
}

/* *********** recent post fix ************* */
.last-blog img {
  height: 4.375rem;
  object-fit: cover;
}

@media only screen and (min-width: 62rem) and (max-width: 75rem) {
  .services__item {
    background-color: #fff;
    box-shadow: 0 4px 40px rgba(182, 185, 255, 0.32);
    border-radius: 32px;
    padding: 21px 19px 20px;
    position: relative;
    overflow: hidden;
  }
}

@media only screen and (max-width: 75rem) {
  .content-text h1 {
    font-size: 25px;
    font-weight: bold;
  }

  .breadcrumb-list {
    font-size: 0.9375rem;
  }
}

@media (min-width: 48rem) and (max-width: 61.9988rem) {
  .services__item-title {
    width: 80%;
    padding-right: 0;
    font-size: 1.2rem;
    margin-top: 13px;
  }
}

@media only screen and (max-width: 62rem) {
  .services__item-desc p {
    font-size: 0.9375rem;
  }
  .header-main__menu-brand a img {
    width: 100%;
    object-fit: scale-down;
  }
  .richtext blockquote p {
    margin: 0;
    font-size: 16px;
    line-height: 34px;
    font-weight: 700;
    font-style: normal;
    color: var(--org-color);
  }
  .richtext blockquote {
    background-color: rgba(var(--r), var(--g), var(--b), 0.1);
    border-radius: 10px;
    padding-right: 40px;
    padding-left: 40px;
    position: relative;
    padding-top: 39px;
    padding-bottom: 39px;
    margin-bottom: 0;
    position: relative;
    margin-bottom: 1.5625rem;
  }
}

@media (max-width: 47.9988rem) {
  .services__item-title {
    width: 100%;
    padding-right: 0;
    margin-top: 15px;
  }
  .content-text {
    /* position: absolute;
    /* z-index: 100; */
    /* left: 0;
    top: 50%;
    width: 100%;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center; */
    position: absolute;
    /* z-index: 100; */
    left: 50%;
    top: 50%;
    width: 100%;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
  }
  .content-text h1 {
    font-size: 20px;
    font-weight: bold;
    width: 80%;
    line-height: 1.4;
  }

  .articles__item-link a {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #001b24;
    padding: 10px 30px;
    color: #fff;
    border-radius: 0 1.2rem 0 0;
    font-size: 0.75rem;
  }
  .articles__item-content {
    padding: 32px 16px;
  }

  /* footer */
  /* .footer__link:first-child {
    margin-left: 8rem;
    padding-right: 3.7rem;
  } */
}

@media only screen and (max-width: 36rem) {
  .main-slider__item {
    height: 22vh;
  }

  .main-slider__item img {
    height: 100%;
    object-fit: cover;
    /* object-position: -155px 0px; */
  }
  .head-info__desc p {
    font-size: 1rem;
  }
  .ps-4rem {
    padding-right: 4.5rem;
  }

  .header-main__menu-brand a img {
    width: 102px;
    object-fit: scale-down;
  }

  .header-main__menu-brand {
    /* padding-right: 70px !important; */
  }
}

/* About Us Section */
.about-us-slider__item {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--org-color);
  height: 100%;
  width: 100%;
}

.about-us-slider__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-us-slider .item {
  height: 150px;
  width: 150px;
}

.about-usbtn.btn-main a {
  background-color: var(--org-color);
  display: inline-block;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(
    0,
    0%,
    calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)
  );
  color: var(--text-color);
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 14.5px;
  max-width: 9.375rem;
  font-weight: bold;
  font-size: 16px;
}

.about-usbtn.btn-main a i {
  /* vertical-align: middle; */
  font-size: 1rem;
  line-height: 0;
  padding: 10px;
  background: #ffc812f0;
  border-radius: 50%;
}

@media only screen and (max-width: 25rem) {
  .about-us-slider .item {
    height: 120px;
    width: 120px;
  }
}

@media only screen and (max-width: 36rem) {
  .header-logo__con {
    display: flex;
    justify-content: end;
    padding: 0;
  }

  .header-logo__con .header-main__menu-brand {
    padding: 0 !important;
  }
}

/*  Contact page fix */
.conatct-cart a:link,
.conatct-cart a:visited {
  color: var(--secondary-color-tint-2);
  font-size: 1.1rem;
  transition: 0.3s;
}

.conatct-cart a:hover,
a:active {
  color: var(--org-color);
}

.conatct-cart ul li {
  padding-bottom: 5px;
  border-bottom: 1px solid #38383838;
  margin-bottom: 10px;
  transition: 0.3s;
}

.conatct-cart ul li:last-child {
  margin-bottom: 0;
}

.conatct-cart:hover {
  border: 1px solid var(--accent-color) !important;
}

.conatct-cart:hover ul li {
  border-bottom: 1px solid var(--accent-color);
  cursor: pointer;
}

/* About Us Fix */
.breadcrumb-area.about-us-page {
  padding: 250px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/breadcrumb/breadcrumb-blog.webp");
  background-position: center center;
  position: relative;
  z-index: -1;
}

.about-text {
  position: relative;
  z-index: 3;
  background: white;
  padding: 40px 60px;
  border-radius: 10px;
}

.about-area .about-content-container {
  margin: -6rem 0;
}

@media only screen and (max-width: 87.5rem) {
  .about-area .about-text > h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 48rem) {
  .about-area .about-text > h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 36rem) {
  .about-area .about-content-container {
    margin: -6rem 0;
  }

  .about-text {
    position: relative;
    z-index: 5;
    background: white;
    padding: 30px 30px;
    border-radius: 10px;
  }

  .about-area .about-content-container {
    margin: -4rem 0;
  }

  .breadcrumb-area.about-us-page {
    padding: 154px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/breadcrumb/breadcrumb-blog.webp");
    background-position: center center;
    position: relative;
    z-index: -1;
  }

  .about-us__desc p {
    text-align: justify;
  }
  .about-us__desc p * {
    text-align: justify;
  }
}

@media only screen and (min-width: 62rem) {
  .about-area .about-text > h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

.product-page__main-img {
  padding: 100px 30px;
  border-radius: 34px;
  overflow: hidden;
  padding-bottom: 20px;
}

@media only screen and (max-width: 62rem) {
  .product-page__main-img {
    padding: 50px 30px;
    padding-bottom: 10px;
  }
}

.product-page__main-img img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 30px;
}

.product-page__slider {
  padding: 0 30px;
}

.product-page__slider .owl-item img {
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
}

.product-page__desc {
  padding: 20px 30px;
}

@media only screen and (min-width: 62rem) {
  .mt-lg-6rem {
    margin-top: 6rem !important;
  }
}

/* ============================= */
/* |||  Product Categories |||   */
/* ============================= */

.categories-sec {
  padding: 80px 0;
}

.categories-con .categories-box {
  position: relative;
}

.categories-con .categories-box .image {
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  background-color: var(--secondary-color-tint-1);
}
.categories-con .categories-box .image img {
  transition: all 0.3s ease-in-out;
  min-width: 100%;
  height: 400px;
  object-fit: cover;
}

@media only screen and (max-width: 36rem) {
  .categories-box {
    width: 18.625rem;
  }
  .categories-con .categories-box .image img {
    height: 380px;
  }

  .categories-sec {
    padding: 40px 0;
  }
}

.categories-con .categories-box .content {
  left: 0;
  bottom: 0;
  width: 94%;
  height: 67px;
  margin: 0 10px 14px;
  padding: 0 22px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  border-radius: 16px;
  border: 1px solid transparent;
  background-color: white;
  transition: all 0.8s ease-in-out;
}

.categories-con .categories-box .content iconify-icon {
  font-size: 20px;
  padding: 10px;
  /* width: 46px; */
  /* height: 46px; */
  /* line-height: 46px; */
  line-height: 0;
  text-align: center;
  border-radius: 100%;
  border: 1px solid transparent;
  color: var(--secondary-color-tint-2);
  background-color: var(--accent-color);
  transition: all 0.8s ease-in-out;
}

.categories-con .categories-box .content a,
.categories-con .categories-box .content a:link {
  line-height: 0;
}

.categories-con .categories-box:hover .image img {
  transform: scale(1.1);
  opacity: 60%;
}

.categories-con .categories-box:hover {
  cursor: pointer;
}

.categories-con .categories-box:hover .content iconify-icon {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background-color: var(--secondary-color-tint-2);
}

.categories-con .categories-box:hover .content {
  border: 1px solid var(--accent-color);
}

.last-blogs h3 a {
  color: #a17225;
}
.last-blogs h3 a:hover {
  color: var(--org-color);
}
