:root {
  --aam-primary: #1490d7;
  --aam-secondary: #f89124;
  --aam-gradient: linear-gradient(
    130deg,
    var(--aam-primary),
    var(--aam-primary),
    var(--aam-secondary) 70%
  );
  --aam-heading: #fff;
  --aam-gray: #f5f5f5;
  --aam-dark: #0f0f0f;
  --aam-light-dark: #191919;
  --aam-paragraph: #fff;
  --aam-border: #f0f0f0;
  --aam-primary-font: "Exo 2", sans-serif;
  --aam-secondary-font: "Montserrat", sans-serif;
}

body {
  font-family: var(--aam-secondary-font);
  color: var(--aam-paragraph);
  background-color: var(--aam-dark);
}

h1 {
  font-size: 60px;
  font-family: var(--aam-primary-font);
  font-weight: 500;
  color: var(--aam-heading);
  line-height: 1.3;
  transition: all 0.3s;
}

h1 a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

h1 a:hover {
  color: inherit;
}

h2 {
  font-size: 50px;
  font-family: var(--aam-primary-font);
  font-weight: 500;
  color: var(--aam-heading);
  line-height: 1.3;
  transition: all 0.3s;
}

h2 a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

h2 a:hover {
  color: inherit;
}

h3 {
  font-size: 28px;
  font-family: var(--aam-primary-font);
  font-weight: 500;
  color: var(--aam-heading);
  line-height: 1.3;
  transition: all 0.3s;
}

h3 a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

h3 a:hover {
  color: inherit;
}

h4 {
  font-size: 24px;
  font-family: var(--aam-primary-font);
  font-weight: 400;
  color: var(--aam-heading);
  line-height: 1.4;
  transition: all 0.3s;
}

h4 a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

h4 a:hover {
  color: inherit;
}

h6 {
  font-size: 16px;
  font-family: var(--aam-primary-font);
  font-weight: 500;
  color: var(--aam-heading);
  line-height: 1.3;
  transition: all 0.3s;
}

h6 a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

h6 a:hover {
  color: inherit;
}

p {
  font-size: 16px;
  font-family: var(--aam-secondary-font);
  font-weight: 300;
  line-height: 1.6;
  color: var(--aam-paragraph);
  text-transform: initial;
  opacity: 0.85;
}

ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0px;
  padding: 0px;
}

.navbar {
  padding: 0;
}

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

.sec-ptb {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991.98px) {
  .sec-ptb {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

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

@media (max-width: 991.98px) {
  .sec-pt {
    padding-top: 50px;
  }
}

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

@media (max-width: 991.98px) {
  .sec-pb {
    padding-bottom: 50px;
  }
}

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

@media (max-width: 991.98px) {
  .mb--100 {
    margin-bottom: -50px;
  }
}

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

.black-color {
  color: var(--aam-heading);
}

.gray-color {
  color: var(--aam-paragraph);
}

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

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

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

.dark-bg {
  background-color: var(--aam-dark);
}

.light-dark-bg {
  background-color: var(--aam-light-dark);
}

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

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

.border {
  border: 1px solid var(--aam-border);
}

.header-shadow {
  box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
}

.checked {
  color: orange;
}

.overlay {
  position: relative;
  z-index: 0;
}

.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--aam-dark);
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}

.overlay .sec-heading .heading h2 {
  color: #fff;
}

.overlay .sec-heading .sub-heading p {
  color: #fff;
}

.sep-line {
  width: 100%;
  height: 1px;
  background-color: var(--aam-border);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--aam-primary);
}

input:focus {
  border-color: var(--aam-primary);
  box-shadow: none;
  outline: none;
}

.form-control:focus {
  border-color: var(--aam-primary);
  background-color: transparent;
  color: var(--aam-paragraph);
}

.primary-btn {
  font-family: var(--aam-primary-font);
  background-color: var(--aam-primary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 17px;
  display: inline-block;
  border: 1px solid var(--aam-primary);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
}

.primary-btn:hover,
.primary-btn:focus {
  color: #fff;
  background-color: var(--aam-secondary);
  border-color: var(--aam-secondary);
}

.secondary-btn {
  font-family: var(--aam-primary-font);
  background-color: var(--aam-secondary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 17px;
  display: inline-block;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
}
.secondary-btn:hover,
.secondary-btn:focus {
  color: #fff;
  background-color: var(--aam-primary);
}

.white-btn-outline {
  font-family: var(--aam-primary-font);
  background-color: transparent;
  border: 1px solid var(--bs-white);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 17px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
}
.white-btn-outline:hover,
.white-btn-outline:focus {
  color: var(--aam-primary);
  background-color: var(--bs-white);
}

#scroll-up-btn {
  display: inline-block;
  background-color: var(--aam-primary);
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 90px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#scroll-up-btn:after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 45px;
  color: #fff;
}

#scroll-up-btn:hover {
  cursor: pointer;
  background-color: var(--aam-primary);
}

#scroll-up-btn:active {
  background-color: var(--aam-primary);
}

#scroll-up-btn.show {
  opacity: 1;
  visibility: visible;
}

.circle-top {
  width: 450px;
  height: 450px;
  background: var(--aam-gradient);
  top: 0;
  left: 0;
  border-radius: 50rem;
  transform: translate(-10%, -60%);
  opacity: 0.15;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 2.5rem;
  height: 6px;
  border-radius: 4px;
  transition: all 0.3s;
  background-color: #fff;
  cursor: pointer;
}

.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 3.5rem;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.customer-video-wrapper {
  height: 100%;
  width: 100%;
}

.customer-video-wrapper iframe {
  height: 100%;
  width: 100%;
}

.circle-pattren {
  bottom: 6rem;
  left: 2%;
  z-index: -1;
  pointer-events: none;
  animation: move-y-animation 6s ease-in-out infinite;
}

section.position-relative {
  z-index: 0;
}

.circle-outline {
  bottom: -4rem;
  left: -3%;
  z-index: -1;
  pointer-events: none;
  animation: move-y-animation 6s ease-in-out infinite;
}

.circle-outline.right-pos {
  left: initial;
  right: -3%;
}

.circle-outline.right-top {
  left: initial;
  bottom: 0;
  right: -3%;
  top: 6rem;
}

.circle-lg-grd {
  width: 450px;
  height: 450px;
  background: var(--aam-gradient);
  top: 12%;
  right: 0%;
  transform: translateX(60%);
  border-radius: 50rem;
  pointer-events: none;
  opacity: 0.15;
}

@keyframes move-y-animation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

.progress {
  --bs-progress-bg: var(--aam-light-dark);
  --bs-progress-bar-bg: var(--aam-primary);
  --bs-progress-height: 0.75rem;
}

.pagination {
  --bs-pagination-active-bg: var(--aam-primary);
  --bs-pagination-active-border-color: var(--aam-primary);
  --bs-pagination-bg: transparent;
  --bs-pagination-border-color: transparent;
  --bs-pagination-color: #fff;
}

ul.pagination .page-link {
  padding: 0.5rem 1rem;
  margin: 0 0.35rem;
}

.partner-wrapper {
  transition: all 0.3s;
}

.partner-wrapper img {
  filter: grayscale(100%);
  transition: all 0.3s;
}

.partner-wrapper:hover img {
  filter: grayscale(0%);
}

.social-list li a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  transition: all 0.3s;
  color: #fff;
}

.social-list li a:hover {
  background-color: var(--aam-primary);
  border-color: var(--aam-primary);
}

.slidein-menu-toggle {
  cursor: pointer;
  font-size: 20px;
}

.slidein-menu-toggle.top {
  top: 8px;
  left: 15px;
  right: auto;
}

.canvas-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  transition: all 1500ms cubic-bezier(0.645, 0.045, 0.095, 1.08);
  transform: translateX(100%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.canvas-menu-overlay.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.off-canvas-menu {
  padding: 0;
  text-align: left;
  transition: all 1000ms cubic-bezier(0.645, 0.045, 0.095, 1.08);
  z-index: 9;
  z-index: 999999;
  color: #ffffff;
  position: fixed;
  top: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.54);
}

@media (max-width: 575.98px) {
  .off-canvas-menu {
    width: 100%;
  }
}

.off-canvas-menu .slide-logo img {
  max-width: 400px;
}

.off-canvas-menu .canvas-content-wrapper p {
  color: #fff;
}

.off-canvas-menu .canvas-content-wrapper .contact-list li {
  list-style: none;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.off-canvas-menu .canvas-content-wrapper .contact-list li span.icon {
  color: var(--aam-primary);
  font-size: 24px;
  margin-right: 15px;
}

.off-canvas-menu .canvas-menu-logo {
  max-width: 400px;
  margin-bottom: 40px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.off-canvas-menu .canvas-menu-inner {
  width: 450px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
  overflow-y: auto;
  position: relative;
  background-color: var(--aam-dark);
}

@media (max-width: 575.98px) {
  .off-canvas-menu .canvas-menu-inner {
    width: 100%;
    padding: 30px 30px;
  }
}

.off-canvas-menu .slideIn-menu-container {
  margin-top: 0px;
  padding: 20px 25px;
}

.off-canvas-menu .slideIn-menu-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.off-canvas-menu .slideIn-menu-container ul li {
  display: block;
  text-align: left;
  position: relative;
  margin-bottom: 0px;
}

.off-canvas-menu .slideIn-menu-container ul li span.gum-mm-switch {
  position: absolute;
  right: 10px;
  top: 16px;
  font-size: 16px;
  color: #e6e6e6;
  cursor: pointer;
}

.off-canvas-menu .slideIn-menu-container ul li span.gum-mm-switch:hover {
  color: #fff;
}

.off-canvas-menu .slideIn-menu-container ul li a {
  display: block;
  padding: 14px 10px 14px 20px;
  text-transform: capitalize;
  border-bottom: none;
  font-size: 14px;
  color: var(--aam-secondary);
  font-family: var(--aam-primary-font);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-left: none;
  position: relative;
}

.off-canvas-menu .slideIn-menu-container ul li a:hover {
  color: var(--aam-primary) !important;
}

.off-canvas-menu .slideIn-menu-container ul li.menu-item.current-menu-item a {
  color: var(--aam-primary);
  position: relative;
}

.off-canvas-menu
  .slideIn-menu-container
  ul
  li.menu-item.current-menu-item
  a:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--aam-primary);
  position: absolute;
  border-radius: 10px;
  left: 4px;
  top: 20px;
}

.off-canvas-menu
  .slideIn-menu-container
  ul
  li.menu-item.current-menu-item
  span.gum-mm-switch {
  color: var(--aam-primary);
}

.off-canvas-menu .social-list-wrapper {
  margin-top: auto;
}

.off-canvas-menu .social-list-wrapper ul {
  text-align: center;
  padding-top: 0px;
  padding-left: 0px;
  margin-right: 0;
  width: 100%;
  padding-top: 20px;
  margin-bottom: 0px;
}

.off-canvas-menu .social-list-wrapper ul li {
  margin: 5px 3px;
  display: inline-block;
}

.off-canvas-menu .social-list-wrapper ul li a {
  margin: auto;
}

.off-canvas-menu .social-list-wrapper ul li a:hover {
  color: var(--aam-primary);
}

.off-canvas-menu .social-list-wrapper ul li a:hover i {
  color: var(--aam-primary);
}

.off-canvas-menu .dropdown-toggle::after {
  position: absolute;
  right: 12px;
  top: 47%;
}

.off-canvas-menu
  .slideIn-menu-container
  ul.slidein-menu
  li.menu-item
  ul.sub-menu {
  width: 100%;
  display: none;
}

.off-canvas-menu
  .slideIn-menu-container
  ul.slidein-menu
  li.menu-item
  ul.sub-menu
  li.menu-item
  a {
  color: var(--aam-secondary);
  padding-left: 50px;
  font-weight: 400;
}

.off-canvas-menu
  .slideIn-menu-container
  ul.slidein-menu
  li.menu-item
  ul.sub-menu
  li.menu-item
  a:before {
  visibility: hidden;
}

.off-canvas-menu
  .slideIn-menu-container
  ul.slidein-menu
  li.menu-item
  ul.sub-menu
  li.menu-item
  a:hover {
  color: var(--aam-primary) !important;
  font-weight: 600;
}

.off-canvas-menu
  .slideIn-menu-container
  ul.slidein-menu
  li.menu-item
  ul.sub-menu
  li.current-menu-item
  a {
  color: var(--aam-secondary);
  font-weight: 600;
  position: relative;
  padding-left: 66px;
}

.canvas-navigation-right {
  right: -105%;
}

.slide-navigation-left {
  left: -500px;
}

.canvas-navigation-right.active {
  right: 0;
}

.slide-navigation-left.active {
  left: 0px;
}

.off-canvas-menu.active #menu-close {
  margin-left: 0px;
}

.off-canvas-menu .canvas-menu-toggle {
  cursor: pointer;
  margin-left: 0px;
  position: absolute;
  right: 25px;
  top: 20px;
  transition: all 0.2s ease-out 0s;
  color: rgba(255, 255, 255, 0.7);
  font-size: 26px;
}

.off-canvas-menu .canvas-menu-toggle:hover {
  color: var(--aam-primary);
  transform: rotate(90deg);
}

.canvas-menu-list ul.mobile-menu {
  overflow-y: auto;
}

@media (max-height: 540px) {
  .canvas-menu-list ul.mobile-menu {
    max-height: 30vh;
  }
}

.canvas-menu-list ul.mobile-menu a:link,
.canvas-menu-list ul.mobile-menu a:visited {
  color: #fff;
  text-decoration: none;
}

.canvas-menu-list ul.mobile-menu .active a:link,
.canvas-menu-list ul.mobile-menu .active a:visited {
  color: #fff;
}

.canvas-menu-list ul.mobile-menu a:hover,
.canvas-menu-list ul.mobile-menu a:active,
.canvas-menu-list ul.mobile-menu a:focus {
  color: var(--aam-primary);
}

.canvas-menu-list ul.mobile-menu > li {
  min-height: 65px;
  max-height: 100vh;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  cursor: pointer;
}

.canvas-menu-list ul.mobile-menu > li:last-of-type {
  border-bottom: none;
}

.canvas-menu-list ul.mobile-menu > li:hover a:link,
.canvas-menu-list ul.mobile-menu > li:hover a:visited,
.canvas-menu-list ul.mobile-menu > li:active a:link,
.canvas-menu-list ul.mobile-menu > li:active a:visited,
.canvas-menu-list ul.mobile-menu > li:focus a:link,
.canvas-menu-list ul.mobile-menu > li:focus a:visited,
.canvas-menu-list ul.mobile-menu > li.active a:link,
.canvas-menu-list ul.mobile-menu > li.active a:visited {
  color: var(--aam-primary);
}

.canvas-menu-list ul.mobile-menu > li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 0;
  font-family: var(--aam-primary-font);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.canvas-menu-list ul.mobile-menu > li a.active {
  color: var(--aam-primary);
}

.canvas-menu-list ul.mobile-menu > li > a {
  padding-top: 20px;
}

.canvas-menu-list .parent-item {
  position: relative;
}

.canvas-menu-list .parent-item > a::after {
  content: "+";
  display: inline-block;
  position: absolute;
  top: 26px;
  right: 5px;
  transition: all 0.3s;
  font: var(--fa-font-solid);
  font-size: 0.8em;
}

.canvas-menu-list .parent-item.active > a::after {
  content: "\f068";
}

.canvas-menu-list .submenu {
  background-color: transparent;
  position: relative;
  top: 12px;
  left: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border-bottom-right-radius: 10px;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out,
    max-height 0.2s ease-in-out, margin-bottom 0.3s ease-in-out;
}

.canvas-menu-list .submenu.active {
  opacity: 1;
  visibility: visible;
  max-height: 100vh;
  margin-bottom: 15px;
  transition: max-height 1s;
}

.canvas-menu-list .submenu.active li a {
  color: #fff;
}

.canvas-menu-list .submenu li {
  position: relative;
  padding-left: 1em;
  background-color: transparent;
}

.canvas-menu-list .submenu li::before {
  content: "\f111";
  display: block;
  position: absolute;
  top: 21px;
  left: 2px;
  color: rgba(255, 255, 255, 0.6);
  font: var(--fa-font-solid);
  font-size: 4px;
}

.canvas-menu-list .submenu li a {
  padding-top: 12px;
  padding-bottom: 12px;
}

.canvas-menu-list ul.mobile-menu > li ul.submenu.active li a {
  color: #fff;
}

.canvas-menu-list ul.mobile-menu > li ul.submenu.active li a:hover {
  color: var(--aam-primary);
}

.canvas-menu-list ul.mobile-menu > li ul.submenu.active li a.active {
  color: var(--aam-primary);
}

ul.mobile-menu {
  overflow-y: auto;
}

@media (max-height: 540px) {
  ul.mobile-menu {
    max-height: 30vh;
  }
}

.parent-item {
  position: relative;
}

.parent-item > a::after {
  content: "+";
  display: inline-block;
  position: absolute;
  top: 26px;
  right: 5px;
  transition: all 0.3s;
  font-size: 0.8em;
}

.parent-item.active > a::after {
  content: "\f068";
}

.search-block {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 15px;
}

.search-block.visible {
  opacity: 1;
  height: auto;
  z-index: 2030;
  display: block;
}

.search-block.visible .search-inner {
  opacity: 1;
}
.search-block.visible .search-inner ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.search-block.visible .search-inner ::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-block .overlayer {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.search-block .search-inner {
  background-color: transparent;
  border-bottom: 1px solid var(--aam-secondary);
  opacity: 0;
  padding: 5px 15px;
  position: relative;
  transition: all 0.4s ease 0s;
  z-index: 10;
  display: block;
  max-width: 600px;
  margin: auto;
  top: 30%;
  border-radius: 0;
}

.search-block .search-inner .search_input {
  border: none;
  background-color: transparent;
  box-sizing: border-box;
  display: inline-block;
  height: 60px;
  line-height: 2;
  outline: medium none;
  padding: 10px 10px 10px 43px;
  width: 100%;
  transition: all 0.45s ease 0s;
  -webkit-appearance: none;
  border-radius: 0;
  color: #fff;
  font-size: 20px;
}

.search-block .search-inner .search_input.typing {
  border: none;
}

.search-block .search-inner .search-icon {
  background-color: transparent;
  border: medium none;
  color: var(--aam-secondary);
  font-size: 20px;
  left: 13px;
  line-height: 1;
  padding: 8px;
  position: absolute;
  top: 16px;
}

.search-block .search-inner .search-icon:hover {
  color: #fff;
}

.modal-content .media-wrapper {
  height: 400px;
  padding: 5px;
}

.modal-content .media-wrapper iframe {
  width: 100%;
  height: 100%;
}

ul.nav-pills {
  flex-wrap: nowrap;
  overflow-x: auto;
}

ul.nav-pills .nav-item .nav-link {
  color: #fff;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  ul.nav-pills .nav-item .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

ul.nav-pills .nav-item .nav-link.active {
  background-color: transparent;
  color: var(--aam-primary);
  border-bottom: 1px solid var(--aam-primary);
}

.list-style li {
  list-style: none;
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 400;
  font-family: var(--aam-secondary-font);
}

.list-style li:last-of-type {
  margin-bottom: 0;
}

.list-style li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.list-style-one li {
  list-style: none;
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #fff;
}

.list-style-one li:last-of-type {
  margin-bottom: 0;
}

.list-style-one li:before {
  content: "\f00c";
  font-family: "font awesome 5 free";
  font-weight: 700;
  position: absolute;
  left: 0;
  color: var(--aam-primary);
}

.list-style-one li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.list-style-two li {
  list-style: none;
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  color: #fff;
}

.list-style-two li:last-of-type {
  margin-bottom: 0;
}

.list-style-two li:before {
  content: "";
  position: absolute;
  left: 0px;
  color: var(--aam-primary);
  width: 12px;
  height: 12px;
  top: 5px;
  background-color: var(--aam-primary);
  opacity: 1;
  border-radius: 20px;
}

.list-style-two li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.cta-bg {
  background-image: url(../assets/images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min: 768px) {
  .cta-bg {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.parallax-effect {
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}

.parallax-effect:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--aam-dark);
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.customer-video-slider {
  padding-bottom: 4rem;
}

.customer-video-slider .swiper-slide {
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.8);
  min-height: 300px;
  width: 100%;
}

.customer-video-slider .swiper-slide.swiper-slide-active {
  transform: scale(1);
  background: var(--aam-gradient);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.customer-video-slider .swiper-pagination-bullets {
  text-align: center;
  transform: translateY(35px);
}

.customer-video-slider .video-wrapper .video-js {
  height: 308px;
}

.customer-video-slider .video-js .vjs-big-play-button {
  cursor: pointer;
}

.customer-video-slider
  .video-js
  .vjs-big-play-button
  .vjs-icon-placeholder:before {
  width: 75px;
  height: 75px;
  line-height: 77px;
  font-size: 48px;
}

.sub-title {
  font-family: var(--aam-primary-font);
  letter-spacing: 0.05em;
  font-weight: 300;
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.heading-title {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1.1rem;
}

@media (min-width: 1200px) {
  .heading-title {
    font-size: 2.75rem;
  }
}

.heading-title span {
  color: var(--aam-primary);
}

.heading-title:before {
  content: "";
  width: 130px;
  height: 6px;
  border-radius: 5rem;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.8;
}

.heading-title:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5rem;
  background-color: var(--aam-primary);
  position: absolute;
  left: 1rem;
  bottom: -2px;
  animation: dot-animation 10s ease-in-out infinite;
}

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

.heading-center .heading-title:before {
  left: calc(50% - 65px);
}

.heading-center .heading-title:after {
  left: calc(45% - 1rem);
}

@media (max-width: 991.98px) {
  .heading-md-center {
    text-align: center;
  }
  .heading-md-center .heading-title:before {
    left: calc(50% - 65px);
  }
  .heading-md-center .heading-title:after {
    left: calc(50% - 1.5rem);
  }
}

.sub-heading {
  margin-top: 1rem;
}

.heading-404 {
  font-size: calc(3.625rem + 4.5vw);
  font-weight: 600;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .heading-404 {
    font-size: 10rem;
  }
}

@keyframes dot-animation {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(90px);
  }
  100% {
    transform: translateX(0px);
  }
}

.feat-img-wrapper {
  position: relative;
  height: 400px;
  background-image: url(../assets/images/ptn.png);
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 576px) {
  .feat-img-wrapper {
    height: 560px;
  }
}

.feat-img-wrapper .img-one-wrapper {
  width: 90%;
  height: 340px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 576px) {
  .feat-img-wrapper .img-one-wrapper {
    width: 400px;
    height: 440px;
  }
}

.feat-img-wrapper .img-one-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

.feat-img-wrapper .img-two-wrapper {
  width: 90%;
  height: 200px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

@media (min-width: 576px) {
  .feat-img-wrapper .img-two-wrapper {
    width: 420px;
    height: 300px;
  }
}

.feat-img-wrapper .img-two-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

.feature-wrapper {
  transition: all 0.3s;
  transform: translateY(0);
  position: relative;
  z-index: 0;
}

.feature-wrapper:before {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--aam-gradient);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
}

.feature-wrapper:hover:before {
  transform: scaleX(1);
}

.feature-wrapper .feature-icon i {
  font-size: 3rem;
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-wrapper .feature-count {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(
    to bottom,
    var(--aam-primary),
    var(--aam-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-wrapper h4 {
  transition: all 0.3s;
}

.feature-wrapper h4:hover {
  color: var(--aam-primary);
}

.feature-wrapper p {
  margin: 0;
}

.feature-wrapper.style-two {
  border: 1px solid rgba(255, 255, 255, 0.1882352941);
}
.feature-wrapper.style-two::before {
  display: none;
}
.feature-wrapper.style-two:hover {
  border-color: var(--aam-primary);
  transform: translateY(-8px);
}
.feature-wrapper.style-two:hover h4 {
  color: var(--aam-secondary);
}

.feature-wrapper-two .icon {
  width: 55px;
  height: 55px;
  border-radius: 50rem;
  background-color: var(--aam-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.testimonial-wrapper .author-title h4 {
  font-size: 18px;
  font-weight: 500;
}

.testimonial-wrapper .author-title p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  font-style: italic;
}

.testimonial-wrapper .author-avatar img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50rem;
}

.testimonial-wrapper .testimonial-content {
  position: relative;
  background-color: var(--aam-primary);
}

.testimonial-wrapper .testimonial-content:before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 100px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--aam-primary);
}

.testimonial-wrapper .testimonial-content p {
  font-size: 15px;
  opacity: 1;
}

.testimonial-wrapper .testimonial-content .testimonial-rating .icon {
  color: #f4c60f;
}

.testimonial-wrapper.style-two .testimonial-content {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.testimonial-wrapper.style-two .testimonial-content::before {
  display: none;
}

section.counter-sec {
  z-index: 1;
}

.portfolio-wrapper {
  aspect-ratio: 1/1;
  background-color: var(--aam-dark);
}
.portfolio-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.portfolio-wrapper .icon {
  color: #fff;
}
.portfolio-wrapper .card-img-overlay {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 0;
}
.portfolio-wrapper .card-img-overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--aam-primary);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.8;
}
.portfolio-wrapper p {
  color: #fff;
}
.portfolio-wrapper h4 {
  transition: all 0.3s;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.portfolio-wrapper:hover .card-img-overlay {
  opacity: 1;
  visibility: visible;
}

.count-up {
  display: flex;
  align-items: center;
  padding: 28px 30px;
}

@media (min-width: 1200px) {
  .count-up {
    padding: 50px 16px;
    justify-content: center;
  }
}

.count-up .count {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 992px) {
  .count-up .count {
    font-size: 50px;
  }
}

.count-up .stats-icon {
  width: 60px;
  height: 60px;
  background-color: var(--aam-primary);
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.count-up p {
  font-size: 18px;
  margin-bottom: 0;
}

.form-control {
  padding: 1rem 1.25rem;
  border-color: rgba(255, 255, 255, 0.2);
  background-color: var(--aam-light-dark);
  color: #fff;
  font-weight: 300;
}

.form-control:focus-visible,
.form-control:focus {
  outline: none;
  border: 1px solid var(--aam-primary);
  box-shadow: none;
  color: #fff;
}

.form-select {
  padding: 1rem 1.25rem;
  background-color: var(--aam-light-dark);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-select:focus-visible,
.form-select:focus {
  outline: none;
  border: 1px solid var(--aam-primary);
  box-shadow: none;
}

.blog-wrapper {
  background-color: var(--aam-light-dark);
}

.blog-wrapper .card-img-top {
  -o-object-position: top;
  object-position: top;
  -o-object-fit: cover;
  object-fit: cover;
  height: 260px;
  transform: scale(1);
  transition: all 0.5s;
}

.blog-wrapper .card-img-sek-top {
  object-position: top;
  object-fit: cover;
  height: 260px;
}

.blog-wrapper .card-img-overlay {
  background: var(--aam-gradient);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-102%);
}

.blog-wrapper:hover .card-img-top {
  transform: scale(1.2);
}

.blog-wrapper:hover .card-img-overlay {
  transform: translateY(0);
  opacity: 0.6;
  visibility: visible;
}

.blog-wrapper .card-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 400;
  transition: all 0.3s;
  line-height: 1.3;
}

.blog-wrapper .card-title a {
  text-decoration: none;
  color: inherit;
  width: 100%;
  display: inline;
  background-position-y: -2px;
  background-repeat: no-repeat;
  background-size: 0 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-image: linear-gradient(
    transparent calc(100% - 2px),
    currentColor 1px
  );
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.blog-wrapper .card-title:hover {
  color: var(--aam-primary);
}

.blog-wrapper .card-title:hover a {
  color: inherit;
  background-size: 100% 100%;
}

ul.blog-meta {
  display: flex;
  align-items: center;
}

ul.blog-meta li {
  list-style: none;
  padding: 0px 1.5rem;
  position: relative;
}

@media (max-width: 575.98px) {
  ul.blog-meta li {
    font-size: 15px;
  }
}

ul.blog-meta li:before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #fff;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
}

ul.blog-meta li:first-of-type {
  padding-left: 0;
}

ul.blog-meta li:last-of-type {
  padding-right: 0;
}

ul.blog-meta li:last-of-type::before {
  display: none;
}

ul.blog-meta li a,
ul.blog-meta li span {
  color: #fff;
  font-weight: 300;
}

ul.blog-meta li a {
  transition: all 0.3s;
}

ul.blog-meta li a:hover {
  color: var(--aam-primary);
}

.blog-summery ol,
.blog-summery ul,
.blog-summery h1,
.blog-summery h2,
.blog-summery h3,
.blog-summery h4,
.blog-summery h5,
.blog-summery h6,
.blog-summery figure {
  margin-bottom: 1rem;
}

.blog-summery .blockquote {
  padding: 40px 30px 40px 75px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  border-radius: 0.5rem;
}

.blog-summery .blockquote:before {
  content: "\f10d";
  font: var(--fa-font-solid);
  position: absolute;
  left: 40px;
  top: 22px;
  color: #fff;
  opacity: 0.05;
  font-size: 50px;
}

.blog-summery .share-wrapper ul.social-list li a:hover {
  color: var(--aam-primary);
}

.blog-summery .feature-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.35rem 0.35rem 0 0;
}

.team-wrapper img {
  height: 370px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

@media (min-width: 1200px) {
  .team-wrapper img {
    height: 420px;
  }
}

.team-wrapper .overlay-inner {
  background: var(--aam-gradient);
  opacity: 0;
  transition: 0.3s;
}

.team-wrapper .card-body h3 {
  color: #fff;
  transition: all 0.3s;
}

.team-wrapper .card-body h3:hover {
  color: var(--aam-primary);
}

.team-wrapper .card-body p {
  color: var(--aam-primary);
}

.team-wrapper .social-list {
  top: 20px;
  left: 20px;
}

.team-wrapper .social-list .btn-icon {
  background-color: var(--aam-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  left: -10px;
  position: relative;
}

.team-wrapper .social-list .btn-icon:nth-child(1) {
  transition-delay: 0.1s;
}

.team-wrapper .social-list .btn-icon:nth-child(2) {
  transition-delay: 0.2s;
}

.team-wrapper .social-list .btn-icon:nth-child(3) {
  transition-delay: 0.3s;
}

.team-wrapper .social-list .btn-icon:nth-child(4) {
  transition-delay: 0.4s;
}

.team-wrapper .social-list .btn-facebook {
  background-color: #1776f1;
}

.team-wrapper .social-list .btn-twitter {
  background-color: #1ea2f3;
}

.team-wrapper .social-list .btn-linkedin {
  background-color: #0273ae;
}

.team-wrapper .social-list .btn-youtube {
  background-color: #cf0b39;
}

.team-wrapper:hover .overlay-inner {
  opacity: 0.6;
  transition: 0.3s;
}

.team-wrapper:hover .social-list .btn-icon {
  opacity: 1;
  visibility: visible;
  left: 10px;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-button::after {
  background-image: none;
  content: "+";
  font-weight: 400;
  font-size: 22px;
  position: absolute;
  top: 18px;
  left: 20px;
  right: 18px;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(0deg);
  content: "-";
}

.accordion .accordion-item {
  background-color: var(--aam-light-dark);
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion .accordion-button {
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  padding: 1.3rem 1.5rem;
  padding-right: 40px;
  color: #fff;
}

.accordion .accordion-body {
  background-color: var(--aam-dark);
}

.accordion .accordion-button:not(.collapsed) {
  color: #fff;
  box-shadow: none;
  background-color: var(--aam-primary);
}

.accordion.style-two .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion.style-two .accordion-button {
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 1.75rem 1.5rem;
  padding-right: 3.5rem;
}

.accordion.style-two .accordion-body {
  padding: 2rem 1.75rem;
}

.accordion.style-two .accordion-button:after {
  content: "\f063";
  font-family: FontAwesome;
  line-height: 1;
  vertical-align: -0.125em;
  background-image: none;
  width: 35px;
  height: 35px;
  border: 1px solid #e5e5e5;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transform: rotate(180deg);
  position: absolute;
  right: 1.25rem;
  top: 1.5rem;
}

.accordion.style-two .accordion-button.collapsed:after {
  transform: rotate(0deg);
}

.video-wrapper .video-js {
  width: 100%;
  height: 450px;
}

@media (max-width: 991.98px) {
  .video-wrapper .video-js {
    height: 450px;
  }
}

@media (max-width: 575.98px) {
  .video-wrapper .video-js {
    height: 350px;
  }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: unset !important;
  height: unset !important;
}

.video-js .vjs-play-progress {
  background-color: var(--aam-primary) !important;
}

.video-js .vjs-big-play-button {
  top: 45% !important;
  border: none !important;
  background-color: #ffffff00 !important;
  background-color: #ffffff00 !important;
  border-radius: none !important;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  width: 90px !important;
  height: 90px !important;
  background: var(--aam-secondary);
  border-radius: 100px;
  line-height: 91px !important;
  color: #fff;
  font-size: 55px;
  transition: all 0.3s;
}

.customer-video-slider
  .video-js
  .vjs-big-play-button
  .vjs-icon-placeholder:before {
  width: 75px;
  height: 75px;
  line-height: 77px;
  font-size: 48px;
}

/* .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "";
  background-image: url('https://pngimage.net/wp-content/uploads/2018/06/svt-png-9.png');
  background-repeat: no-repeat;
  background-size: 46px;
  background-position: 55% calc(50% - 0px);
  border: none !important;
  box-shadow: none !important;
} */

.video-js .vjs-big-play-button .vjs-icon-placeholder:hover:before {
  background-color: var(--aam-primary);
}

.vjs-poster {
  background-size: cover !important;
  transition: all 0.3s;
}

.vjs-poster img {
  object-fit: cover !important;
}

.vjs-theme-fantasy .vjs-play-progress,
.vjs-theme-fantasy .vjs-play-progress:before {
  background-color: var(--aam-primary);
}

.pricing-sec .card-header p {
  font-size: 14px;
  color: #6f6f6f;
}
.pricing-sec .card-body .btn {
  font-size: 14px;
  background-color: var(--aam-primary);
  transition: all 0.3s;
  padding: 0.75rem;
  border: none;
}
.pricing-sec .card-body .btn:hover {
  background-color: #212529;
}
.pricing-sec .card-body .btn:active,
.pricing-sec .card-body .btn:focus {
  border-color: transparent;
}
.pricing-sec .card-body ul li {
  font-size: 14px;
}
.pricing-sec .card-body ul li .list-icon {
  color: var(--aam-primary);
  position: relative;
  z-index: 0;
}
.pricing-sec .card-body ul li .list-icon:before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 5rem;
  background-color: var(--aam-primary);
  opacity: 0.2;
  position: absolute;
  left: 0;
  z-index: -1;
}
.pricing-sec .card-body ul li .bg-light:before {
  background-color: var(--bs-light-rgb);
}
.pricing-sec .form-switch .form-check-input {
  width: 3.5em;
  height: 1.5em;
  cursor: pointer;
}
.pricing-sec .form-check-input:checked {
  background-color: var(--aam-primary);
  border-color: var(--aam-primary);
}
.pricing-sec .form-check-input:focus {
  box-shadow: none;
}
.pricing-sec .card-border {
  border: 2px solid var(--aam-primary);
}
.pricing-sec .badge {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  background-color: var(--aam-primary);
}
.pricing-sec .card {
  transition: all 0.3s;
  transform: translateY(0);
}
.pricing-sec .card:hover {
  transform: translateY(-5px);
}
.pricing-sec .pricing-card-title {
  transition: all 0.3s;
}
.pricing-sec .enterprise-package {
  background-image: linear-gradient(to top right, #212529, var(--aam-primary));
}
.pricing-sec .enterprise-package .btn {
  background-color: #fff;
}
.pricing-sec .enterprise-package .btn:hover {
  background-color: var(--bs-light);
  opacity: 0.9;
}

.portfolio-wrapper button {
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  margin-top: 1rem;
}

.portfolio-detail-modal .btn-close {
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 9;
}

.nav-bg {
  background-color: transparent;
}

ul.navbar-nav li.menu-item {
  margin: 0px 18px;
  padding: 0px 0px;
  position: relative;
}

@media (min-width: 1200px) {
  ul.navbar-nav li.menu-item {
    margin: 0px 28px;
  }
}

ul.navbar-nav li.menu-item > a {
  color: var(--aam-heading);
  margin: 0px 0px;
  padding: 25px 0px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--aam-primary-font);
  position: relative;
  transition: all 0.4s;
  display: inline-block;
}

ul.navbar-nav li.menu-item > a:hover {
  color: var(--aam-primary);
}

ul.navbar-nav li.menu-item > a:hover:before {
  transform: scaleX(1);
}

ul.navbar-nav li.menu-item.current-menu-item a {
  color: var(--aam-primary);
}

ul.navbar-nav li.menu-item.current-menu-item a:before {
  transform: scaleX(1);
}

ul.navbar-nav li.menu-item.current-menu-item a::after {
  border-color: var(--aam-heading);
}

ul.navbar-nav li.menu-item:last-of-type a {
  margin-right: 0;
  padding-right: 0;
}

ul.navbar-nav li.menu-item-has-children > a:after {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  right: 0px;
  font-size: 13px;
  margin-right: -18px;
  top: 27px;
}

@media (max-width: 767.98px) {
  ul.navbar-nav {
    background-color: var(--aam-light-dark);
    border-radius: 6px;
    padding: 6px 0px;
  }
  ul.navbar-nav li.menu-item > a {
    padding: 12px 0px;
  }
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.aamax-landing-page .sticky-header {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
@media (max-width: 991.98px) {
  .aamax-landing-page .sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    -op-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -op-animation-duration: 500ms;
    animation-duration: 500ms;
    -op-animation-timing-function: linear;
    animation-timing-function: linear;
    -op-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  .aamax-landing-page .sticky-header .nav-bg {
    background-color: var(--aam-light-dark);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 0;
  }
}
.aamax-landing-page ul.navbar-nav li.menu-item > a.active {
  color: var(--aam-primary);
}

.navbar-toggler-icon {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header .logo-wrapper {
  padding: 12px 0px;
}

.header .canvas-menu-icon a,
.header .search-icon-wrapper a {
  color: var(--aam-heading);
  font-size: 18px;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.header .canvas-menu-icon a:hover,
.header .search-icon-wrapper a:hover {
  color: var(--aam-primary);
}

.header .primary-btn,
.header .white-btn-outline {
  padding: 0.6rem 1.5rem;
  font-size: 16px;
  border-radius: 5px;
}

@media (min-width: 992px) {
  .sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    -op-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -op-animation-duration: 500ms;
    animation-duration: 500ms;
    -op-animation-timing-function: linear;
    animation-timing-function: linear;
    -op-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
}
.sticky-header .nav-bg {
  background-color: var(--aam-light-dark);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar {
  padding: 0.75rem 0;
}

.navbar > .container {
  position: relative;
}

.navbar ul.navbar-nav .dropdown-toggle:after {
  border-color: var(--aam-heading);
}

.dropdown-toggle::after {
  box-sizing: border-box;
  height: 0.4em;
  width: 0.4em;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: all 0.3s;
  margin-left: 0.355em;
}

header .main-nav ul li ul.sub-menu {
  border-radius: 0;
  box-shadow: 0 0px 10px rgba(37, 37, 37, 0.12);
  -webkit-box-shadow: 0 0px 10px rgba(37, 37, 37, 0.12);
  margin: 0;
  background: var(--aam-light-dark);
  border: none;
  transition: all 0.3s;
  top: 115% !important;
  border-radius: 4px;
  z-index: 9;
  position: absolute;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  display: block;
  min-width: 12em;
}

header .main-nav ul li ul.sub-menu li {
  margin: 0px 0px;
  padding: 0px;
  list-style: none;
}

header .main-nav ul li ul.sub-menu li a {
  padding: 10px 20px;
  margin: 0px 0px;
  position: relative;
  transition: all 0.3s;
  font-size: 15px;
  color: var(--aam-heading);
}

header .main-nav ul li ul.sub-menu li a::before {
  display: none;
}

header .main-nav ul li ul.sub-menu li a:after {
  display: none;
}

header .main-nav ul li ul.sub-menu li a:hover {
  padding-left: 25px;
  color: var(--aam-primary);
}

header .main-nav ul li ul.sub-menu li a:hover:after {
  border-color: var(--aam-primary);
}

header .main-nav ul li ul.sub-menu li.current-menu-item a {
  color: var(--aam-primary);
  background-color: var(--aam-gray)-2;
}

header .main-nav ul li.menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100% !important;
}

.header .top-bar {
  background-color: var(--aam-primary);
}
.header .top-bar .nav-link {
  font-size: 12px;
  transition: 300ms;
  color: var(--bs-dark);
}
.header .top-bar .nav-link:hover {
  color: var(--bs-white);
  text-decoration: underline;
}
.header .navbar-brand {
  width: 126px;
}
@media (min-width: 576px) {
  .header .navbar-brand {
    width: auto;
  }
}
.header .navbar-nav .nav-link {
  font-size: 14px;
}
.header .navbar-nav .nav-link:hover {
  color: var(--aam-primary);
}
@media (min-width: 992px) {
  .header .dropdown.dropdown-megamenu:hover .dropdown-menu {
    display: block;
    opacity: 1;
    margin-top: 0.125rem;
    pointer-events: all;
  }
}
.header .dropdown.dropdown-megamenu .dropdown-menu {
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .header .dropdown.dropdown-megamenu .dropdown-menu {
    opacity: 0;
    display: block;
    margin-top: 1rem;
    pointer-events: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}
.header .dropdown.dropdown-megamenu .dropdown-menu h4 {
  font-size: 16px;
  transition: all 0.3s;
}
.header .dropdown.dropdown-megamenu .dropdown-menu h4:hover {
  color: var(--aam-primary);
}
.header .dropdown.dropdown-megamenu .dropdown-menu ul {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--aam-primary-font);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header .dropdown.dropdown-megamenu .dropdown-menu ul li a {
  font-size: 15px;
  color: var(--bs-white);
  font-family: var(--aam-primary-font);
  transition: all 0.3s;
}
.header .dropdown.dropdown-megamenu .dropdown-menu ul li a:hover {
  color: var(--aam-primary);
}
.header .dropdown.dropdown-megamenu .dropdown-item {
  font-size: 14px;
  color: var(--bs-nav-link-color);
  background-color: transparent;
}
.header .dropdown.dropdown-megamenu .dropdown-item:hover {
  color: var(--aam-primary);
}
.header .dropdown.dropdown-megamenu .dropdown-toggle::after {
  display: none;
}
.header .dropdown.dropdown-megamenu .dropdown-toggle::after {
  color: var(--bs-gray-500);
}
.header .social-wrapper span {
  cursor: pointer;
  color: var(--bs-nav-link-color);
}
.header .social-wrapper span:hover {
  color: var(--aam-primary);
}
.header .offcanvas {
  --su-width: 400px;
  --bs-border-color: #444;
  width: var(--su-width);
  color: var(--bs-white);
  background-color: var(--aam-dark);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.095, 1.08);
}
.header .offcanvas .offcanvas-body {
  overflow-x: hidden;
}
.header .offcanvas .offcanvas-body .menu-heading {
  color: var(--bs-white);
}
.header .offcanvas .offcanvas-body ul li .nav-link {
  font-size: 17px;
  color: var(--bs-white);
  transition: color 0.3s ease;
  border-bottom: 1px solid #898989;
  font-family: var(--aam-primary-font);
  margin: 0 1.5rem;
}
.header .offcanvas .offcanvas-body ul li .nav-link.active {
  color: var(--aam-primary);
}
.header .offcanvas .offcanvas-body ul li h4 {
  border-bottom: 1px solid #898989;
  font-size: 17px;
  margin: 0 1.5rem;
}
.header .offcanvas .offcanvas-body ul li ul li .nav-link {
  border-bottom: none;
  position: relative;
}
.header .offcanvas .offcanvas-body ul li ul li .nav-link:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: var(--bs-white);
  position: absolute;
  left: 0;
  top: 44%;
}
.header .offcanvas .offcanvas-body li:last-child .nav-link {
  border-bottom: 0;
}
.header .offcanvas .contact-list li {
  list-style: none;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.header .offcanvas .contact-list li span.icon {
  color: var(--aam-primary);
  font-size: 24px;
  margin-right: 15px;
}
.header .offcanvas .social-list-wrapper {
  margin-top: auto;
}
.header .offcanvas .social-list-wrapper ul {
  text-align: center;
  padding-top: 0px;
  padding-left: 0px;
  margin-right: 0;
  width: 100%;
  margin-bottom: 0px;
}
.header .offcanvas .social-list-wrapper ul li {
  margin: 5px 3px;
  display: inline-block;
}
.header .offcanvas .social-list-wrapper ul li a {
  margin: auto;
}
.header .offcanvas .social-list-wrapper ul li a:hover {
  background-color: var(--aam-primary);
}
.header .offcanvas .submenu {
  transition: 0.65s cubic-bezier(0.48, 0, 0.12, 1) 0.2s;
  background-color: var(--aam-dark);
}
.header .offcanvas .submenu:not(.translate-x-full) {
  visibility: hidden;
  animation: canvas-ani 0.2s linear forwards;
}
.header .offcanvas .submenu.translate-x-full {
  transform: translateX(100%);
  display: none;
}
@keyframes canvas-ani {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0%);
    visibility: visible;
  }
}
.header .offcanvas .submenu .submenu-header span {
  cursor: pointer;
  transition: 260ms ease;
  transform: translateX(0);
  color: var(--bs-white);
}
.header .offcanvas .submenu .submenu-header span:hover {
  transform: translateX(0);
  color: var(--bs-dark);
}
.header .btn-close {
  width: 0.4rem;
  height: 0.4rem;
}
.header .offcanvas-backdrop {
  background: hsla(0, 0%, 100%, 0.3);
  transition: all 1.5s cubic-bezier(0.645, 0.045, 0.095, 1.08);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}
.header .offcanvas-backdrop.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.hero-section {
  overflow: hidden;
}

.hero-section .hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-section .hero-slider {
  overflow: hidden;
  width: 100%;
  height: 80vh;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero-section .hero-slider {
    height: 750px;
  }
}

.hero-section .hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-section .hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-section .hero-title {
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 160px;
}

.hero-section p {
  font-family: var(--aam-primary-font);
  opacity: 1;
  font-weight: 200;
}

@media (min-width: 1200px) {
  .hero-section p {
    width: 80%;
  }
}

.hero-section .swiper-pagination .swiper-pagination-bullet {
  margin-right: 8px;
}

.hero-section .hero-banner {
  height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-section .circle-pattren {
  left: initial;
  right: 2%;
}

.inner-banner {
  height: 260px;
}

@media (min-width: 992px) {
  .inner-banner {
    height: 350px;
  }
}

.inner-banner .breadcrumb {
  justify-content: center;
  margin-top: 1rem;
}

.inner-banner .breadcrumb .breadcrumb-item a {
  color: #fff;
  font-size: 16px;
}

.inner-banner .breadcrumb .breadcrumb-item.active {
  color: var(--aam-primary);
}

.inner-banner .breadcrumb span.icon {
  margin-right: 5px;
  font-size: 14px;
}

.inner-banner .inner-baner-text {
  padding-top: 70px;
}

@media (min-width: 992px) {
  .inner-banner .inner-baner-text {
    padding-top: 60px;
  }
}

.inner-banner .inner-baner-text h1 {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
}

@media (min-width: 992px) {
  .inner-banner .inner-baner-text h1 {
    font-size: 46px;
  }
}

.bg-inner-banner {
  background-image: url(/assets/images/inner-banner-bg-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sidebar .heading h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 500;
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.sidebar .nav-tabs {
  border-color: rgba(255, 255, 255, 0.2);
}

.sidebar .nav-tabs .nav-link {
  border: none;
  color: #fff;
  font-family: var(--aam-primary-font);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
}

.sidebar .nav-tabs .nav-link.active {
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-color: var(--aam-light-dark);
}

.sidebar .sp-line {
  padding-bottom: 0px;
}

.sidebar .sp-line:after {
  left: 0;
  right: initial;
}

.sidebar form .form-control {
  background-color: var(--aam-dark);
  border-radius: 0.4rem !important;
}

.sidebar form .search-btn {
  background: transparent;
  border: none;
  position: absolute;
  font-size: 20px;
  top: 11px;
  right: 13px;
  color: var(--aam-paragraph);
  transition: all 0.3s;
  z-index: 5;
}

.sidebar form .search-btn:hover {
  color: var(--aam-primary);
}

.side-widget {
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.75rem 1.25rem;
  background-color: var(--aam-light-dark);
  border-radius: 0.5rem;
}

.side-widget .form-control {
  background-color: #fff;
}

.small-post-style {
  display: flex;
  margin-bottom: 20px;
}

.small-post-style:last-of-type {
  margin-bottom: 0;
}

.small-post-style figure {
  width: 120px;
  height: 100px;
  margin-right: 1rem;
  border-radius: 3px;
  overflow: hidden;
}

@media (max-width: 576.98px) {
  .small-post-style figure {
    width: 90px;
    height: 80px;
  }
}

.small-post-style figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1);
}

.small-post-style h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.small-post-style ul.dcs-list li {
  list-style: none;
  font-size: 12px;
  color: #fff;
}

.small-post-style:hover h4 {
  color: var(--aam-primary);
}

.small-post-style:hover figure img {
  transform: scale(1.1);
}

.tagcloud .tag-cloud-link {
  background-color: var(--aam-dark);
  color: var(--aam-paragraph);
  padding: 8px 15px;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 8px;
  margin-right: 5px;
  transition: all 0.3s;
}

.tagcloud .tag-cloud-link:hover {
  color: #fff;
  background-color: var(--aam-primary);
}

ul.side-cat-list li {
  list-style: none;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

ul.side-cat-list li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: var(--aam-paragraph);
  transition: all 0.3s;
}

ul.side-cat-list li a:hover {
  color: var(--aam-primary);
}

ul.side-cat-list li:last-of-type {
  border-bottom: none;
}

footer .heading-title:before {
  display: none;
}

footer .heading-title:after {
  display: none;
}

footer .btn {
  background-color: var(--am--primary);
  border-color: var(--am--primary);
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

footer .btn:hover {
  background-color: var(--bs-info);
  color: #fff;
  border-color: var(--bs-info);
}

footer p {
  margin: 0;
  opacity: 1;
}

footer .menu-list li a {
  color: #fff;
  transition: all 0.3s;
}

footer .menu-list li a:hover {
  color: var(--aam-primary);
}

footer .copyright-text span {
  color: var(--aam-primary);
}

footer .copyright-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* /////////// IMAGE ZOOM /////////// */

@keyframes zoomInImage {
  from {
    transform: scale(1, 1);
    transform-origin: 50% 50%;
  }
  to {
    transform: scale(1.8, 1.9);
    transform-origin: 50% 0%;
  }
}

.zoomInImage {
  animation: zoomInImage 15s linear infinite;
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  animation-name: zoomOutImage;
}
.customer-video-slider .video-wrapper .video-js {
  height: 308px !important;
}
.customer-video-slider .video-js .vjs-big-play-button {
  cursor: pointer;
}
.customer-video-slider
  .video-js
  .vjs-big-play-button
  .vjs-icon-placeholder:before {
  width: 75px;
  height: 75px;
  line-height: 77px;
  font-size: 48px;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-disabled {
  cursor: not-allowed;
}
.inline {
  display: inline;
}

.hero-lp ul.nav-pills .nav-item .nav-link {
  color: #fff;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 575.98px) {
  .hero-lp ul.nav-pills .nav-item .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.hero-lp ul.nav-pills .nav-item .nav-link.active {
  background-color: transparent;
  color: var(--aam-primary);
  border-bottom: 1px solid var(--aam-primary);
}

.secvices-lp .feature-wrapper {
  transition: all 0.3s;
  transform: translateY(0);
  position: relative;
  z-index: 0;
}
.secvices-lp .feature-wrapper:before {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--aam-gradient);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
}
.secvices-lp .feature-wrapper:hover:before {
  transform: scaleX(1);
}
.secvices-lp .feature-wrapper .feature-icon i {
  font-size: 3rem;
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.secvices-lp .feature-wrapper h4 {
  transition: all 0.3s;
}
.secvices-lp .feature-wrapper h4:hover {
  color: var(--aam-primary);
}
.secvices-lp .feature-wrapper p {
  margin: 0;
}

.hero-lp ul.nav-pills li {
  flex-grow: 1;
  margin: 0.25rem;
}
.hero-lp ul.nav-pills li button.nav-link {
  padding: 1rem 1.25rem;
  border-bottom: none;
  background-color: var(--aam-light-dark);
  border: 1px solid var(--aam-light-dark) !important;
  border-radius: 0.375rem !important;
  transition: all 0.3s;
  width: 100%;
}
.hero-lp ul.nav-pills li button.nav-link:hover {
  opacity: 0.8;
}
.hero-lp ul.nav-pills li button.nav-link.active {
  background-image: var(--aam-gradient);
  color: #fff !important;
  opacity: 1;
}

.dotted-bg {
  z-index: -1;
}

.hero-section.hero-lp {
  overflow: hidden;
  padding-top: 100px;
  margin-bottom: -190px;
  position: relative;
}
.hero-section.hero-lp .hero-title {
  background: var(--aam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section.hero-lp p {
  font-family: var(--aam-primary-font);
  opacity: 1;
  font-weight: 200;
  margin: 0 auto;
}
.hero-section.hero-lp .hero-img-outer {
  z-index: 9;
}
.sec-ng-ptb {
  padding-top: 230px;
  padding-bottom: 80px;
}

.sec-links-ptb {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 991.98px) {
  .sec-links-ptb {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
