body {
  --main-line: #ebebeb;
  --light-color: #fff;
  --dark-color: #222;
  --main-color: #134e47;
  --main-color-t: #fff;
  --main-bora: 10px;
  --main-bsd: 0 5px 30px rgba(0, 0, 0, 0.05);
  --main-bsd-h: 0 5px 30px rgba(0, 0, 0, 0.1);
  --main-container-pd: 15px;
  --text-space: 20px;
  --heading-fw: 700;
  --heading-space: 15px;
  --cols-number: 3;
  --cols-space: 30px;
  --rows-space: 30px;
  --padding-40: 40px;
  --padding-20: 20px;
  --space-100: 100px;
  --space-50: 50px;
  --space-45: 45px;
  --space-40: 45px;
  --space-30: 30px;
  --space-20: 20px;
  --space-15: 15px;
  --space-10: 10px;
  --space-5: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #555;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  line-height: inherit;
}
a:hover {
  color: var(--main-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--dark-color);
  font-weight: var(--heading-fw);
  margin: 0 0 var(--heading-space);
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
p {
  margin: 0 0 var(--text-space);
}
img,
video {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
.button {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  font-weight: var(--heading-fw);
  letter-spacing: -0.02em;
  color: var(--main-color-t);
  background-color: var(--main-color);
  padding: 13px 31px;
  border-radius: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: 0.2s;
}
.sticky-button:before ,
.button:before {
  position: absolute;
  content: "";
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.03) 1%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.85) 70%,
    rgba(255, 255, 255, 0.85) 71%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 55px;
  height: 100%;
  transform: skew(-10deg, 0deg);
  animation: 1.5s infinite flash-more;
}
.button:hover {
  color: var(--light-color);
  background-color: var(--dark-color);
}
.sticky-button {
    text-align: center;
    background-color: var(--main-color);
    color: #fff;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 35px;
    font-weight: 400;
    line-height: 20px;
    min-width: 210px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	position: relative;
}
.sticky-button:focus,
.sticky-button:hover{color:#fff;}
.sticky-button .tf-text {
    background-image: url(../tinified/logoen.png);
    width: 66px;
    height: 12px;
    display: inline-block;
    background-repeat: no-repeat;
}

.start-button {
  top: 140px;
  background-color: #599A26;
  display: none;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: var(--align-items);
  gap: var(--rows-space) var(--cols-space);
}
.flexbox > * {
  width: calc(
    ((100% + var(--cols-space)) / var(--cols-number)) - var(--cols-space)
  );
}
@media (min-width: 1200px) {
  body ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
  body ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: var(--main-bora-2);
  }
  body ::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: var(--main-bora-2);
  }
  body ::-webkit-scrollbar-thumb:hover {
    background-color: var(--default-color);
  }
  body ::-webkit-scrollbar-button {
    width: 0;
    height: 0;
  }
}
@media (max-width: 1499px) {
  body {
    --text-space: 17px;
    --heading-space: 13px;
    --padding-40: 30px;
    --space-100: 80px;
    --space-50: 42px;
    --space-45: 38px;
    --space-40: 33px;
    --space-30: 25px;
    --space-20: 16px;
    --space-15: 12px;
    --space-10: 8px;
    --space-5: 4px;
  }
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 33px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 19px;
  }
  h6 {
    font-size: 17px;
  }
  .button {
    padding: 12px 29px;
  }
}
@media (max-width: 1199px) {
  body {
    --text-space: 14px;
    --heading-space: 11px;
    --cols-space: 20px;
    --rows-space: 20px;
    --padding-40: 20px;
    --padding-20: 15px;
    --space-100: 60px;
    --space-50: 34px;
    --space-45: 31px;
    --space-40: 26px;
    --space-30: 20px;
    --space-20: 12px;
    --space-15: 9px;
    --space-10: 6px;
    --space-5: 3px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  .button {
    padding: 11px 27px;
  }
}
@media (max-width: 991px) {
  body {
    --cols-number: 2;
  }
}
@media (max-width: 767px) {
  body {
    --text-space: 11px;
    --heading-space: 9px;
    --cols-space: 15px;
    --rows-space: 15px;
    --padding-40: 15px;
    --padding-20: 10px;
    --space-100: 40px;
    --space-50: 26px;
    --space-45: 24px;
    --space-40: 19px;
    --space-30: 15px;
    --space-20: 8px;
    --space-15: 6px;
    --space-10: 4px;
    --space-5: 2px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 19px;
  }
  h5 {
    font-size: 17px;
  }
  h6 {
    font-size: 15px;
  }
  .button {
    padding: 10px 25px;
  }
}
@media (max-width: 479px) {
  body {
    --cols-space: 10px;
    --rows-space: 10px;
    --cols-number: 1;
  }
}
.container {
  max-width: calc(var(--main-container) + (var(--main-container-pd) * 2));
  padding: 0 var(--main-container-pd);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    --main-container: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    --main-container: 940px;
    --main-container-pd: 20px;
  }
}
@media (min-width: 1200px) {
  .container {
    --main-container: 1410px;
    --main-container-pd: 30px;
  }
}
.section {
  padding: var(--space-100) 0;
}
.section .head {
  text-align: center;
  max-width: 610px;
  margin: 0 auto var(--space-50);
}
.section .desc {
  margin: 0;
}
.section .hover {
  position: relative;
}
.section .hover:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: var(--main-bsd);
  border-radius: inherit;
  transition: 0.2s;
  z-index: -1;
  pointer-events: none;
}
.section .hover:hover:before {
  box-shadow: var(--main-bsd-h);
}
.section .item a {
  display: block;
  position: relative;
}
.section .item .zoom {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow: hidden;
}
.section .item a {
  transition: 0.4s;
}
.section .item:hover a {
  transform: scale(1.05);
}
.section .item h3 {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}
.section .item p {
  margin: 0;
}
.light {
  color: #fff;
  background-color: var(--dark-color);
  --main-line: rgba(255, 255, 255, 0.2);
  --light-color: #222;
  --dark-color: #fff;
  --main-bsd: 0 5px 30px rgba(255, 255, 255, 0.05);
  --main-bsd-h: 0 5px 30px rgba(255, 255, 255, 0.15);
}
@media (max-width: 1199px) {
  .section .item h3 {
    font-size: 17px;
    line-height: 23px;
  }
}
@media (max-width: 767px) {
  .section .item h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
.running {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  color: #fff;
  padding: 10px 0;
  background: linear-gradient(
    90deg,
    #ffa91a 0%,
    #e24e86 33.85%,
    #a146ba 65.62%,
    #5896f4 100%
  );
  background-size: 150%;
  animation: bg-run 8s linear infinite;
  --running-duration: 120s;
}
.running .inner {
  display: flex;
  animation: marquee-1 var(--running-duration) linear infinite;
}
.running .inner a {
	display: flex;
}
.running .inner a:hover {
	color:#fff;
}
.running .inner:nth-child(2) {
  animation-name: marquee-2;
}
.running .inner:nth-child(3) {
  animation-name: marquee-3;
}
.running .inner:nth-child(4) {
  animation-name: marquee-4;
}
.running:hover .inner {
  animation-play-state: paused;
}
.running .item {
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin: 0;
	margin-inline-end: var(--space-100);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.running .item svg {
	fill: #fff;
	height: 15px;
}
.header.is-sticky {
  top: 0;
  background-color: #fff;
  box-shadow: var(--main-bsd);
  padding-top: 5px;
  padding-bottom: 5px;
}
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  transition: 0.2s;
  z-index: 11;
}
.header .logo {
  width: 180px;
}
.header .logo a {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  padding: 9px 0;
}
.header .menu {
  flex: 1 1 auto;
  width: 1%;
  font-size: 15px;
  font-weight: var(--heading-fw);
  color: var(--dark-color);
  letter-spacing: -0.02em;
}
.header .menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 40px;
  padding: 0;
  margin: 0;
}
.header .menu li a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 13px 0;
}
.header .menu li a img {
  position: absolute;
  top: 0;
  right: -30px;
}
@media (min-width: 1200px) {
  .menu-open,
  .menu-title {
    display: none;
  }
}
@media (max-width: 1499px) {
  .header {
    padding: 17px 30px;
  }
  .header .logo {
    width: 216px;
  }
  .header .menu ul {
    column-gap: 32px;
  }
  .header .menu li a {
    padding: 12px 0;
  }
  .header .menu li a img {
    right: -26px;
  }
}
@media (max-width: 1199px) {
  .header {
    padding: 15px 20px;
  }
  .open-menu {
    overflow: hidden;
  }
  body:not(.open-menu) .overlay {
    opacity: 0;
    visibility: hidden;
  }
  .header .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    z-index: 12;
  }
  .header .menu-open {
    width: 23px;
  }
  .header .logo {
    width: 165px;
    padding: 0 15px;
  }
  .header .action {
    flex: 1 1 auto;
    width: 1%;
    text-align: end;
  }
  body:not(.open-menu) .header .menu {
    transform: translateX(-100%);
  }
  .header .menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    background-color: var(--light-color);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    z-index: 12;
  }
  .header .menu-title {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--light-color);
    background-color: var(--dark-color);
    padding: 13px 20px;
  }
  .header .menu-close {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .menu-close img {
    width: 12px;
  }
  .header .menu ul {
    flex: 1 1 auto;
    height: 1%;
    display: block;
    text-align: inherit;
    padding: 10px 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .header .menu ul li {
    display: block;
  }
  .header .menu ul li a {
    display: block;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
  .header .menu ul li a:before {
    display: block;
    content: "";
    border-top: 1px solid var(--main-line);
    margin-top: -12px;
    margin-bottom: 12px;
  }
  .header .menu ul > :first-child > a:before {
    display: none;
  }
  .header .menu li a img {
    right: auto;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 15px;
  }
}
.banner {
  background-image: url(../tinified/header-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 920px;
  text-align: center;
  padding: 155px 0;
}
.banner .subtitle {
  display: inline-block;
  vertical-align: top;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  border-radius: 90px;
  padding: 8px 25px;
  color: #fff;
  background-color: var(--dark-color);
  margin: 0;
}
.banner .title {
  font-size: 55px;
  line-height: 70px;
  font-weight: 800;
  margin: var(--space-30) 0 0;
}
.banner .title span {
  position: relative;
  color: var(--main-color);
}
.banner .title span img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}
.banner .desc {
  max-width: 610px;
  font-size: 16px;
  line-height: 28px;
  color: var(--dark-color);
  font-weight: 500;
  margin: var(--space-30) auto 0;
}
.banner .button {
  width: 200px;
  max-width: calc(50% - 6px);
  padding-inline-start: 15px;
  padding-inline-end: 15px;
  margin: var(--space-45) 0 0;
  margin-inline-end: 3px;
}
.banner .button:last-child {
  margin-inline-start: 3px;
}
.banner .button:last-child:not(:hover) {
    color: var(--light-color);
    background-color: var(--dark-color);
	animation: horizontal-shaking 6s ease infinite;
}
.banner .button:last-child .tf-text {
    background-image: url(../tinified/logoen.png);
    width: 66px;
    height: 12px;
    display: inline-block;
    background-repeat: no-repeat;
}
@media (max-width: 1499px) {
  .banner {
    min-height: 780px;
    padding: 115px 0;
  }
  .banner .title {
    font-size: 50px;
    line-height: 64px;
  }
  .banner .desc {
    max-width: 540px;
    font-size: 15px;
    line-height: 26px;
  }
  .banner .button {
    width: 190px;
  }
}
@media (max-width: 1199px) {
  .banner {
    min-height: 660px;
    padding: 75px 0;
  }
  .banner .title {
    font-size: 45px;
    line-height: 58px;
  }
}
@media (max-width: 767px) {
  .banner {
    min-height: 695px;
  }
  .banner .title {
    font-size: 36px;
    line-height: 48px;
  }
  .banner .desc {
    max-width: 540px;
    font-size: 14px;
    line-height: 24px;
  }
  .banner .button {
    width: 182px;
  }
}
.site {
  overflow: hidden;
}
.feature-icon {
  background-color: #fbf8f4;
}
.feature-icon .item {
	text-align: center;
	padding: var(--padding-40);
	background-color: #fff;
	box-shadow: 0px 5px 30px 0px #4847790D;
}
.footer-top .item:hover img,
.optimize .item:hover img,
.save .item:hover img,
.feature-icon .item:hover img {
  animation: bounceIn 0.5s;
}
.feature-icon .item h3 {
  margin: var(--space-20) 0 var(--space-10);
}
.feature .item {
  box-shadow: 0 0 0 1px var(--main-line) inset;
  border-radius: var(--main-bora);
  padding: var(--padding-20);
}
.feature .item figure {
  border-radius: var(--main-bora);
}
.feature .item h3 {
  margin: var(--space-20) 0 var(--space-5);
}
.language {
  background-color: #124a2f;
  --item-size: 150px;
}
.language .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: var(--item-size);
  height: var(--item-size);
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  margin: auto;
}
.language .item:before {
  background-color: #18643f;
  box-shadow: none !important;
}
.language .item:not(:hover):before {
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.language .item h3 {
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  margin: var(--space-10) 0 0;
}
@media (max-width: 1499px) {
  .language {
    --item-size: 135px;
  }
  .language .item:not(:hover):before {
    top: 9px;
    bottom: 9px;
    left: 9px;
    right: 9px;
  }
  .language .item h3 {
    font-size: 13px;
    line-height: 17px;
  }
}
@media (max-width: 1199px) {
  .language {
    --item-size: 121px;
  }
}
@media (max-width: 767px) {
  .language {
    --item-size: 117px;
  }
  .language .item h3 {
    font-size: 12px;
    line-height: 16px;
  }
}
.demo {
  background-color: #fbf8f4;
  text-align: center;
}
.demo .item a {
  padding:20px 10px;
  border-radius: var(--main-bora);
  background: #fff;
}
.demo .item a > img {
	position: absolute;
	top: 20px;
	left: 20px;
}
.demo .item .zoom img {
  transform-origin: bottom;
}
.demo .item figure {
  border-radius: var(--main-bora);
}
.demo .item h3 {
  font-size: 16px;
  line-height: 22px;
  margin: var(--space-20) 0 var(--space-5);
}
.demo .item p {
  font-size: 13px;
  line-height: 18px;
}
.demo .foot h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  margin-top: var(--space-100);
}
.demo .foot h2 b {
  font-weight: 800;
}
.demo .foot p {
  margin: var(--space-10) 0 var(--space-30);
}
.demo .foot .button {
  width: 250px;
}
@media (max-width: 1499px) {
  .demo .foot h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .demo .foot .button {
    width: 240px;
  }
}
@media (max-width: 1199px) {
  .demo .item h3 {
    font-size: 15px;
    line-height: 20px;
  }
  .demo .item p {
    font-size: 12px;
    line-height: 16px;
  }
  .demo .foot h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .demo .foot .button {
    width: 230px;
  }
}
@media (max-width: 767px) {
  .demo .foot h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .demo .foot .button {
    width: 220px;
  }
}
.mobile {
  text-align: center;
  --cols-number: 2;
  --cols-space: 100px;
  --justify-content: center;
}
.mobile .item {
  display: flex;
  align-items: center;
  gap: var(--space-30);
}
.mobile .item .video {
  width: 300px;
  max-width: 56%;
  border: 3px solid var(--dark-color);
  border-radius: 34px;
  overflow: hidden;
}
.mobile .item .content {
  flex: 1 1 auto;
  width: 1%;
  padding: 0 var(--space-30);
}
.mobile .item h3 {
  font-size: 20px;
  line-height: 28px;
}
.mobile .item .content img {
  width: 180px;
  border: 1px solid var(--main-line);
  border-radius: var(--main-bora);
}
.mobile .item p:nth-child(2) {
  margin: var(--space-10) 0 var(--space-30);
}
.mobile .item p:nth-child(4) {
  margin: var(--space-15) 0 var(--space-30);
}
.mobile .item .button {
  display: inline-block;
  vertical-align: top;
  width: 200px;
}
@media (max-width: 1499px) {
  .mobile {
    --cols-space: 60px;
  }
  .mobile .item h3 {
    font-size: 19px;
    line-height: 27px;
  }
  .mobile .item .content img {
    width: 172px;
  }
  .mobile .item .button {
    width: 190px;
  }
}
@media (max-width: 1199px) {
  .mobile {
    --cols-space: 30px;
  }
  .mobile .item .content {
    font-size: 13px;
    line-height: 22px;
    padding: 0;
  }
  .mobile .item h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .mobile .item .content img {
    width: 156px;
  }
  .mobile .item .button {
    width: 180px;
  }
}
@media (max-width: 991px) {
  .mobile {
    --cols-number: 1;
  }
  .mobile .item {
    max-width: 440px;
  }
}
@media (max-width: 767px) {
  .mobile {
    --cols-space: 15px;
  }
  .mobile .item {
    gap: 10px;
  }
  .mobile .item h3 {
    font-size: 17px;
    line-height: 25px;
  }
  .mobile .item .button {
    width: 170px;
  }
}
.section-small {
  padding: 60px;
  background-color: #fbf8f4;
  border-radius: var(--main-bora);
}
.section-small .head {
  margin-bottom: var(--space-30);
}
.section-small .title {
  font-size: 32px;
}
.page {
  padding: var(--space-40) 0 0;
  text-align: center;
  margin-top: calc(0px - var(--space-40));
  --cols-number: 1;
  --main-bsd: 0 5px 15px rgba(0, 0, 0, 0.02);
  --main-bsd-h: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.page .item {
  font-size: 0;
  line-height: 0;
  border-radius: var(--main-bora);
  overflow: hidden;
}
.page .item a > img {
  border-radius: var(--main-bora) var(--main-bora) 0 0;
}
.page .item figure {
  border-radius: 0 0 var(--main-bora) var(--main-bora);
}
.page .item h3 {
  font-size: 16px;
  line-height: 22px;
  margin-top: var(--space-20);
}
.infinite,
.load-more,
.live-search,
.seo,
.header-footer .flexbox {
  --cols-number: 2;
}
.live-search img:last-child,
.seo img:last-child {
  margin-top: 1px;
}
@media (max-width: 1499px) {
  .section-small {
    padding: 50px 40px;
  }
  .section-small .title {
    font-size: 29px;
  }
}
@media (max-width: 1199px) {
  .section-small {
    padding: 40px 30px;
  }
  .section-small .title {
    font-size: 26px;
  }
  .page .item h3 {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .section-small {
    padding: 30px 15px;
  }
  .section-small .title {
    font-size: 23px;
  }
  .infinite,
  .load-more,
  .live-search,
  .seo,
  .header-footer .flexbox {
    --cols-number: 1;
  }
}
.save {
  background-color: #fbf8f4;
  margin-top: var(--space-100);
  text-align: center;
  --cols-number: 5;
}
.save .item {
  background-color: #fff;
  border-radius: var(--main-bora);
  padding: var(--padding-20);
  display: flex;
  align-items: center;
  text-align: start;
}
.save .item h3 {
  flex: 1 1 auto;
  width: 1%;
  padding-inline-start: var(--space-15);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.save .button {
  margin-top: var(--space-50);
}
@media (max-width: 1499px) {
  .save .item h3 {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (max-width: 1199px) {
  .save {
    --cols-number: 4;
  }
}
@media (max-width: 991px) {
  .save {
    --cols-number: 3;
  }
}
@media (max-width: 767px) {
  .save .item h3 {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 479px) {
  .save {
    --cols-number: 2;
  }
}
.optimize {
  text-align: center;
  --cols-number: 4;
}
.optimize .item {
  background-color: #fbf8f4;
  border-radius: var(--main-bora);
  padding: var(--padding-40) var(--space-30);
}
.optimize .item h3 {
  font-size: 16px;
  line-height: 22px;
  margin: var(--space-20) 0 var(--space-10);
}
@media (max-width: 1499px) {
  .optimize .item h3 {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (max-width: 1199px) {
  .optimize {
    --cols-number: 3;
  }
}
@media (max-width: 767px) {
  .optimize {
    --cols-number: 2;
  }
  .optimize .item h3 {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 479px) {
  .optimize {
    --cols-number: 1;
  }
}
.feature {
}
.feature .item {
}
.review {
  background-color: #fbf8f4;
  text-align: center;
}
.review .hover:before {
  box-shadow: none;
}
.review .item {
  background-color: #fff;
  box-shadow: 0 0 0 1px var(--main-line);
  border-radius: var(--main-bora);
  padding: var(--space-50) var(--space-30);
}
.review .item h3 {
  margin: var(--space-10) 0 var(--space-20);
}
.review .item img:nth-child(4) {
  margin: var(--space-10) 0;
}
.review .item span {
  display: block;
  color: #999;
}
.review .item span b {
  color: var(--dark-color);
  font-weight: var(--heading-fw);
}
@media (max-width: 1499px) {
  .review {
    background-color: #fbf8f4;
    text-align: center;
  }
  .review .hover:before {
    box-shadow: none;
  }
  .review .item {
    background-color: #fff;
    box-shadow: 0 0 0 1px var(--main-line);
    border-radius: var(--main-bora);
    padding: var(--space-50) var(--space-30);
  }
  .review .item h3 {
    margin: var(--space-10) 0 var(--space-20);
  }
  .review .item img:nth-child(4) {
    margin: var(--space-10) 0;
  }
  .review .item span {
    display: block;
    color: #999;
  }
  .review .item span b {
    color: var(--dark-color);
    font-weight: var(--heading-fw);
  }
}
.footer {
  background-color: #090f11;
}
.footer-top {
  padding: var(--space-100) 0;
  border-bottom: 1px solid #182124;
  --rows-space: 30px;
}
.footer-top .item {
  display: flex;
  align-items: flex-start;
}
.footer-top .item .content {
  flex: 1 1 auto;
  width: 1%;
  padding-inline-start: var(--space-30);
}
.footer-top .item h3 {
  font-size: 16px;
  line-height: 22px;
}
.footer-top .item p {
  color: #9c9fa0;
  margin: var(--space-10) 0 var(--space-30);
}
.footer-top .item a {
  text-decoration: underline;
}
@media (max-width: 1499px) {
  .footer-top .item h3 {
    font-size: 15px;
    line-height: 21px;
  }
  .footer-top .item img {
    width: 42px;
  }
}
@media (max-width: 1199px) {
  .footer-top .item img {
    width: 41px;
  }
}
@media (max-width: 991px) {
  .footer-top .item img {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .footer-top .item h3 {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-top .item img {
    width: 39px;
  }
}
@media (max-width: 479px) {
  .footer-top .item img {
    width: 38px;
  }
}
.footer-bottom {
  text-align: center;
  padding: var(--space-100) 0;
  max-width: 610px;
  margin: 0 auto;
}
.footer-bottom .subtitle {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  color: #15bcdc;
  padding: 7px 15px;
  background-color: #282e31;
}
.footer-bottom .title {
  font-size: 48px;
  line-height: 50px;
  font-weight: 300;
  margin: var(--space-20) 0;
}
.footer-bottom .title b {
  font-weight: var(--heading-fw);
}
.footer-bottom .desc {
  max-width: 500px;
  margin: auto;
}
.footer-bottom .desc u {
  color: #15bcdc;
}
.footer-bottom .button {
  width: 250px;
  margin-top: var(--space-50);
}
@media (max-width: 1499px) {
  .footer-bottom {
    max-width: 570px;
  }
  .footer-bottom .title {
    font-size: 44px;
    line-height: 46px;
  }
  .footer-bottom .button {
    width: 240px;
  }
}
@media (max-width: 1199px) {
  .footer-bottom {
    max-width: 510px;
  }
  .footer-bottom .title {
    font-size: 40px;
    line-height: 42px;
  }
  .footer-bottom .button {
    width: 230px;
  }
}
@media (max-width: 767px) {
  .footer-bottom {
    max-width: 610px;
  }
  .footer-bottom .title {
    font-size: 36px;
    line-height: 38px;
  }
  .footer-bottom .button {
    width: 220px;
  }
}
.copyright {
  text-align: center;
  color: #9c9fa0;
  padding: var(--space-30) 0 var(--space-100);
  border-top: 1px solid #182124;
}
.copyright p {
  margin: 0;
}
.copyright span {
  color: #fff;
}
a.backtotop:not(.show) {
  transform: scale(0);
}
.backtotop {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: 0.2s;
  background-color: var(--dark-color);
  border-radius: 50%;
  box-shadow: 0 5px 30px rgba(255, 255, 255, 0.15);
  z-index: 11;
}
.backtotop img {
  width: 14px;
}
.backtotop:hover {
  background-color: var(--main-color);
}
@media (max-width: 1499px) {
  .backtotop {
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 1199px) {
  .backtotop {
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 767px) {
  .backtotop {
    bottom: 10px;
    right: 10px;
  }
}
@keyframes flash {
  from,
  10%,
  to {
    opacity: 1;
  }
  5%,
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes ovic-animation-scale-updown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bg-run {
  0% {
    background-position: 0;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
@keyframes flash-more {
  0% {
    left: 0;
    opacity: 0;
  }
  5%,
  80% {
    opacity: 0;
  }
  48% {
    opacity: 0.2;
  }
  100% {
    left: 82%;
  }
}
@keyframes ovic-marquee {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee-1 {
  0% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  25% {
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
  }
  26% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  49% {
    transform: translateX(200%);
    opacity: 0;
    visibility: hidden;
  }
  50% {
    transform: translateX(200%);
    opacity: 1;
    visibility: visible;
  }
  75% {
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes marquee-2 {
  0% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  25% {
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
  }
  50% {
    transform: translateX(-200%);
    opacity: 1;
    visibility: visible;
  }
  51% {
    transform: translateX(-200%);
    opacity: 0;
    visibility: hidden;
  }
  74% {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
  75% {
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes marquee-3 {
  0% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  25% {
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
  }
  50% {
    transform: translateX(-200%);
    opacity: 1;
    visibility: visible;
  }
  75% {
    transform: translateX(-300%);
    opacity: 1;
    visibility: visible;
  }
  76% {
    transform: translateX(-300%);
    opacity: 0;
    visibility: hidden;
  }
  99% {
    transform: translateX(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes marquee-4 {
  0% {
    transform: translateX(-400%);
    opacity: 1;
    visibility: visible;
  }
  1% {
    transform: translateX(-400%);
    opacity: 0;
    visibility: hidden;
  }
  24% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  25% {
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
  }
  50% {
    transform: translateX(-200%);
    opacity: 1;
    visibility: visible;
  }
  75% {
    transform: translateX(-300%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateX(-400%);
    opacity: 1;
    visibility: visible;
  }
}
.ovic-swiper {
  position: relative;
  --swiper-transition-duration: 0.3s;
  --swiper-navigation-width: 15px;
  --swiper-navigation-height: 30px;
  --swiper-navigation-size: 20px;
  --swiper-navigation-sides-offset: -15px;
  --swiper-navigation-color: var(--dark-color);
  --swiper-navigation-color-hover: var(--main-color);
  --swiper-pagination-top: auto;
  --swiper-pagination-bottom: auto;
  --swiper-pagination-bullet-inactive-color: var(--dark-color);
  --swiper-pagination-bullet-inactive-opacity: 0.15;
  --swiper-pagination-color: var(--main-color);
  --swiper-pagination-bullet-horizontal-gap: 5px;
}
.swiper {
  position: static;
  padding: 30px 15px;
  margin: -30px -15px;
}
.swiper-wrapper {
  transition-duration: var(--swiper-transition-duration) !important;
}
.swiper-button-next,
.swiper-button-prev {
  width: var(--swiper-navigation-width);
  height: var(--swiper-navigation-height);
  margin-top: calc(0px - (var(--swiper-navigation-height) / 2));
  transition: transform 0.2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--swiper-navigation-color-hover);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: var(--swiper-navigation-size);
}
.swiper-pagination {
  position: relative;
  font-size: 0;
  line-height: 0;
  margin-top: var(--space-30);
}

#open-store{
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 200%);
  z-index: 5;
  border-radius: 30px;
  color: #222222;
  background-color: #fcb200;
  padding: 15px 50px;
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, .2);
  font-size: 14px;
  transition: transform 350ms ease-in-out;
  max-width: 700px;
}

#open-store .inner-open-store{
  display: flex;
  overflow: hidden;
}

#open-store .inner-open-store:hover .open-store-link{
  animation-play-state: paused;
}

#open-store svg{
  fill: #222222;
}

#open-store.show{
  transform: translate(-50%, 0);
}

#open-store .open-store-link{
	color: #222222;
	text-decoration: none;
}

#open-store .open-store-link .inner-link{
	position: relative;
	display: flex;
	justify-content: center;
	gap: 10px;
}


#open-store .open-store-link .icon svg{
  height: 20px;
}

#open-store .close-button{
  background: none;
  border: none;
  outline: none;
  position: absolute;
  top: calc(50% - 2px);
  right: 13px;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: lighter;
  color: currentColor;
  cursor: pointer;
  line-height: 0;
}

#open-store .close-button svg{
  width: 15px;
  height: 15px;
}

#open-store .open-store-link{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  animation: slide-left 8s linear infinite;
  transition: all .3s ease;
  flex: 0 0 100%;
}
@-webkit-keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.popup_passwork{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:rgba(0, 0, 0, 0.8);
	z-index: 999;
	display:none;
}
.open_popup .popup_passwork{
	display:flex;
	justify-content: center;
	align-items: center;
}
.popup_passwork .popup-body{
	width: 600px;
	height: 315px;
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.popup_passwork .popup-body .close-popup{
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 14px;
	color: var(--main-color);
	cursor: pointer;
}
.popup_passwork .popup-body img{width: 100px;}
.popup_passwork .popup-body h2{margin: 15px 0;font-size: 24px;}
.popup_passwork .popup-body h2 span{color: red;}
.popup_passwork .popup-body p{}

.popup_passwork .popup-link{
	min-width: 200px;
}

 .popup_passwork .popup-link:hover{
    box-shadow: 0px 0px 20px 5px #73d3ff;
 }
 
 .uminex-tabs__header-inner {
	display: flex;
    justify-content: center;
	margin-bottom: var(--space-50);
	flex-direction: column;
}
.uminex-tabs__header-inner ul,
.uminex-tabs__header-inner .uminex-tabs__header {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.uminex-tabs__header-inner ul li,
.uminex-tabs__header-inner .uminex-tabs__header .tab-title {
	height: 50px;
	min-width: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: 1px solid #E0E6EF;
	border-radius: 30px;
	padding: 0 30px;
	transition: 0.4s;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.uminex-tabs__header-inner ul li.popular {
	background-color:#f6d7d2;
	border-color:#f6d7d2;
	color:#d82940;
}
.uminex-tabs__header-inner ul li.new {
	background-color:#d6d8f5;
	border-color:#d6d8f5;
	color:#303ace;
	animation: horizontal-shaking 6s ease infinite;
	animation-delay: 2s;
	transform-origin: 50% 50%;
}
.uminex-tabs__header-inner ul li.all ,
.uminex-tabs__header-inner ul li:hover,
.uminex-tabs__header-inner ul li.active,
.uminex-tabs__header-inner .uminex-tabs__header .tab-title:hover,
.uminex-tabs__header-inner .uminex-tabs__header .tab-title.active {
	color: var(--main-color-t);
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.uminex-tabs__header-inner .uminex-tabs__header .tab-title .tab-title__text {}

.alo-table {
  background-color: #fff;
  padding-top: 0;
  overflow-y: auto;
}
.responsivTbl {
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: auto;
}
.alo-table table {
  width: 100%;
  border: 0 none;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  table-layout: auto;
}
.alo-table tr.head td {
  color: #152942;
  font-size: 110%;
  font-weight: 700;
  background-color: #f4f4f4;
}
.alo-table tr:nth-child(even) {
  background-color: #f6f6f6;
}
.alo-table td {
  padding: 15px;
  text-align: center;
  border: 0 none;
  vertical-align: middle;
}
.alo-table svg {
  fill: #40b884;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.alo-table .total {
  color: #b2bdcb;
  font-size: 15px;
  line-height: 1.1;
  background-color:var(--main-color);
}
.alo-table .total b {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}


@media (min-width: 768px) {
  .ovic-swiper {
    --swiper-navigation-width: 24px;
    --swiper-navigation-size: 24px;
    --swiper-navigation-sides-offset: -24px;
  }
}
@media (min-width: 992px) {
  .ovic-swiper {
    --swiper-navigation-width: 30px;
    --swiper-navigation-sides-offset: -30px;
  }
}
@media (min-width: 1200px) {
  .ovic-swiper {
    --swiper-navigation-size: 27px;
  }
  .swiper:not(:hover) .swiper-button-next,
  .swiper:not(:hover) .swiper-button-prev {
    transform: scale(0);
  }
}
@media (min-width: 1500px) {
  .ovic-swiper {
    --swiper-navigation-width: 40px;
    --swiper-navigation-size: 30px;
    --swiper-navigation-sides-offset: -40px;
  }
  .swiper-button-next {
    padding-inline-start: 10px;
  }
  .swiper-button-prev {
    padding-inline-end: 10px;
  }
}
@media (max-width: 480px) {
	#open-store {
		padding: 5px 25px;
		font-size: 12px;
	}
	.banner .button:last-child .tf-text {
		display:none;
	}
}
@keyframes horizontal-shaking {

  0%,
  18%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  2%,
  6%,
  10%,
  14% {
    transform: translate3d(-5px, 0, 0)
  }

  4%,
  8%,
  12%,
  16% {
    transform: translate3d(5px, 0, 0)
  }
}
