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


/*** 

====================================================================
  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;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1c1c1c;
  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: 237px;
  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 {
  background: url(../images/loading-popup.html);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* 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: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 14px 30px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

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

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

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

.theme-btn span:before {
  position: absolute;
  content: "\f105";
  font-family: '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: 80px 0px 80px 0px;
}

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

.mr-5 {
  margin-right: 5px;
}

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

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

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



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

.sec-title .sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  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: 22px;
  line-height: 40px;
  font-weight: 700;
  margin: 0px;
}

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

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

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  font-size: 20px;
  color: #EA2124;
  text-align: center;
  background-color: transparent;
}

.owl-carousel .owl-next {
  right: 0;
}




/*** 

====================================================================
                        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 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: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: #2b2a29;
  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;
}



.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: 91px;
  right: -54px;
  top: -12px;
} */

.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 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 {
  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: 0px;
}

.menu-right-content .btn-box .theme-btn {
  background: #2b2a29;
  color: #fff;
  padding-right: 0px;
}

.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: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 25px;
}

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





/** 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 8px;
  font-weight: 600;
  font-family: 'Poppins', 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>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 310px;
  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: 'Poppins', 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: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>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: 'Poppins', 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.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

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

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 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.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%;
  transition: all .8s ease-out 0s;
  -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: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: absolute;
  top: 40px;
  width: 100%;
  margin-left: 200px;
  z-index: 5;
}

.banner-carousel .content-box .special-text {
  position: relative;
  display: block;
  font-size: 140px;
  line-height: 140px;
  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;
}

.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.owl-prev {
  margin-right: 20px;
}

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

/* .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;
  /* border-bottom: 1px solid #e2e2e2; */
  padding: 80px 0px 50px 0px;
}



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

.case-section .owl-dots {
  display: none;
}

.case-section {
  border-bottom: 1px solid #e2e2e2;
  z-index: 111;
}

.about-section .image-box .image {
  position: relative;
  display: block;
  margin-bottom: 30px;
  /* margin-left: -120px; */
}

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




/** funfact-section **/

.funfact-section {
  position: relative;
  padding: 80px 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: 80px;
  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: 50px;
  line-height: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #e31e24;
  margin-right: 30px;
}

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

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


/** service-section **/

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

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

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

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

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



.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 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: 0px;
  font-size: 78px;
  line-height: 78px;
  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;
  border-bottom: 1px solid #e2e2e2;
}

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

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

.chooseus-section .sec-title p {
  margin-bottom: 33px;
  color: #000;
  text-align: justify;
}

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

.chooseus-section .scroll-text {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 20px 0px 20px 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 20s 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: #2b2a29;
  margin-right: 70px;
}

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

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

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

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

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

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

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

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

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

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

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

.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: #1c1c1c;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

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

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

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

.chooseus-section .content-box .overlay-content h3 {
  color: #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: 709px;
  background-repeat: no-repeat;
}


/** industry-section **/

.industry-section {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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



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

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

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

}

.main-footer {
  margin-top: -1px;
}

.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 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: block;
  float: left;
  width: 12%;
  text-align: center;
  border-right: 1px solid #d6d6d6;
  cursor: pointer;
  min-height: 514px;
  padding: 250px 0px 130px 0px;
  transition: all 500ms ease;
}

.working-section .tab-btns li.active-btn {
  background: #d0cfcf;
}

.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 h5 {
  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: #000;
}


/** case-section **/

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

.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: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: 111px 0px;
}

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

.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: #f3f1f1;
  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;
  padding-left: 55px;
}

.testimonial-section .testimonial-content .inner-box:before {
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 1px;
  height: calc(100% + 31px);
  left: 0px;
  top: -20px;
}

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

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

.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: -10px;
  bottom: 38px;
}

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

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

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

.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);
  filter: blur(4px);
  -webkit-filter: blur(4px);
}

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

.news-block-one .inner-box .image-box .category a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  font-family: '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 .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 i {
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 16px;
  color: #a9a6a5;
}

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

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

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

.news-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: #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 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;
}

.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 115px 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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



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

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

.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 .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;
  text-align: center;
  z-index: 11
}

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



.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: #f3f1f1;
  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.html);
  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.html);
  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 .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 .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;
}




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

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

.chooseus-block-one .inner-box {
  position: relative;
  display: block;
  padding: 117px 40px 115px 50px;
  border-right: 1px solid #d6d6d6;
}

.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: 24px;
  font-weight: 700;
  padding: 28px 0px;
  margin-bottom: 33px;
}

.chooseus-block-one .inner-box h3:before,
.chooseus-block-one .inner-box h3:after {
  position: absolute;
  content: '';
  background: #d6d6d6;
  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;
  padding-right: 70px;
  margin-right: 100px;
}

.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: 60px;
  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;
}

.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.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: #f3f1f1;
  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 .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: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 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 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: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-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: 80px; */
}

.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: 11px;
  width: 630px;
  z-index: 1;
  background: #d0cfcf;
  padding: 20px 290px 20px 30px;
}

.case-block-two .inner-box .content-box .btn-box {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 260px;
  text-align: center;
  background: #f3f1f1;
  padding: 20px 15px 14px 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 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: 17px;
  /* line-height: 34px; */
  font-weight: 700;
  /* margin-bottom: 6px; */
  text-align: center;
}

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



.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: #d0cfcf;
  width: 260px;
  height: 359px;
  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: #000;
  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: #000;
}

.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 .table-header {
  position: relative;
  display: block;
  padding: 22px 30px 22px 40px;
  background: #f3f1f1;
  border-bottom: 1px solid #e2e2e2;
  transition: all 500ms ease;
}



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




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

.contact-section .tab-btns li.active-btn {
  color: #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: 28px;
  color: #a9a6a5;
  transition: all 500ms ease;
}

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

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

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

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

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

.contact-section .content-box {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  background: #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 .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: #f3f1f1;
  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 .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: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: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 .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 .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;
  color: #000;
  max-width: 70%;
  margin: 0px auto;
}

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




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

.pricing-block-two .pricing-table .price-box {
  position: relative;
  display: block;
  padding: 13px 30px 2px 40px;
}

.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: 18px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-block-two .pricing-table .price-box h5 span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.pricing-block-two .pricing-table .title-box {
  position: relative;
  display: block;
  background: #1c1c1c;
  padding: 20px 30px 20px 40px;
}

.pricing-block-two .pricing-table .title-box h3 {
  display: block;
  font-size: 24px;
  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 40px 40px 40px;
  background: #f3f1f1;
  border: 1px solid #e2e2e2;
  border-top: none;
}

.pricing-block-two .pricing-table .feature-list {
  margin-bottom: 20px;
}

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

.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 span:before {
  color: #1c1c1c;
}



.pricing-block-two.active-block .pricing-table .title-box p {
  color: #fed9d9;
}


/** 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 .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 .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 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 .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 {
  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: 17px;
  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 .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-details **/

.shop-details {
  position: relative;
  padding: 120px 0px 50px 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 .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 .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: #f3f1f1;
  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;
  color: #000;
  text-align: justify;
}

.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: #f3f1f1;
  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 .single-comment-box .inner-box {
  position: relative;
  display: block;
  background-color: #f3f1f1;
  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 .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: #f3f1f1;
  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 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-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 button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  background: #f3f1f1;
  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: #f3f1f1;
  border: 1px solid #f3f1f1;
  font-size: 17px;
  color: #827e7d;
  padding: 10px 20px;
  transition: all 500ms ease;
}



.checkout-page-section .information-inner .field-input .nice-select {
  position: relative;
  border: 1px solid #f3f1f1 !important;
  color: #827e7d;
  background: #f3f1f1;
  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 .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: #f3f1f1;
  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 .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: #f3f1f1;
  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 .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 .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: #f3f1f1;
}

.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: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: #f3f1f1;
  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 button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  line-height: 48px;
  background: #f3f1f1;
  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 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 i {
  position: absolute;
  top: 1px;
  right: 0px;
  font-size: 16px;
  color: #a9a6a5;
  transition: all 500ms ease;
}



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

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

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

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

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

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

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

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

.service-sidebar .download-widget .download-list li button {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: '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 i {
  position: absolute;
  top: 2px;
  right: 0px;
  font-size: 20px;
  color: #afacab;
  transition: all 500ms ease;
}



.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:first-child,
.service-details-content .content-two .service-list li:nth-child(2) {
  border-top: 1px solid #e2e2e2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.industry-style-three.industries-page-one .industries-block-one .inner-box .content-box h3 a {
  color: #1c1c1c;
}



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



.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 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:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  background: #f3f1f1;
  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 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: #f3f1f1;
  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 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 {
  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-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 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 .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: #f3f1f1;
  font-size: 38px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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


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

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



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



.about-section p {
  color: #000;
  text-align: justify;
  margin-bottom: 1rem;
}

.thm-base {
  color: #e31e24;
  font-weight: bold;
}












.main-footer {
  padding: 100px 0 60px;
}

.widget {
  position: relative;
  margin-bottom: 40px;
}

.about-widget {
  position: relative;
}

.about-widget .logo {
  position: relative;
  margin-bottom: 30px;
}

.about-widget .text {
  position: relative;
  color: #000;
  margin-bottom: 30px;
}

.about-widget .social-links {
  position: relative;
}

.about-widget .social-links li {
  position: relative;
  margin-right: 10px;
  display: inline-block;
}

.about-widget .social-links li a {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background-color: #2e2e2e;
  transition: .5s;
  display: inline-block;
}

.about-widget .social-links li a:hover {
  color: #fff;
}

.links-widget {
  position: relative;
}

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

.links-widget .list li a {
  position: relative;
  color: #000;
  transition: .5s;
}

.links-widget .list li a:before {
  content: "\f061";
  left: 0;
  top: 0;
  margin-right: 8px;
  font-size: 16px;
  font-family: 'Font Awesome 6 free';
  font-weight: 900;
}

.widget_title {
  position: relative;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.contact-widget {
  position: relative;
}

.contact-widget li {
  position: relative;
  color: #000;
  margin-bottom: 16px;
  padding-left: 60px;
  line-height: 27px;
  padding-top: 12px;
}

.contact-widget i {
  position: absolute;
  top: 7px;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #2e2e2e;
  transition: .5s;
  display: inline-block;
  transition: .5s;
}

.contact-widget li:hover i {
  color: #fff;
}

.contact-widget a {
  color: #000;
}

.about-widget .social-links li a:hover {
  background-color: #e31e24;
}

.links-widget .list li a:hover {
  color: #e31e24;
}

.contact-widget li:hover i {
  background-color: #e31e24;
}

.footer-bottom .wrapper-box {
  position: relative;
  border-top: 1px solid #3a3a3a;
  padding: 33px 0;
}

.footer-bottom .copyright-text {
  color: #000;
  font-size: 17px;
}

.mx-l {
  margin-left: -15px;
}

/* .service-block-one .inner-box .image-box .shape{display: none;}
.service-block-one .inner-box:hover .image-box .shape{transform: scale(1.2,1.2);display: block;transition: all 500ms ease;} */








.mb-10 {
  margin-bottom: 10px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pt-120 {
  padding-top: 80px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pr-70 {
  padding-right: 70px;
}


.mb-10 {
  margin-bottom: 10px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-10 {
  margin-left: 10px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.msection-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
  color: #000000;
}


@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .msection-title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .msection-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .msection-title {
    font-size: 25px;
  }
}



.about-area {
  border-bottom: 1px solid #e9e9eb;
}

.msubtitle p {
  color: #000;
  text-align: justify;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .mabout-right {
    padding-right: 0px;
  }
}

@media (max-width: 575px) {
  .mabout-bottom-btn {
    display: inherit !important;
  }
}

@media (max-width: 575px) {
  .mbtn-btm-30 {
    display: inherit !important;
    margin-bottom: 30px;
  }
}

.about-area2 {
  border-bottom: 0;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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


.pt-50 {
  padding-top: 50px;
}

.box {
  background-color: #F5F5F5;
  border-radius: 30px 30px 30px 30px;
  text-align: center;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
  margin-bottom: 20px;
}

.lower {
  padding: 0px 15px 0px 15px;
  margin-bottom: 20px;
}

.lower h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.boxshad {
  margin: 0px 10px 0px 10px;
  border-radius: 30px 30px 30px 30px;
  text-align: center;
}

.lower .btn-two {
  margin-bottom: 20px;
}














.gSXewE {
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 0;
}









.font_8 {
  font: var(--font_8);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

[data-mesh-id=comp-lluhi6jpinlineContent-gridContainer]>[id="comp-lluhjsaz"] {
  position: relative;
  margin: 35px 0px 10px 0;
  left: 42px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lluhjsazinlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id=comp-lluhjsazinlineContent-gridContainer]>[id="comp-lm03q3ej"] {
  position: relative;
  margin: 0px 0px 10px 0;
  left: 600px;
  grid-area: 1 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lluhjsazinlineContent-gridContainer]>[id="comp-lluhjscd1"] {
  position: relative;
  left: 85px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lluhjsazinlineContent-gridContainer]>[id="comp-lluhjsce3"] {
  position: relative;
  margin: 0px 0px 70px 0;
  left: 85px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

#comp-lm03q3ej {
  --brw: 0px;
  --brd: var(--color_14);
  --bg: var(--color_14);
  --rd: 30px 30px 30px 30px;
  --shd: none;
  --alpha-brd: 1;
  --alpha-bg: 0.1;
  --boxShadowToggleOn-shd: none;
}

#comp-lm03q3ej {
  width: 545px;
}

[data-mesh-id=comp-lm03q3ejinlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  margin-top: -20px;
  margin-bottom: -31px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id=comp-lm03q3ejinlineContent-gridContainer]>[id="comp-lluhjsca"] {
  position: relative;
  margin: 40px 0px 10px 0;
  left: 39px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lm03q3ejinlineContent-gridContainer]>[id="comp-lluhjscb4"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}


#comp-lluhjscb4 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

/* #comp-lluhjscb4{width:194px;height:455px;} */
#comp-lluhjscd1 {
  width: 435px;
  height: auto;
}

#comp-lluhjsce3 {
  width: 477px;
  height: auto;
}

#comp-lluhjscd1 {
  height: auto;
}

#comp-lluhjsce3 {
  height: auto;
}



:root,
:host,
.spxThemeOverride {
  --color_14: 112, 109, 109;
  --color_15: 47, 46, 46;
  --font_8: 'Poppins', sans-serif;
}









.KcpHeO {
  word-wrap: break-word;
  direction: var(--text-direction);
  min-height: var(--min-height);
  min-width: var(--min-width);
  overflow-wrap: break-word;
  pointer-events: none;
  text-align: start;
}

.KcpHeO h2,
.KcpHeO p {
  margin-block: 0;
  margin: 0;
}









.R6ex7N .kuTaGy {
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--trans1, border-color .4s ease 0s, background-color .4s ease 0s);
}

.R6ex7N .M3I7Z2 {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15))));
  font: var(--fnt, var(--font_5));
  margin: 0;
  position: relative;
  transition: var(--trans2, color .4s ease 0s);
  white-space: nowrap;
}

.R6ex7N[aria-disabled=false] .kuTaGy {
  background-color: var(--corvid-background-color, rgba(var(--bg, var(--color_17)), var(--alpha-bg, 1)));
  border: solid var(--corvid-border-color, rgba(var(--brd, var(--color_15)), var(--alpha-brd, 1))) var(--corvid-border-width, var(--brw, 0));
  cursor: pointer !important;
}






.nTiihL {
  background-color: var(--container-corvid-background-color, rgba(var(--bg, var(--color_11)), var(--alpha-bg, 1)));
  ;
  border-radius: var(--rd, 5px);
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.aVng1S {
  border-top: var(--lnw, 2px) solid rgba(var(--brd, var(--color_15)), var(--alpha-brd, 1));
  box-sizing: border-box;
  height: 0;
}


.TabsList2027980309__root {
  box-sizing: border-box;
  direction: var(--tabs-list-direction, initial);
  display: flex;
  position: relative;
  width: 100%;
}

.TabsList2027980309__tabsList {
  -ms-overflow-style: none;
  align-items: stretch;
  display: flex;
  gap: var(--tabs-list-items-gap, 0);
  min-height: 24px;
  row-gap: var(--tabs-list-wrap-row-gap, 0);
  scrollbar-width: none;
  width: 100%;
}

.TabsList2027980309__tab:first-child {
  margin-left: var(--first-child-margin-left, 0);
  margin-right: var(--first-child-margin-right, 0);
}

.TabsList2027980309__tab:last-child {
  margin-left: var(--last-child-margin-left, 0);
  margin-right: var(--last-child-margin-right, 0);
}

.TabsList2027980309__tabsList::-webkit-scrollbar {
  display: none;
}

.TabsList2027980309__tabsList {
  flex-wrap: var(--tabs-list-flex-wrap, nowrap);
  justify-content: var(--tabs-list-justify-content, normal);
  overflow-x: var(--tabs-list-overflow-x, visible);
}

.TabsList2027980309__tab {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  align-items: center;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: var(--tabs-list-item-border-width, 0);
  cursor: pointer;
  display: flex;
  flex-grow: var(--tabs-list-item-flex-grow, 0);
  justify-content: var(--tabs-list-content-alignment, flex-start);
  padding: var(--tabs-list-vertical-padding, 20px) var(--tabs-list-horizontal-padding, 20px);
  white-space: nowrap;
}

.TabsList2027980309__tab.TabsList2027980309--current {
  border-bottom-color: rgba(var(--color-8), var(--alpha-color-8, 1));
}

.TabsList2027980309__scrollButton:first-child {
  left: var(--tabs-list-back-button-left, 0);
  right: var(--tabs-list-back-button-right, auto);
}

.TabsList2027980309__scrollButton:last-child {
  left: var(--tabs-list-forward-button-left, auto);
  right: var(--tabs-list-forward-button-right, 0);
}

.TabsList2027980309__label {
  -archetype: text;
}

.TabsScrollButton1157534303__root {
  align-items: center;
  bottom: var(--tabs-list-item-border-width, 0);
  cursor: default;
  display: var(--tabs-list-scroll-buttons-display, flex);
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: var(--tabs-list-scroll-buttons-transform, scaleX(1));
  transition: opacity .1s ease-in-out;
  width: 0;
}

.TabsScrollButton1157534303__root.TabsScrollButton1157534303--isVisible {
  cursor: pointer;
  opacity: 1;
  width: auto;
}

.Tabscomponent1176390459__root {
  -archetype: box;
  --display: flex;
  display: var(--display);
  flex: 1;
  flex-direction: column;
  gap: var(--tabs-list-container-gap, 0);
  height: 100%;
  min-width: 0;
}

.Tabscomponent1176390459__multiStateBoxWrapper {
  box-sizing: border-box;
  flex: 1;
  width: 100%;
}

.Tabscomponent1176390459__tabPanelWrapper.Tabscomponent1176390459--isCurrentTab {
  height: 100%;
  width: 100%;
}


.font_2 {
  font: var(--font_2);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}

.color_15 {
  color: rgb(var(--color_15));
}

[data-mesh-id=comp-lluhl4dminlineContent-gridContainer]>[id="comp-lmh99rus"] {
  position: relative;
  margin: 0px 0px 60px 0;
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

#comp-lmh99rus {
  width: 1160px;
  height: 558px;
}

#comp-lmh99rus .style-lmh99rw9__root {
  -st-extends: Tabs;
}

#comp-lmh99rus .style-lmh99rw9__root .Tabscomponent1176390459__tabsList .TabsList2027980309__tab {
  background-color: #FFFFFF;
  font-family: poppins-semibold, poppins, sans-serif;
  font-size: 18px;
  color: #EA2124;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  border: 2px solid #E8E8E8;
  border-radius: 100px;
  box-shadow: 2.83px 2.83px 15px 3px rgba(0, 0, 0, 0);
}

#comp-lmh99rus .style-lmh99rw9__root .Tabscomponent1176390459__tabsList .TabsList2027980309__tab.TabsList2027980309--current {
  color: #FFFFFF;
  background-color: #EA2124;
}

#comp-lmh99rus .style-lmh99rw9__root .Tabscomponent1176390459__tabsList .TabsList2027980309__tab:hover {
  color: #FFFFFF;
  background-color: #EA2124;
}

#comp-lmh99rus .style-lmh99rw9__root .Tabscomponent1176390459__multiStateBoxWrapper {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0px;
  box-shadow: 2.83px 2.83px 15px 3px rgba(0, 0, 0, 0);
}

#comp-lmh99rwb {
  width: 1160px;
}

[data-mesh-id=comp-lmh99rwbinlineContent] {
  height: auto;
  width: 1160px;
}

[data-mesh-id=comp-lmh99rwbinlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 510px;
  grid-template-rows: repeat(4, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id=comp-lmh99rwbinlineContent-gridContainer]>[id="comp-lmh99rwf"] {
  position: relative;
  margin: 21px 0px -116px 0;
  left: 63px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwbinlineContent-gridContainer]>[id="comp-lmh99rwn"] {
  position: relative;
  margin: 75px 0px 10px 0;
  left: 0px;
  grid-area: 1 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
  margin: 0 auto;
}

[data-mesh-id=comp-lmh99rwbinlineContent-gridContainer]>[id="comp-lmh99rx13"] {
  position: relative;
  margin: 80px 0px 10px 0;
  left: 578px;
  grid-area: 1 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwbinlineContent-gridContainer]>[id="comp-lmh99rxd3"] {
  position: relative;
  margin: 90px 0px 10px 0;
  left: 814px;
  grid-area: 1 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwbinlineContent-gridContainer]>[id="comp-lmh99rxh2"] {
  position: relative;
  margin: 0px 0px 10px 0;
  left: 1004px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

#comp-lmh99rwf {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lmh99rwf {
  width: 785px;
  height: 320px;
}

#comp-lmh99rwn {
  --brw: 0px;
  --brd: var(--color_14);
  --bg: var(--color_14);
  --rd: 20px 20px 20px 20px;
  --shd: none;
  --alpha-brd: 1;
  --alpha-bg: 0.33;
  --boxShadowToggleOn-shd: none;
}

#comp-lmh99rwn {
  width: 330px;
}

[data-mesh-id=comp-lmh99rwninlineContent] {
  height: auto;
  width: 330px;
}

[data-mesh-id=comp-lmh99rwninlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(4, min-content) 1fr;
  grid-template-columns: 100%;
}

[data-mesh-id=comp-lmh99rwninlineContent-gridContainer]>[id="comp-lmh99rwo1"] {
  position: relative;
  margin: 20px 0px 13px 0;
  left: 17px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwninlineContent-gridContainer]>[id="comp-lmh99rwq3"] {
  position: relative;
  margin: 0px 0px 26px 0;
  left: 4px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwninlineContent-gridContainer]>[id="comp-lmh99rws"] {
  position: relative;
  margin: 0px 0px 9px 0;
  left: 17px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwninlineContent-gridContainer]>[id="comp-lmh99rwt1"] {
  position: relative;
  margin: 0px 0px 28px 0;
  left: 31px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}

[data-mesh-id=comp-lmh99rwninlineContent-gridContainer]>[id="comp-lmh99rwv2"] {
  position: relative;
  margin: 0px 0px 31px 0;
  left: 86px;
  grid-area: 5 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
}

#comp-lmh99rwo1 {
  width: 295px;
  height: auto;
}

#comp-lmh99rwq3 {
  width: 320px;
  height: auto;
}

#comp-lmh99rws {
  width: 295px;
  height: auto;
}

#comp-lmh99rwt1 {
  --lnw: 1px;
  --brd: var(--color_15);
  --alpha-brd: 1;
}

#comp-lmh99rwt1 {
  width: 265px;
  height: 1px;
}

#comp-lmh99rwv2 {
  --rd: 6px 6px 6px 6px;
  --trans1: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
  --shd: none;
  --fnt: normal normal normal 17px/1.4em arial, 'ｍｓ ｐゴシック', 'ms pgothic', '돋움', dotum, helvetica, sans-serif;
  --trans2: color 0.4s ease 0s;
  --txt: 255, 255, 255;
  --alpha-txt: 1;
  --brw: 2px;
  --bg: 234, 33, 36;
  --brd: 234, 33, 36;
  --bgh: 255, 255, 255;
  --brdh: 234, 33, 36;
  --txth: 234, 33, 36;
  --alpha-txth: 1;
  --bgd: var(--color_17);
  --alpha-bgd: 1;
  --brdd: var(--color_15);
  --txtd: var(--color_15);
  --alpha-txtd: 1;
  --alpha-brdd: 1;
  --alpha-brdh: 1;
  --alpha-brd: 1;
  --alpha-bg: 1;
  --alpha-bgh: 1;
  --boxShadowToggleOn-shd: none;
}

#comp-lmh99rwv2 {
  width: 155px;
  height: 40px;
}

#comp-lmh99rx13 {
  --brw: 0px;
  --brd: 66, 55, 55;
  --bg: 200, 238, 245;
  --rd: 0px;
  --shd: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
}

#comp-lmh99rx13:not(.is-animating) {
  transition: all 0.4s ease-in-out 0s;
}

#comp-lmh99rx13:not(.is-animating) {
  transform-origin: 50% 50%;
}

#comp-lmh99rx13:hover {
  z-index: 1;
  transform: translateX(0)translateY(0)scaleX(1.07)scaleY(1.07)rotate(0deg)skewX(0deg)skewY(0deg);
}

#comp-lmh99rx13 {
  width: 100px;
}

[data-mesh-id=comp-lmh99rx13inlineContent] {
  height: auto;
  width: 116px;
}

[data-mesh-id=comp-lmh99rx13inlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

#comp-lmh99rxb1 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lmh99rxb1:not(.is-animating) {
  transition: all 1.4s ease-in 2.6s;
}

#comp-lmh99rxb1:not(.is-animating) :not(.is-animating) {
  transition: all 1.4s ease-in 2.6s, visibility 0s;
}

#comp-lmh99rxb1:not(.is-animating) {
  transform-origin: 50% 50%;
}

#comp-lmh99rx13:hover #comp-lmh99rxb1 {
  transform: translateX(0)translateY(0)scaleX(1.08)scaleY(1.08)rotate(0deg)skewX(0deg)skewY(0deg);
}

#comp-lmh99rxb1 {
  width: 116px;
  height: 250px;
}

#comp-lmh99rxd3 {
  --brw: 0px;
  --brd: 66, 55, 55;
  --bg: 200, 238, 245;
  --rd: 0px;
  --shd: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
}

#comp-lmh99rxd3:not(.is-animating) {
  transition: all 0.4s ease-in-out 0s;
}

#comp-lmh99rxd3:not(.is-animating) {
  transform-origin: 50% 50%;
}

#comp-lmh99rxd3:hover {
  z-index: 1;
  transform: translateX(0)translateY(0)scaleX(1.07)scaleY(1.07)rotate(0deg)skewX(0deg)skewY(0deg);
}


[data-mesh-id=comp-lmh99rxd3inlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

#comp-lmh99rxf5 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lmh99rxf5 {
  width: 116px;
  height: 250px;
}

#comp-lmh99rxh2 {
  --brw: 0px;
  --brd: 66, 55, 55;
  --bg: 200, 238, 245;
  --rd: 0px;
  --shd: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
}

#comp-lmh99rxh2:not(.is-animating) {
  transition: all 0.4s ease-in-out 0s;
}

#comp-lmh99rxh2:not(.is-animating) {
  transform-origin: 50% 50%;
}

#comp-lmh99rxh2:hover {
  z-index: 1;
  transform: translateX(0)translateY(0)scaleX(1.07)scaleY(1.07)rotate(0deg)skewX(0deg)skewY(0deg);
}

#comp-lmh99rxh2 {
  width: 62px;
}

[data-mesh-id=comp-lmh99rxh2inlineContent] {
  height: auto;
  width: 116px;
}

[data-mesh-id=comp-lmh99rxh2inlineContent-gridContainer] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

#comp-lmh99rxj {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}

#comp-lmh99rxj {
  width: 116px;
  height: 250px;
}

#comp-lmh99rwf {
  --height: 320px;
  --width: 785px;
}

#comp-lmh99rwo1 {
  height: auto;
}

#comp-lmh99rwq3 {
  height: auto;
}

#comp-lmh99rws {
  --min-height: 109px;
  height: auto;
}

#comp-lmh99rwt1 {
  transform-origin: center 0.5px;
}

#comp-lmh99rwv2 {
  --shc-mutated-brightness: 117, 17, 18;
  --fnt: normal normal normal 17px/1.4em arial, 'ｍｓ ｐゴシック', 'ms pgothic', '돋움', dotum, helvetica, sans-serif;
  --label-align: center;
  --label-text-align: center;
}

#comp-lmh99rxb1 {
  --height: 250px;
  --width: 116px;
  --mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' data-bbox='20 20 160 160' viewBox='20 20 160 160' height='200' width='200' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cg%3E%3Cpath d='M180 20v160H20V20h160z'/%3E%3C/g%3E%3C/svg%3E%0A");
  --mask-position: 0% 0%;
  --mask-size: 100% 100%;
  --mask-repeat: no-repeat;
}

#comp-lmh99rxf5 {
  --height: 250px;
  --width: 116px;
  --mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' data-bbox='20 20 160 160' viewBox='20 20 160 160' height='200' width='200' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cg%3E%3Cpath d='M180 20v160H20V20h160z'/%3E%3C/g%3E%3C/svg%3E%0A");
  --mask-position: 0% 0%;
  --mask-size: 100% 100%;
  --mask-repeat: no-repeat;
}

#comp-lmh99rxj {
  --height: 250px;
  --width: 116px;
  --mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' data-bbox='20 20 160 160' viewBox='20 20 160 160' height='200' width='200' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cg%3E%3Cpath d='M180 20v160H20V20h160z'/%3E%3C/g%3E%3C/svg%3E%0A");
  --mask-position: 0% 0%;
  --mask-size: 100% 100%;
  --mask-repeat: no-repeat;
}

#comp-lmh99rus {
  height: auto;
  --tabs-list-items-gap: 27px;
  --tabs-list-container-gap: 8px;
  --tabs-list-content-alignment: center;
  --tabs-list-horizontal-padding: 52px;
  --tabs-list-vertical-padding: 8px;
  --tabs-list-item-flex-grow: 0;
  --tabs-list-wrap-row-gap: 0px;
  --tabs-list-direction: ltr;
  --first-child-margin-left: 0;
  --first-child-margin-right: 0;
  --last-child-margin-left: 0;
  --last-child-margin-right: 0;
  --tabs-list-back-button-left: 0;
  --tabs-list-back-button-right: auto;
  --tabs-list-forward-button-left: auto;
  --tabs-list-forward-button-right: 0;
  --tabs-list-scroll-buttons-transform: scaleX(1);
  --tabs-list-overflow-x: visible;
  --tabs-list-flex-wrap: wrap;
  --tabs-list-justify-content: center;
  --tabs-list-scroll-buttons-display: none;
}

#comp-lmh99rwb {
  width: 100%;
  --display: initial;
  height: auto;
}

#comp-lmh99rwn {
  --shc-mutated-brightness: 56, 55, 55;
}

#comp-lmh99rx13 {
  --shc-mutated-brightness: 100, 119, 123;
}

#comp-lmh99rxd3 {
  --shc-mutated-brightness: 100, 119, 123;
}

#comp-lmh99rxh2 {
  --shc-mutated-brightness: 100, 119, 123;
}

#comp-lmh99rx13:hover {
  --shc-mutated-brightness: 100, 119, 123;
}

#comp-lmh99rxd3:hover {
  --shc-mutated-brightness: 100, 119, 123;
}

#comp-lmh99rxh2:hover {
  --shc-mutated-brightness: 100, 119, 123;
}

.bg-image {
  background: url(../images/about-us-new/products.webp);
  background-size: contain;
  background-position: 100%;
  background-repeat: no-repeat;
}

.bg-about {
  background: url(../images/about-us-new/about-us-bg.webp);
  background-size: contain;
  background-position: 100%;
  background-repeat: no-repeat;
}

.row.content-cont {
  align-items: center;
}





.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner>.item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}

.carousel-inner>.item>img {
  line-height: 1;
}

.carousel-inner>.active {
  display: block;
}

.carousel-inner>.active {
  left: 0;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

@media screen and (min-width:768px) {
  .carousel-indicators {
    bottom: 20px;
  }
}

#carousel-custom .carousel-indicators {
  margin: 10px 0 0;
  overflow: auto;
  position: static;
  text-align: left;
  white-space: nowrap;
}

#carousel-custom .carousel-indicators li {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  height: auto;
  margin: 0 !important;
  width: auto;
  margin-right: 12px !important;
}

#carousel-custom .carousel-indicators li img {
  display: block;
  opacity: 0.5;
  border: 1px solid #aaaaaa;
}

#carousel-custom .carousel-indicators li.active img {
  opacity: 1;
  border: 1px solid #e31e24
}

#carousel-custom .carousel-indicators li:hover img {
  opacity: 0.75;
}

#carousel-custom .carousel-outer {
  position: relative;
}

.carousel-indicators li img {
  width: 126px;
}

.carousel-control.left {
  background-image: none !important;
}

.carousel-control.right {
  background-image: none !important;
}

.fa-arrow-left {
  color: #000;
  top: 50%;
  position: absolute;
}

.fa-arrow-right {
  color: #000;
  top: 50%;
  position: absolute;
}


.image-box {
  position: relative;
  /* margin-right: 30px; */
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.producttable {
  text-align: center;
}

.producttable th {
  background-color: #1f1f1f;
  color: #fff !important;
  vertical-align: middle !important;
  font-size: 13px;
  font-weight: 500;
}

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














@media (max-width:1440px) {
  #HISTORY .box_right {
    padding: 30px 0 80px 350px !important;
  }
}

@media (max-width:1380px) {
  #HISTORY .box_right {
    padding: 50px 0 80px 350px !important;
  }
}

@media (max-width:1024px) {
  #HISTORY .box_top.active {
    display: none !important;
  }

  #HISTORY .box_top {
    display: none !important;
  }
}

@media (max-width:768px) {
  #HISTORY .box_top.active {
    display: none !important;
  }

  #HISTORY .box_top {
    display: none !important;
  }
}

.color_1 {
  color: #0018a8 !important;
}

.color_2 {
  color: #1634db !important;
}

.color_3 {
  color: #0088ce !important;
}

.color_4 {
  color: #00AD83 !important;
}

.color_5 {
  color: #009e77 !important;
}

.color_6 {
  color: #008765 !important;
}

#BUSINESS_HIGHLIGHT {
  position: relative;
  height: 100%;
}

#BUSINESS_HIGHLIGHT .content_section {
  display: block;
  overflow: hidden;
  position: relative;
  min-width: 1280px;
  width: 100%;
  max-width: 1280px;
  min-height: 100vh;
  height: 100%;
  max-height: 100%;
  margin: 0 auto;
}

#BUSINESS_HIGHLIGHT .content_section .sec_inner {
  padding: 0 82px;
}

#HISTORY .sec_inner {
  padding: 0 !important;
}

#HISTORY .box_top {
  overflow: hidden;
  display: none;
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 64px;
  background: #fff;
  transition: all .3s ease;
}

#HISTORY .box_top .box_inner {
  overflow: hidden;
}

#HISTORY .box_left {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 350px;
  height: 100vh;
  min-height: 768px;
  padding-left: 50px;
  box-sizing: border-box;
}

#HISTORY .box_left .history_num .num_inner {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 265px;
  vertical-align: top;
  transition: color .3s cubic-bezier(.3, 0, .07, .99);
}

#HISTORY .box_left .history_num .num_inner div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: inherit;
  font-size: 245px;
  letter-spacing: -2px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
}

#HISTORY .box_left .history_num .num_inner div.active {
  opacity: 1;
  visibility: visible;
}

#HISTORY .box_right {
  position: relative;
  padding: 98px 0 80px 350px;
}

#HISTORY .box_right .box_list {
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-top: 64px;
}

#HISTORY .box_right .box_list:nth-child(1) {
  margin-top: 0;
  border-top: 0;
}

#HISTORY .box_right .box_list .list_head {
  font-size: 0;
}

#HISTORY .box_right .box_list .list_head>div {
  display: inline-block;
  vertical-align: bottom;
}

#HISTORY .box_right .box_list .list_head .num {
  overflow: hidden;
  width: 370px;
  height: 265px;
  font-size: 245px;
  color: #0018a8;
  letter-spacing: -2px;
  line-height: 1;
  vertical-align: top;
}

#HISTORY .box_right .box_list .list_head .num span {
  display: inline-block;
}

#HISTORY .box_right .box_list .list_head .desc {
  width: calc(100% - 370px);
  color: #000;
}

#HISTORY .box_right .box_list .list_head .desc .copy {
  font-size: 22px;
  line-height: 36px;
  margin: 20px 0 0;
  letter-spacing: -1.4px;
}

#HISTORY .box_right .box_list .list_cnt {
  margin: 60px 0 0;
}

#HISTORY .box_right .box_list:last-of-type {
  padding: 0 0 180px;
}

@media all and (min-width:1281px) {
  .DWB {
    display: block !important;
  }

  .DMB {
    display: none !important;
  }

  .DMIB {
    display: none !important;
  }
}

@media (min-width:1080px) and (max-width:1280px) {
  #HISTORY .box_top {
    top: 152px !important;
  }

  #HISTORY .box_top.active {
    top: 88px !important;
  }
}

@media all and (max-width:1280px) {
  .DWB {
    display: none !important;
  }

  .DMB {
    display: block !important;
  }

  .DMIB {
    display: inline-block !important;
  }

  #BUSINESS_HIGHLIGHT .content_section {
    min-width: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: auto;
  }

  #BUSINESS_HIGHLIGHT .content_section .sec_inner {
    padding: 0;
  }

  #HISTORY .box_top {
    top: 124px;
  }

  #HISTORY .box_top.active {
    top: 76px;
  }

  #HISTORY .box_right {
    position: relative;
    padding: 64px 20px 110px 5px !important;
  }

  #HISTORY .box_right img {
    max-width: 600px;
  }

  #HISTORY .box_right .box_list {
    margin: 45px 0 0;
  }

  #HISTORY .box_right .box_list:nth-child(1) {
    margin: 10px 0 0;
  }

  #HISTORY .box_right .box_list:nth-child(1) .list_head .num {
    margin: 0;
  }

  #HISTORY .box_right .box_list .list_head>div {
    display: block;
  }

  #HISTORY .box_right .box_list .list_head .num {
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 30px 0 0;
    font-size: 100px;
    color: #0018a8;
    letter-spacing: -1.5px;
    line-height: 1;
  }

  #HISTORY .box_right .box_list .list_head .desc {
    width: 100%;
    margin: 42px 0 0;
  }

  #HISTORY .box_right .box_list .list_head .desc .copy {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -1.5px;
  }

  #HISTORY .box_right .box_list .list_cnt {
    margin: 38px 0 0;
  }

  #HISTORY .box_right .box_list .list_cnt.full img {
    width: 100%;
    height: auto;
  }

  #HISTORY .box_right .box_list:last-of-type {
    padding: 0;
  }
}

@media all and (max-width:766px) {
  #HISTORY .box_top {
    top: 112px;
    display: none !important;
  }

  #HISTORY .box_top.active {
    top: 154px;
    display: none !important;
  }
}

@media all and (max-width:320px) {
  #HISTORY .box_right .box_list .list_head .num {
    font-size: 110px;
  }
}

#HISTORY .box_left {
  position: fixed;
  top: 344px;
  z-index: 1;
  width: 350px;
  height: 100vh;
  min-height: 768px;
  padding-left: 50px;
  box-sizing: border-box;
  margin-top: 200px;
}













@media (max-width:1440px) {
  .mission-vision-style2_single_box .inner_box .text p {
    font-size: 13px !important;
  }
}

.text {
  position: relative;
  line-height: 1.8em;
}

.mission-vision-style2-area {
  position: relative;
  display: block;
}

.mission-vision-style2-area .container-fluid {
  padding: 0;
}

.mission-vision-style2-area .row {
  margin-left: 0px;
  margin-right: 0px;
}

.mission-vision-style2-area .row [class*=col-] {
  padding-left: 0px;
  padding-right: 0px;
}

.mission-vision-style2_single_box {
  position: relative;
  display: block;
  background: #ffffff;
  padding-top: 85px;
}

.mission-vision-style2_single_box_bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: perspective(400px) scaleY(0);
  transform-origin: bottom;
  transform-style: preserve-3d;
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.mission-vision-style2_single_box_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.75;
}

.mission-vision-style2_single_box:hover .mission-vision-style2_single_box_bg {
  transform: perspective(400px) scaleY(1.0);
}

.mission-vision-style2_single_box .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 170px;
  height: 170px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.mission-vision-style2_single_box .icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 2px solid #e7e9f2;
  border-radius: 50%;
  z-index: -1;
}

.mission-vision-style2_single_box .inner_box {
  position: relative;
  display: block;
  background: #e9ebf4;
  padding: 144px 50px 70px;
}

.mission-vision-style2_single_box .inner_box.bg2 {
  background: #e3e6f2;
}

.mission-vision-style2_single_box .inner_box .text {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mission-vision-style2_single_box .inner_box .text h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 17px;
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.mission-vision-style2_single_box:hover .inner_box .text h3 {
  color: #ffffff;
}

.mission-vision-style2_single_box .inner_box .text p {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  color: #000;
}

.mission-vision-style2_single_box:hover .inner_box .text p {
  color: #ffffff;
}

.mission-vision-style2_single_box .inner_box .text .button_box {
  position: relative;
  display: block;
  padding-top: 42px;
}

@media only screen and (max-width:767px) {
  .mission-vision-style2_single_box .inner_box {
    padding: 144px 30px 70px;
  }
}

@media (max-width:1536px) {
  .main-header .menu-right-content .btn-box a {
    padding-right: 2px;
  }

  #HISTORY .box_left {
    margin-top: 170px !important;
  }
}

.text-center {
  text-align: center !important;
}

@media (max-width:1440px) {
  .mission-vision-style2_single_box .inner_box {
    padding: 114px 48px 70px !important;
  }

  .shop-block-one .inner-box .lower-content h4 {
    font-size: 14px;
  }

  #HISTORY .box_left {
    margin-top: 220px !important;
  }
}

@media (max-width:1380px) {
  .mission-vision-style2_single_box .inner_box {
    padding: 111px 25px 0px !important;
  }

  .mission-vision-style2_single_box .inner_box1 {
    padding: 140px 25px 0px !important;
  }
}

@media (max-width:1280px) {

  .mission-vision-style2_single_box .inner_box1 {
    padding: 112px 25px 0px !important;
  }

  .mission-vision-style2_single_box .inner_box.bg2 ul li {
    font-size: 13px;
  }
}

.abouticon {
  margin: 0px auto;
  margin-top: 20%;
}

@media all {
  .text-center {
    text-align: center !important;
  }
}

.mission-vision-style2_single_box:hover .inner_box .text ul li {
  color: #fff;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.mission-vision-style2_single_box .inner_box.bg2 ul li {
  color: #000;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




.blockquote {
  font-size: 16px;
}

.blockquote p {
  margin-bottom: 5px;
  text-align: justify;
  color: #000;
}

.blockquote-footer {
  font-size: 18px;
  color: #000;
}

.stroy {
  margin: 20px 0px;
}





.kr_sd_500 {
  font-weight: 400 !important;
}

.kr_sd_700 {
  font-weight: 500 !important;
}

.gu_contents_wrap {
  padding-top: 60px;
  position: relative;
}

.gu_grid {
  position: relative;
  max-width: 1432px;
  width: 100%;
  margin: 0 auto;
  padding: 0 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gu_grid:after {
  display: block;
  content: "";
  clear: both;
}

.gu_grid .gu_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  word-break: break-word;
  -ms-word-break: break-all;
}

.gu_grid>div {
  display: inline-block;
  vertical-align: top;
}

.gu_grid .gu_left_grid {
  width: 384px;
  margin-right: 72px;
  float: left;
}

.gu_grid .gu_right_grid {
  width: calc(100% - 456px);
  float: right;
}

.gu_grid_sm {
  max-width: 1116px;
  padding: 0;
}

.gu_grid_sm .gu_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  word-break: break-word;
  -ms-word-break: break-all;
}

.gu_grid_sm .gu_left_grid {
  width: 228px;
  margin-right: 48px;
}

.gu_grid_sm .gu_right_grid {
  width: 800px;
}

.gu_title+.gu_sort_area:nth-child(2) {
  margin-top: 48px;
}

.gu_sort_area {
  font-size: 0;
  position: relative;
}

.gu_sort_area>div {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}

.gu_sort_area .gu_selectbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 184px;
  width: auto;
  height: 280px;
  max-height: 280px;
  background-color: #1634db;
  color: #fff;
  visibility: hidden;
  opacity: 0;
}

.gu_sort_area .gu_selectbox .gu_selectbox_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.gu_sort_area .gu_selectbox .gu_selectbox_inner a {
  font-size: 16px;
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 17px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gu_sort_area .gu_selectbox .gu_selectbox_inner a:hover {
  background: #0078bc;
}

.gu_sort_area .gu_selectbox .gu_selectbox_inner a span {
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

.gu_custom_scroll {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 48px;
  display: block;
  overflow: hidden;
}

.gu_custom_scroll .custom_scroll_content {
  position: relative;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 120%;
  height: 100%;
}

.gu_custom_scroll .custom_scroll_content::-webkit-scrollbar {
  visibility: hidden;
}

.gu_custom_scroll>.pane {
  position: absolute;
  width: 5px;
  right: 6px;
  top: 0;
  bottom: 0;
  visibility: hidden\9;
  opacity: 1;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.gu_custom_scroll>.pane>.slider {
  position: relative;
  margin: 0 1px;
  padding: 5px 0;
  box-sizing: border-box;
}

.gu_custom_scroll>.pane>.slider:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.gu_custom_scroll:hover>.pane {
  visibility: visible\9;
  opacity: 0.99;
}

.gu_btn_sm_box {
  margin: 0 auto;
  text-align: center;
}

.gu_btn_sm_box a {
  display: inline-block;
  min-width: 120px;
  padding: 0 24px;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #000;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gu_btn_sm_box a span {
  display: inline-block;
  position: relative;
}

.gu_btn_sm_box a:hover {
  color: #fff;
  background-color: #1634db;
  border-color: #1364db;
}

.gu_btn_arrow a span:before {
  content: '';
  background: url('../images/ico_arrow_black_right.png') no-repeat 0 0 / contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gu_btn_sm_box.gu_btn_arrow a span {
  padding-right: 20px;
  color: #000;
}

.gu_btn_sm_box.gu_btn_arrow a span:before {
  background-image: url('../images/ico_arrow_black_right.png');
  width: 8px;
  height: 16px;
  margin-top: -8px;
}

.gu_btn_sm_box.gu_btn_arrow a:hover span:before {
  background-image: url('../images/ico_arrow_black_right.png');
}

@media all and (max-width: 1280px) {
  .gu_grid {
    max-width: 1104px;
    padding: 0 56px;
  }

  .gu_grid>div {
    display: inline-block;
    vertical-align: top;
  }

  .gu_grid .gu_left_grid {
    width: 234px;
    margin-right: 48px;
  }

  .gu_grid .gu_right_grid {
    width: calc(100% - 310px);
  }

  .gu_contents_wrap {
    padding-top: 56px;
  }
}

@media all and (max-width: 1080px) {
  .gu_contents_wrap {
    padding-top: 42px;
  }

  .gu_grid {
    max-width: 1104px;
    padding: 0 34px;
  }

  .gu_grid>div {
    display: inline-block;
    vertical-align: top;
  }

  .gu_grid .gu_title {
    font-size: 24px;
    line-height: 32px;
    word-break: break-all;
  }

  .gu_grid_sm .gu_title {
    font-size: 24px;
    line-height: 32px;
    word-break: break-all;
  }

  .gu_grid .gu_left_grid {
    width: 147px;
    margin-right: 24px;
  }

  .gu_grid .gu_right_grid {
    width: calc(100% - 171px);
  }

  .gu_title+.gu_sort_area:nth-child(2) {
    margin-top: 32px;
  }

  .gu_sort_area .gu_selectbox {
    min-width: 136px;
    max-height: 210px;
  }

  .gu_sort_area .gu_selectbox .gu_selectbox_inner a {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .gu_sort_area .gu_selectbox .gu_selectbox_inner a:hover {
    background: #1634db;
  }

  .gu_btn_sm_box a {
    min-width: 96px;
    padding: 0 18px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
  }

  .gu_btn_sm_box a:hover {
    background-color: #fff;
    border-color: #000;
    color: #000;
  }

  .gu_btn_arrow a span:before {
    background-image: url('../images/ico_arrow_black_right.png');
    background-size: contain;
  }

  .gu_btn_arrow a:hover span:before {
    right: 0;
  }

  .gu_btn_sm_box.gu_btn_arrow a span:before {
    background-image: url('../images/ico_arrow_black_right.png');
    width: 8px;
    height: 12px;
    margin-top: -6px;
    background-size: contain;
  }

  .gu_btn_sm_box.gu_btn_arrow a:hover span:before {
    background-image: url('../images/ico_arrow_black_right.png');
    background-size: contain;
  }
}

@media all and (max-width: 766px) {
  .gu_contents_wrap {
    padding-top: 40px;
  }

  .gu_grid {
    padding: 0 4px;
  }

  .gu_grid .gu_left_grid {
    float: none;
    width: 100%;
    display: block;
    margin-right: 0;
  }

  .gu_grid .gu_right_grid {
    float: none;
    width: 100%;
    display: block;
  }
}

.gu_grid .gu_title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 500 !important;
  letter-spacing: -0.4px;
  color: #000;
}

.gu_btn_sm_box a {
  font-size: 0;
}

.gu_btn_sm_box a span {
  font-size: 16px;
  height: 100%;
  line-height: 51px;
}

.gu_sort_area .gu_selectbox .gu_selectbox_inner a {
  font-weight: 400 !important;
}

@media all and (max-width: 1080px) {
  .gu_grid .gu_title {
    font-size: 21px;
    line-height: 28px;
  }

  .gu_grid_sm .gu_title {
    font-size: 21px;
    line-height: 28px;
  }

  .gu_btn_sm_box a span {
    font-size: 14px;
    line-height: 44px;
  }
}


#INTRO_COMPANIES .copy {
  font-size: 18px;
  line-height: 32px;
  color: #000;
  margin-bottom: 20px;
  text-align: justify;
}

#INTRO_COMPANIES .btn_sort {
  text-align: left;
}

#INTRO_COMPANIES .gu_grid {
  margin-bottom: 100px;
}

#INTRO_COMPANIES .gu_grid:last-child {
  margin-bottom: 0;
}

#INTRO_COMPANIES .gu_btn_sm_box a {
  width: auto;
  min-width: 114px;
}

#INTRO_COMPANIES .gu_btn_sm_box a:hover {
  background: #fff;
  border-color: #000;
  color: #000;
}

#INTRO_COMPANIES .gu_btn_sm_box.gu_btn_arrow a:hover span:before {
  background-image: url('../images/ico_arrow_black_right.png');
  right: 0;
}

#INTRO_COMPANIES .gu_sort_area .gu_selectbox {
  min-width: 114px;
}

#INTRO_COMPANIES .gu_title+.gu_sort_area:nth-child(2) {
  margin-top: 26px;
}

#INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a {
  height: 56px;
  line-height: 56px;
  padding-left: 24px;
  font-size: 16px;
}

#INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a span {
  padding-right: 30px;
}

#INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a span:after {
  content: '';
  position: absolute;
  right: 13px;
  background: url('../images/ico_arrow_black_right.png') no-repeat 0 0 / contain;
  width: 8px;
  height: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a:hover span:after {
  right: 9px;
  background: url('../images/ico_arrow_black_right.png') no-repeat 0 0 / contain;
}

#INTRO_COMPANIES .tag_area {
  margin-bottom: 30px;
  font-size: 0;
}

#INTRO_COMPANIES .tag_area span {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px;
  margin-right: 8px;
  padding: 11px 20px;
  border-radius: 60px;
  border: 1px solid #999;
  font-size: 16px;
  color: #666;
}

#INTRO_COMPANIES .logo_area {
  margin-top: 30px;
  font-size: 0;
}

#INTRO_COMPANIES .logo_area a {
  max-width: calc(25% - 12px);
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
}

#INTRO_COMPANIES .logo_area a:last-child {
  margin-right: 0;
}

#INTRO_COMPANIES .swiper-slide img {
  width: 100%;
  cursor: grab;
}

#INTRO_COMPANIES .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  background-color: rgba(255, 255, 255, .5);
  opacity: 1;
  border-radius: 0;
  text-indent: -9999px;
  margin-right: 4px;
  margin-left: 0;
}

#INTRO_COMPANIES .swiper-container .swiper-pagination-bullets {
  bottom: 22px;
  left: 39px;
  height: 3px;
  width: auto;
}

#INTRO_COMPANIES .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fff;
}

#INTRO_COMPANIES .swiper-pagination-bullet:before {
  content: '';
  display: inline-block;
  position: absolute;
  height: 20px;
  top: -300%;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
}

@media all and (max-width: 1080px) {
  #INTRO_COMPANIES .gu_grid {
    margin-bottom: 80px;
  }

  #INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a {
    font-size: 13px;
    padding-left: 20px;
    height: 48px;
    line-height: 48px;
  }

  #INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a span:after {
    top: -2px;
  }

  #INTRO_COMPANIES .gu_sort_area .gu_selectbox .gu_selectbox_inner a:hover span:after {
    right: 4px;
  }

  #INTRO_COMPANIES .copy {
    font-size: 14px;
    line-height: 24px;
  }

  #INTRO_COMPANIES .tag_area {
    margin-bottom: 35px;
  }

  #INTRO_COMPANIES .tag_area span {
    font-size: 13px;
    padding: 8px 14px;
  }

  #INTRO_COMPANIES .logo_area {
    margin-top: 35px;
  }

  #INTRO_COMPANIES .logo_area a {
    max-width: calc(25% - 6px);
    margin-right: 8px;
    margin-bottom: 8px;
  }

  #INTRO_COMPANIES .logo_area img {
    width: 100%;
  }

  #INTRO_COMPANIES .gu_title+.gu_sort_area:nth-child(2) {
    display: inline-block;
  }

  #INTRO_COMPANIES .gu_btn_sm_box.gu_btn_arrow a:hover span:before {
    background-image: url('../images/ico_arrow_black_right.png');
  }

  #INTRO_COMPANIES .gu_title+.gu_sort_area:nth-child(2) {
    display: inline-block;
  }

  #INTRO_COMPANIES .btn_sort {
    min-width: 140px;
  }

  #INTRO_COMPANIES .gu_sort_area .gu_selectbox {
    min-width: 140px;
  }
}

@media all and (max-width: 766px) {
  .gu_grid .gu_left_grid {
    margin-bottom: 30px;
  }

  #INTRO_COMPANIES .tag_area span {
    margin-bottom: 6px;
    margin-right: 5px;
  }

  #INTRO_COMPANIES .logo_area {
    margin-top: 25px;
  }

  .gu_title+.gu_sort_area:nth-child(2) {
    margin-top: 18px;
  }

  #INTRO_COMPANIES .copy {
    margin-bottom: 18px;
  }

  #INTRO_COMPANIES .tag_area {
    margin-bottom: 24px;
  }

  #INTRO_COMPANIES .swiper-container .swiper-pagination-bullets {
    bottom: 13px;
  }

  #INTRO_COMPANIES .gu_grid {
    margin-bottom: 90px;
  }
}

#INTRO_COMPANIES .tag_area span {
  padding: 6px 20px 11px;
}

#INTRO_COMPANIES .gu_btn_sm_box a {
  line-height: 52px;
}

@media all and (max-width: 1080px) {
  #INTRO_COMPANIES .tag_area span {
    padding: 4px 15px 8px;
  }

  #INTRO_COMPANIES .gu_btn_sm_box a {
    line-height: 46px;
  }
}









.section-whitebg:before,
.section-whitebg:after {
  display: table;
  content: " ";
}

.section-whitebg:after {
  clear: both;
}

.section-whitebg {
  width: 100%;
  padding: 4.167vw 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-whitebg.pat-0 {
  padding-top: 0;
}

.section-whitebg p {
  padding: 0 0 1.563vw 0;
  margin: 0;
}

.section-whitebg p:empty {
  display: none;
  visibility: hidden;
}

.page-about-strength {
  width: 100%;
}

.about-strength-menu-btn .btn.AboutStrengthMenuBtn .feather {
  -moz-transition: all .3s linear;
  -webkit-transition: all .3s linear;
}

.page-about-strength-inn {
  position: relative;
  width: 100%;
  float: left;
}

.page-about-strength .about-strength-content {
  width: 100%;
}

.page-about-strength .bg-big .bg {
  padding-left: 1.823vw;
  padding-right: 1.823vw;
}

.bg-big .bg {
  width: 100%;
  border-radius: 0.313vw;
  padding: 2.604vw 0;
  color: #000;
}

.bg-big.bg-grey .bg {
  background: var(--bg-grey2);
}

.bg-big.bg-orange .bg {
  background: #f8f8f8;
  color: #fff;
}

.page-about-strength .section-whitebg.bg-orange {
  background: #f8f8f8;
  color: #fff;
}

.page-about-strength .section-whitebg.bg-grey {
  background: var(--bg-grey2);
}

.page-about-strength .section-whitebg.quote-section.bg-none,
.page-about-strength .section-whitebg.quote-section.bg-none .bg {
  background: none;
}

.section-whitebg .about-title1 {
  font-size: 1.563vw;
  line-height: 2.083vw;
  padding-bottom: 1.042vw;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
}

.section-whitebg .about-title1 b {
  font-weight: 700;
}

.image-border-radius {
  border-radius: 0.313vw;
}

.people-culture-page .people-culture-left {
  float: left;
  width: 48%;
}

.people-culture-page .people-culture-right {
  float: right;
  width: 48%;
}

.people-culture-page img {
  width: 100%;
}

@media only screen and (max-width:1400px) {
  .section-whitebg {
    width: 100%;
    padding: 80px 0;
  }

  .section-whitebg p {
    padding: 0 0 30px 0;
  }

  .page-about-strength .about-strength-content {
    width: 100%;
  }

  .page-about-strength .bg-big .bg {
    padding-left: 35px;
    padding-right: 35px;
  }

  .bg-big .bg {
    border-radius: 6px;
    padding: 50px 0;
  }

  .section-whitebg .about-title1 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
  }

  .image-border-radius {
    border-radius: 6px;
  }

  body .mar-5 {
    margin-right: 5px !important;
  }

  body .mat-30 {
    margin-top: 30px !important;
  }

  body .pat-0 {
    padding-top: 0 !important;
  }

  body .pab-0 {
    padding-bottom: 0 !important;
  }
}

@media only screen and (max-width:1200px) {
  .page-about-strength .about-strength-content {
    width: 100%;
  }

  .page-about-strength .about-strength-menu-btn {
    display: block;
    width: 100%;
    padding: 0 15px 30px 15px;
  }
}

@media only screen and (max-width:999px) {
  .section-whitebg {
    padding: 50px 0;
  }

  .section-whitebg.pat-0 {
    padding-top: 0 !important;
  }

  .section-whitebg.pab-0 {
    padding-bottom: 0 !important;
  }
}

@media only screen and (max-width:991px) {
  .bg-big .bg {
    padding: 35px 0;
  }

  .section-whitebg p {
    padding-bottom: 20px;
  }

  .section-whitebg .about-title1 {
    font-size: 25px;
    line-height: 30px;
  }

  .page-about-strength .bg-big .bg {
    padding: 35px 5px;
  }

  .people-culture-page .people-culture-left {
    width: 100%;
    padding-bottom: 30px;
  }

  .people-culture-page .people-culture-left p:last-child {
    padding-bottom: 0;
  }

  .people-culture-page .people-culture-right {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .section-whitebg .about-title1 {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 15px;
  }
}

@media all {
  .clear {
    clear: both;
  }
}











.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list,
.slick-slider {
  position: relative;
  display: block;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  margin-left: 20px;
}

.slick-slide img {
  display: block;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  border: 0;
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
  color: transparent;
  outline: 0;
  background: transparent;
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}

.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

.slick-prev:before {
  content: "←";
}

.slick-next {
  right: -25px;
}

.slick-next:before {
  content: "→";
}



.events-infra-gallery-panel {
  width: calc(100% - 115px);
  margin: 0 0 0 auto;
  padding-left: 250px;
}

.gallery-panel {
  position: relative;
}

.gallery-silder-content {
  vertical-align: middle;
  position: absolute;
  left: -245px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-slide:before,
.gallery-slide:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-slide img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  width: 100%;
}

.gallery-slide:before,
.gallery-slide:after {
  content: '';
  background: -webkit-linear-gradient(100deg, #00649a 0%, #63288c 41%, #800931 100%);
  background: linear-gradient(100deg, #00649a 0%, #63288c 41%, #800931 100%);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gallery-slide:before {
  width: 300px;
  height: 2px;
}

.gallery-slide:after {
  height: 300px;
  width: 2px;
}

.gallery-slide:hover img {
  zoom: 1;
  filter: alpha(opacity=25);
  -webkit-opacity: 0.25;
  opacity: 0.25;
}

.gallery-slide:hover:before,
.gallery-slide:hover:after {
  opacity: 1;
}

.gallery-slide:hover:before {
  width: 50px;
}

.gallery-slide:hover:after {
  height: 50px;
}

.gallery-img-slider .slick-prev {
  top: 300px;
  width: 28px;
  height: 28px;
  background: #000;
  display: block !important;
  z-index: 2;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #000;
  outline: none;
  background-color: #ff3838;
}

.gallery-img-slider .slick-arrow,
.gallery-img-slider .slick-next.slick-arrow {
  transform: translateY(-50%);
  top: 50%;
}

.gallery-img-slider .slick-prev {
  transform: translateY(-50%);
  top: 50%;
}

.gallery-img-slider .slick-next {
  top: 300px;
  width: 28px;
  height: 28px;
  background: #000;
  display: block !important;
  z-index: 2;
}

.gallery-img-slider .slick-prev:before,
.gallery-img-slider .slick-next:before {
  color: transparent;
}

.gallery-img-slider .slick-prev {
  left: 30px;
  background: url(https://neplab.in/images/arrow-prev-white.svg) no-repeat;
  background-size: 25%;
  background-position: 46%;
  background-color: #ff3838;
  border-radius: 50%;
  padding: 20px;
}

.gallery-img-slider .slick-next {
  right: 30px;
  background: url(https://neplab.in/images/arrow-next-white.svg) no-repeat;
  background-size: 25%;
  background-position: 58%;
  background-color: #ff3838;
  border-radius: 50%;
  padding: 20px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #000 !important;
  outline: none;
}

.slick-next:hover,
.slick-next:focus {
  background: url(https://neplab.in/images/arrow-next-white.svg), #ff3838 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.slick-prev:hover,
.slick-prev:focus {
  background: url(https://neplab.in/images/arrow-prev-white.svg), #ff3838 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.gallery-silder-content h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 125.4%;
  letter-spacing: -0.05em;
  color: #ff3838;
  text-align: left;
}

.news-event-sec {
  padding: 55px 0;
}

.gallery-slide {
  position: relative;
}

.gallery-panel.first-row {
  margin-bottom: 50px;
}

.gallery-panel.second-row {
  margin-bottom: 50px;
}



@media (max-width:768px) {
  .events-infra-gallery-panel {
    padding-left: 150px;
  }

  .news-event-sec {
    padding: 30px 0;
  }
}

@media (max-width:568px) {
  .gallery-silder-content h1 {
    font-size: 55px;
    text-align: center;
    margin: 0;
  }

  .events-infra-gallery-panel {
    width: 100%;
    margin: 0 0 0 auto;
    padding-left: 15px;
  }

  .gallery-silder-content {
    vertical-align: middle;
    position: relative;
    left: unset;
    z-index: 2;
    top: unset;
    transform: unset;
    text-align: center;
  }
}




/* .owl-carousel .owl-prev {
  left: 0;
}
.owl-carousel .owl-next, .owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  background-color: transparent;
}

.owl-carousel .owl-next {
  right: 0;
} */


.funfact-block-one .inner-box1 {
  position: relative;
  display: block;
  text-align: center;
}

.funfact-block-one .inner-box1 .count-outer {
  position: relative;
  font-size: 50px;
  line-height: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #e31e24;
  margin-bottom: 10px;

}

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

.funfact-block-one .inner-box1 .icon-box {
  background: #e31e24;
}


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











.gx-5 {
  --bs-gutter-x: 3rem;
}










.offerList li {
  margin-bottom: 50px;
  min-height: 130px;
}

.offerList li h4 {
  font-weight: 700;
  font-size: 16px;
}

.offerList li p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.offerTextRight {
  text-align: right;
}

.offerIcon {
  z-index: 1;
  max-height: 380px;
}

.offerIcon::before {
  width: 1px;
  height: 95%;
  background: #000;
  position: absolute;
  left: 29%;
  top: 10px;
  content: "";
  z-index: -1;
}

.offerIcon::after {
  width: 1px;
  height: 95%;
  background: #000;
  position: absolute;
  right: 29%;
  top: 10px;
  content: "";
  z-index: -1;
}

.offerTextRight li {
  position: relative;
}

.offerTextRight li:before {
  width: 30%;
  height: 1px;
  background: #000;
  position: absolute;
  right: -45%;
  top: 10px;
  content: "";
}

.offerTextRight li:after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  right: -60px;
  top: 2px;
  content: "";
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

.offerTextLeft li {
  position: relative;
}

.offerTextLeft li:before {
  width: 30%;
  height: 1px;
  background: #000;
  position: absolute;
  left: -45%;
  top: 10px;
  content: "";
}

.offerTextLeft li:after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -60px;
  top: 2px;
  content: "";
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

.offerTextCenter {
  text-align: center;
  min-height: 225px;
}

.offerTextCenter li {
  position: relative;
  margin-top: 80px;
}

.offerTextCenter li:before {
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  left: 50%;
  top: -125%;
  content: "";
}

.offerTextCenter li:after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  top: -40px;
  content: "";
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@media (max-width: 768px) {
  .offerIcon {
    max-width: 300px;
    height: auto !important;
    margin: auto;
  }

  .offerTextLeft,
  .offerTextRight {
    text-align: center;
  }

  .offerList li {
    margin-bottom: 30px;
    min-height: auto;
  }

  .offerTextCenter {
    min-height: auto;
  }

  .offerTextLeft li:before,
  .offerTextLeft li:after,
  .offerTextRight li:before,
  .offerTextRight li:after,
  .offerTextCenter li:before,
  .offerTextCenter li:after,
  .offerIcon::before,
  .offerIcon::after {
    display: none;
  }

  .offerTextCenter li {
    margin-top: 50px;
  }
}

.mainContent p {
  color: #000;
}

.text-justify {
  text-align: justify;
}





















.innerBanner {
  position: relative;
}

.innerBannerText {
  width: 100%;
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
}

.innerBannerText h3 {
  max-width: 600px;
  color: #000;
  font-size: 18px;
  text-align: left;
  margin-bottom: 10px;
}

.formDetais .wpcf7-response-output {
  color: #000;
}

.breadcrum ul {
  padding: 0;
  font-size: 12px;
  margin-left: -15px;
}

.breadcrum ul li {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 15px;
  position: relative;
  color: #000;
}

.breadcrum ul li:after {
  content: '\276f';
  position: absolute;
  right: -18px;
  top: 0px;
  display: block;
  font-size: 10px;
}

.breadcrum ul li:last-child {
  margin-right: 0;
  pointer-events: none;
}

.breadcrum ul li:last-child:after {
  display: none;
}

.breadcrum ul li a {
  color: #000;
  font-weight: 500;
  display: block;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

.dealerText {
  left: 0 !important;
}

.dealerText h3 {
  line-height: 1.3;
}

.dealerText .formDetais {
  background: none;
  transition: all .3s ease;
  border: 0;
}


@media (max-width: 767.98px) {
  .innerBannerText {
    position: static;
    background: #fff;
    width: 100%;
  }

  .control-label {
    width: 100%;
  }

  .innerBannerText h3 {
    color: #000;
  }
}

@media (max-width: 575.98px) {
  .breadcrum ul {
    font-size: 10px;
  }

  .breadcrum ul li {
    margin: 0 7px;
  }

  .breadcrum ul li:after {
    right: -9px;
    font-size: 8px;
    top: 2px;
  }
}




.radio-list {

  text-align: center;
  padding: 20px 0;
  margin: 0;
  list-style: none;
  margin: 0 auto;
}

.radio-button {
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  text-align: left;
  padding-left: 37px;
  margin: 0 5px 15px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.radio-button input[type=radio] {
  margin: auto;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.radio-button label {
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  display: block;
}

.radio-button label:before,
.radio-button label:after {
  content: "";
  height: 18px;
  width: 18px;
  border: 1px solid #111;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 5px;
}

.radio-button label:after {
  background: #e28800;
  border: none;
  transform: scale(0);
  z-index: -1;
  transition: transform 0.3s ease 0s, box-shadow 0.5s;
}

.radio-button input[type=radio]:checked+label:after {
  transform: scale(0.5);
  box-shadow: 0 0 0 25px rgba(234, 140, 0, 0.18);
}

@media only screen and (max-width:479px) {
  .radio-list {
    text-align: left;
  }
}




.control-label {
  color: #000;
  font-weight: 500;
}

.form-check-label {
  color: #000;
  font-weight: 500;
}


.four-item-carousel {
  overflow: hidden;
}
.lists li {
	position: relative;
	margin-bottom: 13px;
  color: #000;
  }
  
  .lists li a {
	position: relative;
	color: #000;
	transition: .5s;
  }
  
  .lists li:before {
	content: "\f061";
	left: 0;
	top: 0;
	margin-right: 8px;
	font-size: 16px;
	font-family: 'Font Awesome 6 free';
	font-weight: 900;
  }
  .shop-block-one {
    position: relative;
  }
  .product-newtag {
    position: absolute;
    top: -1px;
    left: -5px;
    z-index: 9;
    width: 69px;
    height: 33px;
  }
  .product-newtag img {
    width: 100%;
  }