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


:root{
  /* --dark:#0a0807; */
  /* --dark:#0F1621; */
  --dark:#181A29;
  --light:#fff;
  /* --blue:#0B384D; */
  --blue:#4E5967;
}


body {
  font-size:17px;
  color:var(--light) !important;
  line-height:27px;
  font-weight:400;
  background:var(--dark) !important;
  font-family: 'Manrope', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

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

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

.container-fluid{
  padding: 0px;
}

.auto-container{
  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;
}


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

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

input,button,select,textarea{
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  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: 'Manrope', sans-serif;
  color: var(--light);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 400;
  color: var(--light);
  margin: 0px;
  transition: all 500ms ease;
}






/* Preloader */

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

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

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

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

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

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  /* font-family: 'Monda', sans-serif; */
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
}

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

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

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

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

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5); 
}

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









.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}

.special_fonts{
  font-family: 'DM Sans', sans-serif;
}


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















/** button **/

.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  /* font-family: 'Monda', sans-serif; */
  text-align: center;
  padding: 10px 15px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn.btn-one{
  background: #fff;
  color: #262625;
}

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

.theme-btn span{
  position: relative;
  padding-right: 40px;
}

/* .theme-btn span:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 6 Solid';
  font-size: 10px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  top: -1px;
  right: 0px;
  transition: all 500ms ease;
} */

.theme-btn.btn-one span:before{
  color: #fff;
  background: #1c1712;
}

.theme-btn.btn-one:hover span:before{
  background: #fff;
}

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

.theme-btn.btn-two span:before{
  background: #fff;
}

.theme-btn.btn-two:hover{
  background: var(--light);
}




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

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

.pagination li{
  position: relative;
  display: inline-block;
  margin-right: 12px;
}

.pagination li:last-child{
  margin: 0px !important;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  height: 56px;
  width: 56px;
  line-height: 56px;
  border: 1px solid #e2e2e2;
  text-align: center;
  color: var(--light);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

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

.pagination li i{
  color: #aaa7a6;
  font-size: 16px;
  transition: all 500ms ease;
}

.pagination li a:hover i{
  color: #fff;
} */




.sec-pad{
  padding: 110px 0px 120px 0px;
}

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



/* scroll top */
.scroll-top {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 16px;
  z-index: 99;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 1s ease;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10) !important;
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top i{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}






/* sec title */
.sec-title{
  position: relative;
  display: block;
  margin-bottom: 49px;
}

.sec-title .sub-title{
  position: relative;
  display: inline-block;
  /* font-size: 14px; */
  font-size: 20px;
  line-height: 24px; 
  /* font-family: 'Monda', cursive; */
  color: var(--light);
  font-weight: 700;
  padding-bottom: 9px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sec-title .sub-title:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  margin: 0px;
}

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

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





/*** 

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

***/


/** main-header **/

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

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

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





















/** header-top **/

.header-top{
  position: relative;
  border-bottom: 1px solid #e2e2e2;
  padding: 0px 50px;
}

.header-top .outer-container{
  position: relative;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}

.header-top .social-links li:last-child{
  margin: 0px;
}

.header-top .social-links li h5{
  display: block;
  font-size: 17px;
  line-height: 28px;
  color: var(--light);
  font-weight: 700;
}

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


.header-top .social-links li:before{
  position: absolute;
  content: '';
  background: #a9a6a5;
  width: 4px;
  height: 4px;
  top: 12px;
  right: -14px;
  border-radius: 50%;
}

.header-top .social-links li:first-child:before,
.header-top .social-links li:last-child:before{
  display: none;
}

.header-top .text h5{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 28px;
  color: var(--light);
  font-weight: 700;
}

.header-top .links-list li{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  margin-right: 25px;
  font-weight: 700;
}

.header-top .links-list li:last-child{
  margin-right: 0px;
}

.header-top .links-list li a{
  position: relative;
  display: inline-block;
  color: var(--light);
}

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

.main-header .menu-left-content{
  position: relative;
  display: flex;
  align-items: center;
  /* padding: 28px 50px 28px 0px; */
  margin-right: 30px;
  border-right: 1px solid #e2e2e2;
}

.main-header .menu-left-content .logo-box{
  position: relative;
  margin-right: 100px;
}


.main-header .menu-left-content .logo-box:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 66px;
  right: -54px;
  top: -4px;
}

/* .main-header .search-box-outer{
  position: relative;
}

.main-header .search-box-outer h5{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 27px;
  color: var(--light);
  font-weight: 700;
  padding-left: 38px;
  cursor: pointer;
  transition: all 500ms ease;
}


.main-header .search-box-outer h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 24px;
} */




.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
  padding: 23px 0px 22px 80px;
  margin-left: 30px;
  border-left: 1px solid #e2e2e2;
}

.main-header .menu-right-content .option-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.main-header .menu-right-content .option-list li:last-child{
  margin: 0px;
}

.main-header .menu-right-content .option-list li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: 1px solid #d6d6d6;
  font-size: 20px;
  color: var(--light);
  text-align: center;
}

.main-header .menu-right-content .option-list li a:hover{
  color: #fff;
}

.main-header .menu-right-content .option-list{
  position: relative;
  margin-right: 100px;
}

.main-header .menu-right-content .option-list:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 66px;
  right: -54px;
  top: 0px;
}

.main-header .menu-right-content .btn-box{
  position: relative;
  padding-left: 60px;
}

.main-header .menu-right-content .btn-box .icon-box{
  position: absolute;
  left: 0px;
  top: -7px;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.main-header .menu-right-content .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
  padding-right: 25px;
}

.main-header .menu-right-content .btn-box a i{
  position: absolute;
  top: 1px;
  right: 0px;
  font-size: 12px;
}

.main-header .menu-right-content .btn-box a:hover{

}



/** main-menu **/

.main-menu{
  float: left;
}

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

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

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  margin: 0px 15px;
  -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:18px;
  line-height:30px;
  padding: 30px 8px;
  font-weight:700;
  /* font-family: 'Monda', sans-serif; */
  opacity:1;
  color: var(--light);
  z-index:1;
  text-transform: capitalize;
  -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 > a:before,
.main-menu .navigation > li > a:after{
  position: absolute;
  opacity: 0;
  transition: all 500ms ease;
}

.main-menu .navigation > li > a:before{
  content: '[';
  left: 0px;
  top: 30px;
}

.main-menu .navigation > li > a:after{
  content: ']';
  right: 0px;
  top: 31px;
}

.main-menu .navigation > li.current > a:before,
.main-menu .navigation > li.current > a:after,
.main-menu .navigation > li > a:hover:before,
.main-menu .navigation > li > a:hover:after{
  opacity: 1;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  /* width:240px; */
  width:260px;
  margin-top: 20px;
  z-index:100;
  /* background: #fff; */
  background: #fff;
  display:none;
  opacity: 0;
  padding: 10px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  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;
  /* height: 400px !important;
  overflow-y: scroll;
  overflow-x: hidden; */
}

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

.main-menu .navigation > li > .megamenu{
  background: #212226;
}

.main-menu .navigation > li > .megamenu a{
  display: inline-block !important;
}

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

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
  padding-right: 0px;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  line-height:24px;
  font-weight:400;
  font-size:17px;
  font-family: 'Manrope', sans-serif;
  color:#1d1d1b;
  text-align: left;
  padding: 12px 0px;
  text-transform: capitalize;
  transition:all 500ms ease;
  border-bottom: 1px solid #e2e2e2;
  -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:last-child a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > a:hover:before{
  opacity: 1;
}

.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
  padding-right: 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{
  
}

.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{
  font-family: 'Font Awesome 6 Free';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  color: #b9b7b6;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:700;
  text-align:center;
  z-index:5;  
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown.current > a:after,
.main-menu .navigation > li > ul > li.dropdown > a:hover:after{

}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 15px;
  margin-left: 10px;
  width:240px;
  z-index:100;
  display:none;
  border-radius: 0px;
  padding: 10px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  background: #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;
}

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

.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%;
  padding: 0px 30px;
  padding-right: 0px;
}

.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;
  line-height:24px;
  font-weight:400;
  font-size:17px;
  font-family: 'Manrope', sans-serif;
  color:#1d1d1b;
  text-align: left;
  padding: 12px 0px;
  border-bottom: 1px solid #e2e2e2;
  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{
  
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 6  free';
  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 > ul > li:hover{
  background-color: var(--dark);
}

.main-menu .navigation > li > ul > li a:hover{
  /* background-color: var(--dark); */
  color: var(--light);
}




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

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

.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;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: var(--light);
  -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:50px 25px;
  text-align:left;  
  width: 60%;
  /* padding-bottom: 100px; */
}

.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: var(--dark);
}

.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(--dark);
  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: 16px;
  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{
  
}

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

.mobile-menu .contact-info {
  position: relative;
  /* padding: 120px 30px 20px 30px; */
  padding: 50px 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{
  
}

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





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





.main-header .outer-box{
  position: relative;
}

.nice-select{
  position: relative;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px;
  color: #d4c0cd;
  padding-right: 21px;
  height: auto;
  line-height: 28px;
}

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

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

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

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



/** banner-section **/

.banner-section{
  position: relative;
}
  
.banner-carousel .slide-item{
  position: relative;
  padding: 101px 0px 120px 0px;
}
  
.banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--dark);
  top: 0px;
  right: 0px;
  opacity: 0.3;
  z-index: 1;
}
  
.banner-carousel .slide-item .image-layer{
  position: absolute;
  left: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 .image-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}
  
.banner-carousel .content-box{
  position: relative;
  width: 100%;
  margin-left: 200px;
  z-index: 5;
}



.banner-carousel .content-box h2{
  position: relative;
  display: block;
  font-size: 100px;
  line-height: 110px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -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-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box h2 span{
  position: relative;
  display: inline-block;
  z-index: 1;
}

.banner-carousel .content-box h2 span:before{
  position: absolute;
  content: '';
  width: 100%;
  left: 0px;
  bottom: 2px;
  z-index: -1;
}

.banner-carousel .content-box p{
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 29px;
  font-weight: 700;
  color: #d6d6d6;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -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 p{
  opacity: 1;
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -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 .btn-box{
  opacity: 1;
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box .theme-btn span:before{
  background: #818387;
}

.banner-carousel .content-box .theme-btn:hover span:before{
  background: #fff;
}

.owl-carousel .owl-nav span{
  font-family: "Font Awesome 6 Free"; 
}

.banner-carousel .owl-nav{
  position: absolute;
  left: 0px;
  right: 0px;
  max-width: 704px;
  width: 100%;
  margin: 0 auto;
  bottom: 50px;
  text-align: right;
}

.banner-carousel .owl-nav button{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}

.banner-carousel .owl-nav button:hover{

}

.banner-carousel .owl-nav button.owl-prev{
  margin-right: 20px;
}

.banner-carousel .owl-dots{
  position: absolute;
  left: 105px;
  top: 50%;
  width: 105px;
  min-height: 40px;
  counter-reset: slides-num;
}

.banner-carousel .owl-dots::after {
  position: absolute;
  right: 0px;
  top: 53px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  /* font-family: 'Monda', sans-serif; */
}

.banner-carousel .owl-dots:before{
  position: absolute;
  content: '';
  right: 41px;
  top: 58px;
  width: 1px;
  height: 18px;
  background: #fff;
  opacity: 0.5;
}

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

.banner-carousel .owl-dots button{
  position: absolute;
  top: 0px;
  left: 0px;
  counter-increment: slides-num;
  font-size: 90px;
  line-height: 80px;
  /* font-family: 'Monda', sans-serif; */
  color: #fff;
}

.banner-carousel .owl-dots button.active:before{
  position: absolute;
  content: counter(slides-num);
}

.banner-carousel .owl-dots button.active:after{
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}

.banner-section .text-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  padding-right: 160px;
  padding-bottom: 12px;
}

.banner-section .text-box h3:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 1px;
  left: 0px;
  bottom: 0px;
  opacity: 0.3;
}

.banner-section .text-box .text-1{
  position: absolute;
  left: 60px;
  bottom: 50px;
  z-index: 2;
}

.banner-section .text-box .text-2{
  position: absolute;
  right: 60px;
  bottom: 50px;
  z-index: 2;
}

.banner-section .line-box .line-1,
.banner-section .line-box .line-2{
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.15;
  z-index: 2;
}

.banner-section .line-box .line-1{
  left: 481px;
}

.banner-section .line-box .line-2{
  right: 513px;
}


/** about-section **/

.about-section{
  position: relative;
  border-bottom: 1px solid #e2e2e2;
  padding: 100px 0px 0px 0px;
}

/* .about-section:before{
  position: absolute;
  content: '';
  background: #f3f1f1;
  background: ;
  width: 50%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-right: 1px solid #e2e2e2;
} */

.about-section .image-box{
  position: relative;
  display: block;
  margin-right: 100px;
}

.about-section .image-box .image{
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.about-section .image-box .image img{
  width: 100%;
}

.about-section .image-box .text{
  position: relative;
  display: block;
  text-align: right;
}

.about-section .image-box .text h5{
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-right: 21px;
}

.about-section .image-box .text h5:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  top: 11px;
  right: 0px;
  border-radius: 50%;
}

.about-section .content-box{
  position: relative;
  display: block;
  margin-left: 100px;
  margin-top: -9px;
}

.about-section .content-box .sec-title{
  margin-bottom: 31px;
}

.about-section .content-box .text{
  position: relative;
  display: block;
  padding-bottom: 43px;
  margin-bottom: 42px;
  /* border-bottom: 1px solid #e2e2e2; */
}

.about-section .content-box .single-box{
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.about-section .content-box .single-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-section .content-box .inner-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 135px;
}

.about-section .content-box .inner-box .curve-text{
  position: absolute;
  left: 58px;
  top: 10px;
}

.about-section .content-box .inner-box .curve-text:before{
  position: absolute;
  content: '';
  /* left: -8px; */
  /* top: -8px; */
  font-size: 24px;
  /* font-family: 'Inter Tight', sans-serif; */
  color: var(--light);
}

.about-section .content-box .inner-box .curve-text .curved-circle{
  font-size: 13px;
  line-height: 23px;
  font-family: 'Inter Tight', sans-serif;
  color: var(--light);
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(175deg) !important;
}

.about-section .content-box .inner-box .curve-text .icon-box{
  position: absolute;
  left: -23px;
  top: 35px;
  font-size: 45px;
}

.about-section .content-box .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.about-section .content-box .inner-box button{
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
  transition: all 500ms ease;
}

.about-section .content-box .inner-box button i{
  position: absolute;
  left: 0px;
  top: -1px;
  font-size: 24px;
}

.about-section .content-box .inner-box button:hover{

}


/** funfact-section **/

.funfact-section{
  position: relative;
  padding: 140px 0px;
}

.funfact-section .big-text{
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 280px;
  line-height: 200px;
  font-weight: 700;
  /* font-family: 'Monda', sans-serif; */
  color: transparent;
  -webkit-text-stroke-width: 1px;
  /* -webkit-text-stroke-color: #e2e2e2; */
  -webkit-text-stroke-color: #3c3c3c;
}

.funfact-section .outer-container{
  padding: 0px 50px;
}

.funfact-block-one .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
}

.funfact-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 96px;
  font-size: 50px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 30px;
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  font-size: 80px;
  line-height: 80px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  color: var(--light);
  margin-right: 30px;
}

.funfact-block-one .inner-box .text h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.bg-color-1{
  /* background: #f3f1f1; */
}


/** service-section **/

.service-section{
  position: relative;
  border-top: 1px solid #dad9d7;
  border-bottom: 1px solid #dad9d7;
}

.service-section .sec-title{
  margin-bottom: 65px;
}

.service-block-one .inner-box{
  position: relative;
  display: block;
  padding: 30px 30px;
}

.service-block-one .inner-box .image-box{
  position: relative;
  display: block;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 57px;
}

.service-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 310px;
  height: 310px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  left: -16px;
  top: -15px;
}

.service-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  border-radius: 50%;
}

.service-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 50%;
}

/* .service-block-one .inner-box .image-box .shape{
  position: absolute;
  left: 30px;
  top: 30px;
  width: 220px;
  height: 220px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
  display: none;
}

.service-block-one .inner-box:hover .image-box .shape{
  transform: scale(0,0);
  display: block;
  
} */

.service-block-one .inner-box .lower-content{
  position: relative;
  /* display: block; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  /* font-size: 24px; */
  font-size: 23px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--light);
}

.service-block-one .inner-box .lower-content h3 a:hover{

}

.service-block-one .inner-box .lower-content p{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-block-one .inner-box .lower-content .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
}

.service-block-one .inner-box .lower-content .btn-box a:hover{

}

.service-block-one .inner-box .lower-content .btn-box a span{
  position: relative;
  padding-left: 55px;
}

.service-block-one .inner-box .lower-content .btn-box a span:before{
  /* position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free"; 
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -8px;
  font-weight: 400;
  transition: all 500ms ease; */

  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* MUST */
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -8px;
  transition: all 500ms ease;
}

.service-block-one .inner-box .lower-content .btn-box a:hover span:before{
  color: #fff;
}

.service-block-one .inner-box .lower-content .big-text{
  /* position: absolute;
  right: 0px;
  bottom: 10px;
  font-size: 180px;
  line-height: 120px;
  /* font-family: 'Monda', sans-serif; 
  color: #eaeaea;
  font-weight: 700;
  text-transform: uppercase; */

  position: absolute;
    left: 50%;
    top: 50%;
    bottom: -94%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 86px;
    /* line-height: 120px; */
    /* font-family: 'Monda', sans-serif; */
    /* color: #eaeaea; */
    color: #130f0d;
    font-weight: 700;
    text-transform: uppercase;
}

.service-section .line-box{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  max-width: 1170px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.service-section .line-box .line{
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #d6d6d6;
}

.service-section .line-box .line-1{
  left: 0px;
}

.service-section .line-box .line-2{
  left: 33.3334%;
}

.service-section .line-box .line-3{
  left: 66.666%;
}

.service-section .line-box .line-4{
  right: 0px;
}


/** clients-section **/

.clients-section{
  position: relative;
  padding: 80px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.clients-section .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-section .clients-logo{
  position: relative;
  display: block;
}

.clients-section .clients-logo img{
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.border-top{
  border-top: 1px solid #e2e2e2 !important;
}

.border-bottom{
  border-bottom: 1px solid #e2e2e2 !important;
}
















/** chooseus-section **/

.chooseus-section{
  position: relative;
}

.chooseus-section .sec-title{
  margin-right: 100px;
  padding: 114px 0px 82px 0px;
  margin-bottom: 0px;
}

.chooseus-section .sec-title h2{
  margin-bottom: 23px;
}

.chooseus-section .sec-title p{
  margin-bottom: 33px;
}

.chooseus-section .right-column{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  border-left: 1px solid #e2e2e2;
}

.chooseus-section .scroll-text{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 35px 0px 35px 40px;
}

.chooseus-section .scroll-text .text-list{
  position: relative;
  display: block;
  width: 100%;
  min-width: 1300px;
  -moz-animation: scroll-left 40s linear infinite;
  -webkit-animation: scroll-left 40s linear infinite;
  animation: scroll-left 40s linear infinite;
}

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

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

.chooseus-section .scroll-text .text-list li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 40px;
  line-height: 50px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e2e2e2;
  margin-right: 70px;
}

.chooseus-section .scroll-text .text-list li:last-child{
  margin: 0px;
}

.chooseus-section .scroll-text .text-list li:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  right: -40px;
  top: 19px;
  border-radius: 50%;
}

.chooseus-section .scroll-text .text-list li:last-child:before{
  display: none;
}

.chooseus-section .content-box .single-item{
  position: relative;
  display: block;
  border-bottom: 1px solid #e2e2e2;
  overflow: hidden;
}

.chooseus-section .content-box .single-item:first-child{
  border-top: 1px solid #e2e2e2;
}

.chooseus-section .content-box .static-content{
  position: relative;
  display: flex;
  align-items: center;
  padding:20px 0px 20px 55px;
}

.chooseus-section .content-box .static-content:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  top: 0px;
  left: 164px;
}

.chooseus-section .content-box .static-content .count-text{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #f3f1f1;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  color: var(--dark);
  margin-right: 105px;
}

.chooseus-section .content-box .text{
  max-width: 380px;
}

.chooseus-section .content-box h3{
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 34px;
  font-weight: 500;
  /* padding-right: 25px; */
  margin-bottom: 8px;
}

/* .chooseus-section .content-box h3:before{
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free"; 
  font-size: 14px;
  font-weight: 400;
  color: #a9a6a5;
  color: var(--dark);
  top: 1px;
  right: 0px;
} */

.chooseus-section .content-box .overlay-content{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 30px 0px 30px 40px;
  background: var(--light);
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.chooseus-section .content-box .single-item:hover .overlay-content{
  top: 0px;
  opacity: 1;
}

.chooseus-section .content-box .overlay-content:before{
  position: absolute;
  content: '';
  background: #4f4d4f;
  width: 1px;
  height: 100%;
  top: 0px;
  left: 164px;
}

.chooseus-section .content-box .overlay-content .icon-box{
  position: relative;
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  font-size: 50px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 90px;
}

.chooseus-section .content-box .overlay-content h3{
  color: var(--dark);
}

.chooseus-section .content-box .overlay-content h3:before{
  transform: rotate(90deg);
}

.chooseus-section .content-box .overlay-content p{
  color: var(--dark);
}

.chooseus-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 960px;
  height: 855px;
  background-repeat: no-repeat;
}





















/** industry-section **/

.industry-section{
  position: relative;
}

.industry-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.industry-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.industry-tab .p-tabs-content {
  position: relative;
  display: block;
}

.industry-tab .p-tab.active-tab .content-inner {
  opacity: 1;
  top: 0px;
  -webkit-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.industry-tab .p-tab .content-inner {
  opacity: 0;
  top: 10px;
}

.industry-tab .industry-tab-btns{
  position: relative;
  width: 100%;
  /* background: #f3f1f1; */
  /* background: #f3f1f1; */
}

.industry-tab .industry-tab-btns:before{
  position: absolute;
  content: '';
  /* background: #d6d6d6; */
  width: 100%;
  height: 1px;
  left: 0px;
  top: 100px;
}

.industry-tab .industry-tab-btns .p-tab-btn{
  position: relative;
  display: inline-block;
  padding: 25px 0px 20px 0px;
  cursor: pointer;
}

.industry-tab .industry-tab-btns .p-tab-btn:before{
  position: absolute;
  content: '';
  width: 10px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  transition: all 500ms ease;
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn:before{
  width: 70px;
}

.industry-tab .industry-tab-btns .p-tab-btn .icon-box{
  position: relative;
  display: block;
  font-size: 50px;
  color: var(--light);
  margin-bottom: 44px;
  transition: all 500ms ease;
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn .icon-box{

}

.industry-tab .industry-tab-btns .p-tab-btn h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #a9a6a5;
  font-weight: 700;
  transition: all 500ms ease;
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn h4{
  /* color: #292729; */
  color: var(--white);
}

.industry-section .content-column{
  position: relative;
  border-right: 1px solid #e2e2e2;
  padding-top: 111px;
  padding-bottom: 120px;
}

.industry-section .content-box{
  position: relative;
  display: block;
  margin-right: 100px;
}

.industry-section .content-box .sec-title{
  margin-bottom: 33px;
}

.list-style-one li{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  /* font-family: 'Monda', sans-serif; */
  color: var(--light);
  font-weight: 700;
  padding-left: 28px;
  margin-bottom: 6px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li:before{
  position: absolute;
  content: "\f111";
  font-family: "Font Awesome 6 Free"; 
  font-size: 14px;
  left: 0px;
  top: 0px;
}

.industry-section .content-box .list-style-one{
  margin-bottom: 24px;
}

.industry-section .content-box p{
  margin-bottom: 37px;
}

.industry-section .content-box .link-box{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.industry-section .content-box .link-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.industry-section .content-box .link-box h6 a{
  position: relative;
  display: inline-block;
  color: var(--light);
}

.industry-section .content-box .link-box h6 a:hover{

}

.industry-section .content-box .email{
  position: relative;
  display: block;
  margin-bottom: 43px;
}

.industry-section .content-box .email a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 34px;
  /* font-family: 'Monda', sans-serif; */
  color: #a9a6a5;
}

.industry-section .content-box .email a:hover{

}

.industry-section .image-box{
  position: relative;
  display: block;
  padding: 120px 0px 120px 100px;
}

.industry-section .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.industry-section .image-box .image img{
  width: 100%;
}

.industry-section .owl-nav span{
  display: none;
}

.industry-section .owl-nav{
  position: absolute;
  left: 36%;
  transform: translateX(-50%);
  bottom: 120px;
}

.industry-section .owl-nav button{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  width: 38px;
  height: 24px;
}

.industry-section .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.industry-section .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.industry-section .owl-nav button.owl-prev:hover:before,
.industry-section .owl-nav button.owl-next:hover:before{
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}


/** video-section **/

.video-section{
  position: relative;
  padding: 141px 0px 140px 0px;
}

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

.video-section .bg-layer:before{
  position: absolute;
  content: '';
  background: var(--dark);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
}

.video-section .sec-title .sub-title{
  color: #fff;
}

.video-section .sec-title h2{
  font-size: 72px;
  line-height: 82px;
}

.video-section .curve-text{
  position: absolute;
  top: 12px;
  right: 0px;
  width: 103px;
  height: 103px;
}

.video-section .curve-text .video-btn{
  position: absolute;
  left: 40px;
  top: 50px;
}

.video-section .curve-text .video-btn a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
}

.video-section .curve-text .video-btn a:hover{

}

.video-section .curve-text .curved-circle-2,
.video-section .curve-text .curved-circle-3{
  position: absolute;
  left: 52px;
  font-size: 12px;
  line-height: 22px;
  /* font-family: 'Monda', sans-serif; */
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.video-section .curve-text .curved-circle-2{
  top: 0px;
}

.video-section .curve-text .curved-circle-3{
  top: 97px;
}

.video-section .sec-title{
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 39px;
}

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

.video-section .lower-box p{
  color: #d6d6d6;
}


/** working-section **/

.working-section{
  position: relative;
  padding-top: 111px;
}

.working-section .outer-container{
  position: relative;
}

.working-section .outer-container .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.working-section .content-box{
  position: relative;
  display: block;
  margin: 80px 65px 80px 0px;
  background: #fff;
  padding: 44px 50px 50px 50px;
  overflow: hidden;
}

.working-section .content-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  /* color: var(--light); */
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.working-section .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  padding-bottom: 23px;
  margin-bottom: 33px;
  color: var(--dark);
}

.working-section .content-box h3:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 50px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.working-section .content-box p{
  margin-bottom: 38px;
  color: var(--dark);
}

.working-section .content-box .btn-box a{
  position: relative;
  display: inline-block;
  color: var(--dark) !important;
}

.working-section .content-box .btn-box a:hover span{

}

.working-section .content-box .btn-box a span{
  position: relative;
  padding-left: 55px;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  /* color: var(--light); */
  color: var(--blue);
  transition: all 500ms ease;
}

.working-section .content-box .btn-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900; 
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -8px;
  transition: all 500ms ease;
}

.working-section .content-box .btn-box a:hover span:before{
  color: #fff;
}

.working-section .tab-btn-box{
  position: relative;
  display: block;
  margin-left: -15px;
}

.working-section .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  width: 20%;
  text-align: center;
  border-right: 1px solid #d6d6d6;
  cursor: pointer;
  min-height: 524px;
  padding: 210px 0px 130px 0px;
  transition: all 500ms ease;
}

.working-section .tab-btns li.active-btn{
  background: var(--light);
}

.working-section .tab-btns li span{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 118px;
  line-height: 118px;
  text-align: center;
  border-bottom: 1px solid #d6d6d6;
  font-size: 24px;
  /* font-family: 'Monda', sans-serif; */
  color: var(--light);
  font-weight: 700;
  transition: all 500ms ease;
}

.working-section .tab-btns li h4{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: var(--light);
  font-weight: 700;
  transform: rotate(90deg);
  width: 100%;
  transition: all 500ms ease;
}

.working-section .tab-btns li.active-btn span{
  color: #fff;
  border-bottom: transparent;
}

.working-section .tab-btns li h4{
  color: #fff;
}

.working-section .tab-btns li.active-btn h4{
  color: var(--dark);
}


/** case-section **/

.case-section{
  position: relative;
  padding-top: 114px;
}

.case-section .outer-container{
  padding: 0px 55px;
}

.case-block-one .inner-box{
  position: relative;
  padding: 52px 0px;
}

.case-block-one .inner-box .upper-content{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.case-block-one .inner-box .upper-content h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-left: 22px;
}

.case-block-one .inner-box .upper-content h5:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

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

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

.case-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.case-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
  filter: blur(4px);
  -webkit-filter: blur(4px);
}

.case-block-one .inner-box .view-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.case-block-one .inner-box .view-btn a{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 110px;
  background: #fff;
  text-align: center;
  font-size: 32px;
  color: #292729;
  border-radius: 50%;
  transform: scale(0,0);
}

.case-block-one .inner-box:hover .view-btn a{
  transform: scale(1,1);
}

.case-block-one .inner-box .view-btn a:hover{
  color: #fff;
}

.case-block-one .inner-box .lower-content{
  padding-top: 22px;
}

.case-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.case-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #292729;
}

.case-block-one .inner-box .lower-content h3 a:hover{

}

.case-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -55px;
}

.case-section .owl-nav span{
  display: none;
}

.case-section .owl-nav{
  position: absolute;
  left: -10px;
  top: -93px;
  right: 0px;
  max-width: 1200px;
  width: 100%;
  text-align: right;
  margin: 0 auto;
}

.case-section .owl-nav button{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  width: 38px;
  height: 24px;
}

.case-section .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.case-section .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.case-section .owl-nav button.owl-prev:hover:before,
.case-section .owl-nav button.owl-next:hover:before{
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

.case-section .owl-dots{
  position: absolute;
  max-width: 1200px;
  width: 100%;
  left: -365px;
  top: -137px;
  right: 0px;
  text-align: right;
  counter-reset: slides-num;
  margin: 0 auto;
}

.case-section .owl-dots::after {
  position: absolute;
  right: 0px;
  top: 53px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 24px;
  color: #a9a6a5;
  font-weight: 700;
  /* font-family: 'Monda', sans-serif; */
}

.case-section .owl-dots:before{
  position: absolute;
  content: '';
  right: 44px;
  top: 58px;
  width: 1px;
  height: 18px;
  background: #e2e2e2;
}

.case-section .owl-dots button span{
  display: none !important;
}

.case-section .owl-dots button{
  position: absolute;
  top: 0px;
  right: 110px;
  counter-increment: slides-num;
  font-size: 90px;
  line-height: 80px;
  /* font-family: 'Monda', sans-serif; */
  color: var(--light);
}

.case-section .owl-dots button.active:before{
  position: absolute;
  content: counter(slides-num);
}

.case-section .owl-dots button.active:after{
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}



/** news-section **/

.news-section{
  position: relative;
}

.news-section .sec-title{
  margin-bottom: 42px;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  padding: 19px;
}

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

.news-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark);
}

.news-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box .image img{
  opacity: 0.9;
  transform: scale(1.05);
  filter: blur(4px);
  -webkit-filter: blur(4px);
}

.news-block-one .inner-box .image-box .category{
  position: absolute;
  left: -20px;
  bottom: 20px;
  z-index: 1;
}

.news-block-one .inner-box .image-box .category a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  /* font-family: 'Monda', sans-serif; */
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 15px;
}

.news-block-one .inner-box .image-box .view-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.news-block-one .inner-box .image-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: #fff;
  transform: scale(0,0);
}

.news-block-one .inner-box:hover .image-box .view-btn a{
  transform: scale(1,1);
}

.news-block-one .inner-box .image-box .view-btn a:hover{

}

.news-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 13px;
}

.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.news-block-one .inner-box .lower-content .post-info:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 20px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
  padding-left: 25px;
  font-size: 18px;
  line-height: 28px;
  /* font-family: 'Monda', sans-serif; */
  color: var(--light);
}

.news-block-one .inner-box .lower-content .post-info li:last-child{
  margin: 0px;
}

.news-block-one .inner-box .lower-content .post-info li a{
  display: inline-block;
  color: var(--light);
}

.news-block-one .inner-box .lower-content .post-info li a:hover{

}

.news-block-one .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 16px;
  color: #a9a6a5;
}

.news-block-one .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #d9d8d6;
  width: 1px;
  height: 14px;
  top: 8px;
  right: -13px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}

.news-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--light);
}

.news-block-one .inner-box .lower-content h3 a:hover{

}

.news-section .upper-box{
  position: relative;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e2e2e2;
}

.news-section .tab-btn-box{
  position: relative;
}

.news-section .tab-btn-box .btn-box{
  position: absolute;
  right: 0px;
  bottom: 1px;
}

.news-section .tab-btn-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
}

.news-section .tab-btn-box .btn-box a:hover{

}

.news-section .tab-btn-box .btn-box a span{
  position: relative;
  padding-left: 35px;
}

.news-section .tab-btn-box .btn-box a span:before{
  /* position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-size: 12px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -1px;
  font-weight: 400;
  transition: all 500ms ease; */


  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: -9px;
  top: -8px;
  transition: all 500ms ease;
}

.news-section .tab-btn-box .btn-box a:hover span:before{
  color: #fff;
}

.news-section .tab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 18px;
  line-height: 28px;
  /* font-family: 'Monda', sans-serif; */
  color: #a9a6a5;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  margin-right: 70px;
  cursor: pointer;
  transition: all 500ms ease;
}

.news-section .tab-btn-box .tab-btns li:last-child{
  margin: 0px;
}

.news-section .tab-btn-box .tab-btns li.active-btn{
  padding-left: 22px;
  color: var(--light);
}

.news-section .tab-btn-box .tab-btns li:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  left: 0px;
  top: 10px;
  border-radius: 50%;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.news-section .tab-btn-box .tab-btns li.active-btn:before{
  transform: scale(1,1);
}


/** main-footer **/

.main-footer{
  position: relative;
  /* background: var(--light); */
}

.main-footer .widget-content.footer-item-scroll{
  /* height: 320px !important;
  overflow-y: scroll;
  overflow-x: hidden; */
}

.main-footer .footer-top{
  position: relative;
  padding: 113px 0px 32px 0px;
  border-bottom: 1px solid #373737;
}

.main-footer .subscribe-form .form-group{
  position: relative;
  display: block;
  margin: 0px;
}

.main-footer .subscribe-form .form-group label{
  position: relative;
  display: block;
  font-size: 17px;
  margin-bottom: 11px;
}

.main-footer .subscribe-form .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  font-size: 24px;
  line-height: 34px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  color: #a9a6a5;
  padding-right: 70px;
  transition: all 500ms ease;
}

.main-footer .subscribe-form .form-group input:focus{
  color: #fff;
}

.main-footer .subscribe-form .form-group button{
  position: absolute;
  right: 0px;
  bottom: 7px;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 66px;
  background: #fff;
  text-align: center;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-footer .subscribe-form .form-group button:hover{
  color: #fff;
}

.main-footer .widget-section{
  position: relative;
  padding: 52px 0px 115px 0px;
}

.main-footer .contact-widget .select-box{
  position: relative;
  padding-left: 53px;
  min-height: 41px;
  border-bottom: 1px solid #373737;
  margin-bottom: 27px;
}

.main-footer .contact-widget .select-box .flag{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.main-footer .contact-widget .select-box .flag:before{
  position: absolute;
  content: '';
  border: 1px solid #fff;
  border-radius: 50%;
  left: 0px;
  top: 4px;
  width: 100%;
  height: 100%;
}

.main-footer .contact-widget .select-box .flag img{
  width: 100%;
  border-radius: 50%;
}

.main-footer .contact-widget .select-box .flag:after{
  position: absolute;
  content: '';
  background: #4f4d4f;
  width: 1px;
  height: 22px;
  top: 4px;
  right: -16px;
}

.main-footer .contact-widget .select-box .nice-select{
  font-size: 17px;
  line-height: 27px;
  color: #a9a6a5;
  text-transform: capitalize;
  width: 100%;
}

.main-footer .contact-widget .select-box .nice-select:after{
  border-bottom: 2px solid #a9a6a5;
  border-right: 2px solid #a9a6a5;
  width: 8px;
  height: 8px;
  right: 6px;
  top: 8px;
  margin: 0px;
}

.main-footer .footer-widget h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
}

.main-footer .contact-widget .info-box .single-item{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .contact-widget .info-box .single-item:last-child{
  margin-bottom: 0px;
}

.main-footer .contact-widget .info-box .single-item h3{
  margin-bottom: 10px;
}

.main-footer .contact-widget{
  position: relative;
  display: block;
  padding-right: 70px;
  margin-top: 5px;
}

.main-footer .contact-widget:before{
  position: absolute;
  content: '';
  background: #373737;
  width: 1px;
  height: calc(100% + 50px);
  top: -57px;
  right: 20px;
}

.main-footer p,
.main-footer a{
  color: #a9a6a5;
}

.main-footer a:hover{
  color: #fff;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 13px;
}

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

.main-footer .post-widget .post{
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 23px;
}

.main-footer .post-widget .post:last-child{
  margin-bottom: 0px;
}

.main-footer .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 6px;
  width: 80px;
  height: 80px;
}

.main-footer .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}

.main-footer .post-widget .post:hover .post-thumb img{
  opacity: 0.2;
}

.main-footer .post-widget .post h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.main-footer .post-widget .post h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

.main-footer .post-widget .post h4 a{
  display: inline-block;
  color: #fff;
}

.main-footer .post-widget .post h4 a:hover{

}

.main-footer .post-widget .post .post-date{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  color: #a9a6a5;
  padding-left: 22px;
}

.main-footer .post-widget .post .post-date i{
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 15px;
}

.footer-bottom{
  position: relative;
  width: 100%;
  background: #141414;
  padding: 24px 0px;
}

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

.footer-bottom .bottom-inner .copyright a{

}

.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 26px;
}

.footer-bottom .footer-nav li:last-child{
  margin: 0px;
}

.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '.';
  font-size: 20px;
  right: -14px;
  color: #4b4b4b;
  bottom: 2px;
}

.footer-bottom .footer-nav li:last-child:before{
  display: none;
}



/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/

/** header-style-two **/



/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .tab-btn-box{
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 30px;
}

.contact-section .tab-btns{
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
}

.contact-section .tab-btns li{
  position: relative;
  display: block;
  float: left;
  width: 25%;
  font-size: 20px;
  line-height: 30px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  color: #a9a6a5;
  padding: 25px 30px 23px 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.contact-section .tab-btns li.active-btn{
  color: var(--light);
}

.contact-section .tab-btns li:after{
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 1px;
  height: 36px;
  top: 21px;
  right: 0px;
}

.contact-section .tab-btns li:last-child:after{
  display: none;
}

.contact-section .tab-btns li:before{
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free"; 
  font-size: 16px;
  top: 24px;
  right: 28px;
  color: #a9a6a5;
  transition: all 500ms ease;
}

.contact-section .tab-btns li.active-btn:before{
  transform: rotate(90deg);
}

.contact-section .outer-container{
  position: relative;
  padding: 0px 30px;
}

.contact-section .google-map{
  position: relative;
  width: 100% !important;
  height: 580px !important;
}

.contact-section .content-inner{
  position: relative;
}

.contact-section .content-inner .image-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc(100% - 570px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-section .content-box{
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  background: var(--light);
  padding: 55px 60px 60px 60px;
}

.contact-section .content-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-section .content-box p{
  color: #a9a6a5;
}

.contact-section .content-box .upper-box{
  position: relative;
  display: block;
  padding-bottom: 22px;
  margin-bottom: 34px;
  border-bottom: 1px solid #373737;
}

.contact-section .content-box .upper-box p{
  font-size: 20px;
  line-height: 30px;
  /* font-family: 'Monda', sans-serif; */
}

.contact-section .content-box p a{
  color: #a9a6a5;
}

.contact-section .content-box p a:hover{

}

.contact-section .content-box .single-item{
  margin-bottom: 27px;
}

.contact-section .content-box .btn-box{
  padding-top: 4px;
}




/*** 

====================================================================
                        Inner-Page
====================================================================

***/

/** page-title **/

.page-title{
  position: relative;
  padding: 186px 0px 193px 0px;
}

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

.page-title .bg-layer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.0) 50%);
  bottom: 0px;
  right: 0px;
}

.page-title h1{
  display: block;
  font-size: 72px;
  line-height: 82px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 9px;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  color: #fff;
  margin-right: 12px;
}

.page-title .bread-crumb li a{
  display: inline-block;
  color: #fff;
}

.page-title .bread-crumb li a:hover{

}

.page-title .bread-crumb li:before{
  position: absolute;
  content: '';
  width: 2px;
  height: 2px;
  right: -10px;
  bottom: 7px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}

.page-title .line-box .line-1,
.page-title .line-box .line-2{
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.15;
  z-index: 2;
}

.page-title .line-box .line-1{
  left: 481px;
}

.page-title .line-box .line-2{
  right: 513px;
}




/** contact-style-two **/


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

.contact-style-two .sec-title{
  margin-bottom: 0px;
  max-width: 440px;
}

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

.contact-style-two .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.contact-style-two .form-inner .form-group input[type='text'],
.contact-style-two .form-inner .form-group input[type='email'],
.contact-style-two .form-inner .form-group textarea,
.contact-style-two .form-inner .form-group .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 62px;
  border: 1px solid #e2e2e2;
  background: #fff;
  font-size: 17px;
  color: var(--light);
  padding: 0px 30px;
  border-radius: 0px;
  transition: all 500ms ease;
}

.contact-style-two .form-inner .form-group .select-box{
  min-height: 62px;
}

.contact-style-two .form-inner .form-group .nice-select{
  line-height: 62px;
  text-transform: capitalize;
}

.contact-style-two .form-inner .form-group .nice-select:after{
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #a9a6a5;
  border-right: 2px solid #a9a6a5;
  right: 33px;
  top: 25px;
}

.contact-style-two .form-inner .form-group textarea{
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.contact-style-two .form-inner .form-group input:focus,
.contact-style-two .form-inner .form-group textarea:focus{

}

.contact-style-two .form-inner .theme-btn{
  width: 100%;
}

.contact-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}





/** contact-info-section **/

.contact-info-section{
  position: relative;
  padding: 120px 0px;
}

.contact-info-section .title-box{
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.contact-info-section .title-box .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 88px;
  background: #f3f1f1;
  font-size: 38px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 30px;
}

.contact-info-section .title-box h2{
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  margin-bottom: 21px;
}

.contact-info-section .title-box h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.contact-info-section .title-box h3 a{
  display: inline-block;
}

.contact-info-section .title-box h3 a:hover{
  text-decoration: underline;
}

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

.info-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 118px;
  text-align: center;
  background: #e2e2e2;
  font-size: 32px;
  color: #a9a6a5;
  margin-bottom: 22px;
  clip-path: polygon(0% 50%, 50% 0%, 150% 100%, 0% 100%, 0% 0%);
  z-index: 1;
  transition: all 500ms ease;
}

.info-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  clip-path: polygon(0% 50%, 50% 0%, 150% 100%, 0% 100%, 0% 0%);
  z-index: -1;
  transition: all 500ms ease;
}

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

.info-block-one .inner-box:hover .icon-box:before{

}

.info-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 53px;
}

.info-block-one .inner-box p{
  display: block;
  margin-bottom: 19px;
}

.info-block-one .inner-box p a{
  display: inline-block;
  color: var(--light);
}

.info-block-one .inner-box p a:hover{

}

.info-block-one .inner-box p span{
  color: var(--light);
}

.info-block-one .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  /* font-family: 'Monda', sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
}

.info-block-one .inner-box .link-box a:hover{

}

.info-block-one .inner-box .link-box a span{
  position: relative;
  transition: all 500ms ease;
}

.info-block-one .inner-box .link-box a:hover span{
  padding-left: 36px;
}

.info-block-one .inner-box .link-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free"; 
  font-size: 12px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -1px;
  opacity: 0;
  transition: all 500ms ease;
}

.info-block-one .inner-box .link-box a:hover span:before{
  opacity: 1;
}

.contact-info-section .info-column{
  border-right: 1px solid #e2e2e2;
}

.contact-info-section .info-column:last-child{
  border: none;
}

.contact-info-section .inner-container{
  position: relative;
}

.contact-info-section .inner-container:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 60%;
  margin-top: -5px;
}








/* fix solida icon */
.floating-social {
  position: fixed;
  right: 15px;
  bottom: 105px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.floating-social a:hover {
  transform: scale(1.1);
}

/* Colors */
.facebook { background: #1877f2; }
.instagram { background: #e1306c; }
.whatsapp { background: #25d366; }
.youtube { background: #ff0000; }
.linkedin { background: #0077b5; }
.call-icon { background: var(--blue);}


/* fix enquiry btn */
.fix-contact-btn{
  width: 120px;
  height: 40px;
  font-weight: bold;
  background-color: var(--blue);
  position: fixed;
  right: -40px !important;
  bottom: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transform: rotate(-90deg);
}
.fix-contact-btn a{
  color: var(--light);
}








 .card-body .card-title{
  /* color: var(--blue); */
  color: var(--dark);
}

.card-body .card-text{
  color: var(--dark);
}



.breadcrumb .breadcrumb-item a {
  color: var(--dark) !important;
  font-weight: bold;
}
.breadcrumb .breadcrumb-item.active {
  color: var(--blue) !important;
  font-weight: bold;
}

.all-category{
  background-color: var(--light) ;
}
.all-category .card .card-body{
  background: var(--dark) !important;
  color: var(--dark);
}

.all-category .card .card-body .card-title{
  /* background: var(--blue); */
  color: var(--light);
  font-weight: 500;
  text-align: center;
}







.special-process-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
  background: #fff;
}

.special-process-card:hover {
  transform: translateY(-5px);
}

.special-process-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.special-process-card .content {
  padding: 25px;
}

.special-process-card .content ul li{
  color: var(--dark);
  list-style: dot;
}

.special-process-card h3 {
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 15px;
}

.special-process-card ul {
  padding-left: 20px;
  margin: 0;
}

.special-process-card ul li {
  margin-bottom: 6px;
}

.service-top-bg p{
/* font-weight: bold; */
color: #000;
}



.all-category.bg-dark{
  background: var(--dark) !important;
}



/* contact us */


.contact-info-section{
  position: relative;
  padding: 120px 0px;
}

.contact-info-section .title-box{
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.contact-info-section .title-box .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 88px;
  background: #f3f1f1;
  font-size: 38px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 30px;
}

.contact-info-section .title-box h2{
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  margin-bottom: 21px;
}

.contact-info-section .title-box h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.contact-info-section .title-box h3 a{
  display: inline-block;
}

.contact-info-section .title-box h3 a:hover{
  text-decoration: underline;
}



.contact-info-section .info-column{
  border-right: 1px solid #e2e2e2;
}

.contact-info-section .info-column:last-child{
  border: none;
}

.contact-info-section .inner-container{
  position: relative;
}

.contact-info-section .inner-container:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 60%;
  margin-top: -5px;
}


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

.info-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 118px;
  text-align: center;
  background: #e2e2e2;
  font-size: 32px;
  color: #a9a6a5;
  margin-bottom: 22px;
  clip-path: polygon(0% 50%, 50% 0%, 150% 100%, 0% 100%, 0% 0%);
  z-index: 1;
  transition: all 500ms ease;
}

.info-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  clip-path: polygon(0% 50%, 50% 0%, 150% 100%, 0% 100%, 0% 0%);
  z-index: -1;
  transition: all 500ms ease;
}

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

.info-block-one .inner-box:hover .icon-box:before{

}

.info-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 53px;
}

.info-block-one .inner-box p{
  display: block;
  margin-bottom: 19px;
}

.info-block-one .inner-box p a{
  display: inline-block;
  color: #827e7d;
}

.info-block-one .inner-box p a:hover{

}

.info-block-one .inner-box p span{
  color: #1c1c1c;
}

.info-block-one .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.info-block-one .inner-box .link-box a:hover{

}

.info-block-one .inner-box .link-box a span{
  position: relative;
  transition: all 500ms ease;
}

.info-block-one .inner-box .link-box a:hover span{
  padding-left: 36px;
}

.info-block-one .inner-box .link-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 12px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -1px;
  opacity: 0;
  transition: all 500ms ease;
}

.info-block-one .inner-box .link-box a:hover span:before{
  opacity: 1;
}








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

.contact-style-two .sec-title{
  margin-bottom: 0px;
  max-width: 440px;
}

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

.contact-style-two .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.contact-style-two .form-inner .form-group input[type='text'],
.contact-style-two .form-inner .form-group input[type='email'],
.contact-style-two .form-inner .form-group textarea,
.contact-style-two .form-inner .form-group .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 62px;
  border: 1px solid #e2e2e2;
  background: #fff;
  font-size: 17px;
  color: #827e7d;
  padding: 0px 30px;
  border-radius: 0px;
  transition: all 500ms ease;
}

.contact-style-two .form-inner .form-group .select-box{
  min-height: 62px;
}

.contact-style-two .form-inner .form-group .nice-select{
  line-height: 62px;
  text-transform: capitalize;
}

.contact-style-two .form-inner .form-group .nice-select:after{
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #a9a6a5;
  border-right: 2px solid #a9a6a5;
  right: 33px;
  top: 25px;
}

.contact-style-two .form-inner .form-group textarea{
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.contact-style-two .form-inner .form-group input:focus,
.contact-style-two .form-inner .form-group textarea:focus{

}

.contact-style-two .form-inner .theme-btn{
  width: 100%;
}

.contact-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

















/** service-details **/

.service-details{
  position: relative;
  padding: 120px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.service-sidebar{
  position: relative;
  display: block;
  margin-right: 20px;
}

.service-sidebar .category-widget{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  padding-left: 30px;
}

.service-sidebar .widget-title{
  position: relative;
  display: block;
  padding: 21px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.service-sidebar .widget-title h3{
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.service-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  padding: 18px 26px 17px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.service-sidebar .category-widget .category-list li:last-child{
  border-bottom: none;
}

.service-sidebar .category-widget .category-list li a{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.service-sidebar .category-widget .category-list li a:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 37px;
  top: -18px;
  right: 39px;
  transition: all 500ms ease;
}

.service-sidebar .category-widget .category-list li a:hover:before,
.service-sidebar .category-widget .category-list li a.current:before{
  width: 38px;
  height: 1px;
  top: 10px;
  right: 13px;
}

.service-sidebar .category-widget .category-list li a:hover,
.service-sidebar .category-widget .category-list li a.current{

}

.service-sidebar .category-widget .category-list li a i{
  position: absolute;
  top: 1px;
  right: 0px;
  font-size: 16px;
  color: #a9a6a5;
  transition: all 500ms ease;
}

.service-sidebar .category-widget .category-list li a:hover i,
.service-sidebar .category-widget .category-list li a.current i{

}

.service-sidebar .category-widget{
  margin-bottom: 50px;
}

.service-sidebar .download-widget{
  margin-bottom: 50px;
}

.service-sidebar .download-widget .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.service-sidebar .download-widget .image-box img{
  width: 100%;
}

.service-sidebar .download-widget .image-box h3{
  position: absolute;
  display: inline-block;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  left: 0px;
  bottom: 0px;
  width: calc(100% - 65px);
  padding: 17px 30px 19px 30px;
}

.service-sidebar .download-widget .download-list{
  position: relative;
  display: block;
  background: #f3f1f1;
  border: 1px solid #e2e2e2;
  padding-left: 30px;
}

.service-sidebar .download-widget .download-list li{
  position: relative;
  display: block;
  padding: 15px 26px 15px 0px;
  border-bottom: 1px solid #d6d6d6;
}

.service-sidebar .download-widget .download-list li:last-child{
  border-bottom: none;
}

.service-sidebar .download-widget .download-list li button{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 500ms ease;
}

.service-sidebar .download-widget .download-list li button:hover{

}

.service-sidebar .download-widget .download-list li button i{
  position: absolute;
  top: 2px;
  right: 0px;
  font-size: 20px;
  color: #afacab;
  transition: all 500ms ease;
}

.service-sidebar .download-widget .download-list li button:hover i{

}

.service-sidebar .contact-widget{
  position: relative;
  display: block;
  background: #1c1c1c;
  padding-left: 30px;
}

.service-sidebar .contact-widget .widget-title{
  border-bottom: 1px solid #373737;
}

.service-sidebar .contact-widget .widget-title h3{
  color: #fff;
}

.service-sidebar .contact-widget .widget-content{
  position: relative;
  display: block;
  padding: 21px 30px 30px 0px;
}

.service-sidebar .contact-widget .customer-support{
  position: relative;
  display: block;
  padding: 0px 0px 0px 120px;
  margin-bottom: 16px;
}

.service-sidebar .contact-widget .customer-support .thumb-box{
  position: absolute;
  left: 0px;
  top: 8px;
  width: 100px;
  height: 100px;
}

.service-sidebar .contact-widget .customer-support .thumb-box img{
  width: 100%;
}

.service-sidebar .contact-widget .customer-support h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 15px;
}

.service-sidebar .contact-widget .customer-support h3:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 4px;
  left: 0px;
  bottom: 0px;
}

.service-sidebar .contact-widget .customer-support .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.service-sidebar .contact-widget .info-box{
  margin-bottom: 23px;
} 

.service-sidebar .contact-widget .info-box li{
  position: relative;
  display: block;
  padding: 0px 0px 0px 38px;
  margin-bottom: 16px;
}

.service-sidebar .contact-widget .info-box li:last-child{
  margin-bottom: 0px;
}

.service-sidebar .contact-widget .info-box li .icon-box{
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 18px;
}

.service-sidebar .contact-widget .info-box li h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
}

.service-sidebar .contact-widget .info-box li p a{
  color: #a9a6a5;
}

.service-sidebar .contact-widget .info-box li p a:hover{
  color: #fff;
}

.service-sidebar .contact-widget .theme-btn{
  width: 100%;
}

.service-details-content{
  position: relative;
  display: block;
}

.service-details-content h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  margin-bottom: 39px;
}

.service-details-content .content-one .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 44px;
}

.service-details-content .content-one .image-box .image{
  position: relative;
  display: block;
}

.service-details-content .content-one .image-box .image img{
  width: 100%;
}

.service-details-content .content-one .owl-nav span{
  display: none;
}

.service-details-content .content-one .owl-nav{
  position: absolute;
  top: 0px;
  right: -24px;
  background: #fff;
  width: 144px;
  height: 74px;
  line-height: 62px;
  text-align: center;
}

.service-details-content .content-one .owl-nav button{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  width: 38px;
  height: 24px;
}

.service-details-content .content-one .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.service-details-content .content-one .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-2.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.service-details-content .content-one .owl-nav button.owl-prev:hover:before,
.service-details-content .content-one .owl-nav button.owl-next:hover:before{
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

.service-details-content .content-one .text h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details-content .content-one{
  margin-bottom: 44px;
}

.service-details-content h3{
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 31px;
}

.service-details-content .service-block-two .inner-box .image-box .image:after{
  display: none;
}

.service-details-content .service-block-two .inner-box .image-box h3{
  margin-bottom: 0px;
}

.service-details-content .content-two .other-service{
  position: relative;
  display: block;
  margin-top: 40px;
}

.service-details-content .content-two .service-list li{
  position: relative;
  display: block;
  float: left;
  width: 50%;
  border-bottom: 1px solid #e2e2e2;
  padding: 18px 0px 20px 30px;
}

.service-details-content .content-two .service-list li:nth-child(2n+1){
  padding-left: 0px;
}

.service-details-content .content-two .service-list li a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Monda', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  padding-left: 42px;
}

.service-details-content .content-two .service-list li a:hover{

}

.service-details-content .content-two .service-list li:first-child,
.service-details-content .content-two .service-list li:nth-child(2){
  border-top: 1px solid #e2e2e2;
}

.service-details-content .content-two .service-list li i{
  position: absolute;
  left: 0px;
  top: 3px;
  width: 26px;
  height: 26px;
  line-height: 28px;
  background: #f3f1f1;
  border: 1px solid #e3e3e3;
  font-size: 12px;
  color: #242424;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.service-details-content .content-two .service-list li a:hover i{
  color: #fff;
}

.service-details-content .content-two .service-list{
  position: relative;
}

.service-details-content .content-two .service-list:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0px;
}

.service-details-content .content-two{
  margin-bottom: 50px;
}

.service-details-content .content-three .upper-box h3{
  margin-bottom: 24px;
}

.service-details-content .content-three .upper-box{
  margin-bottom: 33px;
}

.service-details-content .content-three .tabs-box{
  position: relative;
  display: block;
  padding-left: 350px;
}

.service-details-content .content-three .tabs-box .tab-btn-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 350px;
  overflow: hidden;
  padding-top: 130px;
}

.service-details-content .content-three .tabs-box .tab-btn-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-details-content .content-three .tabs-box .tab-btn-box .bg-layer:before{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.service-details-content .content-three .tab-btns li{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Monda', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  padding: 19px 30px;
  background: #f3f1f1;
  border: 1px solid #e2e2e2;
  cursor: pointer;
  border-bottom: none;
  transition: all 500ms ease;
}

.service-details-content .content-three .tab-btns li:last-child,
.service-details-content .content-three .tab-btns li.active-btn:last-child{
  border-bottom: 1px solid #e2e2e2;
}

.service-details-content .content-three .tab-btns li.active-btn{
  background: transparent;
  color: #fff;
  border: transparent;
}

.service-details-content .content-three .tab-btns li i{
  position: absolute;
  display: inline-block;
  top: 21px;
  right: 30px;
  font-size: 20px;
  color: #aaa7a6;
  font-weight: 400;
  transition: all 500ms ease;
}

.service-details-content .content-three .tab-btns li.active-btn i{
  transform: rotate(-45deg);
}

.service-details-content .content-three .tabs-content .inner-box{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  padding-left: 50px;
  border-left: none;
}

.service-details-content .content-three .tabs-content .inner-box .title-box{
  position: relative;
  display: block;
  padding: 43px 30px 22px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.service-details-content .content-three .tabs-content .inner-box .title-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-details-content .content-three .tabs-content .inner-box .title-box h3{
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0px;
}

.service-details-content .content-three .tabs-content .inner-box .text{
  position: relative;
  display: block;
  padding: 23px 35px 40px 0px;
}






/* second description */
.inch-od-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}

.inch-od-table thead th {
  background: var(--blue);
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #d0d7e2;
}

.inch-od-table tbody td {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #d0d7e2;
  color: var(--blue);
}

.inch-od-table tbody tr:nth-child(even) {
  background-color: #f2f7fc;
}

.inch-od-table tbody tr:hover {
  background-color: #e6f0fb;
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .inch-od-table thead {
    display: none;
  }

  .main-header .menu-left-content .logo-box {
    position: relative;
    margin-right: 100px;
    width: 70%;
}

  .inch-od-table,
  .inch-od-table tbody,
  .inch-od-table tr,
  .inch-od-table td {
    display: block;
    width: 100%;
  }

  .inch-od-table tr {
    margin-bottom: 15px;
    border: 1px solid #d0d7e2;
  }

  .inch-od-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .inch-od-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    width: 45%;
    padding-left: 0;
    font-weight: bold;
    text-align: left;
    color: #2f6fb2;
  }
}













/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  object-fit: cover;
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
 opacity: 1;
 margin: 0;
}

.gallery .gallery-item img {
  transition: 0.5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
  background: rgba(78, 77, 77, 0.308);
}

/* .gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
  background: var(--green) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--light) !important;
} */

/*** Gallery End ***/