 

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

.pdtb{padding:50px 0px 50px 0px!important}
/*** 

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

 ***/


body {
  font-size:17px;
  color:#827e7d;
  line-height:27px;
  font-weight:400;
  background:#ffffff;
  font-family: 'Poppins', 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: 'Poppins', 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: 'Poppins', sans-serif;
  color: #827e7d;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #000;
  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: #0a0807;
  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: 'Poppins', 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); 
}

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

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

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 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: 22px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 19px 30px;
  z-index: 1;
  transition: all 500ms ease;
  border-radius: 5px;
  text-transform: uppercase;
}

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

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

.theme-btn span{
  position: relative;
}

/* .theme-btn span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  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: #1c1c1c;
}




.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;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #1c1c1c;
  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 {
  width: 40px;
  height: 40px;
  line-height: 10px;
  position: fixed;
  bottom: 105%;
  right: 10px;
  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: 80px;
}

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



.sec-title{
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.sec-title .sub-title{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px; 
  font-family: 'Monda', cursive;
  color: #827e7d;
  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: 39px;
  line-height: 58px;
  font-weight: 600;
  margin: 0px;
  color:#052858;
}

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

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

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

/*** Search Popup ***/

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

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

.search-popup .popup-inner{
  width: 100%;
  background: #fff;
  height: 100%;
}

.search-popup .upper-box{
  position: relative;
  padding: 70px 70px;
  z-index: 1;
}

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

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

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

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

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

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 0px;
  background: #ffffff;
  line-height: 30px;
  font-size: 20px;
  color: #808080;
  border: none;
  font-weight: 400;
  border-radius: 0px;
  padding-right: 50px;
  border-bottom: 1px solid #e5e5e5;
}

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

.search-popup .search-form fieldset input[type="search"]:focus{
  border-color: #141417;
}

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

/** 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: #827e7d;
  font-weight: 700;
}

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

.header-top .social-links li a:hover{

}

.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: #827e7d;
  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: #827e7d;
}

.header-top .links-list li a:hover{

}

.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: #1c1c1c;
  font-weight: 700;
  padding-left: 38px;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .search-box-outer h5:hover{

}

.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: #1c1c1c;
  text-align: center;
}

.main-header .menu-right-content .option-list li a:hover{
  color: #fff;
}
.main-header .menu-right-content .option-list li a img{
  max-width: 25px;
}
/* .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: #1c1c1c;
  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 22px;
  -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 4px;
  font-weight:700;
  font-family: 'Monda', sans-serif;
  opacity:1;
  color: #1c1c1c;
  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;
  margin-top: 20px;
  z-index:100;
  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;
}

.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 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 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: #1c1c1c;
  -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;  
  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: #000;
}

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

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #0a0807;
  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;
}

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

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

.special-text{
  font-family: 'Carattere', cursive;
}



/** 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: #000;
  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 .special-text{
  position: relative;
  display: block;
  font-size: 280px;
  line-height: 200px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  min-height: 200px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
  margin-bottom: 93px;
}

.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: 'flaticon';
}

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

.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;
  display:none;
}

.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: 'Poppins', 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: 'Poppins', 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;
  padding: 120px 0px 116px 0px;
}



.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: #1c1c1c;
}

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

.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: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  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: 'Poppins', sans-serif;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e2e2e2;
}

.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: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
  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: #f7faff;
}


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

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

.service-block-one .inner-box .lower-content{
  position: relative;
  display: block;
}

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

.service-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #1c1c1c;
}

.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: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.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: 'flaticon';
  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;
}

.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: 'Poppins', sans-serif;
  color: #eaeaea;
  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{
 
  padding: 80px 0px 55px 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: 'Poppins', 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: 37px 0px 37px 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: #e4ebf9;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
  margin-right: 105px;
}

.chooseus-section .content-box .text{
  max-width: 75%;
    float: left;
    width: auto;
}

.chooseus-section .content-box h3{
  position: relative;
  
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  padding-right: 25px;
  margin-bottom: 0px;
  color:#FFFF;
}

.chooseus-section .content-box h3:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 14px;
  font-weight: 400;
  color: #a9a6a5;
  top: 1px;
  right: 0px;
  display:none;
}

.chooseus-section .content-box .overlay-content{
  position: absolute;
  left: 0px;
  top: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 30px 0px 30px 40px;
  background: #052858;
  z-index: 1;
  opacity: 1;
  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;
  display:none;
}

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

.chooseus-section .content-box .overlay-content h3{
  color: #fff;
}

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

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

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

.industry-tab .industry-tab-btns:before{
  position: absolute;
  content: '';
  
  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;
  box-shadow: 0 4px 10px hsla(0, 0%, 55%, .2);
    border-radius: 15px;
    margin-bottom:10px;
}

.industry-tab .industry-tab-btns .p-tab-btn:before{
  position: absolute;
  content: '';
  width: 10px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  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: #1c1c1c;
  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;
  width: 270px !important;
}

.industry-tab .industry-tab-btns .p-tab-btn.active-btn h4{
  color: #292729;
}

.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: 'Poppins', sans-serif;
  color: #1c1c1c;
  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: 'flaticon';
  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: #1c1c1c;
}

.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: 'Poppins', 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: '';
  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;
}

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

.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: #000;
  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: 'Poppins', 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: 'Poppins', sans-serif;
  color: #827e7d;
  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;
}

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

.working-section .content-box .btn-box a{
  position: relative;
  display: inline-block;
}

.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: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  transition: all 500ms ease;
}

.working-section .content-box .btn-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  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;
}

.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: #1c1c1c;
}

.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: 'Poppins', sans-serif;
  color: #1c1c1c;
  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: #827e7d;
  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.active-btn h4{
  color: #fff;
}


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

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

.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: 'Poppins', 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: 'Poppins', sans-serif;
  color: #1c1c1c;
}

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


/** testimonial-section **/

.testimonial-section{
  position: relative;
  padding: 30px 0px;
}

.testimonial-section .sec-title .theme-btn{
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 5px;
    padding: 10px 25px;
    width: 20%;
    background: #1c1c1c;
}

.testimonial-section .testimonial-content{
  position: relative;
  display: block;
  /* padding-left: 345px; */
  margin-top: 20px;
  margin-bottom: 20px;
}

.testimonial-section .testimonial-content .quote-box{
  position: absolute;
  left: 0px;
  top: -20px;
  width: 270px;
  height: 270px;
  border: 1px solid #d9d8d8;
  line-height: 300px;
  text-align: center;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .quote{
  position: relative;
  display: inline-block;
  font-size: 140px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d8d7d7;
}

.testimonial-section .testimonial-content .thumb-box{
  position: absolute;
  left: 215px;
  top: 65px;
  width: 100px;
  height: 100px;
  background: #e4ebf9;
  border: 1px solid #d8d7d7;
  border-radius: 50%;
  padding: 9px;
}

.testimonial-section .testimonial-content .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

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



.testimonial-section .testimonial-content .inner-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  float: left;
  margin-right: 8px;
}

.testimonial-section .testimonial-content .inner-box .rating li:last-child{
  margin: 0px;
}

.testimonial-section .testimonial-content .inner-box .rating{
  margin-bottom: 13px;
}


.theme-btn.btn-two{width: 35%;}

.testimonial-section .testimonial-content .inner-box p{
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 35px;
  color: #000;
  margin-bottom: 32px;
  padding-bottom: 30px;
  text-align: justify;
}

/* .testimonial-section .testimonial-content .inner-box p:before{
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: calc(100% + 55px);
  height: 1px;
  right: 0px;
  bottom: 0px;
} */

.testimonial-section .testimonial-content .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-section .testimonial-content .inner-box .designation{
  position: relative;
  display: block;
}

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

.testimonial-section .owl-nav{
  position: absolute;
  right: 0px;
  top: -45px;
}

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

.testimonial-section .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/iconn-1.png);
  width: 38px;
  height: 38px;
  left: 0px;
  top: 0px;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 20px;
}
section.about-section12.sec-pad-2.mb-hide{padding-bottom:60px;padding-top:60px}
.testimonial-section .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/iconn-2.png);
  width: 38px;
  height: 38px;
  left: 0px;
  top: 0px;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 20px;
  
}

.testimonial-section .owl-nav button.owl-prev:hover:before,
.testimonial-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%);
}


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

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

}

.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: 'Poppins', 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: 'Poppins', sans-serif;
  color: #827e7d;
}

.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: #827e7d;
}

.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: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #1c1c1c;
}

.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: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.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: 'flaticon';
  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;
}

.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: 'Poppins', 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: #1c1c1c;
}

.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: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.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: 'Poppins', 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 52px 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: #052858;
  font-weight: 700;
  margin-bottom: 30px;
}

/* .links-list li{margin-bottom: 1.944444em;} */

.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: '';
  
  width: 1px;
  height: calc(100% + 173px);
  top: -57px;
  right: 20px;
  border-right: 0.5px solid rgb(31 22 70 / 20%);
}

.main-footer p,
.main-footer a{
  color: #000;
  text-align: justify;
  font-weight: 600;
}

.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: 'Poppins', 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: #fff;
  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 **/

.header-style-two{
  position: relative;
}

.header-upper{
  position: relative;
  width: 100%;
  background: #e4ebf9;
  border-bottom: 1px solid #d6d6d6;
  padding: 20px 0px;
}

.header-upper .left-column{
  position: relative;
  display: flex;
  align-items: center;
}

.header-upper .logo-box{
  position: relative;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #d6d6d6;
}

.header-upper .option-box{
  position: relative;
  padding-left: 36px;
}

.header-upper .option-box .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #252525;
}

.header-upper .option-box .nice-select{
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1c1c1c;
  text-transform: capitalize;
}

.header-upper .option-box .nice-select:after{
  top: 12px;
  right: 0px;
  margin-bottom: 0px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #827e7d;
  border-right: 2px solid #827e7d;
}

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

.header-upper .right-column{
  position: relative;
  display: flex;
  align-items: center;
}

.header-upper .right-column .info-box{
  position: relative;
  display: block;
  padding-left: 27px;
  margin-right: 40px;
}

.header-upper .right-column .info-box:before{
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 1px;
  height: 102px;
  left: -40px;
  top: -20px;
}

.header-upper .right-column .info-box .icon-box{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 18px;
}

.header-upper .right-column .info-box h5{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.header-upper .right-column .info-box span{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  color: #827e7d;
  font-weight: 600;
}

.header-upper .other-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.header-upper .other-links li:last-child{
  margin: 0px;
}

.header-upper .other-links li a{
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 50px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  color: #1c1c1c;
}

.header-upper .other-links li a:hover{
  color: #fff;
}

.header-style-two .header-lower{
  position: relative;
}

.header-style-two .header-lower .outer-container{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  border-top: 5px solid #fff;
}

.header-style-two .header-lower .outer-box{
  position: relative;
  padding: 0px;
  background: #fff;
}

.header-style-two .header-lower .outer-box:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-5.png);
  width: 101px;
  height: 68px;
  left: -101px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-style-two .header-lower .outer-box:after{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-6.png);
  width: 100px;
  height: 68px;
  right: -100px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.header-style-two .header-lower .main-menu .navigation > li > a{
  padding: 19px 8px 19px 8px;
}

.header-style-two .header-lower .main-menu .navigation > li > a:before{
  top: 19px;
}

.header-style-two .header-lower .main-menu .navigation > li > a:after{
  top: 20px;
}

.header-style-two .menu-right-content{
  position: relative;
  padding: 0px;
  margin: 0px;
  border: none;
}

.header-style-two .menu-right-content .btn-box{
  position: relative;
  padding: 0px;
}

.header-style-two .header-lower .menu-right-content .btn-box:before{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 5000px;
  height: 5px;
  left: 0px;
  top: -5px;
}

.header-style-two .menu-right-content .btn-box .theme-btn{
  background: #1c1c1c;
  color: #fff;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-right: 0px;
}

.header-style-two .menu-right-content .btn-box .theme-btn span:before{
  color: #fff;
}

.header-style-two .menu-right-content .btn-box .theme-btn span{
  padding-right: 38px;
}

.header-style-two .menu-right-content .search-box-outer{
  position: relative;
  display: inline-block;
  width: 73px;
  height: 68px;
  line-height: 68px;
  font-size: 24px;
  color: #1c1c1c;
  text-align: center;
  cursor: pointer;
  transition: all 500ms ease;
}

.header-style-two .menu-right-content .search-box-outer:hover{
  
}

.header-style-two .header-lower .menu-right-content .search-box-outer:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  left: 0px;
  bottom: 0px;
  width: 1px;
  height: calc(100% + 5px);
}

.header-style-two .header-lower .menu-right-content .search-box-outer:after{
  position: absolute;
  content: '';
  background: #e2e2e2;
  right: 0px;
  bottom: 0px;
  width: 1px;
  height: calc(100% + 5px);
}


/** banner-style-two **/

.banner-style-two{
  position: relative;
}

.banner-style-two .inner-box{
  position: relative;
  padding: 367px 0px 300px 0px;
  width: 100%;
}

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

.banner-style-two .bg-layer:before{
  position: absolute;
  content: '';
  background: #000000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
}

.banner-style-two .content-box{
  position: relative;
  display: block;
}

.banner-style-two .content-box .count-text{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 280px;
  line-height: 200px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255,255,255,0.1);
}

.banner-style-two .content-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.banner-style-two .content-box h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 29px;
}

.banner-style-two .content-box .link a{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.banner-style-two .content-box .link a:hover{

}

.banner-style-two .owl-dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 52px;
}

.banner-style-two .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  background: transparent;
  width: 40px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
  cursor: pointer;
  transition: all 500ms ease;
}

.banner-style-two .owl-theme .owl-dots .owl-dot.active span,
.banner-style-two .owl-theme .owl-dots .owl-dot span:hover{

}


/** service-style-two **/

.service-style-two{
  position: relative;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
}

.service-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.service-block-two .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.service-block-two .inner-box .image-box .image img{
  width: 100%;
}

.service-block-two .inner-box .image-box .image: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;
  z-index: 1;
}

.service-block-two .inner-box .image-box .image:after{
  position: absolute;
  content: '';
  width: 0px;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0.9;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, -260% 0%);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .image:after{
  width: 125px;
}

.service-block-two .inner-box .image-box .icon-box{
  position: absolute;
  top: 30px;
  right: 0px;
  width: 0px;
  text-align: center;
  font-size: 60px;
  color: #fff;
  z-index: 1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .icon-box{
  width: 125px;
}

.service-block-two .inner-box .image-box h2{
  position: absolute;
  top: 208px;
  right: -130px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255,255,255,0.4);
  transform: rotate(90deg);
  z-index: 1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box h2{
  right: -63px;
}

.service-block-two .inner-box .image-box h3{
  position: absolute;
  left: 0px;
  bottom: 20px;
  width: 100%;
  padding-left: 30px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  z-index: 2;
}

.service-block-two .inner-box .image-box h3 a{
  display: inline-block;
  color: #fff;
}

.service-block-two .inner-box .image-box h3 a:hover{
  text-decoration: underline;
}

.service-block-two .inner-box .lower-content{
  position: relative;
  padding-top: 23px;
  padding-left: 30px;
  padding-bottom: 8px;
}

.service-block-two .inner-box .lower-content:before{
  position: absolute;
  content: '';
  width: 4px;
  height: 118px;
  left: 0px;
  top: -48px;
  z-index: 1;
}

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

.service-block-two .inner-box .lower-content .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

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

}

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

.service-block-two .inner-box .lower-content .btn-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  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;
}

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

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

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

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

.service-style-two .line-box .line-2{
  left: 33.333%;
  margin-left: -6px;
}

.service-style-two .line-box .line-3{
  left: 66.666%;
  margin-left: 4px;
}

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


/** video-style-two **/

.video-style-two{
  position: relative;
  padding: 113px 0px;
}

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

.video-style-two .content-box{
  position: relative;
  display: block;
  padding-left: 100px;
  padding-right: 50px;
}

.video-style-two .content-box .video-btn{
  position: absolute;
  left: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.video-style-two .content-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.video-style-two .content-box .quote-box{
  position: relative;
  display: inline-block;
  font-size: 58px;
  margin-bottom: 16px;
}

.video-style-two .content-box h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 32px;
}

.video-style-two .content-box h2:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 185px;
  height: 1px;
  left: -115px;
  bottom: 0px;
}

.video-style-two .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.video-style-two .content-box .designation{
  position: relative;
  display: block;
}

.video-style-two .icon-layer{
  position: absolute;
  top: 75px;
  right: 60px;
  width: 512px;
  height: 512px;
  background-repeat: no-repeat;
}


/** chooseus-style-two **/

.chooseus-style-two{
  position: relative;
  margin-top: 45px;
}

.chooseus-style-two .chooseus-block-one{
  float: left;
  width: 33%;
}

.chooseus-block-one .inner-box{
  position: relative;
  display: block;
  padding: 40px;
  /* border-right: 1px solid #d6d6d6; */
  text-align: center;
}

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

.chooseus-block-one .inner-box .icon-box{
  position: relative;
  display: block;
  font-size: 84px;
  margin-bottom: 39px;
}

.chooseus-block-one .inner-box h3{
  position: relative;
    display: block;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    padding: 28px 0px;
    margin-bottom: 33px;
    color: #052858;
}

.chooseus-block-one .inner-box h3:before,
.chooseus-block-one .inner-box h3:after{
  position: absolute;
  content: '';
  left: 0px;
  width: calc(100% + 40px);
  height: 1px;
}

.chooseus-block-one .inner-box h3:before{
  top: 0px;
}

.chooseus-block-one .inner-box h3:after{
  bottom: 0px;
}

.chooseus-block-one .inner-box h3 a{
  position: relative;
  display: inline-block;
  color: #1c1c1c;
}

.chooseus-block-one .inner-box h3 a:hover{
  padding-left: 20px;
}

.chooseus-block-one .inner-box h3 a i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 16px;
  opacity: 0;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box h3 a:hover i{
  opacity: 1;
}


/** about-style-two **/

.about-style-two{
  position: relative;
}
.about-style-two .image-column{
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-style-two .image-box{
  position: relative;
 
}

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

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

.about-style-two .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.about-style-two .image-box .text-box{
  position: absolute;
  top: 0px;
  right: 0px;
}

.about-style-two .image-box .text-box h5{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-left: 20px;
  transform: rotate(90deg);
  top: 75px;
  right: -82px;
  z-index: 1;
}

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

.about-style-two .image-box .text-box h2{
  position: absolute;
  display: inline-block;
  font-size: 26px;
  line-height: 60px;
  font-weight: 700;
  background: #fff;
  padding: 20px 30px;
  right: 0px;
  top: 104px;
  text-align: center;
}

.about-style-two .image-box .icon-box{
  position: absolute;
  right: 0px;
  top: 204px;
  width: 100px;
  height: 100px;
  line-height: 110px;
  font-size: 60px;
  color: #fff;
  text-align: center;
}

.about-style-two .content-box{
  position: relative;
  display: block;
  padding-left: 100px;
}

.about-style-two .content-column{
  position: relative;
}

.about-style-two .content-column:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  left: 0px;
  top: 0px;
}

.about-style-two .content-box .sec-title{
  margin-bottom: 35px;
}

.about-style-two .content-box .list-item{
  position: relative;
  display: block;
  padding-left: 20px;
  margin-bottom: 25px;
}

.about-style-two .content-box .list-item:before{
  position: absolute;
  content: '';
  height: calc(100% - 7px);
  width: 1px;
  left: 0px;
  top: 5px;
}

.about-style-two .content-box .list-item li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: 16px;
}

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

.about-style-two .content-box p{
  margin-bottom: 43px;
  color: #000;
}

.about-style-two .slider-content .owl-nav{
  position: absolute;
  display: inline-block;
  left: -65px;
  top: 50%;
  transform: rotate(90deg);
  width: 100px;
  height: 100px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #fff;
}

.about-style-two .slider-content .owl-nav button{
  position: absolute;
  display: inline-block;
  font-size: 18px;
  color: #a9a6a5;
  cursor: pointer;
  transition: all 500ms ease;
}

.about-style-two .slider-content .owl-nav button:hover{

}

.about-style-two .slider-content .owl-nav button.owl-prev{
  left: 24px;
  top: 36px;
}

.about-style-two .slider-content .owl-nav button.owl-next{
  right: 24px;
  bottom: 33px;
}


/** industry-style-two **/

.industry-style-two{
  position: relative;
  background: #1c1c1c;
}

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

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

.industry-style-two .single-item{
  position: relative;
  display: block;
  float: left;
  width: 25%;
}

.industry-style-two .single-item .static-content{
  position: relative;
  display: block;
  background: #e4ebf9;
  padding: 32px 30px 36px 40px;
}

.industry-style-two .single-item:nth-child(2n+1) .static-content{
  background: #fff;
}

.industry-style-two .single-item .static-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.industry-style-two .single-item .static-content h3 a{
  position: relative;
  display: inline-block;
  color: #1c1c1c;
}

.industry-style-two .single-item .static-content h3 a:hover{

}

.industry-style-two .single-item .static-content .link-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 20px;
}

.industry-style-two .single-item .static-content .link-box a:hover{

}

.industry-style-two .single-item .static-content .link-box a:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 12px;
  left: 0px;
  top: 1px;
  font-weight: 400;
}

.industry-style-two .single-item .overlay-content{
  position: absolute;
  left: 0px;
  bottom: -15px;
  width: 100%;
  background: #1c1c1c;
  padding: 32px 30px 8px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.industry-style-two .single-item:hover .overlay-content{
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}

.industry-style-two .single-item .overlay-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 16px;
}

.industry-style-two .single-item .overlay-content h3 a{
  display: inline-block;
  color: #fff;
}

.industry-style-two .single-item .overlay-content h3 a:hover{

}

.industry-style-two .single-item .overlay-content p{
  color: #a9a6a5;
  margin-bottom: 28px;
}

.industry-style-two .single-item .overlay-content .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.industry-style-two .single-item .overlay-content .btn-box a:hover{

}

.industry-style-two .single-item .overlay-content .btn-box a span{
  position: relative;
  padding-left: 55px;
}

.industry-style-two .single-item .overlay-content .btn-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -7px;
  font-weight: 400;
  transition: all 500ms ease;
}

.industry-style-two .single-item .overlay-content .btn-box a:hover span:before{
  color: #fff;
}


/** team-section **/

.team-section{
  position: relative;
  padding: 114px 0px 78px 0px;
}

.team-section .sec-title .theme-btn{
  position: absolute;
  right: 0px;
  bottom: 10px;
}

.team-section .inner-container{
  position: relative;
  margin: 0px -75px;
}

.team-section .inner-container .team-block{
  padding: 0px 90px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 42px;
}

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

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

.team-block-one .inner-box .image-box .image: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;
  z-index: 1;
}

.team-block-one .inner-box .image-box .image:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 5px;
  left: 0px;
  bottom: 10px;
  z-index: 1;
}

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

.team-block-one .inner-box .image-box .designation{
  position: absolute;
  right: 15px;
  bottom: 23px;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  transform: scaleX(1);
  transform-origin: top right;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .designation{
  transform: scaleX(0);
}

.team-block-one .inner-box .image-box .social-links{
  position: absolute;
  right: 15px;
  bottom: 25px;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: top right;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-links{
  transform: scaleX(1);
}

.team-block-one .inner-box .image-box .social-links li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  margin-right: 24px;
}

.team-block-one .inner-box .image-box .social-links li:last-child{
  margin: 0px;
}

.team-block-one .inner-box .image-box .social-links li a{
  display: inline-block;
  color: #fff;
}

.team-block-one .inner-box .image-box .social-links li a:hover{

}

.team-block-one .inner-box .image-box .social-links li:before{
  position: absolute;
  content: '';
  background: #b8aba1;
  width: 4px;
  height: 4px;
  top: 13px;
  right: -15px;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .social-links li:last-child:before{
  display: none;
}

.team-block-one .inner-box .lower-content{
  padding-top: 17px;
}

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

.team-block-one .inner-box .lower-content h3:before{
  position: absolute;
  content: "\f115";
  font-family: 'flaticon';
  font-size: 18px;
  left: 0px;
  top: 0px;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #1c1c1c;
}

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

}

.team-section .big-text{
  position: absolute;
  font-size: 60px;
  line-height: 70px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e2e2e2;
  letter-spacing: 8px;
}

.team-section .big-text.one{
  top: 261px;
  left: 11%;
  transform: rotate(90deg);
}

.team-section .big-text.two{
  bottom: 310px;
  left: 44%;
  transform: rotate(-90deg);
}


/** case-style-two **/

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

.case-style-two .owl-carousel{
  max-width: 1605px;
}

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

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

.case-block-two .inner-box .image-box{
  position: relative;
  display: block;
}

.case-block-two .inner-box .image-box img{
  width: 100%;
}

.case-block-two .inner-box .content-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 630px;
  z-index: 1;
  background: #1c1c1c;
  padding: 40px 290px 42px 30px;
}

.case-block-two .inner-box .content-box .btn-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 260px;
  text-align: center;
  background: #e4ebf9;
  padding: 62px 15px 61px 15px;
}

.case-block-two .inner-box .content-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.case-block-two .inner-box .content-box .btn-box a:hover{

}

.case-block-two .inner-box .content-box .btn-box a span{
  position: relative;
  padding-left: 55px;
}

.case-block-two .inner-box .content-box .btn-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -7px;
  font-weight: 400;
  transition: all 500ms ease;
}

.case-block-two .inner-box .content-box .btn-box a:hover span:before{
  color: #fff;
}

.case-block-two .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}

.case-block-two .inner-box .content-box h3 a{
  position: relative;
  display: inline-block;
  color: #fff;
}

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

}

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

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

.case-style-two .owl-nav{
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  max-width: 1605px;
  width: 100%;
  margin: 0 auto;
  text-align: right;
  height: calc(100% - 150px);
  z-index: 1;
}

.case-style-two .owl-nav:before{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 260px;
  height: 100%;
  top: 0px;
  right: 0px;
  opacity: 0.92;
  z-index: -1;
}

.case-style-two .owl-nav button span{
  display: none;
}

.case-style-two .owl-nav button.owl-prev{
  position: absolute;
  top: 80px;
  right: 105px;
  width: 38px;
  height: 24px;
}

.case-style-two .owl-nav button.owl-next{
  position: absolute;
  top: 80px;
  right: 50px;
  width: 38px;
  height: 24px;
}

.case-style-two .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-4.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
}

.case-style-two .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-5.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
}

.case-style-two .owl-dots{
  position: absolute;
  bottom: 304px;
  right: 0px;
  left: 0px;
  max-width: 1605px;
  width: 100%;
  margin: 0 auto;
  text-align: right;
  z-index: 1;
  counter-reset: slides-num;
}

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

.case-style-two .owl-dots:before{
  position: absolute;
  content: '';
  right: 92px;
  top: 55px;
  width: 1px;
  height: 18px;
  background: #4f4d4f;
}

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

.case-style-two .owl-dots button{
  position: absolute;
  top: 0px;
  right: 155px;
  counter-increment: slides-num;
  font-size: 90px;
  line-height: 80px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

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

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


/** pricing-section **/

.pricing-section{
  position: relative;
}

.pricing-block-one .pricing-table{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover{

}

.pricing-block-one .pricing-table .table-header{
  position: relative;
  display: block;
  padding: 22px 30px 22px 40px;
  background: #e4ebf9;
  border-bottom: 1px solid #e2e2e2;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover .table-header{

}

.pricing-block-one .pricing-table .table-header h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 2px;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table .table-header p{
  color: #827e7d;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover .table-header h3,
.pricing-block-one.active-block .pricing-table .table-header h3{
  color: #fff;
}

.pricing-block-one .pricing-table:hover .table-header p,
.pricing-block-one.active-block .pricing-table .table-header p{
  color: #fed9d9;
}

.pricing-block-one .pricing-table .table-content{
  position: relative;
  padding-top: 10px;
}

.pricing-block-one .pricing-table .image-box{
  position: relative;
  display: block;
}

.pricing-block-one .pricing-table .image-box img{
  width: 100%;
}

.pricing-block-one .pricing-table .price-box{
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fff;
  padding: 12px 20px 2px 0px;
}

.pricing-block-one .pricing-table .price-box:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-7.png);
  width: 95px;
  height: 67px;
  left: -95px;
  bottom: 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.pricing-block-one .pricing-table .price-box h2{
  position: relative;
  display: inline-block;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
}

.pricing-block-one .pricing-table .price-box h2 .fraction{
  font-size: 18px;
}

.pricing-block-one .pricing-table .price-box h2 .symble{
  font-size: 22px;
  position: relative;
  display: inline-block;
  top: -17px;
}

.pricing-block-one .pricing-table .feature-list{
  position: relative;
  display: block;
  padding: 21px 40px 23px 40px;
}

.pricing-block-one .pricing-table .feature-list li{
  position: relative;
  display: block;
  padding: 12px 0px;
  border-bottom: 1px solid #e8eaed;
}

.pricing-block-one .pricing-table .feature-list li:last-child{
  border-bottom: none;
}

.pricing-block-one .pricing-table .feature-list li:before{
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-size: 10px;
  color: #fff;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  top: 19px;
  right: 0px;
}

.pricing-block-one .pricing-table .feature-list li.light:before{
  content: '\f00d';
  background: #a9a6a5;
}

.pricing-block-one .pricing-table .table-footer{
  position: relative;
  padding: 0px 40px 40px 40px;
}

.pricing-block-one .pricing-table .table-footer a{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background: #1c1c1c;
  padding: 19px 30px;
}

.pricing-block-one .pricing-table .table-footer a span{
  position: relative;
  display: block;
  padding-right: 35px;
}

.pricing-block-one .pricing-table .table-footer a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 10px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  top: -1px;
  right: 0px;
  background: #fff;
  color: #1c1c1c;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table .table-footer a:hover{

}

.pricing-block-one .pricing-table .table-footer a:hover span:before{

}


/** testimonial-style-two **/

.testimonial-style-two{
  position: relative;
  padding-bottom: 120px;
  padding-top: 114px;
}

.testimonial-style-two:before{
  position: absolute;
  content: '';
  width: 50%;
  height: calc(100% - 120px);
  left: 0px;
  top: 0px;
  z-index: 1;
}

.testimonial-style-two .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc(50% + 185px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-style-two .sub-title{
  color: #fff;
}

.testimonial-style-two .sub-title:before{
  background: #fff;
}

.testimonial-style-two .sec-title .theme-btn{
  position: absolute;
  right: 0px;
  bottom: 10px;
}

.testimonial-style-two .sec-title .theme-btn span:before{
  background: url(../images/icons/icon-bg-1.png);
}

.testimonial-style-two .testimonial-content{
  position: relative;
  display: block;
  padding-right: 100px;
  padding-bottom: 110px;
}

.testimonial-style-two .testimonial-content .rating li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  float: left;
  margin-right: 8px;
}

.testimonial-style-two .testimonial-content .rating li:last-child{
  margin: 0px;
}

.testimonial-style-two .testimonial-content .rating{
  margin-bottom: 15px;
}

.testimonial-style-two .testimonial-content h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-style-two .testimonial-content p{
  font-size: 19px;
  line-height: 35px;
  color: #fff;
  margin-bottom: 29px;
}

.testimonial-style-two .testimonial-content h3{
  display: block;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-style-two .testimonial-content .designation{
  position: relative;
  display: block;
  color: #fff;
}

.testimonial-style-two .testimonial-content .thumb-box{
  position: absolute;
  right: -15px;
  bottom: -60px;
}

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

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
}

.testimonial-style-two .owl-nav{
  position: absolute;
  right: 180px;
  bottom: 30px;
}

.testimonial-style-two .owl-nav button span{
  display: none;
}

.testimonial-style-two .owl-nav button.owl-prev{
  position: absolute;
  top: 80px;
  right: 105px;
  width: 38px;
  height: 24px;
}

.testimonial-style-two .owl-nav button.owl-next{
  position: absolute;
  top: 80px;
  right: 50px;
  width: 38px;
  height: 24px;
}

.testimonial-style-two .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-6.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
}

.testimonial-style-two .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-7.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
}

.testimonial-style-two .owl-dots{
  position: absolute;
  left: 14px;
  bottom: -45px;
  counter-reset: slides-num;
}

.testimonial-style-two .owl-dots::after {
  position: absolute;
  left: 140px;
  top: 0px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 20px;
  color: #827e7d;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.testimonial-style-two .owl-dots:before{
  position: absolute;
  content: '';
  left: 25px;
  top: 14px;
  width: 100px;
  height: 1px;
  background: #d6d6d6;
}

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

.testimonial-style-two .owl-dots button{
  position: absolute;
  top: -1px;
  left: 0px;
  counter-increment: slides-num;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

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

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

.testimonial-style-two .outer-container{
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

.testimonial-style-two .outer-container{
  border-bottom: 1px solid rgba(255,255, 255, 0.25);
}

.testimonial-style-two .inner-box{
  position: relative;
  display: block;
  text-align: right;
  padding-top: 130px;
}

.testimonial-style-two .inner-box h2{
  position: relative;
  display: block;
  font-size: 150px;
  line-height: 150px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  padding-right: 45px;
  margin-bottom: 6px;
}

.testimonial-style-two .inner-box h2 span{
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 80px;
  text-transform: uppercase;
}

.testimonial-style-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
}

.testimonial-style-two .light-icon{
  position: absolute;
  left: 50px;
  bottom: 100px;
  font-size: 450px;
  line-height: 400px;
  color: rgba(0, 0, 0, 0.10);
  z-index: 1;
}

.header-style-two .sticky-header .menu-right-content .btn-box .theme-btn{
  padding-right: 30px;
}


/** 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: auto;
  font-size: 18px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #717171;
  padding: 25px 30px 23px 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.contact-section .tab-btns li.active-btn{
  color: #1c1c1c;
}

.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: 'flaticon';
  font-size: 16px;
  top: 24px;
  right: 5px;
  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: #1c1c1c;
  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: 'Poppins', 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;
}


/** downloads-section **/

.downloads-section{
  position: relative;
  padding: 110px 0px 108px 0px;
}

.downloads-section .sec-title{
  position: relative;
  display: flex;
  margin-bottom: 0px;
  justify-content: space-between;
}

.downloads-section .sec-title h2{
  max-width: 470px;
}

.downloads-section .sec-title .sub-title{
  height: 33px;
  top: 5px;
}

.downloads-section .download-inner{
  position: relative;
  display: block;
  padding-left: 100px;
}

.downloads-section .download-list li{
  position: relative;
  display: inline-block;
  float: left;
  width: 170px;
  text-align: center;
  border: 1px solid #e2e2e2;
  padding: 26px 15px 19px 15px;
  margin-right: 30px;
}

.downloads-section .download-list li:last-child{
  margin: 0px !important;
}

.downloads-section .download-list li .icon-box{
  position: relative;
  display: inline-block;
  width: 66px;
  height: 66px;
  line-height: 74px;
  background: #e4ebf9;
  font-size: 34px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 12px;
}

.downloads-section .download-list li button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 500ms ease;
}

.downloads-section .download-list li button:hover{
  padding-left: 19px;
}

.downloads-section .download-list li button:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 12px;
  left: 0px;
  top: -1px;
  opacity: 0;
  transition: all 500ms ease;
}

.downloads-section .download-list li button:hover:before{
  opacity: 1;
}


/** footer-style-two **/

.footer-style-two{
  position: relative;
  background: #1c1c1c;
}

.footer-style-two .logo-widget{
  position: relative;
  display: block;
  padding: 112px 0px 130px 0px;
}

.footer-style-two .logo-widget .select-box{
  position: relative;
  display: inline-block;
  min-height: 35px;
  border-bottom: 1px solid #373737;
  margin-bottom: 33px;
  padding-left: 26px;
}

.footer-style-two .logo-widget .select-box .icon-box{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 16px;
  color: #fff;
}

.footer-style-two .logo-widget .select-box .nice-select{
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  padding-right: 22px;
  text-transform: capitalize;
}

.footer-style-two .logo-widget .select-box .nice-select:after{
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #a9a6a5;
  border-right: 2px solid #a9a6a5;
  top: 8px;
  right: 3px;
  margin: 0px;
}

.footer-style-two .logo-widget .select-box .nice-select .list li{
  color: #1c1c1c;
}

.footer-style-two .logo-widget .footer-logo{
  position: relative;
  display: block;
  margin-bottom: 28px;
}

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

.footer-style-two a:hover{

}

.footer-style-two .logo-widget .text{
  margin-bottom: 32px;
}

.footer-style-two .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 28px;
}

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

.footer-style-two .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #a9a6a5;
}

.footer-style-two .social-links li a:hover{

}

.footer-style-two .social-links li:before{
  position: absolute;
  content: '';
  background: #343434;
  width: 4px;
  height: 4px;
  top: 11px;
  right: -15px;
  border-radius: 50%;
}

.footer-style-two .social-links li:last-child:before{
  display: none;
}

.footer-style-two .widget-title{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

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

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

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

.footer-style-two .links-widget{
  padding: 117px 0px 114px 0px;
}

.footer-style-two .footer-bottom{
  background: transparent;
  border-top: 1px solid #373737;
}

.footer-style-two .appointment-widget{
  position: relative;
  padding: 167px 15px 30px 15px;
  text-align: center;
}

.footer-style-two .appointment-widget .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-style-two .appointment-widget .bg-layer:before{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.15;
}

.footer-style-two .appointment-widget h2{
  display: block;
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 31px;
}

.footer-style-two .appointment-widget h2 span{
  display: block;
  font-weight: 400;
}

.footer-style-two .appointment-widget .theme-btn{
  width: 100%;
}


/*** 

====================================================================
                        Home-Page-Three
====================================================================

***/


/** header-style-three **/

.header-top-two{
  position: relative;
  padding: 8px 0px;
}

.header-top-two .outer-container{
  padding: 0px 50px;
}

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

.header-top-two .top-left,
.header-top-two .top-right{
  position: relative;
  display: flex;
  align-items: center;
}

.header-top-two .language-box{
  position: relative;
  padding-left: 68px;
  margin-right: 40px;
}

.header-top-two .language-box .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 16px;
  color: #fff;
}

.header-top-two .language-box .text{
  position: absolute;
  left: 26px;
  top: 0px;
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  color: #dbe0fe;
}

.header-top-two .language-box .nice-select{
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  padding-right: 0px;
  text-transform: capitalize;
}

.header-top-two .language-box .nice-select .list li{
  color: #1c1c1c;
}

.header-top-two .language-box .nice-select:after{
  display: none;
}

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

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

.header-top-two .other-links li a{
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
}

.header-top-two .other-links li a:hover{
  text-decoration: underline;
}

.header-top-two .info-list li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  color: #dce1ff;
  padding-left: 22px;
  margin-right: 40px;
}

.header-top-two .info-list li:last-child{
  margin: 0px;
}

.header-top-two .info-list li span{
  color: #fff;
  font-weight: 700;
}

.header-top-two .info-list li i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 18px;
  color: #dce1ff;
}

.header-top-two .info-list{
  margin-right: 40px;
}

.header-top-two .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 17px;
  margin-right: 28px;
}

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

.header-top-two .social-links li a{
  color: #fff;
}

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

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

.header-style-three .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px 50px;
}

.header-style-three .header-lower .outer-box{
  border-bottom: 1px solid #d7d7da;
}

.header-style-three .menu-right-content{
  padding: 0px;
  margin: 0px;
  border: none;
}

.header-style-three .menu-right-content .search-box-outer{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #1c1c1c;
  cursor: pointer;
  margin-right: 45px;
  transition: all 500ms ease;
}

.header-style-three .menu-right-content .search-box-outer:hover{

}

.header-style-three .menu-right-content .search-box-outer:before{
  position: absolute;
  content: '';
  background: #d7d7da;
  width: 1px;
  height: 30px;
  top: 0px;
  right: -23px;
}

.header-style-three .menu-right-content .user-box{
  position: relative;
  margin-right: 85px;
}

.header-style-three .menu-right-content .user-box a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #1c1c1c;
}

.header-style-three .menu-right-content .user-box a:hover{

}

.header-style-three .menu-right-content .support-box{
  position: relative;
  display: inline-block;
  padding-left: 52px;
}

.header-style-three .header-lower .menu-right-content .support-box:before{
  position: absolute;
  content: '';
  background: #d7d7da;
  left: -37px;
  top: -13px;
  width: 1px;
  height: 80px;
}

.header-style-three .menu-right-content .support-box .icon-box{
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 32px;
}

.header-style-three .menu-right-content .support-box span{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 27px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.header-style-three .menu-right-content .support-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.header-style-three .menu-right-content .support-box h5 a{
  display: inline-block;
  color: #1c1c1c;
}

.header-style-three .menu-right-content .support-box h5 a:hover{

}

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

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

.header-style-three .header-lower .main-menu .navigation > li > a:after{
  top: 25px;
}

.header-style-three .header-lower .main-menu .navigation > li{
  margin: 0px;
  padding: 0px 55px;
  border-right: 1px solid #d7d7da;
}

.header-style-three .header-lower .main-menu .navigation > li:first-child{
  border-left: 1px solid #d7d7da;
}


/** banner-style-three **/

.banner-style-three{
  position: relative;
  padding-top: 300px;
}

.banner-style-three .image-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% - 70px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-three .slider-content{
  position: relative;
  max-width: 770px;
  width: 100%;
  background: rgba(28, 28, 28, 0.96);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

.banner-style-three .slider-content .upper-box{
  position: relative;
  padding: 91px 100px 93px 100px;
}

.banner-style-three .slider-content h6{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #a9a6a5;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 26px;
  padding-bottom: 8px;
}

.banner-style-three .slider-content h2{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 21px;
}

.banner-style-three .slider-content p{
  display: block;
  font-size: 18px;
  color: #d6d6d6;
}

.banner-style-three .slider-content .btn-box a{
  float: left;
  width: 50%;
  padding: 23px 30px;
}

.banner-style-three .owl-nav{
  position: absolute;
  right: 150px;
  bottom: 104px;
}

.banner-style-three .owl-nav button span{
  display: none;
}

.banner-style-three .owl-nav button.owl-prev{
  position: absolute;
  top: 80px;
  right: 105px;
  width: 38px;
  height: 24px;
}

.banner-style-three .owl-nav button.owl-next{
  position: absolute;
  top: 80px;
  right: 50px;
  width: 38px;
  height: 24px;
}

.banner-style-three .owl-nav button.owl-prev:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-6.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
}

.banner-style-three .owl-nav button.owl-next:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-7.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
}

.banner-style-three .owl-dots{
  position: absolute;
  right: 14px;
  bottom: 25px;
  counter-reset: slides-num;
}

.banner-style-three .owl-dots::after {
  position: absolute;
  right: -15px;
  top: 0px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #827e7d;
}

.banner-style-three .owl-dots:before{
  position: absolute;
  content: '';
  right: 21px;
  top: 14px;
  width: 50px;
  height: 1px;
  background: #d6d6d6;
}

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

.banner-style-three .owl-dots button{
  position: absolute;
  top: -1px;
  left: -95px;
  counter-increment: slides-num;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

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

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

.bg-color-2{
  background-color: #f3f3f4;
}


/** service-style-three **/

.service-style-three{
  position: relative;
}

.sec-title p{
  margin-top: 22px;
}

.service-block-three .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  padding: 36px 30px 35px 75px;
  transition: all 500ms ease;
}

.service-block-three .inner-box:hover{
  transform: translateY(-10px);
}

.service-block-three .inner-box h6{
  position: absolute;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #827e7d;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 70px;
  transform: rotate(-90deg);
  left: -41px;
  top: 104px;
}

.service-block-three .inner-box h6:before{
  position: absolute;
  content: '';
  background: #d6d6d6;
  height: 1px;
  width: 50px;
  right: 0px;
  top: 10px;
}

.service-block-three .inner-box .icon-box{
  position: relative;
  display: block;
  font-size: 66px;
  line-height: 60px;
  margin-bottom: 24px;
}

.service-block-three .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  padding-bottom: 19px;
  margin-bottom: 22px;
}

.service-block-three .inner-box h3 a{
  display: inline-block;
  color: #1c1c1c;
}

.service-block-three .inner-box h3 a:hover{

}

.service-block-three .inner-box h3:before{
  position: absolute;
  content: '';
  width: 100px;
  height: 2px;
  left: 0px;
  bottom: 0px;
}

.service-block-three .inner-box h3:after{
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  left: 100px;
  bottom: -5px;
}

.service-block-three .inner-box p{
  display: block;
  margin-bottom: 26px;
}

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

.service-block-three .inner-box .link-btn a:hover{

}

.service-block-three .inner-box .link-btn a span{
  position: relative;
  padding-left: 20px;
  transition: all 500ms ease;
}

.service-block-three .inner-box .link-btn a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

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

.service-block-three .inner-box .link-btn a:hover span:after{
  opacity: 1;
}

.service-block-three .inner-box .link-btn a:hover span{
  padding-left: 36px;
}

.service-block-three .inner-box .link-btn a:after{
  position: absolute;
  content: '';
  width: 45px;
  height: 1px;
  left: -42px;
  top: 11px;
  transition: all 500ms ease;
}

.service-block-three .inner-box .link-btn a:hover:after{
  opacity: 0;
}


/** chooseus-style-three **/

.chooseus-style-three{
  position: relative;
  padding: 120px 0px;
}

.chooseus-style-three .image-box{
  position: relative;
  display: block;
  margin-right: 30px;
  margin-left: -315px;
}

.chooseus-style-three .image-box img{
  width: 100%;
}

.chooseus-style-three .image-box .text-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 220px;
  height: 225px;
  background: rgba(38, 63, 217, 0.95);
}

.chooseus-style-three .image-box .text-box .icon-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.chooseus-style-three .image-box .curved-circle-4{
  position: absolute;
  left: 110px;
  top: 32px;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Inter Tight', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(160deg);
}

.chooseus-style-three .image-box .curved-circle-4:before{
  position: absolute;
  content: '.';
  left: -3px;
  bottom: 8px;
}

.chooseus-style-three .content-box{
  position: relative;
  display: block;
  margin-top: -9px;
}

.chooseus-style-three .content-box .text{
  margin-bottom: 33px;
}

.chooseus-style-three .content-box .inner-box .single-item{
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.chooseus-style-three .content-box .inner-box .single-item:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: calc(100% - 0px);
  top: 0px;
  right: 30px;
}

.chooseus-style-three .content-box .inner-box .single-column:last-child .single-item:before{
  display: none;
}

.chooseus-style-three .content-box .inner-box .single-item .icon-box{
  position: relative;
  display: block;
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 10px;
}

.chooseus-style-three .content-box .inner-box .single-item h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.chooseus-style-three .content-box .inner-box .single-item span{
  position: relative;
  display: block;
}

.chooseus-style-three .content-box .download-box{
  position: relative;
  display: block;
  padding-left: 70px;
}

.chooseus-style-three .content-box .download-box .icon-box{
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 30px;
  color: #ced3f6;
  width: 50px;
  height: 50px;
  line-height: 56px;
  text-align: center;
}

.chooseus-style-three .content-box .download-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: #a9a6a5;
  font-weight: 700;
  margin-bottom: 6px;
}

.chooseus-style-three .content-box .download-box h6{
  position: relative;
  display: block;
}

.chooseus-style-three .content-box .download-box h6 button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  cursor: pointer;
  transition: all 500ms ease;
}

.chooseus-style-three .content-box .sec-title{
  margin-bottom: 31px;
}


/** industry-style-three **/

.industry-style-three{
  position: relative;
  padding: 120px 0px 60px 0px;
  background: #1c1c1c;
}

.industry-style-three:before{
  position: absolute;
  content: '';
  background: #f3f3f4;
  width: calc(50% - 45px);
  height: 450px;
  border: 1px solid #e2e2e2;
  left: 0px;
  top: 0px;
}

.industry-style-three .sec-title{
  margin-bottom: 0px;
  margin-right: 100px;
  margin-top: -9px;
}

.industry-style-three .sec-title p{
  margin-bottom: 26px;
}

.industry-style-three .sec-title a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
}

.industry-style-three .sec-title a:hover{

}

.industry-style-three .sec-title a span{
  position: relative;
  padding-left: 65px;
}

.industry-style-three .sec-title a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  left: 42px;
  top: 0px;
  transition: all 500ms ease;
}

.industry-style-three .sec-title a span:after{
  position: absolute;
  content: '';
  width: 45px;
  height: 1px;
  left: 0px;
  top: 11px;
  transition: all 500ms ease;
}

.industries-block-one .inner-box{
  position: relative;
  display: block;
  padding-left: 260px;
  margin-bottom: 60px;
}

.industries-block-one .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  overflow: hidden;
}

.industries-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #1c1c1c;
  width: 110px;
  height: calc(100% - 110px);
  right: 0px;
  bottom: 0px;
  z-index: 1;
}

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

.industries-block-one .inner-box .content-box{
  position: relative;
  display: block;
  padding: 142px 30px 23px 40px;
  z-index: 2;
}

.industries-block-one .inner-box .content-box .light-icon{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 150px;
  color: #292929;
}

.industries-block-one .inner-box .content-box .link-box{
  position: absolute;
  left: 40px;
  top: 40px;
  transition: all 500ms ease;
}

.industries-block-one .inner-box:hover .content-box .link-box{
  left: 0px;
  top: 0px;
}

.industries-block-one .inner-box .content-box .link-box a{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #fff;
  background: rgba(38, 63, 217, 0.90);
  text-align: center;
}

.industries-block-one .inner-box:hover .content-box .link-box a{
  width: 110px;
  height: 110px;
  line-height: 110px;
}

.industries-block-one .inner-box .content-box .link-box a i{
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.industries-block-one .inner-box:hover .content-box .link-box a i{
  transform: rotate(-45deg);
}

.industries-block-one .inner-box .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.industries-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

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

}

.industries-block-one .inner-box .content-box p{
  color: #a9a6a5;
}


/** growth-section **/

.growth-section{
  position: relative;
}

.growth-section .chart-box{
  position: relative;
  display: block;
  max-width: 770px;
  background: #f3f3f4;
  border: 1px solid #fff;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  padding: 63px 100px 103px 100px;
}

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

.progress-box .bar{
  position:relative;
  width:100%;
  height:8px;
  background: #e2e2e2;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:8px;
  background: -webkit-linear-gradient(0deg, #f3f3f4, #e4492e 100%);
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.home_3 .progress-box .bar-inner{
  background: -webkit-linear-gradient(0deg, #f3f3f4, #263fd9 100%);
}

.progress-box .bar-inner:before{
  position: absolute;
  content: '';
  width: 15px;
  height: 16px;
  top: -4px;
  right: -14px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 0% 0%);
}

.progress-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 13px;
}

.progress-box .count-text{
  position: absolute;
  top: -41px;
  right: 0px;
  font-size: 18px;
  line-height: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
}

.growth-section .progress-box{
  position: relative;
  margin-bottom: 37px;
  z-index: 1;
}

.growth-section .progress-box:last-child{
  margin-bottom: 0px;
}

.growth-section .chart-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 20px;
  margin-bottom: 33px;
}

.growth-section .chart-box h6:before{
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  left: 0px;
  top: 6px;
  border-radius: 50%;
}

.growth-section .chart-box .chart-inner{
  position: relative;
  padding-top: 22px;
  padding-bottom: 35px;
}

.growth-section .bar-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  right: 0px;
}

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

.growth-section .bar-box .bar-1{
  left: -1px;
}

.growth-section .bar-box .bar-2{
  left: 20%;
}

.growth-section .bar-box .bar-3{
  left: 40%;
}

.growth-section .bar-box .bar-4{
  left: 60%;
}

.growth-section .bar-box .bar-5{
  left: 80%;
}

.growth-section .bar-box .bar-6{
  right: 0px;
}

.growth-section .count-box{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.growth-section .count-box span{
  position: absolute;
  display: block;
  font-size: 17px;
  color: #827e7d;
  bottom: -40px;
  margin-left: -9px;
}

.growth-section .count-box .count-1{
  left: 0px;
  margin-left: -6px;
}

.growth-section .count-box .count-2{
  left: 20%;
}

.growth-section .count-box .count-3{
  left: 40%;
}

.growth-section .count-box .count-4{
  left: 60%;
}

.growth-section .count-box .count-5{
  left: 80%;
}

.growth-section .count-box .count-6{
  right: -13px;
}

.growth-section .image-layer{
  position: absolute;
  bottom: 0px;
  right: 60px;
}


/** faq-section **/

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

.faq-section .image-box{
  position: relative;
  display: block;
  margin-left: -315px;
  padding-left: 443px;
  padding-bottom: 120px;
  margin-right: 30px;
}

.faq-section .image-box .image-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
}

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

.accordion-box .block .acc-content{
  position:relative;
  display:none;
  padding: 15px 0px 0px 80px;
}

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

.accordion-box .block{
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.accordion-box .block:last-child{
  margin-bottom: 0px;
}

.accordion-box .acc-btn{
  position: relative;
  display: block;
  padding: 0px 0px 0px 80px;
  cursor: pointer;
}

.accordion-box .acc-btn .icon-box{
  position: absolute;
  left: 0px;
  top: 7px;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background: #f3f3f4;
  text-align: center;
  font-size: 16px;
  color: #a9a6a5;
  transition: all 500ms ease;
}

.accordion-box .acc-btn.active .icon-box{
  color: #fff;
}

.accordion-box .acc-btn .icon-box i{
  position: relative;
  display: inline-block;
}

.accordion-box .acc-btn.active .icon-box i{
  transform: rotate(90deg);
}

.accordion-box .acc-btn h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  color: #a9a6a5;
  font-weight: 700;
  transition: all 500ms ease;
}

.accordion-box .acc-btn.active h3{
  color: #1c1c1c;
}

.faq-section .accordion-box{
  margin-bottom: 44px;
}

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

.faq-section .link-box a:hover{

}

.faq-section .link-box a span{
  position: relative;
  padding-left: 65px;
}

.faq-section .link-box a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  left: 42px;
  top: 0px;
  transition: all 500ms ease;
}

.faq-section .link-box a span:after{
  position: absolute;
  content: '';
  width: 45px;
  height: 1px;
  left: 0px;
  top: 11px;
  transition: all 500ms ease;
}

.faq-section .content-box{
  position: relative;
  margin-top: -9px;
}

.faq-section .content-box .sec-title{
  margin-bottom: 42px;
}

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


/** clients-style-two **/

.clients-style-two{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.clients-style-two:before{
  position: absolute;
  content: '';
  background: rgba(28, 28, 28, 1);
  width: 50%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.clients-style-two .upper-box{
  position: relative;
  display: block;
  padding: 106px 0px 120px 0px;
}

.clients-style-two h2{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 38px;
  max-width: 520px;
}

.clients-style-two .big-text{
  position: absolute;
  left: 0px;
  top: 200px;
  width: 100%;
  font-size: 280px;
  line-height: 200px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(38,63,217,0.3);
}

.clients-style-two .clients-box{
  position: relative;
  background: rgba(28, 28, 28, 1);
  padding-bottom: 60px;
}

.clients-style-two .clients-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.clients-style-two .clients-logo img{
  position: relative;
  max-width: 100%;
  width: auto;
}

.clients-style-two .owl-carousel .owl-stage{
  display: flex;
  align-items: center;
}


/** case-style-three **/

.case-style-three{
  position: relative;
}

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

.case-block-three .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #1c1c1c;
}

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

.case-block-three .inner-box:hover .image-box img{
  opacity: 0.1;
  transform: scale(1.05);
}

.case-block-three .inner-box .content-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.case-block-three .inner-box .content-box .link-box{
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 500ms ease;
}

.case-block-three .inner-box:hover .content-box .link-box{
  transform: scale(0,0);
}

.case-block-three .inner-box .content-box .link-box a{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #fff;
  text-align: center;
}

.case-block-three .inner-box .content-box .btn-box{
  position: absolute;
  top: 77px;
  right: -88px;
  padding: 9px 33px 24px 33px;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 500ms ease;
}

.case-block-three .inner-box:hover .content-box .btn-box{
  right: -78px;
  opacity: 1;
}

.case-block-three .inner-box .content-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.case-block-three .inner-box .content-box .btn-box a i{
  position: relative;
  display: inline-block;
  font-size: 30px;
  margin-left: 21px;
  transform: rotate(135deg);
  top: 9px;
}

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

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

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

.case-block-three .inner-box .content-box .view-btn a:hover{

}

.case-block-three .inner-box .content-box h3{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 22px 30px;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  background: rgba(28, 28, 28, 0.90);
  transition: all 500ms ease;
}

.case-block-three .inner-box:hover .content-box h3{
  background: transparent;
}

.case-block-three .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

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

}

.case-style-three .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 57px;
}

.case-style-three .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #d6d6d6;
  border-radius: 50%;
  cursor: pointer;
  margin: 0px 15px;
  transition: all 500ms ease;
}

.case-style-three .owl-theme .owl-dots .owl-dot span:before{
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  left: -7px;
  top: -7px;
  border-radius: 50%;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.case-style-three .owl-theme .owl-dots .owl-dot.active span:before,
.case-style-three .owl-theme .owl-dots .owl-dot span:hover:before{
  transform: scale(1,1);
}

.case-style-three .owl-theme .owl-dots .owl-dot.active span,
.case-style-three .owl-theme .owl-dots .owl-dot span:hover{

}


/** news-style-two **/

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

.news-style-two .sec-title .link a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
}

.news-style-two .sec-title .link a:hover{

}

.news-style-two .sec-title .link a span{
  position: relative;
  padding-left: 65px;
}

.news-style-two .sec-title .link a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  left: 42px;
  top: 0px;
  transition: all 500ms ease;
}

.news-style-two .sec-title .link a span:after{
  position: absolute;
  content: '';
  width: 45px;
  height: 1px;
  left: 0px;
  top: 11px;
  transition: all 500ms ease;
}

.news-style-two .sec-title h2{
  margin-bottom: 22px;
}

.news-style-two .sec-title{
  margin-bottom: 36px;
}

.news-style-two .content-column .content-box{
  position: relative;
  display: block;
}

.news-style-two .content-box .form-group{
  position: relative;
  margin: 0px;
}

.news-style-two .content-box .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 62px;
  background: #e1e1e1;
  border: 1px solid #e1e1e1;
  padding: 10px 30px;
  font-size: 17px;
  color: #827e7d;
  margin-bottom: 18px;
  transition: all 500ms ease;
}

.news-style-two .content-box .form-group input:focus{

}

.news-block-two .inner-box{
  position: relative;
  display: block;
  padding-left: 220px;
  min-height: 183px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #d6d6d6;
}

.news-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 40px;
  height: 1px;
  left: -40px;
  bottom: -1px;
}

.news-block-two .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.news-block-two .inner-box .image-box img{
  width: 100%;
}

.news-block-two .inner-box .image-box .category{
  position: absolute;
  display: inline-block;
  right: 0px;
  bottom: 0px;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 20px;
}

.news-block-two .inner-box .content-box{
  position: relative;
  display: block;
  padding: 14px 30px 16px 30px;
}

.news-block-two .inner-box .content-box .post-info li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
  font-size: 18px;
  color: #827e7d;
  font-family: 'Poppins', sans-serif;
  padding-left: 23px;
}

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

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

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

.news-block-two .inner-box .content-box .post-info li a{
  position: relative;
  display: inline-block;
  color: #827e7d;
}

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

}

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

.news-block-two .inner-box .content-box .post-info{
  margin-bottom: 11px;
}

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

.news-block-two .inner-box .content-box h3 a{
  display: inline-block;
  color: #292729;
}

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

}

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

.news-block-two .inner-box .content-box .link a:hover{

}

.news-block-two .inner-box .content-box .link a span{
  position: relative;
  padding-left: 65px;
  transition: all 500ms ease;
}

.news-block-two .inner-box .content-box .link a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  left: 45px;
  top: 0px;
  transition: all 500ms ease;
}

.news-block-two .inner-box .content-box .link a:hover span:before{
  opacity: 0;
}

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

.news-block-two .inner-box .content-box .link a:hover span:after{
  opacity: 1;
}

.news-block-two .inner-box .content-box .link a:hover span{
  padding-left: 35px;
}

.news-block-two .inner-box .content-box .link a:after{
  position: absolute;
  content: '';
  width: 45px;
  height: 1px;
  left: 0px;
  top: 11px;
  transition: all 500ms ease;
}

.news-block-two .inner-box .content-box .link a:hover:after{
  opacity: 0;
}

.news-style-two .bx-viewport{
  min-height: 711px !important;
  padding-left: 100px;
}

.news-style-two .inner-column{
  position: relative;
}

.news-style-two .inner-column:before{
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 1px;
  height: 100%;
  top: 0px;
  left: 75px;
}

.news-style-two .bx-controls.bx-has-controls-direction{
  position: absolute;
  left: -85px;
  bottom: 0px;
}

.news-style-two .bx-controls.bx-has-controls-direction a.bx-prev,
.news-style-two .bx-controls.bx-has-controls-direction a.bx-next{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #d6d6d6;
  color: #1c1c1c;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  transition: all 500ms ease;
}

.news-style-two .bx-controls.bx-has-controls-direction a.bx-prev:hover,
.news-style-two .bx-controls.bx-has-controls-direction a.bx-next:hover{
  color: #fff;
}

.news-style-two .bx-controls.bx-has-controls-direction a.bx-prev{
  margin-right: 10px;
}
.news-style-two .bx-controls.bx-has-controls-direction a.bx-prev i{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
  top: -3px;
}


/** testimonial-style-three **/

.testimonial-style-three{
  position: relative;
  padding-top: 120px;
  z-index: 1;
}

.testimonial-style-three .outer-container{
  position: relative;
}

.testimonial-style-three .outer-container .bg-layer{
  position: absolute;
  left: 60px;
  top: 0px;
  width: calc(50% + 495px);
  height: calc(100% + 120px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-style-three .slider-content{
  position: relative;
  margin-right: -400px;
}

.testimonial-style-three .content-box{
  position: relative;
  display: block;
  background: #fff;
  margin-left: 40px;
  padding-left: 60px;
  padding-bottom: 60px;
  margin-top: -9px;
}

.testimonial-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  padding: 39px 30px 32px 39px;
}

.testimonial-block-one .inner-box .quote-box{
  position: absolute;
  top: 24px;
  right: 31px;
  font-size: 125px;
  color: #f3f3f4;
}

.testimonial-block-one .inner-box .thumb-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 22px;
}

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

.testimonial-block-one .inner-box .rating li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 20px;
  margin-right: 8px;
}

.testimonial-block-one .inner-box .rating li:last-child{
  margin: 0px;
}

.testimonial-block-one .inner-box .rating{
  margin-bottom: 17px;
}

.testimonial-block-one .inner-box p{
  position: relative;
  display: block;
  padding-bottom: 29px;
  margin-bottom: 27px;
}

.testimonial-block-one .inner-box p:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 40px);
  height: 1px;
  left: -40px;
  bottom: 0px;
}

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

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

.testimonial-style-three .owl-nav{
  position: absolute;
  left: 740px;
  bottom: -180px;
}

.testimonial-style-three .owl-nav button{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #f3f3f4;
  text-align: center;
  font-size: 16px;
  color: #1c1c1c;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-style-three .owl-nav button:hover{
  color: #fff;
}

.testimonial-style-three .big-text{
  position: absolute;
  left: 60px;
  bottom: -120px;
  font-size: 140px;
  line-height: 110px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 1430px;
  width: 100%;
  text-align: center;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255,255,255,0.5);
}

/** footer-style-three **/

.footer-style-three{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.footer-style-three:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.90;
}

.footer-style-three .widget-section{
  position: relative;
  padding: 232px 0px 112px 0px;
  border-bottom: 1px solid #373737;
}

.footer-style-three .logo-widget{
  margin-top: 8px;
}

.footer-style-three .logo-widget .footer-logo{
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.footer-style-three .logo-widget .info-list li{
  position: relative;
  display: block;
  padding-left: 40px;
  margin-bottom: 16px;
}

.footer-style-three .logo-widget .info-list li:last-child{
  margin-bottom: 0px;
}

.footer-style-three .logo-widget .info-list li .icon-box{
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 24px;
}

.footer-style-three .logo-widget .info-list li h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
}

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

.footer-style-three a:hover{

}

.footer-style-three .links-widget{
  margin-left: 70px;
}

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

.footer-style-three .widget-title h3{
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
}

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

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

.footer-style-three .download-widget .download-box{
  position: relative;
  display: block;
  padding-left: 67px;
  margin-bottom: 15px;
}

.footer-style-three .download-widget .download-box .icon-box{
  position: absolute;
  left: 0px;
  top: 6px;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 54px;
  font-size: 28px;
  color: #fff;
  text-align: center;
}

.footer-style-three .download-widget .download-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #a9a6a5;
  font-weight: 700;
  margin-bottom: 3px;
}

.footer-style-three .download-widget .download-box button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.footer-style-three .download-widget .download-box button:hover{

}

.footer-style-three .download-widget .copyright{
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 33px;
  border-bottom: 1px solid #373737;
}

.footer-style-three .download-widget .copyright a{
  color: #fff;
}

.footer-style-three .download-widget .copyright a:hover{

}

.footer-style-three .download-widget .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.footer-style-three .download-widget .social-links li:last-child{
  margin: 0px;
}

.footer-style-three .download-widget .social-links li a{
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  font-size: 22px;
  color: #fff;
  text-align: center;
}

.footer-style-three .download-widget .social-links li:first-child a{
  background: #3b5998;
}

.footer-style-three .download-widget .social-links li:nth-child(2) a{
  background: #00acee;
}

.footer-style-three .download-widget .social-links li:nth-child(3) a{
  background: #ff0000;
}

.footer-style-three .download-widget .social-links li:last-child a{
  background: #0e76a8;
}

.footer-style-three .download-widget{
  margin-top: 3px;
}

.footer-style-three .footer-bottom{
  background: transparent;
}

.footer-style-three .footer-bottom button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 27px;
}

.footer-style-three .footer-bottom button img{
  position: absolute;
  top: 0px;
  right: 0px;
}


/*** 

====================================================================
                        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: 'Poppins', 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;
}


/** statements-section **/

.statements-section{
  position: relative;
}

.statements-section .tab-btn-box{
  position: relative;
  display: block;
  border: 1px solid #d6d6d6;
  margin-bottom: 60px;
}

.statements-section .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  padding: 25px 0px 17px 0px;
  border-right: 1px solid #d6d6d6;
  cursor: pointer;
}

.statements-section .tab-btns li:last-child{
  border-right: none;
}

.statements-section .tab-btns li .icon-box{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 19px;
  padding-bottom: 20px;
  color: #292729;
  border-bottom: 1px solid #d6d6d6;
  transition: all 500ms ease;
}

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

.statements-section .tab-btns li.active-btn h4{
  color: #292729;
}

.statements-section .tabs-content{
  position: relative;
  display: block;
  background: #1c1c1c;
  overflow: hidden;
}

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

.statements-section .tabs-content .content-box .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.statements-section .tabs-content .content-box .inner-box{
  position: relative;
  width: 50%;
  padding: 50px 50px 60px 60px;
}

.statements-section .tabs-content .content-box .inner-box h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 23px;
}

.statements-section .tabs-content .content-box .inner-box p{
  color: #a9a6a5;
  margin-bottom: 33px;
}

.statements-section .tabs-content .content-box .inner-box .theme-btn:hover{
  background: #fff;
}

.statements-section .tabs-content .content-box .inner-box .theme-btn:hover span:before{
  color: #fff;
}

.statements-section .tabs-content .big-text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  font-size: 100px;
  line-height: 76px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255,255,255,0.20);
}


/** certification-section **/

.certification-section{
  position: relative;
}

.certification-section .image{
  position: relative;
  display: block;
}

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

.certification-section .content-box{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  padding: 49px;
}

.certification-section .image-1{
  margin-right: -58px;
}

.certification-section .image-2{
  position: relative;
  background: #e4ebf9;
  padding: 10px;
  margin-left: 60px;
}

.certification-section .image-2:before{
  position: absolute;
  content: '';
  border: 1px solid #e6ebed;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  z-index: 1;
}

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

.certification-section .owl-nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  background: #fff;
  width: 145px;
  height: 74px;
  line-height: 74px;
  text-align: center;
  margin-left: 80px;
}

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

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

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

.certification-section .owl-nav button.owl-prev:hover:before,
.certification-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%);
}


/** history-section **/

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

.history-section .inner-box{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.history-section .inner-box:last-child{
  margin-bottom: 0px;
}

.history-section .image-box{
  position: relative;
  display: block;
}

.history-section .inner-box:nth-child(2) .image-box,
.history-section .inner-box:nth-child(4) .image-box{
  margin-left: 70px;
  padding-left: 30px;
}

.history-section .inner-box:first-child .image-box,
.history-section .inner-box:nth-child(3) .image-box{
  margin-right: 70px;
  padding-right: 30px;
}

.history-section .image-box .image{
  position: relative;
  display: block;
}

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

.history-section .image-box .link-box{
  position: absolute;
  top: 50px;
}

.history-section .inner-box:first-child .image-box .link-box,
.history-section .inner-box:nth-child(3) .image-box .link-box{
  right: 0px;
}

.history-section .inner-box:nth-child(2) .image-box .link-box,
.history-section .inner-box:nth-child(4) .image-box .link-box{
  left: 0px;
}

.history-section .image-box .link-box a{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 76px;
  text-align: center;
  font-size: 30px;
  color: #fff;
}

.history-section .image-box .link-box a:hover{
  background: #1c1c1c;
}

.history-section .content-box{
  position: relative;
  display: block;
  margin-top: -16px;
}

.history-section .content-box .text{
  position: relative;
  padding-bottom: 27px;
  padding-top: 41px;
}

.history-section .content-box .text:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: calc(100% + 16px);
  top: 0px;
}

.history-section .inner-box:nth-child(2) .content-box .text:before,
.history-section .inner-box:nth-child(4) .content-box .text:before{
  left: 50px;
}

.history-section .inner-box:first-child .content-box .text:before,
.history-section .inner-box:nth-child(3) .content-box .text:before{
  right: 50px;
}

.history-section .inner-box:nth-child(2) .content-box .text,
.history-section .inner-box:nth-child(4) .content-box .text{
  padding-left: 100px;
}

.history-section .content-box h2{
  position: relative;
  display: block;
  font-size: 72px;
  line-height: 82px;
  color: #e2e2e2;
  font-weight: 700;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e2e2;
}

.history-section .inner-box:nth-child(2) .content-box h2,
.history-section .inner-box:nth-child(4) .content-box h2{
  text-align: right;
}

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

.history-section .content-box p{
  max-width: 440px;
}


.team-section .tab-btn-box{
  position: relative;
  margin-right: 10px;
  margin-top: -18px;
}

.team-section .tab-btn-box .tab-btns li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 0px;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-section .tab-btn-box .tab-btns li.active-btn{

}

.team-section .tab-btn-box .tab-btns li:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 50px;
  height: 1px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.team-section .tab-btn-box .tab-btns li.active-btn:before{
  width: 100%;
}

.team-section .tab-btn-box .tab-btns li:after{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  top: 14px;
  right: 30px;
  opacity: 0;
  transition: all 500ms ease;
}

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

.team-section .tabs-box .btn-column{
  position: relative;
}

.team-section .tabs-box .btn-column:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: calc(100% + 192px);
  top: -114px;
  right: 25px;
}


/** project-section **/

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

.project-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #1c1c1c;
}

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

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

.project-block-one .inner-box .content-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

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

.project-block-one .inner-box .content-box .view-btn a:hover{

}

.project-block-one .inner-box .content-box .text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding-left: 30px;
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box .text{
  opacity: 1;
  bottom: 28px;
}

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

.project-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

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

}

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

.project-block-one .inner-box .content-box h5:before{
  position: absolute;
  content: '';
  width: 30px;
  height: 1px;
  left: -30px;
  top: 14px;
}

.project-section .more-btn{
  padding-top: 30px;
}

.sortable-masonry .filters{
  position: relative;
  display: block;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 60px;
}

.sortable-masonry .filter-tabs{
  position: relative;
  display: block;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  padding: 21px 0px;
}

.sortable-masonry .filter-tabs li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 36px;
  font-family: 'Poppins', sans-serif;
  color: #a9a6a5;
  font-weight: 700;
  margin: 0px 47px;
  cursor: pointer;
  transition: all 500ms ease;
}

.sortable-masonry .filter-tabs li.active{

}

.sortable-masonry .filter-tabs li:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -50%;
}

.sortable-masonry .filter-tabs li:last-child:before{
  display: none;
}

.sortable-masonry .filter-tabs li span{
  position: relative;
  top: -26px;
  font-size: 14px;
}

.case-section.project-page-two{
  padding-top: 0px;
  padding-bottom: 120px;
}

.case-section .case-block{
  padding: 0px 55px;
  border-bottom: 1px solid #e2e2e2;
}

.case-section.project-page-two .outer-container{
  padding: 0px;
}

.case-section .more-btn{
  padding-top: 60px;
}


/** project-style-two **/

.project-style-two{
  position: relative;
  padding: 60px 0px;
}

.project-style-two .content-box{
  position: relative;
  padding: 53px 0px 52px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.project-style-two .content-box:last-child{
  border-bottom: none;
}

.project-style-two .title-box{
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.project-style-two .title-box h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-left: 22px;
}

.project-style-two .title-box h5:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.project-style-two .owl-nav span{
  display: none;
}

.project-style-two .owl-nav{
  position: absolute;
  top: -72px;
  right: 0px;
}

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

.project-style-two .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;
}

.project-style-two .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;
}

.project-style-two .owl-nav button.owl-prev:hover:before,
.project-style-two .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%);
}

.project-block-two .inner-box{
  position: relative;
  display: block;
}

.project-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-two .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  background: #1c1c1c;
}

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

.project-block-two .inner-box:hover .image-box .image img{
  opacity: 0.1;
  transform: scale(1.05);
}

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

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

.project-block-two .inner-box .image-box .view-btn a:hover{

}

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

.project-block-two .inner-box .image-box .btn-box{
  position: absolute;
  top: 78px;
  right: -88px;
  padding: 9px 33px 24px 33px;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-two .inner-box:hover .image-box .btn-box{
  right: -78px;
  opacity: 1;
}

.project-block-two .inner-box .image-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.project-block-two .inner-box .image-box .btn-box a i{
  position: relative;
  display: inline-block;
  font-size: 30px;
  margin-left: 21px;
  transform: rotate(135deg);
  top: 9px;
}

.project-block-two .inner-box .lower-content{
  position: relative;
  display: block;
  text-align: center;
  padding-top: 22px;
}

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

.project-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: #1c1c1c;
}

.project-block-two .inner-box .lower-content h3 a:hover{

}


.project-page-four{
  padding: 120px 0px;
}

.project-page-four .case-block-three .inner-box{
  margin-bottom: 30px;
}

.pagination-wrapper{
  padding-top: 30px;
}


/** project-details **/

.project-details{
  position: relative;
  padding: 114px 0px 77px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.project-details .category-box{
  position: relative;
  display: block;
  padding-bottom: 33px;
  margin-bottom: 73px;
  border-bottom: 1px solid #e2e2e2;
}

.project-details .category-box .info-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.project-details .category-box .info-box p a{
  display: inline-block;
  color: #827e7d;
}

.project-details .category-box .info-box p a:hover{

}

.project-details .upper-box{
  position: relative;
  display: block;
  margin-bottom: 53px;
}

.project-details .upper-box .title-text{
  position: relative;
  margin-top: -5px;
}

.project-details .upper-box .title-text h2{
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
}

.project-details .upper-box .text p{
  margin-bottom: 26px;
}

.project-details .upper-box .text p:last-child{
  margin-bottom: 0px;
}

.project-details .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 70px;
}

.project-details .image-box .image{
  position: relative;
  display: block;
}

.project-details .image-box .image img{
  width: 100%;
}

.project-details .image-box .owl-nav span{
  display: none;
}

.project-details .image-box .owl-nav{
  position: absolute;
  top: 0px;
  right: -23px;
  background: #fff;
  width: 145px;
  height: 74px;
  line-height: 60px;
  text-align: center;
}

.project-details .image-box .owl-nav button{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  width: 38px;
  height: 24px;
}

.project-details .image-box .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;
}

.project-details .image-box .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;
}

.project-details .image-box .owl-nav button.owl-prev:hover:before,
.project-details .image-box .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%);
}

.project-details .lower-box .tab-btns{
  position: relative;
  margin-top: 27px;
}

.project-details .lower-box .tab-btns:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: calc(100% + 27px);
  left: 0px;
  top: -14px;
}

.project-details .lower-box .tab-btns li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #a9a6a5;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 40px;
  transition: all 500ms ease;
  margin-bottom: 16px;
}

.project-details .lower-box .tab-btns li:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 0px;
  height: 1px;
  left: 0px;
  top: 10px;
  transition: all 500ms ease;
}

.project-details .lower-box .tab-btns li.active-btn:before{
  width: 30px;
}

.project-details .lower-box .tab-btns li:last-child{
  margin-bottom: 0px;
}

.project-details .lower-box .tab-btns li span{
  position: relative;
  display: inline-block;
  padding-right: 23px;
  cursor: pointer;
}

.project-details .lower-box .tab-btns li.active-btn{

}

.project-details .lower-box .tab-btns li span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  top: -1px;
  right: 0px;
  opacity: 0;
  transition: all 500ms ease;
}

.project-details .lower-box .tab-btns li.active-btn span:before{
  opacity: 1;
}

.project-details .lower-box .content-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 23px;
}

.project-details .lower-box .content-box p{
  margin-bottom: 17px;
}

.project-details .lower-box .content-box .list-item li{
  position: relative;
  display: block;
  padding-left: 38px;
  margin-bottom: 11px;
}

.project-details .lower-box .content-box .list-item li:last-child{
  margin-bottom: 0px;
}

.project-details .lower-box .content-box .list-item li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-10.png);
  width: 18px;
  height: 18px;
  left: 0px;
  top: 6px;
  background-repeat: no-repeat;
}

.related-project{
  position: relative;
  padding: 108px 0px 112px 0px;
}


/** pricing-style-two **/

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

.pricing-block-two{
  /* max-width: 370px; */
  margin: 0 auto;
}

.pricing-block-two .pricing-table{
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #CCC;
}
.pricing-block-two .pricing-table .feature-list li.light:before {
  content: '\f00d';
  background: #1c1c1c;
}

.pricing-block-two .pricing-table .price-box{
  position: relative;
  display: block;
  padding: 13px 30px 2px 20px;
}

.pricing-block-two .pricing-table .price-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 76px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.pricing-block-two .pricing-table .price-box h2{
  position: relative;
  display: inline-block;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
}

.pricing-block-two .pricing-table .price-box h2 .fraction{
  font-size: 18px;
}

.pricing-block-two .pricing-table .price-box h2 .symble{
  font-size: 26px;
  position: relative;
  display: inline-block;
  top: -17px;
}

.pricing-block-two .pricing-table .price-box h5{
  position: absolute;
  top: 9px;
  right: 20px;
  font-size: 30px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-block-two .pricing-table .price-box h5 span{
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 30px;
}
.pricing-block-two .pricing-table .feature-list li:before {
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-size: 10px;
  color: #fff;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  top: 19px;
  right: 0px;
}
.pricing-block-two .pricing-table .feature-list li:before {
  background: #e4492e;
}
.pricing-block-two .pricing-table .title-box{
  position: relative;
  display: block;
  background: #1c1c1c;
  padding: 15px 20px 15px 20px;
}

.pricing-block-two .pricing-table .title-box h3{
  display: block;
  font-size: 22px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
}

.pricing-block-two .pricing-table .title-box p{
  color: #a9a6a5;
}

.pricing-block-two .pricing-table .table-content{
  position: relative;
  display: block;
  padding: 21px ;
  background: #e4ebf9;
  border: 1px solid #e2e2e2;
  border-top: none;
  height: auto;
}

.pricing-block-two .pricing-table .feature-list{
  margin-bottom: 20px;
  min-height: 95px;
}

.pricing-block-two .pricing-table .feature-list li{
  position: relative;
  display: block;
  padding: 10px 25px 10px 0px;
  border-bottom: 1px solid #e8eaed;
  color: #000;
  font-weight: 500;
  font-size:16px;
}

.pricing-block-two .pricing-table .feature-list li:last-child{
  border-bottom: none;
}

/* .pricing-block-two .pricing-table .feature-list li:before{
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-size: 10px;
  color: #fff;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  top: 19px;
  right: 0px;
} */

/* .pricing-block-two .pricing-table .feature-list li.light:before{
  content: '\f00d';
  background: #a9a6a5;
} */

.pricing-block-two .pricing-table .theme-btn{
  background: #1c1c1c;
  width: 100%;
}

.pricing-block-two .pricing-table .theme-btn:hover{

}

.pricing-block-two .pricing-table .theme-btn span:before{
  color: #1c1c1c;
}

.pricing-block-two.active-block .pricing-table .title-box{

}

.pricing-block-two.active-block .pricing-table .title-box p{
  color: #fed9d9;
  margin-bottom: 0px;
}


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


/** shop-page-section **/

.shop-page-section{
  position: relative;
  padding: 114px 0px 120px 0px;
}

.default-sidebar{
  position: relative;
  display: block;
}

.default-sidebar .search-widget{
  position: relative;
  margin-bottom: 40px;
}

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

.default-sidebar .search-form .form-group:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 40px;
  left: 0px;
  bottom: 0px;
}

.default-sidebar .search-form .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 17px;
  color: #827e7d;
  padding-left: 20px;
  padding-right: 30px;
  transition: all 500ms ease;
}

.default-sidebar .search-form .form-group button[type='submit']{
  position: absolute;
  top: 24px;
  right: 0px;
  font-size: 20px;
  color: #232323;
  cursor: pointer;
  transition: all 500ms ease;
}

.default-sidebar .search-form .form-group input:focus + button,
.default-sidebar .search-form .form-group button:hover{

}

.default-sidebar .sidebar-widget{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  padding-left: 30px;
  padding-bottom: 5px;
  margin-bottom: 40px;
}

.default-sidebar .sidebar-widget:last-child{
  margin-bottom: 0px;
}

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

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

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

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

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

.default-sidebar .category-widget .category-list li a span{
  position: relative;
  float: right;
  color: #a9a6a5;
  transition: all 500ms ease;
}

.default-sidebar .category-widget .category-list li a:hover{

}

.default-sidebar .category-widget .category-list li a:hover span{

}

.default-sidebar .category-widget .category-list li a span:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 35px;
  left: -29px;
  top: -17px;
  transition: all 500ms ease;
}

.default-sidebar .category-widget .category-list li a:hover span:before{
  opacity: 0;
}

.shop-sidebar{
  margin-right: 20px;
}

.default-sidebar .category-widget .category-list li a span:after{
  position: absolute;
  content: '';
  width: 36px;
  height: 1px;
  left: -94px;
  top: 11px;
  opacity: 0;
  transition: all 500ms ease;
}

.default-sidebar .category-widget .category-list li a:hover span:after{
  opacity: 1;
}

.shop-sidebar .filter-widget .range-slider{
  padding-right: 30px;
  padding-top: 34px;
}

.range-slider .price-range-slider{
  margin-bottom: 18px;
}

.range-slider .input{
  position: relative;
  padding-left: 10px;
  float: right;
  width: 80px;
}

.range-slider .input:before {
  position: absolute;
  content: '$';
  left: 0px;
  top: 0px;
}

.range-slider .input:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 100px;
  height: 100%;
  left: -61px;
  top: 0px;
}

.range-slider .input input{
  background:none;
  font-size: 17px;
  color: #827e7d;
}

.range-slider .ui-widget.ui-widget-content{
  height:4px;
  border:none;
  background:#dfe4e6; 
  border-radius: 0px;
}

.range-slider .ui-slider .ui-slider-range{
  top:0px;
  height:4px;
  border-radius: 0px;
}

.range-slider .ui-widget-content .ui-state-default{
  top:-3px;
  width:10px;
  height:10px;
  border: none;
  cursor:pointer; 
  margin-left: 0px;
  border-radius: 0px;
}

.shop-sidebar .filter-widget .range-slider .price-range p{
  position: relative;
  float: left;
  color: #827e7d;
}

.shop-sidebar .filter-widget .filter-btn button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 11px;
  transition: all 500ms ease;
}

.shop-sidebar .filter-widget{
  padding-bottom: 29px;
}

.shop-sidebar .filter-widget .filter-btn button:hover{

}

.shop-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding: 0px 0px 23px 90px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
  min-height: 106px;
}

.shop-sidebar .post-widget .post:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}

.shop-sidebar .post-widget .post .thumb-box{
  position: absolute;
  left: 0px;
  top: 5px;
  width: 70px;
  height: 70px;
  border: 1px solid #e2e2e2;
}

.shop-sidebar .post-widget .post h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.shop-sidebar .post-widget .post h6 a{
  display: inline-block;
  color: #1c1c1c;
}

.shop-sidebar .post-widget .post h6 a:hover{

}

.shop-sidebar{
  margin-top: -18px;
}

.shop-sidebar .post-widget .post .price{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.shop-sidebar .post-widget .widget-title{
  margin-bottom: 26px;
}

.our-shop .item-shorting .short-box{
  position: relative;
  display: flex;
  align-items: center;
}

.our-shop .item-shorting .short-box p{
  margin-right: 5px;
}

.our-shop .item-shorting .short-box .nice-select{
  font-size: 17px;
  color: #1c1c1c;
  text-transform: capitalize;
  padding-right: 50px;
  font-weight: 400;
}

.our-shop .item-shorting .short-box .nice-select:after{
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #a9a6a5;
  border-right: 2px solid #a9a6a5;
  right: 3px;
}

.our-shop .item-shorting .short-box .nice-select .list{
  min-width: 150px;
}

.our-shop .item-shorting{
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.shop-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  margin-bottom: 30px;
}

.shop-block-one .inner-box .image-box{
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 354px;
  align-items: center;
  justify-content: center;
}

.shop-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% - 30px);
  height: 1px;
  right: 0px;
  bottom: 0px;
}

.shop-block-one .inner-box .image-box .offer-box{
  position: absolute;
  top: 4px;
  right: 4px;
}

.shop-block-one .inner-box .image-box .offer-box .discount{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 9px;
}

.shop-block-one .inner-box .image-box .offer-box .sale{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 9px;
}

.shop-block-one .inner-box .image-box h5{
  position: absolute;
  left: 0px;
  bottom: 14px;
  width: 100%;
  padding-left: 30px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.shop-block-one .inner-box .image-box h5 del{
  color: #a9a6a5;
  margin-left: 10px;
}

.shop-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  margin-top: -18px;
}

.shop-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 22px 20px 21px 30px;
}

.shop-block-one .inner-box .lower-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.shop-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: #1c1c1c;
}

.shop-block-one .inner-box .lower-content h4 a:hover{

}

.shop-block-one .inner-box .lower-content .review-box{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-block-one .inner-box .lower-content .review-box .rating li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 16px;
  color: #f59845;
  margin-right: 5px;
}

.shop-block-one .inner-box .lower-content .review-box .rating li:last-child{
  margin-right: 10px;
}

.shop-block-one .inner-box .lower-content .review-box a{
  position: relative;
  display: inline-block;
  color: #827e7d;
  font-size: 15px;
}

.shop-block-one .inner-box .lower-content .review-box a:hover{

}


/** shop-details **/

.shop-details{
  position: relative;
  padding: 120px 0px;
}

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

.shop-details-content .bxslider .image-box{
  position: relative;
  display: flex;
  margin-right: 30px;
  align-items: center;
  justify-content: center;
  min-height: 530px;
  margin-bottom: 12px;
  border: 1px solid #e2e2e2;
}

.shop-details-content .bxslider .image-box img{
  width: 100%;
}

.shop-details-content .bxslider .thumb-box li{
  position: relative;
  float: left;
  margin-right: 12px;
  width: 126px;
  height: 126px;
}

.shop-details-content .bxslider .thumb-box li:last-child{
  margin: 0px !important;
}

.shop-details-content .bxslider .thumb-box li a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2e2;
  width: 126px;
  height: 126px;
}

.shop-details-content .bxslider .thumb-box li a.active{
  
}

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

.shop-details-content .content-box .rating-box{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.shop-details-content .content-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #f59845;
  margin-right: 2px;
}

.shop-details-content .content-box .rating-box a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #827e7d;
  margin-left: 5px;
}

.shop-details-content .content-box .rating-box a:hover{

}

.shop-details-content .content-box .othre-options h4{
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 17px;
}

.shop-details-content .item-quantity{
  position: relative;
  display: inline-block;
  max-width: 146px;
  width: 100%;
  float: left;
  padding: 0px 45px;
}

.shop-details-content .item-quantity .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  max-width: 50px;
  width: 100%;
  height: 50px;
}

.shop-details-content .item-quantity input.quantity-spinner {
  line-height: 56px;
  height: 54px;
  width: 54px !important;
  padding: 0px !important;
  box-shadow: none !important;
  font-family: 'Poppins', sans-serif;
  border: none;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  border: 1px solid #e2e2e2;
  background-color: #e4ebf9;
  border-radius: 0px;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  position: absolute;
  height: 54px;
  width: 40px;
  background: transparent;
  padding: 0px 0px;
  left: -45px;
  top: -54px;
  border: 1px solid #e2e2e2;
  border-radius: 0px;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 54px;
  width: 40px;
  background: transparent;
  padding: 0px 0px;
  right: -45px;
  top: -54px;
  border: 1px solid #e2e2e2;
  border-radius: 0px;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down:before {
  content: "\f10c";
  font-family: 'flaticon';
  font-size: 12px;
  color: #a9a6a5;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up:before {
  content: "\f10c";
  font-family: 'flaticon';
  font-size: 12px;
  color: #a9a6a5;
  display: inline-block;
  transform: rotate(180deg);
}

.bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  width: 100%;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  display: none;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  margin-top: 0px;
}

.shop-details-content .content-box .othre-options .theme-btn{
  padding: 15px 30px;
}

.shop-details-content .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.shop-details-content .content-box h3 del{
  color: #a9a6a5;
  margin-left: 15px;
}

.shop-details-content .content-box h2{
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 17px;
}

.shop-details-content .content-box p{
  display: block;
  margin-bottom: 27px;
}

.shop-details-content .content-box .product-highlights{
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 37px;
  border-bottom: 1px solid #e2e2e2;
}

.shop-details-content .content-box .product-highlights li{
  position: relative;
  display: block;
  padding-left: 180px;
  margin-bottom: 12px;
}

.shop-details-content .content-box .product-highlights li:last-child{
  margin-bottom: 0px;
}

.shop-details-content .content-box .product-highlights li h5{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.shop-details-content .content-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.shop-details-content .content-box .othre-options{
  position: relative;
  display: block;
  margin-bottom: 41px;
}

.shop-details-content .content-box .othre-options .item-quantity,
.shop-details-content .content-box .othre-options .cart-box,
.shop-details-content .content-box .othre-options .like-box{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.shop-details-content .content-box .othre-options .like-box{
  margin-right: 0px;
}

.shop-details-content .content-box .othre-options .like-box a{
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 60px;
  font-size: 20px;
  background-color: #e4ebf9;
  border: 1px solid #e2e2e2;
  text-align: center;
}

.shop-details-content .content-box .othre-options .like-box a:hover{
  color: #fff;
}

.shop-details-content .content-box .share-option .share-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.shop-details-content .content-box .share-option .share-links li:last-child{
  margin: 0px !important;
}

.shop-details-content .content-box .share-option .share-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 20px;
  background: #3b5998;
  color: #fff;
}

.shop-details-content .content-box .share-option .share-links li:nth-child(2) a{
  background: #55acee;
}

.shop-details-content .content-box .share-option .share-links li:nth-child(3) a{
  background: #0071bc;
}

.shop-details-content .content-box .share-option .share-links li:last-child a{
  background: #cd201f;
}

.shop-details-content{
  margin-bottom: 120px;
}

.shop-details-content .content-box{
  margin-top: -6px;
}

.shop-details .product-discription{
  position: relative;
  display: block;
}

.shop-details .product-discription .tabs-content .text p{
  margin-bottom: 15px;
}

.shop-details .product-discription .tabs-content .text p:last-child{
  margin-bottom: 0px;
}

.shop-details .product-discription .tab-btn-box{
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 60px;
}

.shop-details .product-discription .tab-btn-box:before{
  position: absolute;
  content: '';
  background-color: #e2e2e2;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 28px;
}

.shop-details .product-discription .tab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #a9a6a5;
  text-align: center;
  padding: 13px 27px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  cursor: pointer;
  margin: 0px 8.5px;
  transition: all 500ms ease;
}

.shop-details .product-discription .tab-btn-box .tab-btns li.active-btn{
  
}

.shop-details .product-discription .single-comment-box .inner-box{
  position: relative;
  display: block;
  background-color: #e4ebf9;
  border: 1px solid #e2e2e2;
  padding: 32px 30px 32px 125px;
}

.shop-details .product-discription .single-comment-box .inner-box .comment-thumb{
  position: absolute;
  left: 30px;
  top: 40px;
  width: 70px;
  height: 70px;
}

.shop-details .product-discription .single-comment-box .inner-box .comment-thumb img{
  width: 100%;
}

.shop-details .product-discription .single-comment-box .inner-box .rating{
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.shop-details .product-discription .single-comment-box .inner-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 12px;
  float: left;
  margin-right: 4px;
  color: #f59845;
}

.shop-details .product-discription .single-comment-box .inner-box .rating li:last-child{
  margin: 0px !important;
}

.shop-details .product-discription .single-comment-box .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 11px;
}

.shop-details .product-discription .single-comment-box .inner-box h4 span{
  font-size: 17px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.shop-details .product-discription .customer-comment{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.shop-details .product-discription .comment-box{
  position: relative;
  display: block;
  background-color: #fff;
  padding: 52px 60px 60px 60px;
  border: 1px solid #e6ebed;
}

.shop-details .product-discription .comment-box h2{
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 9px;
}

.shop-details .product-discription .comment-box p{
  margin-bottom: 24px;
}

.shop-details .product-discription .comment-box .form-group{
  position: relative;
  margin-bottom: 15px;
}

.shop-details .product-discription .comment-box .column:last-child .form-group{
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.shop-details .product-discription .comment-box .form-group input[type='text'],
.shop-details .product-discription .comment-box .form-group input[type='email'],
.shop-details .product-discription .comment-box .form-group textarea{
  position: relative;
  width: 100%;
  height: 58px;
  border: 1px solid #e6ebed;
  font-size: 18px;
  color: #707582;
  padding: 10px 20px;
  color: #7c8083;
  transition: all 500ms ease;
}

.shop-details .product-discription .comment-box .form-group textarea{
  height: 120px;
  resize: none;
}

.shop-details .product-discription .comment-box .form-group input:focus,
.shop-details .product-discription .comment-box .form-group textarea:focus{

}

.shop-details .product-discription .comment-box .review-box h6,
.shop-details .product-discription .comment-box .review-box .rating{
  position: relative;
  float: left;
}

.shop-details .product-discription .comment-box .review-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 28px;
  float: left;
  margin-right: 4px;
  color: #f59845;
}

.shop-details .product-discription .comment-box .review-box .rating li:last-child{
  margin: 0px !important;
}

.shop-details .product-discription .comment-box .review-box h6{
  margin-right: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.shop-details .product-discription .comment-box .review-box{
  position: relative;
  display: block;
  margin-bottom: 33px;
  margin-top: 8px;
}

.shop-details .related-product .shop-block-one .inner-box{
  margin-bottom: 0px;
}


.custom-controls-stacked{
  position: relative;
}

.shop-details .custom-controls-stacked{
  margin-bottom: 25px;
  margin-top: 10px;
}

.custom-control.material-checkbox {
  --color: #ebebeb;
  padding: 0px;
  margin: 0px;
  margin-bottom: 0px !important;
}

.custom-control.material-checkbox .material-control-input {
  display: none;
}

.custom-control.material-checkbox .material-control-indicator {
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0px;
  width: 14px;
  height: 14px;
  background: #e4ebf9;
  border: 1px solid #e2e2e2;
  cursor: pointer;
}

.custom-control.material-checkbox .material-control-indicator:before{
  position: absolute;
  content: "\f12e";
  font-family: 'flaticon';
  font-size: 8px;
  left: -1px;
  top: 0px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  opacity: 0;
  transition: all 500ms ease;
}

.custom-control.material-checkbox .material-control-input:checked ~ .material-control-indicator:before{
  opacity: 1;
}

.custom-controls-stacked .description {
  position: relative;
  display: inline-block;
  padding: 0px;
  margin-left: 25px;
  font-size: 17px;
  color: #827e7d;
  cursor: pointer;
}


/** cart-section **/

.cart-section{
  position:relative;
  padding: 115px 0px 120px 0px;
}

.cart-outer{
  position:relative;  
}

.cart-outer .table-outer{
  position:relative;
  width:100%;
  overflow-x: auto;
  margin-bottom:40px;
}

.cart-outer .cart-table{
  width:100%;
  min-width:900px;
  border-bottom:1px solid #e2e2e2;
}

.cart-outer .cart-table tbody{
  padding-bottom:30px;
}

.cart-table .cart-header{
  position:relative;
  width:100%;
  border:1px solid #e2e2e2;
}

.cart-table thead tr th{
  line-height:30px;
  padding:21px 28px 19px 40px;
  font-weight:700;
  font-size:20px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  border-right:1px solid #e2e2e2;
  text-align: center;
}

.cart-table thead tr th .fa{
  font-size:18px; 
}

.cart-table tbody tr td{
  padding:30px 40px;
}

.cart-table tbody tr .qty .item-quantity{
  border:1px solid #e2e2e2;
}

.cart-table tbody tr .qty .quantity-spinner{
  background:#ffffff; 
}

.cart-table tbody tr .prod-column .column-box{
  position: relative;
  min-height: 80px;
  padding-top: 11px;
  padding-left: 135px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb{
  position:absolute;
  left:-40px;
  top:-30px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e2e2e2;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img{
  display:block;
  max-width:100%;
}

.cart-table tbody tr .prod-column .column-box h5{
  position:relative;
  font-size:16px;
  line-height: 26px;
  font-weight: 700;
  text-align: left;
  max-width: 200px;
}

.cart-table tbody tr .sub-total{
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
}

.cart-table tbody tr .remove-btn{
  position:relative;
  display: inline-block;
  font-size:18px;
  color:#adaaa9;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border: 1px solid #b1afae;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
}

.cart-table tbody tr .remove-btn:hover{

}

.cart-table tbody tr td{
  vertical-align:middle;
  border-left:1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  text-align: center;
}

.cart-table tbody tr .total-price{
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.cart-table tbody tr td:last-child{
  border-right:1px solid #ebebeb;
}

.cart-section .cart-outer .totle-table{
  position: relative;
  margin-bottom: 12px;
}

.cart-section .cart-outer .totle-table .total p{
  color: #1c1c1c;
}

.cart-section .cart-outer .totle-table .total p span{

}

.cart-table tbody tr td.qty input{
  width: 50px;
  height: 50px;
  border: 1px solid #e6ebed;
  text-align: center;
  padding: 10px 10px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
}

.cart-section .apply-coupon .form-group{
  position: relative;
  float: left;
  margin-right: 20px;
  margin-bottom: 0px;
}

.cart-section .apply-coupon .form-group:last-child{
  margin-right: 0px;
}

.cart-section .apply-coupon .form-group input[type="text"] {
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  width: 250px;
  height: 54px;
  font-size: 18px;
  font-weight: 400;
  color: #827e7d;
  padding: 10px 20px;
  background: #ffffff;
  transition: all 500ms ease;
}

.cart-section .apply-coupon .form-group input:focus{

}

.cart-section .apply-coupon .form-group button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  background: #e4ebf9;
  border: 1px solid #e2e2e2;
  padding: 12.5px 29px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.cart-section .apply-coupon .form-group button:hover{
  color: #fff;
}

.cart-section .btn-box button{
  float: left;
  margin-right: 20px;
}

.cart-section .btn-box button:last-child{
  margin-right: 0px;
}

.cart-section .btn-box .checkout-btn{
  color: #fff;
}

.cart-section .btn-box .checkout-btn:hover{
  background: #1c1c1c;
}

.cart-section .btn-box .theme-btn{
  padding: 15px 44px;
  background: #1c1c1c;
  color: #fff;
}


/** checkout **/

.checkout-page-section{
  position: relative;
  padding: 120px 0px;
}

.checkout-page-section .information-inner{
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  padding: 42px 60px 36px 60px;
}

.checkout-page-section h3{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 30px;
}

.checkout-page-section .information-inner .field-input{
  position: relative;
  display: block;
  margin-bottom: 20px;
  min-height: 60px;
}

.checkout-page-section .information-inner .field-input input[type='text'],
.checkout-page-section .information-inner .field-input input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #e4ebf9;
  border: 1px solid #e4ebf9;
  font-size: 17px;
  color: #827e7d;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.checkout-page-section .information-inner .field-input input:focus{

}

.checkout-page-section .information-inner .field-input .nice-select{
  position: relative;
  border: 1px solid #e4ebf9 !important;
  color: #827e7d;
  background: #e4ebf9;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  padding: 0px 20px;
  text-transform: capitalize;
}

.checkout-page-section .information-inner .field-input .nice-select:after{
  content: '';
  background: transparent;
  border-bottom: 2px solid #a9a6a5;
  border-right: 2px solid #a9a6a5;
  transform: rotate(45deg) !important;
  width: 8px;
  height: 8px;
  border-radius: 0px;
  top: 30px;
  right: 25px;
}

.checkout-page-section .information-inner .custom-control.material-checkbox .material-control-indicator{
  top: 7px;
}

.checkout-page-section .information-inner .description{
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.checkout-page-section .information-inner .contact-information{
  position: relative;
  padding-bottom: 22px;
}

.checkout-page-section .information-inner .column:last-child{
  min-height: auto;
}

.checkout-page-section .order-summary{
  position: relative;
  display: block;
  border: 1px solid #e6ebed;
  padding: 19px 30px 40px 30px;
}

.checkout-page-section .order-information{
  position: relative;
  margin-bottom: 94px;
}

.checkout-page-section .accordion .payment-info .field-input{
  position: relative;
  margin-bottom: 20px;
}

.checkout-page-section .accordion .payment-info .field-input input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #fff;
  background: #fff;
  font-size: 17px;
  color: #827e7d;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.checkout-page-section .accordion .payment-info .field-input input:focus{

}

.checkout-page-section .accordion .payment-info .field-input .theme-btn{
  width: 100%;
  padding: 17px 30px;
}

.checkout-page-section .accordion-box .block .acc-content{
  padding: 0px 30px 30px 30px;
}

.checkout-page-section .accordion-box .block .acc-content .payment-info{
  position: relative;
  display: block;
  background-color: #e4ebf9;
  border: 1px solid #e2e2e2;
  padding: 30px 30px 10px 30px;
}

.checkout-page-section .accordion-box .block{
  margin-bottom: 20px;
  border: 1px solid #e6ebed;
  box-shadow: none !important;
}

.checkout-page-section .accordion-box .block:last-child{
  margin-bottom: 0px;
}

.checkout-page-section .payment-method h3{
  margin-bottom: 32px;
}

.checkout-page-section .accordion-box h4{
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.checkout-page-section .accordion-box .block .acc-btn{
  padding: 17px 30px 18px 30px;
  border: none;
  background: transparent !important;
}

.checkout-page-section .accordion-box .block .acc-btn .icon-outer{
  position: absolute;
  top: 20px;
  right: 23px;
  opacity: 1 !important;
  color: #a9a6a5;
  font-size: 16px;
}

.checkout-page-section .order-summary .inner-box .single-item{
  position: relative;
  display: block;
  padding: 13px 0px 17px 0px;
  border-bottom: 1px solid #e6ebed;
  margin-bottom: 6px;
}

.checkout-page-section .order-summary .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

.checkout-page-section h5{
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.checkout-page-section .order-summary .inner-box .single-item h5{
  margin-bottom: 5px;
}

.checkout-page-section .order-summary .inner-box .single-item p span{

}

.checkout-page-section .order-summary .total-box{
  position: relative;
  display: block;
  padding: 19px 0px;
  border-bottom: 1px solid #e6ebed;
}

.checkout-page-section .order-summary .total-box li{
  position: relative;
  display: block;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.checkout-page-section .order-summary .total-box li:last-child{
  margin-bottom: 0px;
}

.checkout-page-section .order-summary .total-box li span{
  float: right;
  color: #827e7d;
}

.checkout-page-section .order-summary .tax-box{
  position: relative;
  display: block;
  padding: 20px 0px 21px 0px;
  margin-bottom: 13px;
}

.checkout-page-section .order-summary .tax-box h5 span{
  float: right;
}

.checkout-page-section .order-summary .theme-btn{
  padding: 19px 40px;
}

.checkout-page-section .order-summary .tax-box h5{
  font-size: 18px;
}



/** myaccount-section **/

.myaccount-section{
  position: relative;
  padding: 111px 0px 120px 0px;
}

.myaccount-section h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 31px;
}

.myaccount-section .login-content .form-inner{
  position: relative;
  display: block;
  background: #e4ebf9;
  padding: 32px 40px 39px 40px;
  border: 1px solid #e2e2e2;
}

.myaccount-section .form-inner label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 13px;
}

.myaccount-section .form-inner .form-group{
  position: relative;
  margin-bottom: 23px;
}

.myaccount-section .form-inner input[type='text'],
.myaccount-section .form-inner input[type='email'],
.myaccount-section .form-inner input[type='password']{
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  background: #fff;
  border: 1px solid #e2e2e2;
  font-size: 18px;
  color: #75706d;
  padding: 10px 25px;
  transition: all 500ms ease;
}

.myaccount-section .form-inner input:focus{

}

.myaccount-section .form-inner .theme-btn{
  width: 100%;
  padding: 15px 30px;
}

.myaccount-section .form-inner .form-group.message-btn{
  margin-bottom: 17px;
}

.myaccount-section .login-content .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.myaccount-section .login-content .form-inner .forgot-password button{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  transition: all 500ms ease;
}

.myaccount-section .login-content .form-inner .forgot-password button:hover{

}

.myaccount-section .custom-control.material-checkbox .material-control-indicator{
  background: #fff;
}


.myaccount-section .custom-controls-stacked .description{
  color: #827e7d;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.myaccount-section .login-content .custom-control.material-checkbox .material-control-indicator{
  border: 1px solid #e2e2e2;
}

.myaccount-section .register-content .form-inner{
  position: relative;
  display: block;
  border: 1px solid #e6ebed;
  padding: 32px 40px 12px 40px;
}

.myaccount-section .register-content .form-inner .message-btn,
.myaccount-section .register-content .custom-controls-stacked{
  padding-top: 10px;
}

.myaccount-section .register-content .form-inner input{
  background: #e4ebf9;
}

.myaccount-section .register-content .custom-control.material-checkbox .material-control-indicator{
  top: 7px;
}


/** faq-page-section **/

.faq-page-section{
  position: relative;
}

.faq-page-section .sidebar-side{
  position: relative;
}

.faq-page-section .sidebar-side:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  right: 25px;
  top: 0px;
}

.faq-page-section .faq-sidebar{
  position: relative;
  margin-right: 10px;
  padding: 113px 0px 30px 0px;
}

.faq-page-section .faq-sidebar h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 13px;
}

.faq-page-section .faq-sidebar .category-list li{
  position: relative;
  display: block;
  padding: 14px 0px;
}

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

.faq-page-section .faq-sidebar .category-list li a:hover,
.faq-page-section .faq-sidebar .category-list li a.current{

}

.faq-page-section .faq-sidebar .category-list li a:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 50px;
  height: 1px;
  left: 0px;
  bottom: -14px;
  transition: all 500ms ease;
}

.faq-page-section .faq-sidebar .category-list li a:hover:before,
.faq-page-section .faq-sidebar .category-list li a.current:before{
  width: 100%;
}

.faq-page-section .faq-sidebar .category-list li a:after{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  top: 0px;
  right: 25px;
  font-weight: 400;
  opacity: 0;
  transition: all 500ms ease;
}

.faq-page-section .faq-sidebar .category-list li a.current:after,
.faq-page-section .faq-sidebar .category-list li a:hover:after{
  opacity: 1;
}

.faq-page-section .content-box{
  padding: 113px 0px 114px 0px;
}

.faq-page-section .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0px 0px 0px;
}

.faq-page-section .image-box .image{
  position: relative;
  display: block;
}

.faq-page-section .image-box .image:before{
  position: absolute;
  content: '';
  background: #000000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.faq-page-section .image-box .image-content{
  position: absolute;
  left: 0px;
  bottom: 30px;
  z-index: 1;
}

.faq-page-section .image-box .image-content h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 31px;
  padding-left: 30px;
}

.faq-page-section .image-box .image-content h2 span{
  display: block;
  font-weight: 400;
}

.faq-page-section .image-box .image-content .theme-btn.btn-two span:before{
  background: url(../images/icons/icon-bg-2.png);
  color: #fff;
}


/** error-section **/

.error-section{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}

.error-section .scroll-text{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.error-section .scroll-text .text-box-one,
.error-section .scroll-text .text-box-two{
  position: absolute;
  left: 0px;
  width: 100%;
  min-width: 5000px;
  padding: 21px 0px;
}

.error-section .scroll-text .text-inner{
  -moz-animation: scroll-left 90s linear infinite;
  -webkit-animation: scroll-left 90s linear infinite;
  animation: scroll-left 90s linear infinite;
}

.error-section .scroll-text .text-box-one{
  top: 0px;
}

.error-section .scroll-text .text-box-two{
  bottom: 0px;
}

.error-section .scroll-text h6{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px 22px;
}

.error-section .inner-box{
  position: relative;
  display: block;
  min-width: 770px;
  width: 100%;
  margin: 0 auto;
}

.error-section .inner-box .error-title{
  position: relative;
  display: inline-block;
}

.error-section .inner-box .error-title h1{
  display: block;
  font-size: 200px;
  line-height: 200px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: -1px 1px 0 #291f1d,1px 1px 0 #291f1d,1px -1px 0 #291f1d,-1px -1px 0 #291f1d;
}

.error-section .inner-box .error-title h1.hidden-text{
  position: absolute;
  left: 0px;
  top: 10px;
  text-shadow: -1px 1px 0 #291f1d,1px 1px 0 #291f1d,1px -1px 0 #291f1d,-1px -1px 0 #291f1d;
  color: #e4ebf9;
  z-index: -1;
}

.error-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 13px;
}

.error-section .inner-box p{
  margin-bottom: 33px;
}

.error-section .inner-box .form-inner .form-group{
  position: relative;
  margin-bottom: 30px;
}

.error-section .inner-box .form-inner .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #e2e2e2;
  font-size: 17px;
  color: #827e7d;
  padding: 10px 80px 10px 20px;
  transition: all 500ms ease;
}

.error-section .inner-box .form-inner .form-group input[type='search']:focus{

}

.error-section .inner-box .form-inner .form-group button{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  line-height: 48px;
  background: #e4ebf9;
  font-size: 20px;
  color: #232323;
  cursor: pointer;
  transition: all 500ms ease;
}

.error-section .inner-box .form-inner .form-group input:focus + button,
.error-section .inner-box .form-inner .form-group button:hover{
  color: #fff;
}

.chooseus-style-three.service-page-one .image-box{
  margin-left: 0px;
}

.chooseus-style-three.service-page-one .image-box .text-box{
  background: rgba(228, 73, 46, 0.95);
}

.chooseus-style-three.service-page-one .content-box .download-box .icon-box{
  color: #fff;
}

.service-style-three.service-page-2 .service-block-three .inner-box{
  margin-bottom: 50px;
}

.service-style-three.service-page-2{
  padding-bottom: 70px;
}

.service-style-two .title-box .text p{
  margin-bottom: 34px;
}

.service-style-two .title-box .text a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}

.service-style-two .title-box .text a:hover{

}

.service-style-two .title-box .text a span{
  position: relative;
  padding-left: 55px;
}

.service-style-two .title-box .text a span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  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;
}

.service-style-two .title-box .text a:hover span:before{
  color: #fff;
}

.service-style-two.service-page-3 .service-block-two .inner-box{
  margin-bottom: 60px;
}

.service-style-two.service-page-3{
  padding-bottom: 60px;
}


/** 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: 'Poppins', 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: #e4ebf9;
  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: 'Poppins', 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: 'Poppins', 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: 'Poppins', 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: #e4ebf9;
  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: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  padding: 19px 30px;
  background: #e4ebf9;
  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;
}

.industry-style-three.industries-page-one{
  background: #fff;
}

.industry-style-three.industries-page-one:before{
  display: none;
}

.industry-style-three.industries-page-one .industries-block-one .inner-box .image-box:before{
  background: #fff;
}

.industry-style-three.industries-page-one .industries-block-one .inner-box .content-box .link-box a{
  background: rgba(228, 73, 46, 0.90);
}

.industry-style-three.industries-page-one .industries-block-one .inner-box .content-box .light-icon{
  color: #e4ebf9;
}

.industry-style-three.industries-page-one .industries-block-one .inner-box .content-box h3 a{
  color: #1c1c1c;
}

.industry-style-three.industries-page-one .industries-block-one .inner-box .content-box h3 a:hover{

}

.testimonial-style-two:before{
  background: #1c1c1c;
}

.testimonial-style-two.industries-page-two .light-icon{
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2f2f2f;
}


/** industry-style-four **/

.industry-style-four{
  position: relative;
}

.industry-style-four .image-column{
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  border-right: 1px solid #e2e2e2;
}

.industry-style-four .image-box{
  position: relative;
  display: block;
  margin-right: 100px;
  padding-top: 217px;
  padding-right: 100px;
}

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

.industry-style-four .image-box .image-2{
  position: absolute;
  top: 0px;
  right: 0px;
}

.industry-style-four .image-box .big-text{
  position: absolute;
  display: inline-block;
  top: 144px;
  left: -140px;
  font-size: 72px;
  line-height: 82px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  transform: rotate(90deg);
}

.industry-style-four .image-box h5{
  position: absolute;
  display: inline-block;
  top: 230px;
  right: -60px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-left: 20px;
  color: #fff;
  transform: rotate(90deg);
}

.industry-style-four .image-box h5:before{
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.industry-style-four .image-box .year-box{
  position: absolute;
  right: 0px;
  bottom: 120px;
  width: 120px;
  text-align: center;
  padding: 32px 0px 30px 0px;
}

.industry-style-four .image-box .year-box h2{
  position: relative;
  display: inline-block;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  font-weight: 700;
  padding-right: 17px;
}

.industry-style-four .image-box .year-box h2 span{
  position: absolute;
  top: -15px;
  right: 0px;
  font-size: 36px;
}

.industry-style-four .content-box{
  position: relative;
  display: block;
  padding-top: 114px;
  padding-bottom: 120px;
  margin-left: 100px;
}

.industry-style-four .content-box .sec-title{
  margin-bottom: 31px;
}

.industry-style-four .content-box .text{
  margin-bottom: 19px;
}

.industry-style-four .content-box .text p{
  margin-bottom: 20px;
}

.industry-style-four .content-box .text p:first-child{

}

.industry-style-four .content-box .text p:last-child{
  margin-bottom: 0px;
}

.industry-style-four .content-box .search-form{
  position: relative;
  margin-bottom: 52px;
}

.industry-style-four .content-box .search-form .form-group{
  position: relative;
  margin-bottom: 0px;
  width: 100%;
}

.industry-style-four .content-box .search-form .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  font-size: 17px;
  color: #1c1c1c;
}

.industry-style-four .content-box .search-form .form-group:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 115px);
  height: 1px;
  right: 0px;
  bottom: 0px;
}

.industry-style-four .content-box .search-form .form-group button{
  position: absolute;
  top: 19px;
  right: 0px;
  font-size: 16px;
  color: #a9a6a5;
  cursor: pointer;
  transition: all 500ms ease;
}

.industry-style-four .content-box .search-form .form-group input:focus + button,
.industry-style-four .content-box .search-form .form-group button:hover{

}

.industries-details .service-block-two .inner-box .image-box .image:before{
  background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.20) 50%);
}



/** blog-grid **/

.blog-grid{
  position: relative;
  padding: 120px 0px;
}

.blog-grid .news-block-one .inner-box{
  margin-bottom: 30px;
}

.sidebar-page-container{
  position: relative;
  padding: 120px 0px;
}

.blog-list-one .blog-sidebar{
  margin-right: 50px;
}

.blog-sidebar .post-widget .widget-title{
  margin-bottom: 23px;
}

.blog-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding-bottom: 23px;
  margin-bottom: 23px;
  border-bottom: 1px solid #e2e2e2;
  min-height: 146px;
  padding-right: 30px;
}

.blog-sidebar .post-widget .post:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}

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

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

.blog-sidebar .post-widget .post h4 a{
  display: inline-block;
  color: #1c1c1c;
}

.blog-sidebar .post-widget .post h4 a:hover{

}

.blog-sidebar .post-widget .post h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #a9a6a5;
  padding-left: 22px;
}

.blog-sidebar .post-widget .post h5 i{
  position: absolute;
  left: 0px;
  top: 8px;
  font-size: 14px;
}

.blog-sidebar .post-widget{
  padding-bottom: 0px;
}

.blog-sidebar .tags-widget .widget-title{
  margin-bottom: 23px;
}

.blog-sidebar .tags-widget .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
  margin-bottom: 9px;
}

.blog-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #4b4b4b;
  padding-left: 25px;
}

.blog-sidebar .tags-widget .tags-list li a:hover{

}

.blog-sidebar .tags-widget .tags-list li a:before{
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  background: #e4ebf9;
  border: 1px solid #e2e2e2;
  left: 0px;
  top: 5px;
  transition: all 500ms ease;
}

.blog-sidebar .tags-widget .tags-list li a:hover:before{
  background: transparent;
}

.blog-sidebar .tags-widget .tags-list li a:after{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  left: 5px;
  top: 10px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.blog-sidebar .tags-widget .tags-list li a:hover:after{
  transform: scale(1,1);
}

.blog-sidebar .tags-widget{
  padding-bottom: 16px;
}

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

.blog-sidebar .appointment-widget .image-box .image{
  position: relative;
  display: block;
}

.blog-sidebar .appointment-widget .image-box .image img{
  width: 100%;
}

.blog-sidebar .appointment-widget .image-box .image:before{
  position: absolute;
  content: '';
  background: #000000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.blog-sidebar .appointment-widget .image-box .image-content{
  position: absolute;
  left: 0px;
  bottom: 30px;
  z-index: 1;
}

.blog-sidebar .appointment-widget .image-box .image-content h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 31px;
  padding-left: 30px;
}

.blog-sidebar .appointment-widget .image-box .image-content h2 span{
  display: block;
  font-weight: 400;
}

.blog-sidebar .appointment-widget .image-box .image-content .theme-btn.btn-two span:before{
  background: url(../images/icons/icon-bg-3.png);
  color: #fff;
}

.blog-list-one .blog-list-content{
  position: relative;
}

.blog-list-one .blog-list-content:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  left: -40px;
  top: 0px;
}

.blog-list-one .pagination-wrapper{
  padding-top: 0px;
}

.blog-list-one .news-block-two:last-child .inner-box{
  border-bottom: none;
  margin-bottom: 10px;
}

.blog-list-one .news-block-two:last-child .inner-box:before{
  display: none;
}

.blog-list-two .blog-sidebar{
  margin-left: 50px;
}

.blog-list-two .news-block-one .inner-box .lower-content h3{
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 14px;
}

.news-block-one .inner-box .lower-content p{
  margin-bottom: 24px;
}

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

.news-block-one .inner-box .lower-content .link-box a:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 14px;
  height: 1px;
  left: -29px;
  top: 12px;
}

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

}

.news-block-one .inner-box .lower-content .link-box a span{
  position: relative;
  padding-right: 27px;
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content .link-box a:hover span{
  padding-right: 35px;
}

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

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

.blog-list-two .news-block-one .inner-box .lower-content{
  padding-top: 15px;
}

.blog-list-two .news-block-one .inner-box .lower-content .post-info{
  padding-bottom: 17px;
  margin-bottom: 26px;
}

.blog-list-two .news-block-one .inner-box{
  padding: 29px 29px 33px 29px;
}

.blog-list-two .news-block-one .inner-box .lower-content .post-info:before{
  width: calc(100% + 30px);
}

.blog-list-two .news-block-one .inner-box .image-box .category{
  left: -30px;
}

.blog-list-two .news-block-one .inner-box{
  margin-bottom: 50px;
}

.blog-list-two .pagination-wrapper{
  padding-top: 10px;
}

.blog-sidebar{
  margin-top: -25px;
}

.blog-list-two .blog-list-content{
  position: relative;
}

.blog-list-two .big-text{
  position: absolute;
  display: inline-block;
  top: 345px;
  right: -403px;
  font-size: 40px;
  line-height: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e2e2e2;
  transform: rotate(90deg);
}

.blog-sidebar .appointment-widget .image-box .theme-btn:hover{
  background: #fff;
}


/** blog-details **/

.blog-details{
  border-top: 1px solid #e2e2e2;
}

.blog-details .blog-sidebar{
  margin-left: 50px;
}

.blog-details .content-side{
  position: relative;
}

.blog-details .content-side:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: calc(100% + 120px);
  top: 0px;
  right: 15px;
}

.blog-details-content{
  position: relative;
  padding-right: 30px;
}

.blog-details-content .content-one .title-box{
  position: relative;
  display: block;
  padding-bottom: 30px;
  margin-bottom: 24px;
}

.blog-details-content .content-one .title-box:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 30px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.blog-details-content .content-one .title-box .option-list{
  position: absolute;
  top: 0px;
  right: 30px;
}

.blog-details-content .content-one .title-box .option-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.blog-details-content .content-one .title-box .option-list li:last-child{
  margin: 0px;
}

.blog-details-content .content-one .title-box .option-list li a{
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #e2e2e2;
  background: #e4ebf9;
  text-align: center;
  font-size: 15px;
  color: #a9a6a5;
}

.blog-details-content .content-one .title-box .option-list li a:hover{
  color: #fff;
}

.blog-details-content .content-one .title-box .category{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 20px;
  margin-bottom: 22px;
}

.blog-details-content .content-one .title-box h2{
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.blog-details-content .content-one .post-info li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
  font-size: 18px;
  color: #827e7d;
  font-family: 'Poppins', sans-serif;
  padding-left: 23px;
}

.blog-details-content .content-one .post-info li:last-child{
  margin: 0px;
}

.blog-details-content .content-one .post-info li:before{
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 1px;
  height: 14px;
  top: 7px;
  right: -13px;
}

.blog-details-content .content-one .post-info li:last-child:before{
  display: none;
}

.blog-details-content .content-one .post-info li a{
  position: relative;
  display: inline-block;
  color: #827e7d;
}

.blog-details-content .content-one .post-info li a:hover{

}

.blog-details-content .content-one .post-info li i{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 16px;
  color: #a9a6a5;
}

.blog-details-content .content-one .upper-box{
  margin-bottom: 40px;
}

.blog-details-content .content-one .image-box{
  position: relative;
  display: block;
  margin-bottom: 43px;
}

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

.blog-details-content .content-one .text p{
  margin-bottom: 25px;
}

.blog-details-content .content-one .text p:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-one{
  margin-bottom: 43px;
}

.blog-details-content .content-two h2{
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 25px;
}

.blog-details-content .content-two p{
  margin-bottom: 26px;
}

.blog-details-content .content-two p:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-two .text{
  margin-bottom: 32px;
}

.blog-details-content .content-two blockquote{
  position: relative;
  padding: 0px;
  margin: 0px;
  padding-left: 130px;
}

.blog-details-content .content-two blockquote:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: calc(100% - 18px);
  left: 100px;
  top: 11px;
}

.blog-details-content .content-two blockquote .icon-box{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e3e3e3;
}

.blog-details-content .content-two blockquote p{
  font-size: 19px;
  line-height: 35px;
  color: #1c1c1c;
  padding-bottom: 20px;
  margin-bottom: 22px;

}

.blog-details-content .content-two blockquote p:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 30px);
  height: 1px;
  right: 0px;
  bottom: 0px;
}

.blog-details-content .content-two blockquote h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.blog-details-content .content-two blockquote .designation{
  position: relative;
  display: block;
}

.blog-details-content .content-two{
  margin-bottom: 53px;
}

.blog-details-content .two-column{
  margin: 0px 5px;
}

.blog-details-content .two-column .image-column{
  padding: 0px 10px;
}

.blog-details-content .two-column .image-box{
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.blog-details-content .two-column .image-box img{
  width: 100%;
}

.blog-details-content .content-three h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 25px;
}

.blog-details-content .content-three p{
  margin-bottom: 26px;
}

.blog-details-content .content-three span{
  position: relative;
  display: block;
  color: #1c1c1c;
  margin-bottom: 17px;
}

.blog-details-content .content-three .list-item li{
  position: relative;
  display: block;
  font-size: 17px;
  color: #827e7d;
  padding-left: 36px;
  margin-bottom: 9px;
}

.blog-details-content .content-three .list-item li:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-three .list-item li:before{
  position: absolute;
  content: "\f12e";
  font-family: 'flaticon';
  font-size: 16px;
  left: 0px;
  top: 2px;
}

.blog-details-content .content-three .list-item{
  margin-bottom: 47px;
}

.blog-details-content .content-three .tags-list li{
  position: relative;
  display: inline-block;
}

.blog-details-content .content-three .tags-list li h5{
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.blog-details-content .content-three .tags-list li h5 span{
  position: relative;
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
}

.blog-details-content .content-three .tags-list li a{
  display: inline-block;
  color: #827e7d;
}

.blog-details-content .content-three .tags-list li a:hover{

}

.blog-details-content .content-three{
  position: relative;
  padding-bottom: 39px;
  margin-bottom: 44px;
}

.blog-details-content .content-three:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 30px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.blog-details-content .post-nav-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-details-content .post-nav-btn h6{
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.blog-details-content .post-nav-btn h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.blog-details-content .post-nav-btn h4 a{
  display: inline-block;
  color: #1c1c1c;
}

.blog-details-content .post-nav-btn h4 a:hover{

}

.blog-details-content .post-nav .btn-box{
  position: relative;
  display: block;
  margin-top: 22px;
}

.blog-details-content .post-nav .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  background: #f3f3f3;
  border: 1px solid #e2e2e2;
  padding: 15px 30px;
  text-align: center;
  width: 100%;
}

.blog-details-content .post-nav .btn-box a:hover{
  background: #1c1c1c;
  border-color: #1c1c1c;
}

.blog-details-content .post-nav .btn-box a span{
  position: relative;
  padding-left: 22px;
}

.blog-details-content .post-nav .btn-box a span:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-11.png);
  width: 12px;
  height: 12px;
  left: 0px;
  top: 6px;
  background-repeat: no-repeat;
}

.blog-details-content .post-nav{
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 40px;
}

.blog-details-content .post-nav:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 30px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.blog-details-content .group-title{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.blog-details-content .group-title h2{
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
}

.blog-details-content .author-box .inner-box{
  position: relative;
  display: block;
  padding-left: 200px;
}

.blog-details-content .author-box .inner-box .thumb-box{
  position: absolute;
  left: 0px;
  top: 6px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.blog-details-content .author-box .inner-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .author-box .inner-box h6{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content .author-box .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-details-content .author-box .inner-box p{
  margin-bottom: 23px;
}

.blog-details-content .author-box .inner-box .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.blog-details-content .author-box .inner-box .social-links li:last-child{
  margin: 0px;
}

.blog-details-content .author-box .inner-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #3b5998;
}

.blog-details-content .author-box .inner-box .social-links li:nth-child(2) a{
  background: #55acee;
}

.blog-details-content .author-box .inner-box .social-links li:nth-child(3) a{
  background: #0071bc;
}

.blog-details-content .author-box .inner-box .social-links li:last-child a{
  background: #cd201f;
}

.blog-details-content .author-box{
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 40px;
}

.blog-details-content .author-box:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 30px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.blog-details-content .comments-box .comment{
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 35px;
}

.blog-details-content .comments-box .comment:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-box .comment .comment-thumb{
  position: absolute;
  left: 0px;
  top: 7px;
  width: 70px;
  height: 70px;
}

.blog-details-content .comments-box .comment .comment-thumb img{
  width: 100%;
}

.blog-details-content .comments-box .comment .comment-info{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.blog-details-content .comments-box .comment .comment-info h4{
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.blog-details-content .comments-box .comment .comment-info .comment-date{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #a9a6a5;
}

.blog-details-content .comments-box .comment p{
  display: block;
  margin-bottom: 21px;
}

.blog-details-content .comments-box .comment .reply-btn{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content .comments-box .comment .reply-btn:hover{

}

.blog-details-content .comments-box .comment .reply-btn span{
  position: relative;
  padding-left: 36px;
}

.blog-details-content .comments-box .comment .reply-btn span:before{
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 12px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -1px;
}

.blog-details-content .comments-box .comment.replay-comment{
  margin-left: 30px;
}

.blog-details-content .comments-box{
  position: relative;
  padding-bottom: 52px;
  margin-bottom: 49px;
}

.blog-details-content .comments-box:before{
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: calc(100% + 30px);
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.blog-details-content .comments-form-area .form-inner .form-group{
  position: relative;
  margin-bottom: 20px;
}

.blog-details-content .comments-form-area .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area .form-inner .form-group input[type='text'],
.blog-details-content .comments-form-area .form-inner .form-group input[type='email'],
.blog-details-content .comments-form-area .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 58px;
  border: 1px solid #e2e2e2;
  font-size: 17px;
  color: #827e7d;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.blog-details-content .comments-form-area .form-inner .form-group textarea{
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.blog-details-content .comments-form-area .form-inner .form-group input:focus,
.blog-details-content .comments-form-area .form-inner .form-group textarea:focus{

}

.blog-details-content .comments-form-area .group-title h2{
  margin-bottom: 4px;
}

.blog-details-content .comments-form-area .group-title{
  margin-bottom: 34px;
}

.blog-details-content .comments-form-area .custom-controls-stacked{
  margin-top: 3px;
  margin-bottom: 5px;
}

.blog-details-content .big-text{
  position: absolute;
  display: inline-block;
  top: 345px;
  right: -403px;
  font-size: 40px;
  line-height: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e2e2e2;
  transform: rotate(90deg);
}


/** 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: #e4ebf9;
  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;
  color: #000;
}

.info-block-one .inner-box p a{
  display: inline-block;
  color: #000;
  font-weight: 500;
}

.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: 'Poppins', 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-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;
}
.topbtn {
  cursor: pointer;
  color: #fff !important;
  font-size: 15px;
  text-align: left;
  margin-right: 15px;
  text-transform: uppercase;
  background: #052858;
  max-width: max-content;
  padding: 1px 13px;
  border-radius: 30px;
  font-weight: 400;
}

.productdetail
{border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.productdetail .price{color: #000;}
.topbtn1 {
  cursor: pointer;
  color: #fff !important;
  font-size: 15px;
  text-align: center;
  margin-right: 15px;
  text-transform: uppercase;
  background: #052858;
  padding: 9px 17px;
  border-radius: 7px;
}

.topbar{margin-top: 15px;}






/* .testimonial-section .PackagesCarousel_packageCardTop__2KcRE{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;padding:16px 16px 10px;border-radius:15px 15px 0 0;border:1px solid #f5f5f5;height:70px;} */
.testimonial-section .PackagesCarousel_packageNameWrapper__x_bkx{max-width:100%;}
.testimonial-section .PackagesCarousel_packageName__6l2df{font-weight:600;font-size:14px;line-height:21px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;word-wrap:break-word;color:#052858;}
.testimonial-section .PackagesCarousel_packageCardTopLeft__XXgwR{font-weight:500;font-size:10px;line-height:15px;color:#9d9fa1;text-align:right;flex-shrink:0;}
.testimonial-section .PackagesCarousel_packageCardTopLeft__XXgwR>p:first-child>span{background:linear-gradient(223.23deg, #fff -39.74%, #dbf5f9 94.44%);border-radius:5px;padding:3px;font-weight:500;font-size:10px;line-height:15px;color:#000;}
.testimonial-section .PackagesCarousel_packageCardMid__cNM8Z{font-weight:400;font-size:12px;line-height:18px;color:#000;padding:10px 16px 0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;word-wrap:break-word;height:45px;}
.testimonial-section .PackagesCarousel_packageCardBottom__8yniU{margin-top:10px;display:flex;align-items:center;padding:10px 16px;background: #e4ebf9;border-radius:0 0 15px 15px;justify-content:space-between;}
.testimonial-section .PackagesCarousel_packageCardBottom__8yniU>div{display:flex;align-items:center;width: auto;background: #fff;padding-left: 4%;border-top-right-radius: 5px;border-bottom-right-radius: 5px;padding-right: 5%;}
.testimonial-section .PackagesCarousel_packagePrice__rx848{display:flex;flex-direction:column;align-items:center;}
.testimonial-section .PackagesCarousel_packagePrice__offerPrice__PKLgs{font-weight:600;font-size:18px;line-height:20px;color:#2f3032;}
.testimonial-section .PackagesCarousel_packagePrice__mainPrice__tnHcv{font-weight:400;font-size:14px;line-height:16px;text-decoration:line-through;color:#000;}
.testimonial-section .PackagesCarousel_horizontalLine__t5SFP{border:none;/* border-left:1px solid #9d9fa1; */margin:0 12px;height:30px;}
.testimonial-section .PackagesCarousel_packageRedcash__13wAb{font-size:20px;line-height:20px;color:#fe4042;display:flex;flex-direction:column;}
.testimonial-section .PackagesCarousel_packageRedcash__13wAb>span:first-child{font-weight: 600;}
.testimonial-section .PackagesCarousel_packageRedcash__13wAb>span:last-child{font-weight: 400;}
.testimonial-section .PackagesCarousel_bookButton__AG2_E{background:#012455;border-radius:5px;padding:10px 20px;font-weight:600;font-size:14px;color:#fff;border:none;width:90px;height:40px;display:flex;align-items:center;justify-content:center;}
.testimonial-section .PackagesCarousel_packageCardTop__2KcRE{
  display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 601px){
  .testimonial-section .PackagesCarousel_packageCard__0zpAO:first-of-type{margin-left:unset!important;background:rgb(228 235 249);}
  .testimonial-section .PackagesCarousel_packageCard__0zpAO:nth-last-child(2){margin-right:unset!important;}

  .testimonial-section .PackagesCarousel_packageCard__0zpAO{width:368px;height:240px;}
  .testimonial-section .PackagesCarousel_packageCardTop__2KcRE{height:90px;padding:16px 20px;}
  .testimonial-section .PackagesCarousel_packageCardMid__cNM8Z{font-weight:400;font-size:16px;line-height:24px;height: 110px;cursor:pointer;}
  .testimonial-section .PackagesCarousel_packageCardBottom__8yniU{padding: 14px 14px 14px 0px;}
  .testimonial-section .PackagesCarousel_packageNameWrapper__x_bkx{cursor:pointer;max-width:100%;}
  .testimonial-section .PackagesCarousel_packageName__6l2df{font-weight:600;font-size: 22px;line-height: 32px;color: #052858;}
.testimonial-section .PackagesCarousel_packageCardTopLeft__XXgwR{font-weight:500;font-size:14px;line-height:21px;margin-top:2px;}
.testimonial-section .PackagesCarousel_packageCardTopLeft__XXgwR>p:first-child>span{font-weight:500;font-size:14px;line-height:21px;padding:4px;}
.testimonial-section .PackagesCarousel_packagePrice__offerPrice__PKLgs{font-weight:600;font-size:20px;line-height:26px;}
.testimonial-section .PackagesCarousel_packagePrice__mainPrice__tnHcv{font-weight:400;font-size:16px;line-height:24px;}
.testimonial-section .PackagesCarousel_horizontalLine__t5SFP{height:50px;}
.testimonial-section .PackagesCarousel_packageRedcash__13wAb{font-size: 20px;line-height: 20px;}
.testimonial-section .PackagesCarousel_packageRedcash__13wAb>span:last-child{margin-top:5px;}
.testimonial-section .PackagesCarousel_bookButton__AG2_E{font-weight:600;font-size:18px;line-height:27px;cursor:pointer;width:100px;height:50px;}
}
.testimonial-section .PackagesCarousel_packageCard__0zpAO{border-radius:5px;padding:0;width:98%;flex-shrink:0;scroll-snap-align:center;background:#fff;height: 281px;display:flex;flex-direction:column;justify-content:space-between;}
.testimonial-section .owl-dots{text-align: center;margin-top: 20px;}
.testimonial-section .owl-theme .owl-dots .owl-dot span{border-radius: 50px}
.testimonial-section .owl-theme .owl-dots .owl-dot.active span{background: none repeat scroll 0 0 #052858;}
.testimonial-section .accordion-button:not(.collapsed){color: #000 !important;background-color: transparent !important;}
.testimonial-section .accordion-button:focus{border-color: #000;box-shadow: none;}
.testimonial-section p{color: #000;margin-bottom: 1rem;}
.accordion-button{font-size: 20px;font-weight: 600;color: #052858;}
.Types-sec ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  list-style-type: none;
}
.Types-sec li {
  padding: 20px;
  color: #000;
  border-radius: 10px!important;
  border: 1px dashed #22222245!important;
  padding-right: 10px;
  font-size: 16px;
  font-family: var(--font-family-title);
  font-weight: 500;
  transition: 0.8s all;
}
.Types-sec li:hover {
  color: #1f1f1f;
  background: white;
  border: 1px dashed #1f1f1f!important;
  transform: translateY(-10px);
  box-shadow: 1px 1px 20px 13px #22222236;
}
  .Types-sec1 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  list-style-type: none;
}
.Types-sec1 li {
  padding: 20px;
  color: #000;
  border-radius: 10px!important;
  padding-right: 10px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.8s all;
  align-items: center;
  display: flex;
  MARGIN: 0PX;
}
.Types-sec1 li:hover {
  color: #1f1f1f;
  background: white;
  border: 1px dashed #1f1f1f!important;
  transform: translateY(-10px);
  box-shadow: 1px 1px 20px 13px #22222236;
}


.packages ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  list-style-type: none;
}
.packages li {
  padding: 20px;
  color: #000;
  border-radius: 10px!important;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.8s all;
}
.packages1 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  list-style-type: none;
}
.packages1 li {
  padding: 20px;
  color: #000;
  border-radius: 10px!important;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.8s all;
}





.social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}
.social-links{margin-top: 25px !important;}
.header-top .social-links li:before {
  position: absolute;
  content: '';
  background: #a9a6a5;
  width: 4px;
  height: 4px;
  top: 12px;
  right: -14px;
  border-radius: 50%;
}

.social-links i{font-size: 24px;}

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


.footer1 i{color:#000;font-weight: 600;}
.footer1 a{color:#000;font-weight: 400;}
.footer1 a:hover{color:#000;text-decoration:none;}
.footer1 ul{list-style:none;margin:0;padding:0;}
.footer1 ul li{line-height:30px;margin-top:5px;}
.footer1 ul li i{margin-right:5px;}
.ftcontact li{display:flex;margin-bottom:15px;}
.continfo{color:#222;float:left;line-height:24px;width:calc(100% - 34px);font-size:16px;font-weight:500;}
.ftcontact li i{color:#000;float:left;font-size:20px;text-align:left;width:26px;margin-right:0;}
.ftcontact li i.fa-envelope-o{font-size:16px;}






@media (max-width:991px){
#section-234-2 h3{font-size:23px!important;text-transform:capitalize;}
}
div.ct-section-inner-wrap{max-width:1280px;}
@media (max-width:767px){
.ct-section{padding:10px 0!important;}
.packages ul {
  display: grid;
  grid-template-columns: 1fr !important;
  grid-gap: 15px;
  list-style-type: none;
}
.theme-btn.btn-two{width: 100%;margin-bottom: 15px;        font-size: 18px;
  font-weight: 500;}
.Types-sec1 ul{grid-template-columns: 1fr !important;}
.accordion-button{font-size: 12px;}
.rs-breadcrumbs{padding: 0px !important;}
.packages1 ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  list-style-type: none;
}
}
.ct-section{width:100%;background-size:cover;background-repeat:repeat;}
.ct-section>.ct-section-inner-wrap{display:flex;flex-direction:column;align-items:flex-start;}
.ct-div-block{display:flex;flex-wrap:nowrap;flex-direction:column;align-items:flex-start;}
.ct-new-columns{display:flex;width:100%;flex-direction:row;align-items:stretch;justify-content:center;flex-wrap:wrap;}
.ct-link-button{display:inline-block;text-align:center;text-decoration:none;}
.ct-link-button{background-color:#1e73be;border:1px solid #1e73be;color:#fff;padding:10px 16px;}
@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){
.ct-div-block,.ct-headline{max-width:100%;}
}
.ct-section-inner-wrap{max-width:1280px;}
.ct-link-button{border-radius:3px;}
.ct-section-inner-wrap{padding-top:100px;padding-right:20px;padding-bottom:100px;padding-left:20px;}
.ct-new-columns>.ct-div-block{padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px;}
.ct-section-inner-wrap{margin-left:auto;margin-right:auto;height:100%;}
.ct-headline{margin-bottom:20px;}
div.ct-section-inner-wrap{max-width:1280px;}
.ct-div-block{display:flex;flex-wrap:nowrap;flex-direction:column;align-items:flex-start;}
.ct-link-button{display:inline-block;text-align:center;text-decoration:none;}
.ct-link-button{background-color:#1e73be;border:1px solid #1e73be;color:#fff;padding:10px 16px;}
@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){
.ct-div-block,.ct-headline{max-width:100%;}
}
.ct-section-inner-wrap{max-width:1280px;}
.ct-link-button{border-radius:3px;}
div.ct-section-inner-wrap{max-width:1280px;}
.ct-section{width:100%;background-size:cover;background-repeat:repeat;}
.ct-section>.ct-section-inner-wrap{display:flex;flex-direction:column;align-items:flex-start;}
.ct-div-block{display:flex;flex-wrap:nowrap;flex-direction:column;align-items:flex-start;}
.ct-new-columns{display:flex;width:100%;flex-direction:row;align-items:stretch;justify-content:center;flex-wrap:wrap;}
@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){
.ct-div-block,.ct-headline{max-width:100%;}
}
.ct-section-inner-wrap{max-width:1280px;}
.ct-section-inner-wrap{padding-top:50px;padding-right:20px;padding-bottom:50px;padding-left:20px;}
.ct-new-columns>.ct-div-block{padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left: 20px;}
.ct-headline{margin-bottom:20px;}
.blue{font-size:14px!important;line-height:20px!important;padding:10px 30px!important;font-weight:400px!important;border-radius:30px!important;color:#fff!important;border:0!important;background:#fe4042!important;box-shadow:5px 5px 10px #000,-5px -5px 10px #000!important;transition:all .2s ease-in-out;}
.blue:hover{box-shadow:-5px -5px 10px #1e461b,5px 5px 10px #1e461b;}
.blue:after{content:url("https://cdn-dflfo.nitrocdn.com/OaFAGpZKlCoOMOurxZtKwOfOUWPFlUzj/assets/images/optimized/rev-513c82a/zeochem.net/images/arrow-right-white.svg");padding-left:10px;}
#section-234-2>.ct-section-inner-wrap{padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;}
#section-234-2{background-color:#052858;padding: 30px 0px;}
#div_block-239-2{align-items:flex-end;text-align:center;justify-content:center;flex-direction:column;display:flex;}
#div_block-240-2{justify-content:center;align-items:flex-start;text-align:center;}
@media (max-width:991px){
#div_block-239-2{flex-direction:column;display:flex;align-items:center;justify-content:center;}
}
@media (max-width:991px){
#div_block-240-2{flex-direction:column;display:flex;align-items:center;text-align:center;justify-content:center;}
}
@media (max-width:767px){
#div_block-239-2{flex-direction:column;display:flex;align-items:center;}
}
@media (max-width:991px){
#new_columns-238-2>.ct-div-block{width:100%!important;}
}
#new_columns-238-2{margin-top:30px;margin-bottom:30px;}
#headline-235-2{margin-bottom:0;margin-top:0;}
@media (max-width:1280px){
#headline-235-2{text-align:left;}
}
@media (max-width:767px){
#headline-235-2{text-align:center;}
}
.ct-section{width:100%;background-size:cover;background-repeat:repeat;}
.ct-section>.ct-section-inner-wrap{display:flex;flex-direction:column;align-items:flex-start;}
.ct-div-block{display:flex;flex-wrap:nowrap;flex-direction:column;align-items:flex-start;}
.ct-new-columns{display:flex;width:100%;flex-direction:row;align-items:stretch;justify-content: flex-start;flex-wrap:wrap;}
.ct-link-button{display:inline-block;text-align:center;text-decoration:none;}
.ct-link-button{background-color:#1e73be;border:1px solid #1e73be;color:#fff;padding:10px 16px;}
@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){
.ct-div-block,.ct-headline{max-width:100%;}
}
.ct-section-inner-wrap{max-width:1280px;}
#section-234-2 h3{font-size:56px;font-weight:700;line-height:60px;color:#fff;}
#section-234-2 h3{font-size:48px;font-weight:700;line-height:54px;color:#1e461b;}
#section-234-2 h3{font-size:28px;font-weight:700;line-height:32px;color:#fff;}









.rs-breadcrumbs{background-color: #052858;padding: 50px 0px;}
.rs-breadcrumbs .breadcrumbs-image img{width:100%;}
.rs-breadcrumbs .breadcrumbs-image .breadcrumbs-inner .breadcrumbs-text{padding:36px 0 42px;border-radius:5px; width: 100%; display: flex; justify-content: center; align-items: center;}
.rs-breadcrumbs .breadcrumbs-image .breadcrumbs-inner .breadcrumbs-text .breadcrumbs-title{width:auto;font-size:48px;text-transform:uppercase;margin:0 0 4px;color:#fff;}
.topbtn1-big {
  padding-left: 80px !important;
  padding-right: 80px !important;
  display: flex;
  text-align: center;
  justify-content: center;
}
@media (max-width:768px){
.rs-breadcrumbs .breadcrumbs-image .breadcrumbs-inner .breadcrumbs-text .breadcrumbs-title{font-size:24px;margin:22px 0 4px;text-align: center;}
}

@media all{
.container1{position:relative;z-index:10;width:100%;max-width:1600px;margin-right:auto;margin-left:auto;}
@media screen and (max-width:991px){
.container1{padding-right:4em;padding-left:4em;}
}
@media screen and (max-width:479px){
.container1{padding-right:8vw;padding-left:8vw;}
}

.row{display:flex;flex-wrap:wrap;justify-content:flex-end;}
@media (min-width:2200px){
.container1{max-width:calc(100% - 400px);}
}
@media (max-width:1800px){
.container1{padding-left:90px;padding-right:90px;}
}
@media (max-width:767px){
.container1{padding-left:30px;padding-right:30px;}
}
@media (min-width:768px) and (max-width:992px){
.container1{padding-left:50px;padding-right:50px;}
}
@media screen and (min-width:1024px) and (max-width:1200px){
.container1{padding-left:50px;padding-right:50px;}
}
.ttm-row{padding:110px 0;}
.bg-img11{background-image:url(../images/row-bgimage-11.png);background-size:cover;background-repeat:no-repeat;background-position:bottom;}
.section-title{position:relative;margin-bottom:26px;}
.section-title h5{font-weight:500;text-transform:uppercase;font-size:14px;line-height:14px;margin-bottom:10px;letter-spacing:2px;font-family:'Roboto', sans-serif;}
.section-title .title-header{position:relative;margin-bottom:17px;}
.container1{counter-reset:featuredbox-number;}
.ml_100{margin-left:-100px!important;}
.section-title h5{color:#3368c6;}
.ttm-bgcolor-grey{background-color:#fff;}
@media all and (max-width: 1199px){
.ttm-row .container1{max-width:100%;}
.ttm-row .container1{padding:0;}
.ttm-row .container1 > .row{margin:0;}
}
@media (max-width: 991px){

.ttm-row{padding:20px 0!important;}
.bg-img11{background-position:right;}
.res-991-ml-0{margin-left:0!important;}
}
.title-desc{text-align:justify;font-size:18px;line-height:30px;color: #000;}
}


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



.single-item {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 15px;
}

.single-item:before {
  border: 3px solid #052858;
}
.single-item:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.content-box1 p{color: #000;text-align: justify;}

label.custom-file-upload {
  border-color: #e1e6eb;
  background: #fff;
  border-radius: 0px;
  padding: 15px;
  color: rgb(33 37 41) !important;
  letter-spacing: 0.5px;
  font-size: 13px !important;
  margin-bottom: 10px;
  border: 1px solid #e1e6eb;
  
  font-weight: 600 !important;
}
.custom-file-upload {
  width: 100%;
  display: block;
  margin-top: 0px;
  cursor: pointer;
  height: 50px;
  color: #2a2a2a !important;
  font-weight: normal !important;
}

input[type="file"] {
  display: none !important;
}
i.fa-solid.fa-check {
  color: #198754;
}
a {
  COLOR: #052858;
}
@media (min-width: 576px) {
  .large-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .large-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .large-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .large-container  {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .large-container{
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto;
  }
  
}
@media (max-width: 1441px) {
  
  .main-header .outer-box{
    padding: 0px 75px
  }
}







.LocateNearLab_find_lab_near_me__I2dnd{background: linear-gradient(225.9deg, #0e3f6c, #235b8e 101.63%);border-radius:5px;width: max-content;height:48px;justify-content:space-between;align-items:center;cursor:pointer;padding:0 16px;margin-top: 40px;}
.LocateNearLab_find_lab_desc__iloHi,.LocateNearLab_find_lab_near_me__I2dnd{display:flex;flex-direction:row;column-gap:10px;}
.LocateNearLab_find_lab_desc__iloHi p{font-weight:500;font-size:16px;line-height:21px;color:#fff;}
.LocateNearLab_find_lab_svg__v4pP3{font-size:20px;color:#fff;}
.LocateNearLab_find_lab_btn__5pSAQ{background:linear-gradient(225.9deg,#0e3f6c,#235b8e 101.63%);border-radius:15px;width:96px;height:28px;font-weight:500;font-size:12px;line-height:18px;color:#fff;display:flex;justify-content:center;align-items:center;cursor:pointer;}
@media (min-width:601px) and (max-width:1100px){
.LocateNearLab_find_lab_near_me__I2dnd{width:235px;height:40px;padding:0 10px;column-gap:5px;}
.LocateNearLab_find_lab_btn__5pSAQ{width:80px;font-size:10px;line-height:15px;}
.LocateNearLab_find_lab_desc__iloHi p{font-size:11px;line-height:16px;}
.LocateNearLab_find_lab_svg__v4pP3{font-size:16px;}
}
@media (max-width:600px){
.LocateNearLab_container__BmKqx{padding:0 0px;margin-bottom:32px;}
.LocateNearLab_find_lab_near_me__I2dnd{background:linear-gradient(225.9deg,#0e3f6c,#235b8e 101.63%);width:100%;}
.LocateNearLab_find_lab_desc__iloHi p,.LocateNearLab_find_lab_svg__v4pP3{color:#fff;}
.LocateNearLab_find_lab_btn__5pSAQ{color:#000;background:#fff;}
}
.PackagesCarousel_packageName__6l2df span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}






.LCCCard_card__JE6Mv{border:1px solid #d9d9d9;border-radius:5px;width:100%;height:auto;display:flex;flex-direction:column;justify-content:space-between;}
.LCCCard_card_div1___aprZ{display:flex;flex-direction:row;align-items:center;justify-content:space-between;height:70px;padding:0 16px;border-bottom:1px solid #f5f5f5;}
.LCCCard_card_div2__aECp_{padding:10px 16px;display:flex;flex-direction:column;row-gap:5px;}
.LCCCard_card_div3__PXmWD{display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:50px;background:rgb(228 235 249);padding:0 16px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;}
.LCCCard_name__aTWr_{font-weight:600;font-size: 18px;line-height:21px;color:#000;}
.LCCCard_nablWithIso_div__AFlx6{display:flex;flex-direction:row;column-gap:10px;justify-content:space-between;align-items:center;}
.LCCCard_head__q3GFz{font-weight:600;}
.LCCCard_desc__VsiG8,.LCCCard_head__q3GFz{font-size: 14px;line-height:20px;color:#000;}
.LCCCard_desc__VsiG8{font-weight:500;}
.LCCCard_linking__Jln8M{display:flex;flex-direction:row;column-gap:10px;align-items:center;}
.LCCCard_circle_div__G5rmj{background:#fff;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;height:28px;width:28px;}
.LCCCard_common___S5VQ{font-weight:500;font-size: 14px;line-height:18px;color:#000;}
.LCCCard_anchor__scuUS{text-decoration:none;}
@media (min-width:601px) and (max-width:1100px){
.LCCCard_card__JE6Mv{width:310px;height:200px;}
.LCCCard_card_div1___aprZ{height:60px;}
.LCCCard_name__aTWr_{font-size:12px;line-height:16px;}
.LCCCard_desc__VsiG8,.LCCCard_head__q3GFz{font-size:11px;line-height:18px;}
.LCCCard_card_div3__PXmWD{height:40px;}
}
@media (min-width:1101px){
.LCCCard_card__JE6Mv{width:350px;height:220px;margin-bottom:20px;background-color: #fff;}
}
.LabAndCollections_cards_main_wrapper__fJHY_{display:flex;flex-direction:column;row-gap:10px;}
@media (min-width:601px) and (max-width:1100px){
.LabAndCollections_cards_main_wrapper__fJHY_{display:flex;flex-wrap:wrap;justify-content:flex-start;flex-direction:row;column-gap:20px;row-gap:20px;margin-top:20px;}
}
@media (min-width:1101px){
.LabAndCollections_cards_main_wrapper__fJHY_{display:flex;flex-wrap:wrap;justify-content:center;flex-direction:row;column-gap:30px;margin-top:20px;}
}

@media x{
.LCCCard_card__JE6Mv{border:1px solid #d9d9d9;border-radius:15px;width:100%;height:auto;display:flex;flex-direction:column;justify-content:space-between;}
.LCCCard_card_div1___aprZ{display:flex;flex-direction:row;align-items:center;justify-content:space-between;height:70px;padding:0 16px;border-bottom:1px solid #f5f5f5;}
.LCCCard_card_div2__aECp_{padding:10px 16px;display:flex;flex-direction:column;row-gap:5px;}
.LCCCard_card_div3__PXmWD{display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:50px;background:linear-gradient(223.23deg,hsla(0,0%,100%,.5) -39.74%,hsla(10,71%,92%,.5) 94.44%);padding:0 16px;border-bottom-left-radius:15px;border-bottom-right-radius:15px;}
.LCCCard_name__aTWr_{font-weight:600;font-size:14px;line-height:21px;color:#000;}
.LCCCard_nablWithIso_div__AFlx6{display:flex;flex-direction:row;column-gap:10px;justify-content:space-between;align-items:center;}
.LCCCard_head__q3GFz{font-weight:600;}
.LCCCard_desc__VsiG8,.LCCCard_head__q3GFz{font-size:12px;line-height:20px;color:#2f3032;}
.LCCCard_desc__VsiG8{font-weight:500;}
.LCCCard_linking__Jln8M{display:flex;flex-direction:row;column-gap:10px;align-items:center;}
.LCCCard_circle_div__G5rmj{background:#fff;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;height:28px;width:28px;}
.LCCCard_common___S5VQ{font-weight:500;font-size:12px;line-height:18px;color:#000;}
.LCCCard_anchor__scuUS{text-decoration:none;}
@media (min-width:601px) and (max-width:1100px){
.LCCCard_card__JE6Mv{width:310px;height:200px;}
.LCCCard_card_div1___aprZ{height:60px;}
.LCCCard_name__aTWr_{font-size:12px;line-height:16px;}
.LCCCard_desc__VsiG8,.LCCCard_head__q3GFz{font-size:11px;line-height:18px;}
.LCCCard_card_div3__PXmWD{height:40px;}
}
@media (min-width:1101px){
.LCCCard_card__JE6Mv{width:350px;height:220px;margin-bottom:20px;}
}
}
























.contact-page-section{position:relative;padding:100px 0px 50px;}
.contact-page-section .info-column{position:relative;margin-bottom:40px;}
.contact-page-section .info-column .inner-column{position:relative;margin-right:-20px;padding:50px 35px 45px;background:#052858;}
.contact-page-section .info-column .inner-column .title-box{position:relative;}
.contact-page-section .info-column .inner-column .title-box h3{position:relative;color:#ffffff;font-size:32px;font-weight:700;line-height:1.3em;}
.contact-page-section .info-column .inner-column .title-box .title-text{position:relative;font-size:16px;font-weight:400;line-height:1.5em;margin-top:8px;margin-bottom:30px;color:#fff;}
.contact-info-list{position:relative;}
.contact-info-list li{position:relative;margin-bottom:30px;font-size:16px;min-height:50px;line-height:1.8em;padding-left:50px;color:#fff;}
.contact-info-list li strong{font-weight:700;font-size:18px;display:block;}
.contact-info-list li .icon{position:absolute;left:0px;top:8px;font-size:26px;line-height:1em;}
.contact-page-section .form-column{position:relative;}
.contact-page-section .form-column .inner-column{position:relative;padding-left:60px;}
.contact-page-section .form-column .inner-column .row{margin:0px -11px;}
@media only screen and (max-width: 1140px){

.contact-page-section .form-column .inner-column{padding-left:10px;}
}
@media only screen and (max-width: 1023px){
.contact-page-section .form-column .inner-column{padding-left:0px;}
.contact-page-section .info-column .inner-column{margin-right:0px;}
.inner-column{padding-left:0px!important;}

}
@media only screen and (max-width: 599px){
.contact-info-list li{min-height:0;padding-left:0;}
.contact-info-list li .icon{position:relative;display:block;line-height:1em;left:0;top:0px;margin:0 0 10px;}
.contact-page-section .info-column .inner-column{padding:40px 20px!important;text-align:center;}
}
.inner-column{padding-left:60px;}
.contact-info-list{position:relative;}
.contact-info-list li{position:relative;margin-bottom:30px;font-size:16px;min-height:50px;line-height:1.8em;padding-left:50px;color:#fff;}
.contact-info-list li strong{font-weight:700;font-size:18px;display:block;}
.contact-info-list li .icon{position:absolute;left:0;top:8px;font-size:26px;line-height:1em;}
@media only screen and (max-width:599px){
.contact-info-list li{min-height:0;padding-left:0;}
.contact-info-list li .icon{position:relative;display:block;line-height:1em;left:0;top:0;margin:0 0 10px;}
}

@media only screen and (max-width:768px){
.contact-info-list{text-align:center!important;}
}
.whyus .icon-box {
  max-width: 40px;
  margin-right: 7%;
}
.headingm{
  display: grid;
    grid-template-columns: 110% 20%;
    align-items: center;
    width: 72%;
}
.mprices{
  align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.mpricesdicount{
  font-size: 18px;
    font-weight: 500;
    color: #000;
}

.PackagesCarousel_head__R9Tln {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #0e3f6c;
  margin-left: 16px
}

.PackagesCarousel_carouselContainer__oGzXC {
  margin-top: 20px;
  display: flex;
  width: 100vw;
  overflow: scroll;
  gap: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.PackagesCarousel_carouselContainer__oGzXC::-webkit-scrollbar {
  display: none
}

.PackagesCarousel_carouselContainer__oGzXC>.PackagesCarousel_packageCard__0zpAO:first-child {
  margin-left: 16px
}

.PackagesCarousel_carouselContainer__oGzXC>.PackagesCarousel_packageCard__0zpAO:nth-last-child(2) {
  margin-right: 16px
}

/* .PackagesCarousel_packageCardTop__2KcRE {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 16px 10px;
  border-radius: 15px 15px 0 0;
  border: 1px solid #f5f5f5;
  height: 70px
} */
/* 
.PackagesCarousel_packageNameWrapper__x_bkx {
  display: flex;
  gap: 2px;
  max-width: 180px
} */

.PackagesCarousel_packageName__6l2df {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  color: var(--font-secondary-color)
}

.PackagesCarousel_packageNameWrapper__x_bkx>svg {
  font-size: 2.5rem;
  flex-shrink: 0
}

.PackagesCarousel_packageCardTopLeft__XXgwR {
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #9d9fa1;
  text-align: right;
  flex-shrink: 0
}

.PackagesCarousel_packageCardTopLeft__XXgwR>p:first-child>span {
  background: linear-gradient(223.23deg, #fff -39.74%, #dbf5f9 94.44%);
  border-radius: 5px;
  padding: 3px;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #000
}

.PackagesCarousel_packageCardTopLeft__XXgwR>p:last-child {
  margin-top: 10px
}

.PackagesCarousel_packageCardTopLeft__XXgwR>p:last-child>span {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 3px;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #000
}

.PackagesCarousel_packageCardMid__cNM8Z {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #2f3032;
  padding: 10px 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  height: 45px
}

.PackagesCarousel_packageCardBottom__8yniU {
  margin-top: 10px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgb(219 230 247 / 50%);
  border-radius: 0 0 15px 15px;
  justify-content: space-between
}

.PackagesCarousel_packageCardBottom__8yniU>div {
  display: flex;
  align-items: center
}

.PackagesCarousel_packagePrice__rx848 {
  display: flex;
  flex-direction: column;
  align-items: center
}

.PackagesCarousel_packagePrice__offerPrice__PKLgs {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #2f3032
}

.PackagesCarousel_packagePrice__mainPrice__tnHcv {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-decoration: line-through;
  color: #000
}

.PackagesCarousel_horizontalLine__t5SFP {
  border: none;
    border-left: 1px solid #fff;
    margin: 0 22px; 
  height: 30px
}

.PackagesCarousel_packageRedcash__13wAb {
  font-size: 10px;
  line-height: 14px;
  color: #2f3032;
  display: flex;
  flex-direction: column
}

.PackagesCarousel_packageRedcash__13wAb>span:first-child {
  font-weight: 700
}

.PackagesCarousel_packageRedcash__13wAb>span:last-child {
  font-weight: 500
}

.PackagesCarousel_bookButton__AG2_E {
  background: #012455;
  border-radius: 15px;
  padding: 10px 20px;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: none;
  width: 90px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.PackagesCarousel_carouselDotsContainer__4G4Fa {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 4px
}

.PackagesCarousel_carouselDots__6_fg9 {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #d9d9d9
}

@media screen and (min-width: 601px) {
  .PackagesCarousel_head__R9Tln {
      font-size: 24px;
      line-height: 36px;
      color: #0e3f6c;
      margin-left: 0;
      margin-bottom: 24px
  }

  .PackagesCarousel_carouselContainer__oGzXC {
      width: 100%;
      display: block;
      overflow: auto
  }

  .PackagesCarousel_carouselContainer__oGzXC .PackagesCarousel_packageCard__0zpAO:first-of-type {
      margin-left: unset !important;
      background: rgb(228 235 249);
  }

  .PackagesCarousel_carouselContainer__oGzXC .PackagesCarousel_packageCard__0zpAO:nth-last-child(2) {
      margin-right: unset !important
  }

  .PackagesCarousel_carouselContainer__oGzXC>div>ul>li :last-child {
      min-width: unset
  }

  .PackagesCarousel_packageCard__0zpAO {
      width: 368px;
      height: 240px
  }

  /* .PackagesCarousel_packageCardTop__2KcRE {
      height: 90px;
      padding: 16px 20px
  } */

  .PackagesCarousel_packageCardMid__cNM8Z {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      height: 60px;
      cursor: pointer
  }

  .PackagesCarousel_packageCardBottom__8yniU {
      padding: 14px 20px
  }

  /* .PackagesCarousel_packageNameWrapper__x_bkx {
      cursor: pointer;
      max-width: 220px
  } */

  .PackagesCarousel_packageName__6l2df {
      font-weight: 600;
      font-size: 18px;
      line-height: 26px
  }

  .PackagesCarousel_packageNameWrapper__x_bkx>svg {
      font-size: 2rem;
      margin-top: 2px
  }

  .PackagesCarousel_packageCardTopLeft__XXgwR {
      font-weight: 500;
      font-size: 14px;
      line-height: 21px;
      margin-top: 2px
  }

  .PackagesCarousel_packageCardTopLeft__XXgwR>p:first-child>span,
  .PackagesCarousel_packageCardTopLeft__XXgwR>p:last-child>span {
      font-weight: 500;
      font-size: 14px;
      line-height: 21px;
      padding: 4px
  }

  .PackagesCarousel_packagePrice__offerPrice__PKLgs {
      font-weight: 600;
      font-size: 20px;
      line-height: 26px
  }

  .PackagesCarousel_packagePrice__mainPrice__tnHcv {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px
  }

  .PackagesCarousel_horizontalLine__t5SFP {
      height: 50px
  }

  .PackagesCarousel_packageRedcash__13wAb {
      font-size: 14px;
      line-height: 14px
  }

  .PackagesCarousel_packageRedcash__13wAb>span:last-child {
      margin-top: 5px
  }

  .PackagesCarousel_bookButton__AG2_E {
      font-weight: 600;
      font-size: 18px;
      line-height: 27px;
      cursor: pointer;
      width: 100px;
      height: 50px
  }
}

.packageDetailsDrawer_packageDetails___j5pR {
  height: auto
}

.packageDetailsDrawer_paper__jA48m::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.packageDetailsDrawer_packageDetails__head__lwC9r {
  display: flex;
  justify-content: space-between;
  padding: 20px 16px;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff
}

.packageDetailsDrawer_packageDetails__heading__o1F6T {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-transform: capitalize
}

.packageDetailsDrawer_packageDetails__crossContainer__G5rUr {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px
}

.packageDetailsDrawer_pdpDrawer__addToCartBtn__Zk90l {
  background: #012455;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  height: 48px;
  width: 100%;
  cursor: pointer;
  margin: 20px auto 0;
  width: 90%
}

.packageDetailsDrawer_packageDetails__body__U4i7_ {
  display: flex;
  flex-direction: column;
  width: 98%;
}

.packageDetailsDrawer_packageDetails__parameterCount__LIDqR {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: #2f3032;
  margin-top: 12px;
  padding: 0 5%
}

@media screen and (min-width: 601px) and (max-width:1100px) {
  .packageDetailsDrawer_packageDetails___j5pR {
      width: 50rem
  }

  .packageDetailsDrawer_pdpDrawer__addToCartBtn__Zk90l {
      margin-top: 28px
  }
}

@media screen and (min-width: 1100px) {
  .packageDetailsDrawer_packageDetails___j5pR {
      height: auto;
      width: 45rem
  }

  .packageDetailsDrawer_packageDetails__heading__o1F6T {
      font-size: 18px
  }

  .packageDetailsDrawer_pdpDrawer__addToCartBtn__Zk90l {
      font-size: 18px;
      width: 100%;
      margin: 28px auto 0
  }

  .packageDetailsDrawer_packageDetails__parameterCount__LIDqR {
      font-size: 18px;
      font-weight: 600
  }
}

.UnlockBenefits_unlock__container__vNJRS {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
  width: 100%;
  margin: 0;
  background: rgb(219 230 247 / 50%);
  position: relative;
  border-radius: 20px;
  padding: 25px 35px 25px 0px;
}

.UnlockBenefits_unlock__container__vNJRS:after {
  right: -5%
}

.UnlockBenefits_unlock__container__vNJRS:after,
.UnlockBenefits_unlock__container__vNJRS:before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  height: 44px;
  width: 40px;
  transform: translateY(-50%)
}

.UnlockBenefits_unlock__container__vNJRS:before {
  left: -5%
}

.UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_left__div__i115m {
  width: 53%;
  z-index: 25;
}

.UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_left__div__i115m p {
  background: linear-gradient(228.77deg, #323f76 6.31%, #d12929 174.03%);
  font-size: 16px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  padding: 0 20px 0 0;
  line-height: 18px
}

.UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_left__div__i115m p span {
  font-weight: 600
}

.UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_right__div__9eDzE {
  display: flex;
  align-items: center;
  justify-content: right;
  border-radius: 25px;
  padding: 3% 5%;
  cursor: pointer;
  width: 50%;
}

.UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_right__div__9eDzE p {
  color: #2f3032;
  font-size: 16px;
  font-weight: 600
}

.UnlockBenefits_coupon__code__container__Dcp02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  border-radius: 15px;
  padding: 20px 17px;
  background: linear-gradient(223.23deg, hsla(0, 0%, 100%, .72) -39.74%, hsla(10, 71%, 92%, .72) 94.44%);
  margin: 20px auto 8px
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__left__5taqE {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__left__5taqE .UnlockBenefits_discount__icon__WXBck {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__left__5taqE .UnlockBenefits_discount__icon__WXBck svg {
  height: 100%;
  width: 100%
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__left__5taqE p {
  background: linear-gradient(228.77deg, #323f76 6.31%, #d12929 174.03%);
  font-size: 16px;
  line-height: 19px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__right__4mLZT {
  border: 2px dashed rgba(47, 48, 50, .478);
  padding: 11px 14px;
  border-radius: 25px;
  cursor: pointer
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__right__4mLZT .UnlockBenefits_code__wrapper__uEdPp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__right__4mLZT .UnlockBenefits_code__wrapper__uEdPp p {
  color: #2f3032;
  font-size: 14px;
  font-weight: 600
}

.UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__right__4mLZT .UnlockBenefits_code__wrapper__uEdPp svg {
  height: 20px;
  width: 16px
}

@media screen and (max-width: 768px) {
  .UnlockBenefits_unlock__container__vNJRS {
      gap: 8%;
      padding: 19px 30px
  }

  .UnlockBenefits_unlock__container__vNJRS:after,
  .UnlockBenefits_unlock__container__vNJRS:before {
      height: 32px;
      width: 32px
  }

  .UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_left__div__i115m p {
      font-size: 12px
  }

  .UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_right__div__9eDzE {
      padding: 7.5px 19.5px
  }

  .UnlockBenefits_unlock__container__vNJRS .UnlockBenefits_right__div__9eDzE p {
      font-size: 12px
  }

  .UnlockBenefits_coupon__code__container__Dcp02 {
      padding: 14px
  }

  .UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__left__5taqE .UnlockBenefits_discount__icon__WXBck {
      height: 20px;
      width: 20px
  }

  .UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__left__5taqE p {
      font-size: 12px;
      line-height: 14px
  }

  .UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__right__4mLZT {
      padding: 7.4px 12px
  }

  .UnlockBenefits_coupon__code__container__Dcp02 .UnlockBenefits_coupon__right__4mLZT .UnlockBenefits_code__wrapper__uEdPp p {
      font-size: 12px
  }
}

.ProductDetailHead_product__head__GAywE {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3%;
  padding: 0 5%
}

.ProductDetailHead_product__head__name__1lPES,
.ProductDetailHead_product__head__name__1lPES>a {
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: #012455
}

.ProductDetailHead_product__head__price__0KYz_ {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 75%;
  background: #fff;
  padding: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ProductDetailHead_product__head__price__offerPrice__3Gm5h {
  font-weight: 600;
  font-size: 24px;
  color: #2f3032;
  line-height: 1
}

.ProductDetailHead_product__head__price__mainPrice__XKWN7 {
  font-weight: 400;
  font-size: 20px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #000;
  line-height: 1
}

@media screen and (min-width: 601px)and (max-width:1100px) {

  .ProductDetailHead_product__head__name__1lPES,
  .ProductDetailHead_product__head__name__1lPES>a {
      font-weight: 600;
      font-size: 26px;
      line-height: 36px;
      color: #012455;
      width: 100%;
  }

  .ProductDetailHead_product__head__price__0KYz_ {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      width: 20%
  }

  .ProductDetailHead_product__head__price__offerPrice__3Gm5h {
      font-size: 22px;
      line-height: 33px
  }

  .ProductDetailHead_product__head__price__mainPrice__XKWN7 {
      font-size: 18px;
      line-height: 27px
  }
}

.ProductDetailInstructions_product__jwOwl {
  display: flex;
  flex-direction: column
}

.ProductDetailInstructions_product__alsoKnownAs__7AQm3 {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: #2f3032
}

.ProductDetailInstructions_product__alsoKnownAs__7AQm3 span {
  font-weight: 400
}

.ProductDetailInstructions_product__instructions__YlmoF {
  display: flex;
  column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 98%;
  margin: 30px auto;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.ProductDetailInstructions_product__instructions__YlmoF::-webkit-scrollbar {
  display: none
}

.ProductDetailInstructions_product__instructions__box__6ZaNF {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1
}

.ProductDetailInstructions_product__instructions__box__heading__DzWSr {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #a2a2a2
}

.ProductDetailInstructions_product__instructions__box__fastingDur__mDNMM {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #000
}

.ProductDetailInstructions_product__about__uax7r {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 90%;
  margin: 0 auto
}

.ProductDetailInstructions_product__about__itIsFor__6UNKP {
  display: flex;
  flex-direction: column;
  row-gap: 5px
}

.ProductDetailInstructions_product__about__itIsFor__heading__9AerB {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2f3032
}

.ProductDetailInstructions_product__about__itIsFor__para__0jCtf {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #2f3032
}

.ProductDetailInstructions_product__about__instructions__a7zDL {
  display: flex;
  flex-direction: column;
  row-gap: 10px
}

.ProductDetailInstructions_product__about__instructions__heading___WFPd {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2f3032;
  text-transform: capitalize
}

.ProductDetailInstructions_product__about__instructions__a7zDL ul {
  list-style: inside
}

.ProductDetailInstructions_product__about__instructions__a7zDL ul li {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #2f3032
}

.ProductDetailInstructions_product__about__instructions__a7zDL ul li span {
  margin-left: -5px
}

.ProductDetailInstructions_product__about__instructions__des__uoqnd {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #2f3032
}

.ProductDetailInstructions_product__about__paramsBanner__v02Ox {
  width: 100%;
  height: auto
}

@media screen and (min-width: 601px)and (max-width:1100px) {
  .ProductDetailInstructions_product__instructions__YlmoF {
      margin: 40px 0;
      column-gap: 16px
  }

  .ProductDetailInstructions_product__instructions__YlmoF::-webkit-scrollbar {
      display: none
  }

  .ProductDetailInstructions_product__instructions__box__6ZaNF {
      padding: 16px
  }

  .ProductDetailInstructions_product__instructions__box__heading__DzWSr {
      font-size: 16px;
      line-height: 24px
  }

  .ProductDetailInstructions_product__instructions__box__fastingDur__mDNMM {
      font-size: 18px;
      line-height: 27px
  }

  .ProductDetailInstructions_product__about__uax7r {
      row-gap: 40px
  }

  .ProductDetailInstructions_product__about__itIsFor__6UNKP {
      row-gap: 20px
  }

  .ProductDetailInstructions_product__about__itIsFor__heading__9AerB {
      font-size: 24px;
      line-height: 36px
  }

  .ProductDetailInstructions_product__about__itIsFor__para__0jCtf {
      font-size: 18px;
      line-height: 28px
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL {
      row-gap: 20px
  }

  .ProductDetailInstructions_product__about__instructions__heading___WFPd {
      font-size: 24px;
      line-height: 36px
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL ul {
      list-style: inside
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL ul li {
      font-size: 18px;
      line-height: 28px;
      padding-left: 10px;
      margin-bottom: 10px
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL ul li span {
      margin-left: 0
  }

  .ProductDetailInstructions_product__about__instructions__des__uoqnd {
      font-size: 18px;
      line-height: 28px
  }
}

@media screen and (min-width: 1101px) {
  .ProductDetailInstructions_product__alsoKnownAs__7AQm3 {
      font-size: 18px
  }

  .ProductDetailInstructions_product__instructions__YlmoF {
      margin: 40px auto;
      column-gap: 16px
  }

  .ProductDetailInstructions_product__instructions__YlmoF::-webkit-scrollbar {
      display: none
  }

  .ProductDetailInstructions_product__instructions__box__6ZaNF {
      padding: 16px
  }

  .ProductDetailInstructions_product__instructions__box__heading__DzWSr {
      font-size: 16px;
      line-height: 24px
  }

  .ProductDetailInstructions_product__instructions__box__fastingDur__mDNMM {
      font-size: 18px;
      line-height: 27px
  }

  .ProductDetailInstructions_product__about__uax7r {
      row-gap: 40px
  }

  .ProductDetailInstructions_product__about__itIsFor__6UNKP {
      row-gap: 20px
  }

  .ProductDetailInstructions_product__about__itIsFor__heading__9AerB {
      font-size: 24px;
      line-height: 36px
  }

  .ProductDetailInstructions_product__about__itIsFor__para__0jCtf {
      font-size: 18px;
      line-height: 28px
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL {
      row-gap: 20px
  }

  .ProductDetailInstructions_product__about__instructions__heading___WFPd {
      font-size: 24px;
      line-height: 36px
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL ul {
      list-style: inside
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL ul li {
      font-size: 18px;
      line-height: 28px;
      padding-left: 10px;
      margin-bottom: 10px
  }

  .ProductDetailInstructions_product__about__instructions__a7zDL ul li span {
      margin-left: 0
  }

  .ProductDetailInstructions_product__about__instructions__des__uoqnd {
      font-size: 18px;
      line-height: 28px
  }
}
.WhyChooseUs_whyChooseUs_Container__F2Lam {

padding-left: 0px !important;
padding-right: 0px !important
}

.WhyChooseUs_cardpart2SVG__3gv50 {
font-size: 48px
}

.WhyChooseUs_contentDiv__i2PWD {display: flex;max-width: 817px;flex-wrap: wrap;align-items: center;justify-content: flex-start;row-gap: 40px;column-gap: 100px;margin: 40px auto 0;width: 90%;}

.WhyChooseUs_headingDiv__E8XoN>h2 {
text-align: center
}

.WhyChooseUs_cardDiv__hscwn {text-align: center;display: flex;align-items: center;justify-content: space-around;row-gap: 2rem;column-gap: 10px;width: 100%;}

.WhyChooseUs_cardDiv__hscwn:hover {
transition: all .3s ease
}

.WhyChooseUs_cardpart1__ecWoU {
height: 40%;
width: 100%;
border-radius: 10px
}

.WhyChooseUs_cardpart2__pkihF {height: 40%;font-size: 16px;font-weight: 500;color: #2e2e2e;width: 100%;text-align: left}

.WhyChooseUs_hpParentContainer___SO_D {
max-width: 100%;
margin: auto;
width: 100%;
padding: 0px;
}

.WhyChooseUs_hpHeading__kz0Rq {
text-align: center;
font-weight: 600;
line-height: 36px;
color: #0e3f6c;
font-size: 24px
}

@media screen and (min-width: 601px) and (max-width:1100px) {
.WhyChooseUs_whyChooseUs_Container__inDrawer__qXZuh {
padding-left: 10px !important;
padding-right: 10px !important
}

.WhyChooseUs_contentDiv__i2PWD {
column-gap: 40px;
justify-content: center
}

.WhyChooseUs_contentDiv__inDrawer__tvGF3 {
column-gap: 10px
}
}

@media (max-width: 600px) {
.WhyChooseUs_cardpart2SVG__3gv50 {
font-size: 30px;
margin-left: 10px
}

.WhyChooseUs_whyChooseUs_Container__F2Lam {
/* background: linear-gradient(223.23deg,#fff -39.74%,#dbf5f9 94.44%); */
padding-left: 0 !important;
padding-right: 0 !important
}

.WhyChooseUs_hpParentContainer___SO_D {
max-width: 1250px;
margin: auto;
width: 100%;
padding: 0
}

.WhyChooseUs_mainContainer__vOQcb {
padding: 24px 16px
}

.WhyChooseUs_contentDiv__i2PWD {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
column-gap: 14px;
padding-bottom: 8px;
width: 100%;
margin-top: 16px;
row-gap: 17px
}

.WhyChooseUs_headingDiv__E8XoN>h2 {
font-size: 16px;
font-weight: 600;
font-family: Poppins;
line-height: 24px;
color: #235b8e;
text-align: left
}

.WhyChooseUs_cardDiv__hscwn {
width: 100%;
height: max-content;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
column-gap: 12px
}

.WhyChooseUs_cardDiv__hscwn>svg {
min-width: 37px;
height: 37px
}

.WhyChooseUs_cardpart1__ecWoU {
width: auto;
height: auto;
margin: 0 1rem
}

.WhyChooseUs_cardpart1__ecWoU span {
margin: 2.2rem 1.5rem 2.2rem 1rem
}

.WhyChooseUs_cardpart2__pkihF {
width: 90%;
height: auto;
font-size: 12px;
font-weight: 500;
color: #2e2e2e;
text-align: left;
line-height: 18px;
}

@media (max-width: 375px) {
.WhyChooseUs_cardpart2__pkihF {
font-size: 12px
}
}

@media (max-width: 345px) {
.WhyChooseUs_cardDiv__hscwn {
height: 70px
}

.WhyChooseUs_cardpart1__ecWoU {
padding: 2rem .6rem
}

.WhyChooseUs_cardpart2__pkihF {
font-size: 12px
}
}

@media (max-width: 319px) {
.WhyChooseUs_cardDiv__hscwn {
height: 70px
}

.WhyChooseUs_cardpart1__ecWoU {
padding: 2rem .7rem
}

.WhyChooseUs_cardpart2__pkihF {
font-size: 12px
}
}
}
.uploadpre{margin-right: 9%;}
@media (max-width: 1366px) {
.uploadpre{margin-right: 6%;}
}
.whyus i.fa-solid.fa-angles-right {
  FONT-SIZE: 15PX;
  MARGIN-RIGHT: 15PX;
}
.pericemodal{
  display: flex;
  align-items: center;
  background: #fff;
  width: fit-content;
  padding-left: 10%;
  padding-right: 10%;
}

.testimonial-section .PackagesCarousel_packageRedcash__13wAb {
  font-size: 18px;
  line-height: 18px;
  color: #fe4042;
  display: flex;
  flex-direction: column;
}
.pericemodal .PackagesCarousel_packageRedcash__13wAb {
  font-size: 20px;
  line-height: 20px;
  color: #fe4042;
  display: flex;
  flex-direction: column;
}
.blue-tab{padding:20px 0px 0px 0px;}
ul.blue-tab li{display:inline-block;padding-left:0px;}
.blue-tab li a{padding:10px;color:#000;font-weight:600;font-size:14px;}
.blue-tab li a:hover,.blue-tab li a.active{color:#052858;}
.blue-tab a{color:#0152A1;font-weight:800;}











.sec-pad-2{padding:100px 0px;}
.about-section12 .content_block_1 .content-box{margin-right:75px;}



.content_block_1 .content-box .sec-title{margin-bottom:15px;}
.image_block_1 .image-box{position:relative;display:block;}
.image_block_1 .image-box .image{position:relative;display:block;}
.image_block_1 .image-box .image img{width:100%;}
.about-section12 .image_block_1 .image-box{margin-right:-57px;}
.image_block_1 .image-box .text{position:absolute;top:80px;right:50px;display:inline-block;width:170px;height:170px;text-align:center;border-radius:50%;background-blend-mode:multiply;padding:32px 0px;}
.image_block_1 .image-box .text h2{font-size:60px;line-height:60px;color:#ffffff;font-weight:700;margin-bottom:6px;}
.image_block_1 .image-box .text h5{font-size:18px;line-height:28px;color:#ffffff;font-weight:600;}
.content_block_1 p{font-weight: 500;color: #000;text-align: justify;margin-bottom: 1rem;}
.content_block_1 .content-box .bold-text p{color:#142441;}

@media only screen and (max-width: 991px){
.about-section12{padding-top:120px;}
.about-section12 .image_block_1 .image-box{margin-right:0px;margin-top:50px;}
}
@media only screen and (max-width: 767px){
.sec-pad-2{padding:20px 0px;}
.sec-pad-2 .sec-title h2{font-size:24px;line-height:42px;}
.about-section12 .content_block_1 .content-box{margin-right:0px;}
.sec-pad-2 .sec-title{margin-bottom:40px;}
.content_block_1 .content-box{margin-left:0px;}
.about-section12 .content_block_1 .content-box{margin-left:0px;}
.genetics{
  display: none;
}
.rs-breadcrumbs .breadcrumbs-image .breadcrumbs-inner .breadcrumbs-text {
  padding: 15px 0 25px;
  border-radius: 5px;
  width: 100%;
  display: block;
  justify-content: space-between;
  align-items: center;
}
.bottom-box .inner-box .text {
  margin-bottom: 20px;
  padding: 15px;
}
}
@media only screen and (max-width: 599px){
.image_block_1 .image-box .shape{display:none;}
}










@media (max-width:1440px){
.card-top__left .btn i{display:none;}
}
@media (max-width:1366px){
.card .btn{padding:9px 12px!important;}
}
@media (max-width:1280px){
.card .btn{padding:9px 12px!important;}
}
@media (max-width:812px){

.card-top__left .btn i{display:none;}
}
.card .btn{display:inline-flex;justify-content:center;align-items:center;font-weight:bold;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;text-decoration:none;background-image:none;border:0px solid transparent;padding:9px 12px;font-size:16px;line-height:1.47826;border-radius:0;height:50px;min-width:49%;position:relative;overflow:hidden;transition:color 0.3s;}

.card .btn-arrow{position:relative;overflow:hidden;}
@media screen and (max-width: 767px){
.card .btn-arrow{padding:9px 10px 9px 29px;}
}
.card .btn-arrow span{transform:translateX(0);transition:transform .5s, color .5s;}
.card .btn-arrow .icons-left{position:absolute;left:-60px;right:auto!important;transition:left .5s;}
.card .btn-arrow .icons-right{transform:translateX(0);transition:transform .5s;}
.card .btn-arrow:hover span{transform:translateX(20px);}
.card .btn-arrow:hover .icons-left{width:auto;left:13px;}
.card .btn-arrow:hover .icons-right{transform:translateX(100px);}
.card .btn>*{position:relative;z-index:4;}
.card .btn::before,.btn::after{content:'';position:absolute;height:102%;width:100%;bottom:101%;left:0;z-index:2;transition:transform 0.3s;-webkit-transition-timing-function:cubic-bezier(0.75, 0, 0.125, 1);transition-timing-function:cubic-bezier(0.75, 0, 0.125, 1);}
@media screen and (max-width: 767px){
.card .btn::before,.btn::after{z-index:0;}
}
.card .btn:hover::after{transform:translate3d(0, 100%, 0);}
.card .btn::before{transform:translate3d(0, 100%, 0);}
.card .btn span{transition:transform .5s, color .5s;}
.card .btn--primary{color:#fff;background-color:#052858;border-color:#052858;}
.card .btn--primary::before{background:#052858;}
.card .btn--primary::after{background:#fe4042;}
.card .btn--primary span{color:#fff;}
.card .btn--primary:active,.card .btn--primary:hover{color:#fff;background-color:transparent;}
.card .btn--primary:active span,.card .btn--primary:hover span{color:#fff;}
.card .btn--primary i{font-size:9px;margin-left:8px;color:#fff;}
.card-top__left .btn i{position:absolute;right:40px;}
.card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
  margin-top: 30px;
  border: none;
}
.sec-pad-3{padding: 0px 0px 50px 0px;}

.pricing-style-two p{color: #000;}

.testbox{color: #fe4042 !important;font-weight: bold;}

.list-style-one2 {
  position: relative;
  margin-top: 20px;
  list-style-type: none;
  padding: 0px 
}


.list-style-one2 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}

.list-style-one2 p{text-align: justify;color: #000;margin-bottom: 1rem;font-weight: 500;}

.list-style-one2 li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  padding-left: 25px;
  margin-bottom: 11px;
  text-align: justify;
  font-weight: 600;
}

.list-style-one2 li:before {
  content: "\f138";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  padding: 0px;
  color: #052858;
  font-weight: 900;
  font-family:"Font Awesome 6 Free";
}









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

@media (max-width: 992px){
.mt-s{margin-top:30px!important;}
}
.promo-section{margin-bottom:20px;}
.special-head{color:#044afa!important;padding-left:40px;font-size:18px;position:relative;}
.special-head:before{content:'';background:#3964f9;position:absolute;top:50%;left:0;width:30px;height:2px;}
.who-we-contant h4{margin-bottom:20px;font-size:30px;color:#13287e;font-weight:600;}
.services-block-four{position:relative;margin-bottom:30px;}
.icon-font-box{position:absolute;left:0;top:0;width:50px;height:50px;line-height:50px;text-align:center;border-radius:50%;border:2px solid #052858;}
.icon-font-box i{font-size:24px;color:#052858;}
@media (max-width: 480px){
.services-block-four .inner-box{padding-left:0px!important;}
}
.services-block-four .inner-box{position:relative;padding-left:100px;}
.services-block-four.v2 .inner-box{position:relative;padding-left:80px;}
.services-block-four .inner-box h3{position:relative;font-size:18px;font-weight:600;text-transform:capitalize;}
.services-block-four .inner-box h3{color:#000;transition:all 0.3s ease;-moz-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;}
.services-block-four .inner-box .text{color:#000;line-height:1.7;margin-top:8px;margin-bottom:10px;font-weight: 500;}
@media (max-width: 767px){
.services-block-four{margin-bottom:40px;}
.icon-font-box{display: none;}
}

@media only screen and (max-width: 767px){
.who-we-contant h4{font-size:24px;}
}





.terms-wrap p{margin-bottom:20px;}

.bottom-box .inner-box{position:relative;border:1px solid #052858;padding:8px 10px 8px 60px;margin-top: 30px;background-color: #052858;}
@media (max-width:991.98px){
.bottom-box .inner-box{padding-left:30px;}
}
@media (max-width:767.98px){
.bottom-box .inner-box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:center;padding:0;border:0;}
}
.bottom-box .inner-box:hover .icon{-webkit-transform:scaleX(-1);transform:scaleX(-1);}
.bottom-box .inner-box .text{font-size:18px;font-weight:bold;color:#fff;margin-bottom:0;}
@media (max-width:767.98px){
.bottom-box .inner-box .text{margin-bottom:20px;}
}
.bottom-box .icon{position:relative;width:62px;height:62px;line-height:62px;border-radius:50%;font-size:26px;margin-right:-35px;color:#052858;-webkit-box-shadow:0 0 16px rgba(194,194,194,.75);box-shadow:0 0 16px rgba(194,194,194,.75);background-color:#fff;text-align:center;-webkit-transition:all 300ms ease;transition:all 300ms ease;z-index:3;}
@media (max-width:991.98px){
.bottom-box .icon{display:none;}
}
.bottom-box .theme-btn{position:relative;font-size:20px;padding:25px 50px;border-radius:0;letter-spacing:-.01em;}
.bottom-box .theme-btn:after{content:"";position:absolute;top:0;left:0;width:0;height:0;background-color:#052858;border-bottom:77px solid #052858;border-left:20px solid transparent;-webkit-transition:all 300ms ease;transition:all 300ms ease;}
@media (max-width:575.98px){
.bottom-box .theme-btn:after{display:none;}
}
.bottom-box .theme-btn:hover:after{border-bottom-color:#052858;}


@media only screen and (max-width: 767px){

.terms-wrap p{margin-bottom:15px;}
}








  
  .col-inner{position:relative;margin-left:auto;margin-right:auto;width:100%;background-position:50% 50%;background-size:cover;background-repeat:no-repeat;-ms-flex:1 0 auto;flex:1 0 auto;}
  @media screen and (min-width: 850px){
  .col:first-child .col-inner{margin-left:auto;margin-right:0;}
  .col+.col .col-inner{margin-right:auto;margin-left:0;}
  }
  
  .small-12{max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%;}
  @media screen and (min-width: 550px){
  .medium-2{max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%;}
  .medium-3{max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%;}
  }
  @media screen and (min-width: 850px){
  .large-2{max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%;}
  .large-3{max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%;}
  }
  
  
  .lista-horizontal-productos .button{position:relative;display:inline-block;background-color:transparent;text-transform:uppercase;font-size:.97em;letter-spacing:.03em;-ms-touch-action:none;touch-action:none;cursor:pointer;font-weight:bolder;text-align:center;color:currentColor;text-decoration:none;border:1px solid transparent;vertical-align:middle;border-radius:0;margin-top:0;margin-right:1em;text-shadow:none;line-height:2.4em;min-height:2.5em;padding:0 1.2em;max-width:100%;box-sizing:border-box;}
  .lista-horizontal-productos .button span{display:inline-block;line-height:1.6;}
  .lista-horizontal-productos .button.is-outline{line-height:2.19em;}
  .lista-horizontal-productos .button{color:#fff;background-color:#052858;background-color:#052858;border-color:rgba(0,0,0,0.05);}
  .lista-horizontal-productos .button.is-outline{border:2px solid #052858;background-color:transparent;}
  .lista-horizontal-productos .button:hover{outline:none;opacity:1;color:#fff;box-shadow:inset 0 0 0 100px rgba(0,0,0,0.2);}
  .is-outline{color:silver;}
  .is-outline:hover{box-shadow:none!important;}
  .primary{background-color:#052858;}
  .primary.is-outline{color:#052858;}
  .is-outline:hover,.primary.is-outline:hover{color:#fff;background-color:#052858;border-color:#052858;}
  .lista-horizontal-productos .button{margin-bottom:1em;}
  .expand{width:100%!important;max-width:100%!important;padding-left:0!important;padding-right:0!important;display:block;}
  .is-outline.primary{color:#052858;}
  .is-outline:hover,.primary.is-outline:hover{background-color:#052858;}
  .is-outline:hover,.primary.is-outline:hover{border-color:#052858;}
  .col-inner{word-wrap:break-word;}
  .col-inner{padding-top:20px;}
  .cp{color:#052858 !important;font-weight: 600 !important;}
  

 




  

  
  
  .flex{display:flex;}
  .grid{display:grid;}
  .h-5{height:1.25rem;}
  .h-12{height:3rem;}
  .h-full{height:100%;}
  .w-5{width:1.25rem;}
  .w-12{width:3rem;}
  .flex-auto{flex:1 1 auto;}
  .flex-none{flex:none;}
  .group:hover .group-hover\:translate-x-1{--tw-translate-x:0.25rem;}
  .items-center{align-items:center;}
  .gap-y-4{row-gap:1rem;}
  .space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse));}
  .rounded{border-radius:.25rem;}
  .border{border-width:1px;}
  .border-gray-200{--tw-border-opacity:1;border-color:rgba(229,229,229,var(--tw-border-opacity));}
  .bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity));}
  .px-5{padding-left:1.25rem !important;padding-right:1.25rem !important;}
  .py-4{padding-bottom:1rem !important;padding-top:1rem !important;}
  .leading-tight{line-height:1.25;}
  .text-primary{color:#000;}
  .text-t3m-body{color:#000;font-weight: 500;font-size: 14px;}
  .text-t3m-body:hover{color:#000;font-weight: 500;font-size: 14px;}
  
  .shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;}
  .shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);}
  
  svg.text-primary.group-hover\:translate-x-1.flex-none.w-5.h-5.transition-transform.transform{color: #000 !important;}
  @media (min-width:640px){
  .sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
  .sm\:gap-8{gap:2rem;}
  }
  @media (min-width:1024px){
  .lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}
  }
  @media (min-width:1280px){
  .xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}
  }
  


  .list-style-one10 li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding-left: 25px;
    margin-bottom: 11px;
    text-align: justify;
    font-weight: 500;
}

.list-style-one10 {
  position: relative;
  margin-top: 20px;
  list-style-type: none;
}

.list-style-one10 li:before {
  content: "\f138";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  padding: 0px;
  color: #052858;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
















.our-team{position:relative;text-align:center;overflow:hidden;box-shadow:0 0 5px #808080;}
.our-team img{width:100%;height:auto;transform:scale(1);transition:all 0.4s linear 0s;}
@media only screen and (max-width:990px){
.our-team{margin-bottom:20px;}
}
.product-title h2{font-size:16px;font-weight:600;text-align:center;color:#000;line-height:33px;margin:10px 0px;}
.product-title a:hover{text-decoration:none;}
.product-title{text-align:center;}
@media screen and (max-width:768px){
.product-title h2{margin:15px 0 30px;}
}


.contact-page-section .info-column .inner-column .social-links {
  position: relative;
}

.info-column .inner-column .social-links li {
  position: relative;
  margin-right: 16px;
  margin-bottom: 5px;
  display: inline-block;
}

.contact-page-section .info-column .inner-column .social-links li a {
  position: relative;
  color: #ffffff;
  width: auto;
  
  display: inline-block;
  text-align: center;
  line-height: 43px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
 
}
.blue-tab li a {
  border-radius: 15px;
  border: 2px solid #052858;
  background-color: transparent;
  display: block;
  padding: 10px 25px;
}
.blue-tab li.active a {
  background: #052858;
  color: #FFF;
}
.genetics-btn {
  width: auto;
  max-width: 355px;
}
.genetics-btn a {
  display: block;
  background: #ed0000;
  padding: 10px 12px;
  color: #FFF;
  border-radius: 7px;
}





.doctor-txt>.doctor-name{font-size:21px;color:#000;line-height:30px!important;font-weight: 600}
.doctor-photo{transform:translateY(-50%);z-index:111;}
.doctor-txt{border-radius:5px;margin-top:-96px;}
@media (max-width:768px){
.doctor-photo{left:22%;bottom:75%;}
.doctor-txt{margin:0;margin-top:-96px;}
}
@media (max-width:575px){
.doctor-photo{left:18%;bottom:93%;z-index:1;}
}

.read-more{max-height:120px;position:relative;overflow:hidden;cursor:pointer;color:#337ab7;}
.less{display:none;}
.leadership{box-shadow:0 0 15px -2px #7070704f;padding:25px;min-height: 330px;background: #fff;}
.read-more{max-height:120px;position:relative;overflow:hidden;}
.pointer{cursor:pointer!important;}
@media (max-width:991px){
.read-more{margin-top:15px!important;margin-bottom:60px;}
}
@media (max-width:545px){
.read-more{margin-top:20px!important;margin-bottom:20px;}
}
.leadership p{font-weight: 600;color: #000;}
.txt-17{font-size:17px!important;}
.mt-10{margin-top:10px!important;}



















.shop-details{position:relative;padding:80px 0px 0px 0px;}
.product-details-content .product-details .title-box h3{position:relative;display:block;font-size:28px;line-height:30px;color:#000;margin-bottom:8px;font-weight:bold;}
.product-details-content .product-details .title-box{position:relative;padding:24px 30px;box-shadow:0px 0px 50px 0px rgba(0, 0, 0, 0.1);margin-bottom:35px;}
.product-details-content .product-details .text{margin-bottom:34px;}
.product-details-content .product-details{position:relative;margin-top:-7px;text-align:justify;}
.product-details-content{position:relative;display:block;margin-bottom:96px;}
.product-discription .tab-btn-box{position:relative;display:block;margin-bottom:42px;}
.product-discription .tab-btn-box:before{position:absolute;content:'';background:#e3e3e3;width:100%;height:1px;left:0px;top:28px;}
.product-discription .tab-btn-box .tab-buttons{text-align:center;}
.product-discription .tab-btn-box .tab-buttons li{position:relative;display:inline-block;font-size:20px;line-height:26px;color:#212121;font-weight:600;border:1px solid #e3e3e3;background:#ffffff;text-align:center;padding:13px 30px;cursor:pointer;margin:0px 8px;transition:all 500ms ease;}
.product-discription .tab-btn-box .tab-buttons li.active-btn{box-shadow:0px 0px 50px 0px rgba(0, 0, 0, 0.1);}
.product-discription .tabs-content .text p{position:relative;margin-bottom:17px;}
.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);}
.text1 p{font-weight:500;color: #000;text-align: justify;}
@media only screen and (max-width: 767px){
br{display:none;}
.product-details-content .product-details .title-box h3{font-size:15px;}

}
.product-details p{font-weight:bold;color: #000;}
.product-details-content .product-details .title-box{border-top:6px solid #052858;}

.pricing-block-two .pricing-table .table-content p {
  min-height: 95px;
  margin-bottom:0px;font-size: 16px;
}
.pricing-block-two .pricing-table .feature-list .theme-btn span:before {
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 10px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  top: -1px;
  right: 0px;
  background: #fff;
  color: #1c1c1c;
  transition: all 500ms ease;
}



.TopSection_banner__options__5_vUS {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.TopSection_banner__option__R7RSB {
  background: #052858;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.TopSection_banner__option--icon__Wy9yf {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.TopSection_banner__option--icon__Wy9yf:first-child> i {
  width: 30px;
  height: auto;
  color: #000;
  text-align: center;
}
.TopSection_banner__option__R7RSB p {
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
}

.dsk-hide{display:none!important}

.header_header__contact__lW_J6{display:none}
.BottomNavBarMobile_bottomNav__NuSft{display:none}

.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: #1c1c1c;
}
.btn-box a span:before {
 
  content: "\f105";
  font-family: 'flaticon';
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -8px;
  font-weight: 400;
  transition: all 500ms ease;
}
.service-block-one .inner-box .lower-content .btn-box a span:before {
  border: 1px solid #e4492e;
  color: #e4492e;
}

.whych{  color:#000;
  padding: 10px; margin-bottom:0px;}
  .whych h3{color:#000!important}

  .whych .icon-box {
    float: left;
    margin-right: 15px;
    color: #052858;
    font-size: 22px;
}
.row.pckg{justify-content: start!important;}

.spp{position: relative;
  display: inline-block;
  padding: 25px 0px 20px 0px;
  cursor: pointer;
  box-shadow: 0 4px 10px hsla(0, 0%, 55%, .2);
  border-radius: 15px;
  margin-bottom: 10px;

}
.spp h4{        font-size: 20px !important;
  line-height: 30px;
  font-weight: 500;}

  section.chooseus-section.bg-color-1.mb-hide{padding-top:0px;padding-bottom:50px}

  ul#ui-id-1{top:90px!important}
