/*--------------------------------------------------------------
# Import Modules
--------------------------------------------------------------*/
:root[data-theme=light-mode] {
  --rt-primary-light: #F4F6F9;
  --rt-border-color-2: #DDE0E4;
  --rt-border-color-3: #ebe0fe;
  --rt-border-color-4: #ECEFF4;
  --rt-white-bg-rgb2: #ffffff;
}

:root[data-theme=dark-mode] {
  --rt-primary-light: #1A1A1A;
  --rt-border-color-2: #2D2D2D;
  --rt-border-color-3: #1A1A1A;
  --rt-border-color-4: #111111;
  --rt-white-bg-rgb2: #1A1A1A;
}

.primary_light_color {
  background: var(--rt-primary-light);
}

.primary_light_color {
  background: var(--rt-primary-light);
}

:root[data-theme=light-mode] .white_bg {
  background: #ffffff;
}
:root[data-theme=light-mode] .light_bg {
  background: #F4F6F9;
}
:root[data-theme=light-mode] .light_bg2 {
  background: #F4F6F9;
}

:root[data-theme=dark-mode] .white_bg {
  background: #101010;
}
:root[data-theme=dark-mode] .light_bg {
  background: #161616;
}
:root[data-theme=dark-mode] .light_bg2 {
  background: #161616;
}
:root[data-theme=dark-mode] .rt-slider-shape path {
  fill: var(--rt-primary-light);
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

p {
  margin: 0 0 20px;
}

main {
  display: block;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

embed,
iframe,
object {
  max-width: 100%;
}

/* Text-level semantics
======================== */
a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

code, kbd, tt, var, samp {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
.elementor-invisible {
  visibility: visible !important;
}

hr {
  background-color: #eaeaea;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul ul,
ol ul {
  list-style: disc;
}

ul li {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 20px;
}

li > ul, li > ol {
  margin-bottom: 0;
  padding-left: 20px;
}

dt {
  font-weight: bold;
  margin-bottom: 10px;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

@keyframes rtTabFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rtFadeInUp, .rtTabFadeInUp {
  animation-name: rtTabFadeInUp;
}
@keyframes upsdown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes toptobottom {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes bottomtotop {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes Rtdraw {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 770;
  }
}
@keyframes scale-up-one {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.move {
  animation: move 3s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.move1 {
  animation: move1 2s linear infinite;
}

@keyframes move1 {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(30px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
.move2 {
  animation: move2 2s linear infinite;
}

@keyframes move2 {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
@keyframes dash-animation {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 100%;
  }
}
@keyframes rt-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rt-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes marquee_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee_right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes marquee_top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marquee_bottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.spin {
  animation: spin 5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes showPrice {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hidePrice {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes rtDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

:focus-visible {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #111111;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0 0 20px;
}

pre {
  background: var(--rt-gray-color);
  line-height: 1.2;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 32px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

mark, ins {
  background: var(--rt-primary-color);
  text-decoration: none;
  color: #111111;
  padding: 1px 5px;
  border-radius: 0;
  font-weight: 500;
}

kbd {
  color: #041b16;
  padding: 3px 5px 2px 5px;
  margin: 0 1px;
  background: #f1f1f1;
}

.wp-block-code {
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
  font-family: Menlo, Consolas, monaco, monospace;
  padding: 0.8em 1em;
}

a {
  color: var(--rt-heading-color);
}

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

* {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}

table th,
table td,
.wp-block-table td,
.wp-block-table th {
  border: 1px solid var(--rt-border-color);
  padding: 8px;
  text-align: center;
}

td,
th {
  padding: 0;
}

.container,
.container-fluid,
.rt-container,
.rt-container-fluid,
.container-narrow {
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}
.container::after,
.container-fluid::after,
.rt-container::after,
.rt-container-fluid::after,
.container-narrow::after {
  content: "";
  display: table;
  clear: both;
}

.rt-container-fluid,
.container-fluid {
  max-width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1140px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .rt-container,
  .container {
    max-width: var(--rt-container-width, 1314px);
  }
}
.row {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  margin-right: -12px;
  margin-left: -12px;
  flex: 0 1 auto;
  flex-wrap: wrap;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}

.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.g-0 > * {
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}

.row.g-1 {
  margin-right: -2px;
  margin-left: -2px;
  margin-top: -4px;
}
.row.g-1 > * {
  padding-right: 2px;
  padding-left: 2px;
  margin-top: 4px;
}

.row.g-2 {
  margin-right: -4px;
  margin-left: -4px;
  margin-top: -8px;
}
.row.g-2 > * {
  padding-right: 4px;
  padding-left: 4px;
  margin-top: 8px;
}

.row.g-3 {
  margin-right: -8px;
  margin-left: -8px;
  margin-top: -16px;
}
.row.g-3 > * {
  padding-right: 8px;
  padding-left: 8px;
  margin-top: 16px;
}

.row.g-4 {
  margin-right: -12px;
  margin-left: -12px;
  margin-top: -24px;
}
.row.g-4 > * {
  padding-right: 12px;
  padding-left: 12px;
  margin-top: 24px;
}

.row.g-5 {
  margin-right: -15px;
  margin-left: -15px;
  margin-top: -30px;
}
.row.g-5 > * {
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 30px;
}

.row.g-6 {
  margin-right: -24px;
  margin-left: -24px;
  margin-top: -48px;
}
.row.g-6 > * {
  padding-right: 24px;
  padding-left: 24px;
  margin-top: 48px;
}

.row.g-6 {
  margin-right: -48px;
  margin-left: -48px;
  margin-top: -96px;
}
.row.g-6 > * {
  padding-right: 48px;
  padding-left: 48px;
  margin-top: 96px;
}

.nowrap {
  flex-wrap: nowrap;
}

.reverse {
  flex-direction: row-reverse;
}

.flex-item {
  flex: 0 0 auto;
}
.flex-item.grow {
  flex-grow: 1;
}

[class^=col-],
[class*=" col-"] {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 1px;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 auto;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-1 {
  max-width: 8.3333333333%;
  flex: 0 0 8.3333333333%;
}

.col-2 {
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%;
}

.col-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.col-4 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}

.col-5 {
  max-width: 41.6666666667%;
  flex: 0 0 41.6666666667%;
}

.col-6 {
  max-width: 50%;
  flex: 0 0 50%;
}

.col-7 {
  max-width: 58.3333333333%;
  flex: 0 0 58.3333333333%;
}

.col-8 {
  max-width: 66.6666666667%;
  flex: 0 0 66.6666666667%;
}

.col-9 {
  max-width: 75%;
  flex: 0 0 75%;
}

.col-10 {
  max-width: 83.3333333333%;
  flex: 0 0 83.3333333333%;
}

.col-11 {
  max-width: 91.6666666667%;
  flex: 0 0 91.6666666667%;
}

.col-12 {
  max-width: 100%;
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-sm-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-sm-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-sm-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-sm-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-sm-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-sm-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-sm-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-sm-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-sm-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-sm-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-sm-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-md-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-md-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-md-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-md-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-md-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-md-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-md-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-lg-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-lg-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-lg-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-lg-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-lg-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-lg-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-lg-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-lg-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1140px) {
  .col-xl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xl-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-xl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xl-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-xl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xl-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-xl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xl-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-xl-pull-0 {
    right: auto;
  }
  .col-xl-pull-1 {
    right: 8.3333333333%;
  }
  .col-xl-pull-2 {
    right: 16.6666666667%;
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-pull-4 {
    right: 33.3333333333%;
  }
  .col-xl-pull-5 {
    right: 41.6666666667%;
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-pull-7 {
    right: 58.3333333333%;
  }
  .col-xl-pull-8 {
    right: 66.6666666667%;
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-pull-10 {
    right: 83.3333333333%;
  }
  .col-xl-pull-11 {
    right: 91.6666666667%;
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-push-0 {
    left: auto;
  }
  .col-xl-push-1 {
    left: 8.3333333333%;
  }
  .col-xl-push-2 {
    left: 16.6666666667%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-4 {
    left: 33.3333333333%;
  }
  .col-xl-push-5 {
    left: 41.6666666667%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-7 {
    left: 58.3333333333%;
  }
  .col-xl-push-8 {
    left: 66.6666666667%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-10 {
    left: 83.3333333333%;
  }
  .col-xl-push-11 {
    left: 91.6666666667%;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0%;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
}
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.d-none {
  display: none;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.p-0 {
  padding: 0px;
}

.m-0 {
  margin: 0px;
}

.p-5 {
  padding: 5px;
}

.m-5 {
  margin: 5px;
}

.p-8 {
  padding: 8px;
}

.m-8 {
  margin: 8px;
}

.p-10 {
  padding: 10px;
}

.m-10 {
  margin: 10px;
}

.p-15 {
  padding: 15px;
}

.m-15 {
  margin: 15px;
}

.p-16 {
  padding: 16px;
}

.m-16 {
  margin: 16px;
}

.p-20 {
  padding: 20px;
}

.m-20 {
  margin: 20px;
}

.p-30 {
  padding: 30px;
}

.m-30 {
  margin: 30px;
}

.p-40 {
  padding: 40px;
}

.m-40 {
  margin: 40px;
}

.p-50 {
  padding: 50px;
}

.m-50 {
  margin: 50px;
}

.p-60 {
  padding: 60px;
}

.m-60 {
  margin: 60px;
}

.p-80 {
  padding: 80px;
}

.m-80 {
  margin: 80px;
}

.p-100 {
  padding: 100px;
}

.m-100 {
  margin: 100px;
}

.p-120 {
  padding: 120px;
}

.m-120 {
  margin: 120px;
}

.p-150 {
  padding: 150px;
}

.m-150 {
  margin: 150px;
}

.p-180 {
  padding: 180px;
}

.m-180 {
  margin: 180px;
}

.p-200 {
  padding: 200px;
}

.m-200 {
  margin: 200px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-200 {
  padding-top: 200px;
}

@media (min-width: 992px) {
  .pt-lg-30 {
    padding-top: 30px;
  }
  .pt-lg-50 {
    padding-top: 50px;
  }
  .pt-lg-80 {
    padding-top: 80px;
  }
  .pt-lg-100 {
    padding-top: 100px;
  }
  .pt-lg-120 {
    padding-top: 120px;
  }
  .pt-lg-150 {
    padding-top: 150px;
  }
}
@media (min-width: 768px) {
  .pt-md-30 {
    padding-top: 30px;
  }
  .pt-md-50 {
    padding-top: 50px;
  }
  .pt-md-80 {
    padding-top: 80px;
  }
  .pt-md-100 {
    padding-top: 100px;
  }
  .pt-md-120 {
    padding-top: 120px;
  }
  .pt-md-150 {
    padding-top: 150px;
  }
}
@media (min-width: 576px) {
  .pt-sm-30 {
    padding-top: 30px;
  }
  .pt-sm-50 {
    padding-top: 50px;
  }
  .pt-sm-80 {
    padding-top: 80px;
  }
  .pt-sm-100 {
    padding-top: 100px;
  }
  .pt-sm-120 {
    padding-top: 120px;
  }
  .pt-sm-150 {
    padding-top: 150px;
  }
}
.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-200 {
  padding-right: 200px;
}

@media (min-width: 992px) {
  .pr-lg-30 {
    padding-right: 30px;
  }
  .pr-lg-50 {
    padding-right: 50px;
  }
  .pr-lg-80 {
    padding-right: 80px;
  }
  .pr-lg-100 {
    padding-right: 100px;
  }
  .pr-lg-120 {
    padding-right: 120px;
  }
  .pr-lg-150 {
    padding-right: 150px;
  }
}
@media (min-width: 768px) {
  .pr-md-30 {
    padding-right: 30px;
  }
  .pr-md-50 {
    padding-right: 50px;
  }
  .pr-md-80 {
    padding-right: 80px;
  }
  .pr-md-100 {
    padding-right: 100px;
  }
  .pr-md-120 {
    padding-right: 120px;
  }
  .pr-md-150 {
    padding-right: 150px;
  }
}
@media (min-width: 576px) {
  .pr-sm-30 {
    padding-right: 30px;
  }
  .pr-sm-50 {
    padding-right: 50px;
  }
  .pr-sm-80 {
    padding-right: 80px;
  }
  .pr-sm-100 {
    padding-right: 100px;
  }
  .pr-sm-120 {
    padding-right: 120px;
  }
  .pr-sm-150 {
    padding-right: 150px;
  }
}
.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-200 {
  padding-bottom: 200px;
}

@media (min-width: 992px) {
  .pb-lg-30 {
    padding-bottom: 30px;
  }
  .pb-lg-50 {
    padding-bottom: 50px;
  }
  .pb-lg-80 {
    padding-bottom: 80px;
  }
  .pb-lg-100 {
    padding-bottom: 100px;
  }
  .pb-lg-120 {
    padding-bottom: 120px;
  }
  .pb-lg-150 {
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .pb-md-30 {
    padding-bottom: 30px;
  }
  .pb-md-50 {
    padding-bottom: 50px;
  }
  .pb-md-80 {
    padding-bottom: 80px;
  }
  .pb-md-100 {
    padding-bottom: 100px;
  }
  .pb-md-120 {
    padding-bottom: 120px;
  }
  .pb-md-150 {
    padding-bottom: 150px;
  }
}
@media (min-width: 576px) {
  .pb-sm-30 {
    padding-bottom: 30px;
  }
  .pb-sm-50 {
    padding-bottom: 50px;
  }
  .pb-sm-80 {
    padding-bottom: 80px;
  }
  .pb-sm-100 {
    padding-bottom: 100px;
  }
  .pb-sm-120 {
    padding-bottom: 120px;
  }
  .pb-sm-150 {
    padding-bottom: 150px;
  }
}
.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-200 {
  padding-left: 200px;
}

@media (min-width: 992px) {
  .pl-lg-30 {
    padding-left: 30px;
  }
  .pl-lg-50 {
    padding-left: 50px;
  }
  .pl-lg-80 {
    padding-left: 80px;
  }
  .pl-lg-100 {
    padding-left: 100px;
  }
  .pl-lg-120 {
    padding-left: 120px;
  }
  .pl-lg-150 {
    padding-left: 150px;
  }
}
@media (min-width: 768px) {
  .pl-md-30 {
    padding-left: 30px;
  }
  .pl-md-50 {
    padding-left: 50px;
  }
  .pl-md-80 {
    padding-left: 80px;
  }
  .pl-md-100 {
    padding-left: 100px;
  }
  .pl-md-120 {
    padding-left: 120px;
  }
  .pl-md-150 {
    padding-left: 150px;
  }
}
@media (min-width: 576px) {
  .pl-sm-30 {
    padding-left: 30px;
  }
  .pl-sm-50 {
    padding-left: 50px;
  }
  .pl-sm-80 {
    padding-left: 80px;
  }
  .pl-sm-100 {
    padding-left: 100px;
  }
  .pl-sm-120 {
    padding-left: 120px;
  }
  .pl-sm-150 {
    padding-left: 150px;
  }
}
.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-200 {
  margin-top: 200px;
}

@media (max-width: 992px) {
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mt-lg-50 {
    margin-top: 50px;
  }
  .mt-lg-80 {
    margin-top: 80px;
  }
  .mt-lg-100 {
    margin-top: 100px;
  }
  .mt-lg-120 {
    margin-top: 120px;
  }
  .mt-lg-150 {
    margin-top: 150px;
  }
}
@media (max-width: 768px) {
  .mt-md-30 {
    margin-top: 30px;
  }
  .mt-md-50 {
    margin-top: 50px;
  }
  .mt-md-80 {
    margin-top: 80px;
  }
  .mt-md-100 {
    margin-top: 100px;
  }
  .mt-md-120 {
    margin-top: 120px;
  }
  .mt-md-150 {
    margin-top: 150px;
  }
}
@media (max-width: 576px) {
  .mt-sm-30 {
    margin-top: 30px;
  }
  .mt-sm-50 {
    margin-top: 50px;
  }
  .mt-sm-80 {
    margin-top: 80px;
  }
  .mt-sm-100 {
    margin-top: 100px;
  }
  .mt-sm-120 {
    margin-top: 120px;
  }
  .mt-sm-150 {
    margin-top: 150px;
  }
}
.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-200 {
  margin-right: 200px;
}

@media (max-width: 992px) {
  .mr-lg-30 {
    margin-right: 30px;
  }
  .mr-lg-50 {
    margin-right: 50px;
  }
  .mr-lg-80 {
    margin-right: 80px;
  }
  .mr-lg-100 {
    margin-right: 100px;
  }
  .mr-lg-120 {
    margin-right: 120px;
  }
  .mr-lg-150 {
    margin-right: 150px;
  }
}
@media (max-width: 768px) {
  .mr-md-30 {
    margin-right: 30px;
  }
  .mr-md-50 {
    margin-right: 50px;
  }
  .mr-md-80 {
    margin-right: 80px;
  }
  .mr-md-100 {
    margin-right: 100px;
  }
  .mr-md-120 {
    margin-right: 120px;
  }
  .mr-md-150 {
    margin-right: 150px;
  }
}
@media (max-width: 576px) {
  .mr-sm-30 {
    margin-right: 30px;
  }
  .mr-sm-50 {
    margin-right: 50px;
  }
  .mr-sm-80 {
    margin-right: 80px;
  }
  .mr-sm-100 {
    margin-right: 100px;
  }
  .mr-sm-120 {
    margin-right: 120px;
  }
  .mr-sm-150 {
    margin-right: 150px;
  }
}
.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-200 {
  margin-bottom: 200px;
}

@media (max-width: 992px) {
  .mb-lg-30 {
    margin-bottom: 30px;
  }
  .mb-lg-50 {
    margin-bottom: 50px;
  }
  .mb-lg-80 {
    margin-bottom: 80px;
  }
  .mb-lg-100 {
    margin-bottom: 100px;
  }
  .mb-lg-120 {
    margin-bottom: 120px;
  }
  .mb-lg-150 {
    margin-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .mb-md-30 {
    margin-bottom: 30px;
  }
  .mb-md-50 {
    margin-bottom: 50px;
  }
  .mb-md-80 {
    margin-bottom: 80px;
  }
  .mb-md-100 {
    margin-bottom: 100px;
  }
  .mb-md-120 {
    margin-bottom: 120px;
  }
  .mb-md-150 {
    margin-bottom: 150px;
  }
}
@media (max-width: 576px) {
  .mb-sm-30 {
    margin-bottom: 30px;
  }
  .mb-sm-50 {
    margin-bottom: 50px;
  }
  .mb-sm-80 {
    margin-bottom: 80px;
  }
  .mb-sm-100 {
    margin-bottom: 100px;
  }
  .mb-sm-120 {
    margin-bottom: 120px;
  }
  .mb-sm-150 {
    margin-bottom: 150px;
  }
}
.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-200 {
  margin-left: 200px;
}

@media (max-width: 992px) {
  .ml-lg-30 {
    margin-left: 30px;
  }
  .ml-lg-50 {
    margin-left: 50px;
  }
  .ml-lg-80 {
    margin-left: 80px;
  }
  .ml-lg-100 {
    margin-left: 100px;
  }
  .ml-lg-120 {
    margin-left: 120px;
  }
  .ml-lg-150 {
    margin-left: 150px;
  }
}
@media (max-width: 768px) {
  .ml-md-30 {
    margin-left: 30px;
  }
  .ml-md-50 {
    margin-left: 50px;
  }
  .ml-md-80 {
    margin-left: 80px;
  }
  .ml-md-100 {
    margin-left: 100px;
  }
  .ml-md-120 {
    margin-left: 120px;
  }
  .ml-md-150 {
    margin-left: 150px;
  }
}
@media (max-width: 576px) {
  .ml-sm-30 {
    margin-left: 30px;
  }
  .ml-sm-50 {
    margin-left: 50px;
  }
  .ml-sm-80 {
    margin-left: 80px;
  }
  .ml-sm-100 {
    margin-left: 100px;
  }
  .ml-sm-120 {
    margin-left: 120px;
  }
  .ml-sm-150 {
    margin-left: 150px;
  }
}
.gap-0 {
  gap: 0px;
}

.column-gap-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.row-gap-0 {
  row-gap: 0px;
}

.gap-5 {
  gap: 5px;
}

.column-gap-5 {
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.row-gap-5 {
  row-gap: 5px;
}

.gap-8 {
  gap: 8px;
}

.column-gap-8 {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.row-gap-8 {
  row-gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.column-gap-10 {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.row-gap-10 {
  row-gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.column-gap-15 {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.row-gap-15 {
  row-gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.column-gap-16 {
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.row-gap-16 {
  row-gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.column-gap-20 {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.row-gap-20 {
  row-gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.column-gap-30 {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.row-gap-30 {
  row-gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.column-gap-40 {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.row-gap-40 {
  row-gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.column-gap-50 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.row-gap-50 {
  row-gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.column-gap-60 {
  -moz-column-gap: 60px;
       column-gap: 60px;
}

.row-gap-60 {
  row-gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.column-gap-80 {
  -moz-column-gap: 80px;
       column-gap: 80px;
}

.row-gap-80 {
  row-gap: 80px;
}

.gap-100 {
  gap: 100px;
}

.column-gap-100 {
  -moz-column-gap: 100px;
       column-gap: 100px;
}

.row-gap-100 {
  row-gap: 100px;
}

.gap-120 {
  gap: 120px;
}

.column-gap-120 {
  -moz-column-gap: 120px;
       column-gap: 120px;
}

.row-gap-120 {
  row-gap: 120px;
}

.gap-150 {
  gap: 150px;
}

.column-gap-150 {
  -moz-column-gap: 150px;
       column-gap: 150px;
}

.row-gap-150 {
  row-gap: 150px;
}

.gap-180 {
  gap: 180px;
}

.column-gap-180 {
  -moz-column-gap: 180px;
       column-gap: 180px;
}

.row-gap-180 {
  row-gap: 180px;
}

.gap-200 {
  gap: 200px;
}

.column-gap-200 {
  -moz-column-gap: 200px;
       column-gap: 200px;
}

.row-gap-200 {
  row-gap: 200px;
}

/* WordPress Core
***************************/
.rt-bookmark .icon-rt-bookmark {
  top: -1px;
  position: relative;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 12px auto 12px auto;
}

.alignright {
  float: right;
  margin: 12px 0 24px 24px;
}

.alignleft {
  float: left;
  margin: 12px 24px 24px 0;
}

a img.alignright {
  float: right;
  margin: 12px 0 48px 48px;
}

a img.alignnone {
  margin: 12px 48px 48px 0;
}

a img.alignleft {
  float: left;
  margin: 12px 48px 48px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.wp-block-query-pagination {
  margin-top: 10px;
}
.wp-block-query-pagination > a {
  color: #111111;
  font-size: 15px;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers > *:not(.dots) {
  display: inline-flex;
  padding: 3px 8px;
  background-color: var(--rt-gray-color);
  line-height: 1.3;
  min-width: 30px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 3px;
  color: #111111;
  border: none;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers a:hover {
  background-color: var(--rt-meta-color);
  color: #ffffff;
}

/* Gutenberg Style */
.blocks-gallery-grid, .wp-block-gallery {
  margin-bottom: 25px;
  margin-top: 25px;
}

.gallery-caption {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.wp-block-latest-comments__comment-date,
.wp-block-image figcaption,
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date,
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  font-size: 14px;
}

.wp-block-image figcaption {
  color: #70778b;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 10px 10px 0;
  width: calc(50% - 10px);
  border-radius: 0;
  overflow: hidden;
}

.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
  width: calc(33.33333% - 10px);
  margin-right: 10px;
}

.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item {
  width: calc(25% - 10px);
  margin-right: 10px;
}

.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item,
.wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item {
  width: calc(20% - 5px);
  margin-right: 5px;
}

.blocks-gallery-grid .blocks-gallery-image:last-child,
.blocks-gallery-grid .blocks-gallery-item:last-child,
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0 !important;
}

.columns-5 .blocks-gallery-image figcaption,
.columns-5 .blocks-gallery-item figcaption,
.columns-6 .blocks-gallery-image figcaption,
.columns-6 .blocks-gallery-item figcaption,
.columns-7 .blocks-gallery-image figcaption,
.columns-7 .blocks-gallery-item figcaption,
.columns-8 .blocks-gallery-image figcaption,
.columns-8 .blocks-gallery-item figcaption {
  font-size: 14px;
}

.single-blog .single-blog-content .post-details .wp-block-rss,
.single-blog .single-blog-content .post-details .wp-block-latest-posts {
  list-style: none;
  padding: 0;
}

.single-blog .single-blog-content .post-details > *:last-child {
  margin-bottom: 0;
}

.single-blog .single-blog-content .post-details .wp-block-calendar .wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-block-calendar {
  margin-bottom: 15px;
}

.single-blog .single-blog-content .post-details .wp-block-latest-comments,
.single-blog .single-blog-content .post-details .wp-block-archives {
  padding-left: 0;
}

form.post-password-form label > input {
  background: #ffffff;
  border: 1px solid var(--rt-border-color);
  border-radius: 0;
  padding: 10px 8px;
  height: 44px;
}

form.post-password-form input[type=submit] {
  background: var(--rt-primary-color);
  border-radius: 0;
  color: #111111;
  font-weight: 500;
  outline: none;
  height: 44px;
  line-height: 0;
  transition: all ease 0.31s;
}

.comment-list .pingback-entry {
  margin-bottom: 30px;
}

.wp-block-search .wp-block-search__label {
  display: none;
}
.wp-block-search .wp-block-search__button {
  margin-left: 0;
  border: none;
  background-color: var(--rt-primary-color);
  border-radius: 0 6px 6px 0;
  padding: 6px 15px;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  transition: 0.4s;
}
.wp-block-search .wp-block-search__button:hover {
  background-color: var(--rt-secondary-color);
  color: #ffffff;
}
.wp-block-search .wp-block-search__input {
  background-color: transparent;
  border-radius: 6px 0 0 6px;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.wp-block-cover {
  margin-bottom: 15px;
  padding: 30px;
  border-radius: 0;
  overflow: hidden;
}
.wp-block-cover .wp-block-cover__background {
  border-radius: 0;
}
.wp-block-cover.is-repeated {
  border-radius: 0;
}
.wp-block-cover a {
  color: #ffffff;
}

.has-large-font-size,
.has-x-large-font-size {
  line-height: 1.24;
}

figcaption,
figure.wp-block-image figcaption,
.wp-block-image img {
  border-radius: 5px;
}

:where(.wp-block-cover-image.is-light:not(.has-text-color)),
:where(.wp-block-cover.is-light:not(.has-text-color)) {
  color: #ffffff;
}

.wp-block-media-text {
  margin-bottom: 15px;
}
.wp-block-media-text figure {
  border-radius: 0;
  overflow: hidden;
}

.wp-block-button {
  margin-bottom: 12px;
}
.wp-block-button .wp-block-button__link {
  position: relative;
  background-color: var(--rt-primary-color);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 28px;
  letter-spacing: 0.16px;
  line-height: 1.08;
  z-index: 1;
  transition: all 320ms ease;
}
.wp-block-button .wp-block-button__link:hover {
  color: #ffffff;
  background-color: var(--rt-black-bg-color);
}

.wp-block-button.is-style-fill .wp-block-button__link {
  border-radius: 30px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--rt-button-text-color);
  border: 2px solid var(--rt-primary-color);
  background-color: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--rt-primary-color);
  border-color: var(--rt-secondary-color);
}

.wp-block-button.is-style-outline .wp-block-button__link:before {
  display: none;
}

.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-button .wp-block-button__link.no-border-radius,
.wp-block-button .wp-block-button__link.no-border-radius:before {
  border-radius: 0;
}

.wp-block-button .has-typiq-primary-background-color:before {
  background-color: var(--rt-primary-color);
}

.wp-block-button .has-typiq-secondary-background-color:before {
  background-color: var(--rt-secondary-rgb);
}

.wp-block-button .has-typiq-black-background-color:before {
  background-color: var(--rt-heading-color);
}

.wp-block-button .has-typiq-gray-background-color:before {
  background-color: var(--rt-gray-color);
}

.wp-block-button .has-typiq-white-background-color:before {
  background-color: #ffffff;
}

.wp-block-post {
  margin-bottom: 24px;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
  padding: 30px;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote.is-style-plain {
  border: none;
}

.wp-block-pullquote {
  font-size: 1.5em;
  line-height: 1.6;
  border: none;
  border-bottom: 4px solid;
  border-top: 4px solid;
  color: currentColor;
  margin-bottom: 1.75em;
  margin-top: 1.5em;
}

.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote__citation {
  color: var(--rt-heading-color);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  text-transform: capitalize;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 32px;
}

.has-typiq-primary-background-color {
  background-color: var(--rt-primary-color) !important;
}

.has-typiq-secondary-background-color {
  background-color: var(--rt-secondary-color) !important;
}

.has-typiq-black-background-color {
  background-color: var(--rt-heading-color) !important;
}

.has-typiq-gray-background-color {
  background-color: var(--rt-gray-color) !important;
}

.has-typiq-white-background-color {
  background-color: #ffffff !important;
}

.has-typiq-primary-color {
  color: var(--rt-primary-color) !important;
}

.has-typiq-secondary-color {
  color: var(--rt-secondary-color) !important;
}

.has-typiq-black-color {
  color: var(--rt-heading-color) !important;
}

.has-typiq-gray-color {
  color: var(--rt-gray-color) !important;
}

.has-typiq-white-color {
  color: #ffffff !important;
}

.wp-block-gallery.alignleft.extraclass {
  margin-right: 30px;
}

.wp-block-gallery-1.wp-block-gallery.columns-3 {
  margin-bottom: 15px;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border: none;
  padding: 0;
}

/* Form
***************************/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: medium none;
  color: #111;
  font-weight: 700;
  padding: 17px 28px;
  border-radius: 0;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: var(--rt-body-color);
  border: 1px solid var(--rt-border-color);
  transition: all 220ms ease;
}
input[type=text]:hover, input[type=text]:focus, input[type=text]:focus-visible,
input[type=email]:hover,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=url]:hover,
input[type=url]:focus,
input[type=url]:focus-visible,
input[type=password]:hover,
input[type=password]:focus,
input[type=password]:focus-visible,
input[type=search]:hover,
input[type=search]:focus,
input[type=search]:focus-visible,
input[type=number]:hover,
input[type=number]:focus,
input[type=number]:focus-visible,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=tel]:focus-visible,
input[type=range]:hover,
input[type=range]:focus,
input[type=range]:focus-visible,
input[type=date]:hover,
input[type=date]:focus,
input[type=date]:focus-visible,
input[type=month]:hover,
input[type=month]:focus,
input[type=month]:focus-visible,
input[type=week]:hover,
input[type=week]:focus,
input[type=week]:focus-visible,
input[type=time]:hover,
input[type=time]:focus,
input[type=time]:focus-visible,
input[type=datetime]:hover,
input[type=datetime]:focus,
input[type=datetime]:focus-visible,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=datetime-local]:focus-visible,
input[type=color]:hover,
input[type=color]:focus,
input[type=color]:focus-visible,
textarea:hover,
textarea:focus,
textarea:focus-visible {
  outline: none;
  box-shadow: none;
}

select {
  border: 1px solid var(--rt-border-color);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

.content-area {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .content-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.post-edit-link {
  top: 0;
  left: 0;
  opacity: 0;
  line-height: 1;
  max-width: 44px;
  font-size: 13px;
  max-height: 24px;
  padding: 5px 10px;
  position: absolute;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  display: flex !important;
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.5);
}
.post-edit-link:hover {
  background: #111111;
}
.post-thumbnail:hover .post-edit-link {
  opacity: 1;
  visibility: visible;
}

body.archive .content-area,
.search-results .content-area,
.author-radius .content-area {
  padding-top: 0;
}

/*blend mode*/
.rt-blend img {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg) !important;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--rt-gray-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--rt-meta-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--rt-heading-color);
}

/*offcanvas scroll bar*/
ul.rt-action-list .rt-drop-menu::-webkit-scrollbar,
.typiq-offcanvas-drawer::-webkit-scrollbar {
  width: 1px;
}

ul.rt-action-list .rt-drop-menu::-webkit-scrollbar,
.typiq-offcanvas-drawer::-webkit-scrollbar {
  background: var(--rt-border-color);
}

ul.rt-action-list .rt-drop-menu::-webkit-scrollbar-thumb,
.typiq-offcanvas-drawer::-webkit-scrollbar-thumb {
  background: var(--rt-black-bg-color);
}

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

.primary-bg-color {
  background-color: var(--rt-primary-color);
}

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

.secondary-bg-color {
  background-color: var(--rt-secondary-color);
}

.body-color {
  color: var(--rt-body-color);
}

.body-bg-color {
  background-color: var(--rt-body-color);
}

.heading-color {
  color: var(--rt-heading-color);
}

.heading-bg-color {
  background-color: var(--rt-heading-color);
}

.elementor-social-icon:hover {
  opacity: 1;
}

.elementor-social-icons-wrapper .elementor-grid-item {
  transition: 0.3s;
}

.elementor-social-icons-wrapper {
  transition: 0.3s;
}
.elementor-social-icons-wrapper:hover .elementor-grid-item:not(:hover) {
  opacity: 0.5;
}

.metaStyleDash, .meta-style-dash-bg .rt-post-meta li::before, .meta-style-dash .rt-post-meta li:not(:first-child)::before {
  content: "-----";
  margin-right: 10px;
  letter-spacing: -4px;
  transform: scaleY(0.8);
  width: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.primaryColor, .above-meta-style-border .separate-meta a, .typiq-breadcrumb-wrapper .breadcrumb li.active .title, .site-branding h1 a {
  color: var(--rt-primary-color);
}

.primaryBG, .above-meta-style-border .separate-meta a:hover, .typiq-navigation ul.menu li ul.dropdown-menu li a:before, button,
input[type=button],
input[type=reset],
input[type=submit], button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  background-color: var(--rt-primary-color);
}

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

.secondaryBG {
  background-color: var(--rt-secondary-color);
}

.whiteColor, .above-meta-style-border .separate-meta a:hover {
  color: #ffffff;
}

.whiteBG {
  background-color: #ffffff;
}

.blackColor {
  color: #111111;
}

.blackBG {
  background-color: #111111;
}

body {
  font-family: var(--rt-body-font, "Inter"), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  background-color: var(--rt-body-bg-color);
  color: var(--rt-body-color);
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rt-heading-font, "Inter"), sans-serif;
  margin: 0 0 15px 0;
  font-weight: 600;
  color: var(--rt-heading-color);
}

h1,
.h1 {
  font-size: 44px;
  line-height: 54px;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 42px;
}

h3,
.h3 {
  font-size: 28px;
  line-height: 36px;
}

h4,
.h4 {
  font-size: 22px;
  line-height: 28px;
}

h5,
.h5 {
  font-size: 18px;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 18px;
}

small,
.small {
  font-size: 15px;
  line-height: 28px;
}

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

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

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

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-uppercase {
  text-transform: uppercase;
}

.no-line-height {
  line-height: 1em !important;
}

button {
  transition: all 220ms ease;
  cursor: pointer;
}

.btn {
  font-weight: 500;
  border-radius: 100px;
  padding: 9px 26px;
  font-size: 15px;
  border: 1px solid var(--rt-border-color);
  color: var(--rt-button-color);
  display: inline-block;
  transition: 0.3s;
  position: relative;
  background: #ffffff;
  transition: all 220ms ease;
}
.btn:hover {
  color: #ffffff;
  border-color: var(--rt-button-color);
  background: var(--rt-button-color);
}
.btn:active {
  box-shadow: none;
}
.btn:focus {
  outline: none;
}
.btn.btn-xl {
  padding: 24px 32px;
  font-size: 24px;
  line-height: 24px;
}
.btn.btn-lg {
  padding: 18px 24px;
  font-size: 18px;
  line-height: 18px;
}
.btn.btn-sm {
  padding: 12px 20px;
  font-size: 13px;
  line-height: 13px;
}
.btn.btn-xs {
  padding: 11px 18px;
  font-size: 10px;
  line-height: 10px;
}

.btn-primary {
  color: #ffffff;
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.btn-primary:hover {
  color: #ffffff;
  background-color: var(--rt-secondary-color);
  border-color: var(--rt-secondary-color);
}

.btn-secondary {
  color: #ffffff;
  background-color: var(--rt-secondary-color);
  border-color: var(--rt-secondary-color);
}
.btn-secondary:hover {
  color: #ffffff;
  background-color: rgba(var(--rt-secondary-rgb), 0.8);
  border-color: rgba(var(--rt-secondary-rgb), 0.8);
}

.btn-light {
  color: #ffffff;
  background-color: var(--rt-meta-color);
  border-color: var(--rt-meta-color);
}
.btn-light:hover {
  color: #ffffff;
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}

.btn-gray {
  color: #ffffff;
  background-color: var(--rt-meta-color);
  border-color: var(--rt-meta-color);
}
.btn-gray:hover {
  color: #ffffff;
  background-color: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}

.rt-button .btn {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.rt-button .btn i {
  transform: rotate(0deg);
  transition: 0.3s;
  font-size: 10px;
  margin-left: 6px;
  display: inline-block;
  position: relative;
  top: -2px;
}
.rt-button .btn:hover i {
  transform: rotate(45deg);
}

.button-1 {
  color: var(--rt-button-color);
}
.button-1:hover {
  color: var(--rt-button-color);
}

.rt-button .button-2 {
  color: var(--rt-button-text-color);
}
.rt-button .button-2 .text {
  transition: opacity 0.25s, transform 0.25s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.rt-button .button-2 .hover-text {
  content: attr(data-text);
  display: inline-block;
  height: unset;
  left: 26px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(100%) scaleY(2) rotate(5deg);
  transform-origin: top center;
  transition: opacity 0.25s, transform 0.25s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.rt-button .button-2 i {
  color: var(--rt-button-text-color);
}
.rt-button .button-2:before {
  background-color: var(--rt-primary-color);
  transform: translate3D(0, 0, 0);
  z-index: -1;
}
.rt-button .button-2::after {
  background-color: var(--rt-primary-color);
  transform: translate3D(0, -100%, 0);
  z-index: -1;
}
.rt-button .button-2:hover {
  color: var(--rt-button-color);
}
.rt-button .button-2:hover i {
  color: var(--rt-button-color);
  transform: rotate(0deg);
}
.rt-button .button-2:hover:after {
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}
.rt-button .button-2:hover .text {
  opacity: 0;
  transform: translateY(-150%) scaleY(2) rotate(5deg);
}
.rt-button .button-2:hover .hover-text {
  opacity: 1;
  transform: translateY(-50%);
}

.rt-button .button-4 {
  color: var(--rt-button-text-color);
  border: 1px solid var(--rt-border-color);
}
.rt-button .button-4:before {
  background-color: var(--rt-body-bg-color);
  transform: translate3D(0, 0, 0);
  z-index: -1;
}
.rt-button .button-4::after {
  background-color: var(--rt-primary-color);
  transform: translate3D(0, -100%, 0);
  z-index: -1;
}
.rt-button .button-4:hover {
  color: var(--rt-button-color);
}
.rt-button .button-4:hover:after {
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}
.rt-button .button-4:hover i {
  color: var(--rt-button-color);
}

.rt-button .button-5 {
  color: var(--rt-button-text-color);
}
.rt-button .button-5:before {
  background-color: var(--rt-gray20);
  transform: translate3D(0, 0, 0);
  z-index: -1;
}
.rt-button .button-5::after {
  background-color: var(--rt-primary-color);
  transform: translate3D(0, -100%, 0);
  z-index: -1;
}
.rt-button .button-5:hover:after {
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}

.ff-default .ff_btn_style {
  transition: all 0.3s linear;
}

a {
  transition: all 220ms ease;
}
a, a:hover, a:focus {
  text-decoration: none;
  outline: 0;
}

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

.bg-primary {
  background-color: var(--rt-primary-color);
}

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

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

.bg-secondary {
  background-color: var(--rt-secondary-color);
}

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

.text-body {
  color: var(--rt-body-color);
}

.bg-body {
  background-color: var(--rt-body-color);
}

.border-body {
  border-color: var(--rt-body-color);
}

.text-title {
  color: var(--rt-heading-color);
}

.bg-title {
  background-color: var(--rt-heading-color);
}

.border-title {
  border-color: var(--rt-heading-color);
}

.text-meta {
  color: var(--rt-meta-color);
}

.bg-meta {
  background-color: var(--rt-meta-color);
}

.border-meta {
  border-color: var(--rt-meta-color);
}

.text-gray {
  color: var(--rt-gray-color);
}

.bg-gray {
  background-color: var(--rt-gray-color);
}

.border-gray {
  border-color: var(--rt-gray-color);
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.text-black {
  color: #111111;
}

.bg-black {
  background-color: #111111;
}

.border-black {
  border-color: #111111;
}

::-moz-selection {
  background: var(--rt-primary-color);
  color: #ffffff;
}

::selection {
  background: var(--rt-primary-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--rt-primary-color);
  color: #ffffff;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-table .display-table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.background-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.overlay-dark {
  position: relative;
}
.overlay-dark:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 0.5;
  background-color: #111111;
}

.hide {
  display: none;
  visibility: hidden;
}

.show {
  display: inline-block;
  visibility: visible;
}

.elementor-element.rt-parallax-bg-yes {
  transition: none !important;
}

[class*=rticon] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

[class*=rticon] svg {
  fill: var(--rt-heading-color);
  width: 18px;
  height: 18px;
}

[class*=rticon] svg {
  transition: all 220ms ease;
}

.video-container,
figure.wp-block-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container embed,
.video-container object,
.video-container video,
figure.wp-block-embed iframe,
figure.wp-block-embed embed,
figure.wp-block-embed object,
figure.wp-block-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img, img.img-responsive {
  max-width: 100%;
  height: auto;
}

/*============================
# Review Schema Style
=============================*/
.rtrs-review-wrap {
  border-radius: 4px;
  padding: 25px 30px 30px;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
}

.rtrs-review-wrap .rtrs-sorting-bar {
  background-color: #fff;
  padding: 0;
}

.rtrs-review-wrap .rtrs-sorting-bar .rtrs-sorting-select select {
  padding: 7px 32px 5px 13px;
  box-shadow: none;
  border: 1px solid #eaeaea;
}

.rtrs-review-wrap .rtrs-sorting-bar .rtrs-sorting-title {
  font-size: 18px;
  font-weight: 500;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-each-review {
  padding: 23px 25px 24px !important;
  background: transparent !important;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-reply-btn .rtrs-item-btn {
  background-color: var(--rt-primary-light3, #EAF7F4) !important;
  color: var(--rt-primary-color) !important;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-reply-btn .rtrs-item-btn:hover {
  background-color: var(--rt-primary-dark) !important;
  color: #fff !important;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-review-title {
  margin: 0 0 8px;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body p {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-box .rtrs-review-body .rtrs-reply-btn {
  padding: 0 !important;
}

body .rtrs-review-form {
  background-color: transparent !important;
  padding: 0 !important;
}

.rtrs-review-wrap .rtrs-paginate {
  margin: 0 0 10px !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-rating-category li {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-rating-category li {
  line-height: 2 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group {
  margin-bottom: 20px !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group.rtrs-submit-button {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group input[submit] {
  margin-bottom: 0 !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group .rtrs-submit-btn {
  background-color: var(--rt-primary-color) !important;
}

.rtrs-review-wrap .rtrs-review-form .rtrs-form-group .rtrs-submit-btn:hover {
  background-color: var(--rt-primary-dark) !important;
}

.rtrs-review-box .rtrs-review-body .rtrs-review-meta li {
  margin-bottom: 0 !important;
}

.rtrs-summary {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
}

.rtrs-summary .rtrs-progress-wrap .rtrs-progress {
  margin-bottom: 10px !important;
}

.rtrs-summary .rtrs-progress-wrap .rtrs-progress label {
  margin-bottom: 0 !important;
}

.rtrs-summary .rtrs-progress-wrap {
  padding: 20px 30px 10px !important;
}

.rtrs-summary .rtrs-progress-wrap progress::-webkit-progress-value {
  background: var(--rt-primary-color) !important;
}

.rtrs-summary .rtrs-progress-wrap progress::-moz-progress-bar {
  background: var(--rt-primary-color) !important;
}

.rtrs-summary .rtrs-progress-wrap progress::-webkit-progress-bar {
  background: #C7E6DE !important;
}

.rtrs-summary .rtrs-progress-wrap progress {
  color: var(--rt-primary-dark) !important;
}

.rtrs-review-box .rtrs-review-body .rtrs-review-meta .rtrs-review-date i:before {
  color: var(--rt-primary-color) !important;
}

/* Back to top
======================*/
.scrollToTop {
  bottom: 0;
  right: 20px;
  width: 50px;
  opacity: 0;
  height: 50px;
  z-index: 999;
  font-size: 18px;
  position: fixed;
  visibility: hidden;
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  transition: all 320ms;
  justify-content: center;
  color: #ffffff;
  background-color: var(--rt-primary-color);
  border: 1px solid var(--rt-primary-color);
}
.scrollToTop svg {
  fill: var(--rt-button-color);
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scrollToTop {
    display: none;
  }
}
.scrollToTop:hover {
  color: var(--rt-button-color);
  background: var(--rt-primary-color);
  border: 1px solid transparent;
}
.scrollToTop:hover i {
  animation: toBottomFromTop 0.7s forwards;
}

/*-------------------
#. Preloader css
--------------------*/
#preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 60px;
  position: fixed;
  z-index: 999999999;
  align-items: center;
  visibility: visible;
  color: var(--rt-heading-color);
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  font-weight: 600;
}
#preloader img {
  max-width: 250px;
  margin-top: -20px;
  margin-right: -28px;
}
#preloader .method-1 {
  font-size: 70px;
  font-weight: 100;
  position: relative;
  color: var(--rt-heading-color);
  display: inline-block;
}
#preloader .method-1:before {
  width: 0;
  top: -23px;
  height: 75px;
  font-size: 70px;
  overflow: hidden;
  font-weight: 100;
  padding-top: 23px;
  position: absolute;
  white-space: nowrap;
  color: var(--rt-primary-color);
  content: attr(data-text);
  animation: fill-1 6s infinite;
  border-right: 4px solid var(--rt-primary-color);
}
@keyframes fill-1 {
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.header-switch .header-switch-input {
  display: none;
}
.header-switch .header-switch-label {
  border-radius: 30px 0 0 30px;
  background-color: var(--rt-black-bg-color);
  color: var(--rt-button-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  font-size: 18px;
  bottom: 110px;
  right: 0;
  width: 48px;
  height: 44px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-switch .header-switch-label {
    bottom: 80px;
  }
}
.header-switch .header-switch-label i {
  position: absolute;
}

.theme-button {
  width: 50px;
  height: 200px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--rt-white-bg-color);
}
@media screen and (max-width: 767px) {
  .theme-button {
    height: 102px;
  }
}

/* Background slider */
.theme-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #000; /* Dark mode default */
  border-radius: 30px;
  top: 0;
  left: 0;
  z-index: 0;
  transition: top 0.3s ease, background-color 0.3s ease;
}

/* Button labels stay above background */
.theme-button .toggle {
  position: absolute;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Optional: fix writing-mode layout */
.theme-button .toggle span {
  margin: 4px 0;
  font-size: 14px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .theme-button .toggle span {
    display: none;
  }
}

/* Dark Mood Button */
[data-theme=dark-mode] .theme-button {
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
}
[data-theme=dark-mode] .theme-button::before {
  top: 0;
  background-color: #eaeaea;
}
[data-theme=dark-mode] .theme-button .dark {
  top: 0;
  color: #000;
}
[data-theme=dark-mode] .theme-button .light {
  bottom: 0;
  color: #ffffff;
}
[data-theme=dark-mode] .ham-burger .menu-bar {
  border-color: #bababa;
}
[data-theme=dark-mode] .ham-burger .btn-hamburger span {
  background-color: #bababa;
}
[data-theme=dark-mode] .rt-testimonial-slider .slider-item .quote {
  color: #1c1c1c;
}
[data-theme=dark-mode] .footer-brand-logos img.swiper-slide-image:hover {
  filter: brightness(50%) saturate(100%);
}
[data-theme=dark-mode] .button-1::after {
  background-color: #1c1c1c;
}
[data-theme=dark-mode] .h3-banner {
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
}
[data-theme=dark-mode] .h3-banner .section-title-wrapper {
  filter: invert(0) hue-rotate(0) brightness(0);
}
[data-theme=dark-mode] .section-title-wrapper .top-sub-title.left-right-line:before {
  background-color: #ffffff;
}
[data-theme=dark-mode] .swiper-pagination .swiper-pagination-bullet {
  background: #6e6e6e;
}
[data-theme=dark-mode] .swiper-pagination.pagination-layout-2 .swiper-pagination-bullet:after {
  border: 1px solid #6e6e6e;
}

/* Light Mood Bottom */
[data-theme=light-mode] .theme-button {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}
[data-theme=light-mode] .theme-button::before {
  top: 50%;
  background-color: #000000;
}
[data-theme=light-mode] .theme-button .dark {
  top: 0;
  width: 100%;
  height: 50%;
  color: #000;
}
[data-theme=light-mode] .theme-button .light {
  bottom: 0;
  width: 100%;
  height: 50%;
  color: #ffffff;
}

.rt-color-control {
  padding: 6px;
  border-radius: 50px;
  position: relative;
}
.rt-color-control span {
  display: inline-block;
  cursor: pointer;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 28px;
}
.rt-color-control.light-mode .rt-light-mode {
  background: #ffffff;
  color: var(--rt-primary-color);
}
.rt-color-control.dark-mode .rt-light-mode {
  color: #AEAEAE;
}
.rt-color-control.dark-mode .rt-dark-mode {
  background: #161616;
  color: #fff;
}

:root[data-theme=light-mode] .rt-color-control {
  background: #ECEFF4;
}

:root[data-theme=dark-mode] .rt-color-control {
  background: #2D2D2D;
}

.rtl-mode-switch .fashion-rtl-btn {
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 999;
  bottom: 115px;
  font-size: 12px;
  position: fixed;
  cursor: pointer;
  font-weight: 800;
  color: #ffffff;
  border-radius: 50px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  background-color: var(--rt-primary-color);
}
@media (max-width: 767px) {
  .rtl-mode-switch .fashion-rtl-btn {
    bottom: 130px;
  }
}

.site-header .rt-container::after,
.site-header .row::after {
  display: none;
}

.navigation-menu-wrap {
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.light-logo {
  display: none;
}

.site-header.scrolling .rt-header-four {
  background: #FFFFFF;
}

@media (min-width: 1025px) {
  .header-mobile {
    display: none !important;
  }
  .typiq-header-footer header.site-header {
    min-height: 80px;
  }
}
@media (max-width: 1024px) {
  .header-desktop {
    display: none !important;
  }
}
.site-branding {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
}
.site-branding a {
  width: 200px;
  display: inline-flex;
}
.site-branding a img {
  max-width: 140px;
}
.site-branding h1 {
  margin: 0;
}
.site-branding h1 a {
  display: flex;
  padding: 10px 0;
  font-weight: bold;
  transition: color 0.4s;
}
.site-branding h1 a:hover {
  color: var(--rt-secondary-color);
}

.site-header {
  position: relative;
  z-index: 9;
}
.site-header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-icon-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 20px;
}
.menu-icon-wrapper .btn {
  background: var(--rt-button-color);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
}
.menu-icon-wrapper .menu-icon-action {
  row-gap: 10px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
}
.menu-icon-wrapper .menu-icon-action .action-icon {
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
}
.menu-icon-wrapper .menu-icon-action .action-icon i {
  color: var(--rt-heading-color);
  font-size: 20px;
}
.menu-icon-wrapper .menu-icon-action .item-icon-text {
  padding-left: 8px;
}
.menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon {
  font-size: 24px;
  font-weight: 700;
  border-radius: 5px;
  position: relative;
  padding: 5px 15px 5px 5px;
  border: 1px solid var(--rt-primary-color);
}
.menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon i {
  width: 48px;
  height: 48px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--rt-primary-color);
}
.menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon:after {
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  content: "";
  z-index: -1;
  width: 0;
  border-radius: 6px;
  position: absolute;
  background-color: var(--rt-primary-color);
  transition: all 220ms ease;
}
.menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon:hover:after {
  width: calc(100% - 10px);
}
@media screen and (max-width: 1366px) {
  .menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon {
    font-size: 18px;
  }
}
.menu-icon-wrapper a:hover svg {
  fill: var(--rt-primary-color);
}
.menu-icon-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-icon-wrapper ul li {
  position: relative;
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
}
.menu-icon-wrapper svg {
  width: 24px;
  height: 24px;
}
.menu-icon-wrapper .has-separator li:not(:last-child) {
  padding-right: 20px;
}
.menu-icon-wrapper .has-separator li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 23px;
  background: var(--rt-border-color);
  top: 50%;
  transform: translateY(-50%);
}
.menu-icon-wrapper .has-button li:nth-last-child(1) {
  padding-right: 0;
}
.menu-icon-wrapper .has-button li:nth-last-child(1)::after,
.menu-icon-wrapper .has-button li:nth-last-child(2)::after {
  content: none;
}

.rt-button-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.rt-button-action a {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  color: #c6c6c6;
}
.rt-button-action a:hover {
  color: #ffffff;
}
.rt-button-action i, .rt-button-action svg {
  color: var(--rt-primary-color);
}
.rt-button-action .rt-sale-offer-btn img {
  width: 14px;
}

.header-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 150;
  transition: all ease 0.31s;
}
.header-search .header-search-form {
  text-align: center;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  transition: all 0s ease-in-out;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.header-search .header-search-form input[type=search] {
  width: 100%;
  height: 65px;
  border: none;
  padding: 0 20px;
}
.header-search .header-search-form button {
  padding: 0;
  background: transparent;
  color: var(--rt-body-color);
  position: absolute;
  top: 0;
  right: 0;
  height: 65px;
  width: 54px;
  text-align: center;
  background: #ffffff;
  z-index: 2;
  font-size: 18px;
}
.header-search .header-search-form button i {
  transition: 0.3s;
}
.header-search .header-search-form button:hover i {
  color: var(--rt-primary-color);
}
.header-search.open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1025px) {
  .rt-mobile_menu {
    display: none;
  }
}
@media (min-width: 1025px) {
  .typiq-header-1 .site-header .rt-container .site-branding {
    padding-right: 45px;
  }
  .typiq-header-1 .site-header .rt-container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
  .typiq-header-1 .site-header .rt-container-fluid .site-branding {
    padding-right: 30px;
  }
  .typiq-header-1 .site-header .menu-icon-action .ham-burger {
    position: relative;
  }
  .typiq-header-1 .site-header .menu-icon-action .ham-burger:before {
    content: "";
    height: 80px;
    width: 1px;
    background-color: #5b5b5b;
    position: absolute;
    top: -32px;
    left: -30px;
  }
  .typiq-header-1 .site-header .menu-icon-action li:last-child:before {
    display: none;
  }
}

.mobile-header-section .navigation-menu-wrap {
  justify-content: space-between;
}

/* Main Navigation
***************************/
@media (max-width: 1024px) {
  .navigation-menu-wrap {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
@media (max-width: 767px) {
  .navigation-menu-wrap .menu-icon-wrapper {
    margin-left: unset;
    padding-left: 0;
  }
}

.typiq-navigation span.sub {
  display: none;
}

.site-header .typiq-navigation ul.typiq-navbar > li.current-menu-item > a,
.site-header .typiq-navigation ul.typiq-navbar > li.current-menu-ancestor > a {
  color: var(--rt-primary-color);
}
.site-header .typiq-navigation ul.typiq-navbar > li.current-menu-item > a svg,
.site-header .typiq-navigation ul.typiq-navbar > li.current-menu-ancestor > a svg {
  fill: var(--rt-primary-color);
}

.typiq-navigation {
  /* #. Submenu */
  /*Menu hover effect*/
}
.typiq-navigation ul.typiq-navbar {
  padding: 0;
  margin: 0;
}
.typiq-navigation ul li {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.typiq-navigation ul li a {
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--rt-heading-color);
  text-decoration: none;
  padding: 26px 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.typiq-navigation ul li a .new {
  background-color: #0a7aff;
  border-radius: 2px;
  color: #ffffff;
  padding: 0 3px 1px;
  font-size: 12px;
  height: 16px;
  display: inline-flex;
  align-items: center;
}
.typiq-navigation ul li a .sale {
  background-color: #D9FFBF;
  border-radius: 2px;
  color: #111111;
  padding: 0 3px 1px;
  font-size: 12px;
  height: 16px;
  display: inline-flex;
  align-items: center;
}
.typiq-navigation ul li a .hot {
  background-color: #FACCCD;
  border-radius: 2px;
  color: #111111;
  padding: 0 3px 1px;
  font-size: 12px;
  height: 16px;
  display: inline-flex;
  align-items: center;
}
.typiq-navigation ul li a i {
  font-size: 14px;
}
.typiq-navigation ul li a:hover svg,
.typiq-navigation ul li.current-menu-item > a svg,
.typiq-navigation ul li.current-menu-ancestor > a svg {
  fill: var(--rt-primary-color);
}
.typiq-navigation ul ul li:hover > a svg,
.typiq-navigation ul ul li.current-menu-item > a svg,
.typiq-navigation ul ul li.current-menu-ancestor > a svg {
  fill: #ffffff;
}
.typiq-navigation ul li a:hover,
.typiq-navigation ul li.current-menu-item > a,
.typiq-navigation ul li.current-menu-ancestor > a,
.typiq-navigation .typiq-navbar > li > a:hover,
.typiq-navigation ul.menu > li > a:hover,
.typiq-navigation ul.menu li.current-menu-item > a,
.typiq-navigation ul.menu li.current > a {
  color: var(--rt-primary-color);
}
.typiq-navigation ul > li > ul {
  top: 100%;
  left: 16px;
  opacity: 0;
  z-index: 10;
  text-align: left;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  width: 245px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(23, 22, 24, 0.04), 0 4px 8px rgba(23, 22, 24, 0.04), 0 2px 8px rgba(23, 22, 24, 0.04);
}
.typiq-navigation ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.typiq-navigation ul li ul li ul {
  left: 100%;
  top: 0;
  width: 245px;
}
.typiq-navigation ul li ul li {
  display: block;
  padding: 0 20px;
}
.typiq-navigation ul li ul li a {
  z-index: 2;
  padding: 6px 20px;
  font-size: 14px;
  position: relative;
  color: #0a2540;
  display: block;
  border-radius: 5px;
}
.typiq-navigation ul li ul li {
  border-radius: 5px;
  margin: 0 0 2px;
}
.typiq-navigation ul li ul li.current-menu-parent > a, .typiq-navigation ul li ul li.current-menu-item > a, .typiq-navigation ul li ul li:hover > a {
  background: var(--rt-primary-color);
  color: #ffffff;
}
.typiq-navigation ul li ul > li:last-child > a {
  border-bottom: none;
}
.typiq-navigation ul.menu li ul.dropdown-menu li:last-child:after {
  border-bottom: none;
}
.typiq-navigation ul.menu li ul.dropdown-menu li a:hover {
  color: #ffffff;
}
.typiq-navigation ul.menu li ul.dropdown-menu li a:before {
  position: absolute;
  z-index: 1;
  content: "";
  height: 0.0625rem;
  width: 0;
  right: 0;
  left: inherit;
  bottom: 0;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.typiq-navigation ul.menu li ul.dropdown-menu li a:hover:before {
  width: 100%;
  left: 0;
  right: inherit;
}
.typiq-navigation > ul li.page_item_has_children > a:after,
.typiq-navigation > ul li.menu-item-has-children > a:after {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--rt-primary-color);
  display: inline-block;
  transform: rotate(45deg) translate(1px, -4px);
  border-left: none;
  border-top: none;
  margin-left: 8px;
  transition: all 220ms ease;
}
.typiq-navigation .caret svg {
  width: 10px;
  height: 10px;
  fill: var(--rt-heading-color);
  transition: fill 0.4s;
  position: relative;
  top: 1px;
}
.typiq-navigation .dropdown-menu .caret {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.typiq-navigation .dropdown-menu .caret svg {
  transform: rotate(-90deg) scale(0.9);
}
.typiq-navigation.layout-1 ul li a {
  position: relative;
}
.typiq-navigation.layout-1 ul ul li a:after {
  display: none;
}
.typiq-navigation.layout-2 .typiq-navbar > li > a {
  position: relative;
}
.typiq-navigation.layout-2 .typiq-navbar > li > a:after {
  left: 50%;
  bottom: 0;
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  visibility: hidden;
  display: inline-block;
  transition: all 220ms ease;
  background-color: var(--rt-primary-color);
}
.typiq-navigation.layout-2 ul > li.current-menu-ancestor > a:after,
.typiq-navigation.layout-2 ul > li.active > a:after,
.typiq-navigation.layout-2 ul > li:hover > a:after {
  left: 16px;
  width: calc(100% - 32px);
  visibility: visible;
}

@media (max-width: 1440px) {
  footer .typiq-navigation ul li a {
    font-size: 16px !important;
  }
}
@media (max-width: 1366px) {
  footer .typiq-navigation ul li a {
    font-size: 16px !important;
  }
}

.typiq-navbar li > .dropdown-menu li.dropdown-inverse .dropdown-menu {
  left: auto;
  min-width: 195px;
  transition: all 0.2s;
}
.typiq-navbar li > .dropdown-menu li.dropdown-inverse:hover .dropdown-menu {
  margin-right: -5px;
}

/* Mega menu elementor CSS */
.mega-menu-wrap .e-con-inner {
  position: relative;
}
.mega-menu-wrap .elementor-element,
.mega-menu-wrap .elementor-widget-container {
  position: unset;
}

.mega-menu-left .typiq-navigation ul li.mega-menu > ul.dropdown-menu {
  right: auto;
}

.mega-menu-right .typiq-navigation ul li.mega-menu > ul.dropdown-menu {
  left: auto;
}

/* Mega-menu CSS */
.typiq-navigation {
  /*start mega menu two column*/
  /*start mega menu three column*/
  /*end mega menu three column*/
}
.typiq-navigation ul.menu li.mega-menu ul.dropdown-menu li a:before,
.typiq-navigation ul.menu li.mega-menu ul.dropdown-menu li:after,
.typiq-navigation ul.menu li.mega-menu ul.dropdown-menu li.menu-item-has-children:before {
  display: none;
}
.typiq-navigation ul.menu li.mega-menu ul.dropdown-menu li a {
  padding: 0 0 8px;
}
.typiq-navigation ul.menu li.mega-menu .dropdown-menu .dropdown-toggle {
  padding-bottom: 0 !important;
}
.typiq-navigation ul li.mega-menu {
  position: static;
}
.typiq-navigation ul li.mega-menu:hover ul {
  opacity: 1;
  visibility: visible;
}
.typiq-navigation ul li.mega-menu > ul.dropdown-menu {
  justify-content: flex-start;
  display: flex;
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.typiq-navigation ul li > ul.dropdown-menu {
  padding-top: 15px;
  pointer-events: none;
  padding-bottom: 15px;
}
.typiq-navigation ul > li:hover > ul.dropdown-menu {
  transform: translateY(0);
  pointer-events: all;
}
.typiq-navigation ul li.mega-menu.two-column {
  position: relative;
}
.typiq-navigation ul li.mega-menu.two-column > ul.dropdown-menu {
  background-color: #ffffff !important;
  width: 520px !important;
}
.typiq-navigation ul li.mega-menu.two-column {
  position: relative;
}
.typiq-navigation ul li.mega-menu.three-column > ul.dropdown-menu {
  background-color: #ffffff !important;
  width: 780px !important;
}
.typiq-navigation ul li.mega-menu > ul.dropdown-menu > li {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 0;
}
.typiq-navigation ul li.mega-menu > ul.dropdown-menu > li ul {
  position: relative;
  width: inherit;
  left: inherit;
  box-shadow: none;
  border-top: none;
  padding: 0;
}
.typiq-navigation ul li.mega-menu > ul.dropdown-menu > li > a {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  padding-top: 0;
  padding-left: 30px;
}
.typiq-navigation ul li.mega-menu > ul.dropdown-menu > li > a:before {
  display: none;
}
.typiq-navigation ul li.mega-menu.hide-header > ul.dropdown-menu > li > a {
  display: none;
}
.typiq-navigation ul li.mega-menu > ul .caret {
  display: none !important;
}
.typiq-navigation ul li.mega-menu.mega-menu-col-2 > ul {
  width: 50%;
  right: auto;
}
.typiq-navigation ul li.mega-menu.mega-menu-col-3 > ul {
  width: 60%;
}

@keyframes menu_slide {
  0% {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
.typiq-navigation ul > li > ul {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.typiq-navigation ul > li > ul.dropdown-menu {
  transform: translate3d(0px, 2rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.typiq-navigation ul li.mega-menu > ul.dropdown-menu > li > ul.dropdown-menu {
  transform: unset;
}

/* Header search
***************************/
.rt-search-popup.show .rt-search-form {
  visibility: visible;
  opacity: 1;
  top: 51px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 220ms ease;
}
.rt-search-popup .rt-search-form {
  position: absolute;
  top: 70px;
  right: -12px;
  width: 300px;
  padding: 5px 12px 6px 14px;
  background: var(--rt-heading-color);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  font-size: var(--rt-body-font, "Inter"), sans-serif-1;
}
.rt-search-popup .rt-search-form::before {
  content: "";
  position: absolute;
  background: var(--rt-heading-color);
  width: 14px;
  height: 14px;
  top: -6px;
  right: 26px;
  transform: rotate(-45deg);
}
.rt-search-popup .rt-search-form .search-box {
  position: relative;
  border: none;
}
.rt-search-popup .rt-search-form .search-box svg {
  fill: var(--rt-meta-color);
}
.rt-search-popup .rt-search-form input[type=text] {
  width: 100%;
  height: 40px;
  padding: 5px;
  border: none;
  background: none;
  transition: 0.4s;
  color: var(--rt-meta-color);
}
.rt-search-popup .rt-search-form input[type=text]:hover, .rt-search-popup .rt-search-form input[type=text]:focus {
  outline: none;
}
.rt-search-popup .rt-search-form input[type=text]:focus + button {
  opacity: 1;
}
.rt-search-popup .rt-search-form button {
  position: absolute;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  background: none;
  border: none;
  outline: none;
  height: 100%;
  padding: 3px 8px 0;
  opacity: 0;
}

/* Off canvas drawer */
.typiq-offcanvas-drawer {
  top: 0;
  left: 0;
  row-gap: 30px;
  display: flex;
  height: 100vh;
  padding: 24px 30px;
  overflow: auto;
  z-index: 99999;
  max-width: 100%;
  position: fixed;
  color: var(--rt-body-color);
  box-sizing: border-box;
  flex-direction: column;
  width: 340px;
  margin-left: -340px;
  transition: all 0.4s ease-in-out;
  background-color: var(--rt-body-bg-color);
  justify-content: center;
}
.typiq-offcanvas-drawer.is-open {
  margin-left: 0;
}
.typiq-offcanvas-drawer .icon-rt-bookmark {
  font-size: 14px;
}
.typiq-offcanvas-drawer .rt-button-action a {
  color: var(--rt-body-color);
  align-items: baseline;
}
.typiq-offcanvas-drawer .rt-button-action a:hover {
  color: var(--rt-heading-color);
}
.typiq-offcanvas-drawer .rt-button-action a i, .typiq-offcanvas-drawer .rt-button-action a svg {
  color: var(--rt-body-color);
}
.typiq-offcanvas-drawer ul {
  margin: 0;
  padding: 0;
  width: 100%;
  row-gap: 10px;
  list-style: none;
  flex-flow: column;
  display: inline-flex;
}
.typiq-offcanvas-drawer nav ul li a {
  padding: 8px 40px 8px 0;
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--rt-body-color);
  line-height: 1.3;
}
.typiq-offcanvas-drawer nav ul li a:hover {
  color: var(--rt-primary-color);
}
.typiq-offcanvas-drawer nav ul li ul a {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.typiq-offcanvas-drawer ul li.current-menu-item > a,
.typiq-offcanvas-drawer ul li.current-menu-ancestor > a {
  color: var(--rt-heading-color);
}
.typiq-offcanvas-drawer .caret {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--rt-white-bg-color);
  border-radius: 50%;
}
.typiq-offcanvas-drawer .caret svg {
  fill: var(--rt-heading-color);
}
.typiq-offcanvas-drawer ul > li.is-open > a > .caret > svg {
  transform: rotate(180deg);
}
.typiq-offcanvas-drawer ul ul {
  padding-left: 30px;
}
.typiq-offcanvas-drawer .offcanvas-navigation li > ul {
  display: none;
}
.typiq-offcanvas-drawer .offcanvas-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.typiq-offcanvas-drawer .offcanvas-logo .trigger-icon {
  width: 36px;
  height: 36px;
  font-size: 30px;
  cursor: pointer;
  color: #ffffff;
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}
.typiq-offcanvas-drawer .offcanvas-logo .dark-logo {
  display: block;
}
.typiq-offcanvas-drawer .offcanvas-logo .light-logo {
  display: none;
}
.typiq-offcanvas-drawer .product-search .rt-cat-drop {
  display: none;
}
.typiq-offcanvas-drawer .menu-icon-action {
  display: inline-block;
  align-items: center;
}
.typiq-offcanvas-drawer .menu-icon-action li {
  display: inline-block;
}
.typiq-offcanvas-drawer .offcanvas-about p {
  margin: 0;
}
@media (min-width: 1025px) {
  .typiq-offcanvas-drawer .offcanvas-navigation,
  .typiq-offcanvas-drawer .menu-icon-wrapper {
    display: none;
  }
}

/* Target: <html data-theme="dark-mode"> */
html[data-theme=dark-mode] .typiq-offcanvas-drawer .offcanvas-logo .light-logo {
  display: block;
}
html[data-theme=dark-mode] .typiq-offcanvas-drawer .offcanvas-logo .dark-logo {
  display: none;
}

html[data-theme=light-mode] .typiq-offcanvas-drawer .offcanvas-logo .light-logo {
  display: none;
}
html[data-theme=light-mode] .typiq-offcanvas-drawer .offcanvas-logo .dark-logo {
  display: block;
}
html[data-theme=light-mode] .typiq-offcanvas-drawer .offcanvas-logo .trigger-icon {
  color: var(--rt-heading-color);
}

.typiq-body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.typiq-offcanvas-drawer.is-open + .typiq-body-overlay {
  opacity: 1;
  visibility: visible;
}

.offcanvas-address label {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--rt-heading-color);
}
.offcanvas-address .offcanvas-info {
  margin-bottom: 30px;
}
.offcanvas-address .offcanvas-info li {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: var(--rt-body-color);
  align-items: baseline;
}
.offcanvas-address .offcanvas-info a {
  color: var(--rt-body-color);
}
.offcanvas-address .offcanvas-info a:hover {
  color: var(--rt-heading-color);
}
.offcanvas-address .offcanvas-info svg {
  width: 14px;
  height: 14px;
}
.offcanvas-address .offcanvas-social-icon {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.offcanvas-address .offcanvas-social-icon a {
  color: var(--rt-body-color);
}
.offcanvas-address .offcanvas-social-icon a span {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  background: var(--rt-primary-color);
}
.offcanvas-address .offcanvas-social-icon a .rticon-facebook {
  background: #1877F2;
}
.offcanvas-address .offcanvas-social-icon a .rticon-twitter {
  background: #000000;
}
.offcanvas-address .offcanvas-social-icon a .rticon-linkedin {
  background: #0A66C2;
}
.offcanvas-address .offcanvas-social-icon a .rticon-instagram {
  background: #E1306C;
}
.offcanvas-address .offcanvas-social-icon a .rticon-youtube {
  background: #FF0000;
}
.offcanvas-address .offcanvas-social-icon a svg {
  width: 16px;
  height: 16px;
  transition: 0.3s;
  fill: #ffffff;
}
.offcanvas-address .offcanvas-social-icon a:hover span {
  opacity: 0.85;
}

.mobile-action-button {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.mobile-action-button .menu-icon-wrapper .menu-icon-action {
  justify-content: space-between;
  width: 100%;
  gap: 0;
  background-color: var(--rt-black-bg-color);
}
.mobile-action-button .menu-icon-wrapper .menu-icon-action li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  flex: 1;
  background-color: var(--rt-black-bg-color);
  color: var(--rt-button-color);
}
.mobile-action-button .menu-icon-wrapper .menu-icon-action li:nth-child(even) {
  background-color: #191919;
}
.mobile-action-button .menu-icon-wrapper .menu-icon-action li i {
  color: var(--rt-button-color);
}

@media (min-width: 1025px) {
  .mobile-action-button {
    display: none;
  }
}
/* Topbar Navigation
***************************/
.typiq-top-bar {
  display: flex;
  font-size: 16px;
  position: relative;
  align-items: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.15);
}
.typiq-top-bar .close {
  width: 30px;
  right: 70px;
  height: 30px;
  font-size: 22px;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  align-items: center;
  display: inline-flex;
  color: var(--rt-heading-color);
  justify-content: center;
  background-color: var(--rt-white-bg-color);
}
.typiq-top-bar .close:hover {
  color: var(--rt-button-color);
  background-color: var(--rt-secondary-color);
}
.typiq-top-bar a {
  color: #ffffff;
}
.typiq-top-bar a:hover {
  color: #ffffff;
}
.typiq-top-bar .top-bar-right {
  flex-wrap: wrap;
  font-size: 14px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: center;
}
.typiq-top-bar .top-bar-right .rt-email {
  padding: 12px 0;
  position: relative;
}
.typiq-top-bar .top-bar-right .rt-email i {
  padding-right: 8px;
}
.typiq-top-bar .top-bar-right .rt-email:before {
  top: 0;
  width: 1px;
  content: "";
  height: 100%;
  right: -22px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
}
.typiq-top-bar .top-bar-right .social-icon {
  padding: 12px 0;
}
.typiq-top-bar .top-bar-row {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .typiq-top-bar .top-bar-row {
    justify-content: center;
  }
}
.typiq-top-bar.top-bar-style-2 .top-bar-row {
  justify-content: center;
}
.typiq-top-bar .top-bar-left {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.typiq-top-bar .top-bar-left li {
  font-size: 14px;
  padding: 12px 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: center;
}
.typiq-top-bar .top-bar-left li:not(:last-child):before {
  top: 0;
  width: 1px;
  content: "";
  right: -20px;
  height: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
  .typiq-top-bar .top-bar-left {
    justify-content: center;
  }
}
.typiq-top-bar .social-icon {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.typiq-top-bar .social-icon a:hover svg {
  fill: #ffffff;
}
.typiq-top-bar .social-icon [class*=rticon] svg {
  width: 15px;
  height: 15px;
  fill: #c6c6c6;
}
.typiq-top-bar.top-bar-style-2 {
  background-color: rgb(0, 0, 0);
}

/*========================================
//  HeadRoom Sticky
==========================================*/
.site-header.scrolling {
  background-color: var(--rt-body-bg-color);
  box-shadow: 6px 6px 32px 0 rgba(0, 80, 191, 0.08);
}

.has-sticky-header .site-header, .has-sticky-header.has-trheader .fixed-header-space {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.has-sticky-header.tr-header-dark .site-header.scrolling {
  background-color: var(--rt-body-bg-color);
}
.has-sticky-header.tr-header-light .site-header.scrolling {
  background-color: #111111;
}

.admin-bar.has-sticky-header .site-header,
.admin-bar.has-trheader .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar.has-sticky-header .site-header,
  .admin-bar.has-trheader .site-header {
    top: 46px;
  }
}
.admin-bar.has-sticky-header .main-header-section,
.admin-bar.has-trheader .main-header-section {
  padding: 5px 5px;
}

.headroom {
  will-change: transform;
  transition: transform 250ms ease-in-out;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.headroom--not-top.headroom--pinned {
  transform: translateY(calc(80px - 100%));
}

.typiq-header-3 .headroom--not-top.headroom--pinned {
  transform: translateY(calc(54px - 100%));
}

@media (max-width: 1024px) {
  .headroom--not-top.headroom--pinned {
    transform: translateY(calc(55px - 100%));
  }
}
/* Transparent Header */
.has-trheader .site-header {
  background-color: transparent;
}
.has-trheader.has-menu-shadow .site-header::before {
  content: "";
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  position: absolute;
  width: 100%;
  height: 220px;
  z-index: -1;
  pointer-events: none;
}
.has-trheader.typiq-header-2.has-sticky-header.tr-header-dark .site-header.scrolling {
  background-color: transparent;
  box-shadow: unset;
}
.has-trheader .typiq-breadcrumb-wrapper.banner-style-1 {
  padding-top: 240px;
}
@media screen and (max-width: 767px) {
  .has-trheader .typiq-breadcrumb-wrapper.banner-style-1 {
    padding-top: 120px;
  }
}

.tr-header-dark .site-header .dark-logo {
  display: block;
}
.tr-header-dark .site-header .light-logo {
  display: none;
}

.tr-header-light .site-header .dark-logo {
  display: none;
}
.tr-header-light .site-header .light-logo {
  display: block;
}
.tr-header-light .primary_light_color {
  background: rgba(0, 0, 0, 0.3137254902);
}

.tr-header-light .site-header .typiq-navigation ul li a {
  color: #ffffff;
}
.tr-header-light .site-header .typiq-navigation ul li a svg {
  fill: #ffffff;
}
.tr-header-light .menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon {
  overflow: hidden;
  color: #ffffff;
}
.tr-header-light .menu-icon-wrapper .menu-icon-action .rt-user-phone .action-icon .text {
  transition: opacity 0.4s, transform 0.4s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.tr-header-light .typiq-navigation .menu-main-menu-container > ul > li > a {
  color: #ffffff;
}
.tr-header-light .typiq-navigation .menu-main-menu-container > ul > li > a svg {
  fill: #ffffff;
}
.tr-header-light .typiq-navigation .menu-main-menu-container > ul > li > a:hover {
  color: var(--rt-primary-color);
}
.tr-header-light .phone-wrap {
  color: #ffffff;
}
.tr-header-light .phone-wrap a {
  color: #ffffff;
}
.tr-header-light .ham-burger .btn-hamburger {
  border-color: #ffffff;
}
.tr-header-light .ham-burger .btn-hamburger span {
  background-color: #ffffff;
}
.tr-header-light .rt-delivery-btn {
  color: #ffffff;
}
.tr-header-light .menu-icon-wrapper a svg {
  fill: #ffffff;
}
.tr-header-light .menu-icon-wrapper .ham_burger .line {
  stroke: #ffffff;
}
.tr-header-light .menu-icon-wrapper .has-separator li:not(:last-child):after {
  background-color: #ffffff;
}
.tr-header-light .menu-icon-wrapper .menu-icon-action .action-icon i,
.tr-header-light .menu-icon-wrapper .menu-icon-action .item-icon-text {
  color: #ffffff;
}
.tr-header-light .menu-icon-wrapper .phone-wrap a, .tr-header-light .menu-icon-wrapper .phone-wrap .phone-label, .tr-header-light .menu-icon-wrapper .phone-wrap .phone-icon {
  color: #ffffff;
}

.ham-burger .menu-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding: 0;
  transition: all 220ms ease;
}
.ham-burger .menu-label {
  color: var(--rt-heading-color);
  font-weight: 600;
}
.ham-burger .btn-hamburger {
  display: flex;
  flex-direction: column;
}
.ham-burger .btn-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 5px;
  background-color: var(--rt-heading-color);
  border-radius: 26px;
  transition: 0.4s;
}
.ham-burger .btn-hamburger span:last-child {
  margin-bottom: 0;
}
.ham-burger .btn-hamburger .rt-hambur-list2 {
  width: 16px;
}
.ham-burger .btn-hamburger:hover .rt-hambur-list2 {
  width: 26px;
}
.ham-burger .is-open .btn-hamburger span:nth-child(2) {
  opacity: 0;
}
.ham-burger .is-open .btn-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ham-burger .is-open .btn-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.typiq-breadcrumb-wrapper {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.typiq-breadcrumb-wrapper.banner-style-1 .entry-breadcrumb span a {
  color: var(--rt-button-color);
  font-weight: 600;
}
.typiq-breadcrumb-wrapper.banner-style-1 .entry-breadcrumb span a:hover {
  opacity: 0.7;
}
.typiq-breadcrumb-wrapper.banner-style-1 .entry-breadcrumb .current-item {
  color: var(--rt-body-color);
}
.typiq-breadcrumb-wrapper.banner-style-1 .entry-breadcrumb .dvdr {
  color: #C0C2B2;
}
@media screen and (max-width: 767px) {
  .typiq-breadcrumb-wrapper.banner-style-1 {
    padding-bottom: 60px;
  }
}
.typiq-breadcrumb-wrapper.has-bg {
  position: relative;
  background-color: #000000;
  z-index: 0;
}
.typiq-breadcrumb-wrapper.has-bg .banner-image {
  opacity: 0.6;
}
.typiq-breadcrumb-wrapper.has-bg .banner-image:after {
  left: -50px;
  top: -178px;
  width: 100%;
  content: "";
  height: 251px;
  position: absolute;
  background: #000000;
  filter: blur(150px);
}
.typiq-breadcrumb-wrapper.has-bg .entry-title {
  color: #ffffff;
}
.typiq-breadcrumb-wrapper .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.typiq-breadcrumb-wrapper .breadcrumb {
  display: block;
  padding: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  color: var(--rt-meta-color);
  font-size: 15px;
  margin: 0;
  position: relative;
}
.typiq-breadcrumb-wrapper .breadcrumb li {
  display: inline;
  position: relative;
  align-items: center;
  gap: 10px;
}
.typiq-breadcrumb-wrapper .breadcrumb li.active {
  font-weight: 400;
}
.typiq-breadcrumb-wrapper .breadcrumb .raquo {
  line-height: 1;
  font-size: 11px;
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .breadcrumb a {
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .breadcrumb path {
  stroke: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .container {
  z-index: 1;
}
.typiq-breadcrumb-wrapper .entry-breadcrumb {
  font-size: 15px;
}
.typiq-breadcrumb-wrapper .entry-breadcrumb span a {
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .entry-breadcrumb span a:hover {
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .entry-breadcrumb .current-item {
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .entry-breadcrumb .dvdr {
  color: var(--rt-button-color);
  font-size: 11px;
  line-height: 1;
}
.typiq-breadcrumb-wrapper .entry-breadcrumb i {
  font-size: 12px;
  padding: 0 6px;
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .entry-title {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--rt-heading-color);
}
.typiq-breadcrumb-wrapper .align-items-center .entry-breadcrumb {
  text-align: center;
}
.typiq-breadcrumb-wrapper .align-items-end .entry-breadcrumb {
  text-align: right;
}

.typiq-breadcrumb-wrapper .breadcrumb a,
.has-trheader .typiq-breadcrumb-wrapper .breadcrumb a {
  color: var(--rt-button-color);
}
.typiq-breadcrumb-wrapper .breadcrumb a:hover,
.has-trheader .typiq-breadcrumb-wrapper .breadcrumb a:hover {
  color: var(--rt-primary-color);
}
.typiq-breadcrumb-wrapper .breadcrumb li.active .title,
.has-trheader .typiq-breadcrumb-wrapper .breadcrumb li.active .title {
  color: var(--rt-body-color);
}

.banner-light .entry-title {
  color: #ffffff;
}
.banner-light .entry-breadcrumb span a {
  color: #ffffff;
}
.banner-light .entry-breadcrumb .dvdr {
  color: #ffffff;
}

.typiq-widget-area {
  display: flex;
  row-gap: 40px;
  flex-flow: column;
}
.typiq-widget-area .widget {
  margin: 0;
}
.typiq-widget-area .rt-post-meta ul li {
  padding-left: 0;
}
.typiq-widget-area .rt-post-meta ul li:after {
  display: none;
}
.typiq-widget-area .separate-meta.title-above-meta {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.typiq-widget-area .rt-post-date {
  font-size: 14px;
  color: var(--rt-heading-color);
  position: relative;
  padding-left: 12px;
}
.typiq-widget-area .rt-post-date:after {
  top: 12.5px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  background-color: #D3D7DB;
  border-radius: 1px;
}

@media (min-width: 1140px) {
  .layout-left-sidebar .typiq-widget-area {
    padding-right: 30px;
  }
}

@media (max-width: 1139px) {
  .layout-right-sidebar .typiq-widget-area {
    margin-top: 60px;
  }
  .layout-left-sidebar .typiq-widget-area {
    margin-top: 60px;
  }
}
@media (min-width: 1025px) {
  body .sidebar-sticky {
    align-self: flex-start;
    position: sticky;
    top: 32px;
  }
  body .sidebar-sticky-100 {
    align-self: flex-start;
    position: sticky;
    top: 100px;
  }
  body .sidebar-sticky-200 {
    align-self: flex-start;
    position: sticky;
    top: 200px;
  }
}
.typiq-widget-area .widget:last-child {
  margin-bottom: 0;
}
.typiq-widget-area .wp-block-image {
  margin: 0;
}
.typiq-widget-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.typiq-widget-area ul li a {
  color: var(--rt-heading-color);
}
.typiq-widget-area ul > li {
  position: relative;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
}
.typiq-widget-area ul > li:last-child {
  margin-bottom: 0;
}
.typiq-widget-area ul > li > a {
  position: relative;
}
.typiq-widget-area ul.sub-menu {
  margin-top: 5px;
}
.typiq-widget-area .widgettitle,
.typiq-widget-area .widget-title,
.typiq-widget-area .wp-block-heading {
  font-size: 22px;
  line-height: 1.4;
}
.typiq-widget-area .rt-sidebar ul.children,
.typiq-widget-area .rt-single-sidebar ul.children {
  margin-top: 10px;
}
.typiq-widget-area .wp-block-categories li,
.typiq-widget-area .wp-block-archives li,
.typiq-widget-area .wp-block-page-list li,
.typiq-widget-area .widget_archive ul li,
.typiq-widget-area .widget_categories ul li {
  width: 100%;
  font-size: 15px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  transition: all 520ms;
  color: #8D8D8D;
}
.typiq-widget-area .wp-block-categories li a,
.typiq-widget-area .wp-block-archives li a,
.typiq-widget-area .wp-block-page-list li a,
.typiq-widget-area .widget_archive ul li a,
.typiq-widget-area .widget_categories ul li a {
  font-weight: 400;
  font-size: 16px;
  color: var(--rt-heading-color);
}
.typiq-widget-area .wp-block-categories li:last-child,
.typiq-widget-area .wp-block-archives li:last-child,
.typiq-widget-area .wp-block-page-list li:last-child,
.typiq-widget-area .widget_archive ul li:last-child,
.typiq-widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}
.typiq-widget-area .wp-block-categories li:hover,
.typiq-widget-area .wp-block-archives li:hover,
.typiq-widget-area .wp-block-page-list li:hover,
.typiq-widget-area .widget_archive ul li:hover,
.typiq-widget-area .widget_categories ul li:hover {
  color: var(--rt-heading-color);
}
.typiq-widget-area .wp-block-categories li:hover:before,
.typiq-widget-area .wp-block-categories li:hover a,
.typiq-widget-area .wp-block-archives li:hover:before,
.typiq-widget-area .wp-block-archives li:hover a,
.typiq-widget-area .wp-block-page-list li:hover:before,
.typiq-widget-area .wp-block-page-list li:hover a,
.typiq-widget-area .widget_archive ul li:hover:before,
.typiq-widget-area .widget_archive ul li:hover a,
.typiq-widget-area .widget_categories ul li:hover:before,
.typiq-widget-area .widget_categories ul li:hover a {
  color: var(--rt-primary-color);
}
.typiq-widget-area .wp-block-categories li.current-cat,
.typiq-widget-area .wp-block-archives li.current-cat,
.typiq-widget-area .wp-block-page-list li.current-cat,
.typiq-widget-area .widget_archive ul li.current-cat,
.typiq-widget-area .widget_categories ul li.current-cat {
  color: var(--rt-heading-color);
}
.typiq-widget-area .wp-block-categories li.current-cat:before,
.typiq-widget-area .wp-block-categories li.current-cat a,
.typiq-widget-area .wp-block-archives li.current-cat:before,
.typiq-widget-area .wp-block-archives li.current-cat a,
.typiq-widget-area .wp-block-page-list li.current-cat:before,
.typiq-widget-area .wp-block-page-list li.current-cat a,
.typiq-widget-area .widget_archive ul li.current-cat:before,
.typiq-widget-area .widget_archive ul li.current-cat a,
.typiq-widget-area .widget_categories ul li.current-cat:before,
.typiq-widget-area .widget_categories ul li.current-cat a {
  color: var(--rt-primary-color);
}
.typiq-widget-area .wp-block-categories.category-layout-2 li a,
.typiq-widget-area .wp-block-archives.category-layout-2 li a,
.typiq-widget-area .widget_archive.category-layout-2 ul li a,
.typiq-widget-area .widget_categories.category-layout-2 ul li a {
  color: var(--rt-meta-color);
}
.typiq-widget-area .wp-block-categories.category-layout-2 li a:hover,
.typiq-widget-area .wp-block-archives.category-layout-2 li a:hover,
.typiq-widget-area .widget_archive.category-layout-2 ul li a:hover,
.typiq-widget-area .widget_categories.category-layout-2 ul li a:hover {
  padding-left: 22px;
  color: var(--rt-primary-color);
}
.typiq-widget-area .wp-block-categories.category-layout-2 li a:hover:before,
.typiq-widget-area .wp-block-archives.category-layout-2 li a:hover:before,
.typiq-widget-area .widget_archive.category-layout-2 ul li a:hover:before,
.typiq-widget-area .widget_categories.category-layout-2 ul li a:hover:before {
  background-color: var(--rt-primary-color);
}
.typiq-widget-area .widget_nav_menu ul li,
.typiq-widget-area .widget_pages ul li,
.typiq-widget-area .widget_meta ul li {
  margin-bottom: 6px;
  padding-bottom: 6px;
  width: 100%;
}
.typiq-widget-area .widget_nav_menu ul li a:hover,
.typiq-widget-area .widget_pages ul li a:hover,
.typiq-widget-area .widget_meta ul li a:hover {
  color: var(--rt-primary-color);
}
.typiq-widget-area .widget_nav_menu ul li a:hover:before,
.typiq-widget-area .widget_pages ul li a:hover:before,
.typiq-widget-area .widget_meta ul li a:hover:before {
  background-color: var(--rt-primary-color);
}
.typiq-widget-area .widget_nav_menu ul li:last-child,
.typiq-widget-area .widget_pages ul li:last-child,
.typiq-widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}
.typiq-widget-area .wp-block-tag-cloud, .typiq-widget-area .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.typiq-widget-area .wp-block-tag-cloud a, .typiq-widget-area .tagcloud a {
  color: var(--rt-heading-color);
  background: var(--rt-white-bg-color);
  border-radius: 5px;
  display: inline-block;
  font-size: 16px !important;
  font-weight: 500;
  margin: 0;
  padding: 8px 15px;
  line-height: 1.4;
}
.typiq-widget-area .wp-block-tag-cloud a:hover, .typiq-widget-area .tagcloud a:hover {
  color: #ffffff;
  background-color: var(--rt-primary-color);
}
.typiq-widget-area .rt-blog-post {
  margin-bottom: 24px;
}
.typiq-widget-area .rt-blog-post:last-child {
  margin-bottom: 0;
}
.typiq-widget-area .rt-blog-post .post-thumbnail {
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 3px;
}
.typiq-widget-area .rt-blog-post .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 520ms ease;
  transform-origin: center center;
}
.typiq-widget-area .rt-blog-post:hover img {
  transform: scale3d(1.1, 1.1, 1);
}
.typiq-widget-area .rt-blog-post .rt-post-meta {
  padding-top: 20px;
}
.typiq-widget-area .rt-blog-post .entry-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.typiq-widget-area .rt-blog-post .entry-title a {
  color: var(--rt-heading-color);
}
.typiq-widget-area .rt-blog-post .entry-title a:hover {
  color: var(--rt-primary-color);
}
.typiq-widget-area .rt-blog-post .entry-content {
  padding-top: 12px;
}
.typiq-widget-area .rt-blog-post .post-thumbnail-wrap .posted-on {
  display: none;
}
.typiq-widget-area .rt-blog-post .post-thumbnail-wrap .rt-video .video-popup-icon {
  transform: scale(0.6);
}
.typiq-widget-area .blog-list-style .rt-post-meta {
  padding-top: 0;
}
.typiq-widget-area .blog-list-style .rt-post-meta ul li {
  color: var(--rt-meta-color);
}
.typiq-widget-area .blog-list-style .article-inner-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.typiq-widget-area .blog-list-style .post-thumbnail-wrap {
  width: 160px;
}
.typiq-widget-area .blog-list-style .entry-wrapper {
  flex: 1;
}

.typiq-widget-area .widget_typiq-core_contact {
  padding: 0;
  border-radius: 5px;
}

.typiq-contact-widget-wrapper {
  color: #ffffff;
  font-weight: 400;
  position: relative;
}
.typiq-contact-widget-wrapper .ff-t-cell {
  position: relative;
}
.typiq-contact-widget-wrapper input {
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  width: 100%;
  border: 1px solid var(--rt-border-color);
  padding: 0 20px;
}
.typiq-contact-widget-wrapper .ff-btn-submit {
  top: 5px;
  right: 5px;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  font-size: 0;
  padding: 0;
}
.typiq-contact-widget-wrapper .ff-btn-submit:before {
  content: "\e8e9";
  font-family: rt-fontello;
  font-weight: 400;
  font-size: 20px;
  position: relative;
}
.typiq-contact-widget-wrapper .subtitle,
.typiq-contact-widget-wrapper .widget-title {
  margin-bottom: 0;
}
.typiq-contact-widget-wrapper .widget-title {
  color: #ffffff;
  font-size: 30px;
}
.typiq-contact-widget-wrapper .desc {
  font-size: 16px;
}
.typiq-contact-widget-wrapper img {
  display: block;
}
.typiq-contact-widget-wrapper .rt-content-inner {
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.social-icons .rt-social-share li a {
  color: #ffffff;
}

.rt-single-sidebar .typiq-contact-widget-wrapper img {
  width: 100%;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 30px;
  overflow: hidden;
}

.widget a {
  color: var(--rt-body-color);
}

.widget a:hover {
  color: var(--rt-heading-color);
}

.widget ul, .widget ol {
  padding-left: 0;
}
.widget ul ul, .widget ul ol, .widget ol ul, .widget ol ol {
  padding-left: 20px;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
  margin-left: -10px;
  margin-right: -10px;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding: 0 5px;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

@media (max-width: 992px) {
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item {
    max-width: 45.1%;
  }
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    max-width: 22%;
  }
}
@media (max-width: 550px) {
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    max-width: 45.1%;
  }
}
/*------------------------
  Sidebar Widget
-------------------------*/
/*------ List ----------*/
.widget_block .wp-block-group__inner-container > ul,
.widget > ul {
  margin-top: 0;
}

.widget_block .wp-block-group__inner-container > ul > li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  font-size: 16px;
  font-weight: 600;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover {
  color: var(--rt-meta-color2);
}
.wp-block-latest-comments .wp-block-latest-comments__comment {
  line-height: 1.6;
}

.wp-block-latest-posts__featured-image img {
  float: left;
  width: 100px;
  margin-right: 12px;
  border-radius: 8px;
  display: inline-block;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title {
  color: var(--rt-body-color);
  font-weight: 600;
}
.wp-block-latest-posts .wp-block-latest-posts__post-title:hover {
  color: var(--rt-meta-color2);
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 16px;
}

ol.wp-block-latest-comments {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

ol.wp-block-latest-comments li:last-child {
  margin-bottom: 0;
}

/*------ Recent Comments ------*/
.widget_recent_comments ul li {
  margin-bottom: 12px;
}
.widget_recent_comments ul li a {
  border-bottom: none;
  padding: 0;
}
.widget_recent_comments ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/*---- RSS ------*/
.widget_rss .widget-heading img {
  margin-top: -3px;
}
.widget_rss ul li {
  margin-bottom: 12px;
}
.widget_rss ul li .rsswidget {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}
.widget_rss ul li:last-child {
  margin-bottom: 0;
}

/*--------- Text Widget ---------*/
.widget_text .widget-heading {
  margin-bottom: 15px;
}

.widget_text select {
  margin-top: 0;
}

/*------ Select ----------*/
.widget select {
  background-color: #ffffff;
  border: 1px solid var(--rt-border-color);
  border-radius: 0;
  padding: 15px 13px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-size: 10px;
  background-image: url(../images/select-arrow.svg) !important;
  background-repeat: no-repeat;
  background-position: 95%;
  transition: all ease 0.31s;
}

/*------ Calender ----------*/
.wp-calendar-table caption {
  caption-side: top;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1;
  text-align: center;
  background-color: var(--rt-heading-color);
}
.wp-calendar-table td {
  padding: 0;
  text-align: center;
  line-height: 32px;
}
.wp-calendar-table td a {
  font-weight: 600;
}
.wp-calendar-table td#today, .wp-calendar-table a {
  color: #ffffff;
  background-color: var(--rt-primary-color);
}

.widget_typiq_about .about-logo a {
  font-size: 36px;
  font-weight: 600;
}

.widget_typiq_contact ul {
  row-gap: 10px;
  padding: 0 30px;
  display: flex;
  flex-flow: column;
}
.widget_typiq_contact ul li {
  display: flex;
  align-items: flex-start;
}
.widget_typiq_contact ul li.phone-no {
  font-size: 20px;
  font-weight: 600;
}
.widget_typiq_contact li [class*=rticon-] {
  flex: 0 0 30px;
  padding-top: 4px;
  justify-content: start;
}
.widget_typiq_contact li i {
  color: #c6c6c6;
  margin-right: 10px;
}
.widget_typiq_contact li i.icon-rt-location-1 {
  font-size: 18px;
}
.widget_typiq_contact li svg {
  fill: var(--rt-primary-color);
}
.widget_typiq_contact li p {
  margin: 0;
  display: inline-flex;
}
.widget_typiq_contact li p .icon-rt-location-1 {
  margin-top: 5px;
}

.download-widget .rt-download .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 6px;
  padding: 20px 30px;
  color: var(--rt-button-text-color);
  background-color: red;
}
.download-widget .rt-download .link:hover .icon i {
  animation: rtDown 2s linear infinite;
}
.download-widget .rt-download .text {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.download-widget .rt-download i {
  display: block;
  font-size: 24px;
}

/* Site Footer
***************************/
.site-footer {
  z-index: 2;
  overflow: hidden;
  position: relative;
}
.site-footer .footer-container {
  position: relative;
  z-index: 1;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-sidebar ul li {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.footer-sidebar ul li:last-child {
  padding-bottom: 0;
}

.typiq-footer-builder .typiq-navbar li a {
  position: relative;
}
.typiq-footer-builder .typiq-navbar li a::before {
  background-color: #fff;
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  height: 1px;
  width: 0;
  opacity: 0;
  transition: 0.5s;
}
.typiq-footer-builder .typiq-navbar li a:hover:before {
  width: 100%;
  opacity: 1;
}

/* Footer Menu Wrapper
***************************/
.site-footer .footer-menu-wrapper {
  border-top: 1px solid var(--rt-gray-color);
}
.typiq-footer-1 .site-footer .footer-menu-wrapper .align-default {
  justify-content: center;
}
.site-footer .typiq-navigation ul > li > ul.depth_0 {
  bottom: 100%;
  top: auto;
}
.site-footer .typiq-navigation ul li ul li ul {
  left: 100%;
  top: auto;
  bottom: 0;
}

/* Footer Widget wrapper
***************************/
.footer-widgets-wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 16px;
}
.footer-widgets-wrapper .footer-widgets {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.footer-widgets-wrapper .footer-widgets .widget-title, .footer-widgets-wrapper .footer-widgets .widgettitle {
  position: relative;
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.footer-widgets-wrapper .footer-widgets .widget-title.active-animation:after, .footer-widgets-wrapper .footer-widgets .widgettitle.active-animation:after {
  width: 40px;
}
.footer-widgets-wrapper .footer-widgets > .widget {
  flex-grow: 25;
}
.footer-widgets-wrapper .footer-widgets ul {
  list-style: none;
  padding-left: 0;
}
.footer-widgets-wrapper .footer-widgets ul ul {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer-widgets-wrapper {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}

.site-footer .footer-shortcode {
  margin-top: 24px;
}
.site-footer .footer-widget-logo img {
  margin-bottom: 15px;
}
.site-footer .footer-social:not(:has(*)) {
  background: red;
  padding: 15px;
}
.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 24px;
  overflow: hidden;
}
.site-footer .footer-social a {
  color: var(--rt-button-text-color);
}
.site-footer .footer-social a svg {
  fill: var(--rt-button-text-color);
}
.site-footer .footer-social a:hover svg {
  animation: toBottomFromTop 0.7s forwards;
}
.site-footer .footer-social svg {
  width: 16px;
  height: 16px;
}
.site-footer .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.site-footer .tagcloud a {
  color: var(--rt-body-color);
  background: var(--rt-gray-color);
  border-radius: 0;
  display: inline-block;
  font-size: 14px !important;
  padding: 8px 15px;
  line-height: 1.4;
  border-radius: 5px;
}
.site-footer .tagcloud a:hover {
  background-color: var(--rt-primary-color);
  color: #111111;
}
.site-footer .widget_nav_menu ul li a,
.site-footer .widget_archive ul li a,
.site-footer .widget_categories ul li a,
.site-footer .widget_pages ul li a,
.site-footer .widget_meta ul li a {
  color: #A4A4A4;
  position: relative;
}
.site-footer .widget_nav_menu ul li a:hover:before,
.site-footer .widget_archive ul li a:hover:before,
.site-footer .widget_categories ul li a:hover:before,
.site-footer .widget_pages ul li a:hover:before,
.site-footer .widget_meta ul li a:hover:before {
  background-color: #ffffff;
}
.site-footer .ff-default .ff-el-form-control {
  height: 50px;
  border-color: var(--rt-border-color);
  background-color: transparent;
}
.site-footer button.ff-btn.ff-btn-submit {
  color: #ffffff;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Footer Copyright
***************************/
.footer-copyright-wrapper {
  position: relative;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.footer-copyright-wrapper .copyright-text {
  text-align: center;
}
.footer-copyright-wrapper a {
  color: var(--rt-body-color);
}
.footer-copyright-wrapper a:hover {
  color: var(--rt-heading-color);
}
.footer-copyright-wrapper .payment-cart img {
  max-width: 358px;
  width: 100%;
}

@media (min-width: 1400px) {
  .has-sticky-footer .site-footer {
    position: sticky;
    bottom: 0;
    top: 0;
    z-index: 0;
  }
  .has-sticky-footer .site-content {
    position: relative;
    background-color: var(--rt-body-bg-color);
    z-index: 1;
  }
}
.typiq-footer-1 .footer-widgets-wrapper {
  background-color: #0F0F10;
  border-bottom: 1px solid #191C21;
}
.typiq-footer-1 .footer-widgets-wrapper .widget_typiq_contact {
  padding: 30px 50px 40px 50px;
  background-color: #060606;
}
.typiq-footer-1 .typiq-navigation ul > li:hover > ul {
  z-index: 9999;
}
.typiq-footer-1 .site-footer .widget-title, .typiq-footer-1 .site-footer .widgettitle {
  color: #ffffff;
}
.typiq-footer-1 .site-footer .tagcloud a {
  color: var(--rt-primary-color);
}
.typiq-footer-1 .site-footer .footer-social a svg {
  fill: #ffffff;
}
.typiq-footer-1 .footer-sidebar {
  color: #c6c6c6;
}
.typiq-footer-1 .footer-sidebar a {
  color: #c6c6c6;
}
.typiq-footer-1 .footer-sidebar a:hover {
  color: #ffffff;
}
.typiq-footer-1 .footer-sidebar .phone-no a {
  color: #ffffff;
}
.typiq-footer-1 .footer-copyright-wrapper {
  background-color: #060606;
  color: #c6c6c6;
}
.typiq-footer-1 .footer-copyright-wrapper a {
  color: #c6c6c6;
}
.typiq-footer-1 .footer-copyright-wrapper a:hover {
  color: red;
}
@media (max-width: 767px) {
  .typiq-footer-1 .copyright-text-wrap {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.typiq-search-form .search-box {
  position: relative;
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
}
.typiq-search-form .search-box input {
  font-size: 17px;
  font-weight: 400;
  height: 60px;
  padding: 0 55px 0 20px;
  border: none;
  width: 100%;
  border-radius: 6px;
  background-color: var(--rt-body-bg-color);
}
.typiq-search-form .search-box button {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  color: var(--rt-button-color);
  padding: 0 20px;
  height: 62px;
  margin-top: -1px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: var(--rt-primary-color);
}
.typiq-search-form .search-box button svg {
  fill: #ffffff;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}
.typiq-search-form .search-box button .btn-label {
  display: none;
}

.comments-area {
  margin-top: 50px;
  background: var(--rt-white-bg-color);
  border-radius: 5px;
  padding: 60px;
}
.comments-area .comments-title {
  font-size: 24px;
  margin-bottom: 15px;
}
.comments-area dd {
  margin-bottom: 15px;
}
.comments-area .comments-content ul,
.comments-area .comments-content ol {
  padding-left: 15px;
}
.comments-area .comment-content ul,
.comments-area .comment-content ol {
  padding-left: 15px;
}
@media (min-width: 768px) {
  .comments-area .comment-form .comment-form-author {
    width: 50%;
    float: left;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .comments-area .comment-form .comment-form-email {
    width: 50%;
    padding-left: 12px;
  }
}
.comments-area .comment-form label {
  color: var(--rt-heading-color);
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
}
.comments-area .comment-form input,
.comments-area .comment-form textarea {
  background-color: var(--rt-body-bg-color);
  border: 1px solid var(--rt-border-color);
  border-radius: 5px;
  width: 100%;
  padding: 14px 15px;
  line-height: 1.3;
}
.comments-area .comment-form input:focus,
.comments-area .comment-form textarea:focus {
  box-shadow: unset;
  border: 1px solid var(--rt-primary-color);
}
.comments-area .comment-form textarea {
  resize: vertical;
}
.comments-area .comment-form input[type=submit] {
  width: auto;
  color: var(--rt-primary-color);
  padding: 15px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 320ms ease-in-out;
  border: 1px solid var(--rt-border-color-2);
  background: transparent;
  padding-left: 45px;
}
.comments-area .comment-form .form-submit {
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
.comments-area .comment-form .form-submit:before {
  content: "\e86b";
  font-family: "rt-fontello";
  position: absolute;
  top: 13px;
  left: 25px;
  color: var(--rt-primary-color);
  transition: 0.3s;
}
.comments-area .comment-form .form-submit:hover:before {
  color: #ffffff;
}
.comments-area .comment-form .form-submit:hover input[type=submit] {
  background: var(--rt-primary-color);
  color: #ffffff;
  border-color: var(--rt-primary-color);
}
.comments-area .comment-form .required {
  color: #FF0000;
}
.comments-area .comment-form .comment-form-author,
.comments-area .comment-form .comment-form-email,
.comments-area .comment-form .comment-form-url {
  display: flex;
  align-items: baseline;
  flex-direction: column;
}
.comments-area .comment-form .comment-form-author input,
.comments-area .comment-form .comment-form-email input,
.comments-area .comment-form .comment-form-url input {
  flex: 1;
}
.comments-area p.comment-form-cookies-consent {
  display: flex;
  margin-bottom: 30px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}
.comments-area p.comment-form-cookies-consent input {
  width: auto;
}
.comments-area p.comment-form-cookies-consent * {
  margin: 0;
}
.comments-area .comment-text {
  font-size: 16px;
}
.comments-area .rt-author-wrapper {
  line-height: 1.3;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rt-comment-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comment-author .vcard {
  flex: 0 0 45px;
}
.comment-author .vcard img {
  border-radius: 45px;
}
.comment-author .rt-degination {
  font-size: 16px;
}
.comment-author .author-info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.comment-author .author-info cite {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}
.comment-author .author-info cite a {
  color: var(--rt-heading-color);
  text-transform: capitalize;
}
.comment-author .author-info cite a:hover {
  color: var(--rt-primary-color);
}
.comment-author .comment-meta {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (min-width: 767px) {
  .comment-author .comment-meta {
    position: absolute;
    top: -5px;
    right: 0;
  }
}
.comment-author .comment-meta a {
  color: var(--rt-body-color);
}
.comment-author .comment-details p {
  margin-bottom: 15px;
}

.comment-metadata {
  margin-left: 50px;
}

.comment-reply-link {
  height: 30px;
  font-size: 14px;
  font-weight: 400;
  color: var(--rt-heading-color);
  border-radius: 3px;
  border: 1px solid #DDE0E4;
  display: inline-block;
  padding: 0 15px;
  line-height: 28px;
}
.comment-reply-link:hover {
  background: var(--rt-button-color);
  color: #ffffff;
}

#cancel-comment-reply-link {
  padding-left: 12px;
}

.comment-list li {
  position: relative;
}
.comment-list li .comment-body:not(.last-item) {
  border-bottom: 1px solid var(--rt-border-color-2);
  margin-bottom: 30px;
}
.comment-list li.comment:last-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.comment-list > li ol,
.comment-list > li ul {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.comment-list li ol.children {
  padding-left: 30px;
  margin: 0;
  list-style: none;
  margin-top: 25px;
}

.comment-respond .comment-reply-title {
  font-size: 28px;
}
.comment-respond .comment-notes, .comment-respond .logged-in-as {
  color: var(--rt-heading-color);
  font-size: 16px;
}
.comment-respond .comment-notes a, .comment-respond .logged-in-as a {
  color: var(--rt-heading-color);
}
.comment-respond .comment-notes a:hover, .comment-respond .logged-in-as a:hover {
  color: var(--rt-primary-color);
}
.comment-respond .comment-reply-title,
.comment-respond p:not(.form-submit) {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease, opacity 0.3s ease;
  margin: 0;
}
.comment-respond.active p {
  margin: 0 0 20px;
}
.comment-respond.active .comment-reply-title,
.comment-respond.active p:not(.form-submit) {
  max-height: unset;
  opacity: 1;
}

.comment-notes {
  font-size: 90%;
  margin-bottom: 30px;
}

.comment-navigation {
  margin-top: 26px;
  border-top: 1px solid var(--rt-border-color);
  padding-top: 30px;
}
.comment-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
.comment-navigation .nav-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--rt-heading-color);
  border: 1px solid var(--rt-gray-color);
  padding: 6px 15px;
}
.comment-navigation .nav-links a:hover {
  background: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.comment-navigation .nav-links a:hover svg {
  fill: var(--rt-button-color);
}

.rt-search-box-wrap.flex-grow-1 {
  flex-grow: 1;
}
.rt-search-box-wrap .flex-grow-1 {
  flex-grow: 1;
}

ul.rt-action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.rt-action-list .dropdown {
  position: relative;
}
ul.rt-action-list .rt-drop-menu {
  position: absolute;
  display: block;
  padding-top: 25px;
  padding-bottom: 10px;
  padding-left: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  min-width: 100%;
  background-color: var(--rt-white-bg-color);
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.16);
  border: none;
  z-index: 4;
  inset: auto;
  list-style: none;
  transform: translate(0px, 20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.21s ease-in-out;
  height: 340px;
  overflow-x: hidden;
}
ul.rt-action-list .rt-drop-menu li {
  font-size: 14px;
  padding: 0 20px;
  line-height: 1;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  color: var(--rt-heading-color);
  transition: all 120ms ease;
}
ul.rt-action-list .rt-drop-menu li:hover {
  color: var(--rt-primary-color);
}
ul.rt-action-list .cat-btn-wrap:hover .rt-drop-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(0px, 0px);
}
ul.rt-action-list .rt-btn {
  padding-right: 17px;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 500;
  color: var(--rt-heading-color);
  background-color: transparent;
  position: relative;
  height: 54px;
  min-width: 160px;
  z-index: 5;
}
ul.rt-action-list .rt-btn .down-arrow {
  position: relative;
  top: -1px;
  left: 3px;
  font-size: 12px;
}

.rt-advanced-search .rt-input-group {
  position: relative;
}
.rt-advanced-search .project-search-form {
  background-color: transparent;
  border-radius: 30px;
  color: var(--rt-body-color);
  border: 1px solid var(--rt-border-color);
  font-size: 16px;
  padding: 14px 60px 14px 24px;
  line-height: 1;
  height: 54px;
  transition: unset;
  width: 100%;
}
.rt-advanced-search .project-search-form:focus {
  color: var(--rt-body-color);
  box-shadow: none;
  border: 1px solid var(--rt-primary-color);
}
.rt-advanced-search .input-group-append {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.rt-advanced-search .input-group-append button {
  top: 50%;
  right: 3px;
  width: 44px;
  height: 44px;
  padding: 5px;
  display: flex;
  line-height: 1;
  font-size: 16px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-weight: 600;
  position: absolute;
  align-items: center;
  border-radius: 100%;
  color: var(--rt-button-color);
  justify-content: center;
  transform: translateY(-50%);
  background-color: var(--rt-primary-color);
  transition: all 0.21s ease-in-out;
}
.rt-advanced-search .input-group-append button:hover {
  color: var(--rt-secondary-color);
}

.project-search .result-wrap {
  background: var(--rt-white-bg-color);
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  position: absolute;
  z-index: 9999;
  width: 100%;
  overflow: hidden;
  text-align: left;
}
.project-search .result-wrap .rt-price {
  color: var(--rt-heading-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
.project-search .result-wrap .rt-price del {
  font-weight: 400;
  color: var(--rt-meta-color);
  margin-right: 6px;
}
.project-search .result-wrap .rt-price ins {
  background-color: transparent;
}
.project-search .result {
  position: relative;
}
.project-search .result ul {
  margin: 0;
  padding: 0;
}
.project-search .result ul li {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-search .result ul li:nth-child(odd) {
  background-color: var(--rt-white-bg-color);
}
.project-search .result ul li:nth-child(even) {
  background-color: var(--rt-gray-color);
}
.project-search .result ul li .thumb {
  background-color: var(--rt-white-bg-color);
  border-radius: 6px;
  padding: 5px;
}
.project-search .result ul li img {
  max-width: 48px;
}
.project-search .result .title {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 5px;
  font-weight: 400;
}
.project-search .result .title a {
  color: var(--rt-heading-color);
}
.project-search .result .title a:hover {
  text-decoration: underline;
}

/* Blog Card CSS
===============================*/
.layout-left-sidebar #sidebar {
  order: -1;
}
@media (max-width: 1139px) {
  .layout-left-sidebar #sidebar {
    order: 1;
  }
}

body.blog .content-area,
.single-post .content-area {
  padding-top: 0;
  padding-bottom: 60px;
}

.rt-post-meta {
  color: var(--rt-meta-color);
  font-size: 16px;
}
.rt-post-meta ul {
  margin: 0;
  padding: 0;
  row-gap: 2px;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  list-style: none;
  display: inline-flex;
}
.rt-post-meta ul li {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--rt-meta-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.5;
  padding-left: 14px;
}
.rt-post-meta ul li .bypostauthor {
  margin-right: 4px;
}
.rt-post-meta ul li.edit-link {
  opacity: 0;
  visibility: hidden;
}
.rt-post-meta ul li i {
  padding-right: 6px;
}
.rt-post-meta ul li:after {
  top: 8px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  display: inline-flex;
  background-color: #D3D7DB;
  border-radius: 1px;
}
.rt-post-meta ul li .byline a {
  font-weight: 600;
}
article:hover .rt-post-meta ul li.edit-link {
  opacity: 1;
  visibility: visible;
}
.rt-post-meta ul li a {
  color: var(--rt-meta-color);
  padding-bottom: 0;
}
.rt-post-meta ul li a:hover {
  color: var(--rt-meta-color);
}
.meta-style-default .rt-post-meta ul {
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: block;
}
.meta-style-default .rt-post-meta ul li:not(:last-child) {
  margin-right: 20px;
}
.meta-style-border .rt-post-meta ul {
  gap: 5px;
}
.meta-style-border .rt-post-meta ul li:not(.category, .tag) {
  border: 1px solid var(--rt-border-color);
  min-height: 32px;
  padding: 0 12px;
  color: var(--rt-meta-color);
}
.meta-style-border .rt-post-meta ul li:not(.category, .tag) a {
  color: var(--rt-meta-color);
}
.meta-style-border .rt-post-meta ul li:not(.category, .tag) a:hover {
  color: var(--rt-meta-color2);
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) {
  padding: 0;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) .tag-links,
.meta-style-border .rt-post-meta ul li:is(.category, .tag) .category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) .sp {
  display: none;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) a {
  color: var(--rt-meta-color);
  border: 1px solid var(--rt-border-color);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
}
.meta-style-border .rt-post-meta ul li:is(.category, .tag) a:hover {
  color: var(--rt-meta-color2);
}
.meta-style-pipe .rt-post-meta li:not(:last-child)::after {
  content: " / ";
  margin-left: 10px;
  color: var(--rt-meta-color);
}
.meta-style-dash-bg .rt-post-meta ul {
  gap: 6px;
}
.meta-style-dash-bg .rt-post-meta li {
  padding: 0;
}
.meta-style-dash-bg .rt-post-meta .tag-links,
.meta-style-dash-bg .rt-post-meta .category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.meta-style-dash-bg .rt-post-meta li:not(.category, .tag) {
  background: var(--rt-gray-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px 6px;
  margin: 0;
  color: var(--rt-meta-color);
}
.meta-style-dash-bg .rt-post-meta li:not(.category, .tag):before {
  color: var(--rt-meta-color);
}
.meta-style-dash-bg .rt-post-meta li:not(.category, .tag) a {
  color: var(--rt-meta-color);
}
.meta-style-dash-bg .rt-post-meta li:not(.category, .tag) a:hover {
  color: var(--rt-primary-color);
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag) .sp {
  display: none;
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a {
  display: inline-block;
  height: 100%;
  padding: 7px 12px;
  line-height: 1;
  position: relative;
  background-color: var(--rt-gray-color);
  color: var(--rt-meta-color);
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a::before {
  color: var(--rt-meta-color);
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag) a:hover {
  color: var(--rt-meta-color2);
}
.meta-style-dash-bg .rt-post-meta li:is(.category, .tag)::before {
  content: none;
}

.widget .rt-post-meta {
  margin-bottom: 6px;
}

/* ======== Boock Mark ======== */
.rt-bookmark {
  width: 29px;
  height: 29px;
  line-height: 29px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid var(--rt-border-color);
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  background: #ffffff;
  color: var(--rt-primary-color);
  font-size: 12px;
}
.rt-bookmark.active {
  color: #ffffff;
  background: var(--rt-primary-color);
  border-color: var(--rt-primary-color);
}
.rt-bookmark.active .icon-rt-bookmark:before {
  color: #ffffff;
  content: "\e8b4";
}

.rt-cat {
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  transition: all 220ms;
  padding: 7.5px 8px;
  background-color: #ffffff;
  border: 1px solid var(--rt-border-color);
  cursor: pointer;
  color: var(--rt-primary-color);
}
.rt-cat i {
  margin-right: 3px;
  font-size: 10px;
}
.rt-cat a {
  color: var(--rt-primary-color);
}
.rt-cat:hover {
  background-color: var(--rt-button-color);
  border-color: var(--rt-primary-color);
  color: #ffffff;
}
.rt-cat:hover a {
  color: #ffffff;
}

.rt-bookmarks-page {
  padding-bottom: 55px;
}
.rt-bookmarks-page .rt-thumb-area {
  margin: 0 0 24px;
}

.rt-post-notification-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rt-post-notification {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
  width: 300px;
}

.rt-post-notification.active {
  opacity: 1;
  transform: translateX(0);
}

.rt-post-notification .rt-post-image {
  min-width: 60px;
  height: 100px;
  max-width: 60px;
  margin-right: 10px;
  margin-top: 10px;
}

.rt-post-notification .rt-post-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  height: 60px;
  width: 100%;
}

.rt-post-notification .rt-post-content h3 {
  font-size: 15px;
  margin: 0 0 6px;
  line-height: 1.3;
  color: #333;
}

.rt-post-notification .rt-post-content p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

.rt-post-notification.add {
  border-left: 4px solid #38b000;
}

.rt-post-notification.remove {
  border-left: 4px solid #d00000;
}

.separate-meta.title-above-meta .rt-cat .icon-rt-tags {
  color: var(--rt-primary-color);
  transition: all 220ms;
}
.separate-meta.title-above-meta .rt-cat a {
  color: var(--rt-button-color);
}
.separate-meta.title-above-meta .rt-cat:hover a,
.separate-meta.title-above-meta .rt-cat:hover .icon-rt-tags {
  color: #ffffff;
}
.separate-meta .sp {
  display: none;
}
.above-meta-style-border .separate-meta a {
  height: 100%;
  border: 1px solid var(--rt-primary-color);
  padding: 4px 10px;
  line-height: 1.2;
  background: var(--rt-heading-color);
}
.rt-cat-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
  position: relative;
}

/* Post Block
===================================*/
.typiq-post-card .entry-content {
  margin: 0 0 15px;
}
.typiq-post-card .entry-content p {
  margin-bottom: 0;
}
.typiq-post-card .entry-title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 6px;
}
.typiq-post-card .entry-title a {
  transition: background-size 0.3s var(--timing);
  background-image: linear-gradient(var(--rt-primary-color), var(--rt-primary-color));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0%;
  text-transform: capitalize;
  color: var(--rt-heading-color);
}
.typiq-post-card .entry-title a:hover {
  color: var(--rt-primary-color);
  background-size: 100% 10%;
}
.typiq-post-card .entry-footer {
  margin-top: 25px;
}
.typiq-post-card:hover .article-inner-wrapper .post-thumbnail img {
  transform: scale3d(1.05, 1.05, 1);
}

:root {
  --timing: cubic-bezier(.32, .74, .57, 1);
}

.post-thumbnail-wrap {
  position: relative;
}
.post-thumbnail-wrap .post-thumbnail {
  overflow: hidden;
  margin-bottom: 0;
  line-height: 0;
  border-radius: 5px;
}
.post-thumbnail-wrap .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 520ms ease;
  transform-origin: center center;
}
.post-thumbnail-wrap .rt-video {
  position: absolute;
  right: 15px;
  top: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.post-thumbnail-wrap .rt-video .video-popup-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #ffffff;
  color: var(--rt-primary-color);
  text-align: center;
  font-size: 12px;
}
.post-thumbnail-wrap .rt-video .video-popup-icon:hover {
  background-color: var(--rt-primary-color);
  color: #ffffff;
}
.post-thumbnail-wrap .rt-video .icon-rt-gallery {
  font-size: 14px;
  cursor: pointer;
}
.post-thumbnail-wrap .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
}
.post-thumbnail-wrap .swiper-navigation .swiper-button {
  font-size: 14px;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background-color: var(--rt-primary-color);
  border: none;
  border-radius: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.post-thumbnail-wrap .swiper-navigation .swiper-button:hover {
  background-color: var(--rt-secondary-color);
  color: #ffffff;
}
.post-thumbnail-wrap .swiper-navigation .swiper-button-prev {
  left: 50px;
}
.post-thumbnail-wrap .swiper-navigation .swiper-button-next {
  right: 50px;
}
.post-thumbnail-wrap:hover .swiper-navigation .swiper-button {
  opacity: 1;
  visibility: visible;
}
.post-thumbnail-wrap:hover .swiper-navigation .swiper-button-prev {
  left: 20px;
}
.post-thumbnail-wrap:hover .swiper-navigation .swiper-button-next {
  right: 20px;
}

.rt-post-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s;
  border-radius: 5px;
  cursor: pointer;
}
.rt-post-video .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.rt-post-video:hover .overlay-icon {
  opacity: 0.8;
}

.rt-mp4-video .rt-video {
  transition: 0.3s;
}
.rt-mp4-video:hover .rt-video {
  opacity: 0;
  visibility: hidden;
}

.post-thumbnail-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}

.rt-cat-position-top .rt-thumb-area {
  position: relative;
}
.rt-cat-position-top .rt-thumb-area .rt-cat-inner {
  position: absolute;
  top: 15px;
  left: 15px;
}

@media screen and (min-width: 1025px) {
  .rt-menu-position-left {
    display: flex;
    flex-wrap: wrap;
  }
}
.rt-menu-position-left .filter_heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}
.rt-menu-position-left .filter_desc {
  margin: 0 0 30px;
}
.rt-menu-position-left .rt-button {
  margin: 40px 0 0;
}
.rt-menu-position-left .row.justify-content-center {
  justify-content: left !important;
}
@media screen and (min-width: 1025px) {
  .rt-menu-position-left .rt_ajax_tab_section {
    max-width: 34%;
    flex: 34%;
  }
}
.rt-menu-position-left .rt_ajax_tab_section .rt-post-tab a {
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  transition: all 220ms;
  padding: 10px 16px;
  background-color: #ffffff;
  border: 1px solid var(--rt-border-color);
  cursor: pointer;
  color: var(--rt-primary-color);
  margin: 0 5px 8px 0;
}
.rt-menu-position-left .rt_ajax_tab_section .rt-post-tab a span {
  font-weight: 400;
}
.rt-menu-position-left .rt_ajax_tab_section .rt-post-tab a.current, .rt-menu-position-left .rt_ajax_tab_section .rt-post-tab a:hover {
  background-color: var(--rt-button-color);
  border-color: var(--rt-primary-color);
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .rt-menu-position-left .rt-posts-container {
    max-width: 66%;
    flex: 66%;
  }
}

.blog-default .post-thumbnail-wrap {
  margin-bottom: 16px;
}
.blog-default .post-thumbnail-wrap .title-above-meta {
  position: absolute;
  top: 15px;
  left: 15px;
}
.blog-default .rt-cat-inner {
  margin: 0 0 10px;
}
.blog-default.rt-grid-item .rt-cat-inner {
  position: absolute;
  top: 15px;
  left: 15px;
}

.article-inner-wrapper {
  position: relative;
  border-radius: 5px;
}
.article-inner-wrapper .btn {
  font-weight: 500;
  padding: 6px 24px;
  font-size: 14px;
}

.blog-list-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: row;
  border: 1px solid var(--rt-border-color-2);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .blog-list-inner {
    display: block;
  }
}
.blog-list-inner .post-thumbnail-wrap {
  flex-basis: 45.5%;
  max-width: 45.5%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .blog-list-inner .post-thumbnail-wrap {
    max-width: 100%;
  }
}
.blog-list-inner .post-thumbnail-wrap .post-thumbnail img {
  width: 100%;
}
.blog-list-inner .entry-wrapper {
  flex: 1;
  padding: 20px 20px 20px 0;
}
.blog-list-inner .rt-cat-inner {
  margin-bottom: 16px;
}
.blog-list-inner:hover {
  background: var(--rt-white-bg-color);
}

@media screen and (max-width: 767px) {
  .post-thumbnail img {
    width: 100%;
  }
  .rt_interval_list .entry-wrapper {
    padding: 20px;
  }
}
.blog-grid-3 .entry-content,
.blog-grid-3 .rt-cat-inner,
.blog-grid-2 .entry-content,
.blog-grid-2 .rt-cat-inner {
  margin: 0 0 14px;
}
.blog-grid-3 .entry-content p,
.blog-grid-2 .entry-content p {
  margin: 0;
}
.blog-grid-3 .article-inner-wrapper,
.blog-grid-2 .article-inner-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.blog-grid-3 .article-inner-wrapper:before,
.blog-grid-2 .article-inner-wrapper:before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.blog-grid-3 .post-thumbnail-wrap .rt-video,
.blog-grid-2 .post-thumbnail-wrap .rt-video {
  left: auto;
  right: 12px;
  top: 12px;
  transform: unset;
}
.blog-grid-3 .entry-wrapper,
.blog-grid-2 .entry-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 30px 20px;
  color: #ffffff;
  z-index: 2;
}
.blog-grid-3 .entry-title,
.blog-grid-2 .entry-title {
  color: #ffffff;
}
.blog-grid-3 .entry-title a,
.blog-grid-2 .entry-title a {
  color: #ffffff;
  background-image: linear-gradient(#ffffff, #ffffff);
}
.blog-grid-3 .entry-title a:hover,
.blog-grid-2 .entry-title a:hover {
  color: #ffffff;
}
.blog-grid-3 .rt-post-meta li,
.blog-grid-2 .rt-post-meta li {
  color: #F4F6F9;
}
.blog-grid-3 .rt-post-meta li a,
.blog-grid-2 .rt-post-meta li a {
  color: #ffffff;
}
.blog-grid-3 .rt-post-meta li a:hover,
.blog-grid-2 .rt-post-meta li a:hover {
  color: #ffffff;
}
.blog-grid-3 .post-thumbnail-wrap,
.blog-grid-2 .post-thumbnail-wrap {
  margin-bottom: 0;
}

.blog-grid-3 .entry-wrapper {
  padding: 0 90px 30px;
}
.blog-grid-3.rt-horizontal-slider {
  position: relative;
}
.blog-grid-3.rt-horizontal-slider .rt-slider-shape {
  position: absolute;
  bottom: -9px;
  z-index: 2;
  right: 80px;
}
.blog-grid-3.rt-horizontal-slider .horizontal-slider {
  overflow: hidden;
  border-radius: 10px;
}
.blog-grid-3.rt-horizontal-slider .rt-thumbnail-area {
  position: absolute;
  max-width: 210px;
  right: 158px;
  bottom: 3px;
  z-index: 3;
}
.blog-grid-3.rt-horizontal-slider .entry-wrapper {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 0;
}
.blog-grid-3.rt-horizontal-slider .horizontal-thumb-slider {
  height: 60px;
}
.blog-grid-3.rt-horizontal-slider .horizontal-thumb-slider .post-img img {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}
.blog-grid-3.rt-horizontal-slider .item-progress {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.blog-grid-3.rt-horizontal-slider .item-progress circle {
  fill: transparent;
}
.blog-grid-3.rt-horizontal-slider .item-progress circle:first-child {
  stroke: transparent;
  stroke-width: 1.5;
}
.blog-grid-3.rt-horizontal-slider .item-progress circle:last-child {
  stroke: var(--rt-primary-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  width: 60px;
}
.blog-grid-3.rt-horizontal-slider .item-thumb {
  cursor: pointer;
}
.blog-grid-3.rt-horizontal-slider .swiper-slide-thumb-active .item-progress {
  opacity: 1;
  visibility: visible;
}
.blog-grid-3.rt-horizontal-slider .swiper-slide-thumb-active .item-progress circle:last-child {
  animation: progressFill 5s linear forwards;
}
@media screen and (max-width: 767px) {
  .blog-grid-3.rt-horizontal-slider .rt-slider-shape,
  .blog-grid-3.rt-horizontal-slider .rt-thumbnail-area {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

@keyframes progressFill {
  from {
    stroke-dashoffset: 88;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.blog-grid-4 .separate-meta a {
  margin: 0;
  font-size: 12px;
  border-radius: 0;
  color: #ffffff;
  padding: 10px 16px 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: var(--rt-primary-color);
  border: 1px solid var(--rt-primary-color);
}
.blog-grid-4 .separate-meta a:hover {
  background-color: var(--rt-black-bg-color);
  border: 1px solid var(--rt-black-bg-color);
}
.blog-grid-4 .is-image .post-thumbnail-wrap .post-thumbnail {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.blog-grid-4 .is-image .separate-meta {
  position: absolute;
  margin-bottom: 0;
  left: 0;
  top: -34px;
  z-index: 1;
}
.blog-grid-4 .entry-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.blog-grid-4 .entry-title a {
  position: relative;
  transition: all 0.7s;
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 90%;
  background-image: linear-gradient(to right, var(--rt-body-color) 0%, var(--rt-body-color) 98%);
}
.blog-grid-4 .entry-title a:hover {
  color: var(--rt-body-color);
  background-size: 100% 1px;
}
.blog-grid-4 .entry-wrapper {
  padding: 20px;
  margin-top: -25px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  border-radius: 0 5px 5px 5px;
  background-color: var(--rt-white-bg-color);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.sticky .article-inner-wrapper {
  background-color: rgba(var(--rt-primary-rgb), 0.08);
  padding: 24px;
}

.blog-list-3 .post-thumbnail-wrap .post-thumbnail {
  border-radius: 6px 6px 0 0;
}
.blog-list-3 .separate-meta a {
  margin: 0;
  font-size: 14px;
  border-radius: 0;
  color: #ffffff;
  padding: 9px 15px;
  font-weight: 600;
  background-color: var(--rt-primary-color);
  border: 1px solid var(--rt-primary-color);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.blog-list-3 .separate-meta a:hover {
  background-color: var(--rt-black-bg-color);
  border-color: var(--rt-black-bg-color);
}
.blog-list-3 .is-image .post-thumbnail-wrap .post-thumbnail {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.blog-list-3 .is-image .separate-meta {
  position: absolute;
  margin-bottom: 0;
  left: 0;
  top: -32px;
  z-index: 1;
}
.blog-list-3 .entry-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .blog-list-3 .entry-title {
    font-size: 24px;
    line-height: 150%;
  }
}
.blog-list-3 .entry-wrapper {
  position: relative;
  margin-top: -65px;
  margin-left: 30px;
  margin-right: 30px;
}
.blog-list-3 .entry-wrapper .separate-meta {
  margin-bottom: 0;
}
.blog-list-3 .entry-wrapper .inner-wrapper {
  padding: 30px;
  position: relative;
  background-color: var(--rt-white-bg-color);
  border-radius: 0px 5px 5px 5px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.rt_bg_white .entry-wrapper {
  background: var(--rt-white-bg-color);
}

.rt-loadmore-wrapper {
  margin-top: 40px;
}
.rt-loadmore-wrapper .rt-ajax-loadmore.loading {
  pointer-events: none;
  opacity: 0;
  background: transparent;
}

.rt-swiper-slider .post-thumbnail-wrap .post-thumbnail img {
  width: 100%;
}

/* Category
===================================*/
.rt-item {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: row;
  border-radius: 5px;
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .rt-item {
    padding: 25px 20px;
    gap: 20px;
  }
}
.rt-item .rt-cat-count {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
  transition: 0.5s;
  font-size: 14px;
  font-weight: 600;
  color: var(--rt-heading-color);
}
@media (max-width: 767px) {
  .rt-item .rt-cat-count {
    top: 60px;
    left: 20px;
  }
}
.rt-item .rt-cat-image {
  position: relative;
  overflow: hidden;
  max-height: 100px;
  max-width: 100px;
  border-radius: 100px;
}
.rt-item .rt-cat-image a {
  display: block;
}
.rt-item .rt-cat-image img {
  transition: 0.3s;
}
.rt-item .rt-cat-name {
  font-size: 20px;
  margin: 0 0 4px;
}
.rt-item .expore-btn {
  margin: 5px 0 0;
  font-weight: 600;
  font-size: 15px;
}
.rt-item:hover img {
  scale: 1.4;
}
.rt-item:hover .rt-cat-count {
  background: var(--rt-primary-color);
  color: #ffffff;
}

/* Pagination
===================================*/
.pagination-list {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: flex;
}
.pagination-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--rt-heading-color);
  border: 1px solid var(--rt-border-color);
  border-radius: 4px;
}
.pagination-list li a:hover {
  background-color: var(--rt-primary-color);
  border: 1px solid transparent;
  color: #ffffff;
}
.pagination-list li.active a {
  background-color: var(--rt-primary-color);
  border: 1px solid transparent;
  color: #ffffff;
}
.pagination-list li i {
  font-size: 18px;
}

.pagination-area-2 .pagination-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-size: 22px;
  font-weight: 500;
  color: var(--rt-button-text-color);
  background-color: var(--rt-gray-color);
  border-radius: 50%;
}
.pagination-area-2 .pagination-list li a:hover {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}
.pagination-area-2 .pagination-list li i {
  font-size: 12px;
}
.pagination-area-2 .pagination-list li.active a {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
}

/* Ajax Pagination
===================================*/
.ajax-pagination-area:empty {
  display: none;
}

.ajax-pagination-area {
  width: 100%;
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ajax-pagination-area .page-numbers {
  padding: 0;
  -moz-column-gap: 10px;
       column-gap: 10px;
  list-style: none;
  display: inline-flex;
}
.ajax-pagination-area .page-numbers span,
.ajax-pagination-area .page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 22px;
  font-weight: 500;
  color: var(--rt-heading-color);
  border: 1px solid var(--rt-border-color);
  border-radius: 4px;
}
.ajax-pagination-area .page-numbers span i,
.ajax-pagination-area .page-numbers a i {
  font-size: 14px;
}
.ajax-pagination-area .page-numbers span.current, .ajax-pagination-area .page-numbers span:hover,
.ajax-pagination-area .page-numbers a.current,
.ajax-pagination-area .page-numbers a:hover {
  background-color: var(--rt-primary-color);
  border: 1px solid transparent;
  color: #ffffff;
}

.rt-blog-slider .rt-blog-gallery {
  max-width: 200px;
}
.rt-blog-slider .rt-blog-gallery .swiper-slide {
  margin: 0 !important;
}
.rt-blog-slider .item-thumb {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  width: 67px;
  height: 67px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 67px;
  border: 2px solid transparent;
}
.rt-blog-slider .item-thumb img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
  position: relative;
  top: 7px;
}
.rt-blog-slider .swiper-slide-thumb-active .item-thumb {
  border-color: var(--rt-primary-color);
}

.single-content .typiq-single-post-details .entry-content {
  margin-bottom: 40px;
}
.single-content .typiq-single-post-details .entry-content > p + :is(h1, h2, h3) {
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-content .typiq-single-post-details .entry-content img {
  border-radius: 5px;
}
.single-content .single-inner-wrapper {
  display: inline-block;
  width: 100%;
}
.single-content .single-inner-wrapper .post-list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-content .single-inner-wrapper .post-list-style li {
  position: relative;
  margin-bottom: 6px;
  margin-left: 30px;
  font-weight: 500;
}
.single-content .single-inner-wrapper .post-list-style li:before {
  position: absolute;
  content: "\e8ef";
  font-family: "rt-fontello";
  font-size: 16px;
  color: var(--rt-primary-color);
  left: -30px;
  top: 3px;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-thumbnail-wrap .wp-caption-text {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.entry-video-area {
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.entry-video-area object {
  border-radius: 10px;
  width: 100%;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 24px;
}

:where(.wp-block-columns) {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rt-related-post {
  margin-top: 50px;
}
.rt-related-post .related-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.rt-related-post .rt-post-meta {
  margin-bottom: 0 !important;
}

.rt-list {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: var(--rt-heading-color);
}
.rt-list li {
  margin-bottom: 6px;
}
.rt-list i {
  font-size: 14px;
  position: relative;
  top: -2px;
  margin-right: 6px;
}

.single-post .ajax-scroll-post article {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.single-post .ajax-scroll-post article:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--rt-border-color-3);
  content: "";
  height: 1px;
}

.single-post-container .sidebar-sticky {
  transition: 0.4s;
}

@media (min-width: 1025px) {
  .headroom--not-top.headroom--pinned ~ .site-content .content-area .sidebar-sticky,
  .headroom--not-top.headroom--pinned ~ .site-content .single-post-container .sidebar-sticky {
    top: 100px;
    transition: 0.4s;
  }
}

.rt-profile-card {
  border-radius: 5px;
  padding: 54px 26px 26px;
  position: relative;
  overflow: hidden;
  background: var(--rt-white-bg-color);
}
.rt-profile-card .rt-bg-wrapper {
  background: var(--rt-body-bg-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 0 30px 30px;
}
.rt-profile-card .profile-photo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  margin: -32.5px auto 12px;
}
.rt-profile-card .profile-author-social {
  text-align: center;
}
.rt-profile-card .profile-author-social li {
  padding: 0;
  display: inline-block;
}
.rt-profile-card .profile-author-social li + li {
  margin-left: 4px;
}
.rt-profile-card .profile-author-social a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: block;
  border-radius: 5px;
}
.rt-profile-card .intro-text {
  text-align: center;
}
.rt-profile-card .divider {
  width: 100%;
  height: 1px;
  background-color: var(--rt-border-color-2);
  margin: 20px 0;
}
.rt-profile-card .rt-user-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.rt-profile-card .subtitle {
  color: var(--rt-heading-color);
  margin: 0 0 12px;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.experience-item .work-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.experience-item .progress-number {
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  z-index: 2;
}
.experience-item .experience-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--rt-heading-color);
}
.experience-item .experience-title .role {
  font-weight: 400;
}

.rt-progress-container .rt-progress-bar {
  background: conic-gradient(var(--rt-primary-color) 0deg, var(--rt-primary-color) var(--progress-deg, 0deg), #ECEFF4 var(--progress-deg, 0deg), #ECEFF4 360deg);
  border-radius: 50%;
}

.rt-social-share .facebook {
  background-color: #1877F2;
}
.rt-social-share .twitter {
  background-color: #000000;
}
.rt-social-share .linkedin {
  background-color: #0A66C2;
}
.rt-social-share .pinterest {
  background-color: #BD081C;
}
.rt-social-share .instagram {
  background-color: #E1306C;
}
.rt-social-share .whatsapp {
  background-color: #25D366;
}
.rt-social-share .vimeo {
  background-color: #1AB7EA;
}
.rt-social-share .youtube {
  background-color: #FF0000;
}
.rt-social-share .tiktok {
  background-color: #111111;
}
.rt-social-share a {
  color: #ffffff;
}

.offcanvas-social-icon,
.rt-social-share {
  transition: 0.3s;
}
.offcanvas-social-icon a,
.rt-social-share a {
  transition: 0.3s;
}
.offcanvas-social-icon:hover a:not(:hover),
.rt-social-share:hover a:not(:hover) {
  opacity: 0.7;
}

.rt-progress-container {
  position: relative;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 52px;
  border-radius: 52px;
  border: 1px solid #B6BCC3;
}
.rt-progress-container .rt-progress-bar {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  --progress-deg: 0deg;
  animation: progressAnimation 2s ease-in-out forwards;
}
.rt-progress-container .rt-progress-bar::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 41px;
  background: var(--rt-border-color-3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rt-progress-container .rt-progress-text {
  position: relative;
  z-index: 10;
  font-size: 15px;
  font-weight: 600;
  color: var(--rt-heading-color);
}

@keyframes progressAnimation {
  from {
    --progress-deg: 0deg;
  }
  to {
    --progress-deg: calc(var(--target-progress, 85) * 3.6deg);
  }
}
@property --progress-deg {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.single-post .rt-single-content-wrapper > .entry-content {
  font-size: 18px;
}
.single-post .single-inner-wrapper > .entry-wrapper {
  position: relative;
  display: flex;
  gap: 15px;
}
.single-post .single-inner-wrapper > .entry-wrapper .rt-single-content-wrapper {
  padding: 0 10px;
  overflow: hidden;
}
.single-post .single-post-thumbnail {
  margin-bottom: 30px;
}
.single-post .single-post-thumbnail img {
  width: 100%;
}
.single-post .typiq-single-post-details .entry-header .title-above-meta {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-post .typiq-single-post-details .entry-header .entry-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.single-post .typiq-single-post-details .rt-post-meta {
  margin-bottom: 18px;
}
.single-post .entry-footer .icon-rt-share {
  display: block;
  font-size: 20px;
}
.single-post .entry-footer .rt-title {
  color: var(--rt-heading-color);
}
.single-post .entry-footer .post-share {
  width: 60px;
  text-align: center;
}
.single-post .entry-footer .tag-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.single-post .entry-footer .tag-links .sp {
  display: none;
}
.single-post .entry-footer .tag-links a {
  font-size: 14px;
  line-height: 1.4;
  color: var(--rt-button-color);
  font-weight: 600;
  border-radius: 3px;
  min-height: 30px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  position: relative;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid var(--rt-border-color);
}
.single-post .entry-footer .tag-links a:hover {
  background-color: var(--rt-primary-color);
  color: #ffffff;
  border-color: var(--rt-button-color);
}
.single-post .entry-footer .social-share-list {
  margin: 0;
  border: 1px solid #EBE0FE;
  background: #fff;
  border-radius: 5px;
  padding: 10px 0;
}
.single-post .entry-footer .social-share-list li {
  margin-bottom: 0;
  display: block;
}
.single-post .entry-footer .social-share-list li + li {
  margin-top: 10px;
}
.single-post .entry-footer .social-share-list a {
  font-size: 15px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  margin: 0 auto;
}
.single-post .rt-post-meta ul li:after {
  top: 11px;
}
.single-post .rt-single-content-wrapper h1, .single-post .rt-single-content-wrapper h2, .single-post .rt-single-content-wrapper h3, .single-post .rt-single-content-wrapper h4, .single-post .rt-single-content-wrapper h5, .single-post .rt-single-content-wrapper h6 {
  text-transform: capitalize;
}

.author .profile-author {
  margin-bottom: 60px;
  margin-top: 0;
}

.profile-author {
  padding: 50px 50px 40px;
  margin-top: 50px;
  border: 1px solid var(--rt-border-color-3);
  background-color: var(--rt-gray-color);
  border-radius: 5px;
  align-items: center;
}
@media (min-width: 767px) {
  .profile-author {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .profile-author {
    padding: 30px;
  }
}
.profile-author .profile-thumb img {
  border-radius: 5px;
}
.profile-author .profile-content {
  flex: 1;
}
@media (max-width: 575px) {
  .profile-author .profile-content {
    flex: auto;
  }
}
@media (max-width: 767px) {
  .profile-author .profile-content {
    margin: 20px 0 0;
  }
}
.profile-author .profile-title {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: capitalize;
}
.profile-author .profile-title a:hover {
  color: var(--rt-primary-color);
}
.profile-author .profile-title .author-role {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  top: -4px;
}
.profile-author .profile-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--rt-primary-color);
  font-size: 16px;
  margin-bottom: 3px;
  line-height: 1.3;
  text-transform: capitalize;
}
.profile-author .profile-author-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  overflow: hidden;
}
.profile-author .profile-author-social li {
  margin-top: 20px;
}
.profile-author .profile-author-social a i {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  color: #ffffff;
  background: var(--rt-primary-color);
}
.profile-author .profile-author-social a .icon-rt-facebook {
  background-color: #1877F2;
}
.profile-author .profile-author-social a .icon-rt-twitter-1 {
  background-color: #000000;
}
.profile-author .profile-author-social a .icon-rt-linkedin {
  background-color: #0A66C2;
}
.profile-author .profile-author-social a .icon-rt-instagram-1 {
  background-color: #E1306C;
}
.profile-author .profile-author-social a .icon-rt-youtube-play {
  background-color: #FF0000;
}

.wp-block-quote {
  margin: 30px 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  border-radius: 5px;
  color: var(--rt-heading-color);
  padding: 70px 40px 35px;
  border: none;
  background-color: var(--rt-white-bg-color);
  font-style: italic;
  z-index: 1;
}
.wp-block-quote p {
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}
.wp-block-quote p:not(.rt-blog-author) {
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  font-style: italic;
  line-height: 1.4;
}
.wp-block-quote cite {
  color: var(--rt-heading-color);
  font-size: 15px;
  font-weight: 400;
}
.wp-block-quote:after {
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  content: "\e862";
  color: rgba(221, 224, 228, 0.5803921569);
  position: absolute;
  font-family: "rt-fontello";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  z-index: -1;
  font-style: normal;
}
.wp-block-quote .rt-blog-author {
  font-size: 16px;
  font-weight: 400;
  color: #858D95;
  margin-top: 15px;
  font-style: normal;
}
.wp-block-quote .rt-blog-author span {
  font-size: 18px;
  color: var(--rt-heading-color);
  font-weight: 500;
  text-decoration: underline;
}

.typiq-single-post-details b, .typiq-single-post-details strong {
  color: var(--rt-heading-color);
  font-weight: 600;
}
.typiq-single-post-details .rt-post-meta ul li {
  font-size: 18px;
}

.rt-container-fluid .post-thumbnail-wrap .post-thumbnail {
  border-radius: 0;
}

.single-post.typiq-single-3 .content-area {
  padding-top: 0;
}
.single-post.typiq-single-3 .single-post-container .content-row {
  justify-content: center;
  margin-top: 40px;
}
.single-post.typiq-single-3 .single-post-container .single-content {
  background-color: var(--rt-body-bg-color);
  padding: 40px 20px;
  border-radius: 5px;
  margin-top: -130px;
}
.single-post.typiq-single-3 .single-post-container .content-top-area {
  padding: 0;
}
.single-post.typiq-single-3 .single-post-container .content-top-area .post-thumbnail-wrap {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .single-post.typiq-single-3 .single-post-container .content-top-area .post-thumbnail-wrap {
    height: 840px;
  }
}
.single-post.typiq-single-3 .single-post-container .content-top-area .post-thumbnail-wrap .wp-caption-text {
  position: absolute;
  right: 24px;
  bottom: 9px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  padding: 5px 16px;
}

.single-post.typiq-single-4 .single-post-thumbnail img {
  min-height: 450px;
}
.single-post.typiq-single-4 .entry-header {
  max-width: 1000px;
}
.single-post.typiq-single-4 .rt-single4-meta .rt-post-meta ul li a,
.single-post.typiq-single-4 .rt-single4-meta .rt-post-meta ul li {
  color: #ffffff;
}
.single-post.typiq-single-4 .rt-single4-meta .entry-title {
  font-size: 50px;
  line-height: 1.2;
  color: #ffffff;
  margin: 10px 0 15px;
}
@media (max-width: 991px) {
  .single-post.typiq-single-4 .rt-single4-meta .entry-title {
    font-size: 34px;
  }
}
@media (max-width: 560px) {
  .single-post.typiq-single-4 .rt-single4-meta .entry-title {
    font-size: 30px;
  }
}
.single-post.typiq-single-4 .single-post-container .title-above-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-post.typiq-single-4 .single-post-container .single-post-thumbnail {
  margin-bottom: 0;
}
.single-post.typiq-single-4 .single-post-container .content-top-area {
  padding: 0;
  position: relative;
  margin-bottom: 55px;
}
.single-post.typiq-single-4 .single-post-container .rt-single4-meta {
  position: absolute;
  width: 100%;
  bottom: 50px;
  left: 0;
  right: 0;
}

.single-post.has-trheader .elementor-divider-separator {
  border-color: #fff !important;
}

.elementor-social-icons-wrapper .elementor-icon {
  border-radius: 40px 40px 40px 40px;
}

.elementor-icon.elementor-social-icon {
  font-size: var(--icon-size, 25px);
  height: calc(var(--icon-size, 25px) + 2 * var(--icon-padding, 0.5em));
  line-height: var(--icon-size, 25px);
  width: calc(var(--icon-size, 25px) + 2 * var(--icon-padding, 0.5em));
  cursor: pointer;
}
.elementor-icon.elementor-social-icon i {
  color: #fff;
}
.elementor-icon.elementor-social-icon i:before {
  margin: 0;
}

.elementor-social-icon-twitter {
  background-color: #1da1f2;
}

.elementor-social-icon-youtube {
  background-color: #cd201f;
}

.single-post-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  margin-bottom: 50px;
  margin-top: 60px;
  background: var(--rt-white-bg-color);
  border-radius: 5px;
  padding: 30px 20px 24px 20px;
}
.single-post-pagination p {
  margin: 0;
}
.single-post-pagination .rt-post-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-post-pagination .rt-post-category,
.single-post-pagination .post-info {
  margin-bottom: 6px;
}
.single-post-pagination .post-navigation {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 50%;
}
@media (max-width: 767px) {
  .single-post-pagination .post-navigation {
    flex: 0 0 100%;
  }
  .single-post-pagination .post-navigation:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.single-post-pagination .post-thumb {
  width: 150px;
  min-width: 150px;
  height: 110px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
}
.single-post-pagination .link {
  display: flex;
  flex: 0 0 calc(100% - 20px);
  align-items: center;
  gap: 15px;
  font-size: 17px;
  line-height: 1.4;
}
.single-post-pagination .item-title {
  font-weight: 600;
  color: var(--rt-heading-color);
}
.single-post-pagination .item-title:hover {
  color: var(--rt-primary-color);
}
.single-post-pagination .rt-post-date {
  font-size: 14px;
  position: relative;
  padding-left: 10px;
  font-weight: 500;
  color: var(--rt-heading-color);
}
.single-post-pagination .rt-post-date:after {
  width: 5px;
  height: 5px;
  background: #DADDDF;
  border-radius: 1px;
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
}
.single-post-pagination .nav-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--rt-heading-color);
}
.single-post-pagination .post-info {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 4.5em;
}

.error-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .error-404 img {
    max-width: 990px;
    height: auto;
  }
}
.error-404 .error-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 40px;
  text-align: center;
}
.error-404 .error-info .error-title {
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: 10px;
  text-transform: uppercase;
}
.error-404 .error-info p {
  font-size: 18px;
  line-height: 1.2;
}

/* ========= Project ========= */
.project-archive-wrapper {
  padding: 120px 50px;
}
@media screen and (max-width: 767px) {
  .project-archive-wrapper {
    padding: 80px 10px;
  }
  .project-archive-wrapper .row.g-5 {
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }
  .project-archive-wrapper .row.g-5 > * {
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 24px;
  }
}

.archive-ajax-search-box-section {
  padding-top: 50px;
  text-align: center;
  padding-bottom: 50px;
  background-color: var(--rt-gray-color);
}
.archive-ajax-search-box-section .container {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .archive-ajax-search-box-section {
    padding-bottom: 35px;
  }
}

.project-archive-search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-archive-search-form .search-form {
  gap: 15px;
  flex-wrap: wrap;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}
.project-archive-search-form .search-form .form-group {
  width: 270px;
  text-align: left;
  flex-flow: column;
  position: relative;
  display: inline-flex;
}
.project-archive-search-form .search-form .form-label {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--rt-heading-color);
}
.project-archive-search-form .search-form .form-select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--rt-body-color);
  border-radius: 5px;
  background-size: 12px 8px;
  padding: 15px 35px 15px 15px;
  border: 1px solid var(--rt-border-color-2);
  background-color: var(--rt-white-bg-color);
  background: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.7' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
}
.project-archive-search-form .search-form .search-btn {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 15px 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--rt-button-color);
  border-radius: 4px;
  flex-flow: unset;
  justify-content: center;
  background-color: var(--rt-primary-color);
}
.project-archive-search-form .search-form .search-btn i {
  font-size: 18px;
}
.project-archive-search-form .search-form .search-btn:hover {
  background-color: var(--rt-black-bg-color);
}
@media screen and (max-width: 1024px) {
  .project-archive-search-form {
    top: 60px;
    left: 0;
    opacity: 0;
    z-index: 99;
    width: 100%;
    padding: 0 12px;
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .project-archive-search-form.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .project-archive-search-form .search-form {
    gap: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    background: var(--rt-white-bg-color);
    padding: 25px 30px 30px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .project-archive-search-form .search-form .form-group {
    flex: 1 1 calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) and (max-width: 575px) {
  .project-archive-search-form .search-form .form-group {
    flex: 1 1 calc(100% - 10px);
  }
}

/* Base styles */
.filter-toggle-btn {
  display: none;
  background-color: var(--rt-primary-color);
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  margin-bottom: 15px;
  cursor: pointer;
  /* Hide form on small screen initially */
}
@media (max-width: 1024px) {
  .filter-toggle-btn {
    display: inline-block;
  }
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.item-parent {
  position: relative;
}
.item-parent .no-project-found {
  width: 100%;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.item-parent .ajax-loading-spinner {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.item-parent .ajax-loading-spinner .loader {
  height: 50px;
  width: 50px;
  display: inline-flex;
  border: 0.4em solid transparent;
  border-top-color: var(--rt-secondary-color);
  border-radius: 50%;
  animation: 1s loader_animation linear infinite;
  position: relative;
}
.item-parent .ajax-loading-spinner .loader:before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  position: absolute;
  top: -0.4em;
  left: -0.4em;
  border: 0.4em solid var(--rt-primary-color);
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes loader_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============ Project Post Layouts ============ */
.project-loc a,
.project-cat a {
  padding: 3px 15px;
  color: var(--rt-button-color);
  display: inline-flex;
  border-radius: 3px;
  font-weight: 600;
  background-color: var(--rt-primary-color);
}
.project-loc a:hover,
.project-cat a:hover {
  background-color: var(--rt-black-bg-color);
}

/* ========== Layout Default ========== */
.rt-project-default > .row {
  justify-content: center;
}
.rt-project-default .project-item {
  position: relative;
  transition: all 220ms ease;
}
.rt-project-default .project-item .project-thumbs {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.rt-project-default .project-item .project-thumbs .post-thumbnail {
  border-radius: 6px;
}
.rt-project-default .project-item .project-thumbs img {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.rt-project-default .project-item .project-info {
  width: 100%;
}
.rt-project-default .project-item .project-info .post-header {
  width: 100%;
  flex-flow: column;
  display: inline-flex;
  align-items: center;
}
.rt-project-default .project-item .project-title {
  font-size: 28px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.rt-project-default .project-item .project-title a {
  color: var(--rt-heading-color);
}
.rt-project-default .project-item .project-title a:hover {
  color: var(--rt-primary-color);
}
@media screen and (max-width: 1024px) {
  .rt-project-default .project-item .project-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .rt-project-default .project-item .project-title {
    font-size: 20px;
  }
}
.rt-project-default .project-item .project-loc,
.rt-project-default .project-item .project-cat {
  display: block;
}
.rt-project-default .project-item .project-excerpt {
  margin-top: 12px;
}
.rt-project-default .project-item .is-blend img {
  filter: grayscale(100%);
}
.rt-project-default .project-item .rt-button .btn {
  padding: 10px;
  border-radius: 4px;
  color: var(--rt-heading-color);
}
.rt-project-default .project-item .rt-button .btn svg, .rt-project-default .project-item .rt-button .btn path {
  transition: all 220ms ease;
}
.rt-project-default .project-item:hover .is-blend img {
  filter: grayscale(0);
}
.rt-project-default .project-item:hover .project-thumbs img {
  transform: scale(1.05);
}
@media screen and (max-width: 575px) {
  .rt-project-default .project-item .address {
    margin-top: 5px;
  }
}
.rt-project-default .rt-project-tab {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  justify-content: center;
}
.rt-project-default .rt-project-tab .case-cat-tab {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  row-gap: 5px;
  padding: 10px 11px;
  border-radius: 6px;
  background-color: var(--rt-gray20);
}
.rt-project-default .rt-project-tab .case-cat-tab a {
  display: inline-block;
  color: var(--rt-meta-color);
  position: relative;
  font-size: 18px;
  border-radius: 6px;
  padding: 10px 25px;
  font-weight: 600;
  background-color: var(--rt-white-bg-color);
}
.rt-project-default .rt-project-tab .case-cat-tab a.current, .rt-project-default .rt-project-tab .case-cat-tab a:hover {
  color: var(--rt-button-color);
  background-color: var(--rt-primary-color);
}
.rt-project-default .rt-project-tab .separator a:before {
  content: "";
  height: 2px;
  width: 10px;
  background-color: #a9a9a9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
}
.rt-project-default .rt-project-tab .separator a:last-child:before {
  display: none;
}

.rt-tab-block .tab-block-content .project-item .rt-button {
  margin-top: 10px;
}

.rt-project-multi-layout-default .rt-masonry-grid.item-parent .rt-grid-item:nth-child(2) {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-default .rt-masonry-grid.item-parent .rt-grid-item:nth-child(2) {
    margin-top: 48px;
  }
}
.rt-project-multi-layout-default .rt-masonry-grid .project-item .project-thumbs {
  margin-bottom: 30px;
}
.rt-project-multi-layout-default .project-item .project-info .address {
  padding-top: 15px;
  color: var(--rt-heading-color);
}

/* ========== Layout 2 ========== */
.rt-project-multi-layout-2 .project-item .project-thumbs {
  z-index: 0;
  margin-bottom: 0;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.rt-project-multi-layout-2 .project-item .project-thumbs:before, .rt-project-multi-layout-2 .project-item .project-thumbs:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}
.rt-project-multi-layout-2 .project-item .project-thumbs:before {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(27, 202, 6, 0.9);
}
.rt-project-multi-layout-2 .project-item .project-thumbs:after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 50%);
}
.rt-project-multi-layout-2 .project-item .project-content {
  left: 0;
  right: 0;
  gap: 12px;
  bottom: 24px;
  color: #ffffff;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.rt-project-multi-layout-2 .project-item .project-title a {
  color: #ffffff;
}
.rt-project-multi-layout-2 .project-item .project-title a:hover {
  color: #E4E4E4;
}
.rt-project-multi-layout-2 .project-item .project-loc,
.rt-project-multi-layout-2 .project-item .project-cat {
  margin-top: 15px;
}
.rt-project-multi-layout-2 .project-item .project-loc a,
.rt-project-multi-layout-2 .project-item .project-cat a {
  color: var(--rt-heading-color);
  background-color: var(--rt-white-bg-color);
}
.rt-project-multi-layout-2 .project-item .project-loc a:hover,
.rt-project-multi-layout-2 .project-item .project-cat a:hover {
  color: var(--rt-button-color);
  background-color: var(--rt-secondary-color);
}
.rt-project-multi-layout-2 .project-item .project-content .project-info {
  width: auto;
  transition: all 0.5s linear;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info .post-header {
  align-items: flex-start;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info .post-header .project-title,
.rt-project-multi-layout-2 .project-item .project-content .project-info .post-header .address {
  width: 100%;
  text-align: center;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info .info-list {
  width: 100%;
  row-gap: 10px;
  display: flex;
  flex-flow: column;
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid #ffffff;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info .info-list li {
  font-weight: 600;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
  padding-left: 0;
  margin-top: 0;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info .info-list li:before {
  display: none;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info .info-list li label {
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-2 .project-item .project-content .project-info .info-list li {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-2 .project-item .project-content .project-info .info-list {
    row-gap: 0;
  }
}
.rt-project-multi-layout-2 .project-item .project-content .project-info.visible-part {
  padding-bottom: 15px;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 50px;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info.visible-part .address {
  margin-top: 0;
}
.rt-project-multi-layout-2 .project-item .project-content .project-info.hover-part {
  left: 40px;
  right: 40px;
  bottom: 50px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-2 .project-item .project-content .project-info.hover-part {
    left: 20px;
    right: 20px;
  }
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs:after {
  opacity: 0;
  visibility: hidden;
}
.rt-project-multi-layout-2 .project-item:hover .project-thumbs:before {
  opacity: 1;
  visibility: visible;
}
.rt-project-multi-layout-2 .project-item:hover .project-content .project-info.visible-part {
  opacity: 0;
  visibility: hidden;
}
.rt-project-multi-layout-2 .project-item:hover .project-content .project-info.hover-part {
  opacity: 1;
  bottom: 50%;
  visibility: visible;
  transform: translateY(50%);
}

/* ========== Layout 3 ========== */
.rt-project-multi-layout-3 .project-item .project-thumbs:before {
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  background-color: rgba(27, 202, 6, 0.9);
}
.rt-project-multi-layout-3 .project-item .project-thumbs .post-header {
  left: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  bottom: 50%;
  position: absolute;
  visibility: hidden;
  color: #ffffff;
  transition: all 0.5s linear;
  transform: translateY(50%);
  padding: 50px 50px 30px 50px;
}
.rt-project-multi-layout-3 .project-item .project-thumbs .post-header .address {
  color: #ffffff !important;
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-3 .project-item .project-thumbs .post-header {
    padding: 25px 25px 25px 25px;
  }
}
.rt-project-multi-layout-3 .project-item .project-thumbs .info-list {
  text-align: left;
  display: inline-flex;
  flex-flow: column;
  row-gap: 10px;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid #ffffff;
}
.rt-project-multi-layout-3 .project-item .project-thumbs .info-list li {
  font-weight: 600;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
  padding-left: 0;
  margin-top: 0;
}
.rt-project-multi-layout-3 .project-item .project-thumbs .info-list li:before {
  display: none;
}
.rt-project-multi-layout-3 .project-item .project-thumbs .info-list li label {
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-3 .project-item .project-thumbs .info-list li {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-3 .project-item .project-thumbs .info-list {
    row-gap: 0;
    margin-top: 5px;
    padding-top: 10px;
  }
}
.rt-project-multi-layout-3 .project-item .project-content {
  margin-top: 20px;
}
.rt-project-multi-layout-3 .project-item .rt-button {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.rt-project-multi-layout-3 .project-item .rt-button .btn {
  color: var(--rt-button-color);
  background-color: var(--rt-primary-color);
}
.rt-project-multi-layout-3 .project-item .rt-button .btn:hover {
  background-color: var(--rt-secondary-color);
}
.rt-project-multi-layout-3 .project-item .project-loc,
.rt-project-multi-layout-3 .project-item .project-cat {
  margin-top: 10px;
}
.rt-project-multi-layout-3 .project-item:hover .project-thumbs:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.rt-project-multi-layout-3 .project-item:hover .project-thumbs .post-header {
  opacity: 1;
  visibility: visible;
  padding: 50px;
}
@media screen and (max-width: 575px) {
  .rt-project-multi-layout-3 .project-item:hover .project-thumbs .post-header {
    padding: 30px 30px 30px 30px;
  }
}
.rt-project-multi-layout-3 .project-item:hover .rt-button {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

/* ========== Layout 4 ========== */
.rt-project-multi-layout-4 .project-item {
  overflow: hidden;
}
.rt-project-multi-layout-4 .project-item .project-thumbs {
  margin-bottom: 0;
}
.rt-project-multi-layout-4 .project-item .project-thumbs:before {
  content: "";
  height: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(var(--rt-secondary-rgb), 0.7) 10%, rgba(var(--rt-primary-rgb), 1) 100%);
  backdrop-filter: blur(5px);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: height 0.5s;
  z-index: 1;
}
.rt-project-multi-layout-4 .project-item .project-content {
  color: #ffffff;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -40%;
  z-index: 2;
  transition: all 0.7s ease;
  align-items: center;
}
.rt-project-multi-layout-4 .project-item .project-content .rt-button .button-2 i {
  color: var(--rt-heading-color);
}
.rt-project-multi-layout-4 .project-item .project-content .rt-button .button-2:before {
  background-color: #ffffff;
}
.rt-project-multi-layout-4 .project-item .project-title a {
  color: #ffffff;
}
.rt-project-multi-layout-4 .project-item .project-title a:hover {
  color: var(--rt-meta-color);
}
.rt-project-multi-layout-4 .project-item .project-loc,
.rt-project-multi-layout-4 .project-item .project-cat {
  margin-top: 10px;
}
.rt-project-multi-layout-4 .project-item .project-loc a,
.rt-project-multi-layout-4 .project-item .project-cat a {
  color: var(--rt-heading-color);
  background-color: var(--rt-white-bg-color);
}
.rt-project-multi-layout-4 .project-item .project-loc a:hover,
.rt-project-multi-layout-4 .project-item .project-cat a:hover {
  color: var(--rt-button-color);
  background-color: var(--rt-secondary-color);
}
.rt-project-multi-layout-4 .project-item:hover .project-thumbs:before {
  height: 100%;
}
.rt-project-multi-layout-4 .project-item:hover .project-content {
  bottom: 30px;
}

.rt-project-multi-layout-5 .project-item {
  overflow: hidden;
  text-align: center;
  height: 100%;
}
.rt-project-multi-layout-5 .project-item .project-thumbs {
  margin-bottom: 0;
  height: 100%;
}
.rt-project-multi-layout-5 .project-item .project-thumbs .post-thumbnail-wrap, .rt-project-multi-layout-5 .project-item .project-thumbs .post-thumbnail {
  height: 100%;
}
.rt-project-multi-layout-5 .project-item .project-thumbs img {
  height: 100%;
}
.rt-project-multi-layout-5 .project-item .project-thumbs:before {
  position: absolute;
  content: "";
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.7) 1.88%, rgba(255, 255, 255, 0.7) 99.38%);
  backdrop-filter: blur(25px);
  width: 100%;
  transition: 0.5s;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.rt-project-multi-layout-5 .project-item .project-loc,
.rt-project-multi-layout-5 .project-item .project-cat {
  margin-top: 10px;
}
.rt-project-multi-layout-5 .project-item .project-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.5s;
}
.rt-project-multi-layout-5 .project-item .rt-button {
  margin-top: 24px;
}
.rt-project-multi-layout-5 .project-item .rt-button .btn {
  border-radius: 50px;
  background: linear-gradient(180deg, var(--rt-primary-color) -8.33%, var(--rt-secondary-color) 100%);
}
.rt-project-multi-layout-5 .project-item:hover .project-thumbs:before {
  visibility: visible;
  opacity: 1;
}
.rt-project-multi-layout-5 .project-item:hover .project-content {
  opacity: 1;
  visibility: visible;
}
.rt-project-multi-layout-5 .item-gallery {
  display: grid;
  grid-gap: 24px;
  grid-template: "grid-item-1 grid-item-1 grid-item-4 grid-item-4 grid-item-5 grid-item-6" "grid-item-2 grid-item-3 grid-item-4 grid-item-4 grid-item-7 grid-item-7";
}
@media (max-width: 991px) {
  .rt-project-multi-layout-5 .item-gallery {
    grid-template: "grid-item-1 grid-item-1 grid-item-2 grid-item-2 grid-item-3 grid-item-3" "grid-item-2 grid-item-2 grid-item-5 grid-item-5 grid-item-6 grid-item-6" "grid-item-7 grid-item-7";
  }
}
@media (max-width: 576px) {
  .rt-project-multi-layout-5 .item-gallery {
    grid-template: "grid-item-1 grid-item-1 grid-item-1 grid-item-1 grid-item-1 grid-item-1" "grid-item-3 grid-item-3 grid-item-3 grid-item-3 grid-item-4 grid-item-4" "grid-item-5 grid-item-5 grid-item-5 grid-item-5 grid-item-6 grid-item-7" "grid-item-7 grid-item-7 grid-item-7 grid-item-7 grid-item-7 grid-item-7";
  }
}
.rt-project-multi-layout-5 .grid-item-1 {
  grid-area: grid-item-1;
}
.rt-project-multi-layout-5 .grid-item-2 {
  grid-area: grid-item-2;
}
.rt-project-multi-layout-5 .grid-item-3 {
  grid-area: grid-item-3;
}
.rt-project-multi-layout-5 .grid-item-4 {
  grid-area: grid-item-4;
}
.rt-project-multi-layout-5 .grid-item-5 {
  grid-area: grid-item-5;
}
.rt-project-multi-layout-5 .grid-item-6 {
  grid-area: grid-item-6;
}
.rt-project-multi-layout-5 .grid-item-7 {
  grid-area: grid-item-7;
}

.rt-project-multi-layout-6 .project-item {
  overflow: hidden;
  height: 100%;
}
.rt-project-multi-layout-6 .project-item .project-thumbs {
  margin-bottom: 0;
  height: 100%;
}
.rt-project-multi-layout-6 .project-item .project-thumbs .post-thumbnail-wrap,
.rt-project-multi-layout-6 .project-item .project-thumbs .post-thumbnail {
  height: 100%;
}
.rt-project-multi-layout-6 .project-item .project-thumbs img {
  height: 510px;
}
@media (max-width: 767px) {
  .rt-project-multi-layout-6 .project-item .project-thumbs img {
    height: 380px;
  }
}
.rt-project-multi-layout-6 .project-item .project-thumbs:before {
  content: "";
  height: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: height 0.5s;
  z-index: 1;
}
.rt-project-multi-layout-6 .project-item .project-content {
  color: #ffffff;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -60%;
  z-index: 2;
  transition: all 0.7s ease;
}
.rt-project-multi-layout-6 .project-item .project-title a {
  color: #ffffff;
}
.rt-project-multi-layout-6 .project-item .rt-button .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
}
.rt-project-multi-layout-6 .project-item .rt-button .btn:hover {
  border-color: var(--rt-primary-color);
}
.rt-project-multi-layout-6 .project-item:hover .project-thumbs:before {
  height: 100%;
}
.rt-project-multi-layout-6 .project-item:hover .project-content {
  bottom: 30px;
}

.rt-project-multi-layout-7 .project-item {
  overflow: hidden;
  height: 100%;
}
.rt-project-multi-layout-7 .project-item .project-thumbs {
  margin-bottom: 0;
  height: 100%;
}
.rt-project-multi-layout-7 .project-item .project-thumbs .post-thumbnail-wrap,
.rt-project-multi-layout-7 .project-item .project-thumbs .post-thumbnail {
  height: 380px;
}
.rt-project-multi-layout-7 .project-item .project-thumbs img {
  height: 100%;
}
.rt-project-multi-layout-7 .project-item .project-thumbs:before {
  content: "";
  height: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: height 0.5s;
  z-index: 1;
}
.rt-project-multi-layout-7 .project-item .project-content {
  color: #ffffff;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -60%;
  z-index: 2;
  transition: all 0.7s ease;
}
.rt-project-multi-layout-7 .project-item .project-title a {
  color: #ffffff;
}
.rt-project-multi-layout-7 .project-item .project-cat a {
  color: #ffffff;
}
.rt-project-multi-layout-7 .project-item .project-cat a:hover {
  color: var(--rt-primary-color);
}
.rt-project-multi-layout-7 .project-item .rt-button .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
}
.rt-project-multi-layout-7 .project-item:hover .project-thumbs:before {
  height: 100%;
}
.rt-project-multi-layout-7 .project-item:hover .project-content {
  bottom: 30px;
}

.rt-project-multi-layout-8 .project-item {
  overflow: hidden;
}
.rt-project-multi-layout-8 .project-item .project-thumbs {
  margin-bottom: 0;
}
.rt-project-multi-layout-8 .project-item .project-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  margin: 0 24px;
  padding: 20px;
  gap: 12px;
  z-index: 1;
}
.rt-project-multi-layout-8 .project-item .project-content:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  content: "";
  height: 140%;
  position: absolute;
  filter: blur(190px);
  background: #000000;
}
@media screen and (max-width: 480px) {
  .rt-project-multi-layout-8 .project-item .project-content:after {
    filter: blur(100px);
  }
}
.rt-project-multi-layout-8 .project-item .project-content .project-info {
  z-index: 1;
}
.rt-project-multi-layout-8 .project-item .project-title a {
  color: #ffffff;
}
.rt-project-multi-layout-8 .project-item .project-title a:hover {
  color: var(--rt-meta-color);
}
.rt-project-multi-layout-8 .project-item:hover .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.rt-isotope-wrapper.project-grid-layout-1 .project-item {
  border-radius: 10px;
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item .project-content {
  right: 0;
  bottom: 0;
  position: absolute;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  padding: 15px 30px;
  z-index: 0;
  background-color: var(--rt-body-bg-color);
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item .project-content:before {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  position: absolute;
  background-color: var(--rt-primary-color);
  transition: height 0.3s ease;
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item .project-content .project-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--rt-heading-color);
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item .project-content .project-title a {
  color: var(--rt-heading-color);
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item .project-content .address {
  margin-bottom: 0;
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item:hover .project-content:before {
  height: 100%;
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item:hover .project-content .project-title {
  color: var(--rt-button-color);
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item:hover .project-content .project-title a {
  color: var(--rt-button-color);
}
.rt-isotope-wrapper.project-grid-layout-1 .project-item:hover .project-content .address {
  color: var(--rt-button-color);
}

.rt-project-multi-layout-8 .project-item .project-content {
  bottom: 30px;
  flex-flow: column;
}
.rt-project-multi-layout-8 .project-item .project-content .rt-button .btn {
  width: auto;
  padding: 5px 28px;
  color: var(--rt-button-color);
}
.rt-project-multi-layout-8 .project-item .project-content .rt-button .btn i {
  font-size: 18px;
}
.rt-project-multi-layout-8 .project-item .project-content .rt-button .btn:hover i {
  transform: rotate(0) translateX(0) translateY(0);
}
.rt-project-multi-layout-8 .project-item:hover .project-content {
  bottom: 80px;
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-8 .swiper-slide .project-item .project-content .project-title {
    margin-bottom: 0;
  }
  .rt-project-multi-layout-8 .swiper-slide .project-item .project-content .project-excerpt,
  .rt-project-multi-layout-8 .swiper-slide .project-item .project-content .project-cat {
    display: none;
  }
}

.rt-project-multi-layout-9.project-grid-layout-14 .project-item {
  display: flex;
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-thumbs {
  width: 58%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-thumbs {
    width: 100%;
  }
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-content {
  top: 50%;
  right: 0;
  max-width: 650px;
  position: absolute;
  padding: 50px 55px 60px;
  transform: translateY(-50%);
  background-color: var(--rt-white-bg-color);
}
@media screen and (max-width: 1024px) {
  .rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-content {
    margin-top: 30px;
    position: relative;
    padding: 30px 35px 40px;
    transform: translateY(0);
  }
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-title {
  font-size: 32px;
  margin-bottom: 10px;
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-excerpt {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--rt-border-color-2);
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-9.project-grid-layout-14 .project-item .project-excerpt {
    display: none;
  }
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item .rt-button {
  margin-top: 30px;
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item .rt-button .btn {
  color: #ffffff;
  width: auto;
  height: auto;
  padding: 18px 25px;
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item.right-content .project-content {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-right: 3px solid var(--rt-primary-color);
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-9.project-grid-layout-14 .project-item.right-content .project-content {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-9.project-grid-layout-14 .project-item.right-content {
    align-items: flex-end;
  }
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item.left-content {
  justify-content: flex-end;
}
.rt-project-multi-layout-9.project-grid-layout-14 .project-item.left-content .project-content {
  left: 0;
  right: auto;
  border-left: 3px solid var(--rt-primary-color);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .rt-project-multi-layout-9.project-grid-layout-14 .project-item {
    flex-flow: column;
  }
}

.project-post-tab .tab-buttons {
  width: 100%;
  margin-bottom: 60px;
  display: inline-flex;
}
.project-post-tab.rt-tab-layout-1 .tab-buttons .tab-block-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 5px;
  padding: 10px 11px;
  border-radius: 6px;
  background-color: var(--rt-gray20);
}
.project-post-tab.rt-tab-layout-1 .tab-buttons .tab-block-tab {
  border: none;
  border-radius: 6px;
}
.project-post-tab.rt-tab-layout-1 .tab-buttons .tab-block-tab:before, .project-post-tab.rt-tab-layout-1 .tab-buttons .tab-block-tab:after {
  display: none;
}
.project-post-tab.rt-tab-layout-1 .tab-buttons .tab-block-tab.is-active {
  color: #ffffff;
  background-color: var(--rt-primary-color);
}
.project-post-tab.rt-tab-layout-1 .tab-block-content {
  border: none;
  padding: 0;
}
.project-post-tab.rt-tab-layout-1 .tab-block-content .address {
  margin-bottom: 0;
}
.project-post-tab.rt-tab-layout-3 .tab-buttons {
  width: auto;
}
.project-post-tab .project-grid-layout-1 .project-item {
  border-radius: 10px;
}
.project-post-tab .project-grid-layout-1 .project-item .project-content {
  right: 0;
  bottom: 0;
  position: absolute;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  padding: 20px 40px 20px 25px;
  z-index: 0;
  background-color: var(--rt-body-bg-color);
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.project-post-tab .project-grid-layout-1 .project-item .project-content:before {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  position: absolute;
  background-color: var(--rt-primary-color);
  transition: height 0.3s ease;
}
.project-post-tab .project-grid-layout-1 .project-item .project-content .project-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--rt-heading-color);
  margin-bottom: 5px;
}
.project-post-tab .project-grid-layout-1 .project-item .project-content .project-title a {
  color: var(--rt-heading-color);
}
.project-post-tab .project-grid-layout-1 .project-item .project-content .address {
  margin-bottom: 0;
}
.project-post-tab .project-grid-layout-1 .project-item .project-content .project-cat {
  margin-top: 14px;
}
.project-post-tab .project-grid-layout-1 .project-item:hover .project-content:before {
  height: 100%;
}
.project-post-tab .project-grid-layout-1 .project-item:hover .project-content .project-title {
  color: var(--rt-button-color);
}
.project-post-tab .project-grid-layout-1 .project-item:hover .project-content .project-title a {
  color: var(--rt-button-color);
}
.project-post-tab .project-grid-layout-1 .project-item:hover .project-content .address {
  color: var(--rt-button-color);
}
.project-post-tab .project-grid-layout-9 .project-item .project-thumbs,
.project-post-tab .project-grid-layout-9 .project-item .post-thumbnail {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.project-post-tab .project-grid-layout-9 .project-item .project-content {
  padding: 25px;
  position: relative;
  background-color: var(--rt-white-bg-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.project-post-tab .project-grid-layout-9 .project-item .project-content .project-info {
  z-index: 2;
  text-align: center;
}
.project-post-tab .project-grid-layout-9 .project-item .project-content:before {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
  position: absolute;
  background-color: var(--rt-primary-color);
  transition: height 0.3s ease;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.project-post-tab .project-grid-layout-9 .project-item .address {
  margin-bottom: 0;
  transition: all 220ms ease;
}
.project-post-tab .project-grid-layout-9 .project-item:hover .project-content {
  color: #ffffff;
}
.project-post-tab .project-grid-layout-9 .project-item:hover .project-content .project-title a {
  color: #ffffff;
}
.project-post-tab .project-grid-layout-9 .project-item:hover .project-content:before {
  height: 100%;
}

/* ============ Project Post Single Layouts ============ */
.project-single-page {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .project-single-page {
    padding-top: 80px;
    overflow: hidden;
  }
}
.project-single-page .project-content-info {
  gap: 30px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 991px) {
  .project-single-page .project-content-info {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
}
.project-single-page .project-single-item {
  margin-bottom: 30px;
}
.project-single-page .project-single-item .post-thumbnail-wrap {
  width: 58.3333%;
}
.project-single-page .project-single-item .post-thumbnail-wrap .post-thumbnail {
  border-radius: 6px;
}
.project-single-page .project-single-item .project-information {
  flex: 1;
  padding: 40px;
  display: flex;
  max-width: 600px;
  flex-flow: column;
  border: 1px solid var(--rt-border-color-2);
  justify-content: center;
  border-radius: 5px;
  background-color: var(--rt-body-bg-color);
}
@media screen and (max-width: 991px) {
  .project-single-page .project-single-item .project-information {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .project-single-page .project-single-item .project-information {
    top: 0;
    position: relative;
    margin-bottom: 20px;
  }
}
.project-single-page .project-single-item .project-information .info-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}
.project-single-page .project-single-item .project-information .address {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--rt-heading-color);
}
.project-single-page .project-single-item .project-information .address i {
  margin-right: 5px;
}
.project-single-page .project-single-item .project-information .project-status {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--rt-primary-color);
  text-transform: capitalize;
}
.project-single-page .project-single-item .info-list {
  row-gap: 30px;
  display: grid;
  margin-top: 10px;
}
.project-single-page .project-single-item .info-list li {
  color: var(--rt-body-color);
  display: inline-flex;
  flex-flow: column;
}
.project-single-page .project-single-item .info-list li label {
  font-size: 18px;
  font-weight: 700;
  color: var(--rt-heading-color);
}
@media screen and (max-width: 991px) {
  .project-single-page .project-single-item {
    margin-bottom: 0;
  }
  .project-single-page .project-single-item .post-thumbnail-wrap {
    width: auto;
    display: flex;
    justify-content: center;
  }
}

.project-details-amenities-wrapper {
  margin-top: 60px;
  margin-bottom: 30px;
}
.project-details-amenities-wrapper .amenities-list-image {
  display: flex;
  padding: 30px;
  align-items: center;
  border-radius: 20px;
  justify-content: space-between;
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-lists {
  width: 50%;
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-lists .main-title {
  margin-bottom: 30px;
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-lists .project-amenities {
  margin: 0;
  padding: 0;
  row-gap: 15px;
  list-style: none;
  flex-flow: column;
  display: inline-flex;
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-lists .project-amenities li {
  gap: 10px;
  font-size: 18px;
  display: inline-flex;
  color: var(--rt-heading-color);
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-lists .project-amenities li i {
  font-size: 22px;
  color: var(--rt-primary-color);
  display: inline-flex;
  align-items: flex-start;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .project-details-amenities-wrapper .amenities-list-image .project-amenities-lists .project-amenities li {
    font-size: 16px;
  }
  .project-details-amenities-wrapper .amenities-list-image .project-amenities-lists .project-amenities li i {
    font-size: 20px;
    margin-top: 5px;
  }
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-image {
  flex: 1;
  border-radius: 10px;
  display: inline-flex;
}
.project-details-amenities-wrapper .amenities-list-image .project-amenities-image img {
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .project-details-amenities-wrapper .amenities-list-image {
    flex-flow: column-reverse;
  }
  .project-details-amenities-wrapper .amenities-list-image .project-amenities-lists {
    width: 100%;
  }
  .project-details-amenities-wrapper .amenities-list-image .project-amenities-image {
    margin-bottom: 30px;
  }
}

.project-details-gallery-slider {
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
}
.project-details-gallery-slider img {
  border-radius: 10px;
}

.project-details-video-part {
  padding-top: 110px;
  margin-bottom: -385px;
}
.project-details-video-part .rt-video-icon {
  height: 777px;
  display: flex;
  justify-content: center;
  border-radius: 20px 20px 20px 20px;
}
.project-details-video-part .rt-video-icon .icon-box {
  transform: scale(1.6);
}
@media screen and (max-width: 767px) {
  .project-details-video-part {
    padding-top: 70px;
    margin-bottom: -200px;
  }
  .project-details-video-part .rt-video-icon {
    height: 400px;
  }
}

.project-details-contact-form {
  padding-top: 480px;
  padding-bottom: 100px;
  background-color: var(--rt-black-bg-color);
}
.project-details-contact-form .section-title-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.project-details-contact-form .section-title-wrapper .top-sub-title,
.project-details-contact-form .section-title-wrapper .main-title {
  color: #FFFFFF;
}
.project-details-contact-form .contact-form {
  max-width: 800px;
  margin: 0 auto;
}
.project-details-contact-form .ff-default .ff-el-form-control {
  line-height: 1;
  max-width: 100%;
  margin-bottom: 0;
  color: #ffffff;
  background-image: none;
  padding: 11px 0 !important;
  border-style: solid !important;
  border-color: #545454 !important;
  border-width: 0 0 1px 0 !important;
  background-color: transparent !important;
}
.project-details-contact-form .ff-default .ff-el-form-control:hover, .project-details-contact-form .ff-default .ff-el-form-control:focus {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.project-details-contact-form .fluentform .ff-el-group.ff_submit_btn_wrapper {
  text-align: center;
  margin-top: 20px;
}
.project-details-contact-form .fluentform .ff-el-group.ff_submit_btn_wrapper .ff-btn-submit:not(.ff_btn_no_style) {
  color: #ffffff;
  padding: 12px 30px;
  margin-top: 20px;
  background-color: var(--rt-primary-color);
  transition: all 220ms ease;
}
.project-details-contact-form .fluentform .ff-el-group.ff_submit_btn_wrapper .ff-btn-submit:not(.ff_btn_no_style):hover {
  color: #000000;
  background-color: #ffffff;
}

.rt-related-project {
  padding-top: 120px;
  padding-bottom: 120px;
}
.rt-related-project h2.related-title {
  font-size: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .rt-related-project {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .rt-related-project h2.related-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ========== Team Archive ========== */
.rt-team-default.swiper-navigation-bottom-left-right .rt-swiper-slider, .rt-team-default.swiper-navigation-bottom-center .rt-swiper-slider, .rt-team-default.swiper-navigation-bottom-right .rt-swiper-slider, .rt-team-default.swiper-navigation-bottom-left .rt-swiper-slider {
  padding-bottom: 85px;
}
.rt-team-default.swiper-navigation-top-left-right .swiper-navigation, .rt-team-default.swiper-navigation-top-center .swiper-navigation, .rt-team-default.swiper-navigation-top-right .swiper-navigation, .rt-team-default.swiper-navigation-top-left .swiper-navigation {
  top: 25px;
}
.rt-team-default.swiper-navigation-top-left-right .rt-swiper-slider, .rt-team-default.swiper-navigation-top-center .rt-swiper-slider, .rt-team-default.swiper-navigation-top-right .rt-swiper-slider, .rt-team-default.swiper-navigation-top-left .rt-swiper-slider {
  padding-top: 85px;
}
.rt-team-default.swiper-navigation-middle-left-right .swiper-navigation {
  margin-top: 0;
}
.rt-team-default .team-item {
  position: relative;
  transition: all 220ms ease;
  border-radius: 6px;
}
.rt-team-default .team-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-team-default .team-item .team-title {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 2px;
  position: relative;
}
.rt-team-default .team-item .team-title a {
  color: var(--rt-heading-color);
}
.rt-team-default .team-item .team-title a:hover {
  color: var(--rt-primary-color);
}
.rt-team-default .team-item .team-designation {
  font-size: 18px;
  color: var(--rt-body-color);
}
.rt-team-default .team-item p {
  margin-top: 8px;
}
.rt-team-default .team-item:hover .team-thumbs img {
  transform: scale(1.05);
  border-radius: 0;
}
.rt-team-default .team-thumbs {
  position: relative;
}
.rt-team-default .team-thumbs .post-thumbnail-wrap .post-thumbnail {
  border-radius: 0;
}
.rt-team-default .team-thumbs img {
  transition: all 220ms ease;
}

.rt-team-multi-layout-1 .team-item {
  border-radius: 6px;
  overflow: hidden;
}
.rt-team-multi-layout-1 .team-item .team-content {
  left: 0;
  right: 0;
  bottom: 20px;
  padding: 20px;
  text-align: center;
  background-color: var(--rt-gray-color);
  border-top: 2px solid var(--rt-primary-color);
}
.rt-team-multi-layout-1 .team-social-wrap {
  gap: 6px;
  bottom: 5%;
  right: 5%;
  position: absolute;
  display: inline-flex;
  align-items: center;
  flex-flow: column;
}
.rt-team-multi-layout-1 .team-social-wrap .share-btn {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  justify-content: center;
  background-color: rgba(var(--rt-body-rgb), 0.5);
}
.rt-team-multi-layout-1 .team-social-wrap .share-btn i {
  font-size: 20px;
}
.rt-team-multi-layout-1 .team-social-wrap .share-btn:hover {
  color: var(--rt-primary-color);
  background-color: #ffffff;
}
.rt-team-multi-layout-1 .team-social-wrap .team-social {
  gap: 5px;
  flex-flow: column;
  display: inline-flex;
  flex-direction: column-reverse;
}
.rt-team-multi-layout-1 .team-social-wrap .team-social li {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 220ms ease;
  line-height: 1;
}
.rt-team-multi-layout-1 .team-social-wrap .team-social li .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  transition: all 0.21s ease-in-out;
  color: #ffffff;
  background-color: #111111;
}
.rt-team-multi-layout-1 .team-social-wrap .team-social li .social-link i {
  display: block;
  font-size: 18px;
  transition: all 0.21s ease-in-out;
}
.rt-team-multi-layout-1 .team-social-wrap .team-social li .social-link i.icon-rt-twitter-1 {
  font-size: 18px;
}
.rt-team-multi-layout-1 .team-social-wrap .team-social li .social-link:hover {
  background-color: var(--rt-primary-color);
}
.rt-team-multi-layout-1 .team-social-wrap .team-social li .social-link:hover i {
  transform: scale(1.3);
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li:nth-child(1) {
  transition-delay: 0.1s;
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li:nth-child(2) {
  transition-delay: 0.2s;
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li:nth-child(3) {
  transition-delay: 0.3s;
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li:nth-child(4) {
  transition-delay: 0.4s;
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li:nth-child(5) {
  transition-delay: 0.5s;
}
.rt-team-multi-layout-1 .team-social-wrap:hover .team-social li:nth-child(6) {
  transition-delay: 0.6s;
}

.rt-team-multi-layout-2 .team-item {
  overflow: hidden;
  border-radius: 20px;
}
.rt-team-multi-layout-2 .team-item .post-thumbnail:after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.44%, rgba(0, 0, 0, 0.9) 100%);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.rt-team-multi-layout-2 .team-item .team-title a {
  color: #ffffff;
}
.rt-team-multi-layout-2 .team-item .team-title a:hover {
  color: var(--rt-primary-color);
}
.rt-team-multi-layout-2 .team-item .team-designation {
  color: #ffffff;
}
.rt-team-multi-layout-2 .team-item .team-content {
  padding: 12px 18px;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.rt-team-multi-layout-2 .team-item:hover .post-thumbnail img {
  filter: grayscale(0);
}

.rt-team-multi-layout-3 .team-item {
  text-align: center;
}
.rt-team-multi-layout-3 .team-item .team-thumbs {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 20px;
}
.rt-team-multi-layout-3 .team-item:hover .team-thumbs img {
  filter: grayscale(1);
}

.rt-team-multi-layout-4 .team-item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 15px;
  border: 1px solid var(--rt-border-color);
  overflow: hidden;
}
.rt-team-multi-layout-4 .team-item .team-thumbs {
  overflow: hidden;
  border-radius: 10px;
}
.rt-team-multi-layout-4 .team-item .team-content {
  background-color: var(--rt-body-bg-color);
  border-radius: 0 10px 10px 10px;
  margin-right: 30px;
  margin-top: -30px;
  padding: 15px 24px;
  position: relative;
  left: 0;
  bottom: 0;
  transition: all 220ms ease;
}
.rt-team-multi-layout-4 .team-item .team-social {
  position: unset;
  transform: unset;
  margin-top: 12px;
}
.rt-team-multi-layout-4 .team-item .team-social li {
  opacity: 1;
  visibility: visible;
  transform: unset;
}
.rt-team-multi-layout-4 .team-item .team-social li .social-link {
  border-radius: 6px;
}
.rt-team-multi-layout-4 .team-item:hover .team-content {
  bottom: 12px;
}

.rt-team-multi-layout-5 .team-item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--rt-border-color);
  overflow: hidden;
}
.rt-team-multi-layout-5 .team-item .team-thumbs {
  overflow: hidden;
  border-radius: 10px;
}
.rt-team-multi-layout-5 .team-item .team-content {
  padding: 15px 0 0;
  position: relative;
  left: 0;
  bottom: 0;
  transition: all 220ms ease;
}
.rt-team-multi-layout-5 .team-item ul.share {
  position: absolute;
  right: 0;
  bottom: 5px;
}
.rt-team-multi-layout-5 .team-item ul.share .share-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border: 1px solid var(--rt-border-color);
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(1) {
  opacity: 1;
  visibility: visible;
  top: -50px;
  transform: rotate(0deg);
  transition-delay: 0.08s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(2) {
  opacity: 1;
  visibility: visible;
  top: -100px;
  transform: rotate(0deg);
  transition-delay: 0.16s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(3) {
  opacity: 1;
  visibility: visible;
  top: -150px;
  transform: rotate(0deg);
  transition-delay: 0.24s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(4) {
  opacity: 1;
  visibility: visible;
  top: -200px;
  transform: rotate(0deg);
  transition-delay: 0.32s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(5) {
  opacity: 1;
  visibility: visible;
  top: -250px;
  transform: rotate(0deg);
  transition-delay: 0.4s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(6) {
  opacity: 1;
  visibility: visible;
  top: -300px;
  transform: rotate(0deg);
  transition-delay: 0.48s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(7) {
  opacity: 1;
  visibility: visible;
  top: -350px;
  transform: rotate(0deg);
  transition-delay: 0.56s;
}
.rt-team-multi-layout-5 .team-item ul.share li:hover .team-social li:nth-child(8) {
  opacity: 1;
  visibility: visible;
  top: -400px;
  transform: rotate(0deg);
  transition-delay: 0.64s;
}
.rt-team-multi-layout-5 .team-item .team-social {
  position: unset;
  transform: unset;
}
.rt-team-multi-layout-5 .team-item .team-social li {
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.rt-team-multi-layout-5 .team-item .team-social li .social-link {
  width: 45px;
  height: 45px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  border-radius: 36px;
  justify-content: center;
  transition: all 0.21s ease-in-out;
  background-color: #111111;
}
.rt-team-multi-layout-5 .team-item .team-social li .social-link i {
  display: block;
  transition: all 0.21s ease-in-out;
}
.rt-team-multi-layout-5 .team-item .team-social li .social-link:hover {
  color: #ffffff;
  background-color: var(--rt-primary-color);
}
.rt-team-multi-layout-5 .team-item .team-social li .social-link:hover i {
  transform: scale(1.3);
}
.rt-team-multi-layout-5 .team-item:hover .team-social li {
  opacity: 0;
  visibility: hidden;
}

.rt-team-multi-layout-4 .team-social,
.rt-team-multi-layout-3 .team-social,
.rt-team-multi-layout-2 .team-social {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
}
.rt-team-multi-layout-4 .team-social li,
.rt-team-multi-layout-3 .team-social li,
.rt-team-multi-layout-2 .team-social li {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 220ms ease;
  line-height: 1;
}
.rt-team-multi-layout-4 .team-social li .social-link,
.rt-team-multi-layout-3 .team-social li .social-link,
.rt-team-multi-layout-2 .team-social li .social-link {
  width: 45px;
  height: 45px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  border-radius: 36px;
  justify-content: center;
  transition: all 0.21s ease-in-out;
  background-color: #111111;
}
.rt-team-multi-layout-4 .team-social li .social-link i,
.rt-team-multi-layout-3 .team-social li .social-link i,
.rt-team-multi-layout-2 .team-social li .social-link i {
  display: block;
  transition: all 0.21s ease-in-out;
}
.rt-team-multi-layout-4 .team-social li .social-link:hover,
.rt-team-multi-layout-3 .team-social li .social-link:hover,
.rt-team-multi-layout-2 .team-social li .social-link:hover {
  color: #ffffff;
  background-color: var(--rt-primary-color);
}
.rt-team-multi-layout-4 .team-social li .social-link:hover i,
.rt-team-multi-layout-3 .team-social li .social-link:hover i,
.rt-team-multi-layout-2 .team-social li .social-link:hover i {
  transform: scale(1.3);
}
.rt-team-multi-layout-4 .team-item:hover .team-social li,
.rt-team-multi-layout-3 .team-item:hover .team-social li,
.rt-team-multi-layout-2 .team-item:hover .team-social li {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.rt-team-multi-layout-4 .team-item:hover .team-social li:nth-child(1),
.rt-team-multi-layout-3 .team-item:hover .team-social li:nth-child(1),
.rt-team-multi-layout-2 .team-item:hover .team-social li:nth-child(1) {
  transition-delay: 0.1s;
}
.rt-team-multi-layout-4 .team-item:hover .team-social li:nth-child(2),
.rt-team-multi-layout-3 .team-item:hover .team-social li:nth-child(2),
.rt-team-multi-layout-2 .team-item:hover .team-social li:nth-child(2) {
  transition-delay: 0.2s;
}
.rt-team-multi-layout-4 .team-item:hover .team-social li:nth-child(3),
.rt-team-multi-layout-3 .team-item:hover .team-social li:nth-child(3),
.rt-team-multi-layout-2 .team-item:hover .team-social li:nth-child(3) {
  transition-delay: 0.3s;
}
.rt-team-multi-layout-4 .team-item:hover .team-social li:nth-child(4),
.rt-team-multi-layout-3 .team-item:hover .team-social li:nth-child(4),
.rt-team-multi-layout-2 .team-item:hover .team-social li:nth-child(4) {
  transition-delay: 0.4s;
}
.rt-team-multi-layout-4 .team-item:hover .team-social li:nth-child(5),
.rt-team-multi-layout-3 .team-item:hover .team-social li:nth-child(5),
.rt-team-multi-layout-2 .team-item:hover .team-social li:nth-child(5) {
  transition-delay: 0.5s;
}
.rt-team-multi-layout-4 .team-item:hover .team-social li:nth-child(6),
.rt-team-multi-layout-3 .team-item:hover .team-social li:nth-child(6),
.rt-team-multi-layout-2 .team-item:hover .team-social li:nth-child(6) {
  transition-delay: 0.6s;
}
.rt-team-multi-layout-4 .team-item:hover .team-thumbs img,
.rt-team-multi-layout-3 .team-item:hover .team-thumbs img,
.rt-team-multi-layout-2 .team-item:hover .team-thumbs img {
  transform: scale(1.05);
}

/* ========== Team Songle ========== */
.team-single-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-single-item .team-single-wrap.team-thumb-order-1 {
  order: 1;
}
@media (min-width: 992px) {
  .team-single-item .team-single-wrap.team-thumb-order-1 .team-single-content-wrap {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .team-single-item .team-single-wrap.team-thumb-order-1 .team-single-content-wrap {
    padding-top: 40px;
  }
}
.team-single-item .team-single-wrap.team-thumb-order-2 .order-2 {
  order: 2;
}
@media (min-width: 992px) {
  .team-single-item .team-single-wrap.team-thumb-order-2 .team-single-content-wrap {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .team-single-item .team-single-wrap.team-thumb-order-2 .team-single-content-wrap {
    padding-bottom: 50px;
  }
}
.team-single-item .team-single-image img {
  width: 100%;
}
.team-single-item .team-thumb-square img {
  border-radius: 12px;
}
.team-single-item .team-thumb-round {
  text-align: center;
  border-radius: 100%;
}
.team-single-item .team-thumb-round img {
  border-radius: 100%;
}
.team-single-item .entry-title {
  font-size: clamp(30px, 4vw, 36px);
  line-height: 1;
  margin-bottom: 12px;
}
.team-single-item .designation {
  display: block;
  color: var(--rt-body-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.team-single-item .team-single-content-wrap .team-heading {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rt-border-color-2);
}
.team-single-item .team-single-content-wrap h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.4;
}
.team-single-item .team-single-content-wrap .team-info {
  width: 100%;
  margin-top: 12px;
  display: inline-flex;
}
.team-single-item .team-single-content-wrap .team-info ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.team-single-item .team-single-content-wrap .team-info ul li {
  display: inline-flex;
  margin-right: 0;
  margin-bottom: 10px;
  color: var(--rt-body-color);
  flex: 0 0 48%;
  box-sizing: border-box;
  flex-flow: column;
}
.team-single-item .team-single-content-wrap .team-info ul li .team-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--rt-heading-color);
}
.team-single-item .team-single-content-wrap .team-info ul li a {
  color: var(--rt-body-color);
}
.team-single-item .team-single-content-wrap .team-info ul li a:hover {
  color: var(--rt-primary-color);
}
.team-single-item .team-single-content-wrap .team-info ul li i {
  height: 45px;
  width: 45px;
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .team-single-item .team-single-content-wrap .team-info ul li {
    float: unset;
    width: 100%;
  }
}
.team-single-item .team-single-content-wrap .team-info ul li:last-child {
  margin-bottom: 0;
}
.team-single-item .team-single-content-wrap .team-info ul .team-label {
  color: var(--rt-heading-color);
}
.team-single-item .team-social-wrap {
  gap: 20px;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
.team-single-item .team-social-wrap .team-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--rt-heading-color);
}
.team-single-item .team-social-wrap ul {
  row-gap: 5px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: inline-flex;
}
.team-single-item .team-social-wrap ul li a {
  font-size: 18px;
  width: 45px;
  height: 45px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rt-heading-color);
  border-radius: 100%;
  border: 1px solid var(--rt-border-color-2);
}
.team-single-item .team-social-wrap ul li a i.icon-rt-twitter-1 {
  font-size: 16px;
}
.team-single-item .team-social-wrap ul li a i.icon-rt-pinterest-2 {
  font-size: 20px;
}
.team-single-item .team-social-wrap ul li a:hover {
  color: #ffffff;
  border-color: var(--rt-primary-color);
  background-color: var(--rt-primary-color);
}
.team-single-item .rt-skill-wrap {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--rt-border-color-2);
}
.team-single-item .rt-skill-wrap .rt-skill-each {
  margin-top: 15px;
}
.team-single-item .rt-skill-wrap .rt-name {
  color: var(--rt-heading-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.team-single-item .rt-skill-wrap .progress-item {
  padding: 6px;
  border-radius: 3px;
  border: 1px solid #C8C8C8;
}
.team-single-item .rt-skill-wrap .progress {
  height: 10px;
  position: relative;
  border-radius: 2px;
  background-color: #E6E6E6;
}
.team-single-item .rt-skill-wrap .progress-bar {
  position: relative;
  height: 10px;
  width: 0;
  background-color: var(--rt-primary-color);
  border-radius: 100px;
  transition: 2s linear;
}
.team-single-item .rt-skill-wrap .progress-bar span {
  font-size: 16px;
  font-weight: 500;
  color: var(--rt-heading-color);
  position: absolute;
  right: 0;
  top: -28px;
  padding-bottom: 10px;
  line-height: 1;
}
.team-single-item .rt-skill-wrap .progress-bar:before {
  content: attr(data-per);
  position: absolute;
  font-size: 17px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--rt-heading-color);
  bottom: 25px;
  right: 0;
}
.team-single-item .rt-skill-wrap .progress-bar:after {
  right: 0;
  top: -6px;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50px;
  position: absolute;
  border: 2px solid #ffffff;
  background-color: var(--rt-primary-color);
}
.team-single-item .rt-education-wrap,
.team-single-item .rt-award-wrap {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--rt-border-color-2);
}
.team-single-item .rt-education-wrap .team-label,
.team-single-item .rt-award-wrap .team-label {
  font-size: 24px;
  line-height: 1.4;
  position: relative;
  margin-bottom: 25px;
}
.team-single-item .rt-education-wrap ul,
.team-single-item .rt-award-wrap ul {
  display: flex;
  row-gap: 12px;
  flex-flow: column;
}
.team-single-item .rt-education-wrap ul li,
.team-single-item .rt-award-wrap ul li {
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
  display: inline-flex;
}
.team-single-item .rt-education-wrap ul li .icon,
.team-single-item .rt-award-wrap ul li .icon {
  font-size: 24px;
  color: var(--rt-primary-color);
}
.team-single-item .rt-education-wrap ul li:after,
.team-single-item .rt-award-wrap ul li:after {
  left: 11px;
  top: 39px;
  width: 2px;
  content: "";
  height: 40px;
  position: absolute;
  background-color: #D9D9D9;
}
.team-single-item .rt-education-wrap ul li:last-child:after,
.team-single-item .rt-award-wrap ul li:last-child:after {
  display: none;
}
.team-single-item .rt-education-wrap ul li .team-education-title,
.team-single-item .rt-education-wrap ul li .team-award-title,
.team-single-item .rt-award-wrap ul li .team-education-title,
.team-single-item .rt-award-wrap ul li .team-award-title {
  font-size: 22px;
  color: var(--rt-heading-color);
  font-weight: 500;
  margin-bottom: 5px;
}
.team-single-item .rt-education-wrap .rt-name,
.team-single-item .rt-award-wrap .rt-name {
  color: var(--rt-heading-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.team-single-item .rt-award-wrap ul li .icon {
  font-size: 32px;
}

.team-contact-form {
  background-color: var(--rt-gray20);
  border-radius: 20px;
  margin-top: 40px;
  padding: 40px;
}
.team-contact-form .frm-fluent-form .ff-el-input--label {
  display: none;
}
.team-contact-form .frm-fluent-form .ff-el-form-control {
  border: 1px solid #ffffff;
  font-size: 15px;
  height: 54px;
}
.team-contact-form .frm-fluent-form .ff-el-form-control:focus {
  border: 1px solid var(--rt-primary-color);
  outline: none;
  box-shadow: unset;
}
.team-contact-form .frm-fluent-form .ff-btn-submit {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-color);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 38px;
  letter-spacing: 0.5px;
}
.team-contact-form .frm-fluent-form .ff-btn-submit:hover {
  background-color: var(--rt-primary-color);
  color: var(--rt-button-text-color);
}

.rt-related-team {
  margin-top: 60px;
}
.rt-related-team .related-title {
  font-size: 30px;
  margin-bottom: 26px;
}

/* ========= Search Result Page ========= */
.rt-search-wrap {
  background: var(--rt-white-bg-color);
  border-radius: 5px;
  padding: 60px;
  margin-bottom: 40px;
}
.rt-search-wrap .category-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.rt-search-wrap .category-list li {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}
.rt-search-wrap .category-list li i {
  font-size: 12px;
  position: relative;
  top: -1px;
}
.rt-search-wrap .category-list li + li {
  margin-left: 15px;
}
.rt-search-wrap .category-list li a {
  display: block;
  height: 42px;
  border-radius: 5px;
  border: 1px solid var(--rt-border-color-3);
  padding: 0 18px;
  line-height: 40px;
  color: var(--rt-primary-color);
  transition: 0.3s;
  background: #ffffff;
}
.rt-search-wrap .category-list li a:hover {
  border-color: var(--rt-primary-color);
  background: var(--rt-primary-color);
  color: #ffffff;
}
.rt-search-wrap .search-title {
  font-size: 40px;
  margin: 0 0 22px;
}
.rt-search-wrap .search-form-wrapper {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.rt-search-wrap .search-form-wrapper input {
  width: 100%;
  height: 60px;
  padding: 0 50px;
  border-radius: 80px;
  background: var(--rt-white-bg-color);
  border: 1px solid var(--rt-border-color-3);
}
.rt-search-wrap .search-form-wrapper .icon-rt-search,
.rt-search-wrap .search-form-wrapper .search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.rt-search-wrap .search-form-wrapper .icon-rt-search {
  left: 30px;
}
.rt-search-wrap .search-form-wrapper .search-submit {
  right: 8px;
  height: 44px;
  color: #ffffff;
  border-radius: 60px;
  font-size: 16px;
  width: 120px;
  text-align: center;
  transition: 0.3s;
  line-height: 40px;
  padding: 0;
  font-weight: 500;
}
.rt-search-wrap .search-form-wrapper .search-submit:hover {
  opacity: 0.8;
}

body.search-no-results .typiq-breadcrumb-wrapper,
body.search-no-results .entry-breadcrumb,
body.search-no-results .no-results {
  text-align: center;
}
body.search-no-results .rt-search-wrap {
  display: none;
}

.search-results .search-result-page {
  margin-top: 60px;
}
.search-results .typiq-breadcrumb-wrapper {
  display: none;
}
.search-results typiq-breadcrumb-wrapper {
  text-align: center;
}

@media (max-width: 1024px) {
  .moving-shape-wrap {
    text-align: center;
  }
}

.about-round-box {
  position: relative;
  height: 145px;
  width: 145px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.about-round-box svg {
  position: relative;
  top: 3px;
}

.moving-shape-box i {
  font-size: 20px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transform: rotate(-46deg);
}
.moving-shape-box .about-shape {
  height: 124px;
  width: 124px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translateY(-50%) translateX(-50%);
}
.moving-shape-box .about-shape .shape {
  animation-duration: 15s;
}

/*===============================
Section Title
================================*/
.elementor-section-wrap {
  overflow: hidden;
}

.section-title-wrapper {
  position: relative;
  z-index: 1;
}
.section-title-wrapper .top-sub-title-wrap {
  display: block;
}
.section-title-wrapper .top-sub-title {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 1px;
  color: var(--rt-heading-color);
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 10px;
}
.section-title-wrapper .top-sub-title i {
  animation: 3s linear 0s infinite normal none running spin;
}
.section-title-wrapper .top-sub-title.left-right-shape {
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  background: linear-gradient(111deg, var(--rt-primary-color) 19.42%, var(--rt-secondary-color) 73.08%);
  padding: 4px 24px;
  color: #ffffff;
}
.section-title-wrapper .top-sub-title.left-right-line {
  position: relative;
}
.section-title-wrapper .top-sub-title.left-right-line:before {
  left: 0;
  width: 30px;
  height: 2px;
  content: "";
  background-color: var(--rt-black-bg-color);
}
.section-title-wrapper .main-title {
  font-size: 40px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.section-title-wrapper .main-title .has-animation {
  width: 0;
  right: 0;
  top: 40px;
  line-height: 1;
  position: absolute;
}
.section-title-wrapper .main-title .active-animation {
  width: auto;
  stroke-dasharray: 770;
  animation: Rtdraw 1s reverse;
}
.section-title-wrapper .main-title path {
  stroke: var(--rt-primary-color);
}
.section-title-wrapper .main-title span {
  font-weight: 400;
  color: transparent;
  font-family: Sans-serif;
  stroke: var(--rt-heading-color);
  display: inline-flex;
  -webkit-text-stroke-color: var(--rt-heading-color);
}
.section-title-wrapper .main-title img.spin {
  animation: spin 15s linear infinite;
}
@media screen and (max-width: 767px) {
  .section-title-wrapper .main-title {
    font-size: 32px;
  }
}
.section-title-wrapper .title-gradient {
  background: linear-gradient(90deg, var(--rt-heading-color) 7.83%, var(--rt-primary-color) 46.69%, var(--rt-secondary-color) 92.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 100%;
}
.section-title-wrapper .title-gradient-animation {
  animation: gradient 5s ease infinite;
}
.section-title-wrapper .line-shape {
  padding-bottom: 5px;
}
.section-title-wrapper .line-shape:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--rt-primary-color);
  z-index: -1;
  transition: all ease 1s;
}
.section-title-wrapper .line-shape.center:after {
  right: 0;
  margin: 0 auto;
}
.section-title-wrapper .line-shape.right:after {
  left: auto;
  right: 0;
}
.section-title-wrapper .line-shape.active-animation:after {
  width: 40px;
}
.section-title-wrapper .baseline img {
  vertical-align: baseline;
}
.section-title-wrapper .middle img {
  vertical-align: middle;
  padding-left: 6px;
  padding-right: 6px;
}
.section-title-wrapper .bottom img {
  vertical-align: bottom;
}
.section-title-wrapper .description {
  color: var(--rt-body-color);
  font-size: 16px;
}
.section-title-wrapper .description p {
  opacity: 1 !important;
  margin-bottom: 15px;
}
.section-title-wrapper ul.feature-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  text-align: left;
}
@media (min-width: 768px) {
  .section-title-wrapper ul.feature-list.two-column li {
    width: 50%;
    float: left;
  }
}
.section-title-wrapper .list-layout-1 li {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--rt-heading-color);
}
.section-title-wrapper .list-layout-1 li .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 100%;
  color: #111111;
  background-color: var(--rt-primary-color);
}
.section-title-wrapper .list-layout-2 li {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--rt-heading-color);
}
.section-title-wrapper .list-layout-2 li .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 30px;
  height: 30px;
  margin-right: 9px;
  border-radius: 100%;
  color: var(--rt-primary-color);
  border: 1px solid var(--rt-border-color);
  background-color: var(--rt-body-bg-color);
}

.rt-animated-headline .ah-words-wrapper p {
  margin-bottom: 0;
}
.rt-animated-headline .ah-headline.clip .ah-words-wrapper:after {
  content: "";
  position: absolute;
  top: auto;
  right: 10px;
  width: 100%;
  height: 2px;
  background-color: var(--rt-primary-color);
  bottom: 0;
  margin: auto 0;
}

@media (max-width: 991px) {
  .section-title-wrapper .description br,
  .section-title-wrapper .main-title br {
    display: none;
  }
}
.rt-swiper-hero-slider {
  overflow: hidden;
}

.rt-hero-slider .sub-title {
  position: relative;
  display: inline-block;
  color: var(--rt-primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
  z-index: 1;
  overflow: hidden;
}
.rt-hero-slider .sub-title i, .rt-hero-slider .sub-title svg {
  display: inline-block;
  margin-right: 7px;
}
.rt-hero-slider .slider-title {
  position: relative;
  font-size: 100px;
  color: var(--rt-heading-color);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
}
.rt-hero-slider .slider-title span {
  font-size: 50px;
}
.rt-hero-slider .slider-price {
  display: inline-flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-bottom: 35px;
}
.rt-hero-slider .slider-price .regular-price {
  color: var(--rt-meta-color2);
  font-size: 24px;
  text-decoration: line-through;
}
.rt-hero-slider .slider-price .sale-price {
  color: var(--rt-heading-color);
  font-size: 36px;
  font-weight: 600;
}
.rt-hero-slider .slider-text {
  color: var(--rt-body-color);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .rt-hero-slider .slider-text br {
    display: none;
  }
}
.rt-hero-slider .line-shape:after {
  position: absolute;
  content: "";
  bottom: 3px;
  left: 0;
  width: 0;
  height: 12px;
  background-color: var(--rt-primary-color);
  z-index: -1;
}
.rt-hero-slider .line-shape.active-animation:after {
  width: 100px;
}
.rt-hero-slider .swiper-pagination-1 {
  position: absolute;
  margin-top: 0;
  -moz-column-gap: 10px;
       column-gap: 10px;
  right: auto;
  left: auto;
  bottom: 120px !important;
  justify-content: center;
}
.rt-hero-slider .swiper-pagination-1 .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  text-align: left;
  font-size: 24px;
  color: #ffffff;
  background: #ffffff !important;
  transition: all 1s ease;
  border-radius: 100%;
  opacity: 0.4;
}
.rt-hero-slider .swiper-pagination-1 .swiper-pagination-bullet:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  border-radius: 100%;
  transition: all 0.7s ease;
}
.rt-hero-slider .swiper-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #ffffff;
  opacity: 1;
}
.rt-hero-slider .swiper-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #ffffff;
}
.rt-hero-slider .swiper-pagination-2 {
  position: absolute;
  margin-top: 0;
  gap: 15px;
  right: 0;
  left: auto !important;
  top: 50%;
  transform: translateY(-50%);
  width: 70px !important;
  flex-direction: column;
}
.rt-hero-slider .swiper-pagination-2 .swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: auto;
  text-align: left;
  font-size: 24px;
  color: var(--rt-meta-color2);
  background: transparent !important;
  transition: all 1s ease;
}
.rt-hero-slider .swiper-pagination-2 .swiper-pagination-bullet:after {
  position: absolute;
  width: 0;
  top: 13px;
  content: "";
  height: 2px;
  right: -20px;
  transition: all 0.3s ease;
  background-color: var(--rt-heading-color);
}
.rt-hero-slider .swiper-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #ffffff;
}
.rt-hero-slider .swiper-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 24px;
  background-color: #ffffff;
}
.rt-hero-slider .swiper-pagination-3 {
  position: absolute;
  margin-top: 0;
  -moz-column-gap: 10px;
       column-gap: 10px;
  bottom: 60px !important;
  right: 0;
  left: auto !important;
  justify-content: center;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet {
  position: relative;
  width: 50px;
  height: auto;
  text-align: left;
  font-size: 24px;
  color: #ffffff;
  background: transparent !important;
  transition: all 1s ease;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet:after {
  position: absolute;
  content: "";
  right: -7px;
  top: 13px;
  width: 0;
  height: 2px;
  background-color: var(--rt-primary-color);
  transition: all 0.7s ease;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet:last-child:before {
  position: absolute;
  content: "";
  left: -7px;
  top: 13px;
  right: auto;
  width: 0;
  height: 2px;
  background-color: var(--rt-primary-color);
  transition: all 0.7s ease;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--rt-primary-color);
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 24px;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active {
  text-align: right;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active:after {
  display: none;
}
.rt-hero-slider .swiper-pagination-3 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active:before {
  width: 24px;
}
.rt-hero-slider .swiper-pagination-4 {
  position: absolute;
  margin-top: 0;
  gap: 15px;
  right: 0;
  left: auto !important;
  top: 50%;
  transform: translateY(-50%);
  width: 55px !important;
  max-height: -moz-max-content;
  max-height: max-content;
  height: 100%;
  flex-direction: column-reverse;
  align-items: center;
  background-color: var(--rt-white-bg-color);
  padding: 25px 0;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: auto;
  text-align: left;
  font-size: 24px;
  color: var(--rt-meta-color2);
  background: transparent !important;
  transform: rotate(-90deg);
  transition: all 1s ease;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet:after {
  position: absolute;
  content: "";
  right: 12px;
  top: 13px;
  width: 0;
  height: 2px;
  background-color: var(--rt-heading-color);
  transition: all 0.7s ease;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet:last-child:before {
  position: absolute;
  content: "";
  left: 3px;
  top: 13px;
  right: auto;
  width: 0;
  height: 2px;
  background-color: var(--rt-heading-color);
  transition: all 0.7s ease;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 60px;
  color: var(--rt-heading-color);
  margin-bottom: 15px;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 20px;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active {
  margin-bottom: 15px;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active {
  text-align: right;
  margin-top: 15px;
  margin-bottom: 0;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active:after {
  display: none;
}
.rt-hero-slider .swiper-pagination-4 .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active:before {
  width: 20px;
}

.single-slider {
  position: relative;
}
.single-slider:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
}

.rt-hero-slider-layout-1 .swiper-slide {
  overflow: hidden;
}
.rt-hero-slider-layout-1 .img-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.rt-hero-slider-layout-1 .img-container svg {
  position: absolute;
  bottom: 0;
}
.rt-hero-slider-layout-1 .hero-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.rt-hero-slider-layout-1 .slider-content {
  position: relative;
  z-index: 9;
}
.rt-hero-slider-layout-1 .single-slider {
  height: 720px;
  display: flex;
  align-items: center;
}
.rt-hero-slider-layout-1 .swiper-navigation {
  position: absolute;
  right: 100px;
  bottom: 100px;
}
.rt-hero-slider-layout-1 .swiper-navigation .swiper-button {
  border: none;
  top: unset;
  margin-top: 0;
  bottom: 0;
}
.rt-hero-slider-layout-1 .swiper-navigation .swiper-button.swiper-button-prev {
  left: auto;
  right: 51px;
}
.rt-hero-slider-layout-1 .swiper-navigation .swiper-button.swiper-button-next {
  left: auto;
  right: 0;
}
@media screen and (max-width: 767px) {
  .rt-hero-slider-layout-1.rt-hero-slider .swiper-pagination-1 .swiper-pagination-bullet {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .rt-hero-slider-layout-1 .swiper-pagination-1 {
    bottom: 50px !important;
  }
  .rt-hero-slider-layout-1 .swiper-navigation,
  .rt-hero-slider-layout-1 .swiper-pagination {
    display: block;
  }
}

.rt-hero-slider-layout-2 .single-slider {
  display: flex;
  align-items: center;
}
.rt-hero-slider-layout-2 .content-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .rt-hero-slider-layout-2 .content-wrap {
    flex-direction: column;
  }
}
.rt-hero-slider-layout-2 .slider-image {
  z-index: 1;
}
.rt-hero-slider-layout-2 .slider-image > img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.rt-hero-slider-layout-2 .slider-content {
  position: relative;
  z-index: 9;
}

.rt-hero-slider-layout-3 .content-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .rt-hero-slider-layout-3 .content-wrap {
    flex-direction: column;
  }
}
.rt-hero-slider-layout-3 .slider-image {
  z-index: 1;
}
.rt-hero-slider-layout-3 .slider-image > img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.rt-hero-slider-layout-3 .slider-content {
  position: relative;
  z-index: 9;
  flex: 0 0 50%;
  max-width: 100%;
}

/*===============================
RT Post Grid
================================*/
/* ======== Blog Ajax ======== */
.rt-posts-container {
  position: relative;
}
.rt-posts-container .preloader {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--rt-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.rt-posts-container .preloader svg {
  width: 60px;
  height: 60px;
  animation: spin 1.2s linear infinite;
}
.rt-posts-container .preloader svg path {
  fill: var(--rt-primary-color);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rt_ajax_tab_section {
  position: relative;
  z-index: 2;
}
.rt_ajax_tab_section .rt-post-tab a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #858D95;
  transition: 0.3s;
  position: relative;
  padding: 0 0 20px;
}
@media (max-width: 767px) {
  .rt_ajax_tab_section .rt-post-tab a {
    padding: 0 0 14px;
  }
}
.rt_ajax_tab_section .rt-post-tab a i {
  font-size: 16px;
}
.rt_ajax_tab_section .rt-post-tab a + a {
  margin-left: 35px;
}
@media (max-width: 767px) {
  .rt_ajax_tab_section .rt-post-tab a + a {
    margin-left: 22px;
  }
}
.rt_ajax_tab_section .rt-post-tab a:hover, .rt_ajax_tab_section .rt-post-tab a.current {
  color: var(--rt-heading-color);
}

.rt_filter_border_yes {
  margin-bottom: 30px;
}
.rt_filter_border_yes .rt_ajax_tab a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 0;
  content: "";
  height: 2px;
  background: var(--rt-primary-color);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .rt_filter_border_yes .rt_ajax_tab a:after {
    display: none;
  }
}
.rt_filter_border_yes .rt_ajax_tab a.current:after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .rt_filter_border_yes {
    border-bottom: none;
  }
}

.rt-list-reverse-yes .article-inner-wrapper {
  flex-flow: row-reverse;
}

.rt-scrollbar-yes {
  position: relative;
}
.rt-scrollbar-yes .rt-scroll-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--rt-primary-color);
  width: 4px;
}
.rt-scrollbar-yes .rt-border-scroll {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 3;
}
.rt-scrollbar-yes .rt-border-scroll:before {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 16px;
  border: 2px solid #B6BCC3;
  position: absolute;
  content: "";
  background: #fff;
}
.rt-scrollbar-yes .rt-border-scroll:after {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #B6BCC3;
  content: "";
}
.rt-scrollbar-yes .rt-border-scroll2 {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
  width: 4px;
  height: 95%;
  background: #B6BCC3;
  z-index: 1;
}
.rt-scrollbar-yes .typiq-post-card.active .rt-border-scroll:after {
  background: var(--rt-primary-color);
}
.rt-scrollbar-yes .typiq-post-card.active .rt-border-scroll:before {
  border-color: var(--rt-primary-color);
}
.rt-scrollbar-yes .typiq-post-card .article-inner-wrapper {
  gap: 80px;
}
.rt-scrollbar-yes .typiq-post-card:nth-child(even) .article-inner-wrapper {
  flex-flow: row-reverse;
}
@media screen and (min-width: 768px) {
  .rt-scrollbar-yes.blog-list .post-thumbnail-wrap {
    flex-basis: 46%;
    max-width: 46%;
  }
}
@media screen and (max-width: 767px) {
  .rt-scrollbar-yes .typiq-post-card {
    padding-right: 60px;
  }
  .rt-scrollbar-yes .rt-border-scroll {
    left: auto;
    right: 30px;
  }
  .rt-scrollbar-yes .rt-scroll-bar,
  .rt-scrollbar-yes .rt-border-scroll2 {
    left: auto;
    right: 26px;
  }
  .rt-scrollbar-yes .rt-border-scroll2 {
    height: 98%;
  }
}

.rt-align-box-center .entry-wrapper {
  margin: 0 auto !important;
  text-align: center;
  right: 20px;
  left: 20px;
}

.rt-align-box-center .rt-cat-inner {
  justify-content: center;
}

.rt-align-left .rt-cat-inner {
  justify-content: flex-start;
}

.rt-align-box-right .rt-cat-inner {
  justify-content: flex-end;
}

.rt-align-box-right .entry-wrapper {
  left: auto;
  right: 0;
  margin-right: 0;
  margin-left: auto;
}

/* ======== Blog Grid 3 ======== */
.blog-grid-3 .rt-post-meta ul li i {
  color: var(--rt-button-color);
}

/* ======== Blog Grid 4 ======== */
.blog-grid-4 .article-inner-wrapper {
  max-width: 570px;
  margin: 0 auto;
}
.blog-grid-4 .entry-title {
  margin-bottom: 10px;
}

/* ======== Blog List 2 ======== */
.blog-list-2 .post-thumbnail-wrap .post-thumbnail {
  border-radius: 12px 0 0 12px;
}

.rt-testimonial-slider .testimonial-img {
  margin-bottom: 12px;
  position: relative;
}
.rt-testimonial-slider .testimonial-img img {
  display: block;
  max-width: 90px;
  border-radius: 100%;
  cursor: pointer;
}
.rt-testimonial-slider .testimonial-img .video-popup-icon {
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  color: var(--rt-heading-color);
  font-size: 12px;
  line-height: 42px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  margin-top: -30px;
  align-items: center;
  justify-content: center;
  transition: background-color 320ms;
  transform: translate(-50%) scale(1);
  background-color: rgba(var(--rt-white-bg-rgb), 0.8);
}
.rt-testimonial-slider .testimonial-img .video-popup-icon:hover {
  color: #ffffff;
  background-color: #FF0000;
}
.rt-testimonial-slider .name-designation {
  text-align: left;
}
.rt-testimonial-slider .slider-item {
  position: relative;
  z-index: 0;
}
.rt-testimonial-slider .slider-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rt-testimonial-slider .slider-item .item-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 22px;
  margin-bottom: 20px;
}
.rt-testimonial-slider .slider-item .item-rating .icon-rt-star {
  font-weight: 900;
}
.rt-testimonial-slider .slider-item .item-rating .active {
  color: var(--rt-primary-color);
}
.rt-testimonial-slider .slider-item .item-rating .deactive {
  color: var(--rt-gray20);
}
.rt-testimonial-slider .slider-item .rt-content {
  margin-bottom: 20px;
}
.rt-testimonial-slider .slider-item .rt-content p {
  margin-bottom: 0;
}
.rt-testimonial-slider .slider-item .rt-title {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.rt-testimonial-slider .slider-item .rt-subtitle {
  color: var(--rt-meta-color);
}
.rt-testimonial-slider .slider-item .quote {
  position: absolute;
  right: 12px;
  bottom: 0;
  font-size: 60px;
  color: var(--rt-gray10);
  z-index: -1;
}

.rt-testimonial-layout-1 .item-author-info {
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: inline-flex;
  align-items: center;
  text-align: left;
}
.rt-testimonial-layout-1 .testimonial-img {
  margin-bottom: 0;
}

.rt-testimonial-layout-2 .slider-item {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
}
.rt-testimonial-layout-2 .testimonial-img img {
  max-width: 100%;
  border-radius: 12px;
}
.rt-testimonial-layout-2 h2.main-title {
  font-size: 32px;
}
.rt-testimonial-layout-2 .swiper-navigation {
  margin-top: 100px;
}

.rt-testimonial-layout-3 .rt-thumbnail-area {
  position: relative;
}
.rt-testimonial-layout-3 .rt-thumbnail-area .swiper-wrapper {
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .rt-testimonial-layout-3 .rt-thumbnail-area {
    width: 400px;
    margin: 0 auto;
  }
}
.rt-testimonial-layout-3 .testimonial-img {
  text-align: center;
}
.rt-testimonial-layout-3 .testimonial-img img {
  max-width: 70px;
  display: inline-block;
}
.rt-testimonial-layout-3 .slider-item {
  padding-top: 30px;
}
.rt-testimonial-layout-3 .slider-item .rt-content {
  margin-bottom: 30px;
}
.rt-testimonial-layout-3 .quote {
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  font-size: 48px;
  color: var(--rt-meta-color);
}

.rt-testimonial-layout-4 .slider-item {
  padding: 30px 45px 50px;
  background-color: var(--rt-body-bg-color);
  border: 1px solid var(--rt-border-color);
  border-radius: 26px;
}
.rt-testimonial-layout-4 .slider-item .item-rating {
  margin-top: 5px;
  margin-bottom: 0;
}
.rt-testimonial-layout-4 .slider-item .quote {
  font-size: 36px;
  right: 8%;
  top: auto;
  bottom: 24px;
}
.rt-testimonial-layout-4 .swiper-cards {
  overflow: visible;
}
.rt-testimonial-layout-4 .swiper-cards .swiper-slide-shadow {
  background-color: transparent;
}
.rt-testimonial-layout-4 .item-author-info {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 8px;
  text-align: left;
}
.rt-testimonial-layout-4 .testimonial-img {
  margin-bottom: 0;
}
.rt-testimonial-layout-4 .testimonial-img img {
  max-width: 85px;
}
.rt-testimonial-layout-4 .swiper-navigation {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.rt-testimonial-layout-4 .swiper-navigation .swiper-button-prev {
  transform: rotate(-90deg);
  left: auto;
  top: 65%;
}
.rt-testimonial-layout-4 .swiper-navigation .swiper-button-next {
  top: 40%;
  left: auto;
  transform: rotate(-90deg);
}
.rt-testimonial-layout-4 .hover-visibility:hover .swiper-navigation .swiper-button-prev {
  left: auto !important;
  right: 0;
}

.rt-testimonial-layout-5,
.rt-testimonial-layout-8 {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-right: 24px;
}
.rt-testimonial-layout-5 .slider-item,
.rt-testimonial-layout-8 .slider-item {
  width: 447px;
  white-space: normal;
}
.rt-testimonial-layout-5 .slider-item .quote,
.rt-testimonial-layout-8 .slider-item .quote {
  font-size: 36px;
  top: 10px;
  right: 24px;
}
.rt-testimonial-layout-5 .item-author-info,
.rt-testimonial-layout-8 .item-author-info {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 8px;
}
.rt-testimonial-layout-5 .testimonial-img,
.rt-testimonial-layout-8 .testimonial-img {
  margin-bottom: 0;
}
.rt-testimonial-layout-5 .testimonial-img img,
.rt-testimonial-layout-8 .testimonial-img img {
  max-width: 50px;
}

.rt-testimonial-marquee-one .rt-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.rt-testimonial-marquee-one .rt-marquee.marquee-left .rt-marquee-item {
  display: inline-block;
  will-change: transform;
  animation: marquee_left 50s linear infinite;
}
.rt-testimonial-marquee-one .rt-marquee.marquee-right .rt-marquee-item {
  display: inline-block;
  will-change: transform;
  animation: marquee_right 50s linear infinite;
}
.rt-testimonial-marquee-one .rt-marquee:hover .rt-marquee-item {
  animation-play-state: paused;
}

.rt-testimonial-layout-6,
.rt-testimonial-layout-9 {
  display: inline-grid;
  row-gap: 24px;
  margin-bottom: 24px;
}
.rt-testimonial-layout-6 .slider-item,
.rt-testimonial-layout-9 .slider-item {
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  padding: 30px;
  white-space: normal;
}
.rt-testimonial-layout-6 .slider-item .quote,
.rt-testimonial-layout-9 .slider-item .quote {
  font-size: 36px;
  top: auto;
  right: 30px;
  bottom: 30px;
}
.rt-testimonial-layout-6 .item-author-info,
.rt-testimonial-layout-9 .item-author-info {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.rt-testimonial-layout-6 .testimonial-img,
.rt-testimonial-layout-9 .testimonial-img {
  margin-bottom: 0;
}
.rt-testimonial-layout-6 .testimonial-img img,
.rt-testimonial-layout-9 .testimonial-img img {
  max-width: 50px;
}

.rt-testimonial-marquee-two .rt-marquee {
  overflow: hidden;
  white-space: nowrap;
  display: inline-grid;
  height: 600px;
}
.rt-testimonial-marquee-two .rt-marquee.marquee-top .rt-marquee-item {
  display: inline-block;
  will-change: transform;
  animation: marquee_top 20s linear infinite;
}
.rt-testimonial-marquee-two .rt-marquee.marquee-bottom .rt-marquee-item {
  display: inline-block;
  will-change: transform;
  animation: marquee_bottom 20s linear infinite;
}
.rt-testimonial-marquee-two .rt-marquee:hover .rt-marquee-item {
  animation-play-state: paused;
}

.rt-testimonial-layout-10 .slider-item {
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--rt-gray-color);
}
.rt-testimonial-layout-10 .slider-item:hover .testimonial-img img {
  transform: scale3d(1.1, 1.1, 1);
}
.rt-testimonial-layout-10 .testimonial-img {
  overflow: hidden;
}
.rt-testimonial-layout-10 .testimonial-img img {
  max-width: 100%;
  border-radius: 0;
  transition: all 220ms ease;
}
.rt-testimonial-layout-10 .testimonial-content {
  padding: 10px 20px;
}
.rt-testimonial-layout-10 .testimonial-content .quote {
  right: 20px;
  bottom: 20px;
  color: var(--rt-meta-color2);
  transform: rotate(180deg);
}

.rt-testimonial-layout-11 {
  display: inline-grid;
  row-gap: 24px;
  margin-bottom: 24px;
}
.rt-testimonial-layout-11 .slider-item {
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  padding: 30px;
  white-space: normal;
}
.rt-testimonial-layout-11 .testimonial-content {
  flex-flow: column;
  text-align: center;
  align-items: center;
  display: inline-flex;
}
.rt-testimonial-layout-11 .testimonial-content .quote {
  right: 0;
  padding: 5px;
  font-size: 36px;
  position: relative;
  margin-bottom: 10px;
  display: inline-flex;
  border: 1px solid var(--rt-border-color);
}
.rt-testimonial-layout-11 .item-author-info {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.rt-testimonial-layout-11 .testimonial-img {
  margin-bottom: 0;
}
.rt-testimonial-layout-11 .testimonial-img img {
  max-width: 50px;
}

.rt-testimonial-layout-12 .item-author-info {
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: inline-flex;
  align-items: center;
  text-align: left;
}
.rt-testimonial-layout-12 .testimonial-img {
  margin-bottom: 0;
}
.rt-testimonial-layout-12 .slider-item .quote {
  position: relative;
  margin-bottom: 10px;
  display: inline-flex;
}

.elementor-align-right .swiper-navigation {
  right: 0;
}
.elementor-align-right .rt-testimonial-layout-3 .rt-thumbnail-area {
  margin: 0 0 0 auto;
}
.elementor-align-left .swiper-navigation {
  left: 0;
}
.elementor-align-left .rt-testimonial-layout-3 .rt-thumbnail-area {
  margin: 0 auto 0 0;
}

/*===============================
Fluent form style
================================*/
.ff-btn-submit {
  transition: all 0.3s linear;
}

@media (min-width: 768px) {
  .frm-fluent-form .ff-t-container {
    align-items: self-start;
  }
}
.contact-form .fluentform .ff-el-group {
  margin-bottom: 15px;
}
.contact-form .fluentform .ff-el-group.ff_submit_btn_wrapper {
  margin-bottom: 0;
}
.contact-form .fluentform .ff-el-form-control {
  border: none;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 0;
  background-color: var(--rt-gray-color);
  border-bottom: 1px solid var(--rt-border-color);
}
.contact-form .fluentform .ff-el-form-control:focus {
  color: var(--rt-heading-color);
  border-color: #8d8d8d;
  background-color: transparent;
}

.footer-subscribe-form .ff-t-cell .ff-el-group {
  margin-bottom: 0;
}
.footer-subscribe-form .ff-t-cell .ff-el-form-control {
  font-size: 13px;
  font-weight: 500;
  border: none;
  color: #ffffff;
  background-color: transparent;
  border-radius: 0;
  padding: 5px 18px;
  height: 42px;
}
.footer-subscribe-form .ff-t-cell .ff-el-form-control:focus {
  background-color: transparent;
}
.footer-subscribe-form .ff-t-cell .ff-btn-submit {
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 0 !important;
  width: 42px;
  height: 42px;
  padding: 0;
}
.footer-subscribe-form .ff-t-cell:first-of-type {
  flex-basis: 100% !important;
}
.footer-subscribe-form .frm-fluent-form .ff-t-container {
  position: relative;
  background-color: #1F1F1F;
  border-radius: 30px;
  padding: 5px;
  display: flex;
}
.footer-subscribe-form .frm-fluent-form .ff-t-cell:last-of-type {
  position: absolute;
  right: 7px;
  width: auto;
}

.ff-default .ff-el-form-control {
  background: #ffffff;
  border-color: var(--rt-border-color-2);
}
.ff-default .ff-btn-submit {
  color: #ffffff;
  background: var(--rt-primary-color);
  border-radius: 5px;
}

.ff-default .rt-footer-newsletter .ff-el-form-control {
  background: rgba(153, 153, 153, 0.6196078431);
  border-color: var(--rt-border-color-2);
}
.ff-default .rt-footer-newsletter .ff-btn-submit {
  color: #ffffff;
  background: var(--rt-primary-color);
  border-radius: 5px;
}
.ff-default .rt-footer-newsletter .ff-el-form-control:focus {
  background: rgba(153, 153, 153, 0.6196078431);
  border-color: var(--rt-border-color-2);
  color: #ffffff;
}
.ff-default .rt-footer-newsletter .ff-el-form-control::-moz-placeholder {
  color: #ffffff;
}
.ff-default .rt-footer-newsletter .ff-el-form-control::placeholder {
  color: #ffffff;
}
.ff-default .rt-footer-newsletter .ff-btn-submit:hover {
  color: var(--rt-primary-color);
  background: #ffffff;
}

.rt-video-icon {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rt-video-icon:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.rt-video-icon .video-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.rt-video-icon .icon-box {
  position: relative;
  z-index: 1;
}
.rt-video-icon .video-popup-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--rt-white-bg-color);
  color: #111111;
  line-height: 42px;
  text-align: center;
  font-size: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(7.5px);
  transform: scale(1);
  transition: background-color 320ms;
  border: 1px solid var(--rt-border-color);
}
.rt-video-icon .video-popup-icon i {
  transition: all 320ms;
}
.rt-video-icon .video-popup-icon:hover {
  background-color: var(--rt-primary-color);
  color: #ffffff;
  transform: scale(1.02);
}
.rt-video-icon .button-text {
  display: inline-block;
  font-size: 16px;
  color: #111111;
  font-weight: 700;
}

.rt-contact-info {
  -moz-column-gap: 20px;
       column-gap: 20px;
  border-radius: 6px;
  align-items: center;
  display: inline-flex;
}
.rt-contact-info .main-icon i {
  width: 40px;
  height: 40px;
  line-height: 37px;
  font-size: 16px;
  border-radius: 50%;
  color: var(--rt-primary-color);
  border: 2px solid var(--rt-primary-color);
  text-align: center;
  display: inline-block;
}
.rt-contact-info .info-title {
  font-size: 22px;
  color: var(--rt-heading-color);
  margin-bottom: 10px;
  line-height: 1.2;
}
.rt-contact-info .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rt-contact-info .contact-list li {
  position: relative;
  color: var(--rt-body-color);
  display: flex;
  align-items: center;
}
.rt-contact-info .contact-list li:last-child {
  margin-bottom: 0 !important;
}
.rt-contact-info .contact-list li span {
  color: var(--rt-heading-color);
  font-weight: 500;
  margin-right: 5px;
}
.rt-contact-info .contact-list li i {
  margin-right: 5px;
}
.rt-contact-info .contact-list li a {
  color: var(--rt-body-color);
}
.rt-contact-info .contact-list li a:hover {
  color: var(--rt-primary-color);
}
.rt-contact-info .list-horizontal {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .rt-contact-info .list-horizontal {
    justify-content: center;
  }
}
.rt-contact-info .list-horizontal li:not(:last-child):after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #8DA4A2;
  position: absolute;
  top: 12px;
  right: -18px;
  border-radius: 50%;
}

.ff-default .ff-el-form-control {
  background: var(--rt-white-bg-color);
}

.rt-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rt-social-icon .rt-social-item {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 18px;
       column-gap: 18px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.rt-social-icon .rt-social-item a {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.21s ease-in-out;
  overflow: hidden;
}
.rt-social-icon .rt-social-item a i {
  display: block;
}
.rt-social-icon .rt-social-item a:hover i {
  animation: toBottomFromTop 0.7s forwards;
}

.rtsb-social-share .rtsb-share-btn {
  background-color: transparent;
  padding: 0;
  overflow: hidden;
}
.rtsb-social-share .rtsb-share-btn svg {
  width: 15px;
  height: 15px;
}
.rtsb-social-share .rtsb-share-btn:hover {
  background-color: transparent;
  box-shadow: unset;
  transform: unset;
}
.rtsb-social-share .rtsb-share-btn:hover svg {
  animation: toBottomFromTop 0.7s forwards;
}
.rtsb-social-share .rtsb-share-icon-label .rtsb-share-label {
  color: var(--rt-body-color);
}

.rt-hero-section-search {
  position: relative;
  z-index: 2;
}

.rt-search-box-container:not(.rt-search-container) ~ #rt_datafetch, .rt-search-box-container:not(.rt-search-container) #rt_datafetch {
  opacity: 0;
  visibility: hidden;
}

.rt-search-box-form {
  width: 100%;
  border: 1px solid rgba(var(--rt-heading-rgb), 0.4);
  border-radius: 0;
  padding-left: 20px;
  padding-right: 3px;
}
.rt-search-box-form .search-box-text-field,
.rt-search-box-form .input-area,
.rt-search-box-form .input-group-addon {
  width: 100%;
}
.rt-search-box-form .search-box-input {
  font-size: 16px;
  background-color: transparent;
  color: var(--rt-heading-color);
  width: 94%;
  height: 54px;
  border: none;
}
.rt-search-box-form .search-box-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.rt-search-box-form #cleanText {
  cursor: pointer;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  color: var(--rt-primary-color);
}
.rt-search-box-form .category-selector {
  position: relative;
  min-width: 165px;
}
.rt-search-box-form .category-selector select {
  border: none;
  cursor: pointer;
  width: 100%;
}
.rt-search-box-form .category-selector .nice-select {
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto;
}
.rt-search-box-form .category-selector .nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 40%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}
.rt-search-box-form .category-selector .nice-select span {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
}
.rt-search-box-form .category-selector .nice-select .list {
  font-size: 15px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  margin: 0;
  padding: 15px 20px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.rt-search-box-form .category-selector .nice-select .list li {
  margin: 3px 0;
}
.rt-search-box-form .category-selector .nice-select .list li.selected, .rt-search-box-form .category-selector .nice-select .list li:hover {
  color: var(--rt-primary-color);
}
.rt-search-box-form .category-selector .nice-select.open .list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(16px);
}
.rt-search-box-form .category-selector .nice-select.open:after {
  transform: rotate(-135deg);
}
.rt-search-box-form .rt-search-box-btn {
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  letter-spacing: 0.5px;
  height: 48px;
  border: none;
  background: var(--rt-primary-color);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 5;
}
@media (max-width: 575px) {
  .rt-search-box-form {
    display: block;
    border-radius: 12px;
    padding: 0 20px 20px;
  }
  .rt-search-box-form .search-box-input {
    border-bottom: 1px solid var(--rt-border-color) !important;
  }
  .rt-search-box-form .category-selector {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--rt-border-color) !important;
  }
  .rt-search-box-form .rt-search-box-btn {
    border-radius: 6px;
    margin-top: 12px;
    width: 100%;
  }
}

.rt-data-fetch {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: -33px;
  border-radius: 5px;
  padding: 20px;
  transform: translateX(-50%);
  z-index: 2;
}
.rt-data-fetch .rt-search-result-list + .rt-search-result-list {
  border-top: 1px solid #D7D7D7;
  padding-top: 10px;
  margin-top: 10px;
}
.rt-data-fetch .rt-search-result-list .rt-top-title {
  color: var(--rt-body-color);
  font-size: 16px;
  font-weight: 600;
}
.rt-data-fetch .rt-search-result-list .rt-top-title i {
  color: var(--rt-meta-color);
  font-size: 12px;
  margin-right: 5px;
}
.rt-data-fetch .rt-search-result-list .rt-top-title:hover {
  color: var(--rt-primary-color);
}
.rt-data-fetch .rt-search-result-list .rt-search-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.rt-data-fetch .rt-search-result-list .rt-search-breadcrumb i {
  color: var(--rt-meta-color);
  font-size: 12px;
  margin-right: 5px;
}
.rt-data-fetch .rt-search-result-list .rt-search-breadcrumb a {
  color: var(--rt-body-color);
}
.rt-data-fetch .rt-search-result-list .rt-search-breadcrumb a:hover {
  color: var(--rt-primary-color);
}

.rt-search-container .rt-data-fetch {
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  text-align: left;
  z-index: 3;
}
.rt-search-container #cleanText {
  opacity: 1;
  visibility: visible;
}

.rt-search-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}
.rt-search-text .popular-label {
  font-size: 15px;
  font-weight: 600;
}
.rt-search-text .rt-search-key {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 7px;
}
.rt-search-text .rt-search-key li {
  position: relative;
  display: inline-block;
}
.rt-search-text .rt-search-key li a {
  border-radius: 100px;
  background-color: var(--rt-body-bg-color);
  border: 1px solid var(--rt-border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 15px;
  color: var(--rt-body-color);
  line-height: 1.3;
  transition: unset;
}

.rt-hero-section-content-wrapper .rt-searchbox-container:not(.rt-search-container) ~ #rt_datafetch,
.rt-hero-section-content-wrapper .rt-searchbox-container:not(.rt-search-container) #rt_datafetch {
  opacity: 0;
  visibility: hidden;
}

.rt-phone-2 {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.rt-phone-2 .phone-icon {
  color: var(--rt-button-text-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--rt-gray-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rt-phone-2 .phone-label {
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 600;
  padding-right: 8px;
}

.rt-cart-float-inner .rt-cart-icon .items {
  display: none;
}

.typiq-footer-builder .layout-1.typiq-navigation ul li a {
  font-weight: 400;
  color: var(--rt-body-color);
}
.typiq-footer-builder .layout-1.typiq-navigation ul li a:hover {
  color: var(--rt-primary-color);
}
.typiq-footer-builder .layout-3 .typiq-navbar li a {
  position: relative;
}
.typiq-footer-builder .layout-3 .typiq-navbar li a:before {
  left: 0;
  opacity: 1;
  content: "";
  height: 1px;
  width: 20px;
  position: relative;
  background-color: #A4A4A4;
  transition: all 220ms ease;
}
.typiq-footer-builder .layout-3 .typiq-navbar li a:hover:before {
  background-color: #ffffff;
}

.footer-layout-2 .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button,
.footer-layout-2 .fluentform .ff-el-group {
  margin-bottom: 0;
}

/* Elementor global CSS
===============================*/
.elementor-icon.elementor-social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.elementor-icon-list-icon svg,
.elementor-icon-list-icon i {
  transition: all 220ms ease;
}

@media (min-width: 768px) {
  .image-max-width-unset img {
    max-width: unset;
  }
}
.mfp-iframe-holder .mfp-iframe {
  border-radius: 0;
}
.mfp-iframe-holder .mfp-close {
  top: -20px;
  right: -20px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  opacity: 1;
  padding-right: 0;
  border-radius: 6px;
  color: #ffffff;
  background-color: var(--rt-primary-color);
}

@media (max-width: 1920px) {
  .about-responsive-fix {
    background-size: 50% 100% !important;
  }
}
@media (max-width: 1024px) {
  .about-responsive-fix {
    background-size: 0% !important;
  }
}

@media (min-width: 1440px) {
  .rt-margin-left .rtsb-elementor-container .rtsb-carousel-slider.top-nav .swiper-nav {
    right: 4.5%;
  }
}
@media (min-width: 1600px) {
  .rt-margin-left .rtsb-elementor-container .rtsb-carousel-slider.top-nav .swiper-nav {
    right: 17.3%;
  }
}
@media (min-width: 1400px) {
  .footer-widget-line.dark-color:after {
    background-color: #3A393A;
  }
  .footer-widget-line:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 190%;
    right: 10px;
    top: -40%;
    border-radius: 5px;
    background-color: #2D2D2D;
  }
}
[data-theme=dark-mode] .light-logo {
  display: block;
}

[data-theme=dark-mode] .dark-logo {
  display: none;
}

[data-theme=dark-mode] .elementor-widget-rt-site-logo .site-branding.dark .dark-logo {
  display: none !important;
}

[data-theme=dark-mode] .elementor-widget-rt-site-logo .site-branding .light-logo {
  display: block !important;
}

.ele-border-radius-5 {
  border-radius: 5px;
}

.ele-border-radius-10 {
  border-radius: 10px;
}

.ele-border-radius-15 {
  border-radius: 15px;
}

.ele-border {
  border: 1px solid var(--rt-border-color);
}

.ele-border-top {
  border-top: 1px solid var(--rt-border-color);
}

.ele-border-bottom {
  border-bottom: 1px solid var(--rt-border-color);
}

@media (min-width: 768px) {
  .ele-border-left {
    border-left: 1px solid var(--rt-border-color);
  }
}
.ele-white-bg {
  transition: unset;
  background-color: var(--rt-white-bg-color);
}

.ele-black-bg {
  background-color: var(--rt-black-bg-color);
  transition: unset;
}

.ele-gray-bg {
  background-color: var(--rt-gray-color);
  transition: unset;
}

.ele-gray-10 {
  background-color: var(--rt-gray10);
  transition: unset;
}

.ele-gray-20 {
  background-color: var(--rt-gray20);
  transition: unset;
}

.ele-light-gray-bg {
  background-color: var(--rt-gray-color);
  transition: unset;
}

.ele-headibg-color {
  color: var(--rt-heading-color);
}

.border-color {
  border-color: var(--rt-border-color);
}
.border-color .ff-default .ff-el-form-control {
  border-color: var(--rt-border-color);
}

.border-color-2 {
  border-color: var(--rt-border-color-2);
}
.border-color-2 .ff-default .ff-el-form-control {
  border-color: var(--rt-border-color-2);
}

.ele-primary-light-bg-color {
  background-color: var(--rt-primary-light);
}

.elementor-widget-divider .elementor-divider-separator {
  direction: ltr;
  display: flex;
  margin: 0;
}

.e-con-inner > .elementor-widget-divider, .e-con > .elementor-widget-divider {
  width: var(--container-widget-width, 100%);
  --flex-grow: var( --container-widget-flex-grow );
}

.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator {
  border-block-start: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
}

.rt-info-box .infobox-hover-1 {
  background-color: var(--rt-gray-color);
}
.rt-info-box .infobox-hover-1 .info-icon i {
  color: var(--rt-heading-color);
}
.rt-info-box .infobox-hover-1:hover {
  background-color: var(--rt-white-bg-color);
}

.ele-circle-arrow {
  position: relative;
}
.ele-circle-arrow .customCursor {
  width: 100px;
  height: 100px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  background-color: var(--rt-black-bg-color);
  transition: opacity 0.2s ease;
}
.ele-circle-arrow .cursor span {
  gap: 10px;
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  display: inline-flex;
}

[data-theme=dark-mode] .rt-logo-brand .logo-box img {
  filter: brightness(0) invert(1);
  transition: all ease 0.21s;
  opacity: 0.4;
}
[data-theme=dark-mode] .rt-logo-brand .logo-box:hover img {
  filter: brightness(0) invert(1);
}
[data-theme=dark-mode] .elementor-divider-separator {
  border-color: #3a3939 !important;
}
[data-theme=dark-mode] .ele-light-gray-bg {
  background-color: #131313;
}
[data-theme=dark-mode] .rtsb-logo-slider-and-grid.grayscale-logo .rtsb-logo-item img {
  filter: brightness(0) invert(1);
}
[data-theme=dark-mode] .elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover > .e-n-accordion-item-title .e-n-accordion-item-title-icon span > i,
[data-theme=dark-mode] .elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover > .e-n-accordion-item-title {
  color: #ffffff;
}
[data-theme=dark-mode] .ele-gray-10 {
  background-color: #1c1c1c;
}

.rt-header-two .elementor-divider-separator {
  border-color: rgba(255, 255, 255, 0.3215686275) !important;
}

.footer-brand-logos img.swiper-slide-image {
  transition: all 220ms ease;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.footer-brand-logos img.swiper-slide-image:hover {
  filter: brightness(0) saturate(100%);
}

/*-------------------------------------
#. EL: Swiper Slider
---------------------------------------*/
.rt-swiper-slider {
  overflow: hidden;
}
.rt-swiper-slider .swiper-wrapper {
  align-items: center;
}
.rt-swiper-slider .swiper-button-prev,
.rt-swiper-slider .swiper-rtl .swiper-button-next {
  left: 25px;
}

.hover-visibility .swiper-navigation .swiper-button {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.hover-visibility .swiper-navigation .swiper-button-prev {
  left: -28px;
}
.hover-visibility .swiper-navigation .swiper-button-next {
  right: -28px;
}
.hover-visibility:hover .swiper-button {
  opacity: 1;
  visibility: visible;
}

.swiper-navigation {
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
}
.swiper-navigation .swiper-button {
  z-index: 3;
  width: 55px;
  height: 55px;
  display: flex;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  align-items: center;
  border-radius: 100%;
  color: var(--rt-primary-color);
  justify-content: center;
  transition: all 520ms ease;
  background-color: var(--rt-white-bg-color);
}
.swiper-navigation .swiper-button:hover {
  color: #ffffff;
  background-color: var(--rt-primary-color);
}
.swiper-navigation .swiper-button:after {
  display: none;
}
.swiper-navigation .swiper-button-prev {
  left: 20px;
}
.swiper-navigation .swiper-button-next {
  right: 20px;
}

.swiper-navigation-middle-left-right .swiper-navigation {
  top: 50%;
  margin-top: 0;
  justify-content: space-between;
}

.swiper-navigation-bottom-left-right .swiper-navigation {
  justify-content: space-between;
}

.swiper-navigation-top-left-right .swiper-navigation {
  top: -60px;
  margin-top: 0;
  justify-content: space-between;
}

.swiper-navigation-bottom-center .swiper-navigation {
  justify-content: center;
}

.swiper-navigation-bottom-left .swiper-navigation {
  justify-content: flex-start;
}

.swiper-navigation-bottom-right .swiper-navigation {
  justify-content: flex-end;
}

.swiper-navigation-top-center .swiper-navigation {
  top: -60px;
  margin-top: 0;
}

.swiper-navigation-top-left .swiper-navigation {
  top: -60px;
  margin-top: 0;
  justify-content: flex-start;
}

.swiper-navigation-top-right .swiper-navigation {
  top: -60px;
  margin-top: 0;
  justify-content: flex-end;
}

.swiper-pagination {
  gap: 0;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  bottom: 0 !important;
  z-index: 1;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  position: relative;
  background: var(--rt-body-bg-color);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--rt-heading-color);
}
.swiper-pagination.pagination-layout-1 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}
.swiper-pagination.pagination-layout-2 {
  gap: 7px;
}
.swiper-pagination.pagination-layout-2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-pagination.pagination-layout-2 .swiper-pagination-bullet:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  position: absolute;
  border-radius: 100%;
  transition: all 0.7s ease;
  border: 1px solid var(--rt-black-bg-color);
}
.swiper-pagination.pagination-layout-2 .swiper-pagination-bullet-active:after {
  opacity: 1;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}

.rt-pagination-position-right .swiper-pagination {
  margin: 0;
  position: absolute;
  right: 40px;
  left: auto;
  width: auto;
  display: block;
  top: 40%;
  bottom: auto;
}
@media screen and (max-width: 1024px) {
  .rt-pagination-position-right .swiper-pagination {
    display: none;
  }
}
.rt-pagination-position-right .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background: var(--rt-body-bg-color);
  display: block;
  border-radius: 0;
  margin: 20px 0;
  transition: 0.3s;
  margin-right: 0;
  margin-left: auto;
}
.rt-pagination-position-right .swiper-pagination .swiper-pagination-bullet:first-child {
  margin-top: 0;
}
.rt-pagination-position-right .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.rt-pagination-position-right .swiper-pagination .swiper-pagination-bullet-active {
  width: 60px;
}

.swiper-scrollbar {
  position: relative !important;
  border: 1px solid var(--rt-meta-color);
  background-color: #ffffff;
  height: 17px !important;
  margin-top: 60px;
  margin-bottom: 20px;
  width: 100% !important;
  left: 0 !important;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 100px;
  border: 2px solid #111111;
  background-color: var(--rt-primary-color);
  box-shadow: 4px 7px 0 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
  width: 156px !important;
  height: 40px;
  padding: 10px 0;
  top: -15px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
.swiper-scrollbar .swiper-scrollbar-drag i {
  font-size: 12px;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.banner-projects .swiper-navigation {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

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