/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";
@import "animation.css";
@import "icomoon.css";

:root {
  color-scheme: only light;
  --color-primary: #113F67;
  --color-secondary: #ffcc53;
  --color-third: #68747a;
  --color-primary-rgb: 21, 62, 144;
  --color-secondary-rgb: 255, 204, 83;
  --color-third-rgb: 104, 116, 122;
  --color-light: #dadee2;
  --color-white: #fff;
  --color-green: #1ede8f;
  --color-red: #e4354a;
  --color-yellow: #edb95e;
  --color-blue: #4a90e2;
  --filter-secondary: brightness(0) saturate(100%) invert(88%) sepia(97%) saturate(2845%) hue-rotate(315deg) brightness(101%) contrast(101%);
  --animate-duration: 1000ms;
  --animate-delay: 150ms;
}

@font-face {
  font-family: "Dana";
  src: url("../fonts/DanaVF.ttf") format("truetype-variations");
  font-weight: 1 999;
}

:focus {
  outline: 0 !important;
}

::selection {
  background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}

a {
  color: var(--color-primary);
  text-decoration: none !important;
}

a:hover {
  color: var(--color-third);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dana", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 800;
  line-height: 1.5;
}

html {
  background: var(--color-primary);
}

html,
body {
  min-height: 100%;
  min-height: 100vh;
  position: relative;
}

body {
  font-family: "Dana", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 450;
  font-size: 15px;
  line-height: 1.5;
  direction: ltr;
  background: var(--color-white);
  color: var(--color-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.modal-backdrop,
.body-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 1000;
  cursor: pointer;
}

.body-overflow {
  overflow: hidden;
}

.btn,
.custom-file-input,
.custom-select,
.form-control {
  border-radius: 0;
  box-shadow: none !important;
}

.btn,
label,
th,
.control-label {
  font-family: "Dana", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

ol {
  list-style-type: decimal;
}

[href^="mailto"] {
  display: inline-flex;
}

[href^="tel"] {
  letter-spacing: 1px;
  direction: ltr;
}

.row.v-gutters {
  row-gap: 30px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.modal-header {
  display: flex;
  align-items: center;
}

.pagination {
  padding: 50px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.pagination>li>a.page-numbers,
.pagination>li>.page-numbers.current {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  min-width: 36px;
  height: 36px;
  border-radius: 36px;
  padding: 0 10px;
  line-height: 1px;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pagination>li>a.page-numbers:hover,
.pagination>li>.page-numbers.current {
  background: var(--color-primary);
  color: #fff;
}

/*Custom*/
.container-fluid {
  max-width: 1600px;
}

.section {
  position: relative;
  z-index: 1;
}

.section-wrapper {
  padding: 0 0 85px;
}

.section:not(.section-covered)+.section .section-wrapper {
  padding-top: 0;
}

.section-cover {
  position: relative;
}

.section-bg img,
.section-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-overlay>.section-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.section-header+.section-body,
.section-body+.section-footer,
.section-header+.section-footer {
  margin-top: 60px;
}

.section-header,
.section-footer {
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  position: relative;
  margin: 0;
  z-index: 1;
}

.section-subtitle {
  font-size: 30px;
  font-weight: bold;
  line-height: 52px;
  color: #4b4b4b;
  margin: 0;
}

.section-desc {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
}

.section-subtitle+.section-nav,
.section-title+.section-nav,
.section-desc+.section-nav,
.section-title+.section-subtitle,
.section-subtitle+.section-desc,
.section-title+.section-desc {
  margin-top: 20px;
}

#page-header {
  text-align: center;
  padding: 60px 0;
}

.page-header-title,
.page-title {
  font-size: 32px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.page-header-title::before,
.page-header-title::after,
.page-title::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--color-primary);
  content: "";
}

.page-header-title::after {
  margin-right: 0;
  margin-left: 10px;
}

.page-title+.page-desc {
  margin-top: 15px;
}

.page-desc>p:last-child {
  margin-bottom: 0;
}

#page-body {
  padding: 50px 0;
}

#page-header+#page-body {
  padding-top: 0;
}

*+#page-cover {
  margin-top: 40px;
}

#page-cover>img {
  width: 100%;
  object-fit: cover;
}

#page-footer {
  margin-top: auto;
}

#page-footer+#footer {
  margin-top: 0;
}

.subsection-header+.subsection-body,
.subsection-body+.subsection-footer,
.subsection-header+.subsection-footer {
  margin-top: 32px;
}

.subsection-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.subsection-subtitle {
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  margin: 0;
}

.subsection-title+.subsection-subtitle {
  margin-top: 16px;
}

.button {
  font-size: 15px;
  font-weight: 600;
  padding: 0 33px;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  column-gap: 10px;
  overflow: hidden;
  z-index: 1;
}

.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  transform: skewx(20deg);
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(transparent),
      color-stop(rgba(255, 255, 255, 0.35)),
      to(transparent));
  background-image: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  z-index: -1;
}

.button:hover:before {
  -webkit-animation: shine 1.4s ease;
  animation: shine 1.4s ease;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

[class*="button-empty"] {
  padding: 0;
  height: auto;
  overflow: unset;
}

[class*="button-empty"]:hover {
  color: initial;
}

[class*="button-empty"]::before {
  display: none !important;
}

@-webkit-keyframes shine {
  100% {
    left: 200%;
  }
}

@keyframes shine {
  100% {
    left: 200%;
  }
}

.button-more::after {
  content: "\ecb6";
  content: "\ecbb";
  font-family: "icomoon";
  font-size: 18px;
}

.button-more:hover::after {
  animation: hide_hover_icon 0.5s forwards;
  animation-delay: 0.1s;
}

@keyframes hide_hover_icon {
  0% {
    transform: translatex(0);
    opacity: 1;
  }

  50% {
    transform: translatex(20px);
    opacity: 0;
  }

  51% {
    transform: translatex(-20px);
    opacity: 0;
  }

  100% {
    transform: translatex(0);
    opacity: 1;
  }
}

.button-small {
  height: 36px;
  padding: 0 16px;
  border-radius: 40px;
  font-size: 14px;
}

.button-block {
  display: flex;
  width: 100%;
}

.button-block+.button-block {
  margin-top: 15px;
}

.button-fill-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.button-fill-primary:hover {
  color: #fff;
}

.button-outline-primary {
  background-color: transparent;
  border-color: var(--color-third);
  color: var(--color-primary);
}

.button-outline-primary:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.button-fill-secondary:hover {
  color: var(--color-primary);
}

.form-action {
  padding-top: 16px;
  text-align: end;
}

.form-group {
  margin: 0 0 16px;
}

.select2-container .select2-selection--single,
.input-text,
.form-control {
  background: rgba(217, 216, 214, 0.2);
  border: 1px solid rgb(200, 200, 200);
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  text-align: start;
  width: 100%;
  display: block;
  height: 42px;
  margin: 0;
}

.input-text:focus,
.form-control:focus {
  border-color: var(--color-dark);
}

.input-text::placeholder,
.form-control::placeholder {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  opacity: 0.2;
}

textarea.input-text,
textarea.form-control {
  height: auto;
}

select.form-control {
  padding-top: 0;
  padding-bottom: 0;
}

.form-label {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  text-transform: capitalize;
  margin: 0 0 8px;
  display: inline-flex;
  align-items: start;
}

.form-label.required::after {
  content: "*";
  color: var(--color-danger);
  line-height: 0.5;
  margin-left: 2px;
}

#otp-alert {
  text-align: center;
  margin: 0 0 12px;
}

#otp-alert>strong {
  letter-spacing: 2px;
}

#otp-field {
  direction: rtl;
  flex-wrap: nowrap;
}

#otp-field input {
  text-align: center;
  padding: 0;
}

#otp-timer {
  margin-top: 10px;
}

.entry-header {
  border-bottom: 1px dashed var(--color-light);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.entry-cover {
  overflow: hidden;
  margin-bottom: 15px;
}

.entry-cover>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  border-radius: 30px;
}

.entry-title {
  font-size: 24px;
  margin: 0;
}

.entry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.entry-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px 0 0;
}

.entry-share>strong {
  margin-right: 15px;
}

.entry-share ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Theme */
#header {
  position: relative;
  z-index: 10002;
  background: var(--color-white);
}

#header>div {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

body:not(.home) .header-inner {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--color-primary);
  border-radius: 20px;
}

.lang-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 1;
}

.lang-nav>li {
  display: inline-flex;
  align-items: center;
}

.lang-nav>li:not(:last-child)::after {
  margin: 0 6px;
  content: "/";
  color: #000;
}

body:not(.home) .lang-nav>li:not(:last-child)::after {
  color: var(--color-white);
}

.lang-nav>li>a {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
}

body:not(.home) .lang-nav>li>a {
  color: var(--color-light);
}

.lang-nav>li:hover>a,
.lang-nav>li.active>a {
  color: var(--color-secondary) !important;
}

.logo {
  margin-right: auto;
}

.logo>img {
  height: 50px;
  filter: var(--filter-secondary);
}

.user-nav {
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.search-toggle>a,
.call-toggle>a {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 28px;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-toggle>a {
  background: var(--color-white);
  border-color: var(--color-light);
  color: var(--color-primary);
}

.search-toggle>a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.call-toggle>a {
  background: var(--color-red);
  color: #fff;
}

.slideshow {
  background: var(--color-primary);
  border-radius: 30px;
  overflow: hidden;
}

.slide-card-img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slideshow .slick-arrow {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.slideshow-inner {
  position: relative;
}

.cta-slideshow {
  border-radius: 30px 0 0 0;
  width: 350px;
  max-width: 75%;
  padding: 30px 10px;
  background: var(--color-white);
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
  line-height: 1;
  z-index: 1;
}

.cta-slideshow::before,
.cta-slideshow::after {
  border-radius: 0 0 30px 0;
  box-shadow: 30px 30px 0 30px var(--color-white);
  width: 30px;
  height: 30px;
  position: absolute;
  content: "";
}

.cta-slideshow::before {
  right: 100%;
  bottom: 0;
}

.cta-slideshow::after {
  right: 0;
  bottom: 100%;
}

.cta-slideshow>div>span {
  color: var(--color-third);
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.cta-slideshow>div>strong {
  font-weight: 700;
  font-size: 18px;
  direction: ltr;
  display: inline-flex;
}

.cta-slideshow>i {
  min-width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.intro-grid>div>.intro-card:not(:only-child) {
  height: calc(50% - 15px);
}

.intro-card {
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-third);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.intro-card+.intro-card {
  margin-top: 30px;
}

.intro-card-about {
  background: linear-gradient(-180deg, #ddedf5 0%, #beddea 100%);
}

.intro-card-about .intro-card-header {
  flex-direction: column;
}

.intro-card-about::after {
  opacity: 0.8;
  filter: blur(2px);
  background: url(../img/bg-01.webp) no-repeat left bottom;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
}

.intro-card-product {
  background: #f1f2f2;
}

.intro-card-support {
  background: linear-gradient(-90deg, #ffcc53 0%, #fcda8a 100%);
}

.intro-card-footer {
  text-align: end;
}

.intro-card-product,
.intro-card-support {
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
}

.intro-card-header {
  display: flex;
  align-items: start;
  gap: 16px;
}

.intro-card-icon {
  padding: 10px;
  min-width: 62px;
  max-width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
}

.intro-card-icon>img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.intro-card-stat {
  background: var(--color-primary);
}

.intro-card-title {
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 700;
  text-wrap: balance;
  margin: 0;
}

.intro-card-subtitle {
  color: var(--color-third);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
}

.intro-card-body,
.intro-card-footer {
  margin-top: 15px;
}

.stat-grid>div:not(:last-child)::after {
  width: 100%;
  height: 1px;
  background: var(--color-light);
  opacity: 0.15;
  margin: 20px 0;
  display: block;
  content: "";
}

.stat-card-header {
  display: flex;
  align-items: center;
  column-gap: 20px;
  line-height: 1;
}

.stat-card-icon>img {
  min-width: 32px;
  max-width: 32px;
  aspect-ratio: 1/1;
  filter: brightness(0) invert(1);
}

.stat-card-subtitle {
  font-size: 60px;
  color: var(--color-secondary);
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  column-gap: 10px;
}

.stat-card-subtitle::before {
  content: "+";
}

.stat-card-title {
  color: var(--color-white);
  font-size: 17px;
  margin: 0;
  font-weight: 500;
  text-wrap: balance;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-bottom-width: 6px;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 82px;
  height: 82px;
  border-radius: 13px;
  background-color: var(--color-secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.service-card-icon>img {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(0);
}

.service-card-title {
  font-size: 24px;
  font-weight: 650;
  margin: 0;
}

.service-card-body {
  margin-top: 30px;
  margin-bottom: auto;
}

.service-card-desc {
  color: var(--color-third);
  margin-top: 10px;
}

.service-card-footer {
  margin-top: 30px;
}

.service-card-btn {
  justify-content: space-between;
}

.section-featured .section-inner {
  padding: 60px;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.section-featured .section-inner::before {
  background: url(../img/bg-02.webp) right bottom;
  background-size: cover;
  transform: scaleX(-1);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
}

.section-featured .stat-card {
  text-align: start;
}

.section-featured .stat-card::after {
  width: 100%;
  height: 1px;
  background: var(--color-light);
  opacity: 0.15;
  margin: 20px 0;
  display: block;
  content: "";
}

.section-featured .section-cover {
  display: flex;
  column-gap: 30px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-featured .section-cover>li {
  width: 50%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.section-featured .section-cover>li>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1);
}

.section-featured .section-cover>li::after {
  background: #beddea;
  mix-blend-mode: color;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}

.section-featured .section-title {
  color: var(--color-secondary);
  font-size: 34px;
  font-weight: 800;
  margin: 0;
}

.section-featured .section-subtitle {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 650;
  margin: 10px 0 0;
}

.section-featured .section-desc {
  color: #b3c0ce;
  margin: 10px 0 0;
}

.section-featured .section-nav {
  margin: 30px 0 0;
}

.section-featured .section-nav .button {
  background-color: var(--color-third);
}

.section-featured .section-nav .button:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.product-card {
  background: var(--color-light);
  padding: 10px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card-img {
  width: 100%;
  border-radius: 20px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 650;
}

.product-card-footer {
  margin-top: auto;
}

.product-card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-action>a {
  height: 46px;
  border-radius: 46px;
  padding: 5px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  line-height: 1;
}

.product-card-action>a>i {
  color: var(--color-white);
  font-size: 24px;
  margin-left: 5px;
  margin-right: 10px;
}

.product-card-action>a>span {
  font-size: 13px;
  background: var(--color-white);
  height: 100%;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.product-card-action>a:hover>span {
  background: var(--color-third);
  color: var(--color-white);
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-bottom-width: 6px;
  border-radius: 30px;
  padding: 15px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card-header {
  position: relative;
}

.blog-card-img {
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.blog-card-time {
  width: 80px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  border-radius: 5px;
  padding: 15px 5px;
  row-gap: 15px;
}

.blog-card-time>strong {
  font-size: 30px;
  font-weight: 500;
}

.blog-card-time>span {
  font-size: 12px;
}

.blog-card-body {
  padding-top: 15px;
}

.blog-card-title {
  font-size: 18px;
  height: 54px;
  font-weight: 600;
  margin: 0;
}

.blog-card-desc {
  color: var(--color-third);
  border-top: 1px solid var(--color-light);
  margin-top: 15px;
  padding-top: 15px;
}

#footer {
  margin-top: auto;
}

.footer-top .footer-inner {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 60px 120px;
  border-radius: 35px;
}

.footer-logo>img {
  filter: var(--filter-secondary);
  height: 100px;
}

.footer-title {
  color: var(--color-white);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info>li>i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-primary);
  font-size: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.contact-info>li>strong {
  color: var(--color-light);
}

.contact-info>li>div {
  margin-top: 5px;
  color: #fff;
}

.contact-info>li>div>a {
  color: inherit;
}

/*Plugin*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  right: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: right;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: left;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/*--*/
.toaster {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  z-index: 999999999;
  position: fixed;
  padding: 5px;
}

.toaster.bottom-right {
  bottom: 20px;
  left: 20px;
}

.toaster.bottom-left {
  bottom: 20px;
  right: 20px;
}

.toaster.top-right {
  top: 20px;
  left: 20px;
}

.toaster.top-left {
  top: 20px;
  right: 20px;
}

.toaster.bottom-center {
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
}

.toaster.top-center {
  top: 20px;
  right: 50%;
  transform: translateX(50%);
}

.toaster.top-center ol.rack {
  flex-direction: column-reverse;
}

.toaster.top-right ol.rack {
  flex-direction: column-reverse;
}

.toaster.top-left ol.rack {
  flex-direction: column-reverse;
}

.toaster.bottom-center ol.rack {
  flex-direction: column;
}

.toaster.bottom-right ol.rack {
  flex-direction: column;
}

.toaster.bottom-left ol.rack {
  flex-direction: column;
}

ol.rack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

ol.rack li {
  margin-bottom: 16px;
}

ol.rack.upperstack li {
  margin-bottom: -35px;
  transition: all 0.3s ease-in-out;
}

ol.rack.upperstack li:hover {
  margin-bottom: 16px;
  scale: 1.03;
  transition: all 0.3s ease-in-out;
}

ol.rack.lowerstack li {
  margin-top: -35px;
}

ol.rack.lowerstack {
  margin-bottom: 0px;
}

.butteruptoast {
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000001a;
  font-size: 13px;
  display: flex;
  padding: 16px;
  border: 1px solid hsl(0, 0%, 93%);
  background-color: white;
  gap: 6px;
  color: #282828;
  width: 325px;
}

.butteruptoast.dismissable {
  cursor: pointer;
}

.butteruptoast .icon {
  display: flex;
  align-items: start;
  flex-direction: column;
}

.butteruptoast .icon svg {
  width: 20px;
  height: 20px;
  fill: #282828;
}

.notif .desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif .desc .title {
  font-weight: 600;
  line-height: 1.5;
}

.notif .desc .message {
  font-weight: 400;
  line-height: 1.4;
}

.butteruptoast.success {
  background-color: #ebfef2;
  color: hsl(140, 100%, 27%);
  border: solid 1px hsl(145, 92%, 91%);
}

.butteruptoast.success .icon svg {
  fill: hsl(140, 100%, 27%);
}

.butteruptoast.error .icon svg {
  fill: hsl(0, 100%, 27%);
}

.butteruptoast.warning .icon svg {
  fill: hsl(50, 100%, 27%);
}

.butteruptoast.info .icon svg {
  fill: hsl(210, 100%, 27%);
}

.butteruptoast.error {
  background-color: #fef0f0;
  color: hsl(0, 100%, 27%);
  border: solid 1px hsl(0, 92%, 91%);
}

.butteruptoast.warning {
  background-color: #fffdf0;
  color: hsl(50, 100%, 27%);
  border: solid 1px hsl(50, 92%, 91%);
}

.butteruptoast.info {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 1px hsl(210, 92%, 91%);
}

.toast-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  flex-direction: row;
  margin-top: 16px;
}

.toast-buttons .toast-button.primary {
  background-color: #282828;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  width: 100%;
}

.toast-buttons .toast-button.secondary {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 1px hsl(210, 92%, 91%);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.butteruptoast.success .toast-button.primary {
  background-color: hsl(145, 63%, 42%);
  color: white;
}

.butteruptoast.success .toast-button.secondary {
  background-color: hsl(145, 45%, 90%);
  color: hsl(145, 63%, 32%);
  border: solid 1px hsl(145, 63%, 72%);
}

.butteruptoast.error .toast-button.primary {
  background-color: hsl(354, 70%, 54%);
  color: white;
}

.butteruptoast.error .toast-button.secondary {
  background-color: hsl(354, 30%, 90%);
  color: hsl(354, 70%, 44%);
  border: solid 1px hsl(354, 70%, 74%);
}

.butteruptoast.warning .toast-button.primary {
  background-color: hsl(45, 100%, 51%);
  color: hsl(45, 100%, 15%);
}

.butteruptoast.warning .toast-button.secondary {
  background-color: hsl(45, 100%, 96%);
  color: hsl(45, 100%, 31%);
  border: solid 1px hsl(45, 100%, 76%);
}

.butteruptoast.info .toast-button.primary {
  background-color: hsl(207, 90%, 54%);
  color: white;
}

.butteruptoast.info .toast-button.secondary {
  background-color: hsl(207, 90%, 94%);
  color: hsl(207, 90%, 34%);
  border: solid 1px hsl(207, 90%, 74%);
}

.toastUp {
  animation: slideUp 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

.toastDown {
  animation: slideDown 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeOutToast {
  animation: fadeOut 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.butteruptoast.glass {
  background-color: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: #282828;
}

.butteruptoast.glass.success {
  background-color: rgba(235, 254, 242, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(140, 100%, 27%);
}

.butteruptoast.glass.error {
  background-color: rgba(254, 240, 240, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(0, 100%, 27%);
}

.butteruptoast.glass.warning {
  background-color: rgba(255, 253, 240, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(50, 100%, 27%);
}

.butteruptoast.glass.info {
  background-color: rgba(240, 248, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(210, 100%, 27%);
}

.butteruptoast.brutalist {
  border-radius: 0px;
  box-shadow: 0 4px 12px #0000001a;
  border: solid 2px #282828;
  font-size: 13px;
  align-items: center;
  display: flex;
  padding: 16px;
  background-color: white;
  gap: 6px;
  color: #282828;
  width: 325px;
}

.butteruptoast.brutalist.success {
  background-color: #ebfef2;
  color: hsl(140, 100%, 27%);
  border: solid 2px hsl(140, 100%, 27%);
}

.butteruptoast.brutalist.error {
  background-color: #fef0f0;
  color: hsl(0, 100%, 27%);
  border: solid 2px hsl(0, 100%, 27%);
}

.butteruptoast.brutalist.warning {
  background-color: #fffdf0;
  color: hsl(50, 100%, 27%);
  border: solid 2px hsl(50, 100%, 27%);
}

.butteruptoast.brutalist.info {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 2px hsl(210, 100%, 27%);
}

/*--*/
@media (max-width: 767.98px) {}

@media (min-width: 768px) {}

/*CMS*/
.entry-content {
  font-size: 16px;
}

.entry-content h6 {
  font-size: 16px;
}

.entry-content h5 {
  font-size: 18px;
}

.entry-content h4 {
  font-size: 20px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content h2 {
  font-size: 24px;
}

.entry-content h1 {
  font-size: 26px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content iframe {
  border: none;
}

.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}

.entry-content video {
  width: 100%;
}

.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
}

.alignleft,
img.alignleft {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.alignright,
img.alignright {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.aligncenter,
img.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

blockquote.right {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

/*Responsive*/

@media (max-width: 767.98px) {
  .nav-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
    line-height: 1;
    font-size: 36px;
  }

  body:not(.home) .nav-toggle {
    color: var(--color-white);
  }

  #navigation {
    width: 100vw;
    padding: 20px;
    background: var(--color-primary);
    border-radius: 0 0 30px 30px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    line-height: 1;
    transition: transform 0.3s ease-in-out;
  }

  #navigation>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  #navigation>ul>li>a {
    background: rgba(255, 253, 240, 0.1);
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
  }

  body.nav-opened #navigation {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body:not(.home) #navigation>ul>li>a {
    color: var(--color-light);
  }

  #navigation>ul>li:hover>a,
  #navigation>ul>li.current-menu-item>a {
    color: var(--color-secondary) !important;
  }

  .nav-toggle {
    margin-left: 20px;
  }

  .user-nav {
    column-gap: 10px;
  }

  .search-toggle>a,
  .call-toggle>a,
  .booking-toggle>a {
    min-width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .booking-toggle>a {
    padding: 0;
    border-radius: 50%;
  }

  .booking-toggle>a::before,
  .booking-toggle>a::after {
    display: none;
  }

  .booking-toggle>a>span {
    display: none;
  }

  .section-featured .section-inner {
    padding: 30px 15px 15px;
  }

  .intro-card {
    padding: 15px;
  }

  .service-card {
    padding: 15px;
  }

  .footer-top .footer-inner {
    padding: 45px 15px;
  }

  .slide-card-img {
    aspect-ratio: 1 / 1.25;
  }

  .footer-intro {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }

  .nav-toggle {
    display: none;
  }

  [class*="-desc"] {
    text-align: justify;
  }

  .slide-card-img {
    aspect-ratio: 1 / .45;
  }

  #navigation {
    margin-left: clamp(30px, 6.67vw + 4.00px, 100px);
    margin-right: auto;
    line-height: 1;
  }

  #navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #navigation>ul {
    display: flex;
    align-items: center;
    column-gap: clamp(10px, 0.95vw + 6.29px, 20px);
  }

  #navigation>ul>li {
    position: relative;
  }

  #navigation li>a {
    display: flex;
    align-items: center;
  }

  #navigation>ul>li>a {
    color: var(--color-primary);
    padding: 20px 0;
    font-weight: 600;
  }

  body:not(.home) #navigation>ul>li>a {
    color: var(--color-light);
  }

  #navigation>ul>li:hover>a,
  #navigation>ul>li.current-menu-item>a {
    color: var(--color-secondary) !important;
  }

  #navigation>ul ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .booking-toggle>a>i {
    display: none;
  }

  .footer-intro {
    text-align: end;
  }
}