
body {
  font-size: 20px;
  line-height: 30px;
  background-color: #000;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  color: #fff;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}
h1, 
.h1{
    color: #fff;
    font-size: 100px;
    line-height: 1.12em;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

h2, 
.h2{
    font-size: 65px;
    line-height: 1.07em;
    letter-spacing: -0.02em;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
}



/*---------------------------------------------------
PRELOADER
----------------------------------------------------*/
 #awura-preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #awura-preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    /* Loader Wrapper */
    .awura-loader {
      position: relative;
      width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Rotating Circle Border */
    .awura-loader::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-top-color: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      animation: rotate 1.5s linear infinite;
    }


    /* Rotation Animation */
    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

/*---------------------------------------------------
HEADER SECTION
----------------------------------------------------*/
header.awura-header-section {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    transition: all 0.4s;
}

header.awura-header-section.sticky-menu {
    top: 0;
    background-color: #000;
}

.awura-menu {
    width: 100%;
    text-align: center;
}

.awura-menu ul li {
    margin: 0 20px;
    display: inline-block;
}

.awura-menu ul li:first-child {
    margin-left: 0;
}

.awura-menu ul li:last-child {
    margin-right: 0;
}

.awura-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.awura-header-btn-wrap {
    text-align: right;
    order: 3;
}

.awura-header-btn img {
    margin-right: 10px;
}



/*---------------------------------------------------
HERO SECTION
----------------------------------------------------*/
.awura-hero-section {
    padding: 220px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
}
video.hero-vid__media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.awura-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding-bottom: 80px;
}

.awura-hero-content p {
    max-width: 1020px;
    margin: 0 auto;
}
.awura-hero-button{
    display: flex;
    gap: 16px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}
.awura-default-icon-btn {
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    padding: 17px 30px;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    background-color: #5523E8;
    border-radius: 5px;
}

.btn-price{
    padding-left: 12px;
    font-size: 24px;
    position: relative;
}
.btn-price::before{
    content: "";
    left: 0;
    top: 6px;
    height: 20px;
    width: 2px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
}
.awura-btn-icon {
    position: relative;
    overflow: hidden;
    line-height: 1;
}
.awura-btn-icon-show{
    transition: all 0.4s;
}
.awura-btn-icon-hide {
    transition: all 0.4s;
    position: absolute;
    transform: translateY(0px);
}
.awura-default-icon-btn:hover .awura-btn-icon-show{
    transform: translateY(-32px);
}
.awura-default-icon-btn:hover .awura-btn-icon-hide{
    transform: translateY(-32px);
}

.awura-primary-btn {
  position: relative;
  padding: 17.5px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff!important;
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
  transition: all 0.4s ease;
  background-color: #000;
  box-shadow: 0px 0px 20px 0px #FFFFFF80 inset;
}

/* Glow gradient layer */
.awura-primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover effect */
.awura-primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(255, 255, 255, 0.15);
}

.awura-primary-btn:hover::before {
  opacity: 1;
}

.awura-secondry-btn {
  position: relative;
  padding: 15px 38px;
  font-size: 16px;
  font-weight: 600;
  color: #fff!important;
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
  transition: all 0.4s ease;
  background-color: #5523E8;
}
.awura-secondry-btn:hover{
    color: #5523E8!important;
    background-color: #fff;
}
.footer-button{
    margin-top: 60px;
    text-align: center;
}
.awura-gradient-btn {
  position: relative;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff!important;
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
  transition: all 0.4s ease;
  background-size: 300% 100%;
  box-shadow: 0px 4px 40px 0px #DC01FE80;
  background: linear-gradient(90deg, #AF16E2 0%, #FD5353 100%);
}
.awura-gradient-btn:hover{
    box-shadow: 0px 0px 0px 0px #DC01FE80;
}
.size-cover{
    background-size: cover;
    background-position: center center;
}
.demo-mwrquee-wrap {
    overflow: hidden;
    gap: 24px;
    display: flex;
    flex-direction: column;
}
.demo-marquee-slider {
    display: flex;
    gap: 24px;
}

.demo-marquee-item{
    width: 625px;
    flex-shrink: 0;
}
.demo-marquee-item img {
    width: 100%;
    height: 100%;
    border-radius: 7.82px 7.82px 0 0;
    aspect-ratio: 4 / 3.3;
    object-fit: cover;
    object-position: top;
}

.section-paddding-tb{
    padding: 130px 0;
}
.section-paddding-t{
    position: relative;
    padding: 130px 0 0;
}

/* start feature section */
.awura-feature-box1 {
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
    overflow: hidden;
}

.awura-feature-thumb{
    margin-bottom: 20px;
}
.awura-feature-title h5{
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}
.awura-feature-block{
    gap: 24px;
    display: flex;
    flex-direction: column;
}
.awura-feature-box2{
    text-align: center;
    padding: 50px 24px;
    border-radius: 5px;
    text-align: center;
    background-color: #0A0A0A;
}
.awura-feature-icon{
    margin-bottom: 24px;
}

.awura-feature-box3{
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.awura-feature-thumb2 img{
    width: 100%;
    height: 100%;
}
.awura-feature-box3 .awura-feature-title{
    padding: 45px 24px 24px;
}

.awura-icon-list-block{
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.awura-icon-list{
    font-size: 24px;
    position: relative;
    border-radius: 3px;
    padding: 24px 18px;
    padding-left: 54px;
    background-color: #0A0A0A;
}
.awura-icon-list img {
    position: absolute;
    left: 22px;
    top: 28px;
}

/* demo section */

.awura-section-title {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}
.awura-section-title h2{
    margin-bottom: 0;
}
.demo-block-row{
    text-align: center;
    margin-bottom: 40px;
    transition: all 0.4s;
}

.demo-block-row:hover{
    transform: translateY(-7px);
}
.demo-dots-block{
    gap: 8px;
    display: flex;
    margin-bottom: 18px;
}
.demos-dots{
    width: 12.65px;
    height: 12.65px;
    border-radius: 100px;
}
.demos-dots.one{
    background-color: #FA2C00;
}
.demos-dots.two{
    background-color: #FEE000;
}
.demos-dots.three{
    background-color: #00B67A;
}

.demo-box-block{
    overflow: hidden;
    border-radius: 10px;
    padding: 15px 15px 0;
    transition: all 0.4s;
    position: relative;
    backdrop-filter: blur(50px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 0;
}
.demo-box-block::before{
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    opacity: 0;
    position: absolute;
    transition: all 0.4s;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #5523E8 100%);
}
.demo-block-row:hover .demo-box-block::before{
    opacity: 1;
}

.awura-demos-item img{
    border-radius: 8px 8px 0 0;
}
.demo-link{
    display: inline-block;
    color: #fff!important;
    margin-top: 10px;

}

.demo-block-row:hover .demo-button-block{
    opacity: 1;
    bottom: 40px;
}
.demo-button-block {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all 0.4s;
    opacity: 0;
}

/* cta section */
.awura-cta-content{
    max-width: 630px;
    text-align: center;
    margin: 0 auto;
}

.awura-cta-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-top: 50px;
    justify-content: center;
}
.awura-cta-btn{
    margin-right: 35px;
}
.awura-cta-offer {
    max-width: 115px;
    text-align: left;
    margin-right: 24px;
}

.awura-cta-offer h6{
    font-size: 18px;
    margin: 0;
}

.awura-cta-price{
    padding-left: 24px;
    position: relative;
}
.awura-cta-price::before{
    content: "";
    left: 0;
    top: 18px;
    height: 76px;
    width: 2px;
    position: absolute;
    background-image: url(../images/line-vertical.png);
}
.awura-cta-price h5{
    font-size: 24px;
    font-weight: 400;
    position: relative;
}
.price-del {
    position: absolute;
    top: -3px;
    left: 31px;
}


/* inner section */
.inner-mwrquee-wrap {
    overflow: hidden;
    gap: 24px;
    display: flex;
    flex-direction: column;
}
.inner-marquee-slider {
    display: flex;
    gap: 24px;
}

.inner-marquee-item{
    width: 432px;
    flex-shrink: 0;
}
.inner-marquee-item img{
    width: 100%;
    height: 100%;
    border-radius: 7px;

}

/* elementor section */
.awura-section-title.large{
    max-width: 750px;
}
.awura-elementor-thumb-block{
    position: relative;
    margin-bottom: 50px;
}
.awura-elementor-thumb img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.elementor-editor1 {
    position: absolute;
    bottom: 52px;
    max-width: 305px;
    border-radius: 5px;
    overflow: hidden;
    left: -60px;
    box-shadow: 4px 4px 20px 0px #00000033;
}
.elementor-editor2 {
    position: absolute;
    max-width: 185px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 4px 30px 0px #00000033;
    left: 29%;
    bottom: 40px;
}
.elementor-editor3 {
    max-width: 262px;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    bottom: 35px;
    right: -50px;
}
.elementor-editor4 {
    max-width: 332px;
    border-radius: 7px;
    overflow: hidden;
    position: absolute;
    top: 66px;
    right: -40px;
}
.awura-tag-list-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.awura-tag-list {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.2) inset;
    backdrop-filter: blur(49px);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17.5px 30px;
    font-size: 16px;
    font-weight: 600;
}
.awura-feature2-box{
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000;
}
.awura-feature2-header{
    padding: 40px 40px 30px;
}
.awura-feature2-header h3{
    font-size: 40px;
    line-height: 1.15em;
}
.awura-feature2-header-elements {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
}
.awura-header img{
    width: 100%;
}
.awura-feature2-box.two {
    padding: 30px;
}
.awura-feature2-header.two {
    padding: 20px 20px 30px;
}
.awura-device-block {
    display: grid;
    column-gap: 20px;
    row-gap: 30px;
    grid-template-columns: 1fr 1fr;
}
.awura-device-column{
    border-radius: 5px;
    overflow: hidden;
}
.awura-device-column img{
    width: 100%;
}


/* woocommerce section */
.awura-woocommerce-column {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: 1fr .85fr;
}
.awura-woocommerce-content h2{
    margin-bottom: 20px;
}
.awura-woocommerce-content p{
    max-width: 590px;
}
.awura-woocommerce-thumb-block {
    margin-left: 80px;
}
.awura-woocommerce-thumb{
    position: relative;
}
.awura-woocommerce-thumb img{
    border-radius: 5px;
}
.awura-mt-50 {
    margin-top: 50px;
}
img.woocommerce-logo {
    position: absolute;
    top: 10px;
    right: -65px;
    z-index: 1;
}
img.woocommerce-card {
    position: absolute;
    bottom: 47px;
    right: -100px;
    box-shadow: 0px 3.5px 17.5px 0px #0000000D;
}

/* widgets section */
.awura-widgets-overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 22.6%, #0A0A0A 89.42%);
    width: 100%;
    height: 120px;
    backdrop-filter: blur(1px);
}
.awura-widgets-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.awura-widgets-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    justify-content: center;
}

/* step section */
.awura-step-item {
    display: flex;
    gap: 24px;
}
.awura-step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    border-radius: 100px;
    justify-content: center;
    background-color: #FE5733;
    font-size: 40px;
    font-weight: 600;
}
.awura-step-content p{
    font-size: 18px;
    margin-bottom: 5px;
}
.awura-step-content h4{
    font-size: 32px;
    margin: 0;
}
.awura-step-column {
    display: flex;
    gap: 35px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.awura-step-item{
    position: relative;
}
.arrow-double {
    position: absolute;
    right: -54px;
    top: 28px;
}

/* testimonial section */

.awura-testimonial-grid {
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.awura-testimonial-item{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.awura-testimonial-overlay {
    height: 190px;
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 22.6%, #0A0A0A 89.42%);
    bottom: 0;
    backdrop-filter: blur(1px);
}

/* accordion section */
.awura-section-title.left-align{
    max-width: 615px;
    margin: 0;
    text-align: left;
}
.awura-accordion-item {
  overflow: hidden;
  padding: 24px 0;
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.awura-accordion-item:first-child {
  padding-top: 0;
}

.awura-accordion-item.active {
  gap: 15px;
}

.awura-accordion-item.active .awura-accordion-plus img {
  transform: rotate(45deg);
}

/* Header */
.awura-accordion-header {
  cursor: pointer;
  transition: background 0.3s;
  font-size: 32px;
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.18em;
}

/* Mobile */
@media (max-width: 479px) {
  .awura-accordion-header {
    font-size: 28px;
  }
}

/* Content */
.awura-accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  max-width: 880px;
}

.awura-accordion-content p {
  margin: 0;
  font-size: 18px !important;
}

/* Plus icon */
.awura-accordion-plus {
  flex-shrink: 0;
  line-height: 1;
  padding-left: 20px;
}

.awura-accordion-plus img {
  transition: all 0.4s;
}

/* contact info section */
.awura-contact-info-grid {
    padding: 20px 24px;
    border-radius: 5px;
    background-color: #0A0A0A;
    display: grid;
    column-gap: 60px;
    row-gap: 35px;
    grid-template-columns: 1fr 1fr 1fr;
}
.contact-info-box {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}
.info-line {
    width: 1px;
    height: 50px;
    background-color: #FFFFFF33;
    position: absolute;
    right: 0;
}
.contact-info-data p{
    color: #fff;
    margin-bottom: 5px;
}
.contact-info-data h4{
    font-size: 32px;
    margin: 0;
}

/* footer */
.awura-footer-section{
    padding: 0 0 80px;
}
.awura-footer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* top scroll */
.scroll__top {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 0;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #560ce3;
  transition: 1s ease;
  border-radius: 50%;
  border: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .scroll__top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 575px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
  background: #f74a1f;
  color: #fff;
}
.scroll__top svg{
    width: 23px;
}
.scroll__top path{
    color: #fff;
}