@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@200;400;600;700;900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");



@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
	--primary-font: "Open Sans","Poppins", sans-serif;
	--secondary-font: "Open Sans","Poppins", sans-serif;

	--h1-size: 4rem;
	--h1-weight: 600;

	--h2-size: 3rem;
	--h2-weight: 600;

	--h3-size: 2rem;
	--h3-weight: 600;

	--h4-size: 1.5rem;
	--h4-weight: 600;

	--h5-size: 1.2rem;
	--h5-weight: 600;

	--h6-size: 1rem;
	--h6-weight: 600;

	--p-size: 1rem;
	--p-weight: 400;

	--header-bg-color: #121117;
	--nav-brand-height: 55px;
	--top-nav-item-color: #F5F5F5;
	--nav-item-color: #121117;

	--primary-color: #00b0ff;
	--secondary-color: #3e1ce9;

	--white-color: #F9F9F9;
	--black-color: #040402;
	--grey-color: #f3f5f7;
	--dark-grey-color: #191919;

	--primary-t-color: #222;
	--secondary-t-color: #F5F5F5;
	--primary-p-color: #565656;
	--secondary-p-color: #E1E1E1;
	--primary-b-color: #F5F5F5;
	--primary-l-color: rgba(0, 0, 0, .12);
	--secondary-l-color: rgba(45, 49, 54, 0.09);

	--border-radius-sm: 0.5rem;
	--border-radius-md: 1rem;
	--border-radius-lg: 2rem;

	--valid-color: #007A4D;
	--invalid-color: #E34F4F;

	--primary-bg-color: #FFFFFF;
	--primary-bg-color-2: #dfe8f8;
	--primary-bg-color-3: #E5E5E5;

	--secondary-bg-color: #040402;
	--secondary-bg-color-2: #111111;
	--secondary-bg-color-3: #191919;

	--card-bg-color: #16182D;
	--footer-bg-color: #121117;

	--transform-scale: scale3d(1.06, 1.06, 1.06);

	--transition-function: cubic-bezier(.645, .045, .355, 1);
	--transition-duration: 0.35s;
	--transition-duration-short: 0.25s;
}


/* #region Reset */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0 !important;
  background-color: var(--primary-bg-color);
  font-family: var(--secondary-font);
  color: var(--primary-p-color);
}
body.odd {
  background-color: var(--secondary-bg-color);
  color: var(--secondary-p-color);
}

ol,
ul {
  padding-left: 20px;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

ul ul {
  list-style: circle;
}

pre,
code {
  display: block;
  margin: 1rem 0;
  color: var(--primary-color);
}

blockquote,
q {
  display: block;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--primary-bg-color-3);
  quotes: none;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
}

.odd blockquote,
q {
  border-left: 5px solid var(--secondary-bg-color-3);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote p,
q p {
  margin: 0;
}

figure {
  margin-bottom: 1.5rem;
}

figcaption {
  margin-bottom: 1.5rem;
  font-style: italic;
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--primary-bg-color-3);
}

.odd figcaption {
  border-left: 5px solid var(--secondary-bg-color-3);
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 10px;
}
table tr:not(:last-child) {
  border-bottom: 1px solid;
  border-color: var(--primary-l-color);
}
table .odd tr:not(:last-child) {
  border-color: var(--secondary-l-color);
}
table td {
  padding: 10px 0;
}
table th {
  padding: 10px 0;
}

/* #endregion Reset */

/* .App {
  text-align: center;
} */


/* #region General */

::-moz-selection {
	background: rgba(166, 175, 189, 0.3);
}

::selection {
	background: rgba(166, 175, 189, 0.3);
}

::-moz-selection {
	background: rgba(166, 175, 189, 0.3);
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

a:not(.btn),
a:link:not(.btn),
a:visited:not(.btn),
a:hover:not(.btn),
a:active:not(.btn) {
	font-size: 1.2rem;
  text-wrap: nowrap;
	font-weight: 400;
	line-height: 1.5;
	color: var(--primary-color);
	text-decoration: none;
	transition: all .4s ease-out 0s;
}

a:not([href]),
a:not([href]):hover,
a:not([href]) i,
a:not([href]) i:hover {
	color: var(--primary-b-color);
}

p {
	margin: 1.5rem 0;
	font-size: var(--p-size);
	font-weight: var(--p-weight);
	line-height: 1.5;
	-ms-word-wrap: break-word;
	word-wrap: break-word;

	&:first-child {
		margin-top: 0;
	}

	&:last-child {
		margin-bottom: 0;
	}
}

.odd:not(.comment) p {
	color: var(--white-color);
}

.page-template .odd p {
	opacity: 0.7;
}

.swiper-wrapper.odd p {
	opacity: 0.8;
}

h1 {
	margin-bottom: 1.5rem;
	font-size: var(--h1-size);
	font-weight: var(--h1-weight);
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-t-color);
	-ms-word-wrap: break-word;
	word-wrap: break-word;

	em {
		display: block;
		font-size: var(--h2-size);
		font-weight: 300;
	}
}

h2 {
	margin: 1.5rem 0;
	font-size: var(--h2-size);
	font-weight: var(--h2-weight);
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-t-color);
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.odd h2 {
	color: var(--white-color);
}

h3 {
	margin: 1.5rem 0;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-t-color);
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

h4 {
	margin: 1.5rem 0;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-t-color);
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.odd h4 {
	color: var(--secondary-t-color);
}

h5 {
	margin: 1.5rem 0;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-t-color);
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

h6 {
	margin: 1.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-t-color);
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

b,
strong {
	font-weight: 700;
}

li {
	margin: 0.5rem 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

dt {
	margin: 15px 0;
}

address {
	margin-bottom: 1rem;
}

form {
	width: 100%;
}

input,
textarea,
select {
	width: 100%;
	height: 50px;
	background: no-repeat;
	box-shadow: none;
	padding: 0.7rem 1rem;
	border-color: var(--primary-l-color);
	border-width: 2px;
	border-radius: 0.375rem;
}

input {
	border-color: var(--primary-p-color);
	color: var(--primary-p-color);

	&:focus {
		border-color: var(--primary-t-color);
		color: var(--primary-t-color);
	}

	&[type="radio"] {
		height: initial;
	}

	&[type="submit"] {
		border: 1px solid;
		padding: 2.5px 10px;
		display: block;
		width: fit-content;
		max-width: 200px;
		text-align: center;
		color: var(--primary-color);

		&:hover {
			background-color: var(--primary-color);
			color: var(--primary-b-color);
			border-color: var(--primary-color);
		}
	}

	&[type="checkbox"] {
		padding: 0;
	}
}

textarea {
	height: 100px;
	resize: none;
	border-color: var(--primary-p-color);
	color: var(--primary-t-color);

	&:focus {
		border-color: var(--primary-t-color);
		color: var(--primary-t-color);
	}
}

select {
	appearance: none;
	text-indent: 1px;
	text-overflow: '';
	line-height: 1.2;
	border-color: var(--primary-l-color);
	color: var(--primary-t-color);

	option {
		color: #2f323a;
	}

	&:focus {
		border-color: var(--primary-t-color);
		color: var(--primary-t-color);
	}
}

.input-group {
	.btn {
		border-radius: 0.375rem;
	}
}

hr {
	margin: 35px 0;
	border-top: 1px solid var(--primary-l-color);
}

.odd hr {
	margin: 35px 15px;
	border-top: 1px solid var(--secondary-l-color);
}

/* #endregion General */

/* preloader */

.preloader-main {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;

  .preloader-wapper {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .loader-section {
      position: fixed;
      top: 0;
      height: 100%;
      width: calc(50% + 1px);
      background-color: var(--primary-bg-color);

      &.section-left {
          left: 0;
      }

      &.section-right {
          right: 0;
      }
  }

  .preloader {
      position: relative;
      display: block;
      height: 80px;
      width: 170px;
      top: -40px;
      z-index: 99;
  }

  .loaded {
      .section-right {
          transform: translateX(101%);
          transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
      }

      .section-left {
          transform: translateX(-101%);
          transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
      }

      .preloader {
          transition: 0.3s ease-out;
          visibility: hidden;
          opacity: 0;
      }
  }

  circle.dot {
      &:nth-of-type(1) {
          animation: slide 2s ease infinite;
      }

      &:nth-of-type(2) {
          transform: translateX(55px);
          animation: slide 2s ease infinite;
          animation-delay: 1s;
      }
  }
}

@keyframes slide {
  0%,
  100% {
      transform: translateX(0px);
  }

  50% {
      transform: translateX(70px);
  }
}


/* end preloader */


/* #region Header */
header {
  position: relative;
  z-index: 5;
}
header .navbar-expand {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 20px 25px;
}
header .navbar-expand .navbar-brand {
  padding: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 0;
  color: var(--nav-item-color);
}
header .navbar-expand .navbar-brand i {
  font-size: 1.8rem;
  font-weight: bold;
  font-style: initial;
  color: var(--primary-color);
}
header .navbar-expand .navbar-nav.toggle {
  display: none;
}
header .navbar-expand .navbar-nav.toggle i {
  font-size: 20px;
}
header .navbar-expand .navbar-nav .nav-item {
  margin: 0;
}
header .navbar-expand .navbar-nav .nav-item a:not(.btn) {
  display: flex;
  align-items: center;
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: 500;
  color: var(--white-color);
}
header .navbar-expand .navbar-nav .nav-item .nav-link:not(.btn):not(.title):hover, header .navbar-expand .navbar-nav .nav-item .nav-link.active:not(.btn):not(.title) {
  color: var(--primary-color);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu {
  display: block;
  width: max-content;
  min-width: 14.375rem;
  padding: 0.625rem 0;
  border: none;
  border-radius: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu::before {
  content: "";
  position: absolute !important;
  top: -10px;
  right: auto;
  bottom: auto;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link:not(.btn) {
  justify-content: space-between;
  padding: 0.625rem;
  color: var(--nav-item-color);
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 700;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link.title {
  font-weight: 600;
  color: var(--primary-t-color);
  opacity: 0.8;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link:not(.btn):not(.title):hover {
  background-color: rgba(1, 114, 128, 0.05);
  color: var(--primary-color);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
  top: -8px;
  left: 100%;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .dropdown-menu::before {
  content: none;
}
header .navbar-expand .navbar-nav .dropdown i.icon-arrow-down {
  position: relative;
  top: 1.5px;
  margin: 0 0 0 0.3rem;
  font-size: 12px;
  font-weight: 600;
}
header .navbar-expand .navbar-nav .dropdown i.icon-arrow-right {
  position: relative;
  top: 0;
  left: 5px;
  margin: 0 0 0 0.3rem;
  font-size: 10px;
  font-weight: 600;
}
header .navbar-expand .navbar-nav .dropdown:hover > .dropdown-menu {
  visibility: unset;
  opacity: 1;
  margin: 0;
  transform: translateY(0px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
header .navbar-expand .icons i {
  font-weight: 400;
}
header .navbar-expand:not(.navbar-sticky) .navbar-brand:not(.invert) img {
  /*filter: brightness(0) invert(1);*/
}
header .navbar-sticky {
  background-color: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(10px);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
header .navbar-sticky .navbar-nav .nav-item a:not(.btn) {
  color: var(--nav-item-color);
}

.dropdown .dropdown-menu > li {
  padding: 0 0.625rem;
}

.menu .items {
  margin-left: -5px;
  width: calc(100% + 10px);
}
.menu .navbar-nav {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.menu .navbar-nav .nav-item {
  margin: 0;
}
.menu .navbar-nav .nav-item .nav-link:not(.btn) {
  width: calc(100% - 12px);
  padding: 0.5rem 1rem;
  margin: 0 5px;
  border-radius: var(--border-radius-sm);
}
.menu .navbar-nav .nav-item .nav-link:not(.btn):hover {
  background-color: #e5e6f6;
  color: var(--primary-color);
}
.menu .navbar-nav .nav-item .nav-link:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-t-color);
}
.menu .navbar-nav .dropdown .dropdown-menu {
  display: none;
  width: 100%;
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  background: none;
  border: none;
  visibility: visible;
  opacity: 1;
}
.menu .navbar-nav .dropdown .dropdown-menu.show {
  display: block;
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link {
  padding: 0.625rem;
  margin: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nav-item-color);
  text-align: left;
  text-transform: uppercase;
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link:hover, .menu .navbar-nav .dropdown .dropdown-menu .nav-link.active {
  color: var(--primary-color);
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link.title {
  font-weight: 600;
  color: var(--primary-t-color);
  border: none;
  opacity: 0.8;
}
.menu .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
  position: relative;
  top: initial;
  left: initial;
}
.menu .navbar-nav .dropdown .dropdown-menu .left,
.menu .navbar-nav .dropdown .dropdown-menu .right {
  width: 50%;
}
.menu .navbar-nav .dropdown:first-child {
  margin-top: 0;
}
.menu .navbar-nav i.icon-arrow-down {
  font-size: 18px;
}

.dropdown .nav-link i {
  transition: transform 0.3s ease-in-out;
}

.rotate-arrow {
  transform: rotate(-180deg);
  transition: transform 0.3s ease-in-out; /* Smooth transition for the rotation */
}

.navbar-nav .dropdown-menu {
  transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.navbar-nav .show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* #endregion Header */


/* #region Section */
section {
  width: 100%;
  padding: 130px 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
section.no-hero {
  padding: 150px 0 130px;
}
section#slider:not(.bg-inherit) {
  background-color: var(--hero-bg-color);
}

main {
  padding: 0;
}

.container {
  padding: 0;
  max-width: 1170px;
}
.container.header {
  max-width: 1140px;
}
.container.full {
  max-width: 100%;
}
.container.full-grid {
  padding: 0;
  max-width: calc(100% - 30px);
  margin: 0 15px;
}
.container.smaller {
  max-width: 970px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.vh-75 {
  height: 75vh;
}

.vh-85 {
  height: 85vh;
}
@media (max-width: 575px) {
  .vh-85 {
    height: 100%;
  }
}

.vh-90 {
  height: 90vh;
}
@media (max-width: 575px) {
  .vh-90 {
    height: 100%;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

/* #endregion Section */



.hero-section {
  position: relative;
  background-attachment: scroll;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-section .hero-content .sub-heading {
  font-size: 1.2rem;
  line-height: 1.6;
}
.hero-section .hero-thumb.animate img {
  position: relative;
  animation: bounceHero 3s infinite;
}
.hero-section.layout-1 {
  background-image: url("../images/welcome-bg.png");
}
.hero-section.layout-1 .hero-thumb {
  max-width: 300px;
}
@media (max-width: 767px) {
  .hero-section.layout-1 .hero-thumb {
    max-width: 270px;
  }
}
@media (max-width: 575px) {
  .hero-section.layout-1 .hero-thumb {
    max-width: 230px;
  }
}


.shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: relative;
}

.shape-bottom {
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  right: 0;
}

.bg-shape {
  position: absolute;
  height: 190%;
  width: 100%;
  display: block;
  border-radius: 120px;
  background: var(--primary-bg-color-2);
  bottom: 0;
  right: 0;
  transform: translate(35%, -28%) rotate(-35deg);
  z-index: 0;
}
@media (max-width: 991px) {
  .bg-shape {
    height: 130%;
  }
}

.has-overlay {
  position: relative;
  z-index: 1;
}
.has-overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.92;
  z-index: -1;
}
.has-overlay.overlay-gradient::after {
  background: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.has-overlay.overlay-dark::after {
  background: rgba(16, 16, 45, 0.9);
}


.btn {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1;
  text-align: center;
  padding: 16px 34px;
  border: 0 none;
  border-radius: 100px;
  outline: 0 none;
  cursor: pointer;
  z-index: 1;
}
.btn:hover, .btn:focus, .btn:active {
  color: var(--white-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.btn.btn-bordered {
  background: transparent none repeat scroll 0 0;
  color: #444;
}
.btn.btn-bordered::before {
  position: absolute;
  content: "";
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background-image: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
  top: -2px;
  left: -2px;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
  z-index: -2;
}
.btn.btn-bordered:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  background: #fff none repeat scroll 0 0;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.btn.btn-bordered:hover, .btn.btn-bordered:focus, .btn.btn-bordered.active {
  color: #fff;
}
.btn.btn-bordered:hover::after, .btn.btn-bordered:focus::after, .btn.btn-bordered.active::after {
  opacity: 0;
}
.btn.btn-bordered-white {
  background: transparent none repeat scroll 0 0;
  border: 2px solid #fff;
}
.btn.btn-bordered-white::after {
  position: absolute;
  content: "";
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background-image: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
  top: -2px;
  left: -2px;
  border-radius: 100px;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.btn.btn-bordered-white:hover, .btn.btn-bordered-white:focus {
  border-color: transparent;
  outline: 0 none;
}
.btn.btn-bordered-white:hover::after, .btn.btn-bordered-white:focus::after {
  opacity: 1;
}
.btn.content-btn {
  padding: 0;
  font-weight: 600;
  color: var(--primary-t-color);
  text-align: left;
  line-height: 1.2;
  background: transparent;
  box-shadow: none;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .btn.content-btn {
    margin-bottom: 5px;
  }
}
.btn.content-btn::before {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.btn.content-btn::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.btn.content-btn:hover {
  color: var(--primary-color);
}
.btn.content-btn:hover::before {
  right: -10px;
  opacity: 1;
}
.btn.content-btn:hover::after {
  right: -20px;
  opacity: 0;
}

.btn-smaller {
  font-size: 0.9rem;
  padding: 12px 18px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 30px;
  justify-content: center;
}

.download-button {
	img {
		max-width: 190px;
	}
}


.items .item {
  margin-top: 30px;
}

.counter:not(.is-visible) {
  visibility: hidden;
}

.counter-area {
  padding: 0 0;
}
.counter-area .item .counter-item {
  position: relative;
}
.counter-area .item .counter-item span {
  font-size: var(--h2-size);
  font-weight: bold;
  background-image: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .counter-area .item .counter-item span {
    font-size: 2.5rem;
  }
}
.counter-area .item .counter-item::after {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background-color: var(--primary-t-color);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.15;
}
@media (max-width: 767px) {
  .counter-area .item .counter-item::after {
    height: 45%;
  }
}
.counter-area .item:last-of-type .counter-item::after {
  display: none;
}
@media (max-width: 575px) {
  .counter-area .item:nth-child(2) .counter-item::after {
    display: none;
  }
}

.countdown {
  text-transform: uppercase;
  color: var(--white-color);
}
.countdown .countdown-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0.25rem;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .countdown .countdown-container {
    margin: 0 0.2rem;
    padding: 0.25rem;
  }
}
@media (max-width: 575px) {
  .countdown .countdown-container {
    margin: 0 0.15rem;
    padding: 0;
  }
}
.countdown .countdown-container .countdown-heading {
  margin: 10px;
  font-size: 1rem !important;
  font-weight: 600;
}
.countdown .countdown-container .countdown-value {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  background-color: var(--white-color);
  border-radius: calc(var(--border-radius-sm) / 2);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}


.image-box {
  padding: 45px;
  min-height: 300px;
  border-radius: 1rem;
  box-shadow: 0 3px 20px 0px var(--primary-l-color);
  transition: transform 0.3s ease 0s;
}
.image-box .icon {
  color: var(--primary-color);
  transition: transform var(--transition-function) var(--transition-duration-short);
}
.image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
}
.image-box:hover .icon {
  transform: var(--transform-scale);
}
.image-box.layout-2 {
  box-shadow: none;
}
.image-box.layout-2.center {
  display: flex;
  gap: 1rem;
}
.image-box.layout-2:hover {
  transform: inherit;
  box-shadow: inherit;
}

.features-section {
  overflow: hidden;
  padding-top: 0px;
}
.features-section .features-slider-wrapper {
  background: rgba(0, 0, 0, 0) url("../mobile-slider.png") no-repeat scroll top center/cover;
  padding: 67px 23px 90px 26px;
  background-size: 100%;
  max-width: 290px;
  margin: 0 auto;
}
.features-section .features-slider-wrapper .features-slider {
  padding: 0;
}
.features-section .features-slider-wrapper .slide-item {
  margin: 0;
}
@media (max-width: 767px) {
  .features-section .features-slider-wrapper {
    padding: 52px 18px 90px 21px;
    max-width: 245px;
  }
}
@media (max-width: 575px) {
  .features-section .features-slider-wrapper {
    padding: 52px 18px 90px 21px;
    max-width: 220px;
  }
}
.features-section .features-item.list-group .list-group-item {
  margin: 0;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .features-section .features-item.list-group .list-group-item {
    padding: 0;
  }
}


.avatar-sm {
  width: 70px;
  height: 70px;
  filter: hue-rotate(48deg);
}

.logo{
  width: 100px;
  background-color: rgba(255, 255, 255, 0.89);
  border-radius: 42px 10px;
  padding: 2px;
 
}

@media (max-width: 772px) {
    .logo {
        border-radius: 24px 10px;
        max-width: 48px;
    }
}



.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  margin-top: 50px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 40px !important;
  height: 10px !important;
  border-radius: 5 !important;
  background-color: var(--primary-p-color);
  border: none !important;
  opacity: 0.25 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1 !important;
}

.intro {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
.swiper-slide{
  /* margin-left: auto !important;
  margin-right: 30px !important; */
}
}
.swiper-slide img{
  border-radius: 15px;
}

.avatar-md {
  width: 100px;
  height: 100px;
  filter: invert(1);
}


#app-accordion .accordion-item {
  background-color: transparent;
  color: var(--primary-p-color);
}
#app-accordion .accordion-item:not(.outlined) {
  border: none;
}
#app-accordion .accordion-item:not(.outlined):not(:last-child) {
  margin-bottom: 0.8rem;
}
#app-accordion .accordion-item.outlined {
  padding: 0.8rem 0;
}
#app-accordion .accordion-item .accordion-header {
  margin: 0;
}
#app-accordion .accordion-item .accordion-button {
  position: relative;
  background-color: var(--primary-bg-color-2);
  border-radius: var(--border-radius-sm);
  box-shadow: none;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-t-color);
  text-align: right;
  padding-left: 45px;
}



#app-accordion .accordion-item .accordion-button::after {
  position: absolute;
  content: "+";
  right: calc(100% - 3rem);
  height: inherit;
  background-image: none;
  font-size: inherit;
  font-weight: 900;

  transition-timing-function: var(--transition-function);
}
#app-accordion .accordion-item .accordion-button:focus {
  z-index: 1;
}

#app-accordion .accordion-item:has(.collapsing ) .accordion-button::after {

  position: absolute;
  transition: all 0.3s ease;
  --bs-accordion-btn-icon-transform: none;
}

#app-accordion .accordion-item:has(.collapsing ) .accordion-button::after {
  content: "-" !important;
  --bs-accordion-btn-icon-transform: none;
}

#app-accordion .accordion-item:has(.collapse.show) .accordion-button::after {
  content: "-" !important;
  --bs-accordion-btn-icon-transform: none;
}

#app-accordion .accordion-button::after{
  margin-left: auto !important;
}


.content-section {
  margin: 100px 0 0 0;
}


.primary-bg {

  background: linear-gradient(-47deg, var(--primary-bg-color-2) 0%, white 100%)
}
.primary-bg .btn-bordered::after {
  background-color: var(--primary-bg-color-2);
}
.primary-bg .badge {
  background-color: #fff !important;
}

.list-group-item {
  margin: 0;
  background: none;
  font-size: 1rem;
  padding-right: 0;
  padding-left: 0;
  background-color: transparent;
  border-color: var(--card-bg-color);
}
.list-group-item a {
  transition: 0.3s;
}
.list-group-item .badge.circle {
  background-color: var(--card-bg-color);
}

.list-group .list-group-item {
  margin: 0.25rem 0;
}
.list-group .list-group-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  width: 3.5rem;
  background-color: #fff;
  border-radius: var(--border-radius-sm);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-left: 15px;
}
.list-group .list-group-item .icon span {
  font-size: 2rem;
}
.list-group .list-group-item .icon.layout-2 {
  background-color: transparent;
}
.list-group.list-group-horizontal .list-group-item:not(:last-child) {
  margin-right: 0.8rem;
}


.height-emulator {
	float: right;
	height: 585px;
}


.footer-area .footer-top {
  padding: 80px 0;
}
.footer-area .footer-top hr {
  margin: 25px 0;
  border-style: solid;
}
.footer-area .footer-top .social-icons a.icon {
  color: var(--white-color);
}
.footer-area .nav-item {
  margin: 0;
}
.footer-area .nav-item a.nav-link {
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 500;
}
.footer-area .nav-item a.nav-link:not(:hover) {
  color: var(--nav-item-color);
}
.footer-area .copyright-area {
  border-top: 1px solid var(--primary-l-color);
}
@media (min-width: 992px) {
  .footer-area.footer-fixed {
    /* position: fixed; */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
}
@media (max-width: 575px) {
  .footer-area .items .item:first-child {
    margin-top: 0;
  }
}

.navbar-nav.items{
    overflow-x: auto;
    scrollbar-width: none;
}

.video-area{
    padding-bottom: 0px;
}

.video-wrapper {

    padding: 10px 10px 5px 10px; /* Add space for the border */
    background: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 25px; /* Optional: rounded corners */
  }



  .video-wrapper::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px; /* Match inner radius for smooth look */
    margin: 0px; /* Thickness of the border */
    z-index: 1;
  }


  .screenshots-area{
    padding-top: 80px;
  }

  .video-wrapper > iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    min-height: 450px;
    border-radius: 20px;
  }

/* Overlay */
.cookie-overlay {
position: fixed;
bottom: 0px;
background: none;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
width: 100%;
}


/* Popup box */
.cookie-popup {
background: linear-gradient(135deg, #3594e7, #1c80f1);
color: #ffffff;
width: 100%;
padding: 14px 16px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
animation: slideUp 0.5s ease;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}


@keyframes slideUp {
from {
transform: translateY(40px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.cookie-popup h2 {
margin: 0 0 10px;
font-size: 22px;
font-size: 18px;
color:#ffffff;
}


.cookie-popup p {
font-size: 14.5px;
line-height: 1.6;
margin: 0 0 10px;
color: #e3f2fd;
}

.cookie-actions button {
border: none;
border-radius: 8px;
padding: 10px 16px;
font-size: 14px;
cursor: pointer;
transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-accept {
background: #ffffff;
color: #1565c0;
font-weight: bold;
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}


.btn-accept:hover {
transform: translateY(-1px);
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.cookie-popup a {
color: #ffffff!important;
text-decoration: underline!important;
font-size: 14px!important;
}

.hidden {
display: none;
}