
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


:root{
  --theme-color: linear-gradient(84.25deg, #EF721F 0%, #FFAE2F 100%);
  --secondary-color: #1A1A1A;
  --text-color: #1A1A1A;
  --title-color: #1A1A1A;
  --text-font: "Poppins", sans-serif;
  --title-font: 'Montserrat', sans-serif;
}



body {
  font-size:16px;
  color: var(--text-color);
  line-height:28px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1680px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1320px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

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

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  /* font-weight: 700; */
  color: var(--title-color);
  margin: 0px;
}


/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: #fff;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
  color:var(--theme-color);
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 1.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 1.8s;}
.handle-preloader .loader-section {
  background-color: #000;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #000;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #fb3b02;
  border-top-color: rgba(0, 0, 0, 0.3); 
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 5px;}
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.row{
  --bs-gutter-x: 30px;
}

/** button **/


.theme-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.theme-btn .text{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--text-font);
  color: var(--title-color);
  text-align: center;
  border-radius: 50px;
  padding: 8px 26px;
  background: var(--theme-color);
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}
.main-header .menu-right-content .frtlbtn .text {
background:     #25d366;
}
.theme-btn .text:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  background: linear-gradient(84.25deg, #FFAE2F 0%, #EF721F 100%);
  transition: all 500ms ease;
}

.theme-btn:hover .text:before,
.theme-btn:hover .text:after{
  width: 100%;
}

.theme-btn:hover .text{
  color: #fff;
}

.theme-btn i{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
  color: var(--title-color);
  background: var(--theme-color);
  border-radius: 50%;
  transition: all 500ms ease;
}

.theme-btn:hover i{
  color: #fff;
}


.parallax-bg{
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** styled-pagination */

.pagination{
  position: relative;
  display: block;
}

.pagination li{
  position: relative;
  display: inline-block;
  margin: 0px 4px;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ffffff;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current{
  color: #fff;
}

.pagination li a i{
  position: relative;
  display: inline-block;
}

.sec-pad{
  padding: 142px 0px 150px 0px;
}

.mr-0{
  margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0,46,65,0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.scroll-to-top::after {
  position: absolute;
  content: "\f106";
  font-family: 'Font Awesome 5 Pro';
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  background: var(--theme-color);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.scroll-to-top:hover::after {
  
}

.scroll-to-top:hover::before {
  opacity: 1
}

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: #EF721F;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}



.sec-title{
  position: relative;
  display: block;
}

.sub-title{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-weight: 800;
  line-height: 50px;
  text-transform: capitalize;
}

.sec-title.light h2{
  color: #fff;
}





/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.nice-select{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  padding-right: 14px;
}

.nice-select:before{
  position: absolute;
  content: '\e913';
  font-family: 'icomoon';
  top: 1px;
  right: 25px;
  font-size: 8px;
}

.nice-select .list{
  width: 100%;
  left: 0px;
}

.nice-select .list li{
  color: var(--text-color);
}

.nice-select .list{
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
}


.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}


/** rtl-switcher **/

.demo-rtl{
  position: fixed;
  top: 390px;
  left: 10px;
  z-index: 9999;
}

button.rtl{
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.demo-ltr{
  position: fixed;
  top: 390px;
  left: auto;
  right: 10px;
  z-index: 9999;
}

button.ltr {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 1.0);
  transition: all 500ms ease;
}

.boxed_wrapper.ltr .demo-rtl{
  display: block;
}

.boxed_wrapper.ltr .demo-ltr{
  display: none;
}

.boxed_wrapper.rtl .demo-rtl{
  display: none;
}

.boxed_wrapper.rtl .demo-ltr{
  display: block;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:5px;
  background: #E5E5E5;
  border-radius: 30px;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:5px;
  border-radius: 30px;
  background: var(--theme-color);
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}

.border-animation.border-2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.border-animation.border-3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}


/*** chat popup ***/

.chat-popup {
  position: fixed;
  right: -100%;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  transition: all 0.5s ease-in-out 0.1s;
}

.chat-popup.popup-visible {
  right: 0px;
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner{
  position: relative;
  display: block;
  padding: 40px 30px;
  padding-top: 32px;
}

.chat-popup .close-chat{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: -65px;
  width: 50px;
  height: 50px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: var(--theme-color);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.chat-popup .popup-inner p{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.chat-popup .chat-form .form-group{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child{
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 13px;
  color: var(--text-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea{
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus{
  border-color: #EF721F;
}

.chat-popup .chat-form .form-group .theme-btn{
  width: 100%;
}

.chat-icon{
  position: fixed;
  display: inline-block;
  right: 30px;
  bottom: 100px;
  z-index: 99;
}

.chat-icon button{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 26px;
  color: #fff;
  background: var(--theme-color);
  border-radius: 50%;
}

.image-hov-one{
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hov-one::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.image-hov-one:hover::before {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.image-hov-two{
  position: relative;
  display: block;
  overflow: hidden;
}

.image-hov-two::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1000%;
  height: 0%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.image-hov-two:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}



/*** Search Popup ***/

.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.search-popup .popup-inner{
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  height: 100%;
}

.search-popup .upper-box{
  position: relative;
  padding: 70px 70px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-popup .upper-box .logo-box{
  max-width: 236px;
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .close-search {
  position: relative;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 500ms ease;
}

.search-popup .close-search:hover {
  color: red;
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 100px 0px 250px 0px;
}

.search-popup .search-form .form-group{
  position: relative;
  margin: 0px;
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 0px;
  background: transparent;
  line-height: 30px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.70);
  border: none;
  font-weight: 400;
  border-radius: 0px;
  padding-right: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.search-popup .search-form fieldset button[type="submit"] {
  position: absolute;
  top: 30px;
  right: 0px;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type="search"]:focus{
  border-color: var(--theme-color);
}

.search-popup .form-control:focus{
  box-shadow: none !important;
}

.search-popup .search-form fieldset input:focus + button,
.search-popup .search-form fieldset button:hover{
  
}

.gradient-color{
  background: var(--theme-color);
  color: transparent;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 52px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
  color: var(--title-color);
  border: 1px solid var(--secondary-color);
  z-index: 1;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button.owl-prev{
  margin-right: 5px;
}

.nav-style-one .owl-nav button:hover{
  border-color: transparent;
}

.nav-style-one .owl-nav button:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  z-index: -1;
  transform: scale(0,0);
  border-radius: 50%;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button:hover:before{
  transform: scale(1,1);
}

.list-style-one{
  position: relative;
}

.list-style-one li{
  position: relative;
  display: block;
  padding-left: 28px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.list-style-one li:before{
  position: absolute;
  content: '\e903';
  font-family: 'icomoon';
  font-size: 8px;
  left: 0px;
  top: 5px;
  color: #fff;
  background: var(--theme-color);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}

.block-shadow{
  position: relative;
  background: #fff;
  border: 1px solid #000;
  z-index: 1;
}

.block-shadow:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 30px;
  z-index: -1;
  transition: all 500ms ease;
}

.block-shadow:before{
  position: absolute;
  content: '';
  background: #000;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  left: 0px;
  top: 0px;
  border-radius: 30px 40px 34px 40px;
  z-index: -1;
  transition: all 500ms ease;
}

.zoom-fade{
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.bg-color-1{
  background: #1A1A1A;
}


.slide-text-outer{
  position: relative;
  background: #F2F2F2;
  padding: 40px 0px;
}

.slide-text-outer .text-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  -moz-animation: scroll-left 600s linear infinite;
  -webkit-animation: scroll-left 600s linear infinite;
  animation: scroll-left 600s linear infinite;
}

.slide-text-outer .text-box li{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  margin: 0px;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}

.slide-text-outer .text-box li:before{
  position: absolute;
  content: '\e904';
  font-family: 'icomoon';
  font-size: 40px;
  top: 0px;
  right: -80px;
}

.slide-text-outer.light-section{
  background: #1A1A1A;
}

.slide-text-outer.light-section .text-box li{
  color: #fff;
}

.slide-text-outer.light-section .text-box li:before{
  background: var(--theme-color);
  color: transparent;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.dots-style-one .owl-dots .owl-dot span{
  display: none !important;
}

.dots-style-one .owl-dots button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 7px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  cursor: pointer;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.dots-style-one .owl-dots button.active{
  box-shadow: 0px 1px 0px 0px #000;
}

.slide-text-section .slide-text-outer{
  overflow: hidden;
  border-radius: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.main-footer.radius_0 .outer-container,
.main-footer.radius_0 .outer-container .footer-top .bg-color{
  border-radius: 0px !important;
}

.main-footer .pattern-layer-3{
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}
 .pug-bn-1{
 padding: 5px;
    font-style: italic;
}
.typewriter{
    display:inline-block;
}

.typewriter span{
    display:inline-block;
    font-size:22px;
    font-weight:600;
    color:#ff7a00;
    white-space:nowrap;
    overflow:hidden;
    border-right:3px solid #ff7a00;
    width:0;
    animation:
        typing 4s steps(40,end) infinite,
        blink .8s infinite;
}

@keyframes typing{
    0%{
        width:0;
    }

    50%{
        width:100%;
    }

    80%{
        width:100%;
    }

    100%{
        width:0;
    }
}

@keyframes blink{
    50%{
        border-color:transparent;
    }
}

/*  pug code  */
a{
    text-decoration: none !important;
}

.hero{


background:#fff;

overflow:hidden;

}
.hero-title span{
    background:linear-gradient(90deg,#4F46E5,#7C3AED);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content h1{

font-size:46px;

font-weight:800;

line-height:1.1;

}

.hero-content h1 span{

color:#ff7b00;

}

.hero-content p{

margin-top:25px;

font-size:18px;

line-height:30px;

color:#666;

max-width:520px;

}

.sub-title{

display:inline-block;

padding:10px 20px;

/* background:#fff3ea; */

border-radius:40px;

color:#ff7b00;

font-weight:600;

margin-bottom:20px;

}

/* Buttons */

.hero-btn{

margin-top:35px;

display:flex;

gap:20px;

}

.btn-orange{

background:#ff7b00;

color:#fff;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:600;

}

.btn-white{

background:#fff;

border:2px solid #ddd;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

color:#222;

font-weight:600;

}

/* Right Side */

.hero-right{

display:flex;
justify-content:center;
align-items:center;
height:700px;

}

.hero-circle{

    width:620px;
    height:620px;
    position:relative;
    margin:auto;

}

.circle-ring{

position:absolute;

border-radius:50%;

left:50%;
top:50%;

transform:translate(-50%,-50%);

}

.ring1{
    width:460px;
    height:460px;
    border:2px dashed #dcdcdc;

}

.ring2{

    width:580px;
    height:580px;
    border:2px solid #efefef;

}

.agent{

position:absolute;

left:50%;
top:50%;

transform:translate(-50%,-50%);

width:300px;
height:300px;

object-fit:cover;

border-radius:50%;

border:10px solid white;

box-shadow:0 30px 80px rgba(0,0,0,.15);

z-index:50;

}


.service-card{

position:absolute;

width:160px;

background:#fff;

border-radius:18px;

padding:15px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

border:1px solid #efefef;

transition:.35s;

z-index:100;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.service-card h6{

margin-top:12px;

font-size:15px;

font-weight:700;

margin-bottom:0;

}

.icon{

width:52px;

height:52px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

font-size:20px;

color:#fff;

}

.virtual .icon{background:#7C3AED;}
.virtual h6{color:#7C3AED;}

.support .icon{background:#10B981;}
.support h6{color:#10B981;}

.marketing .icon{background:#F97316;}
.marketing h6{color:#F97316;}

.development .icon{background:#2563EB;}
.development h6{color:#2563EB;}

.seo .icon{background:#EC4899;}
.seo h6{color:#EC4899;}

.sales .icon{background:#DC2626;}
.sales h6{color:#DC2626;}

.design .icon{background:#F59E0B;}
.design h6{color:#F59E0B;}

.data .icon{background:#06B6D4;}
.data h6{color:#06B6D4;}


.card1{
    top:-35px;
    left:50%;
    transform:translateX(-50%);
}

.card2{
    top:45px;
    right:-70px;
}

.card3{
    top:50%;
    right:-95px;
    transform:translateY(-50%);
}

.card4{
    bottom:45px;
    right:-70px;
}

.card5{
    bottom:-35px;
    left:50%;
    transform:translateX(-50%);
}

.card6{
    bottom:45px;
    left:-70px;
}

.card7{
    top:50%;
    left:-95px;
    transform:translateY(-50%);
}

.card8{
    top:45px;
    left:-70px;
}

@keyframes floating{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}


.card1{ top:0; }

.card2{
    top:60px;
    right:-50px;
}

.card3{
    right:-70px;
}

.card4{
    bottom:60px;
    right:-50px;
}

.card5{
    bottom:0;
}

.card6{
    bottom:60px;
    left:-50px;
}

.card7{
    left:-70px;
}

.card8{
    top:60px;
    left:-50px;
}

.service-card .inner{
    animation:float 4s ease-in-out infinite;
}


/* left update */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#EEF2FF;
    color:#4F46E5;
    padding:12px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-title{
    font-size:68px;
    line-height:1.08;
    font-weight:800;
    color:#111827;
    margin-bottom:25px;
}

.hero-title span{
    display:block;
    background:linear-gradient(90deg,#4F46E5,#7C3AED);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hero-text{
    font-size:19px;
    color:#6B7280;
    line-height:34px;
    max-width:560px;
    margin-bottom:40px;
}

.hero-features{
    display:flex;
    gap:35px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature i{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#EEF2FF;
    color:#4F46E5;
    font-size:22px;
}

.feature h6{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#1F2937;
}

.feature p{
    margin:2px 0 0;
    font-size:14px;
    color:#6B7280;
}

.hero-btn{
    display:flex;
    gap:18px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.btn-orange{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 34px;
    background:#111827;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.btn-orange:hover{

  background:#4F46E5;
    color:#fff;

}

.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 34px;
    border:2px solid #E5E7EB;
    color:#111827;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.btn-outline:hover{

  border-color:#111827;
    background:#111827;
    color:#fff;

}

.hero-review{

display:flex;

align-items:center;

gap:18px;

background:#fff;

padding:18px 24px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

max-width:430px;

}

.avatars{

display:flex;

}

.avatars img{

width:52px;
height:52px;

border-radius:50%;

border:3px solid #fff;

margin-left:-15px;

object-fit:cover;

}

.avatars img:first-child{

margin-left:0;

}

.hero-review h5{

margin:0;

font-size:20px;

font-weight:700;

color:#1F2937;

}

.hero-review span{

font-size:14px;

color:#6B7280;

}

@media(max-width:991px){

.hero-title{

font-size:46px;

}

.hero-features{

gap:20px;

}

.hero-btn{

justify-content:center;

}

.hero-review{

margin:auto;

}

}


.hrobng{
    
 max-width: 90% !important;
}


/* mobile hero */


/*=========================================
 MOBILE HERO
=========================================*/

.hero-mobile{
    display:none;
}

@media (max-width:991px){

.hero-desktop{
    display:none !important;
}

.hero-mobile{
    display:block;
    padding:40px 0 60px;
    background:#fff;
}

/* Container */

.hero-mobile .container{
    max-width:500px;
}

/* Badge */

.mobile-badge{

display:inline-block;

padding:10px 18px;

background:#EEF2FF;

color:#4F46E5;

border-radius:40px;

font-size:13px;

font-weight:600;

margin-bottom:20px;

}

/* Heading */

.mobile-title{

font-size:38px;

font-weight:800;

line-height:1.15;

color:#111827;

margin-bottom:18px;

}

.mobile-title span{

display:block;

color:#4F46E5;

}

/* Description */

.mobile-desc{

font-size:16px;

line-height:28px;

color:#64748B;

margin-bottom:30px;

}

/* Buttons */

.mobile-btns{

display:flex;

gap:12px;

margin-bottom:35px;

}

.mobile-btns a{

flex:1;

height:52px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-dark{

background:#111827;

color:#fff;

}

.btn-dark:hover{

background:#4F46E5;

}

.btn-light{

border:2px solid #E5E7EB;

color:#111827;

}

.btn-light:hover{

background:#111827;

color:#fff;

}

/* Agent */

.mobile-agent{

text-align:center;

margin-bottom:35px;

}

.mobile-agent img{

width:180px;

height:180px;

border-radius:50%;

object-fit:cover;

border:8px solid #fff;

box-shadow:0 20px 60px rgba(0,0,0,.12);

}

/* Services */

.mobile-services{

display:flex;

flex-direction:column;

gap:14px;

}

/* Service Card */

.mobile-service{

display:flex;

align-items:center;

background:#fff;

padding:18px;

border-radius:22px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

border:1px solid #F1F5F9;

transition:.35s;

}

.mobile-service:active{

transform:scale(.97);

}

/* Icon */

.service-icon{

width:58px;

height:58px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

color:#fff;

margin-right:16px;

flex-shrink:0;

}

/* Text */

.service-text{

flex:1;

}

.service-text h5{

margin:0;

font-size:17px;

font-weight:700;

color:#111827;

}

.service-text p{

margin-top:5px;

font-size:14px;

color:#64748B;

line-height:20px;

}

/* Review */

.mobile-review{

margin-top:35px;

padding:22px;

background:#F8FAFC;

border-radius:22px;

text-align:center;

}

.mobile-review .stars{

font-size:22px;

color:#FBBF24;

margin-bottom:10px;

}

.mobile-review h4{

margin-bottom:5px;

font-size:22px;

font-weight:700;

color:#111827;

}

.mobile-review p{

margin:0;

color:#64748B;

font-size:15px;

}

/* Icon Colors */

.purple .service-icon{
background:linear-gradient(135deg,#7C3AED,#5B21B6);
}

.green .service-icon{
background:linear-gradient(135deg,#10B981,#047857);
}

.orange .service-icon{
background:linear-gradient(135deg,#F97316,#EA580C);
}

.blue .service-icon{
background:linear-gradient(135deg,#2563EB,#1D4ED8);
}

.pink .service-icon{
background:linear-gradient(135deg,#EC4899,#BE185D);
}

.cyan .service-icon{
background:linear-gradient(135deg,#06B6D4,#0284C7);
}

.red .service-icon{
background:linear-gradient(135deg,#EF4444,#DC2626);
}

.yellow .service-icon{
background:linear-gradient(135deg,#F59E0B,#D97706);
}

}


select{

    all:unset;

    display:block;

    width:100%;

    border:1px solid #ccc;

    padding:12px 15px;

    border-radius:8px;

    background:#fff;

    font-family:Poppins,sans-serif;

}