:root{
    --theme-color: #5e0a06;
    --secondary-color: #6B322F;
    --text-color: #fff;
    --title-color: #5e0a06;
}

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

:root{
  --text-font: "Figtree", serif;
  --title-font: "Red Rose", serif;
}

body {
  font-size:17px;
  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: 1280px;
    padding: 0px 15px;
  }
}

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

.container-fluid{
  padding: 0px;
}

.auto-container{
        width: 100%;
         max-width: calc(100% - 30px);
    /*max-width: calc(100% - 100px);*/
    margin-inline: auto;
  /*position:static;
  max-width:1200px;
  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;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


a{
  font-family: var(--title-font);
  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: 17px;
  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: #000;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
     /* font-size: 16px;
    line-height: 30px;*/
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  margin: 0px;
  transition: all 500ms ease;
}


/* 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;
      width: 100%;
}

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

/** button **/

.owl-theme .owl-dots .owl-dot{
  border: none;
}
.theme-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  vertical-align: middle;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--title-font);
  background: #ef8021;
  color: #fff;
  text-align: center;
  padding: 16px 26px;
  text-transform: uppercase;
  z-index: 1;
  gap: 10px;
  transition: all 500ms ease;
  border: none;
}

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

.theme-btn i{
  position: relative;
  display: inline-block;
  font-size: 22px;
color: #fff;
  top: 2px;
  transition: all 500ms ease;
}

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

.theme-btn::before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  background-color:#5e0a06;
  transition: all 500ms ease;
}

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

.theme-btn.btn-two{
  background-color: #fff;
  color: var(--title-color);
}

.theme-btn.btn-two::before{
  background-color: var(--secondary-color);
}

.theme-btn.btn-two:hover{
  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;
}


/** 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: "\f12a";
  font-family: 'flaticon_metallic';
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: var(--theme-color);
  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 {
  color: var(--theme-color)
}

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

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -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;
}

.sec-title h6{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  color: #eb8230;
  border-bottom: 2px solid #eb8230;
  padding-left: 10px;
  margin-bottom: 16px;
}

.sec-title h6::before{
  position: absolute;
  content: '';
  background-color: #eb8230;
  width: 2px;
  height: 17px;
  left: 0px;
  bottom: 0px;
}

.sec-title h2{
  display: block;
  font-size: 40px;
  line-height: 48px;
}

.sec-title h2 span{
  font-weight: 300;
  color: #eb8230;
}

.mb_50 {
    margin-bottom: 50px;
}
.mb_45 {
    margin-bottom: 45px;
}

/** 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;
  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;
}


.main-header{
  position: relative;
  background-color: #fff;
}

.main-header .outer-container{
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ebe9ef;
}

.main-header .left-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-header .sidebar-toggler{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  background-color: #f0f4f8;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .sidebar-toggler i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
}

.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-header .theme-btn{
  padding: 10px 25px;
}

.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .menu-right-content li.contact-link a{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  gap: 10px;
}

.main-header .menu-right-content li.contact-link a i{
  position: relative;
  display: inline-block;
  color: #a5aaaf;
  top: 2px;
  transition: all 500ms ease;
}

.main-header .menu-right-content li.contact-link a:hover{
  color: var(--theme-color);
}

.main-header .language-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .language-box .nice-select{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}

.main-header .language-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #a5aaaf;
  top: 2px;
}

.main-header .menu-right-content .search-form{
  position: relative;
  display: block;
  width: 215px;
  padding-left: 30px;
  margin-left: 20px;
}

.main-header .menu-right-content .search-form .form-group{
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}

.main-header .menu-right-content .search-form .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 28px;
  font-size: 17px;
  line-height: 28px;
  color: #a5aaaf;
  padding-right: 30px;
}

.main-header .menu-right-content .search-form .form-group button[type='submit']{
  position: absolute;
  top: 2px;
  right: 0px;
  font-size: 24px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .menu-right-content .search-form .form-group input:focus + button,
.main-header .menu-right-content .search-form .form-group button:hover{
  color: var(--theme-color);
}

.main-header .bg-color{
  position: absolute;
  background-color: #f0f4f8;
  width: 447px;
  height: 100%;
  top: 0px;
  right: 0px;
  border-left: 1px solid #ebe9ef;
}


/** main-menu **/

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position: relative;
  float:left;
  z-index:2;
  margin: 0px 18px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:10px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight:600;
  font-family: var(--title-font);
  color: #fff;
  text-transform: capitalize;
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown > a{
  padding-right: 15px;
}

/*.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  color: var(--theme-color) !important;
}*/

.main-menu .navigation > li.dropdown > a:before{
 position: absolute;
    content: "\f107"; /* angle-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* required for solid icons */
    top: 16px;
    right: -4px;
    font-size: 15px;
    color: #fff;
    transition: all 500ms ease;
}

.main-menu .navigation > li.current > a:before,
.main-menu .navigation > li:hover > a:before{
  color: #fff;
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:270px;
  margin-top: 15px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  visibility: hidden;
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
 position:relative;
  display:block;
  padding: 8px 20px;
  line-height:24px;
  font-weight:500;
  font-size: 12px;
  text-transform:capitalize;
  font-family: var(--title-font);
  color:#000;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a{
  border-bottom: 1px solid #e4e9ec;
}

.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  content: "\f102";
  font-family: flaticon_flexibank;
  position:absolute;
  right:30px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  color: #a8a7a7;
  text-align:center;
  z-index:5;  
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown > a:hover:after{
  color: #fff;
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 30px;
  margin-left: 10px;
  background: #fff;
  width:270px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  z-index:100;
  display:none;
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 40px;
  height: 100%;
  left: -40px;
  top: 0px;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:14px 30px;
  line-height:24px;
  font-weight:400;
  font-size:17px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color: var(--text-color);
  border-bottom: 1px solid #e6e4e4;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 15px;
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--secondary-color);
  display: none;
}

.mobile-menu .nav-logo img{
  max-width: 250px;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:20px 25px;
  text-align:left;  
  padding-bottom: 20px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--secondary-color);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
 /* -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg); */ 
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  color: var(--theme-color);
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  color: var(--theme-color);
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}

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

.owl-carousel .owl-nav button span{
  font-family: 'flaticon_metallic';
}

.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;
}

@-webkit-keyframes bounceSlide {
  0%,20%,50%,80%,100% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px)
  }

  60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px)
  }
}

@keyframes bounceSlide {
  0%,20%,50%,80%,100% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px)
  }

  60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px)
  }
}

.bounce-slide {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounceSlide;
  animation-name: bounceSlide
}
.header-style-two {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
        background: #fff;
}

.header-top{
  position: relative;
  background-color: var(--secondary-color);
  padding: 17px 355px 55px 335px;
}

.header-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .top-inner .text-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top .top-inner .text-box p{
  color: #a9a5b8;
}

.header-top .top-inner .text-box a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.header-top .top-inner .text-box a:hover{
  color: var(--theme-color);
}

.header-top .top-inner .text-box a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px;
}

.header-top .top-inner .right-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 65px;
}

.header-top .top-inner .right-column .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top .top-inner .right-column .social-links::before{
  position: absolute;
  content: '';
  background-color: #f9f9f926;
  width: 25px;
  height: 1px;
  top: 10px;
  right: -45px;
}

.header-top .top-inner .right-column .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #a8a4b7;
}

.header-top .top-inner .right-column .social-links li a:hover{
  color: var(--theme-color);
}
.header-style-three{
  position: relative;
}

.header-top-two{
  position: relative;
  width: 100%;
     background-color: #eb8230;
    padding: 12px 0px;
}
.header-lower{
    /*background: #5e0a06;*/
    background: #5e0a06;
    /* margin: 0 150px; */
    /*position: absolute;
    width: 80%;
    margin: 0 150px;
    top: 80px;
    border-radius: 50px;*/
}
.header-top-two .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-two .top-inner .right-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top-two .top-inner .schedule-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 30px;
  border-right: 1px solid #dee1e7;
}
.fixed-header{
  position: fixed;
      width: 100%;
    top: 0;
  z-index:999;
  opacity:1;
  visibility:visible;
     transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.header-top-two .top-inner .schedule-box .icon-box{
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 42px;
  background-color: var(--theme-color);
  text-align: center;
  font-size: 20px;
  color: #fff;
}

.header-top-two .top-inner .schedule-box span{
  position: relative;
  display: block;
}

.header-top-two .top-inner .schedule-box a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
}

.header-top-two .top-inner .schedule-box a:hover{
  color: var(--theme-color);
}

.header-top-two .top-inner .schedule-box a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px;
}

.header-top-two .top-inner .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-two .top-inner .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 34px;
  color: #fff;
}

.header-top-two .top-inner .social-links li a:hover{
  color: var(--theme-color);
}

.header-style-three .menu-right-content .search-toggler,
.header-style-three .menu-right-content .user-link a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #a8acb3;
  cursor: pointer;
  transition: all 500ms ease;
}

.header-style-three .menu-right-content .user-link a:hover{
  color: var(--theme-color);
}

.header-style-three .menu-right-content .phone a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  color:#fff !important;
  font-weight: 600;
}

.header-style-three .menu-right-content .phone a:hover{
  color: var(--theme-color);
}

.header-style-three .menu-right-content .user-link{
  position: relative;
  padding-left: 35px;
}

.header-style-three .menu-right-content .user-link::before{
  position: absolute;
  content: '';
  background-color: #e8eaef;
  width: 25px;
  height: 1px;
  left: -10px;
  top: 11px;
}

.header-style-three .menu-right-content .phone{
  position: relative;
  padding: 10px 0px 0px 30px;
  border-left: 1px solid #e8eaef;
}

.header-style-three .main-menu .navigation > li > a{
  padding-top: 21.5px;
  padding-bottom: 21.5px;
}

.header-style-three .main-menu .navigation > li.dropdown > a:before{
  top: 22px;
}

.appointment-box{
        background: #f17d21;
    padding: 20px;
}
.main-header .menu-right-content .appointment-box a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #fff !important;
  font-weight: 600;
  /*padding-left: 30px;*/
  text-transform: uppercase;
}

.main-header .menu-right-content .appointment-box a:hover{
  color: var(--theme-color);
}

.main-header .menu-right-content .appointment-box a i{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  top: 2px;
}

.main-header .menu-right-content .search-toggler{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding-left: 30px;
  transition: all 500ms ease;
}

.main-header .menu-right-content .search-toggler:hover{
  color: var(--theme-color);
}

/*.header-style-two .menu-right-content .search-toggler::before,
.header-style-two .menu-right-content .appointment-box a::before{
  position: absolute;
  content: '';
  background-color: #544c74;
  width: 1px;
  height: 40px;
  left: 0px;
  top: -5px;
}*/

.header-style-two .menu-right-content .appointment-box a::before{
  top: -7px;
}

.header-style-two .sticky-header{
  background-color: var(--secondary-color);
}

.header-style-two .sticky-header .menu-right-content .appointment-box a::before{
  display: none;
}


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

.banner-section::before{
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: 1px;
  height: calc(100% - 200px);
  top: 0px;
  right: 100px;
  z-index: 2;
}

.banner-section .pattern-layer{
  position: absolute;
  top: 100px;
  right: 100px;
  width: 286px;
  height: 326px;
  background-repeat: no-repeat;
}

.banner-section .pattern-layer-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 445px;
  height: calc(100% - 200px);
  background-repeat: no-repeat;
  z-index: 2;
}

.banner-section .outer-container{
  position: relative;
}
  
.banner-carousel .slide-item{
  position: relative;
  overflow: hidden;
}

.banner-section .banner-carousel .slide-item{
  padding-bottom: 200px;
}

.banner-section .banner-carousel .content-box{
  position: relative;
  float: right;
  background-color: #fff;
  max-width: 750px;
  padding: 24px 30px 100px 100px;
  width: 100%;
}

.banner-section .banner-carousel .content-box .image-layer{
  position: absolute;
  left: -75px;
  bottom: 179px;
}

.banner-section .banner-carousel .content-box .inner-box{
  position: relative;
  z-index: 5;
}
  
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  right:0;
  top:0;
  width: 100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
  
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}
  
.banner-carousel .content-box h2{
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 42px;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-section .banner-carousel .content-box h2{
  padding-bottom: 30px;
}

.banner-section .banner-carousel .content-box h2::before{
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 100px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.banner-carousel .content-box h2 span{
  font-weight: 300;
}

.banner-carousel .content-box p{
  margin-bottom: 42px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-section .banner-carousel .content-box p{
  max-width: 380px;
  padding-left: 100px;
}
  
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
  
.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-section .banner-carousel .content-box .btn-box{
  padding-left: 100px;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-section .banner-right-content{
  position: absolute;
  top: -70px;
  right: 0px;
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  z-index: 2;
}

.banner-section .banner-right-content .mail-box{
  position: relative;
  display: block;
  padding-bottom: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.banner-section .banner-right-content .mail-box::before{
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: 70px;
  height: 1px;
  left: -22px;
  bottom: 0px;
}

.banner-section .banner-right-content .mail-box a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #a5aaaf;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.banner-section .banner-right-content .mail-box a i{
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  transform: rotate(180deg);
}

.banner-section .banner-right-content .social-links{
  position: relative;
  display: block;
  text-align: center;
}

.banner-section .banner-right-content .social-links li{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.banner-section .banner-right-content .social-links li:last-child{
  margin-bottom: 0px;
}

.banner-section .banner-right-content .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #afb3b8;
}

.banner-section .banner-right-content .social-links li a:hover{
  color: var(--theme-color);
}

.banner-section .banner-right-content .social-links li h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #a5aaaf;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.banner-section .banner-carousel .owl-nav{
  position: absolute;
  right: 750px;
  bottom: 200px;
}

.banner-section .banner-carousel .owl-nav button{
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background-color: var(--theme-color);
}

.banner-section .banner-carousel .owl-nav button.owl-prev{
  border-bottom: 1px solid #fe7a45;
}

.banner-section .banner-right-content .mail-box a:hover{
  color: var(--theme-color);
}

.banner-style-two{
  position: relative;
  /*top: 28px;*/
}

.banner-style-two .slide-item{
  position: relative;
  /*padding: 180px 0px 150px 0px;*/
  height: 80vh;
   display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
   
   
}

.banner-style-two .slide-item::before{
  position: absolute;
  content: '';
  background-color: #00000052;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  z-index: 1;
}

.banner-style-two .content-box{
  position: relative;
  max-width: 570px;
  z-index: 5;

}

.banner-style-two .content-box h2{
  display: block;
  font-size: 45px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 14px;
}

.banner-style-two .content-box h2 span{
  font-weight: 300;
}

.banner-style-two .content-box p{
  color: #f5f4f9;
  font-size: 15px;
  line-height: 26px;
  max-width: 380px;
  margin-bottom: 10px;
}

.banner-style-two .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.banner-style-two .content-box .btn-box .theme-btn{
  border: 1px solid #ffffff;
  background-color: transparent;
  padding: 10px 25px;
}

.banner-style-two .content-box .btn-box .theme-btn:hover{
  border-color: var(--theme-color);
}

.banner-style-two .content-box .btn-box .schedule-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.banner-style-two .content-box .btn-box .schedule-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: #eb8230;
}

.banner-style-two .content-box .btn-box .schedule-box .icon-box::before{
  position: absolute;
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 46px;
  top: -5px;
  right: -15px;
}

.banner-style-two .content-box .btn-box .schedule-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.banner-style-two .owl-nav{
  position: absolute;
  right: 375px;
  bottom: 0px;
  width:320px;
  background-color: var(--theme-color);
  height: 56px;
  line-height: 56px;
}

.banner-style-two .owl-nav button{
  position: absolute;
  display: inline-block;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  z-index: 1;
      border: none;
}

.banner-style-two .owl-nav button.owl-prev{
  left: 10px;
  top: -1px;
  transform: rotate(-90deg);
      border: none;
}

.banner-style-two .owl-nav button.owl-next{
  right: 5px;
  top: -1px;
  transform: rotate(-90deg);
      border: none;
}

.banner-style-two .owl-dots{
  position: absolute;
  right: 375px;
  bottom: 0px;
  width: 317px;
  height: 56px;
  line-height: 58px;
  text-align: center;
}

.banner-style-two .owl-dots button span{
  display: none !important;
}

.banner-style-two .owl-dots button{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  opacity: 0.5;
  margin: 0px 27px;
      border: none;
}

.banner-style-two .owl-dots button.active{
  opacity: 1;
}

.banner-style-two .owl-dots button::before{
  content: '01';
}

.banner-style-two .owl-dots button:nth-child(2):before{
  content: '02';
}
.banner-style-two .owl-dots button:nth-child(3):before{
  content: '03';
}
.banner-style-two .owl-dots button:nth-child(4):before{
  content: '04';
}
.banner-style-two .owl-dots button:nth-child(5):before{
  content: '05';
}
.banner-style-two .owl-dots button:nth-child(6):before{
  content: '06';
}
.logo-box img{
  /*max-width: 300px;*/
}
.banner-style-two .owl-dots button::after{
  position: absolute;
  content: '';
  background-color: #eb8230;
  width: 25px;
  height: 1px;
  top: 12px;
  right: -38px;
}

.banner-style-two .owl-dots button:last-child:after{
  display: none;
}
.service-style-two{
  position: relative;
  padding: 85px 0px 85px 0px;
  overflow-x: hidden;
}

.service-style-two .outer-container{
  position: relative;
  padding-right: 320px;
  padding-left: 30px;
}

.service-block-two .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f5f4f9;
  margin-bottom: 30px;
}

.service-block-two .inner-box .image-box{
  position: relative;
  display: block;
  padding: 40px;
  border-right: 1px solid #dddbe4;
}

.service-block-two .inner-box .image-box .image{
  position: relative;
  min-width: 270px;
}

.service-block-two .inner-box .image-box .image .shape-1,
.service-block-two .inner-box .image-box .image .shape-2{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-block-two .inner-box .image-box .image .shape-1::before{
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 100px;
  height: 50px;
  left: 50%;
  margin-left: -50px;
  top: 0px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: all 500ms ease;
}

.service-block-two .inner-box .image-box .image .shape-1::after{
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 100px;
  height: 50px;
  left: 50%;
  margin-left: -50px;
  bottom: 0px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .image .shape-1::before,
.service-block-two .inner-box:hover .image-box .image .shape-1::after{
  width: 0px;
  margin-left: 0px;
}

.service-block-two .inner-box .image-box .image .shape-2::before{
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 50px;
  height: 100px;
  left: 0px;
  top: 50%;
  margin-top: -50px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: all 500ms ease;
}

.service-block-two .inner-box .image-box .image .shape-2::after{
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 50px;
  height: 100px;
  right: 0px;
  top: 50%;
  margin-top: -50px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .image .shape-2::before,
.service-block-two .inner-box:hover .image-box .image .shape-2::after{
  height: 0px;
  margin-top: 0px;
}


.service-block-two .inner-box .image-box .icon-box{
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 80px;
  background-color: #fff;
  text-align: center;
  right: 50px;
  bottom: 50px;
  font-size: 40px;
  color: var(--title-color);
  z-index: 2;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .icon-box{
  color: #fff;
  background-color: var(--theme-color);
}

.service-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.service-block-two .inner-box .content-box{
  position: relative;
  display: block;
  padding: 38px 20px 45px 40px;
  width: 100%;
}

.service-block-two .inner-box .content-box .count-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-color: #fff;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 24px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}

.service-block-two .inner-box .content-box .count-box span{
  font-size: 18px;
  color: #a9a5b8;
}

.service-block-two .inner-box .content-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #a9a5b8;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-block-two .inner-box .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 0px;
}

.service-block-two .inner-box .content-box h2{
  display: block;
  font-size: 30px;
  line-height: 38px;
}

.service-block-two .inner-box .content-box h2 a{
  display: inline-block;
  color: var(--title-color);
}

.service-block-two .inner-box .content-box h2 a:hover{
  color: var(--theme-color);
}

.service-block-two .inner-box .content-box .block-title{
  position: relative;
  display: block;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.service-block-two .inner-box .content-box .block-title .line-shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 70px;
  height: 3px;
  background-color: var(--theme-color);
}

.service-block-two .inner-box .content-box .block-title .line-shape::before,
.service-block-two .inner-box .content-box .block-title .line-shape::after{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  bottom: -2px;
}

.service-block-two .inner-box .content-box .block-title .line-shape::before{
  left: 0px;
}

.service-block-two .inner-box .content-box .block-title .line-shape::after{
  right: 0px;
}

.service-block-two .inner-box .content-box p{
  margin-bottom: 33px;
}

.service-block-two .inner-box .content-box .link a{
  position: relative;
  display: inline-block;
  width: 82px;
  height: 56px;
  line-height: 64px;
  background-color: #eae8f0;
  text-align: center;
  font-size: 22px;
  color: var(--title-color);
}

.service-block-two .inner-box .content-box .link a:hover{
  color: #fff;
  background-color: var(--theme-color);
}

.service-block-two .inner-box .content-box .overlay-content{
  position: absolute;
  left: 0px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: #f5f4f9;
  padding: 38px 20px 45px 40px;
  z-index: 2;
  opacity: 0;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.service-block-two .inner-box:hover .content-box .overlay-content{
  top: 0;
  opacity: 1;
}

.service-style-two .owl-nav{
  position: absolute;
  left: -10px;
  right: 0px;
  bottom: -52px;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.service-style-two .lower-box{
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding-left: 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.service-style-two .lower-box .line{
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #ebe9ef;
}

.service-style-two .lower-box .link a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.service-style-two .lower-box .link a:hover{
  color: var(--theme-color);
}

.service-style-two .lower-box .link a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px;
}

.nav-style-one button{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  cursor: pointer;
}

.nav-style-one button.owl-prev span{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

.nav-style-one button.owl-prev{
  padding-right: 44px;
  margin-right: 15px;
  border: none;
}

.nav-style-one button.owl-prev::before{
  position: absolute;
  content: 'prev';
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  top: 3px;
  right: 0px;
}

.nav-style-one button.owl-next{
  padding-left: 44px;
  margin-left: 15px;
  border: none;
}

.nav-style-one button.owl-next::before{
  position: absolute;
  content: 'next';
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  top: 3px;
  left: 0px;
}

.nav-style-one button.owl-prev::after{
  position: absolute;
  content: '';
  background-color: #e6e9ed;
  width: 1px;
  height: 30px;
  top: 0px;
  right: -15px;
}
.chooseus-style-two{
  position: relative;
  padding:0px 0px 75px 0px;
}

.chooseus-block-two .inner-box{
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.chooseus-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 90px;
  line-height: 100px;
  background-color: #f5f4f9;
  text-align: center;
  font-size: 40px;
  color: var(--title-color);
  margin-bottom: 22px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 50% 100%, 0 80%, 0 20%);
  transition: all 500ms ease;
}

.chooseus-block-two .inner-box:hover .icon-box{
  color: #fff;
  background-color: var(--theme-color);
}

.chooseus-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 9px;
  padding-left: 22px;
}

.chooseus-block-two .inner-box h3 i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 16px;
  color: var(--theme-color);
}

.right-content .chooseus-block-two .inner-box h3{
  padding-left: 0px;
  padding-right: 22px;
}

.right-content .chooseus-block-two .inner-box h3 i{
  left: inherit;
  right: 0px;
}

.chooseus-style-two .image-box{
  position: relative;
  display: block;
}

.chooseus-style-two .image-box .image{
  position: relative;
  display: block;
  border-radius: 50%;
}

.chooseus-style-two .image-box .image img{
  width: 100%;
  border-radius: 50%;
}

.chooseus-style-two .image-box .image-shape{
  position: absolute;
  left: -70px;
  top: -70px;
  width: 510px;
  height: 510px;
  background-repeat: no-repeat;
}

.header-style-two .sticky-header{
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.align-3 {
    text-align: right;
}
.industries-style-two{
  position: relative;
  padding-top: 80px;
  background-color: #5c0c09;
}
.sec-title.light h2 {
    color: #fff;
}
.industries-style-two .sec-title a{
  position: absolute;
  right: 0px;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.industries-style-two .sec-title a:hover{
  color: #fff;
}

.industries-style-two .sec-title a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #fff;
  top: 2px;
}

.industries-style-two .industries-block-one{
  /*float: left;*/
  /*width: 25%;*/
    position: relative;
  display: block;
  border-right: 1px solid #f9f9f926;
}

.industries-block-one .inner-box{
/*  position: relative;
  display: block;
  border-right: 1px solid #f9f9f926;*/
}

.industries-block-one:last-child .inner-box{
  border-right: none;
}

.industries-block-one .inner-box .upper-box{
  position: relative;
  display: block;
  /*padding: 42px 40px 43px 40px;*/
  padding: 20px 20px 20px 20px;
  border-top: 1px solid #f9f9f926;
  border-bottom: 1px solid #f9f9f926;
}

.industries-block-one .inner-box .upper-box h2{
  display: block;
font-size: 22px;
    line-height: 38px;
  margin-bottom: 3px;
}

.industries-block-one .inner-box .upper-box h2 a{
  display: inline-block;
  color: #fff;
  border-bottom: 1px dashed transparent;
}

.industries-block-one .inner-box .upper-box h2 a:hover{
  border-color: var(--theme-color);
}

.industries-block-one .inner-box .upper-box h3{
  display: block;
      font-size: 20px;
    line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 42px;
}

.industries-block-one .inner-box .upper-box .image-box{
  position: relative;
  display: block;
  margin-bottom: 43px;
}

.industries-block-one .inner-box .upper-box .image-box img{
  width: 100%;
}

.industries-block-one .inner-box .upper-box p{
  color: #fff;
}

.industries-block-one .inner-box .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
      border-bottom: 1px solid #f9f9f926;
}
.nav-style-two  .owl-nav{
      justify-content: center;
    display: flex;
    padding: 30px;
}
.industries-block-one .inner-box .lower-box .link a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.industries-block-one .inner-box .lower-box .link a:hover{
  color: #fff;
}

.industries-block-one .inner-box .lower-box .link a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #fff;
  top: 2px;
}

.industries-block-one .inner-box .lower-box .icon-box{
  position: relative;
  display: inline-block;
  width: 79px;
  height: 79px;
  line-height: 85px;
  text-align: center;
  border-left: 1px solid #f9f9f926;
  font-size: 40px;
  color: #fff;
}

.process-section{
  position: relative;
  padding: 112px 0px 90px 0px;
}

.process-section .content-box{
  position: relative;
  display: block;
}

.process-section .content-box .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.process-section .content-box .inner-box .image-box{
  position: relative;
  display: block;
}

.process-section .content-box .inner-box .image-box img{
  width: 100%;
}

.process-section .content-box .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 11px;
}

.process-section .content-box .inner-box h6{
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #6b6a6f;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.process-section .content-box .inner-box h6::before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-16.png);
  width: 33px;
  height: 62px;
  top: 34px;
  right: 30px;
  background-repeat: no-repeat;
}

.process-section .content-box .inner-box a{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 64px;
  background-color: #f5f4f9;
  text-align: center;
  font-size: 26px;
  color: var(--title-color);
}

.process-section .content-box .inner-box a:hover{
  color: #fff;
  background-color: var(--theme-color);
}

.process-block-one .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

.process-block-one .inner-box .image-box{
  position: relative;
  display: block;
  min-width: 270px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 120px;
}

.process-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.process-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.process-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.process-block-one .inner-box .image-box h2{
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 30px;
  color: #dddbe4;
}

.process-block-one .inner-box .image-box .icon-box{
  position: absolute;
  display: inline-block;
  font-size: 60px;
  color: var(--title-color);
  left: 30px;
  bottom: 20px;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover .image-box .icon-box{
  color: var(--theme-color);
}

.process-block-one .inner-box .image-box::before{
  position: absolute;
  content: '';
  width: calc(100% - 40px);
  height: 100%;
  left: 0px;
  top: 0px;
  border: 2px solid #ebe9ef;
  transition: all 500ms ease;
}

.process-block-one .inner-box:hover .image-box::before{
  background-color: #f5f4f9;
  border-color: #f5f4f9;
}

.process-block-one .inner-box .text-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}

.process-block-one .inner-box .text-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.process-block-one .inner-box .text-box h3 a:hover{
  color: var(--theme-color);
}
.mb_40 {
    margin-bottom: 40px;
}.mb_30 {
    margin-bottom: 30px;
}
.funfact-section{
  position: relative;
  background-color: #5c0c09;
  /*overflow: hidden;*/
}

.funfact-block-one .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 65px 20px 72px 40px;
}

.funfact-block-one .inner-box::before{
  position: absolute;
  content: '';
  background-color: #f9f9f926;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.funfact-block:last-child .funfact-block-one .inner-box::before{
  display: none;
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  display: flex;
  font-size: 60px;
  line-height: 60px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
}

.funfact-block-one .inner-box .count-outer .symble{
  font-weight: 300;
}

.funfact-block-one .inner-box .count-outer .odometer-inside{
  display: flex;
}

.funfact-block-one .inner-box .bar-shape{
  position: relative;
  width: 1px;
  height: 70px;
  background-color: #eb8230;
}

.funfact-block-one .inner-box .bar-shape::before,
.funfact-block-one .inner-box .bar-shape::after{
  position: absolute;
  content: '';
  background-color: #eb8230;
  width: 20px;
  height: 1px;
  right: -10px;
}

.funfact-block-one .inner-box .bar-shape::before{
  top: 0px;
}

.funfact-block-one .inner-box .bar-shape::after{
  bottom: 0px;
}

.funfact-block-one .inner-box .inner{
  position: relative;
}

.funfact-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.funfact-block-one .inner-box .icon-box{
  position: absolute;
  left: 0px;
  bottom: -118px;
  width: 80px;
  height: 90px;
  line-height: 96px;
  font-size: 40px;
  color: var(--title-color);
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.funfact-block-one .inner-box .icon-box::before{
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 80px;
  height: 90px;
  left: 0px;
  top: 0px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 50% 100%, 0 80%, 0 20%);
  z-index: -1;
  transition: all 500ms ease;
}

.funfact-block-one .inner-box:hover .icon-box{
  color: #fff;
}

.funfact-block-one .inner-box:hover .icon-box::before{
  background-color: var(--theme-color);
  transform: rotate(90deg);
}
.testimonial-style-two{
  position: relative;
  padding: 112px 0px 110px 0px;
  overflow: hidden;
}

.testimonial-style-two .sec-title a{
  position: absolute;
  right: 0px;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
}

.testimonial-style-two .sec-title a:hover{
  color: var(--theme-color);
}

.testimonial-style-two .sec-title a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px;
}

.testimonial-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.testimonial-style-two .inner-container{
  position: relative;
}

.testimonial-style-two .inner-container::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 5000px;
  height: 100%;
  top: 0px;
  right: 100%;
  z-index: 2;
}

.testimonial-block-one .inner-box{
  position: relative;
  display: block;
  /*background-color: #f5f4f9;*/
  padding: 20px 20px;
      border: 1px solid #0000001a;
    /*border-radius: 20px;*/
}

.testimonial-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--theme-color);
  margin-bottom: 34px;
}

.testimonial-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px;
}

.testimonial-block-one .inner-box p{
  margin-bottom: 32px;
}

.testimonial-block-one .inner-box .author-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.testimonial-block-one .inner-box .author-box .author-thumb{
  position: relative;
  display: inline-block;
      width: 40%;
  /*width: 100px;
  height: 100px;*/
}

.testimonial-block-one .inner-box .author-box .author-thumb img{
  width: 100%;
}

.testimonial-block-one .inner-box .author-box .author-thumb::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 40px;
  height: 40px;
  left: 0px;
  top: -1px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.testimonial-block-one .inner-box .author-box .author-thumb::after{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 40px;
  height: 40px;
  right: 0px;
  bottom: -1px;
  z-index: 1;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.testimonial-block-one .inner-box .author-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.testimonial-block-one .inner-box .author-box .designation{
  position: relative;
  display: block;
  margin-bottom: 22px;
    color: #000;
}

.testimonial-block-one .inner-box .author-box .author-info{
  position: relative;
  margin-top: -8px;
}

.testimonial-block-one .inner-box .author-box .rating-box{
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #eae8f0;
  padding: 4px 15px;
  border-left: 2px solid var(--theme-color);
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  gap: 5px;
}

.testimonial-block-one .inner-box .author-box .rating-box i{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--theme-color);
}

.testimonial-block-one .inner-box .author-box .rating-box::before{
  position: absolute;
  content: '';
  background-color: #eae8f0;
  width: 15px;
  height: 100%;
  top: 0px;
  right: -15px;
  clip-path: polygon(100% 0%, 0 50%, 100% 100%, 0 100%, 0 0);
}

.testimonial-style-two .owl-nav{
  position: relative;
  margin-top: 60px;
}

.testimonial-style-two .owl-nav::before{
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: calc(100% - 255px);
  height: 1px;
  left: 176px;
  top: 13px;
}

.testimonial-style-two .owl-dots{
  position: absolute;
  right: 0px;
  bottom: 18px;
  counter-reset: slides-num;
  min-height: 30px;
  min-width: 51px;
}

.testimonial-style-two .owl-dots::after {
  position: absolute;
  right: 0px;
  top: 17px;
  content: "/0" counter(slides-num);
  display: inline-block;
  font-size: 18px;
  color: #a6a5ad;
  font-weight: 600;
  font-family: var(--title-font);
}

.testimonial-style-two .owl-dots button span{
  display: none !important;
}

.testimonial-style-two .owl-dots button{
     position: absolute;
    top: 14px;
    left: 0;
    counter-increment: slides-num;
    font-size: 21px;
    line-height: 30px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    letter-spacing: 8px;
}

.testimonial-style-two .owl-dots button.active:before{
  position: absolute;
  content: counter(slides-num);
}

.testimonial-style-two .owl-dots button.active:after{
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}

.faq-section{
  position: relative;
  padding: 90px 0px 70px 0px;
  background-color: #5a0e0b;
}

.faq-section .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
}

.accordion_style_one .accordion{
  position: relative;
  border: 1px solid #f9f9f926;
  margin-bottom: 30px;
}

.accordion_style_one .accordion .acc-btn{
  position: relative;
  cursor: pointer;
  padding: 21px 70px 21px 30px;
}

.accordion_style_one .accordion .acc-btn h4{
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.accordion_style_one .accordion .acc-btn .icon-box{
  position: absolute;
  top: 26px;
  right: 29px;
  font-size: 20px;
  color: #a5a3ac;
  transition: all 500ms ease;
}

.accordion_style_one .accordion .acc-btn.active .icon-box{
  transform: rotate(45deg);
  color: #e7843b;
}

.accordion_style_one .accordion .acc-content{
  position: relative;
  padding: 20px 30px;
  border-top: 1px solid #f9f9f926;
}

.accordion_style_one .accordion .acc-btn.active{
  background-color: #5a0e0b;
}

.accordion_style_one .accordion .acc-content p{
  color: #fff;
}

.faq-section .form-inner{
  position: relative;
  background-color: #fff;
  padding: 40px;
}

.faq-section .form-inner form{
  position: relative;
  margin: 0px 5px;
}

.faq-section .form-inner .single-column{
  padding: 0px 10px;
}

.faq-section .form-inner .form-group{
  position: relative;
  margin-bottom: 20px;
}

.faq-section .form-inner .form-group .icon-box{
  position: absolute;
  left: 19px;
  top: 12px;
  z-index: 1;
}
.faq-section .form-inner .form-group .icon-box img{
   filter: brightness(0) saturate(100%);
}

.faq-section .form-inner .form-group .select-box{
  min-height: 60px;
}

.faq-section .form-inner .form-group input[type='text'],
.faq-section .form-inner .form-group input[type='email'],
.faq-section .form-inner .form-group textarea,
.faq-section .form-inner .form-group select{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #ebe9ef;
  font-size: 17px;
  color: #000;
  padding: 10px 20px 10px 50px;
  transition: all 500ms ease;
}

.faq-section .form-inner .form-group input:focus,
.faq-section .form-inner .form-group textarea:focus{
  border-color: var(--theme-color);
}

.faq-section .form-inner .form-group textarea{
  height: 107px;
  resize: none;
}

.faq-section .form-inner .form-group .nice-select::before{
  top: 15px;
  right: 20px;
}

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

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


.nav-style-two button{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color:#fff;
  cursor: pointer;
}

.nav-style-two button.owl-prev span{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

.nav-style-two button.owl-prev{
  padding-right: 44px;
  margin-right: 15px;
  border: none;
}

.nav-style-two button.owl-prev::before{
  position: absolute;
  content: 'prev';
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  top: 3px;
  right: 0px;
}

.nav-style-two button.owl-next{
  padding-left: 44px;
  margin-left: 15px;
  border: none;
}

.nav-style-two button.owl-next::before{
  position: absolute;
  content: 'next';
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  top: 3px;
  left: 0px;
}

.nav-style-two button.owl-prev::after{
  position: absolute;
  content: '';
  background-color: #e6e9ed;
  width: 1px;
  height: 30px;
  top: 0px;
  right: -15px;
}
.clients-section{
  position: relative;
  padding: 70px 0px 70px 0px;
  background-color: #f5f4f980;
}

.clients-section .inner-container{
  position: relative;
  display: block;
  border: 1px solid #dddbe4;
}

.clients-section .clients-box .clients-logo{
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  padding: 10px;
}

.clients-section .clients-box .clients-logo .border-bottom{
  position: absolute;
  background-color: #dddbe4;
  width: 100%;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.clients-section .clients-box .clients-logo .border-right{
  position: absolute;
  background-color: #dddbe4;
  width: 1px;
  height: 100%;
  right: 0px;
  top: 0px;
}

.clients-section .clients-box .clients-logo .border-left{
  position: absolute;
  background-color: #dddbe4;
  width: 1px;
  height: 100%;
  left: 0px;
  top: 0px;
}

.clients-section .clients-box .clients-logo img{
  /*filter: grayscale(100%);*/
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.clients-section .clients-box .clients-logo img:hover{
  /*filter: grayscale(0%);*/
      /*filter: brightness(0) saturate(100%);*/
  transform: scale(1.1);
}

.clients-section .content-box{
  position: relative;
  display: block;
  margin: 0px -5px;
}

.clients-section .content-box h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 22px;
}

.clients-section .content-box h3 span{
  font-weight: 300;
}

.clients-section .content-box .theme-btn{
  width: 100%;
}

.footer-style-two{
  position: relative;
  background-color: #4e0d0b;
}
.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-style-two::before{
  position: absolute;
  content: '';
  background-color: #58100d;
  width: calc(50% + 150px);
  height: 100%;
  top: 0px;
  right: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 0%);
}

.footer-style-two .widget-section{
  padding: 60px 0px 60px 0px;
  border-bottom: 1px solid #f9f9f926;
}

.footer-style-two .logo-widget .phone a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #fff;
  font-family: var(--text-font);
  border-bottom: 1px dashed #eb8230;
  margin-bottom: 18px;
}

.footer-style-two .logo-widget .phone a:hover{
  color: var(--theme-color);
}

.footer-style-two .logo-widget p{
  color: #e2e2e2;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-style-two .logo-widget h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  max-width: 180px;
  margin-bottom: 12px;
}

.footer-style-two .logo-widget .link a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-top: 27px;
}

.footer-style-two .logo-widget .link a:hover{
  color: var(--theme-color);
}

.footer-style-two .logo-widget .link a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #eb8230;
  top: 2px;
}

.footer-style-two .widget-title{
  margin-bottom: 22px;
}

.footer-style-two .widget-title h3{
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.footer-style-two .links-widget .social-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
}

.footer-style-two .links-widget .social-box .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-style-two .links-widget .social-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  border: 1px solid #f9f9f926;
  text-align: center;
  font-size: 18px;
  color: #fdfdfd;
}

.footer-style-two .links-widget .social-box .social-links li a:hover{
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.footer-style-two .links-widget .social-box .download-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-style-two .links-widget .social-box .download-box .icon-box{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #ffffff38;
  text-align: center;
  font-size: 28px;
  color: #fefefe;
}

.footer-style-two .links-widget .social-box .download-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.footer-style-two .links-widget .social-box .download-box button{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}

.footer-style-two .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.footer-style-two .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.footer-style-two .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  color: #fff;
  padding-right: 17px;
}

.footer-style-two .links-widget .links-list li a:hover{
  color: #eb8230;
}

.footer-style-two .links-widget .links-list li a:before{
  position: absolute;
  content: "\f126";
  font-family: 'flaticon_metallic';
  font-size: 16px;
  top: 0px;
  right: 0px;
  color: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease;
}

.footer-style-two .links-widget .links-list li a:hover::before{
  opacity: 1;
}

.footer-style-two .links-widget .links-list{
  position: relative;
  padding-left: 16px;
}

.footer-style-two .links-widget .links-list::before{
  position: absolute;
  content: '';
  background-color: #f9f9f926;
  width: 1px;
  height: calc(100% - 14px);
  left: 0px;
  top: 7px;
}

.footer-bottom .footer-nav{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #a9a5b8;
}

.footer-bottom .footer-nav li a{
  position: relative;
  display: inline-block;
     color: #fff ;
  font-family: var(--text-font);
}

.footer-bottom .footer-nav li a:hover{
  color: #eb8230;
}

.footer-style-two .footer-bottom{
  position: relative;
  padding: 21px 0px;
}
.footer-bottom {
    position: relative;
    display: block;
}.p_relative {
    position: relative;
}
.footer-style-two .footer-bottom::before{
  position: absolute;
  content: '';
  background-color: #4c0e0d;
  width: calc(50% - 195px);
  height: 100%;
  left: 0px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 0% 100%, 0% 0%);
}

.footer-style-two .footer-bottom .copyright p{
  color: var(--text-color);
}

.footer-style-two .big-text{
  position: absolute;
  left: 53%;
  transform: translateY(-50%) rotate(193deg);
  top: 270px;
  writing-mode: vertical-lr;
  font-size: 60px;
  line-height: 80px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #f9f9f926;
  height: 100%;
  text-align: center;
  margin-left: -250px;
}

.footer-style-two .outer-container{
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.head-btn{
  background: #5c0c09;
}
.head-btn::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
   background: #fff;
    transition: 500ms;
}
.head-btn:hover {
    color: #5c0c09;
}
.footer-bottom .bottom-inner .copyright a{
  color: #fff !important;
}
.footer-logo img{
    max-width: 400px;
    /* filter: grayscale(100%); */
    /* filter: brightness(0) saturate(100%) invert(1); */
    background: #fff;
    padding: 0 5px;
    border-radius: 10px;
}
/** page-title **/

.page-title{
  position: relative;
  padding: 60px 0px 30px 0px;
  border-bottom: 1px solid #e4e9ec;
    min-height: 25vh;
}

.page-title .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc(100% - 475px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .content-box{
  position: relative;
  display: block;
}

.page-title .content-box h1{
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 11px;
}

.page-title .content-box .bread-crumb{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: var(--text-color);
}

.page-title .content-box .bread-crumb li i,
.page-title .content-box .bread-crumb li span{
  color: var(--theme-color);
}

.page-title .content-box .bread-crumb li:last-child span{
  text-decoration: underline;
}

.page-title .content-box .bread-crumb li a{
  font-family: var(--text-font);
  color: var(--text-color);
}

.page-title .content-box .bread-crumb li a:hover{
  color: var(--theme-color);
}

.page-title .content-box .bread-crumb li i{
  position: relative;
  display: inline-block;
  top: 3px;
}

.page-title .based-content{
  position: absolute;
  left: 0px;
  top: 0px;
  /*width: 375px;*/
  padding-right: 40px;
  border-right: 1px solid #ebe9ef;
      height: 100%;
      overflow: hidden;
}

.page-title .based-content .inner{
  position: relative;
  display: block;
  background-color: #161414;
     padding: 70px 40px;
       min-height: 25vh;
}

.page-title .based-content .inner .logo-box{
  position: relative;
  display: block;
      margin-bottom: 0px;
}

.page-title .based-content .inner .logo-box .logo{
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.page-title .based-content .inner .logo-box h5{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  color: #a5aaaf;
  padding-right: 110px;
}

.page-title .based-content .inner .logo-box h5::before{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100px;
  height: 3px;
  right: 0px;
  bottom: 11px;
}

.page-title .based-content .inner .logo-box h5::after{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  right: 50px;
  bottom: 7px;
}

.page-title .based-content .inner .single-item{
  position: relative;
  display: block;
  /*padding-left: 100px;*/
}

.page-title .based-content .inner .single-item .shape{
  position: absolute;
  left: 0px;
  bottom: 5px;
  width: 90px;
  height: 162px;
  background-repeat: no-repeat;
}

.page-title .based-content .inner .single-item h2{
  display: block;
  font-size:50px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 3px;
}

.page-title .based-content .inner .single-item h5{
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #a5aaaf;
}

.page-title .based-content .rotate-text{
  position: absolute;
  top: 0px;
  right: 7px;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--title-font);
  color: #a5aaaf;
  font-weight: 600;
  transform: rotate(180deg);
}

.page-title .outer-container{
  position: relative;
  padding-left: 375px;
}

.page-title .based-content .inner .single-item h2 span{
  font-weight: 300;
}
.page-title .content-box .bread-crumb li a {
    font-family: var(--text-font);
    color:#000;
       font-size: 14px;
}
.page-title .content-box .bread-crumb {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color:#000;
}
.about-style-three {
    position: relative;
    padding: 80px 0px;
}
.about-style-three{
  position: relative;
  padding: 80px 0px;
}

.about-style-three .image-box{
  position: relative;
  display: block;
  margin-right: 20px;
  /*padding: 0px 120px 240px 60px;*/
}

.about-style-three .image-box img{
     width: auto;
}

.about-style-three .image-box .image-1{
  position: absolute;
  right: 0px;
bottom: -148px;
    z-index: 9;
    border: 10px solid #fff;
}

.about-style-three .image-box .image-2{
  position: relative;
  display: block;
}

.about-style-three .image-box .image-3{
  position: absolute;
  left: 0px;
  bottom: 120px;
}

.about-style-three .rotate-text{
  position: absolute;
    top: 85px;
    right: 15px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--theme-color);
  padding: 17px 30px;
  transform: rotate(-90deg);
}

.about-style-three .rotate-text::before{
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 20px;
  height: 1px;
  left: 0px;
  top: 30px;
}

.about-style-three .content-box{
  position: relative;
  display: block;
}

.about-style-three .content-box .inner-box .left-content{
  position: relative;
  display: block;
}

.about-style-three .content-box .inner-box .left-content .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 90px;
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  color: #fff;
  background-color: var(--theme-color);
  margin-bottom: 25px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 50% 100%, 0 80%, 0 20%);
}

.about-style-three .content-box .inner-box .left-content h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}

.about-style-three .content-box .inner-box .left-content p{
  margin-bottom: 16px;
}

.about-style-three .content-box .inner-box .left-content .list-item{
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.about-style-three .content-box .inner-box .left-content .list-item li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
      color: #000;
}

.about-style-three .content-box .inner-box .left-content .list-item li:last-child{
  margin-bottom: 0px;
}

.about-style-three .content-box{
  margin-top: -10px;
}

.about-style-three .content-box .award-box{
  position: relative;
  display: block;
  background-color: #faf5ee;
  padding: 30px 30px 32px 30px;
}

.about-style-three .content-box .award-box h4{
  position: absolute;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #cdc7bf;
  text-transform: uppercase;
  left: -15px;
  top: 25px;
  transform: rotate(-45deg);
}

.about-style-three .content-box .award-box .award-image{
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.about-style-three .content-box .award-box h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #6f6d69;
  margin-bottom: 5px;
}

.about-style-three .content-box .award-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 11px;
}

.about-style-three .content-box .award-box .text{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #6f6d69;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 40px;
}

.about-style-three .content-box .award-box .text::before{
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 30px;
  height: 1px;
  left: 0px;
  top: 10px;
}

.about-style-three .content-box .award-box::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100px;
  height: 100px;
  left: 0px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.about-style-three .content-box .award-box::after{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100px;
  height: 100px;
  right: 0px;
  bottom: 0px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.history-section{
position: relative;
    padding: 80px 0px;
    background: #f5f1ee;
}

.history-section .tabs-content{
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.history-section .tabs-inner{
  position: relative;
  display: block;
  background-color: #fff;
}

.history-section .tabs-inner .image-box{
  position: relative;
  display: block;
  margin-right: -15px;
}

.history-section .tabs-inner .image-box img{
  width: 100%;
}

.history-section .tabs-inner .content-box{
  position: relative;
  display: block;
  padding: 45px 30px 44px 35px;
}

.history-section .tabs-inner .content-box .title-text h2{
  font-size: 30px;
  line-height: 38px;
}

.history-section .tabs-inner .content-box .title-text{
  position: relative;
  display: block;
  padding-bottom: 22px;
  margin-bottom: 35px;
}

.history-section .tabs-inner .content-box .title-text .title-shape{
  position: absolute;
  background-color: var(--theme-color);
  width: 70px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.history-section .tabs-inner .content-box .title-text .title-shape::before,
.history-section .tabs-inner .content-box .title-text .title-shape::after{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  top: -10px;
}

.history-section .tabs-inner .content-box .title-text .title-shape::before{
  left: 0px;
}

.history-section .tabs-inner .content-box .title-text .title-shape::after{
  right: 0px;
}

.history-section .tabs-inner .content-box p{
  margin-bottom: 17px;
}

.history-section .tabs-inner .content-box h5{
  font-size: 18px;
  line-height: 26px;
}

.history-section .tab-btn-box{
  position: relative;
  display: block;
  padding-top: 24px;
  margin-top: 80px;
  border-top: 4px solid #cdd5dd;
}

.history-section .tab-btn-box::before,
.history-section .tab-btn-box::after{
  position: absolute;
  content: '';
  background-color: #cdd5dd;
  width: 100%;
  height: 1px;
  left: 0px;
}

.history-section .tab-btn-box::before{
  top: -10px;
}

.history-section .tab-btn-box::after{
  top: 5px;
}

.history-section .tab-btn-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
}

.history-section .tab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #66696b;
  cursor: pointer;
  transition: all 500ms ease;
}

.history-section .tab-btn-box .tab-btns li.active-btn{
  color: #0d202f;
}

.history-section .tab-btn-box .tab-btns li:before{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 30px;
  left: 50%;
  transform: translateY(-50%);
  top: -33px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.history-section .tab-btn-box .tab-btns li:after{
  position: absolute;
  content: '';
  border: 2px solid var(--theme-color);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  left: 50%;
  top: -59px;
  margin-left: -5px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.history-section .tab-btn-box .tab-btns li.active-btn::before,
.history-section .tab-btn-box .tab-btns li.active-btn::after{
  opacity: 1;
}
.about-section{
  position: relative;
  padding: 80px 0;
}

.about-section .content-box{
  position: relative;
  display: block;
}

.about-section .content-box .sec-title h2{
  max-width: 500px;
}

.about-section .content-box .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-section .content-box .inner-box .single-team{
  position: relative;
  display: block;
  width: 250px;
  min-width: 250px;
  background-color: var(--theme-color);
  padding: 25px 15px 15px 30px;
  overflow: hidden;
}

.about-section .content-box .inner-box .single-team h3{
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 161px;
}

.about-section .content-box .inner-box .single-team .image-box{
  position: absolute;
  left: 0px;
  bottom:-24px;
}

.about-section .content-box .inner-box .single-team .link a{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #fff;
  text-align: center;
  font-size: 22px;
  color: #332d4f;
  z-index: 2;
}

.about-section .content-box .inner-box .single-team .link a:hover{
  color: var(--theme-color);
}

.about-section .content-box .inner-box .single-team .rotate-text{
  position: absolute;
  top: 0px;
  right: -9px;
  font-size: 48px;
  line-height: 50px;
  font-family: var(--title-font);
  font-weight: 600;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.10);
  text-transform: uppercase;
  transform: rotate(180deg);
}

.about-section .content-box .inner-box .text-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}

.about-section .content-box .inner-box .text-box p{
  margin-bottom: 30px;
}

.about-section .content-box .inner-box .text-box a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
}

.about-section .content-box .inner-box .text-box a:hover{
  color: var(--theme-color);
}

.about-section .content-box .inner-box .text-box a i{
  position: relative;
  display: inline-block;
  top: 2px;
  font-size: 22px;
  color: var(--theme-color);
}

.about-section .inner-content{
  position: relative;
  display: block;
}

.about-section .inner-content .image-box{
  position: relative;
  /*margin-left: 100px;*/
}

.about-section .inner-content .image-box .image{
  position: relative;
  display: block;
}

.about-section .inner-content .image-box .image img{
  max-width: none;
  float: left;
}

.about-section .inner-content .award-box{
  position: absolute;
  left: -100px;
  top: 118px;
  width: 200px;
  background-color: var(--secondary-color);
  text-align: center;
  padding: 30px 20px 22px 20px;
}

.about-section .inner-content .award-box .icon-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-section .inner-content .award-box .icon-list li{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 26px;
  color: #332d4f;
  margin: 0px -5px;
}

.about-section .inner-content .award-box .icon-list li:last-child{
  color: #fff;
  background-color: var(--theme-color);
}

.about-section .inner-content .award-box .icon-list li:first-child{
  z-index: 1;
}

.about-section .inner-content .award-box h5{
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.about-section .inner-content .image-box .image-content{
  position: absolute;
  left: 0px;
  bottom: 118px;
  /*width: 320px;*/
  background-color: #f0f4f8cf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 24px 30px;
  z-index: 2;
}

.about-section .inner-content .image-box .image-content .text-box{
  position: relative;
  display: block;
  min-width: 160px;
  max-width: 160px;
  width: 100%;
}

.about-section .inner-content .image-box .image-content .text-box::before{
  position: absolute;
  content: '';
  background-color: #dbdfe3;
  width: 1px;
  height: 97px;
  right: 0px;
  top: 13px;
}

.about-section .inner-content .image-box .image-content .text-box h2{
  display: block;
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 2px;
}

.about-section .inner-content .image-box .image-content .text-box h2 span{
  font-size: 30px;
}

.about-section .inner-content .image-box .image-content .text-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #66696b;
}

.about-section .inner-content .image-box .image-content .video-box{
  position: relative;
  display: block;
  padding-left: 53px;
}

.about-section .inner-content .image-box .image-content .video-box h5{
  position: absolute;
  left: 13px;
  top: 23px;
  font-size: 18px;
  line-height: 26px;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  transform: rotate(180deg);
}

.about-section .inner-content .image-box .image-content .video-box a{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 60px;
  background-color: #e2e7ed;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--title-color);
}

.about-section .inner-content .image-box .image-content .video-box a:hover{
  color: #fff;
  background-color: var(--theme-color);
}

.about-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 573px;
  height: 1217px;
  background-repeat: no-repeat;
}

.pricing-section.alternat-3{
  /*background-color: #ead3c2;*/
}

.pricing-section.alternat-3 .tabs-box .tab-btns li{
  background-color: #f0f0f0;
}

.pricing-section{
  position: relative;
  background-color: #f5f4f9;
  padding: 60px 0
}

.pricing-section .inner-container{
  position: relative;
  padding: 49px;
  border: 1px solid #dddbe4;
  background: #fff;
}

.pricing-section .tabs-box{
  position: relative;
}

.pricing-section .tabs-box .tab-btns{
  /*position: absolute;*/
  left: 0px;
  top: 0px;
  /*display: flex;*/
  align-items: center;
  gap: 10px;
}

.pricing-section .title-box{
  position: relative;
  display: block;
  padding: 111px 0px 0px 0px;
}

.pricing-section .tabs-box .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  background-color: #eae8f0;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b6a6f;
  padding: 43px 27px 13px 27px;
  cursor: pointer;
  z-index: 2;
  transition: all 500ms ease;
}

.pricing-section .tabs-box .tab-btns li.active-btn{
  color: var(--title-color);
}

.pricing-section .tabs-box .tab-btns li:before{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #ccc9d4;
  border-radius: 50%;
  left: 50%;
  margin-left: -10px;
  top: 20px;
}

.pricing-section .tabs-box .tab-btns li.active-btn:before{
  border-color: var(--theme-color);
}

.pricing-section .tabs-box .tab-btns li:after{
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--theme-color);
  border-radius: 50%;
  left: 50%;
  margin-left: -5px;
  top: 25px;
  opacity: 0;
}

.pricing-section .tabs-box .tab-btns li.active-btn:after{
  opacity: 1;
}

.pricing-section .title-box .title-text{
  position: relative;
  display: block;
  padding-bottom: 22px;
  margin-bottom: 35px;
}

.pricing-section .title-box .title-text .title-shape{
  position: absolute;
  background-color: var(--theme-color);
  width: 70px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.pricing-section .title-box .title-text .title-shape::before,
.pricing-section .title-box .title-text .title-shape::after{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  top: -10px;
}

.pricing-section .title-box .title-text .title-shape::before{
  left: 0px;
}

.pricing-section .title-box .title-text .title-shape::after{
  right: 0px;
}

.pricing-section .title-box .title-text h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
}

.pricing-section .title-box p{
  margin-bottom: 33px;
}

.pricing-section .title-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  border: 1px solid var(--theme-color);
  padding: 18px 30px;
  text-align: center;
  margin-bottom: 10px;
}

.pricing-section .title-box .theme-btn{
  width: 100%;
  margin-bottom: 22px;
}

.pricing-section .title-box .link-text a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 24px;
  font-family: var(--text-font);
  color: var(--title-color);
  border-bottom: 1px dashed var(--theme-color);
}

.pricing-section .title-box .link-text a:hover{
  color: var(--theme-color);
}

.pricing-section .title-box{
  padding-right: 35px;
}

.pricing-section .feature-box{
  position: relative;
  display: block;
  padding-left: 12px;
  margin-top: -7px;
}

.pricing-section .feature-box::before{
  position: absolute;
  content: '';
  background-color: #dddbe4;
  width: 1px;
  height: calc(100% - 8px);
  left: -15px;
  top: 7px;
}
.pricing-section .feature-box1::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 1px;
  height: calc(100% - 8px);
  left: -15px;
  top: 7px;
}
.pricing-section .feature-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px;
}

.pricing-section .feature-box .dimensions-list li{
  position: relative;
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  padding: 12px 0px;
  border-bottom: 1px solid #dddbe4;
  color: #000;
}

.pricing-section .feature-box .dimensions-list li:last-child{
  border-bottom: none;
}

.pricing-section .feature-box .dimensions-list li p{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-section .feature-box .dimensions-list li p i{
  position: relative;
  display: inline-block;
  top: 2px;
  color: var(--theme-color);
}

.pricing-section .feature-box .dimensions-list{
  margin-bottom: 7px;
}

.pricing-section .feature-box .feature-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0px;
  border-bottom: 1px solid #dddbe4;
  color: #000;
}

.pricing-section .feature-box .feature-list li:last-child{
  border-bottom: none;
  padding-bottom: 0px;
}

.pricing-section .feature-box .feature-list li i{
  color: var(--theme-color);
}

.pricing-section .inner-box{
  position: relative;
  display: block;
  background-color: #5c0c09;
  margin-left: 20px;
  padding: 32px 40px 40px 40px;
}

.pricing-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 32px;
}

.pricing-section .inner-box h2 span{
  font-weight: 300;
}

.pricing-section .inner-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.pricing-section .inner-box .icon-box::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: calc(50% - 45px);
  height: 1px;
  left: 0px;
  top: 25px;
}

.pricing-section .inner-box .icon-box::after{
  position: absolute;
  content: '';
  background-color: #fff;
  width: calc(50% - 45px);
  height: 1px;
  right: 0px;
  top: 25px;
}

.pricing-section .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: #e7843b;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.pricing-section .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 7px;
}

.pricing-section .inner-box h4 a{
  display: inline-block;
  color: #fff;
}

.pricing-section .inner-box h4 a:hover,
.pricing-section .inner-box p a:hover{
  color: var(--theme-color);
}

.pricing-section .inner-box p a{
  display: inline-block;
  font-family: var(--text-font);
  color: #fff !important;
  margin-bottom: 32px;
}

.pricing-section .inner-box .theme-btn{
  border: 1px solid #ffffff;
  background-color: transparent;
  padding: 15px 28px;
  width: 100%;
}

.pricing-section .inner-box .theme-btn:hover{
  border-color: var(--theme-color);
}

.features-section{
position: relative;
    background-color: #fff;
    /* padding-top: 112px; */
    padding: 80px 0 0;
}

.features-section .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.features-section .title-box .rotate-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.50);
}

.features-section .title-box .rotate-text .video-btn a{
  position: relative;
  display: inline-block;
  font-size: 30px;
  top: 3px;
  color: #fff;
  z-index: 1;
}

.features-section .title-box .rotate-text .video-btn a:hover{
  color: var(--theme-color);
}

.features-section .title-box .rotate-text .curved-circle{
  position: absolute;
  left: 60px;
  top: 5px;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.features-section::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100%;
  height: 205px;
  left: 0px;
  bottom: 0px;
}

.features-section .bg-layer{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 505px);
  left: 0px;
  top: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
      background-position: center;
    background-color: #0e0c0b9e;
    background-blend-mode: overlay
}

.features-section .inner-container{
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    --s: 9px;
    /* --w: 360px; */
    width: round(var(--w), 2 * var(--s));
    /* aspect-ratio: 1; */
    /* padding: calc(var(--s) / 2); */
    border: var(--s) solid #0000;
    box-sizing: border-box;
    /* background: #CF4647; */
    mask: conic-gradient(#000 0 0) padding-box, radial-gradient(50% 50%, #0000 100%, #000 calc(100% + 1px)) var(--s) var(--s) / calc(2 * var(--s)) calc(2 * var(--s));

}

.features-section .inner-container .left-content{
  position: relative;
  /*padding: 52px 0px 54px 30px;*/
}
.features-section .inner-container .left-content {

     /*padding:0px 30px;*/
}
.features-section .inner-container .left-content .title-box{
  position: relative;
  display: block;
  padding-bottom: 21px;
  margin-bottom: 27px;
}
.g-0{
  --bs-gutter-x:0; --bs-gutter-y:0;
}
.features-section .inner-container .left-content .title-box .title-shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 70px;
  height: 1px;
  background-color: var(--theme-color);
}

.features-section .inner-container .left-content .title-box .title-shape::before,
.features-section .inner-container .left-content .title-box .title-shape::after{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  bottom: -10px;
}

.features-section .inner-container .left-content .title-box .title-shape::before{
  left: 0px;
}

.features-section .inner-container .left-content .title-box .title-shape::after{
  right: 0px;
}

.features-section .inner-container .left-content .title-box h3{
  font-size: 30px;
  line-height: 38px;
}

.features-section .inner-container .left-content p{
  margin-bottom: 27px;
}
.service-details-content .content-three .single-item .icon-box {
    position: relative;
    display: inline-block;
    width: 60px;
    min-width: 60px;
    height: 70px;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    color: var(--theme-color);
    z-index: 1;
    transition: all 500ms ease;
}.service-details-content .content-three .single-item .icon-box .icon-shape .shape-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    transition: all 500ms ease;
}.service-details-content .content-three .single-item .title-text {
    position: relative;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 24px;
}.service-details-content .content-three .single-item .title-text .title-shape {
    position: absolute;
    background-color: var(--theme-color);
    width: 70px;
    height: 1px;
    left: 0px;
    bottom: 0px;
}.service-details-content .content-three .single-item .title-text .title-shape::before {
    left: 0px;
}

.service-details-content .content-three .single-item .title-text .title-shape::before, .service-details-content .content-three .single-item .title-text .title-shape::after {
    position: absolute;
    content: '';
    background-color: var(--theme-color);
    width: 1px;
    height: 20px;
    top: -10px;
}.service-details-content .content-three .single-item .title-text .title-shape::after {
    right: 0px;
}

.service-details-content .content-three .single-item .title-text .title-shape::before, .service-details-content .content-three .single-item .title-text .title-shape::after {
    position: absolute;
    content: '';
    background-color: var(--theme-color);
    width: 1px;
    height: 20px;
    top: -10px;
}.service-details-content .content-three .single-item .title-text h3 {
    font-size: 24px;
    line-height: 32px;
}.service-details-content .content-three .single-item {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 22px;
        padding-bottom: 30px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px 0px;
    padding: 50px;
}
 .list-item li{
  position: relative;
  display: block;
  padding-left: 32px;
  margin-bottom: 17px;
      color: #000;
}
 .list-item li:last-child{
  margin-bottom: 0px;
}
 .list-item li i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 18px;
  color: var(--theme-color);
}
 .list-item li span{
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}

.mg-box {
    width: 100%;
    /*max-width: 31%;*/
    position: relative;
    border-radius: 30px;
    box-shadow: rgb(50 50 93 / 26%) 0px 20px 40px -10px, rgb(0 0 0 / 44%) 0px 10px 20px -10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
      margin-bottom: 20px;
          background: #fff;
    padding: 10px;
}
.mg-box:hover {
     transform: translateY(-6px);
    box-shadow: rgba(50, 50, 93, 0.18) 0px 25px 50px -20px, rgba(0, 0, 0, 0.12) 0px 15px 25px -15px;
        background: #fff;
    padding: 10px;
}

        a.fancybox-buttons {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #000000d4;
            display: flex;
            border-radius: 30px;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 30px;
            opacity: 0;
                top: 0;
    left: 0;
        }

        .mg-box .fancy-box:hover a.fancybox-buttons {
            opacity: 1;
            transition: 0.8s ease-in-out;
        }
.mg-box .fancy-box img{
            border-radius: 30px;
    height: 287px;
    object-fit: cover;

        }
        a.fancybox-buttons:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            border: 3px solid #35fd1a1c;
            max-width: calc(100% - 75%);
            max-height: calc(100% - 75%);
        }

        .mg-box .fancy-box:hover a.fancybox-buttons:before {
            border: 3px solid #fff;
            max-width: calc(100% - 30px);
            max-height: calc(100% - 30px);
            transition: 2s;
        }
        .products-section{
  position: relative;
  padding: 112px 0px;
}

.product-block-one {
  position: relative;
  display: block;
  background-color: #f3f5f9;
  padding: 42px 40px 50px 40px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
  height: 100%;
}

.product-block-one .inner-box::before{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: -1;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(.9) translateY(20px);
  -ms-transform: scale(.9) translateY(20px);
  transform: scale(.9) translateY(20px);
  transition: all .5s cubic-bezier(.25,.8,.25,1);
}

.product-block-one .inner-box:hover:before{
  opacity: 1;
  -webkit-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
}

.product-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover h3{
  color: #fff;
}

.product-block-one .inner-box h3::before{
  position: absolute;
  content: '';
  background-color: #ced2da;
  width: 100%;
  height: 4px;
  left: 0px;
  bottom: 6px;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover h3::before{
  background-color: #fff;
}

.product-block-one .inner-box h3::after{
  position: absolute;
  content: '';
  background-color: #ced2da;
  width: 70px;
  height: 1px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover h3::after{
  width: 100%;
  background-color: #fff;
}

.product-block-one .inner-box p{
  margin-bottom: 35px;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover p{
  color: #e2ebfd;
}

.product-block-one .inner-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: all 500ms ease;
}

.product-block-one .inner-box h6 button{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--theme-color);
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover h6 button{
  border-color: #fff;
  color: #fff;
}

.product-block-one .inner-box:hover h6{
  color: #fff;
}

.product-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 88px;
  background-color: var(--theme-color);
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border: 1px solid var(--theme-color);
  transition: all 500ms ease;
      position: absolute;
    bottom: 20px;
}

.product-block-one .inner-box:hover .icon-box{
  border-color: #fff;
}

.product-block-one .inner-box .btn-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.product-block-one .inner-box .btn-box a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  background-color: #fff;
  padding: 14px 30px;
}

.product-block-one .inner-box .btn-box a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--title-color);
  top: 3px;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover .btn-box a i{
  color: var(--theme-color);
}

.product-block-one .inner-box .btn-box a span{
  position: relative;
  transform: scaleX(0);
  transform-origin: left center;
  display: none;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover .btn-box a span{
  transform: scaleX(1);
  display: block;
}

.product-block-one .inner-box .light-icon{
  position: absolute;
  right: -2px;
  bottom: -2px;
  transition: all 500ms ease;
}

.product-block-one .inner-box:hover .light-icon{
  opacity: 0;
}

.products-section .link-box{
  padding-top: 22px;
}
.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(1) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}.working-section.alternat-2 .left-content .inner-box .single-box{
  background-color: #3d3b37;
}

.working-section.alternat-2 .left-content .inner-box h2{
  background-image: url(../images/icons/text-bg-2.png);
}

.working-section.alternat-2 .line-shape .line-1,
.working-section.alternat-2 .line-shape .line-2{
  background-color: #42403c;
}

.working-section.alternat-2 .right-content .content-box .rotate-text{
  -webkit-text-stroke-color: #46443f;
}

.working-section.alternat-2 .right-content .tab-btns li{
  background-color: #42403c;
  color: #afa9a1;
}

.working-section.alternat-2 .right-content .tab-btns li.active-btn{
  color: var(--title-color);
  background-color: #feb251;
}

.working-section.alternat-2 .right-content .content-box h6,
.working-section.alternat-2 .right-content .content-box p{
  color: #afa9a1;
}
.working-section .right-content {
    position: relative;
}
.pl_100 {
    padding-left: 30px;
}
.pb_10 {
    padding-bottom: 10px;
}
.pt_13 {
    padding-top: 13px;
}
.working-section{
  position: relative;
  padding: 80px 0px;
  background-color: #f5f5f5;
}

.working-section .left-content{
  position: relative;
  display: block;
}

.working-section .left-content .inner-box{
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-right: 40px;
}

.working-section .left-content .inner-box h4{
  position: absolute;
  left: -6px;
  top: 5px;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.working-section .left-content .inner-box h2{
  font-size: 400px;
  line-height: 240px;
  font-weight: 400;
  background-image: url(../images/icons/text-bg.png);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

.working-section .left-content .inner-box .single-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #243d53;
  border-radius: 50%;
  text-align: center;
  padding: 0px 20px;
  margin-left: -40px;
}

.working-section .left-content .inner-box .single-box a{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  margin-bottom: 6px;
}

.working-section .left-content .inner-box .single-box a:hover{
  color: #fff;
}

.working-section .left-content .inner-box .single-box h5{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.working-section .line-shape .line-1{
  position: absolute;
  left: 50%;
  top: 0px;
  width: 1px;
  height: 100%;
  background-color: #324c62;
  margin-left: -35px;
}

.working-section .line-shape .line-2{
  position: absolute;
  left: 50%;
  top: 0px;
  width: 1px;
  height: 100%;
  background-color: #324c62;
  margin-left: 35px;
}

.working-section .right-content{
  position: relative;
}

.working-section .right-content .tab-btns{
  position: absolute;
  left: -50px;
  top: 20px;
  height: 100%;
  z-index: 2;
}

.working-section .right-content .tab-btns li{
 /* position: absolute;
  display: inline-block;*/
  width: 70px;
     height: 70px;
    line-height: 70px;
  text-align: center;
  font-size: 20px;
  font-family: var(--title-font);
  color: #a5aaaf;
  background-color: #324c62;
  left: 0px;
  cursor: pointer;
  clip-path: polygon(0% 30%, 100% 0%, 100% 70%, 0% 100%, 0% 0%);
  transition: all 500ms ease;
}

.working-section .right-content .tab-btns li.active-btn{
  color: #fff;
  background-color: var(--theme-color);
}

.working-section .right-content .tab-btns li:first-child{
  top: 0px;
}

.working-section .right-content .tab-btns li:last-child{
  bottom: 0px;
}

.working-section .right-content .content-box{
  position: relative;
  display: block;
}

.working-section .right-content .content-box .rotate-text{
  position: absolute;
  left: -140px;
  top: 0px;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 48px;
  line-height: 50px;
  font-family: var(--title-font);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #324c62;
  text-transform: uppercase;
  transform: rotate(180deg);
}

.working-section .right-content .content-box h2{
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #000;
  margin-bottom: 8px;
}

.working-section .right-content .content-box h6{
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #a5aaaf;
  text-transform: uppercase;
}

.working-section .right-content .content-box .image-box{
  position: relative;
  display: block;
  margin-bottom: 32px;
  margin-top: 32px;
}

.working-section .right-content .content-box .image-box img{
  width: 100%;
}

.working-section .right-content .content-box h3{
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 18px;
}

.working-section .right-content .content-box p{
  color: #a5aaaf;
  margin-bottom: 32px;
}

.working-section .pattern-layer{
  position: absolute;
  left: 60px;
  bottom: 60px;
  width: 574px;
  height: 827px;
  background-repeat: no-repeat;
}
.tabs-content {
    padding: 12px;
}.inspection-list {
  max-width: 800px;
}

.inspection-item {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.inspection-item .badge {
background: #ffb45a;
    color: #000;
    font-weight: 700;
    padding: 17px 22px;
    margin-right: 25px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    min-width: 70px;
    text-align: center;
    font-family: var(--title-font);
    font-size: 20px;
}

.inspection-item p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000;
    font-family: var(--title-font);
}
/** contact-style-two **/

.contact-style-two{
  position: relative;
  padding: 80px 0px 0px 0px;
}

.contact-style-two .tab-btn-box{
  position: relative;
  display: block;
  padding-right: 150px;
  margin-bottom: 42px;
}

.contact-style-two .tab-btn-box .text{
  position: absolute;
  top: 16px;
  right: 0px;
  display: block;
  font-size: 17px;
  color: #a5aaaf;
}

.contact-style-two .tab-btn-box .owl-nav{
  position: absolute;
  top: 15px;
  right: -35px;
}

.contact-style-two .tab-btn-box .tab-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.contact-style-two .tab-btn-box .tab-btn::before{
  position: absolute;
  content: '';
  background-color: #e4e9ec;
  width: 1px;
  height: 50px;
  top: 5px;
  left: -30px;
}

.contact-style-two .tab-btn-box .tab-btn .image-box{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  min-width: 50px;
}

.contact-style-two .tab-btn-box .tab-btn .image-box img{
  width: 100%;
  border-radius: 50%;
}

.contact-style-two .tab-btn-box .tab-btn.active-btn .image-box,
.contact-style-two .tab-btn-box .tab-btn.active-btn .image-box img{
  border-radius: 0%;
}

.contact-style-two .tab-btn-box .tab-btn h3{
  font-size: 24px;
  line-height: 32px;
}

.contact-style-two .tab-btn-box .tab-btn.active-btn h3{
  color: var(--theme-color);
}

.contact-style-two .tab-btn-box .tab-btn span{
  position: relative;
  display: block;
}

.contact-style-two .tab-btn-box .owl-nav button{
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: #a5aaaf;
  cursor: pointer;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.contact-style-two .tab-btn-box .owl-nav button.owl-prev span{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

.contact-style-two .tab-btn-box .owl-nav button:hover{
  color: var(--theme-color);
}

.contact-style-two .tab-btn-box .owl-nav button.owl-next::before{
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: 1px;
  height: 25px;
  left: -5px;
  top: 2px;
}
.info-block {
  display: flex;
}

.info-block-one {
  display: flex;
  width: 100%;
}

.info-block-one .inner-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: auto; /* remove 100% */
}

.info-block-one .inner-box{
  position: relative;
  display: block;
  padding: 23px 20px 30px 20px;
  margin-bottom: 30px;
  background-image: url(../images/shape/shape-24.png)
}

.info-block-one .inner-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.info-block-one .inner-box .title-box{
  position: relative;
  display: block;
  margin-bottom: 22px;
  padding-left: 25px;
}

.info-block-one .inner-box .title-box::before{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 3px;
  height: calc(100% - 14px);
  left: 0px;
  top: 7px;
}

.info-block-one .inner-box .title-box::after{
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 25px;
  left: 6px;
  top: 7px;
}

.info-block-one .inner-box .title-box h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 6px;
}

.info-block-one .inner-box .title-box h6{
  font-size: 15px;
  line-height: 22px;
  color: #66696b;
  text-transform: uppercase;
}

.info-block-one .inner-box .text-box{
  position: relative;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 12px 20px;
}

.info-block-one .inner-box  .text-box p a{
  font-family: var(--text-font);
     color: #000;
}

.info-block-one .inner-box  .text-box p a:hover{
  color: var(--theme-color);
}

.info-block-one .inner-box  .text-box p span{
  color: #a5aaaf;
}
.gallery1 img {
      padding: 0;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    transition: all 0.5s;
    aspect-ratio: 4 / 2;
    object-fit: contain;
}
.projects-section{
  position: relative;
  padding: 80px 0px 80px 0px;
  background-color: #fff;
}
.project-card {
  background: #ffffff;
  /*border: 1px solid #e1e1e1;*/ 
  padding: 20px 20px;
  max-width: 600px;
  margin-bottom: 15px;
 box-shadow: 0 6px 18px rgb(0 0 0 / 25%);
  border-radius: 6px;
  transition: all 0.3s ease;
      text-align: left;
      height: 95%;
          border-radius: 20px 0 10px 0;
          position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.4;
}

.project-info {
  margin-bottom: 2px;
}
.project-card i{
        color: #ececec;
    /*position: absolute;*/
    right: 13px;
    rotate: 0deg;
    top: 12px;
    font-size: 20px;
}
.project-info .label {
     /*display: block;*/
    /*font-size: 13px;*/
    font-weight: 300;
    color: #fff;
    /*text-transform: uppercase;*/
       margin-bottom: 3px;
    border: 1px solid #e7843b;
    padding: 3px 10px;
    border-radius: 50px;
    background: #e7843b;
}

.project-info p {
  font-size: 16px;
  color: #000;
  margin: 0;
      margin-top: 15px;
}
.contact-style-three{
  position: relative;
  padding-bottom: 120px;
}

.contact-style-three .map-inner{
  position: relative;
  height:100%;
}

.contact-style-three .map-inner iframe{
  position: relative;
  width: 100%;
  /*height: 712px;*/
}

.contact-style-three .map-inner .map-content{
  position: absolute;
  left: 50px;
  top: 50px;
  width: 270px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  padding: 22px 20px;
}

.contact-style-three .map-inner .map-content h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 6px;
}

.contact-style-three .map-inner .map-content::before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 25px;
  height: 15px;
  left: 50%;
  margin-left: -12px;
  bottom: -15px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.contact-style-three .content-box{
  position: relative;
  display: block;
  border: 1px solid #e4e9ec;
    padding: 30px 30px;
    background: #f1eae5;
}

.contact-style-three .content-box .form-inner form{
  position: relative;
  margin: 0px 5px;
}

.contact-style-three .content-box .form-inner .single-column{
  padding: 0px 10px;
}

.contact-style-three .content-box .form-inner .form-group{
  position: relative;
  margin-bottom: 20px;
}

.contact-style-three .content-box .form-inner .form-group .icon-box{
  position: absolute;
  left: 19px;
  top: 12px;
  z-index: 1;
}

.contact-style-three .content-box .form-inner .form-group .select-box{
  min-height: 60px;
}

 .form-inner .form-group input[type='text'],
 .form-inner .form-group input[type='email'],
 .form-inner .form-group input[type='tel'],
 .form-inner .form-group textarea,
 .form-inner .form-group .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #ebe9ef;
  font-size: 17px;
  color: #000;
  padding: 10px 20px 10px 50px;
  transition: all 500ms ease;
  background: #fff;
}
 .form-inner .form-group input[type='text'], .faq-section .form-inner .form-group input[type='email'], .faq-section .form-inner .form-group textarea, .faq-section .form-inner .form-group select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border: 1px solid #ebe9ef;
    font-size: 17px;
    color: #000;
    padding: 10px 20px 10px 50px;
    transition: all 500ms ease;
}
.contact-style-three .content-box .form-inner .form-group input:focus,
.contact-style-three .content-box .form-inner .form-group textarea:focus{
  border-color: var(--theme-color);
}

.contact-style-three .content-box .form-inner .form-group textarea{
  height: 107px;
  resize: none;
}

.contact-style-three .content-box .form-inner .form-group .nice-select::before{
  top: 15px;
  right: 20px;
}
/* Customers */
.client-logo-card {
    background: #fff;
    border-radius: 18px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(24, 76, 143, 0.18), 0 4px 10px rgba(24, 76, 143, 0.12);
    transition: all 0.35s ease;
    margin-bottom: 25px;
    overflow: hidden;
    /*border: 10px solid #f5f4f9;*/

}
.client-logo-card img {
    height: auto;
    max-width: 215px;
    object-fit: contain;
    transition: 0.35s ease;
}
@media(min-width: 991px){
.client-logo-card.slide-up{
  margin-top: -30px;
}
}
.client-logo-card:hover {
  transform: translateY(-8px);
  box-shadow:
  0 18px 35px rgba(24, 76, 143, 0.22);
}
@media(max-width: 991px){
.client-logo-card {
  height: auto;
}
}.about-wrapp {
    position: absolute;
      left: 10%;
   margin-top: 40%;
}.discount-wrapp {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: 2;
}.discount-tag {
    display: inline-block;
    min-height: 160px;
    min-width: 160px;
    border-radius: 50%;
    z-index: 1;
    color: var(--title-color);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    animation: spin 10s infinite alternate-reverse;
    color: #000;
    background: #ffffff;
}.discount-tag span {
    --rotate-letter: 14deg;
    min-height: 80px;
    position: absolute;
    min-width: 64px;
    left: 24px;
    top: -2px;
    text-transform: uppercase;
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transform: rotate(var(--rotate-letter));
    -ms-transform: rotate(var(--rotate-letter));
    transform: rotate(var(--rotate-letter));
}.discount-wrapp .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 94px;
    height: 94px;
    line-height: 94px;
    text-align: center;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: var(--title-color);
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
}.video-play-btn {
    position: relative;
    border: 0;
    width: 78px;
    height: 78px;
    line-height: 78px;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    border-radius: 50%;
    background: #5e0a06;
    margin: 0 auto;
    display: inline-block;
    font-size: 25px;
    text-align: center;
    color: #fff !important;
}.video-play-btn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3;
    transition: 0.3;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}.video-play-btn:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3;
    transition: 0.3;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}.jump-reverse {
    -webkit-animation: jumpReverseAni 7s linear infinite;
    animation: jumpReverseAni 7s linear infinite
}

@-webkit-keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

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

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

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

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite
}
.discount-wrapp {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: 2
}

.discount-wrapp .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.discount-wrapp .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 94px;
    height: 94px;
    line-height: 94px;
    text-align: center;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: var(--title-color);
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
        z-index: 9;
}

.discount-wrapp .logo:hover>i {
    background-color: var(--theme-color);
    color: var(--white-color)
}

.discount-wrapp .discount {
    position: absolute;
    left: 20%;
    top: 35%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: var(--theme-color);
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    text-align: center;
    margin-top: -5px;
    margin-bottom: 0
}

.discount-tag {
    display: inline-block;
    min-height: 160px;
    min-width: 160px;
    border-radius: 50%;
    z-index: 1;
    color: var(--title-color);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    animation: spin 10s infinite alternate-reverse;
        color: #000;
    background: #ffffff;
}

.discount-tag span {
    --rotate-letter: 14deg;
    min-height: 80px;
    position: absolute;
    min-width: 64px;
    left: 24px;
    top: -2px;
    text-transform: uppercase;
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transform: rotate(var(--rotate-letter));
    -ms-transform: rotate(var(--rotate-letter));
    transform: rotate(var(--rotate-letter))
}

.discount-tag span.char2 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
    -ms-transform: rotate(calc(var(--rotate-letter) * 2));
    transform: rotate(calc(var(--rotate-letter) * 2))
}

.discount-tag span.char3 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
    -ms-transform: rotate(calc(var(--rotate-letter) * 3));
    transform: rotate(calc(var(--rotate-letter) * 3))
}

.discount-tag span.char4 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
    -ms-transform: rotate(calc(var(--rotate-letter) * 4));
    transform: rotate(calc(var(--rotate-letter) * 4))
}

.discount-tag span.char5 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
    -ms-transform: rotate(calc(var(--rotate-letter) * 5));
    transform: rotate(calc(var(--rotate-letter) * 5))
}

.discount-tag span.char6 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
    -ms-transform: rotate(calc(var(--rotate-letter) * 6));
    transform: rotate(calc(var(--rotate-letter) * 6))
}

.discount-tag span.char7 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
    -ms-transform: rotate(calc(var(--rotate-letter) * 7));
    transform: rotate(calc(var(--rotate-letter) * 7))
}

.discount-tag span.char8 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
    -ms-transform: rotate(calc(var(--rotate-letter) * 8));
    transform: rotate(calc(var(--rotate-letter) * 8))
}

.discount-tag span.char9 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
    -ms-transform: rotate(calc(var(--rotate-letter) * 9));
    transform: rotate(calc(var(--rotate-letter) * 9))
}

.discount-tag span.char10 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
    -ms-transform: rotate(calc(var(--rotate-letter) * 10));
    transform: rotate(calc(var(--rotate-letter) * 10))
}

.discount-tag span.char11 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
    -ms-transform: rotate(calc(var(--rotate-letter) * 11));
    transform: rotate(calc(var(--rotate-letter) * 11))
}

.discount-tag span.char12 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
    -ms-transform: rotate(calc(var(--rotate-letter) * 12));
    transform: rotate(calc(var(--rotate-letter) * 12))
}

.discount-tag span.char13 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
    -ms-transform: rotate(calc(var(--rotate-letter) * 13));
    transform: rotate(calc(var(--rotate-letter) * 13))
}

.discount-tag span.char14 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
    -ms-transform: rotate(calc(var(--rotate-letter) * 14));
    transform: rotate(calc(var(--rotate-letter) * 14))
}

.discount-tag span.char15 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
    -ms-transform: rotate(calc(var(--rotate-letter) * 15));
    transform: rotate(calc(var(--rotate-letter) * 15))
}

.discount-tag span.char16 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
    -ms-transform: rotate(calc(var(--rotate-letter) * 16));
    transform: rotate(calc(var(--rotate-letter) * 16))
}

.discount-tag span.char17 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
    -ms-transform: rotate(calc(var(--rotate-letter) * 17));
    transform: rotate(calc(var(--rotate-letter) * 17))
}

.discount-tag span.char18 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
    -ms-transform: rotate(calc(var(--rotate-letter) * 18));
    transform: rotate(calc(var(--rotate-letter) * 18))
}

.discount-tag span.char19 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
    -ms-transform: rotate(calc(var(--rotate-letter) * 19));
    transform: rotate(calc(var(--rotate-letter) * 19))
}

.discount-tag span.char20 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
    -ms-transform: rotate(calc(var(--rotate-letter) * 20));
    transform: rotate(calc(var(--rotate-letter) * 20))
}

.discount-tag span.char21 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
    -ms-transform: rotate(calc(var(--rotate-letter) * 21));
    transform: rotate(calc(var(--rotate-letter) * 21))
}

.discount-tag span.char22 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
    -ms-transform: rotate(calc(var(--rotate-letter) * 22));
    transform: rotate(calc(var(--rotate-letter) * 22))
}

.discount-tag span.char23 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
    -ms-transform: rotate(calc(var(--rotate-letter) * 23));
    transform: rotate(calc(var(--rotate-letter) * 23))
}

.discount-tag span.char24 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
    -ms-transform: rotate(calc(var(--rotate-letter) * 24));
    transform: rotate(calc(var(--rotate-letter) * 24))
}

.discount-tag span.char25 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
    -ms-transform: rotate(calc(var(--rotate-letter) * 25));
    transform: rotate(calc(var(--rotate-letter) * 25))
}

.discount-tag span.char26 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
    -ms-transform: rotate(calc(var(--rotate-letter) * 26));
    transform: rotate(calc(var(--rotate-letter) * 26))
}

.discount-tag span.char27 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
    -ms-transform: rotate(calc(var(--rotate-letter) * 27));
    transform: rotate(calc(var(--rotate-letter) * 27))
}

.discount-tag span.char28 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
    -ms-transform: rotate(calc(var(--rotate-letter) * 28));
    transform: rotate(calc(var(--rotate-letter) * 28))
}

.discount-tag span.char29 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
    -ms-transform: rotate(calc(var(--rotate-letter) * 29));
    transform: rotate(calc(var(--rotate-letter) * 29))
}

.discount-tag span.char30 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
    -ms-transform: rotate(calc(var(--rotate-letter) * 30));
    transform: rotate(calc(var(--rotate-letter) * 30))
}

.discount-tag span.char31 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
    -ms-transform: rotate(calc(var(--rotate-letter) * 31));
    transform: rotate(calc(var(--rotate-letter) * 31))
}

.discount-tag span.char32 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
    -ms-transform: rotate(calc(var(--rotate-letter) * 32));
    transform: rotate(calc(var(--rotate-letter) * 32))
}

.discount-tag span.char33 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
    -ms-transform: rotate(calc(var(--rotate-letter) * 33));
    transform: rotate(calc(var(--rotate-letter) * 33))
}

.discount-tag span.char34 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 34));
    -ms-transform: rotate(calc(var(--rotate-letter) * 34));
    transform: rotate(calc(var(--rotate-letter) * 34))
}

.discount-tag span.char35 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 35));
    -ms-transform: rotate(calc(var(--rotate-letter) * 35));
    transform: rotate(calc(var(--rotate-letter) * 35))
}

.discount-tag span.char36 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 36));
    -ms-transform: rotate(calc(var(--rotate-letter) * 36));
    transform: rotate(calc(var(--rotate-letter) * 36))
}

.discount-tag span.char37 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 37));
    -ms-transform: rotate(calc(var(--rotate-letter) * 37));
    transform: rotate(calc(var(--rotate-letter) * 37))
}

.discount-tag span.char38 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 38));
    -ms-transform: rotate(calc(var(--rotate-letter) * 38));
    transform: rotate(calc(var(--rotate-letter) * 38))
}

.discount-tag span.char39 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 39));
    -ms-transform: rotate(calc(var(--rotate-letter) * 39));
    transform: rotate(calc(var(--rotate-letter) * 39))
}

.discount-tag span.char40 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 40));
    -ms-transform: rotate(calc(var(--rotate-letter) * 40));
    transform: rotate(calc(var(--rotate-letter) * 40))
}

.discount-tag span.char41 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 41));
    -ms-transform: rotate(calc(var(--rotate-letter) * 41));
    transform: rotate(calc(var(--rotate-letter) * 41))
}

.discount-tag span.char42 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 42));
    -ms-transform: rotate(calc(var(--rotate-letter) * 42));
    transform: rotate(calc(var(--rotate-letter) * 42))
}

.discount-tag span.char43 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 43));
    -ms-transform: rotate(calc(var(--rotate-letter) * 43));
    transform: rotate(calc(var(--rotate-letter) * 43))
}

.discount-tag span.char44 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 44));
    -ms-transform: rotate(calc(var(--rotate-letter) * 44));
    transform: rotate(calc(var(--rotate-letter) * 44))
}

.discount-tag span.char45 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 45));
    -ms-transform: rotate(calc(var(--rotate-letter) * 45));
    transform: rotate(calc(var(--rotate-letter) * 45))
}

.discount-tag span.char46 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 46));
    -ms-transform: rotate(calc(var(--rotate-letter) * 46));
    transform: rotate(calc(var(--rotate-letter) * 46))
}

.discount-tag span.char47 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 47));
    -ms-transform: rotate(calc(var(--rotate-letter) * 47));
    transform: rotate(calc(var(--rotate-letter) * 47))
}

.discount-tag span.char48 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 48));
    -ms-transform: rotate(calc(var(--rotate-letter) * 48));
    transform: rotate(calc(var(--rotate-letter) * 48))
}

.discount-tag span.char49 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 49));
    -ms-transform: rotate(calc(var(--rotate-letter) * 49));
    transform: rotate(calc(var(--rotate-letter) * 49))
}

.discount-tag span.char50 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 50));
    -ms-transform: rotate(calc(var(--rotate-letter) * 50));
    transform: rotate(calc(var(--rotate-letter) * 50))
}
.img-box1 .about-wrapp {
   position: absolute;
           left: 34%;
        top: 30%;

}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
.shape-3{
      bottom: 0%;
    left: 2%;
}
.abt2  img{
 max-height: 329px;
}
.ab23 img{
  max-height: 399px;
}
.video-sec{
      position: relative;
    padding: 0px 30px 75px 30px;
}