/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
:root {
  --amoxi-font: "DM Sans", sans-serif;
  --amoxi-heading-font: "Plus Jakarta Sans", sans-serif;
  --amoxi-special-font: "Whisper", cursive;
  --amoxi-text: #b2afa6;
  --amoxi-text-rgb: 178, 175, 166;
  --amoxi-text-gray: #636363;
  --amoxi-text-gray-rgb: 99, 99, 99;
  --amoxi-base: #ff621d;
  --amoxi-base-rgb: 255, 98, 29;
  --amoxi-gray: #969697;
  --amoxi-gray-rgb: 150, 150, 151;
  --amoxi-gray2: #C2C2C2;
  --amoxi-gray2-rgb: 194, 194, 194;
  --amoxi-white: #FFFFFF;
  --amoxi-white-rgb: 255, 255, 255;
  --amoxi-white2: #D9D9D9;
  --amoxi-white2-rgb: 217, 217, 217;
  --amoxi-white3: #DDDDDD;
  --amoxi-white3-rgb: 221, 221, 221;
  --amoxi-white4: #ECF8F8;
  --amoxi-white4-rgb: 236, 248, 248;
  --amoxi-black: #1A1B1F;
  --amoxi-black-rgb: 26, 27, 31;
  --amoxi-black2: #0E0F11;
  --amoxi-black2-rgb: 14, 15, 17;
  --amoxi-black3: #121115;
  --amoxi-black3-rgb: 18, 17, 21;
  --amoxi-black4: #131313;
  --amoxi-black4-rgb: 19, 19, 19;
  --amoxi-black5: #222222;
  --amoxi-black5-rgb: 34, 34, 34;
  --amoxi-black6: #3A3B3F;
  --amoxi-black6-rgb: 58, 59, 63;
  --amoxi-black7: #000000;
  --amoxi-black7-rgb: 0, 0, 0;
  --amoxi-black8: #333333;
  --amoxi-black8-rgb: 51, 51, 51;
  --amoxi-black9: #474747;
  --amoxi-black9-rgb: 71, 71, 71;
  --amoxi-border-color: #D3D3D3;
  --amoxi-border-color-rgb: 211, 211, 211;
  --section-space: 120px;
  --section-space-2: 111px;
  --amoxi-letter-space: 0.1em;
  --amoxi-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
  color: var(--amoxi-text, #b2afa6);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  background-color: var(--amoxi-black, #1A1B1F);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--amoxi-base, #ff621d);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--amoxi-heading-font, "Plus Jakarta Sans", sans-serif);
  color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.amoxi-text {
  color: var(--amoxi-text, #b2afa6);
}

.background-base {
  background-color: var(--amoxi-base, #ff621d);
}

.background-text {
  background-color: var(--amoxi-text, #b2afa6);
}

.background-black {
  background-color: var(--amoxi-black, #1A1B1F);
}

.background-black-2 {
  background-color: var(--amoxi-black2, #0E0F11);
}

.background-black-3 {
  background-color: var(--amoxi-black3, #121115);
}

.background-white {
  background-color: var(--amoxi-white, #FFFFFF);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

.section-space {
  padding-top: var(--section-space, 120px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-2 {
  padding-top: var(--section-space-2, 111px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-2 {
    padding-top: 91px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-2 {
    padding-top: 71px;
    padding-bottom: 80px;
  }
}

.section-space-t {
  padding-top: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-t {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-t {
    padding-top: 80px;
  }
}

.section-space-t-2 {
  padding-top: var(--section-space-2, 111px);
}
@media (max-width: 767px) {
  .section-space-t-2 {
    padding-top: 91px;
  }
}
@media (max-width: 575px) {
  .section-space-t-2 {
    padding-top: 71px;
  }
}

.section-space-b {
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-b {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-b {
    padding-bottom: 80px;
  }
}

.section-bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: var(--amoxi-black2, #0E0F11);
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-25 {
  --bs-gutter-y: 25px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

label.error {
  margin-top: 8px;
  color: var(--amoxi-text, #b2afa6);
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* section title */
.sec-title {
  margin-bottom: 35px;
}
.sec-title--center {
  margin-bottom: 51px;
  text-align: center;
}
.sec-title--center .sec-title__top {
  align-items: center;
  justify-content: center;
}
.sec-title--center .sec-title__shape {
  top: -1px;
}
@media (max-width: 767px) {
  .sec-title--center .sec-title__shape {
    top: -2px;
  }
}
@media (max-width: 440px) {
  .sec-title--center .sec-title__shape {
    top: -1px;
  }
}
.sec-title__top {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}
.sec-title__shape-img {
  max-width: 100%;
  height: auto;
  position: relative;
}
.sec-title__shape {
  width: 29px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  top: 4px;
}
@media (max-width: 767px) {
  .sec-title__shape {
    top: 1px;
  }
}
.sec-title__shape::before, .sec-title__shape::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--amoxi-white, #FFFFFF);
}
.sec-title__shape::before {
  left: 13px;
}
.sec-title__shape::after {
  width: 4px;
  height: 4px;
  right: 0px;
}
.sec-title__shape__inner {
  width: 16px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--amoxi-base, #ff621d);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.sec-title__shape--2::before {
  left: auto;
  right: 13px;
}
.sec-title__shape--2::after {
  left: 0px;
  right: auto;
}
.sec-title__shape--2 .sec-title__shape__inner {
  left: auto;
  right: 0px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.sec-title__tagline {
  margin: 0px;
  font-size: 22px;
  color: var(--amoxi-white, #FFFFFF);
  font-weight: 500;
  line-height: 1.181;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sec-title__tagline {
    font-size: 18px;
  }
}
@media (max-width: 440px) {
  .sec-title__tagline {
    font-size: 16px;
  }
}
.sec-title__tagline.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--amoxi-base-rgb, 255, 98, 29), 0.4) 50%, var(--amoxi-base, #ff621d) 50%);
}
.sec-title__title {
  margin: 0px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 35px;
  }
}
@media (max-width: 440px) {
  .sec-title__title {
    font-size: 30px;
  }
}
.sec-title__title.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--amoxi-white-rgb, 255, 255, 255), 0.2) 50%, var(--amoxi-white, #FFFFFF) 50%);
}
.sec-title__title__text {
  display: inline !important;
  font-weight: 400;
  font-style: italic;
}
.sec-title--two.sec-title--center .sec-title__shape--1 {
  top: 0px;
}
.sec-title--two .sec-title__top {
  gap: 15px;
}
.sec-title--two .sec-title__shape {
  width: 36px;
  height: 16px;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec-title--two .sec-title__shape--1 {
  top: 4px;
}
.sec-title--two .sec-title__shape::before,
.sec-title--two .sec-title__shape::after {
  content: "";
  position: static;
  width: calc(50% - 2px);
  height: 100%;
  border-radius: 0px;
  transform: translateY(0%);
  background-color: transparent;
  background: linear-gradient(180deg, #f29a1c 0%, #fa4721 100%);
}
.sec-title--two .sec-title__shape::before {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.sec-title--two .sec-title__shape::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sec-title--two .sec-title__title {
  text-transform: uppercase;
}
.sec-title--three.sec-title--center .sec-title__shape {
  top: -1px;
}
@media (max-width: 440px) {
  .sec-title--three.sec-title--center .sec-title__shape {
    top: -2px;
  }
}
.sec-title--three .sec-title__top {
  gap: 16px;
}
.sec-title--three .sec-title__shape {
  width: 6px;
  height: 6px;
  top: 9px;
  background-color: var(--amoxi-base, #ff621d);
}
@media (max-width: 767px) {
  .sec-title--three .sec-title__shape {
    top: 6px;
  }
}
@media (max-width: 440px) {
  .sec-title--three .sec-title__shape {
    top: 5px;
  }
}
.sec-title--three .sec-title__shape::before,
.sec-title--three .sec-title__shape::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 0px;
  transform: translateY(0%);
}
.sec-title--three .sec-title__shape--1::before,
.sec-title--three .sec-title__shape--1::after {
  left: auto;
  right: -6px !important;
}
.sec-title--three .sec-title__shape::before {
  top: -6px;
}
.sec-title--three .sec-title__shape::after {
  top: auto;
  bottom: -6px;
}
.sec-title--three .sec-title__shape--2::before,
.sec-title--three .sec-title__shape--2::after {
  left: -6px;
}
.sec-title--four .sec-title__top {
  gap: 0px;
  align-items: center;
  margin-bottom: 15px;
}
.sec-title--four .sec-title__shape-img--1 {
  top: -4px;
}
.sec-title--four .sec-title__shape-img--2 {
  bottom: -4px;
}
.sec-title--four .sec-title__tagline {
  position: relative;
  font-size: 18px;
  line-height: 1.277;
}

/* gsap reveal text animation */
.bw-reveal-text {
  visibility: hidden;
}
.bw-reveal-text .line {
  display: flex;
  overflow: hidden;
  position: relative;
}

.bw-reveal-text-2 {
  visibility: hidden;
}
.bw-reveal-text-2 .letter {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
}
.bw-reveal-text-2 .letter div {
  width: 100%;
  backface-visibility: hidden;
  transform: translateZ(4vw);
  transform-style: preserve-3d;
}
.bw-reveal-text-2 .perspective {
  position: relative;
  display: inline-block;
}
.bw-reveal-text-2 .perspective div {
  position: relative;
  display: inline-block;
}
.bw-reveal-text-2 .word {
  display: inline-block;
}

/* svg stroke text animation */
.stroke-text-title {
  width: 100%;
  margin-bottom: 47px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .stroke-text-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .stroke-text-title {
    margin-bottom: 0px;
  }
}
.stroke-text-title svg {
  width: 100%;
  display: block;
}
.stroke-text-title svg:not(:root) {
  overflow: visible !important;
}
.stroke-text-title svg text {
  margin: 0px;
  font-family: var(--amoxi-heading-font, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(35px, 10vw, 150px);
  line-height: 1;
  stroke-width: 1;
  font-weight: 700;
  stroke: var(--amoxi-text, #b2afa6);
  text-transform: uppercase;
  animation: svgTextAnimation 5s infinite alternate;
}

@keyframes svgTextAnimation {
  0% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-text-rgb, 130, 126, 118), 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 1;
  }
  70% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-text-rgb, 130, 126, 118), 1);
  }
  80% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-text-rgb, 130, 126, 118), 1);
    stroke-width: 1;
  }
  100% {
    fill: rgba(var(--amoxi-base-rgb, 255, 98, 29), 1);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
@keyframes svgTextAnimation2 {
  0% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
  }
  80% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
    stroke-width: 2;
  }
  100% {
    fill: rgba(var(--amoxi-base-rgb, 255, 98, 29), 1);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
@media (max-width: 767px) {
  @keyframes svgTextAnimation2 {
    0% {
      fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
      stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
      stroke-dashoffset: 25%;
      stroke-dasharray: 0 50%;
      stroke-width: 1;
    }
    70% {
      fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
      stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
    }
    80% {
      fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
      stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
      stroke-width: 1;
    }
    100% {
      fill: rgba(var(--amoxi-base-rgb, 255, 98, 29), 1);
      stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
      stroke-dashoffset: -25%;
      stroke-dasharray: 50% 0;
      stroke-width: 0;
    }
  }
}
@keyframes svgTextAnimation3 {
  0% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 1;
  }
  70% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
  }
  80% {
    fill: rgba(var(--amoxi-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
    stroke-width: 1;
  }
  100% {
    fill: rgba(var(--amoxi-base-rgb, 255, 98, 29), 1);
    stroke: rgba(var(--amoxi-white-rgb, 255, 255, 255), 1);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 1;
  }
}
/* button */
.amoxi-btn {
  display: inline-flex;
  gap: 0px;
  border: none;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: transparent;
}
.amoxi-btn__text {
  display: inline-block;
  padding: 14.5px 40px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--amoxi-white, #FFFFFF);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
  border-radius: 100px;
  text-transform: uppercase;
  transition: all 500ms ease;
  background: var(--amoxi-base, #ff621d);
}
@media (max-width: 575px) {
  .amoxi-btn__text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.amoxi-btn__text::before, .amoxi-btn__text::after {
  content: "";
  width: 0%;
  height: calc(100% + 10px);
  position: absolute;
  top: -5px;
  z-index: -1;
  transition: 500ms;
  transform: skewX(-25deg);
  background: var(--amoxi-white, #FFFFFF);
}
.amoxi-btn__text::before {
  left: -8px;
}
.amoxi-btn__text::after {
  right: -8px;
}
.amoxi-btn:hover .amoxi-btn__text {
  color: var(--amoxi-black, #1A1B1F);
}
.amoxi-btn:hover .amoxi-btn__text::before, .amoxi-btn:hover .amoxi-btn__text::after {
  width: calc(50% + 10px);
}
.amoxi-btn__icon-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--amoxi-white, #FFFFFF);
  transition: all 500ms ease;
}
.amoxi-btn:hover .amoxi-btn__icon-box {
  background: var(--amoxi-base, #ff621d);
}
.amoxi-btn__icon {
  display: inline-flex;
  font-size: 9px;
  color: var(--amoxi-base, #ff621d);
  transition: all 500ms ease;
}
.amoxi-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.amoxi-btn:hover .amoxi-btn__icon {
  color: var(--amoxi-white, #FFFFFF);
  animation: slideRight 500ms;
}
.amoxi-btn--two .amoxi-btn__text {
  background: linear-gradient(90deg, #f29a1c 0%, #fa4721 100%);
}
.amoxi-btn--two .amoxi-btn__icon-box {
  position: relative;
  z-index: 1;
}
.amoxi-btn--two .amoxi-btn__icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
  transition: all 500ms ease;
  background: linear-gradient(90deg, #f29a1c 7.92%, #fa4721 100%);
}
.amoxi-btn--two:hover .amoxi-btn__icon-box {
  background: transparent;
}
.amoxi-btn--two:hover .amoxi-btn__icon-box::after {
  opacity: 1;
}
.amoxi-btn--three .amoxi-btn__text,
.amoxi-btn--three .amoxi-btn__icon {
  color: var(--amoxi-black4, #131313);
}
.amoxi-btn--three:hover .amoxi-btn__icon {
  color: var(--amoxi-black4, #131313);
}

.amoxi-btn-two {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0px;
  padding: 15px 30px;
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--amoxi-white, #FFFFFF);
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--amoxi-base, #ff621d);
  transition: all 0.4s ease-in-out;
}
.amoxi-btn-two::before, .amoxi-btn-two::after {
  content: "";
  height: calc(50% + 1px);
  width: 0%;
  position: absolute;
  z-index: -1;
  background-color: var(--amoxi-white, #FFFFFF);
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.amoxi-btn-two::before {
  top: 0;
  left: 0;
  right: auto;
}
.amoxi-btn-two::after {
  bottom: 0;
  right: 0;
  left: auto;
}
.amoxi-btn-two:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.amoxi-btn-two:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.amoxi-btn-two__icon {
  flex-shrink: 0;
  display: inline-flex;
  font-size: 14px;
  transition: all 500ms ease;
}
.amoxi-btn-two__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.amoxi-btn-two:hover, .amoxi-btn-two:hover .amoxi-btn-two__iocn {
  color: var(--amoxi-black2, #0E0F11);
}
.amoxi-btn-two--two {
  background: linear-gradient(90deg, #f29a1c 7.92%, #fa4721 100%), #4946ec;
}

.video-btn {
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 30px;
  color: var(--amoxi-base, #ff621d);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  background-color: var(--amoxi-white, #FFFFFF);
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-btn::after {
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: inherit;
  border: 4px solid var(--amoxi-white, #FFFFFF);
  transition: all 0.5s ease;
}

.amoxi-circle-btn {
  width: 183px;
  height: 183px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 1.318;
  color: var(--amoxi-white, #FFFFFF);
  text-transform: uppercase;
  border-radius: 50%;
  overflow: hidden;
  background: var(--amoxi-base, #ff621d);
}
.amoxi-circle-btn__icon {
  display: inline-flex;
  font-size: 35px;
}
.amoxi-circle-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.amoxi-circle-btn__dot {
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  border-radius: 50%;
  background: var(--amoxi-black, #1A1B1F);
  transition: all 0.5s ease-out;
  transform: translate(-50%, -50%);
}
.amoxi-circle-btn:hover .amoxi-circle-btn__dot {
  width: 200%;
  height: 200%;
}

.scroll-btn {
  width: 54px;
  height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border-radius: 120px;
  overflow: hidden;
  border: 3px solid var(--amoxi-white, #FFFFFF);
}
.scroll-btn__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--amoxi-base, #ff621d);
  animation: scrollDot 1.8s infinite ease;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(11px);
  }
  70% {
    opacity: 1;
    transform: translateY(55px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px);
  }
}
@keyframes scrollDot2 {
  0% {
    opacity: 1;
    transform: translateY(11px);
  }
  70% {
    opacity: 1;
    transform: translateY(64px);
  }
  100% {
    opacity: 0;
    transform: translateY(64px);
  }
}
.circle-shape-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--amoxi-black, #1A1B1F);
}
.circle-shape-wrapper__thumb img {
  opacity: 0.9;
  transform: scale(1) rotate(0);
}

.about-badge {
  width: 158px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  border: 1px solid RGBA(var(--amoxi-white-rgb, 255, 255, 255), 0.14);
}
.about-badge__icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px !important;
  color: var(--amoxi-white, #FFFFFF);
  border-radius: 50%;
  background-color: var(--amoxi-base, #ff621d);
}
.about-badge .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 130px !important;
  height: 130px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: shapeRotate 15s linear 0s forwards infinite alternate;
}
.about-badge .curved-circle .curved-circle--item {
  width: 130px !important;
  height: 130px !important;
}
.about-badge .curved-circle span {
  font-size: 14px;
  font-weight: 500;
  color: var(--amoxi-white, #FFFFFF);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  background-color: var(--amoxi-white, #FFFFFF);
}
.social-links a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
  transition: all 500ms ease;
  background-color: var(--amoxi-base, #ff621d);
}
.social-links a:hover::after {
  opacity: 1;
  background-color: var(--amoxi-base, #ff621d);
}
.social-links__icon {
  display: inline-flex;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--amoxi-black, #1A1B1F);
  transition: all 500ms ease;
}
.social-links__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover .social-links__icon {
  color: var(--amoxi-white, #FFFFFF);
  animation: slideTop 400ms;
}

/* Marquee:
Two Lines, 
One Line To Right, 
One Line To Left */
.marquee {
  max-width: 100%;
  overflow: hidden;
}

.marquee--gsap .marquee__bottom,
.marquee--gsap .marquee__top,
.marquee-left--gsap .marquee__toleft,
.marquee-right--gsap .marquee__toright {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.marquee__top,
.marquee__bottom,
.marquee__toleft,
.marquee__toright {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.marquee__bottom {
  margin-top: 30px;
}

/* ratings */
.amoxi-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.amoxi-ratings__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--amoxi-base, #ff621d);
  transition: all 500ms ease;
}
.amoxi-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* post pagination */
.post-pagination {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .post-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .post-pagination {
    gap: 15px;
  }
}
.post-pagination__btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--amoxi-base, #ff621d);
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  background-color: var(--amoxi-white, #FFFFFF);
  border-radius: 5px;
  overflow: hidden;
  transition: all 400ms ease;
}
@media (max-width: 767px) {
  .post-pagination__btn {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .post-pagination__btn {
    width: 41px;
    height: 41px;
  }
}
.post-pagination__btn:hover {
  color: var(--amoxi-white, #FFFFFF);
  background-color: var(--amoxi-base, #ff621d);
}
.post-pagination__btn.active {
  color: var(--amoxi-white, #FFFFFF);
  background-color: var(--amoxi-base, #ff621d);
}
.post-pagination__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination__icon {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: var(--amoxi-base, #ff621d);
  transition: all 400ms ease;
}
.post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* skill box */
.skill-box {
  position: relative;
  padding: 48px 48px 42px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 430px) {
  .skill-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.skill-box__count {
  width: 108px;
  height: 108px;
  margin: 0px auto 18px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.skill-box__count .circle-progress {
  position: absolute;
  top: 0px;
  left: 0px;
}
.skill-box__funfact {
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--amoxi-black5, #222222);
}
.skill-box__title {
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--amoxi-black5, #222222);
  text-transform: capitalize;
}

/* progress bar */
.progress-box + .progress-box {
  margin-top: 23px;
}
.progress-box__title {
  margin-bottom: 10px;
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--amoxi-text, #b2afa6);
  line-height: 1.625;
}
@media (max-width: 430px) {
  .progress-box__title {
    font-size: 15px;
  }
}
.progress-box__bar {
  position: relative;
  width: 100%;
  height: 14px;
  border: 1px solid var(--amoxi-base, #ff621d);
  border-radius: 20px;
}
.progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: calc(100% - 4px);
  width: 0%;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background-color: var(--amoxi-base, #ff621d);
  border-radius: inherit;
  transition: all 800ms linear;
}
.progress-box__bar__inner::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--amoxi-base, #ff621d);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}
.progress-box__bar__inner::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--amoxi-white, #FFFFFF);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.progress-box__number {
  position: absolute;
  bottom: calc(100% + 13px);
  right: 0px;
  font-size: 16px;
  color: var(--amoxi-text, #b2afa6);
  font-weight: 600;
  line-height: 1.625;
}
@media (max-width: 430px) {
  .progress-box__number {
    font-size: 15px;
  }
}

.uncover {
  position: relative;
  overflow: hidden;
}

.uncover__box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
}

.uncover__slice {
  height: 100%;
  flex-grow: 1;
  background: #ffffff;
}

/* owl slider buton, dots customize */
.amoxi-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.amoxi-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.amoxi-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  width: 69px;
  height: 69px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  color: var(--amoxi-white, #FFFFFF);
  border-radius: 50%;
  transition: all 500ms ease;
  background-color: transparent;
  border: 1px solid var(--amoxi-white, #FFFFFF);
}
@media (max-width: 1399px) {
  .amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
  transition: all 500ms ease;
  background-color: var(--amoxi-base, #ff621d);
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--amoxi-white, #FFFFFF);
  border-color: var(--amoxi-base, #ff621d);
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover::after {
  opacity: 1;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  position: relative;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid var(--amoxi-white, #FFFFFF);
  transition: all 500ms ease;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--amoxi-base, #ff621d);
  transition: all 500ms ease;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  border-color: var(--amoxi-base, #ff621d);
  background-color: var(--amoxi-base, #ff621d);
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.amoxi-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.custom-nav {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
.custom-nav button {
  width: 69px;
  height: 69px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  color: var(--amoxi-white, #FFFFFF);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--amoxi-white, #FFFFFF);
  transition: all 500ms ease;
}
@media (max-width: 1399px) {
  .custom-nav button {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .custom-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.custom-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.custom-nav button:hover {
  color: var(--amoxi-white, #FFFFFF);
  border-color: var(--amoxi-base, #ff621d);
  background-color: var(--amoxi-base, #ff621d);
}
.custom-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.custom-nav--four button {
  color: var(--amoxi-base, #ff621d);
  border-color: var(--amoxi-base, #ff621d);
}
.custom-nav--four button:hover {
  color: var(--amoxi-black4, #131313);
}

/* hover image */
.hover-item {
  position: relative;
}
.hover-item__box {
  position: absolute;
  width: 259px;
  height: 290px;
  top: 30%;
  left: 185px;
  pointer-events: none;
  transform: translate(-100%, -50%);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
  z-index: -1;
}
.hover-item__box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.4s ease-out;
}

.bw-reveal-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: none !important;
  transition: all 1s !important;
  transition-delay: 0.3s !important;
  transform: none !important;
  opacity: 1 !important;
}

.bw-reveal-right.aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-reveal-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: none !important;
  transition: all 1s !important;
  transition-delay: 0.4s !important;
  opacity: 1 !important;
  transform: none !important;
}

.bw-reveal-left.aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-reveal-top {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: none !important;
  transition: all 1.2s !important;
  transition-delay: 0.4s !important;
  opacity: 1 !important;
  transform: none !important;
}

.bw-reveal-top.aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--amoxi-base, #ff621d);
}

.hammer {
  width: 22px;
  height: 22px;
  fill: var(--amoxi-base, #ff621d);
}

.hammer path:nth-child(1),
.hammer path:nth-child(2) {
  animation: hammerBounce 3s ease-in-out infinite;
}

.hammer path:nth-child(3),
.hammer path:nth-child(4),
.hammer path:nth-child(5),
.hammer path:nth-child(6) {
  transform-origin: center;
  animation: hammerStrike 3s ease-in-out infinite;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--amoxi-black, #1A1B1F);
  color: var(--amoxi-white, #FFFFFF);
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--amoxi-text, #b2afa6);
  background-image: none;
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
  color: var(--amoxi-text, #b2afa6);
}
.ui-datepicker-calendar td a {
  border-color: var(--amoxi-border-color, #D3D3D3);
  background-color: var(--amoxi-text, #b2afa6);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--amoxi-border-color, #D3D3D3);
  background-color: var(--amoxi-text, #b2afa6);
  background-image: none;
  color: var(--amoxi-text, #b2afa6);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--amoxi-white, #FFFFFF);
  background-color: var(--amoxi-base, #ff621d);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--amoxi-white, #FFFFFF);
  background-color: var(--amoxi-base, #ff621d);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--amoxi-white, #FFFFFF);
  color: var(--amoxi-black, #1A1B1F);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--amoxi-base, #ff621d);
  color: var(--amoxi-white, #FFFFFF);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

.preloader {
  position: fixed;
  background-color: var(--amoxi-black, #1A1B1F);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9992;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--amoxi-base, #ff621d);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--amoxi-white, #FFFFFF);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

.section-top-title {
  margin-bottom: -55px;
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #222222 0%, rgba(221, 221, 221, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 1199px) {
  .section-top-title {
    font-size: 160px;
  }
}
@media (max-width: 767px) {
  .section-top-title {
    margin-bottom: -45px;
    font-size: 120px;
  }
}
@media (max-width: 440px) {
  .section-top-title {
    margin-bottom: -40px;
    font-size: 100px;
  }
}

.sec-title__title {
  color: var(--amoxi-black5, #222222);
}
.sec-title__title.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--amoxi-black5-rgb, 34, 34, 34), 0.2) 50%, var(--amoxi-black5, #222222) 50%);
}

.demo-tagline {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 9px 30px 8px;
  text-align: left;
  margin-bottom: 19px;
  border-radius: 100px;
  border: 1px solid var(--amoxi-white, #FFFFFF);
  background-color: RGBA(var(--amoxi-white-rgb, 255, 255, 255), 0.06);
}
.demo-tagline__shape {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  position: relative;
  background-color: var(--amoxi-white, #FFFFFF);
}
.demo-tagline__shape::before, .demo-tagline__shape::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: -6px;
  z-index: 1;
  background-color: var(--amoxi-base, #ff621d);
}
.demo-tagline__shape::before {
  top: -6px;
}
.demo-tagline__shape::after {
  bottom: -6px;
}
.demo-tagline__text {
  position: relative;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--amoxi-white, #FFFFFF);
  text-transform: uppercase;
}
.demo-tagline__text::before {
  content: "";
  width: 1px;
  height: calc(100% - 8px);
  position: absolute;
  top: 50%;
  left: -9px;
  transform: translateY(-50%);
  background-color: var(--amoxi-white4, #ECF8F8);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
  background-color: var(--amoxi-black3, #121115);
}
.header .container {
  max-width: 1430px;
}
.header__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0px;
}
@media (max-width: 575px) {
  .header__inner {
    justify-content: center;
  }
}
.header__logo {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  max-width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
@media (max-width: 1199px) {
  .header__nav {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
  color: var(--amoxi-white, #FFFFFF);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.header__nav a:hover {
  color: var(--amoxi-base, #ff621d);
}
@media (max-width: 575px) {
  .header .amoxi-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  z-index: 1;
  padding: 260px 0px 242px;
  background-color: var(--amoxi-black3, #121115);
}
@media (max-width: 767px) {
  .hero-section {
    padding: 240px 0px 222px;
  }
}
@media (max-width: 430px) {
  .hero-section {
    padding: 220px 0px 202px;
  }
}
.hero-section .container {
  position: relative;
  z-index: 3;
}
.hero-section__content {
  text-align: center;
}
.hero-section__top {
  overflow: hidden;
}
.hero-section__title {
  margin: 0px 0px 20px;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--amoxi-white, #FFFFFF);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .hero-section__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .hero-section__title {
    font-size: 50px;
  }
}
.hero-section__text {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--amoxi-white, #FFFFFF);
}
@media (min-width: 992px) {
  .hero-section__text {
    margin-bottom: 38px;
    font-size: 20px;
  }
}
.hero-section__text .line {
  justify-content: center;
}
.hero-section__text br {
  display: none;
}
@media (min-width: 768px) {
  .hero-section__text br {
    display: inherit;
  }
}
.hero-section__button {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section__button__inner:first-child .amoxi-btn .amoxi-btn__text {
  color: var(--amoxi-black, #1A1B1F);
  background: var(--amoxi-white, #FFFFFF);
}
.hero-section__button__inner:first-child .amoxi-btn .amoxi-btn__text:hover {
  color: var(--amoxi-black, #1A1B1F);
}
.hero-section__button__inner:first-child .amoxi-btn .amoxi-btn__text::before, .hero-section__button__inner:first-child .amoxi-btn .amoxi-btn__text::after {
  background: var(--amoxi-base, #ff621d);
}
.hero-section__button__inner:first-child .amoxi-btn .amoxi-btn__icon-box {
  background: var(--amoxi-base, #ff621d);
}
.hero-section__button__inner:first-child .amoxi-btn .amoxi-btn__icon {
  color: var(--amoxi-white, #FFFFFF);
}
.hero-section__button__inner:first-child .amoxi-btn:hover .amoxi-btn__text {
  color: var(--amoxi-white, #FFFFFF);
}
.hero-section__button__inner:first-child .amoxi-btn:hover .amoxi-btn__icon-box {
  background: var(--amoxi-white, #FFFFFF);
}
.hero-section__button__inner:first-child .amoxi-btn:hover .amoxi-btn__icon {
  color: var(--amoxi-base, #ff621d);
}
.hero-section__bg-box {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.hero-section__bg {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
}
.hero-section__bg::after {
  content: "";
  width: 100%;
  height: calc(100% - 324px);
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(181.35deg, rgba(255, 98, 29, 0.76) 1.15%, rgba(4, 4, 4, 0) 80.24%);
}
.hero-section__images {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
@media (min-width: 1300px) {
  .hero-section__images {
    display: block;
  }
}
.hero-section__images img {
  max-width: 100%;
  height: auto;
  position: absolute;
}
.hero-section__image-one {
  left: 0px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-one {
    left: -110px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-one {
    left: -150px;
  }
}
.hero-section__image-two {
  left: 16px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-two {
    left: -94px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-two {
    left: -134px;
  }
}
.hero-section__image-three {
  left: 217px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-three {
    left: 107px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-three {
    left: 67px;
  }
}
.hero-section__image-four {
  right: 199px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-four {
    right: 107px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-four {
    right: 67px;
  }
}
.hero-section__image-five {
  right: 2px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-five {
    right: -94px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-five {
    right: -134px;
  }
}
.hero-section__image-six {
  right: 0px;
  bottom: 50px;
}
@media (max-width: 1599px) {
  .hero-section__image-six {
    right: -100px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-six {
    right: -140px;
  }
}
.hero-section__badge-box {
  width: 184px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -92px;
  z-index: 2;
  border-radius: 50%;
  background-color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 1200px) {
  .hero-section__badge-box {
    display: flex;
  }
}
.hero-section__badge {
  width: 159px;
  height: 157px;
  background-image: url(../images/amoxi-landing/hero-badge-1.png);
  background-repeat: no-repeat;
  animation: sunMove 10s linear infinite;
}
.hero-section__shape-1 {
  position: absolute;
  top: 241px;
  left: 20.8%;
  z-index: 1;
}
@media (max-width: 1599px) {
  .hero-section__shape-1 {
    top: 150px;
    left: 16.8%;
  }
}
@media (max-width: 1399px) {
  .hero-section__shape-1 {
    display: none;
  }
}
.hero-section__shape-1 img {
  max-width: 100%;
  height: auto;
}
.hero-section__shape-2 {
  position: absolute;
  top: 173px;
  right: 17.7%;
  z-index: 1;
}
@media (max-width: 1599px) {
  .hero-section__shape-2 {
    top: 120px;
    right: 14%;
  }
}
@media (max-width: 1399px) {
  .hero-section__shape-2 {
    display: none;
  }
}
.hero-section__shape-2 img {
  max-width: 100%;
  height: auto;
}

@-webkit-keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  position: relative;
  padding-top: 282px;
  background-color: var(--amoxi-white4, #ECF8F8);
}
@media (max-width: 1199px) {
  .features-two {
    padding-top: 230px;
  }
}
.features-two::after {
  content: "";
  width: 100%;
  height: 126px;
  position: absolute;
  left: 0px;
  bottom: -2px;
  z-index: 1;
  background-color: var(--amoxi-white, #FFFFFF);
}
.features-two .container {
  position: relative;
  z-index: 2;
}
.features-two__wrapper {
  padding: 50px 0px 45px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--amoxi-white, #FFFFFF);
  box-shadow: 0px 6px 11px rgba(0, 0, 0, 0.08);
}
.features-two .row > * {
  position: relative;
}
.features-two .row > *:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background-color: var(--amoxi-white3, #DDDDDD);
}
@media (max-width: 767px) {
  .features-two .row > *:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .features-two .row > *:nth-child(2)::after {
    display: none;
  }
}
.features-two__box {
  position: relative;
  text-align: center;
  padding: 0px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.features-two__box::after {
  content: "";
  width: 43px;
  height: 28px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  margin: auto;
  transition: all 500ms ease;
  transform: translateY(100px);
  background-color: var(--amoxi-base, #ff621d);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 991px) {
  .features-two__box::after {
    display: none;
  }
}
.features-two__box:hover::after {
  opacity: 1;
  transform: translateY(45px);
}
.features-two__box img {
  max-height: 56px;
  display: inline-block;
  transform: scale(1);
  transition: all 500ms linear 0s;
}
.features-two__box:hover img {
  transform: scale(0.9);
}
.features-two__border {
  width: 128px;
  height: 1px;
  position: relative;
  margin: 15px auto;
  transition: all 500ms ease;
  background-color: var(--amoxi-white3, #DDDDDD);
}
.features-two__border::after {
  content: "";
  width: 7px;
  height: 3px;
  position: absolute;
  top: -1px;
  left: 0px;
  opacity: 0;
  transition: all 500ms ease;
  background-color: var(--amoxi-base, #ff621d);
  animation: featuresBorder 2s linear infinite alternate;
}
.features-two__box:hover .features-two__border {
  background-color: var(--amoxi-black2, #0E0F11);
}
.features-two__box:hover .features-two__border::after {
  opacity: 1;
}
@keyframes featuresBorder {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 7px);
  }
}
.features-two__title {
  margin-bottom: 0px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--amoxi-black5, #222222);
}
@media (max-width: 430px) {
  .features-two__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__title {
    font-size: 20px;
  }
}
.features-two__title br {
  display: inline;
}
@media (max-width: 430px) {
  .features-two__title br {
    display: none;
  }
}
.features-two__shape {
  width: 382px;
  height: 382px;
  border-radius: 50%;
  position: relative;
  position: absolute;
  border: 1px solid var(--amoxi-white3, #DDDDDD);
}
.features-two__shape--1 {
  top: -184px;
  left: 50%;
  transform: translateX(-50%);
}
.features-two__shape--2 {
  left: -151px;
  bottom: -30px;
}
.features-two__shape--3 {
  right: -151px;
  bottom: -30px;
}
.features-two__shape::before, .features-two__shape::after {
  content: "";
  border: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
}
.features-two__shape::before {
  width: 288px;
  height: 288px;
}
.features-two__shape::after {
  width: 202px;
  height: 202px;
}
.features-two__shape__inner {
  width: 118px;
  height: 118px;
  border: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 90px 0 120px;
  background-color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 1199px) {
  .demos-one {
    padding-top: 96px;
  }
}
@media (max-width: 767px) {
  .demos-one {
    padding: 62px 0px 80px;
  }
}
@media (max-width: 440px) {
  .demos-one {
    padding-top: 65px;
  }
}
.demos-one__single {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  text-align: center;
  background-color: var(--amoxi-white, #FFFFFF);
  box-shadow: 0px 0px 60px 10px rgba(0, 0, 0, 0.1);
}
.demos-one__single:hover {
  transform: translateY(-10px);
}
.demos-one__single:hover .demos-one__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demos-one__single:hover .demos-one__image img {
  filter: blur(2px);
}
.demos-one__image {
  position: relative;
}
.demos-one__image img {
  max-width: 100%;
  height: auto;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demos-one__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  background-color: rgba(var(--amoxi-black2-rgb, 14, 15, 17), 0.6);
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
}
.demos-one__buttons .amoxi-btn__text {
  min-width: 169.69px;
}
.demos-one__text {
  text-align: center;
  padding-top: 29px;
  padding-bottom: 32px;
}
.demos-one__text__title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--amoxi-black, #1A1B1F);
  font-weight: 700;
}

/*--------------------------------------------------------------
#  Amoxi Area
--------------------------------------------------------------*/
.amoxi-area {
  padding: 201px 0px;
  position: relative;
  background-color: var(--amoxi-black, #1A1B1F);
}
@media (max-width: 991px) {
  .amoxi-area {
    padding: 150px 0px;
  }
}
@media (max-width: 575px) {
  .amoxi-area {
    padding: 120px 0px;
  }
}
.amoxi-area__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.amoxi-area__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--amoxi-black2-rgb, 14, 15, 17), 0.9);
}
.amoxi-area .container {
  position: relative;
  z-index: 1;
}
.amoxi-area__content {
  position: relative;
  text-align: center;
}
.amoxi-area__title {
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
  font-size: clamp(75px, 18vw, 250px);
  font-weight: 700;
  color: transparent;
  line-height: 1;
  word-break: break-word;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--amoxi-white, #FFFFFF);
}
@media (max-width: 1199px) {
  .amoxi-area__title {
    -webkit-text-stroke-width: 1px;
  }
}
.amoxi-area__title__highlight {
  display: inline-block;
  position: relative;
}
@media (max-width: 1199px) {
  .amoxi-area__title__highlight span:first-child {
    color: var(--amoxi-base, #ff621d);
  }
}
.amoxi-area__title__highlight span:last-child {
  position: relative;
  position: absolute;
  top: 0px;
  left: 30px;
  z-index: 1;
  color: var(--amoxi-base, #ff621d);
}
@media (max-width: 1199px) {
  .amoxi-area__title__highlight span:last-child {
    display: none;
  }
}
.amoxi-area__title__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: calc(50% + 9px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.amoxi-area__border {
  width: 104px;
  height: 104px;
  position: absolute;
}
@media (max-width: 767px) {
  .amoxi-area__border {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .amoxi-area__border {
    display: none;
  }
}
.amoxi-area__border--1, .amoxi-area__border--2 {
  top: -71px;
  border-top: 1px solid var(--amoxi-white, #FFFFFF);
}
.amoxi-area__border--1 {
  left: 0px;
  border-left: 1px solid var(--amoxi-white, #FFFFFF);
}
.amoxi-area__border--2 {
  right: 0px;
  border-right: 1px solid var(--amoxi-white, #FFFFFF);
}
.amoxi-area__border--3, .amoxi-area__border--4 {
  bottom: -71px;
  border-bottom: 1px solid var(--amoxi-white, #FFFFFF);
}
.amoxi-area__border--3 {
  left: 0px;
  border-left: 1px solid var(--amoxi-white, #FFFFFF);
}
.amoxi-area__border--4 {
  right: 0px;
  border-right: 1px solid var(--amoxi-white, #FFFFFF);
}
.amoxi-area__shape-1, .amoxi-area__shape-2 {
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: repeat-x;
  background-position: left top;
}
.amoxi-area__shape-1 {
  animation: moveBackground 30s linear 0s infinite;
}
.amoxi-area__shape-2 {
  top: auto;
  bottom: 0px;
  animation: moveBackground2 30s linear 0s infinite;
}

@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes moveBackground2 {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
/*--------------------------------------------------------------
#  Inner Page
--------------------------------------------------------------*/
.inner-page {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
  background-color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 1199px) {
  .inner-page {
    padding-top: 96px;
  }
}
@media (max-width: 767px) {
  .inner-page {
    padding: 62px 0px 80px;
  }
}
@media (max-width: 440px) {
  .inner-page {
    padding-top: 65px;
  }
}
.inner-page__marquee {
  position: relative;
}
.inner-page__marquee::after {
  content: "";
  width: 100%;
  height: calc(100% - 290px);
  position: absolute;
  left: 0px;
  bottom: -230px;
  transform: matrix(1, 0, 0, -1, 0, 0);
  background: linear-gradient(180deg, #ff621d 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767px) {
  .inner-page__marquee::after {
    bottom: -190px;
  }
}
.inner-page .marquee__toleft {
  display: block;
}
.inner-page__wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  will-change: transform;
  position: relative;
}
@media (max-width: 991px) {
  .inner-page__wrapper {
    gap: 20px;
  }
}
.inner-page__item {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  flex-direction: column;
}
@media (max-width: 991px) {
  .inner-page__item {
    gap: 20px;
  }
}
.inner-page__image img {
  width: 100%;
  height: auto;
}
.inner-page__btn {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  text-align: center;
}
.inner-page__btn .amoxi-btn .amoxi-btn__text {
  color: var(--amoxi-black, #1A1B1F);
  background: var(--amoxi-white, #FFFFFF);
}
.inner-page__btn .amoxi-btn .amoxi-btn__text:hover {
  color: var(--amoxi-white, #FFFFFF);
}
.inner-page__btn .amoxi-btn .amoxi-btn__text::before, .inner-page__btn .amoxi-btn .amoxi-btn__text::after {
  background: var(--amoxi-black, #1A1B1F);
}
.inner-page__btn .amoxi-btn .amoxi-btn__icon-box {
  background: var(--amoxi-black, #1A1B1F);
}
.inner-page__btn .amoxi-btn .amoxi-btn__icon {
  color: var(--amoxi-white, #FFFFFF);
}
.inner-page__btn .amoxi-btn:hover .amoxi-btn__icon-box {
  background: var(--amoxi-white, #FFFFFF);
}
.inner-page__btn .amoxi-btn:hover .amoxi-btn__icon {
  color: var(--amoxi-black, #1A1B1F);
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  padding: 120px 0px;
  background-color: var(--amoxi-white, #FFFFFF);
}
@media (max-width: 767px) {
  .features-one {
    padding: 80px 0px;
  }
}
.features-one__top {
  margin-bottom: 51px;
  text-align: center;
}
.features-one .demo-tagline {
  border-color: var(--amoxi-white2, #D9D9D9);
  background-color: transparent;
}
.features-one .demo-tagline__shape {
  background-color: var(--amoxi-black2, #0E0F11);
}
.features-one .demo-tagline__text {
  color: var(--amoxi-base, #ff621d);
}
.features-one .demo-tagline__text::before {
  background-color: var(--amoxi-white2, #D9D9D9);
}
.features-one__box {
  padding: 50px 40px 46px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--amoxi-white4, #ECF8F8);
}
.features-one__box::before {
  content: "";
  width: 121px;
  height: 121px;
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  opacity: 0;
  background-color: var(--amoxi-base, #ff621d);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.7s;
}
.features-one__box:hover::before {
  width: 100%;
  height: 100%;
  top: 0px;
  opacity: 1;
  border-radius: 0px;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 1s;
}
.features-one__box::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: inherit;
  transition: all 500ms ease;
  border: 1px solid var(--amoxi-white3, #DDDDDD);
}
.features-one__box:hover::after {
  border-style: dashed;
  border-color: var(--amoxi-white, #FFFFFF);
}
.features-one__box__image {
  width: 121px;
  height: 121px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background-color: var(--amoxi-white, #FFFFFF);
}
.features-one__box__image img {
  max-height: 121px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
  border-radius: inherit;
}
.features-one__box:hover .features-one__box__image img {
  transform: scale(0.9);
}
.features-one__box__title {
  margin: 20px 0px 0px;
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: var(--amoxi-black5, #222222);
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.features-one__box__title br {
  display: inline;
}
@media (max-width: 575px) {
  .features-one__box__title br {
    display: none;
  }
}
.features-one__box:hover .features-one__box__title {
  color: var(--amoxi-white, #FFFFFF);
}

/*--------------------------------------------------------------
#  Slide Text Section
--------------------------------------------------------------*/
.slide-text {
  padding: 50px 0px;
  background: var(--amoxi-base, #ff621d);
}
.slide-text .container-fluid {
  padding: 0px;
}
.slide-text__scroll {
  width: -webkit-calc((420px * 16) + (30px * 16));
  width: -moz-calc((420px * 16) + (30px * 16));
  min-width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  margin: 0px;
  font-size: 50px;
  font-weight: 700;
  color: var(--amoxi-white, #FFFFFF);
  line-height: 1.26;
  text-transform: capitalize;
  -webkit-animation: scrollRightToLeft 20s linear infinite;
  -moz-animation: scrollRightToLeft 20s linear infinite;
  animation: scrollRightToLeft 20s linear infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .slide-text__scroll {
    font-size: 40px;
  }
}
.slide-text__scroll:hover {
  animation-play-state: paused;
}
.slide-text__scroll img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

@keyframes scrollRightToLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background-color: var(--amoxi-black3, #121115);
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 80px;
  }
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__content {
  text-align: center;
}
.main-footer__icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 20px;
  font-size: 38px;
  color: var(--amoxi-white, #FFFFFF);
  border-radius: 50%;
  background-color: var(--amoxi-base, #ff621d);
}
.main-footer__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-footer__title {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 700;
  color: var(--amoxi-white, #FFFFFF);
  line-height: 1.3;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .main-footer__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .main-footer__title {
    font-size: 50px;
  }
}
.main-footer__text {
  margin: 0 0 27px;
  font-size: 20px;
  font-weight: 500;
  color: var(--amoxi-white, #FFFFFF);
}
@media (min-width: 992px) {
  .main-footer__text {
    font-size: 25px;
  }
}
.main-footer__copyright {
  position: relative;
  margin: 80px 0 0;
  padding: 33px 0 33px;
  border-top: 1px solid RGBA(var(--amoxi-white-rgb, 255, 255, 255), 0.38);
}
@media (max-width: 767px) {
  .main-footer__copyright {
    margin-top: 50px;
    padding: 23px 0 22px;
  }
}
.main-footer__copyright p {
  margin: 0;
  font-family: var(--amoxi-font, "DM Sans", sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: RGBA(var(--amoxi-white-rgb, 255, 255, 255), 0.7);
}
.main-footer__shape-1, .main-footer__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
}
@media (max-width: 1199px) {
  .main-footer__shape-1, .main-footer__shape-2 {
    display: none;
  }
}
.main-footer__shape-1 {
  left: 0px;
}
@media (max-width: 1399px) {
  .main-footer__shape-1 {
    left: -50px;
  }
}
.main-footer__shape-2 {
  right: 0px;
}
@media (max-width: 1399px) {
  .main-footer__shape-2 {
    right: -50px;
  }
}
/*# sourceMappingURL=amoxi-landing.css.map */
