/* Main CSS
-------------------------------------------------- */
:root {
  --white: #fff;
  --black: #000;
  --color-100: #f06724;
  --bk-grade-100: #eaeaea;
  --bk-grade-150: #d6d6d6;
  --bk-grade-200: #c1c1c1;
  --bk-grade-250: #adadad;
  --bk-grade-300: #999999;
  --bk-grade-350: #848484;
  --bk-grade-400: #707070;
  --bk-grade-450: #5b5b5b;
  --bk-grade-500: #474747;
  --bk-grade-550: #333333;
  --bk-grade-600: #2d2d2d;
  --bk-grade-650: #282828;
  --bk-grade-700: #232323;
  --bk-grade-750: #1e1e1e;
  --bk-grade-800: #191919;
  --bk-grade-850: #141414;
  --bk-grade-900: #0f0f0f;
  --bk-grade-950: #0a0a0a;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.eot");
  src: url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Roboto";
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
}

a,
button {
  transition: 0.35s ease-out;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 150%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:focus,
button:focus {
  outline: none !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::selection {
  color: var(--white);
  background: var(--color-100);
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-100) var(--white);
}

/* Works on Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--color-100);
  border-radius: 20px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.4);
}

.form-control:focus {
  box-shadow: none;
}

.return-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.35s ease-out;
  z-index: 10;
}

.return-top img {
  position: relative;
  width: 20px;
  animation: upBounce 2s infinite;
}

.return-top:hover span img {
  top: 5px;
}

.nav-support {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  left: 20px;
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 10;
}

.nav-support i {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
}

.nav-support i img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: 0.2s ease-out;
}

.nav-support i .hover {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}

.nav-support:hover {
  background-color: var(--color-100);
  animation: supportPulse 1.5s infinite;
}

.nav-support:hover i img {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
}

.nav-support:hover i .hover {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.nav-call {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  width: 60px;
  background-color: var(--color-100);
  transform: translateY(-50%);
  z-index: 1020;
}

.nav-call .call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-bottom: 1px solid var(--white);
}

.nav-call .call-icon img {
  width: 20px;
  animation: anmCall 4s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.nav-call .call-label {
  position: relative;
  padding: 0.5rem;
  height: 180px;
}

.nav-call .call-label .call-text {
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  transform: rotate(270deg) translateX(-50%);
  transform-origin: 0 0;
}

.nav-call:hover {
  background-color: #0d5985;
}

.navbar-main {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--white);
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 1030;
}

.navbar-main .navbar-collapse {
  flex-direction: column;
  align-items: stretch;
}

.navbar-main .logo {
  width: 150px;
  margin-right: 125px;
}

.navbar-main .logo img {
  width: 100%;
}

.navbar-main.navbar-fixed {
  position: fixed;
}

.container-nav {
  position: relative;
}

.dropdown-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 96px;
  max-width: 1320px;
  padding: 0;
  margin: 0 auto;
  background-color: var(--white);
  background-position: right 3px bottom 3px;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.dro-mega-cover {
  display: flex;
  background-color: var(--white);
}

.dro-mega-cover .dro-mega-pro {
  flex: 1 1 0;
  border-right: 1px solid var(--bk-grade-150);
}

.dro-mega-cover .dro-mega-link {
  flex: 0 0 450px;
  max-width: 450px;
}

.dro-mega-pro {
  display: flex;
  padding: 2.5rem;
}

.dro-mega-pro .mega-pro-img {
  flex: 0 0 300px;
  max-width: 300px;
}

.dro-mega-pro .mega-pro-img img {
  width: 100%;
}

.dro-mega-pro .mega-pro-body {
  flex: 1 1 0;
  padding: 2rem 0 0 2rem;
}

.dro-mega-pro .mega-pro-body h3 {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.dro-mega-pro .mega-pro-body p {
  color: var(--bk-grade-450);
  font-weight: normal;
  margin: 0 0 1rem 0;
}

.dro-mega-link {
  padding: 2.5rem;
}

.dro-mega-link li {
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--bk-grade-100);
}

.dro-mega-link li a {
  position: relative;
  display: block;
  color: var(--bk-grade-750);
  font-weight: 500 !important;
  padding: 0.75rem 0.5rem 0.75rem 1.5rem !important;
}

.dro-mega-link li a::after {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  font-family: "FontAwesome";
  color: var(--bk-grade-750);
  transform: translateY(-50%);
  transition: 0.35s ease-out;
}

.dro-mega-link li a:hover {
  color: var(--color-100) !important;
  padding: 0.75rem 0.5rem 0.75rem 2rem !important;
}

.dro-mega-link li a:hover::after {
  color: var(--color-100);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.nav-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-nav {
  display: flex;
}

.info-nav .info-item {
  position: relative;
}

.info-nav .info-item + .info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 1px;
  height: 16px;
  background-color: var(--bk-grade-200);
}

.info-nav .info-item .info-link {
  display: flex;
  align-items: center;
  color: var(--bk-grade-950);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.info-nav .info-item .info-link .info-icon {
  flex: 0 0 24px;
  max-width: 24px;
  margin-right: 0.5rem;
}

.info-nav .info-item .info-link .info-icon img {
  width: 100%;
}

.info-nav .info-item .info-link .info-label {
  flex: 1 1 0;
}

.tool-nav {
  display: flex;
}

.tool-nav .tool-item + .tool-item {
  margin-left: 0.5rem;
}

.tool-nav .tool-item .tool-link {
  display: block;
  width: 32px;
  padding: 0.1rem;
  border-radius: 50%;
}

.tool-nav .tool-item .tool-link img {
  width: 100%;
}

.tool-nav .tool-item .tool-link:hover {
  background-color: var(--color-100);
}

.main-nav .nav-item .nav-link {
  color: var(--bk-grade-950) !important;
  font-weight: 500;
  padding: 0 1rem;
}

.main-nav .nav-item .nav-link .nav-block {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0 0.5rem;
}

.main-nav .nav-item .nav-link .nav-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background-color: var(--color-100);
  transition: 0.35s ease-out;
}

.main-nav .nav-item .nav-link:hover {
  color: var(--color-100) !important;
}

.main-nav .nav-item .nav-link:hover .nav-block::after {
  height: 3px;
}

.main-nav .dropdown-toggle::after {
  content: "\f107" !important;
  font-family: "FontAwesome";
  font-size: 0.75rem;
  margin-left: 0.255em;
  vertical-align: 0;
  border-top: 0 solid;
  border-right: 0 solid transparent;
  border-bottom: 0;
  border-left: 0 solid transparent;
}

.nav-schedule-demo {
  color: var(--bk-grade-950);
  font-weight: 500;
  padding: 0.25rem 1rem;
  border: 1px solid var(--bk-grade-750);
  border-radius: 0.25rem;
}

.nav-schedule-demo img {
  width: 20px;
  margin-left: 0.5rem;
}

.nav-schedule-demo:hover {
  color: var(--white);
  border: 1px solid var(--color-100);
  background-color: var(--color-100);
}

.banner-sec {
  position: relative;
  overflow: hidden;
}

.banner-cover {
  position: relative;
}

.banner-cover .carousel .carousel-inner .carousel-item.active img {
  transition: transform 5000ms linear 0s;
  transform: scale(1.1, 1.1);
}

.banner-cover .carousel .carousel-inner .carousel-item img,
.banner-cover .carousel .carousel-inner .carousel-item video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner-cover .carousel-nav {
  position: absolute;
  right: calc(((100vw - 1320px) / 2));
  bottom: 8rem;
  z-index: 10;
}

.banner-cover .carousel-nav .carousel-btn {
  width: 60px;
  height: 60px;
  background-color: transparent;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.banner-cover .carousel-nav .carousel-btn:hover {
  background-color: var(--color-100);
  border: 2px solid var(--color-100);
}

.banner-cover .carousel-nav .carousel-prev {
  background-image: url(../images/arrow-left.svg);
}

.banner-cover .carousel-nav .carousel-next {
  background-image: url(../images/arrow-right.svg);
}

.banner-cover .carousel-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 20;
}

.banner-cover .carousel-content .carousel-hd {
  position: relative;
  max-width: 750px;
}

.banner-cover .carousel-content .carousel-hd h1 {
  color: var(--white);
  font-size: 6rem;
  font-weight: bold;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.banner-cover .carousel-content .carousel-hd .txt-orange {
  color: var(--color-100);
}

.line-anim {
  position: relative;
  width: 60px;
  height: 6px;
  background-color: #eb4e16;
  border-radius: 25px;
  animation: lineShapeANM 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.about-sec {
  position: relative;
  padding: 6rem 0 6rem;
}

.about-cover {
  margin-top: 4rem;
  padding-left: calc(((100vw - 1320px) / 2));
  padding-right: 3rem;
}

.about-cover .about-hd {
  margin-bottom: 2rem;
}

.about-cover .about-hd .line-anim {
  margin-bottom: 1rem;
}

.about-cover .about-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.about-cover p {
  color: var(--bk-grade-950);
  line-height: 175%;
  text-align: justify;
}

.about-cover .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bk-grade-750);
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0 0 0;
  background-color: transparent;
  border-radius: 0.25rem;
  box-shadow: none;
}

.about-cover .btn-more .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.about-cover .btn-more:hover {
  color: var(--white);
  background-color: var(--bk-grade-750);
}

.about-cover .btn-more:hover .icon-right {
  color: var(--bk-grade-750);
  background-color: var(--white);
  animation: iconMoveRight 1s infinite;
}

.about-img-cover {
  position: relative;
}

.about-img-cover .about-img {
  padding-left: 10rem;
}

.about-img-cover .about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.about-img-cover .about-txt-deco {
  position: absolute;
  left: 0;
  top: 2rem;
  max-width: 550px;
}

.about-img-cover .about-txt-deco h2 {
  color: transparent;
  font-size: 5.625rem;
  font-weight: bold;
  line-height: normal;
  -webkit-text-stroke: 2px var(--color-100);
  text-transform: uppercase;
}

.facts-sec {
  position: relative;
}

.facts-list {
  display: flex;
}

.facts-list .facts-item:nth-child(1) {
  flex: 1 1 0;
}

.facts-list .facts-item:nth-child(2) {
  flex: 0 0 550px;
  max-width: 550px;
}

.facts-list .facts-item:nth-child(3) {
  flex: 1 1 0;
}

.facts-item {
  position: relative;
  overflow: hidden;
}

.facts-item figure {
  margin: 0;
  background-color: var(--black);
  overflow: hidden;
}

.facts-item figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.35s ease-out;
}

.facts-item .fact-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2.5rem 2.5rem;
  transform: translateY(100%) translateY(-75px);
  transition: transform 400ms;
  z-index: 10;
}

.facts-item .fact-title {
  margin-bottom: 2rem;
}

.facts-item .fact-title h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
  text-transform: uppercase;
}

.facts-item .fact-content {
  visibility: hidden;
  transform: translateY(150%);
  backface-visibility: hidden;
  transition: transform 400ms;
}

.facts-item .fact-content p {
  color: var(--white);
  margin: 0;
  text-align: justify;
}

.facts-item:hover figure img {
  transform: scale(1.1);
  opacity: 0.5;
}

.facts-item:hover .fact-body {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.facts-item:hover .fact-title h3 {
  color: var(--white);
}

.facts-item:hover .fact-content {
  visibility: visible;
  transform: translateY(0);
}

.facts-list .facts-item:nth-child(1) .fact-body {
  padding-left: calc(((100vw - 1320px) / 2));
}

.facts-list .facts-item:nth-child(3) .fact-body {
  padding-right: calc(((100vw - 1320px) / 2));
}

.pro-suite-sec {
  position: relative;
  padding: 4rem 0 4rem;
  background-color: var(--bk-grade-650);
}

.products-caro-hd {
  margin-bottom: 2rem;
  text-align: center;
}

.products-caro-hd .line-anim {
  margin: 0 auto 1.5rem;
  animation: lineShapeCenterANM 2s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.products-caro-hd h2 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.products-carousel {
  overflow: hidden;
}

.products-carousel .owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #bcbcbc;
  transition: 0.35s ease-out;
}

.products-carousel .owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: 0.35s ease-out;
}

.products-carousel .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--color-100);
}

.products-carousel .owl-theme .owl-dots .owl-dot.active span::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.products-carousel .owl-theme .owl-nav .owl-prev,
.products-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: 0px;
  padding: 0px;
  background-color: var(--color-100);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.35s ease-out;
}

.products-carousel .owl-theme .owl-nav .owl-prev {
  left: -5rem;
  background-image: url(../images/arrow-left.svg);
}

.products-carousel .owl-theme .owl-nav .owl-next {
  right: -5rem;
  background-image: url(../images/arrow-right.svg);
}

.products-carousel .owl-theme .owl-nav .owl-prev:hover,
.products-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-200);
}

.products-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 25px;
}

.products-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 25px;
}

.product-item {
  max-width: 200px;
  margin: 2rem auto 0;
}

.product-item figure {
  position: relative;
  max-width: 120px;
  padding: 0.25rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.product-item figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--bk-grade-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.product-item figure img {
  position: relative;
  width: 100%;
  transition: 0.35s ease-out;
}

.product-item .pro-body {
  min-height: 65px;
  text-align: center;
}

.product-item .pro-body p {
  color: var(--white);
  font-size: 1.125rem;
  margin: 0;
}

.product-item .pro-footer {
  text-align: center;
}

.product-item .pro-footer .btn-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bk-grade-350);
  font-size: 1.125rem;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid var(--bk-grade-450);
  border-radius: 50%;
}

.product-item .pro-footer .btn-pro:hover {
  color: var(--white);
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.product-item:hover figure {
  animation: proIconPulse 1s ease 0s infinite;
}

.product-item:hover figure::before {
  transform: translate(-50%, -50%) scale(0.95);
}

.product-item:hover figure img {
  transform: scale(0.75);
}

.pro-collapse-item {
  padding: 1.5rem 1.5rem;
}

.pro-collapse-item h3 {
  position: relative;
  color: var(--bk-grade-150);
  font-size: 1.25rem;
  font-weight: normal;
  padding-bottom: 1rem;
  margin: 0 0 1.5rem 0;
}

.pro-collapse-item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--color-100);
}

.pro-collapse-item p {
  color: var(--bk-grade-350);
}

.pro-collapse-item .btn-more {
  position: relative;
  color: var(--white);
  padding: 0.5rem 0 0.5rem;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.pro-collapse-item .btn-more::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background-color: var(--color-100);
  transition: 0.35s ease-out;
}

.pro-collapse-item .btn-more:hover::after {
  height: 3px;
}

.service-sec {
  position: relative;
  padding: 6rem 0 6rem;
  background-image: url(../images/service-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.service-hd .line-anim {
  margin: 0 auto 1.5rem;
  animation: lineShapeCenterANM 2s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.service-hd h2 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.col-service-list {
  flex: 0 0 55%;
  max-width: 55%;
}

.col-service-con {
  flex: 0 0 45%;
  max-width: 45%;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
}

.service-list .service-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0.25rem;
}

.service-list .service-col:nth-child(2) {
  padding-top: 6.5rem;
}

.service-list .service-col:nth-child(3) {
  padding-top: 10rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 235px;
  max-width: 235px;
  height: 225px;
  padding: 1.25rem;
  margin-bottom: 0.5rem;
  background-color: var(--white);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
}

.service-item .service-icon {
  max-width: 90px;
  margin-bottom: 1rem;
  transition: 0.35s ease-out;
}

.service-item .service-icon img {
  width: 100%;
}

.service-item .service-body p {
  color: var(--bk-grade-950);
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
}

.service-item.bg-orange {
  background-color: #f48220;
}

.service-item.bg-orange .service-body p {
  color: var(--white);
}

.service-item:hover .service-icon {
  transform: scale(0.75);
}

.service-intro {
  position: relative;
  max-width: 475px;
  margin-left: auto;
  margin-bottom: 2rem;
  text-align: right;
  z-index: 10;
}

.service-intro .service-line {
  position: absolute;
  top: 25px;
  right: -50px;
  width: 160px;
  height: 6px;
  background-color: #eb4e16;
  border-radius: 25px;
  transform: rotate(45deg);
  z-index: -1;
}

.service-intro p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  text-align: justify;
}

.service-intro .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0 0 0;
  background-color: #f06724;
  border-radius: 0;
  box-shadow: none;
}

.service-intro .btn-explore .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.service-intro .btn-explore:hover {
  color: var(--white);
  background-color: var(--color-100);
}

.service-intro .btn-explore:hover .icon-right {
  color: var(--bk-grade-750);
  background-color: var(--white);
  animation: iconMoveRight 1s infinite;
}

.partner-sec {
  position: relative;
  padding: 6rem 0 6rem;
}

.partner-hd {
  margin-bottom: 4rem;
  text-align: center;
}

.partner-hd .line-anim {
  margin: 0 auto 1.5rem;
  animation: lineShapeCenterANM 2s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.partner-hd h3 {
  color: var(--bk-grade-950);
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.partner-list {
  display: flex;
  justify-content: space-between;
  max-width: 750px;
  margin: 0 auto;
}

.partner-list .partner-item {
  flex: 1 1 0;
  max-width: 200px;
  padding: 0.25rem;
  margin: 0.25rem;
  border: 1px solid transparent;
  transition: 0.35s ease-out;
}

.partner-list .partner-item img {
  width: 100%;
}

.partner-list .partner-item:hover {
  border-color: var(--color-100);
}

.testimonial-sec {
  position: relative;
  padding: 6rem 0 6rem;
  background-image: url(../images/testimonial-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
}

.testimonial-sec::before {
  content: "";
  position: absolute;
  right: calc(((100vw - 1320px) / 2));
  top: 0;
  width: 1000px;
  height: 100%;
  background-color: #f48220;
  transform: translateX(calc(100% - 150px));
}

.testi-caro-hd {
  margin-bottom: 2rem;
}

.testi-caro-hd .line-anim {
  margin-bottom: 1.5rem;
}

.testi-caro-hd h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.testi-carousel {
  position: relative;
  padding-left: calc(((100vw - 1320px) / 2));
}

.testi-carousel .owl-theme .owl-nav .owl-prev,
.testi-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: -5rem;
  width: 60px;
  height: 60px;
  background-color: transparent;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.35s ease-out;
}

.testi-carousel .owl-theme .owl-nav .owl-prev {
  right: 4rem;
  background-image: url(../images/arrow-left.svg);
}

.testi-carousel .owl-theme .owl-nav .owl-next {
  right: 0;
  background-image: url(../images/arrow-right.svg);
}

.testi-carousel .owl-theme .owl-nav .owl-prev:hover,
.testi-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-100);
  border: 2px solid var(--color-100);
}

.testi-item {
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 2.5rem;
  background-color: var(--white);
  border-radius: 0.5rem;
}

.testi-item .quote-icon {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 65px;
  transform-style: preserve-3d;
  perspective: 300px;
}

.testi-item .quote-icon img {
  width: 100%;
}

.testi-item .testi-img {
  flex: 0 0 175px;
  max-width: 175px;
  margin-right: 2.5rem;
}

.testi-item .testi-img figure {
  margin: 0 0 1rem 0;
  border-radius: 50%;
  overflow: hidden;
}

.testi-item .testi-img figure img {
  width: 100%;
}

.testi-item .testi-img .tesi-profile {
  text-align: center;
}

.testi-item .testi-img .tesi-profile h4 {
  color: var(--bk-grade-750);
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
}

.testi-item .testi-img .tesi-profile p {
  color: var(--bk-grade-500);
  font-size: 1.125rem;
  font-weight: normal;
  margin: 0;
}

.testi-item .testi-body {
  flex: 1 1 0;
  padding-top: 2.5rem;
  max-width: 375px;
}

.testi-item .testi-body h3 {
  color: var(--bk-grade-750);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.testi-item .testi-body p {
  color: var(--bk-grade-500);
  font-weight: normal;
  margin: 0;
}

.testi-item:hover .quote-icon {
  animation: verticalRotate 2s linear infinite;
}

.testi-item:hover .testi-img figure {
  animation: testiIconPulse 1s ease 0s infinite;
}

.clents-sec {
  position: relative;
  padding: 6rem 0 6rem;
}

.clients-hd {
  margin-bottom: 4rem;
  text-align: center;
}

.clients-hd .line-anim {
  margin: 0 auto 1.5rem;
  animation: lineShapeCenterANM 2s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.clients-hd h3 {
  color: var(--bk-grade-950);
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.clients-carousel {
  overflow: hidden;
}

.clients-carousel .owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #bcbcbc;
  transition: 0.35s ease-out;
}

.clients-carousel .owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: 0.35s ease-out;
}

.clients-carousel .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--color-100);
}

.clients-carousel .owl-theme .owl-dots .owl-dot.active span::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.clients-carousel .owl-theme .owl-nav .owl-prev,
.clients-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: 0px;
  padding: 0px;
  background-color: var(--color-100);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.35s ease-out;
}

.clients-carousel .owl-theme .owl-nav .owl-prev {
  left: -5rem;
  background-image: url(../images/arrow-left.svg);
}

.clients-carousel .owl-theme .owl-nav .owl-next {
  right: -5rem;
  background-image: url(../images/arrow-right.svg);
}

.clients-carousel .owl-theme .owl-nav .owl-prev:hover,
.clients-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-200);
}

.clients-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 25px;
}

.clients-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 25px;
}

.clients-item {
  max-width: 250px;
  padding: 0.1rem;
  margin: 0.25rem 0;
}

.clients-item img {
  width: 100%;
}

.join-menu-sec {
  position: relative;
  padding: 10rem 0 10rem;
  background-image: url(../images/join-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.join-menu .line-anim {
  margin: 0 auto 1.5rem;
  animation: lineShapeCenterANM 2s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.join-menu a {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 500;
  padding-bottom: 1rem;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.join-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 2px;
  transition: 0.35s ease-out;
  transition-duration: 500ms;
}

.join-menu a:hover::after {
  width: 100px;
}

.footer-sec {
  position: relative;
  padding: 4rem 0 4rem;
  background-color: var(--bk-grade-700);
}

.col-ft-quick {
  flex: 0 0 17%;
  max-width: 17%;
}

.col-ft-service {
  flex: 0 0 28%;
  max-width: 28%;
}

.col-ft-contact {
  flex: 0 0 28%;
  max-width: 28%;
}

.col-ft-social {
  flex: 0 0 27%;
  max-width: 27%;
  border-left: 1px solid var(--bk-grade-550);
}

.ft-link-cover {
  margin-bottom: 2rem;
}

.ft-link-cover h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.ft-links .link-item {
  margin-bottom: 1rem;
}

.ft-links .link-item .link-nav {
  position: relative;
  display: block;
  color: var(--bk-grade-350);
  padding: 0.1rem 0 0.1rem 0;
  text-decoration: none;
}

.ft-links .link-item .link-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 0;
  height: 16px;
  background-color: var(--color-100);
  transition: 0.35s ease-out;
}

.ft-links .link-item .link-nav:hover {
  padding: 0.1rem 0 0.1rem 0.5rem;
}

.ft-links .link-item .link-nav:hover::before {
  width: 3px;
}

.ft-contact {
  max-width: 300px;
  margin-bottom: 2rem;
}

.ft-contact h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.con-tb-nav {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bk-grade-550);
}

.con-tb-nav .nav-item .nav-link {
  color: var(--bk-grade-350);
}

.con-tb-nav .nav-item .nav-link:hover {
  color: var(--white);
}

.con-tb-nav .nav-item .nav-link.active {
  color: var(--color-100);
}

.con-list .con-item {
  position: relative;
  color: var(--bk-grade-350);
  padding: 0 0 0 2rem;
  margin-bottom: 0.5rem;
}

.con-list .con-item .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
}

.con-list .con-item .con-link {
  color: var(--bk-grade-350);
}

.con-list .con-item .con-link .fa {
  width: 30px;
  color: var(--white);
}

.con-list .con-item .con-link:hover {
  color: var(--color-100);
}

.info-ft-nav {
  max-width: 275px;
  margin-left: auto;
  margin-bottom: 2rem;
}

.info-ft-nav .btn-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1rem;
  font-weight: normal;
  padding: 1.5rem 1rem;
  margin: 1.5rem 0 0 0;
  background-color: transparent !important;
  border-radius: 0.25rem;
  border: 2px solid var(--color-100);
  box-shadow: none;
  text-transform: uppercase;
}

.info-ft-nav .btn-info .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.info-ft-nav .btn-info:hover {
  color: var(--bk-grade-750);
  background-color: var(--white) !important;
  border: 2px solid var(--white);
}

.info-ft-nav .btn-info:hover .icon-right {
  color: var(--white);
  background-color: var(--color-100);
  animation: iconMoveRight 1s infinite;
}

.social-list {
  display: flex;
  justify-content: flex-end;
}

.social-list .soc-item {
  display: inline-block;
}

.social-list .soc-item + .soc-item {
  margin-left: 1rem;
}

.social-list .soc-item .soc-link {
  position: relative;
  display: block;
  color: var(--white);
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

.social-list .soc-item .soc-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}

.social-list .soc-item .soc-link .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.social-list .soc-item .soc-link:hover {
  color: #ffffff;
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.social-list .soc-item .soc-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.footer-hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid var(--bk-grade-550);
}

.technova-footer-logo {
  max-width: 300px;
}

.technova-footer-logo img {
  width: 100%;
}

.copyright {
  color: var(--bk-grade-350);
  text-align: right;
}

.ins-banner-sec {
  position: relative;
  background-image: url(../images/ins-slider.jpg);
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
}

.ins-banner-cover {
  position: relative;
  padding: 12rem 0 4rem;
}

.ins-banner-hd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.ins-banner-hd h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.ins-banner-hd .breadcrumb {
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0.25rem;
}

.ins-banner-hd .breadcrumb .breadcrumb-item {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
}

.ins-banner-hd .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  color: var(--white);
  font-family: "FontAwesome";
}

.ins-banner-hd .breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

.ins-banner-hd .breadcrumb .breadcrumb-item a:hover {
  color: var(--color-200);
}

.content-sec {
  position: relative;
  padding: 6rem 0 0;
}

.products-list {
  position: relative;
}

.products-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  background-color: var(--bk-grade-150);
}

.pro-list-item {
  display: flex;
}

.pro-list-item + .pro-list-item {
  margin-top: 4rem;
}

.pro-list-item .pro-list-img {
  position: relative;
  flex: 0 0 calc(50% - 2.5rem);
  max-width: calc(50% - 2.5rem);
  margin-right: 2.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.pro-list-item .pro-list-img img {
  width: 100%;
  transition: 0.35s ease-out;
  transition-duration: 500ms;
}

.pro-list-item .pro-list-body {
  position: relative;
  flex: 0 0 calc(50% - 2.5rem);
  max-width: calc(50% - 2.5rem);
  padding: 2.5rem 0 1rem 0;
  margin-left: 2.5rem;
}

.pro-list-item .pro-list-body::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: var(--color-100);
  border-radius: 50%;
  transform: translate(-31px, -50%);
}

.pro-list-item .pro-list-body .line-anim {
  margin-bottom: 1rem;
}

.pro-list-item .pro-list-body h3 {
  color: var(--bk-grade-950);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.pro-list-item .pro-list-body p {
  color: var(--bk-grade-550);
  text-align: justify;
}

.pro-list-item .pro-list-body ul {
  margin: 0 0 2rem 0;
}

.pro-list-item .pro-list-body ul li {
  position: relative;
  color: var(--bk-grade-500);
  padding: 0 0 0 2rem;
}

.pro-list-item .pro-list-body ul li + li {
  margin-top: 1rem;
}

.pro-list-item .pro-list-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-dk-icon.png);
}

.pro-list-item .pro-list-body .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bk-grade-750);
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0 0 0;
  background-color: transparent;
  border-radius: 0.25rem;
  box-shadow: none;
}

.pro-list-item .pro-list-body .btn-more .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.pro-list-item .pro-list-body .btn-more:hover {
  color: var(--white);
  background-color: var(--bk-grade-750);
}

.pro-list-item .pro-list-body .btn-more:hover .icon-right {
  color: var(--bk-grade-750);
  background-color: var(--white);
  animation: iconMoveRight 1s infinite;
}

.pro-list-item:nth-child(even) .pro-list-img {
  margin-right: 0;
  margin-left: 2.5rem;
  order: 2;
}

.pro-list-item:nth-child(even) .pro-list-img img {
  width: 100%;
}

.pro-list-item:nth-child(even) .pro-list-body {
  margin-left: 0;
  margin-right: 2.5rem;
}

.pro-list-item:nth-child(even) .pro-list-body::after {
  content: "";
  right: auto;
  left: 100%;
  transform: translate(31px, -50%);
}

.pro-list-item:hover .pro-list-img img {
  transform: scale(1.1);
  filter: grayscale(1);
}

.pro-list-item:hover .pro-list-body::after {
  animation: iconPulse 1s ease 0s infinite;
}

.erp-intro {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bk-grade-750);
}

.erp-intro figure {
  flex: 0 0 45%;
  max-width: 45%;
  margin: 0;
}

.erp-intro figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.erp-intro .erp-body {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 4rem 4rem 2rem 4rem;
}

.erp-intro .erp-body .line-anim {
  margin-bottom: 1rem;
}

.erp-intro .erp-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.erp-intro .erp-body p {
  color: var(--white);
  margin: 0 0 1rem 0;
  text-align: justify;
}

.erp-intro .erp-body .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0 0 0;
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 0.25rem;
  box-shadow: none;
}

.erp-intro .erp-body .btn-more .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.erp-intro .erp-body .btn-more:hover {
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.erp-benefits-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.benefits-caro-hd {
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-caro-hd .line-anim {
  margin: 0 auto 1.5rem;
  animation: lineShapeCenterANM 2s cubic-bezier(0.645, 0.045, 0.355, 1) alternate infinite;
}

.benefits-caro-hd h2 {
  color: var(--bk-grade-750);
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.benefits-carousel {
  overflow: hidden;
}

.benefits-carousel .owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #bcbcbc;
  transition: 0.35s ease-out;
}

.benefits-carousel .owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: 0.35s ease-out;
}

.benefits-carousel .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--color-100);
}

.benefits-carousel .owl-theme .owl-dots .owl-dot.active span::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.benefits-carousel .owl-theme .owl-nav .owl-prev,
.benefits-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: 0px;
  padding: 0px;
  background-color: var(--color-100);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.35s ease-out;
}

.benefits-carousel .owl-theme .owl-nav .owl-prev {
  left: -5rem;
  background-image: url(../images/arrow-left.svg);
}

.benefits-carousel .owl-theme .owl-nav .owl-next {
  right: -5rem;
  background-image: url(../images/arrow-right.svg);
}

.benefits-carousel .owl-theme .owl-nav .owl-prev:hover,
.benefits-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-200);
}

.benefits-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 25px;
}

.benefits-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 25px;
}

.benefits-carousel .owl-carousel .owl-item {
  border-right: 1px solid var(--bk-grade-150);
}

.benefits-item {
  max-width: 200px;
  margin: 2rem auto 0;
}

.benefits-item figure {
  position: relative;
  max-width: 120px;
  padding: 0.25rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.benefits-item figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--bk-grade-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.benefits-item figure img {
  position: relative;
  width: 100%;
  transition: 0.35s ease-out;
}

.benefits-item .benefits-body {
  min-height: 65px;
  text-align: center;
}

.benefits-item .benefits-body p {
  color: var(--bk-grade-750);
  font-size: 1.125rem;
  margin: 0;
}

.benefits-item:hover figure {
  animation: benefitsPulse 1s ease 0s infinite;
}

.benefits-item:hover figure::before {
  transform: translate(-50%, -50%) scale(0.95);
}

.benefits-item:hover figure img {
  transform: scale(0.75);
}

.ins-feature-list li {
  position: relative;
  color: var(--bk-grade-500);
  padding: 0 0 0 2rem;
}

.ins-feature-list li + li {
  margin-top: 1rem;
}

.ins-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-dk-icon.png);
}

.benefits-list-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.benefits-list-hd {
  margin-bottom: 2rem;
}

.benefits-list-hd .line-anim {
  margin: 0 0 1.5rem 0;
}

.benefits-list-hd h2 {
  color: var(--bk-grade-750);
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.bene-list-item {
  display: flex;
}

.bene-list-item + .bene-list-item {
  margin-top: 4rem;
}

.bene-list-item .bene-list-img {
  position: relative;
  flex: 0 0 calc(50% - 2.5rem);
  max-width: calc(50% - 2.5rem);
  margin-right: 2.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.bene-list-item .bene-list-img img {
  width: 100%;
}

.bene-list-item .bene-list-body {
  position: relative;
  flex: 0 0 calc(50% - 2.5rem);
  max-width: calc(50% - 2.5rem);
  padding: 2.5rem 0 1rem 0;
  margin-left: 2.5rem;
}

.bene-list-item .bene-list-body .line-anim {
  margin-bottom: 1rem;
}

.bene-list-item .bene-list-body .bene-hd {
  position: relative;
  margin-bottom: 2.5rem;
}

.bene-list-item .bene-list-body .bene-hd span {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-100);
  border-radius: 0.25rem;
}

.bene-list-item .bene-list-body .bene-hd span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 25px solid var(--color-100);
  border-radius: 0.25rem;
  transform: translateX(calc(-100% - -2px));
}

.bene-list-item .bene-list-body .bene-hd h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.bene-list-item .bene-list-body p {
  color: var(--bk-grade-900);
  margin: 0 0 1rem 0;
  text-align: justify;
}

.bene-list-item .bene-list-body ul {
  margin: 0 0 2rem 0;
}

.bene-list-item .bene-list-body ul li {
  position: relative;
  color: var(--bk-grade-500);
  padding: 0 0 0 2rem;
}

.bene-list-item .bene-list-body ul li + li {
  margin-top: 1rem;
}

.bene-list-item .bene-list-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-dk-icon.png);
}

.bene-list-item:nth-child(even) .bene-list-img {
  margin-right: 0;
  margin-left: 2.5rem;
  order: 2;
}

.bene-list-item:nth-child(even) .bene-list-img img {
  width: 100%;
}

.bene-list-item:nth-child(even) .bene-list-body {
  margin-left: 0;
  margin-right: 2.5rem;
}

.bene-list-item:nth-child(even) .bene-list-body .bene-hd {
  position: relative;
  margin-bottom: 2.5rem;
}

.bene-list-item:nth-child(even) .bene-list-body .bene-hd span {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-100);
  border-radius: 0.25rem;
}

.bene-list-item:nth-child(even) .bene-list-body .bene-hd span::before {
  content: "";
  left: auto;
  right: 0;
  border-right: 25px solid transparent;
  border-left: 25px solid var(--color-100);
  transform: translateX(calc(100% - 2px));
}

.modules-sec {
  position: relative;
  padding: 2rem 0 0;
}

.modules-hd {
  margin-bottom: 2rem;
}

.modules-hd .line-anim {
  margin: 0 0 1.5rem 0;
}

.modules-hd h2 {
  color: var(--bk-grade-750);
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.modules-accordion .card {
  margin-bottom: 1rem;
  border: 0;
  box-shadow: none;
}

.modules-accordion .card .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 2px solid var(--color-100);
  border-radius: 0.25rem;
}

.modules-accordion .card .card-header h3 {
  position: relative;
  color: var(--bk-grade-950);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.25rem 2rem 1.25rem 1.25rem;
  margin: 0;
}

.modules-accordion .card .card-header h3 .icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  font-size: 1.5rem;
  transform: translateY(-50%) rotate(-180deg);
  transition: 0.35s ease-out;
}

.modules-accordion .card .card-header h3.collapsed .icon {
  transform: translateY(-50%) rotate(0deg);
}

.modules-accordion .card .card-body {
  padding: 2rem 1.5rem;
}

.modules-accordion .card .faq-item p {
  color: var(--bk-grade-950);
  font-weight: 500;
  margin: 0;
}

.modules-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.modules-item figure {
  flex: 0 0 325px;
  max-width: 325px;
  margin-left: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  order: 2;
}

.modules-item figure img {
  width: 100%;
}

.modules-item .modules-it-body {
  flex: 1 1 0;
}

.modules-item .modules-it-body ul {
  margin: 0 0 2rem 0;
}

.modules-item .modules-it-body ul li {
  position: relative;
  color: var(--bk-grade-500);
  padding: 0 0 0 2rem;
}

.modules-item .modules-it-body ul li + li {
  margin-top: 1rem;
}

.modules-item .modules-it-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-dk-icon.png);
}

.page-intro-sec {
  position: relative;
  padding: 0 0 2rem 0;
}

.page-intro {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bk-grade-750);
}

.page-intro figure {
  flex: 0 0 45%;
  max-width: 45%;
  margin: 0;
  background-color: var(--black);
  overflow: hidden;
}

.page-intro figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease-out;
}

.page-intro .page-body {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 4rem 4rem 2rem 4rem;
}

.page-intro .page-body .line-anim {
  margin-bottom: 1rem;
}

.page-intro .page-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.page-intro .page-body p {
  color: var(--white);
  margin: 0 0 1rem 0;
  text-align: justify;
}

.page-intro:hover figure img {
  opacity: 0.75;
  transform: scale(1.1);
}

.vision-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.vision-cover {
  max-width: 650px;
  padding: 4rem 0 4rem;
}

.vision-item {
  display: flex;
  align-items: flex-start;
}

.vision-item + .vision-item {
  margin-top: 2rem;
}

.vision-item .vision-icon {
  flex: 0 0 90px;
  max-width: 90px;
  margin-right: 2rem;
  border-radius: 50%;
}

.vision-item .vision-icon img {
  width: 100%;
}

.vision-item .vision-body {
  flex: 1 1 0;
}

.vision-item .vision-body .line-anim {
  margin-bottom: 1rem;
}

.vision-item .vision-body h3 {
  color: var(--bk-grade-750);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.vision-item .vision-body p {
  color: var(--bk-grade-500);
  margin: 0 0 1rem 0;
  text-align: justify;
}

.vision-graphics {
  max-width: 450px;
  margin: 0 auto;
  border: 15px solid var(--color-100);
  border-radius: 50%;
  overflow: hidden;
}

.vision-graphics img {
  width: 100%;
}

.commit-sec {
  position: relative;
  padding: 2rem 0 2rem;
}

.commit-item {
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  background-color: var(--bk-grade-750);
}

.commit-item figure {
  margin: 0;
}

.commit-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commit-item .commit-body {
  padding: 4rem 4rem 2rem 4rem;
}

.commit-item .commit-body .line-anim {
  margin-bottom: 1rem;
}

.commit-item .commit-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.commit-item .commit-body p {
  color: var(--white);
  margin: 0 0 1rem 0;
  text-align: justify;
}

.approach-sec {
  position: relative;
  padding: 4rem 0 4rem;
  background-color: var(--color-100);
  overflow: hidden;
}

.approach-graphic {
  position: absolute;
  width: 1100px;
  left: 50%;
  top: 0px;
  height: 100%;
}

.approach-graphic .approach-img {
  height: 100%;
}

.approach-graphic .approach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-graphic .approach-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 100%;
  background-color: #f06724;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: url("#approach-shape");
}

.approach-cover {
  max-width: 600px;
}

.approach-cover .line-anim {
  margin-bottom: 1rem;
  background-color: var(--white);
}

.approach-cover h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}

.approach-cover p {
  color: var(--white);
  margin: 0 0 1rem 0;
}

.approach-cover ul {
  margin: 0 0 2rem 0;
}

.approach-cover ul li {
  position: relative;
  color: var(--white);
  padding: 0 0 0 2rem;
}

.approach-cover ul li + li {
  margin-top: 1rem;
}

.approach-cover ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-wt-icon.png);
}

.credential-sec {
  position: relative;
}

.credential-list {
  display: flex;
}

.credential-list .credential-item:nth-child(1) {
  flex: 1 1 0;
}

.credential-list .credential-item:nth-child(2) {
  flex: 0 0 550px;
  max-width: 550px;
}

.credential-list .credential-item:nth-child(3) {
  flex: 1 1 0;
}

.credential-item {
  position: relative;
  overflow: hidden;
}

.credential-item figure {
  margin: 0;
  background-color: var(--black);
  overflow: hidden;
}

.credential-item figure img {
  width: 100%;
  height: 575px;
  object-fit: cover;
  transition: 0.35s ease-out;
}

.credential-item .credential-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2.5rem 2.5rem;
  transform: translateY(100%) translateY(-75px);
  transition: transform 400ms;
  z-index: 10;
}

.credential-item .credential-title {
  margin-bottom: 2rem;
}

.credential-item .credential-title h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
  text-transform: uppercase;
}

.credential-item .credential-content {
  visibility: hidden;
  transform: translateY(150%);
  backface-visibility: hidden;
  transition: transform 400ms;
}

.credential-item .credential-content p {
  color: var(--white);
  margin: 0;
  text-align: justify;
}

.credential-item .credential-content ul {
  margin: 0 0 2rem 0;
}

.credential-item .credential-content ul li {
  position: relative;
  color: var(--white);
  padding: 0 0 0 2rem;
}

.credential-item .credential-content ul li + li {
  margin-top: 1rem;
}

.credential-item .credential-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-wt-icon.png);
}

.credential-item:hover figure img {
  transform: scale(1.1);
  opacity: 0.5;
}

.credential-item:hover .credential-body {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.credential-item:hover .credential-title h3 {
  color: var(--white);
}

.credential-item:hover .credential-content {
  visibility: visible;
  transform: translateY(0);
}

.credential-list .credential-item:nth-child(1) .credential-body {
  padding-left: calc(((100vw - 1320px) / 2));
}

.credential-list .credential-item:nth-child(3) .credential-body {
  padding-right: calc(((100vw - 1320px) / 2));
}

.contact-sec {
  position: relative;
  padding: 0 0 2rem 0;
}

.contact-cover {
  display: flex;
  flex-wrap: wrap;
}

.contact-cover .contact-img {
  flex: 0 0 45%;
  max-width: 600px;
  background-color: var(--black);
  overflow: hidden;
}

.contact-cover .contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease-out;
}

.contact-cover .contact-body {
  flex: 1 1 0;
  background-color: #f2f2f2;
}

.contact-cover:hover .contact-img img {
  opacity: 0.75;
  transform: scale(1.1);
}

.contact-form {
  position: relative;
  padding: 2.5rem 2.5rem 1.5rem;
}

.contact-form .con-form-hd {
  margin-bottom: 2rem;
}

.contact-form .con-form-hd .line-anim {
  margin-bottom: 1.5rem;
}

.contact-form .con-form-hd h3 {
  color: var(--bk-grade-750);
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  color: var(--bk-grade-500);
  font-size: 1rem;
  font-weight: 500;
}

.contact-form .form-control {
  min-height: 50px;
  background-color: var(--white);
  border: 1px solid var(--bk-grade-150);
  border-radius: 0;
  transition: 0.35s ease-out;
}

.contact-form .form-control:hover, .contact-form .form-control:focus {
  border: 1px solid var(--bk-grade-200);
}

.contact-form .form-captcha {
  max-width: 250px;
}

.contact-form .captcha {
  margin-bottom: 2rem;
}

.contact-form .captcha img {
  max-width: 100%;
}

.contact-form .btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 200px;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 2rem;
  margin: 0;
  background-color: var(--color-100);
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
}

.contact-form .btn-submit .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.contact-form .btn-submit:hover {
  border-color: var(--white);
}

.contact-form .btn-submit:hover .icon-right {
  color: var(--color-100);
  background-color: var(--white);
  animation: iconMoveRight 1s infinite;
}

.address-sec {
  position: relative;
  padding: 2rem 0 0 0;
}

.opening-sec {
  position: relative;
  padding: 2rem 0 0;
}

.opening-intro {
  margin-bottom: 2rem;
  text-align: center;
}

.opening-intro .line-anim {
  margin: 0 auto 1.5rem;
}

.opening-intro h2 {
  color: var(--bk-grade-750);
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.opening-intro p {
  color: var(--bk-grade-750);
  margin: 0;
}

.opening-intro a {
  color: var(--color-100);
}

.opening-intro a:hover {
  color: var(--bk-grade-950);
}

.opening-accordion .card {
  margin-bottom: 1rem;
  border: 0;
  box-shadow: none;
}

.opening-accordion .card .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 2px solid var(--color-100);
  border-radius: 0.25rem;
}

.opening-accordion .card .card-header h3 {
  position: relative;
  color: var(--bk-grade-950);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.25rem 2rem 1.25rem 1.25rem;
  margin: 0;
}

.opening-accordion .card .card-header h3 .icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  font-size: 1.5rem;
  transform: translateY(-50%) rotate(-180deg);
  transition: 0.35s ease-out;
}

.opening-accordion .card .card-header h3.collapsed .icon {
  transform: translateY(-50%) rotate(0deg);
}

.opening-accordion .card .card-body {
  padding: 2rem 1.5rem;
}

.opening-accordion .card .opening-item p {
  color: var(--bk-grade-950);
  font-weight: 500;
  margin: 0;
}

.opening-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.opening-item ul {
  margin: 0 0 2rem 0;
}

.opening-item ul li {
  position: relative;
  color: var(--bk-grade-500);
  padding: 0 0 0 2rem;
}

.opening-item ul li + li {
  margin-top: 1rem;
}

.opening-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 16px;
  background-image: url(../images/tick-dk-icon.png);
}

.job-app-item {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bk-grade-750);
  margin-bottom: 2rem;
}

.job-app-item figure {
  flex: 0 0 445px;
  max-width: 445px;
  margin: 0;
  overflow: hidden;
  order: 2;
}

.job-app-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease-out;
}

.job-app-item .job-app-body {
  flex: 1 1 0;
  padding: 4rem 4rem 2rem 4rem;
}

.job-app-item .job-app-body .line-anim {
  margin-bottom: 1rem;
}

.job-app-item .job-app-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.job-app-item .job-app-body p {
  color: var(--white);
  margin: 0 0 1rem 0;
}

.job-app-item .job-app-body .btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0 0 0;
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 0.25rem;
  box-shadow: none;
  text-transform: capitalize;
}

.job-app-item .job-app-body .btn-apply .icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
  border-radius: 50%;
}

.job-app-item .job-app-body .btn-apply:hover {
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.job-app-item:hover figure img {
  opacity: 0.75;
  transform: scale(1.1);
}

.address-cover {
  flex: 1 1 0;
  padding: 2rem;
  background-color: #f2f2f2;
}

.address-cover .address-item {
  margin-bottom: 1rem;
}

.address-cover .address-item h3 {
  color: var(--bk-grade-900);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.address-cover .address-item p {
  color: var(--bk-grade-900);
}

.address-cover .address-item a {
  color: var(--color-100);
}

.address-cover hr {
  margin: 2rem 0;
  color: inherit;
  background-color: #d6d6d6;
  border: 0;
  opacity: 1;
}

.location-cover {
  flex: 1 1 0;
  padding: 2rem;
}

.location-cover iframe {
  width: 100%;
  height: 100%;
}

.demo-req-cover {
  display: flex;
  flex-wrap: wrap;
}

.demo-req-cover .demo-req-img {
  flex: 0 0 45%;
  width: 100%;
  height: auto;
  background-image: url(../images/demo_pic.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.demo-req-cover .demo-req-img .demo-req-intro {
  padding: 1.5rem 1.5rem;
}

.demo-req-cover .demo-req-img .demo-req-intro p {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: justify;
}

.demo-req-cover .demo-req-img figure {
  margin: 0;
}

.demo-req-cover .demo-req-img figure img {
  width: 100%;
  transition: 0.35s ease-out;
}

.demo-req-cover .demo-req-body {
  flex: 1 1 0;
  background-color: #f2f2f2;
}

.demo-req-cover:hover .contact-img img {
  opacity: 0.75;
  transform: scale(1.1);
}

/* Loader CSS
-------------------------------------------------- */
.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  background-position: left top;
  background-repeat: repeat;
  z-index: 99999;
}

.loader-overlay .loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  background: #127faf;
  border: 3px solid #1990c4;
  border-radius: 50%;
  font-size: 1.125rem;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 10px #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.loader-overlay .loader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #33ffff;
  border-right: 3px solid #33ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: anmLoader 2s linear infinite;
}

.loader-overlay .loader .loader-circle {
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  width: 50%;
  height: 4px;
  background: transparent;
  transform-origin: left;
  animation: anmLoaderDot 2s linear infinite;
}

.loader-overlay .loader .loader-circle:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #33ffff;
  top: -6px;
  right: -8px;
  box-shadow: 0 0 20px #33ffff;
}

@keyframes anmLoader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes anmLoaderDot {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}

/* Animations
-------------------------------------------------- */
@keyframes navDown {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes upBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes drop-anim {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconMoveRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(5px);
  }
}

@keyframes lineShapeANM {
  0% {
    left: 0;
    width: 10px;
  }
  50% {
    left: 0;
    width: 60px;
  }
  100% {
    left: 50px;
    width: 10px;
  }
}

@keyframes lineShapeCenterANM {
  0% {
    width: 6px;
  }
  50% {
    width: 60px;
  }
  100% {
    width: 6px;
  }
}

@keyframes proIconPulse {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes testiIconPulse {
  0% {
  }
  15% {
    box-shadow: 0 0 0 5px rgba(240, 103, 36, 0.75);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(240, 103, 36, 0.75), 0 0 0 20px rgba(240, 103, 36, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(240, 103, 36, 0.75), 0 0 0 30px rgba(240, 103, 36, 0.2);
  }
}

@keyframes verticalRotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes benefitsPulse {
  0% {
  }
  15% {
    box-shadow: 0 0 0 5px rgba(240, 103, 36, 0.75);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(240, 103, 36, 0.75), 0 0 0 20px rgba(240, 103, 36, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(240, 103, 36, 0.75), 0 0 0 30px rgba(240, 103, 36, 0.2);
  }
}

@keyframes iconPulse {
  0% {
  }
  15% {
    box-shadow: 0 0 0 2px rgba(240, 103, 36, 0.75);
  }
  25% {
    box-shadow: 0 0 0 5px rgba(240, 103, 36, 0.75), 0 0 0 10px rgba(240, 103, 36, 0.2);
  }
  25% {
    box-shadow: 0 0 0 8px rgba(240, 103, 36, 0.75), 0 0 0 16px rgba(240, 103, 36, 0.2);
  }
}

@keyframes supportPulse {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 2px rgba(240, 103, 36, 0.4);
  }
  25% {
    box-shadow: 0 0 0 4px rgba(240, 103, 36, 0.4), 0 0 0 8px rgba(240, 103, 36, 0.2);
  }
  25% {
    box-shadow: 0 0 0 8px rgba(240, 103, 36, 0.4), 0 0 0 16px rgba(240, 103, 36, 0.2);
  }
}

@keyframes anmCall {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(30deg);
  }
  3% {
    transform: rotate(-28deg);
  }
  5% {
    transform: rotate(34deg);
  }
  7% {
    transform: rotate(-32deg);
  }
  9% {
    transform: rotate(30deg);
  }
  11% {
    transform: rotate(-28deg);
  }
  13% {
    transform: rotate(26deg);
  }
  15% {
    transform: rotate(-24deg);
  }
  17% {
    transform: rotate(22deg);
  }
  19% {
    transform: rotate(-20deg);
  }
  21% {
    transform: rotate(18deg);
  }
  23% {
    transform: rotate(-16deg);
  }
  25% {
    transform: rotate(14deg);
  }
  27% {
    transform: rotate(-12deg);
  }
  29% {
    transform: rotate(10deg);
  }
  31% {
    transform: rotate(-8deg);
  }
  33% {
    transform: rotate(6deg);
  }
  35% {
    transform: rotate(-4deg);
  }
  37% {
    transform: rotate(2deg);
  }
  39% {
    transform: rotate(-1deg);
  }
  41% {
    transform: rotate(1deg);
  }
  43% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 1280px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    width: 1220px;
    max-width: 1220px;
  }
}

@media (min-width: 1366px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    width: 1320px;
    max-width: 1320px;
  }
}

@media (max-width: 1600px) {
  .about-img-cover .about-txt-deco h2 {
    font-size: 4.625rem;
  }
  .facts-list .facts-item:nth-child(1),
  .facts-list .facts-item:nth-child(2),
  .facts-list .facts-item:nth-child(3) {
    flex: 1 1 0;
  }
  .join-menu-sec {
    padding: 6rem 0 6rem;
  }
  .credential-list .credential-item:nth-child(1),
  .credential-list .credential-item:nth-child(2),
  .credential-list .credential-item:nth-child(3) {
    flex: 1 1 0;
  }
}

@media (max-width: 1366px) {
  .banner-cover .carousel-content .carousel-hd h1 {
    font-size: 5rem;
  }
  .navbar-main .logo {
    margin-right: 50px;
  }
}

@media (max-width: 1280px) {
  .banner-cover .carousel-nav {
    right: calc(((100vw - 1220px) / 2));
    bottom: 4rem;
  }
  .about-cover {
    padding-left: calc(((100vw - 1220px) / 2));
    padding-right: 2rem;
  }
  .facts-list .facts-item:nth-child(1) .fact-body {
    padding-left: calc(((100vw - 1220px) / 2));
  }
  .facts-list .facts-item:nth-child(3) .fact-body {
    padding-right: calc(((100vw - 1220px) / 2));
  }
  .testi-carousel {
    position: relative;
    padding-left: calc(((100vw - 1220px) / 2));
  }
  .credential-list .credential-item:nth-child(1) .fact-body {
    padding-left: calc(((100vw - 1220px) / 2));
  }
}

@media (max-width: 1200px) {
  .banner-cover .carousel-nav {
    right: 2rem;
  }
  .facts-list .facts-item:nth-child(1) .fact-body {
    padding: 0 2rem 2rem;
  }
  .facts-list .facts-item:nth-child(3) .fact-body {
    padding: 0 2rem 2rem;
  }
  .service-intro .service-line {
    right: -20px;
    width: 120px;
  }
  .testi-carousel {
    padding: 0;
  }
  .credential-list .credential-item:nth-child(1) .credential-body {
    padding: 0 2rem 2rem;
  }
  .credential-list .credential-item:nth-child(3) .credential-body {
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .nav-support {
    display: none;
  }
  .nav-call {
    display: none;
  }
  .navbar-main .logo {
    width: 125px;
    margin-right: 1.5rem;
  }
  .navbar-collapse {
    padding-top: 1rem;
  }
  .nav-top {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  .info-nav .info-item .info-link {
    padding: 0.25rem;
  }
  .info-nav .info-item .info-link .info-label {
    display: none;
  }
  .nav-btm {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .main-nav .nav-item {
    position: relative;
  }
  .main-nav .nav-item .nav-link {
    padding: 0 0.25rem;
  }
  .dropdown-mega {
    top: 100%;
  }
  .dro-mega-pro {
    display: none;
  }
  .dro-mega-cover .dro-mega-link {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .dro-mega-link {
    padding: 1.5rem;
  }
  .dro-mega-link li a {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem !important;
  }
  .banner-cover .carousel-content {
    top: 50%;
  }
  .banner-cover .carousel-content .carousel-hd h1 {
    font-size: 4rem;
  }
  .banner-cover .carousel-nav {
    bottom: 2rem;
  }
  .banner-cover .carousel-nav .carousel-btn {
    width: 40px;
    height: 40px;
    background-size: 16px;
  }
  .about-sec {
    padding: 4rem 0 4rem;
  }
  .about-cover {
    margin: 0 0 2rem 0;
  }
  .about-img-cover .about-img {
    padding-left: 6rem;
  }
  .about-img-cover .about-img img {
    height: 375px;
  }
  .about-img-cover .about-txt-deco h2 {
    font-size: 4rem;
    padding-left: 1rem;
  }
  .products-carousel .owl-theme .owl-nav .owl-prev,
  .products-carousel .owl-theme .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    background-size: 16px;
  }
  .service-sec {
    padding: 4rem 0 4rem;
  }
  .col-service-list {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-service-con {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .service-list {
    max-width: 650px;
    margin-bottom: 2rem;
  }
  .testi-item {
    padding: 1.5rem 1.5rem;
  }
  .testi-item .testi-img {
    flex: 0 0 125px;
    max-width: 125px;
    margin-right: 1.5rem;
  }
  .testi-carousel .owl-theme .owl-nav .owl-prev {
    right: 3rem;
  }
  .testi-carousel .owl-theme .owl-nav .owl-prev,
  .testi-carousel .owl-theme .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    background-size: 16px;
  }
  .testi-item .quote-icon {
    right: 1rem;
    top: 1rem;
    width: 45px;
  }
  .clents-sec {
    padding: 4rem 0 4rem;
  }
  .clients-carousel .owl-theme .owl-nav .owl-prev,
  .clients-carousel .owl-theme .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    background-size: 16px;
  }
  .col-ft-quick {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-ft-service {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-ft-contact {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-ft-social {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0 solid var(--bk-grade-550);
  }
  .info-ft-nav {
    margin-left: 0;
  }
  .social-list {
    justify-content: flex-start;
  }
  .technova-footer-logo {
    max-width: 250px;
    margin: 0 auto 1rem;
  }
  .footer-hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .copyright {
    text-align: center;
  }
  .content-sec {
    padding: 4rem 0 4rem;
  }
  .products-list::before {
    display: none;
  }
  .pro-list-item {
    flex-wrap: wrap;
  }
  .pro-list-item + .pro-list-item {
    margin-top: 2rem;
  }
  .pro-list-item .pro-list-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }
  .pro-list-item .pro-list-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem 1rem;
    margin: 0;
  }
  .pro-list-item .pro-list-body .btn-more {
    margin: 0.5rem;
  }
  .pro-list-item .pro-list-body::after {
    display: none;
  }
  .pro-list-item:nth-child(even) .pro-list-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    order: unset;
  }
  .pro-list-item:nth-child(even) .pro-list-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem 1rem;
    margin: 0;
  }
  .pro-list-item:nth-child(even) .pro-list-body::after {
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    transform: translateY(-50%);
  }
  .erp-intro figure {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .erp-intro .erp-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 2rem 2rem;
  }
  .benefits-carousel .owl-theme .owl-nav .owl-prev,
  .benefits-carousel .owl-theme .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    background-size: 16px;
  }
  .bene-list-item {
    flex-wrap: wrap;
  }
  .bene-list-item .bene-list-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }
  .bene-list-item .bene-list-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem 1rem;
    margin: 0;
  }
  .bene-list-item .bene-list-body .bene-hd h3 {
    font-size: 1.125rem;
  }
  .bene-list-item .bene-list-body .bene-hd span::before {
    display: none;
  }
  .bene-list-item + .bene-list-item {
    margin-top: 2rem;
  }
  .bene-list-item:nth-child(even) .bene-list-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    order: unset;
  }
  .bene-list-item:nth-child(even) .bene-list-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem 1rem;
    margin: 0;
  }
  .modules-item figure {
    flex: 0 0 300px;
    max-width: 300px;
    margin: 0 auto 2rem;
    order: unset;
  }
  .modules-item .modules-it-body {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-intro figure {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-intro .page-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 2rem 2rem;
  }
  .page-intro .page-body h3 {
    font-size: 1.25rem;
  }
  .vision-cover {
    max-width: unset;
    padding: 0;
    margin-bottom: 2rem;
  }
  .commit-item .commit-body {
    padding: 2rem 2rem;
  }
  .approach-sec {
    padding: 0;
  }
  .approach-graphic {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
    height: unset;
    transform: unset;
  }
  .approach-graphic .approach-shape {
    display: none;
  }
  .approach-cover {
    max-width: unset;
    padding: 2rem 0;
  }
  .job-app-item figure {
    display: none;
    order: unset;
  }
  .job-app-item .job-app-body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .facts-list {
    flex-wrap: wrap;
  }
  .facts-list .facts-item:nth-child(1),
  .facts-list .facts-item:nth-child(2),
  .facts-list .facts-item:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .facts-item figure img {
    height: 275px;
  }
  .credential-list {
    flex-wrap: wrap;
  }
  .credential-list .credential-item:nth-child(1),
  .credential-list .credential-item:nth-child(2),
  .credential-list .credential-item:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact-cover .contact-img {
    display: none;
  }
  .contact-cover {
    flex-direction: column;
  }
  .demo-req-cover {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .banner-cover .carousel-content .carousel-hd h1 {
    font-size: 3rem;
  }
  .about-sec {
    padding: 3rem 0 3rem;
  }
  .about-cover .about-hd {
    margin-bottom: 1.5rem;
  }
  .about-cover .about-hd h2 {
    font-size: 1.875rem;
  }
  .about-img-cover .about-txt-deco h2 {
    font-size: 3rem;
  }
  .pro-suite-sec {
    padding: 3rem 0 3rem;
  }
  .products-caro-hd {
    margin-bottom: 1rem;
  }
  .facts-list .facts-item:nth-child(1) .fact-body,
  .facts-list .facts-item:nth-child(2) .fact-body,
  .facts-list .facts-item:nth-child(3) .fact-body {
    padding: 0 1.5rem 1.5rem;
  }
  .product-item figure {
    max-width: 90px;
  }
  .facts-item .fact-title h3 {
    font-size: 1.25rem;
  }
  .products-caro-hd h2 {
    font-size: 1.875rem;
  }
  .service-sec {
    padding: 3rem 0 3rem;
  }
  .service-hd {
    margin-bottom: 2rem;
  }
  .service-hd h2 {
    font-size: 1.875rem;
  }
  .service-item {
    height: 175px;
  }
  .service-item .service-icon {
    max-width: 60px;
  }
  .service-item .service-body p {
    font-size: 1.125rem;
  }
  .service-intro {
    max-width: unset;
    margin-bottom: 0;
  }
  .service-list .service-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0.25rem;
  }
  .service-list .service-col:nth-child(2) {
    padding-top: 0;
  }
  .service-list .service-col:nth-child(3) {
    padding-top: 0;
  }
  .partner-sec {
    padding: 4rem 0 4rem;
  }
  .partner-hd {
    margin-bottom: 2rem;
  }
  .partner-hd h3 {
    font-size: 1.875rem;
  }
  .testimonial-sec {
    padding: 4rem 0 4rem;
  }
  .testi-caro-hd h3 {
    font-size: 1.875rem;
  }
  .testi-carousel .owl-theme .owl-nav .owl-prev,
  .testi-carousel .owl-theme .owl-nav .owl-next {
    top: -3.5rem;
  }
  .testi-item .testi-img .tesi-profile h4 {
    font-size: 1.125rem;
  }
  .testi-item .testi-img .tesi-profile p {
    font-size: 1rem;
  }
  .testi-item .testi-body {
    padding-top: 1.5rem;
  }
  .testi-item .testi-body h3 {
    font-size: 1.125rem;
  }
  .clents-sec {
    padding: 3rem 0 3rem;
  }
  .clients-hd {
    margin-bottom: 2rem;
  }
  .clients-hd h3 {
    font-size: 1.875rem;
  }
  .join-menu-sec {
    padding: 4rem 0 4rem;
  }
  .join-menu a {
    font-size: 1.5rem;
  }
  .footer-sec {
    padding: 3rem 0 3rem;
  }
  .col-ft-quick {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-ft-service {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-ft-contact {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ft-link-cover h3 {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
  }
  .ft-links .link-item {
    margin-bottom: 0.5rem;
  }
  .ft-contact {
    max-width: unset;
    margin-bottom: 2rem;
  }
  .info-ft-nav .btn-info {
    padding: 1rem 1.5rem;
  }
  .ins-banner-sec {
    background-size: cover;
  }
  .ins-banner-cover {
    padding: 8rem 0 2.5rem;
  }
  .ins-banner-hd {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ins-banner-hd .breadcrumb .breadcrumb-item {
    font-size: 1rem;
    font-weight: normal;
  }
  .content-sec {
    padding: 3rem 0 3rem;
  }
  .pro-list-item .pro-list-body h3 {
    font-size: 1.25rem;
  }
  .ins-banner-hd h1 {
    font-size: 1.875rem;
  }
  .erp-intro .erp-body h3 {
    font-size: 1.25rem;
  }
  .benefits-caro-hd h2 {
    font-size: 1.875rem;
  }
  .benefits-item figure {
    max-width: 90px;
  }
  .benefits-list-hd h2 {
    font-size: 1.875rem;
  }
  .modules-hd h2 {
    font-size: 1.875rem;
  }
  .modules-accordion .card .card-header h3 {
    font-size: 1rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
  }
  .vision-item .vision-icon {
    flex: 0 0 75px;
    max-width: 75px;
    margin-right: 1rem;
  }
  .vision-item .vision-body h3 {
    font-size: 1.25rem;
  }
  .vision-graphics {
    max-width: 300px;
    border: 5px solid var(--color-100);
  }
  .commit-item .commit-body h3 {
    font-size: 1.25rem;
  }
  .approach-cover h3 {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
  }
  .credential-list .credential-item:nth-child(1) .credential-body,
  .credential-list .credential-item:nth-child(2) .credential-body,
  .credential-list .credential-item:nth-child(3) .credential-body {
    padding: 0 1.5rem 1.5rem;
  }
  .credential-item .credential-title h3 {
    font-size: 1.25rem;
  }
  .contact-form {
    padding: 2rem 1.5rem 1rem;
  }
  .contact-form .con-form-hd h3 {
    font-size: 1.5rem;
  }
  .opening-intro h2 {
    font-size: 1.5rem;
  }
  .job-app-item .job-app-body h3 {
    font-size: 1.25rem;
  }
  .opening-accordion .card .card-header h3 {
    font-size: 1rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
  }
  .address-cover {
    padding: 1rem;
  }
  .demo-req-cover .demo-req-img .demo-req-intro {
    padding: 1rem 1rem;
  }
}
