@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed&family=Philosopher:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
  --thm-base:#1fa2c1;
  --thm-base-rgb: 245, 119, 17;
  --thm-font:'Fira Sans Condensed', sans-serif;
  --thm-gray: #818891;
  --thm-gray-rgb: 129, 136, 145;
  --thm-primary: #eff7f8;
  --thm-primary-rgb: 239, 247, 248;
  --thm-black: #191825;
  --thm-black-rgb: 25, 24, 37;
  --thm-bg: #071422;
  --thm-bg-rgb: 7, 20, 34;
  --heading-font:'Philosopher', sans-serif;
  --heading-font-2: "Barlow Condensed",sans-serif;
  --thm-secondary:#1fa2c1
}

/*==============================================
   Base Css
===============================================*/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

body {
  color: #000000;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--thm-font);
}
/* .collapse{
    display: flex;
    margin-bottom: -40px;
    margin-left: 10px;
    z-index: 2;
    position: relative;
} */
.active {
  color:#c6c6c6
}

button:focus {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
p{text-align:justify;}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: normal;
  line-height: 1.25em;
  font-family: var(--heading-font);
  margin: 0;
}

h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
  border: none;
  transition: 0.4s;
  -webkit-transition: all 0.4s ease-in-out;
}

textarea:focus {
  outline: none;
}

*::-moz-selection {
  background: var(--thm-black);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--thm-black);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--thm-black);
  color: #fff;
  text-shadow: none;
}

*::placeholder {
  color: #555555;
  opacity: 1;
}

*::-moz-placeholder {
  color: #555555;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #555555;
  opacity: 1;
}

.parallax-scene {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fancybox-image,
.fancybox-spaceball {
  border-radius: 10px;
}

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

img {
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.map-data {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  padding: 5px 10px 5px;
}

.map-data a {
  color: #0b59d9;
  display: block;
}

.map-data h6 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  color: #121212;
}

i {
  font-style: normal;
}

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

ol,
li {
  margin: 0;
  padding: 0;
}

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

.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-top: 5px;
  padding-left: 60px;
  padding-bottom: 5px;
  padding-right: 60px;
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 14px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--thm-font);
  z-index: 1;
}

.btn-one:before {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  width: 50%;
  content: "";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  background-color: var(--thm-black);
  z-index: 2;
}

.btn-one:hover:before {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.btn-one:after {
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0px;
  width: 50%;
  content: "";
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  background-color: var(--thm-black);
  z-index: 2;
}

.btn-one:hover:after {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.btn-one .txt {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
}

.btn-one:hover,
.btn-one:focus {
  color: #ffffff;
}

.btn-two {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.btn-two span {
  position: relative;
  top: 3px;
  display: inline-block;
  padding-right: 10px;
  line-height: 15px;
  transform: rotate(180deg);
}

.btn-two span:before {
  position: relative;
  top: 3px;
  display: inline-block;
  color: var(--thm-black);
  font-size: 25px;
  font-weight: 400;
  z-index: 1;
}

.btn-two span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.btn-two:hover span:after {
  transform: scale(1.1);
}

.btn-two:hover:before {
}

.btn-two:hover {
  color: var(--thm-base);
}

.checked-box1 {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 12px;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #80868d;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 input[type="checkbox"] + label span {
  position: absolute;
  top: 0px;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #80868d;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  font-family: "icomoon" !important;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "\e909";
  font-size: 12px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  margin: 0px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked + label span {
  border-color: #80868d;
}

.checked-box1 input[type="checkbox"]:checked + label span:before {
  opacity: 1;
}

.checked-box2 {
  position: relative;
  display: block;
  min-height: 30px;
}

.checked-box2 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #757575;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  min-height: 30px;
  font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"] {
  display: none;
}

.checked-box2 input[type="checkbox"] + label span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box2 label span:before {
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: 0px;
  color: var(--thm-base);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked + label span {
  border-color: #dedede;
}

.checked-box2 input[type="checkbox"]:checked + label span:before {
  opacity: 1;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: var(--thm-primary);
  border: 0px solid var(--thm-base);
  color: var(--thm-black);
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-base);
  content: "";
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.thm-social-link1 ul li a:hover:before {
  transform: scaleX(1);
}

.thm-social-link1 ul li a:hover {
  color: #ffffff;
}

.parallax-bg-one {
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.parallax-bg-one::before {
  background: rgba(18, 32, 0, 0.9) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/*___ owl Nav Dot Style _____*/
.owl-theme .owl-prev span,
.owl-theme .owl-next span {
}

.owl-nav-style-one {
}

.owl-nav-style-one .owl-controls {
}

.owl-nav-style-one.owl-theme .owl-stage-outer {
  position: relative;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 15;
}

.owl-nav-style-one.owl-theme .owl-nav {
  position: relative;
  display: block;
  line-height: 0;
  z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 0%;
  margin: 0 0 0 0px;
  padding: 0;
  transition: all 700ms ease 0s;
  z-index: 1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  transform: scale(0);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  display: block;
  color: var(--thm-black);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(-180deg);
  margin-right: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  margin-left: 0px;
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
  transform: scale(1);
}

.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 0px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: rgba(var(--thm-base-rgb), 0.2);
  border: 0px solid #e0e0e0;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  border-radius: 50%;
  background: var(--thm-primary);
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
  background: var(--thm-primary);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
  transform: scale(1);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active span {
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1),
      0 0 0 20px rgba(238, 238, 238, 0.3);
  }
}

@keyframes pulse2 {
  50% {
    box-shadow: 0 0 0 5px rgba(255, 231, 1, 0.1),
      0 0 0 20px rgba(255, 231, 1, 0.3);
  }
}

.rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.rating-box ul {
  overflow: hidden;
}

.rating-box ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 5px;
}

.rating-box ul li:last-child {
  margin-right: 0;
}

.rating-box ul li a {
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  background: #ffffff none repeat scroll 0 0;
  width: 100%;
  min-width: 320px;
}

.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 10px;
}

.styled-pagination.pdtop0 {
  padding-top: 0;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  float: none;
  margin-right: 6px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li.prev a {
  transform: rotate(-180deg);
}

.styled-pagination li a span:before {
  position: relative;
  top: 5px;
  font-size: 25px;
}

.styled-pagination li.prev a span.left {
  position: relative;
  top: 0px;
}

.styled-pagination li.next a span.right {
  position: relative;
  top: 0px;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 0%;
  background: var(--thm-primary);
  border: 1px solid var(--thm-primary);
  color: var(--thm-black);
  font-size: 18px;
  line-height: 53px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #ffffff;
  border-color: var(--thm-base);
  background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
}

/*=============== Color-Layout =============*/
.switcher {
  position: fixed;
  top: 320px;
  z-index: 99;
}

.switcher .switch_btn {
  position: absolute;
  top: 0px;
  right: -50px;
  z-index: -1;
}

.switcher .switch_btn button {
  width: 50px;
  height: 50px;
  color: #fff;
  line-height: 50px;
  cursor: pointer;
  border-radius: 0;
  margin-left: 0;
  transition: all 500ms ease;
  background: rgba(0, 0, 0, 0.9);
}

.switcher .switch_menu {
  position: absolute;
  width: 220px;
  height: 30px;
  background: transparent;
  display: none;
  top: 0px;
  left: 60px;
  bottom: 0;
  margin: 10px 0;
}

.switcher #styleOptions li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 3px;
}

.switcher #styleOptions li:last-child {
  margin-right: 0;
}

.switcher #styleOptions li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0px #fff;
}

.switcher #styleOptions li a.blue-color {
  background: #1266e3;
}

.switcher #styleOptions li a.pink-color {
  background: #e70887;
}

.switcher #styleOptions li a.violet-color {
  background: #6936d8;
}

.switcher #styleOptions li a.crimson-color {
  background: #ba0913;
}

.switcher #styleOptions li a.orange-color {
  background: #ffa500;
}

.switcher #styleOptions li a.green-color {
  background: #95c41f;
}

/** Search Pop Up Style **/
.serach-button-style1 {
  position: relative;
  display: block;
}

.serach-button-style1 .search-toggler {
  position: relative;
  display: block;
  width: 65px;
  height: 50px;
  color: #ffffff;
  font-size: 25px;
  line-height: 50px;
  font-weight: 400;
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 500ms ease;
}

.serach-button-style1 .search-toggler:hover {
  color: var(--thm-base);
}

.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.9);
  -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 .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  background-image: url(../images/icon/icon-cross.png);
  width: 40px;
  height: 40px;
  z-index: 5;
  transition: all 500ms ease;
}

.search-popup .search-form {
  position: relative;
  padding: 0px 15px 0px;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 100px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  z-index: 10;
}

.search-popup.popup-visible .search-form {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  transition: all 500ms ease 500ms;
  -moz-transition: all 900ms ease 500ms;
  -webkit-transition: all 900ms ease 500ms;
  -ms-transition: all 900ms ease 500ms;
  -o-transition: all 900ms ease 500ms;
}

.search-popup .search-form .form-group {
  margin-bottom: 30px;
}

.search-popup .search-form fieldset {
  position: relative;
  border-radius: 12px;
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 70px;
  padding: 20px 250px 20px 30px;
  background: #ffffff;
  line-height: 30px;
  font-size: 24px;
  color: #233145;
  border-radius: 7px;
}

.search-popup .search-form fieldset input[type="submit"] {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  text-align: center;
  width: 220px;
  height: 70px;
  padding: 20px 10px 20px 10px;
  color: #ffffff !important;
  line-height: 30px;
  font-size: 20px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0px 7px 7px 0px;
  background: var(--thm-base);
}

.search-popup .search-form fieldset input[type="submit"]:hover {
  transform: translateY(0px);
}

.search-popup h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: center;
  display: none;
}

.search-popup .recent-searches {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  display: none;
}

.search-popup .recent-searches li {
  display: inline-block;
  margin: 0px 10px 10px 0px;
}

.search-popup .recent-searches li a {
  display: block;
  line-height: 24px;
  border: 1px solid #ffffff;
  padding: 7px 15px;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.search-popup .recent-searches li a:hover {
  border-color: var(--thm-base);
  background-color: var(--thm-base);
}

.serach-button-style1--instyle2 {
  margin-left: 30px;
}

.serach-button-style1--instyle2 .search-toggler {
  width: 50px;
  height: 50px;
  color: #818891;
  border-left: 0px solid;
}

.serach-button-style1--instyle2 .search-toggler:hover {
  color: var(--thm-base);
}

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

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

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

.handle-preloader .animation-preloader .spinner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 12px auto;

  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

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

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

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

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

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.5s;
}

/**
animation: spinner 1s infinite linear;


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

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

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff; background:#ffe1cf;
  /**border-top-color: rgba(255, 255, 255, 0.5); **/
}
.handle-preloader .animation-preloader img{    
    position: absolute;
    z-index: 9;
    width: 100%;
    right: 0;
    left: 0;
    top: 18px;
    /* bottom: 0; */
    margin: auto;
}
/* Animation 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: 992px) {
    .handle-preloader .animation-preloader .spinner {
        height: 9em;
        width: 9em;
    }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 9em;
    width: 9em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 9em;
    width: 9em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 45px;
    letter-spacing: 10px;
    line-height:45px;
  }
}

/*** Scroll To Top style ***/
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 999999999;
}

.scroll-top span {
}

.scroll-top:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  z-index: -1;
  background: -webkit-radial-gradient(
    center,
    ellipse,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: -webkit-radial-gradient(
    center ellipse,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}

.scroll-top:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-top:hover {
  color: #ffffff;
  background-color: var(--thm-black);
  border-color: var(--thm-black);
}

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
  border-color: #43c3ea;
  outline: none;
}

#contact-form input[type="text"].error {
  border-color: red;
}

#contact-form input[type="email"].error {
  border-color: red;
}

#contact-form select.error {
  border-color: red;
}

#contact-form textarea.error {
  border-color: red;
}

/* Overlay styles */
.overlay-style-one {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(218, 60, 34, 0.8);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
}

.overlay-style-one .box {
  display: table;
  height: 100%;
  width: 100%;
}

.overlay-style-one .box .content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.overlay-style-one .box .inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.overlay-style-two {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  z-index: 2;
  opacity: 0;
  transition: all 900ms ease;
}

.overlay-style-two:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50%;
  display: block;
  opacity: 0;
  text-align: center;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(18, 18, 18, 0.9);
}

.overlay-style-two:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  display: block;
  opacity: 0;
  text-align: center;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 0.5s;
  background-color: rgba(18, 18, 18, 0.9);
}

.review-box {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 16px;
}

.review-box > ul {
  display: block;
  overflow: hidden;
}

.review-box > ul > li {
  display: inline-block;
  float: none;
  margin: 0 1px;
}

.review-box > ul > li:last-child {
  margin-right: 0px;
}

.review-box > ul > li > i {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.review-box > ul > li:hover > i {
  color: var(--thm-primary);
}

/* Update header Style */
@keyframes menu_sticky {
  0% {
    margin-top: -90px;
  }

  50% {
    margin-top: -74px;
  }

  100% {
    margin-top: 0;
  }
}

/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 30px 0;
}

.nav-outer.style1 .mobile-nav-toggler {
  padding: 30px 0 30px;
}

.nav-outer.style2 .mobile-nav-toggler {
  padding: 25px 0;
}

.nav-outer.style3 .mobile-nav-toggler {
  padding: 30px 0;
}

.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
  background: var(--thm-base);
}

.nav-outer.style2 .mobile-nav-toggler .inner {
  background-color: var(--thm-black);
}

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

.mobile-menu .menu-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 16, 32, 0.9);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.7;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-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 .mCSB_inside > .mCSB_container {
  margin-right: 5px;
}

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

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

.mobile-menu .nav-logo a {
  position: relative;
  display: inline-block;
}

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

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

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #000000;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-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;
  top: 10px;
  right: 10px;
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  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 {
  color: var(--thm-base);
  -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.1);
}

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

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

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  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 > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid var(--thm-base);
  -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.current > a,
.mobile-menu .navigation li > a:hover {
  color: var(--thm-base);
}

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

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
  background: rgba(255, 255, 255, 0.1);
  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 {
  -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;
  text-align: center;
  padding: 50px 15px;
}

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

.mobile-menu .social-links li a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 16px;
  line-height: 41px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
  color: var(--thm-base);
  background-color: #ffffff;
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(../images/icon/cross-out.png), pointer;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  transition-delay: 0.3s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 365px;
  background-color: #2c2c2c;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 700ms ease 100ms;
  visibility: hidden;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  transition: all 500ms ease 800ms;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 700ms ease 1500ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
  background-color: #000000;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-base);
  border-color: var(--thn-base);
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--thm-base);
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
  padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #b0bcc2;
  margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.btn-one {
  color: var(--thm-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group .theme-btn-one:hover {
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info h3 {
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: #b0bcc2;
  line-height: 30px;
  margin-bottom: 6px;
}

.sidebar-contact-info ul li:last-child {
  margin-bottom: 0;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  top: 3px;
}

.sidebar-contact-info ul li a {
  color: #b0b0bd;
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.sec-title {
  position: relative;
  display: block;
  margin-top: -6px;
  padding-bottom: 46px;
}

.sec-title .sub-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-title .sub-title .border-box {
  position: relative;
  display: block;
  margin-right: 10px;
  width: 18px;
  height: 2px;
  background: var(--thm-base);
}

.sec-title .sub-title h3 {
  color: #3c3c3c;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 1.2em;
  font-weight: normal;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin: 7px 0 0;
}

.sec-title--style2 {
  position: relative;
}

.sec-title--style2 .sub-title {
  justify-content: flex-start;
}

.sec-title--style2 h2 {
  color: #ffffff;
}

@keyframes slide5 {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -200px 0;
  }
}

@-webkit-keyframes slide5 {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -200px 0;
  }
}

/*** 
=============================================
    working process Area Css
=============================================
***/
.working-process-area {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 120px 0px 70px;
  counter-reset: count;
}

.working-process__single {
  position: relative;
  display: block;
  padding: 0px 20px 0px;
  margin-bottom: 39px;
}

.working-process__single-inner {
  position: relative;
  display: block;
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
}

.working-process__single .img-holder {
  position: relative;
  display: block;
  max-width: 190px;
  width: 100%;
  margin: 0 auto;
}

.working-process__single .img-holder .counting {
  position: absolute;
  left: 0;
  bottom: -30px;
  right: 0px;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  z-index: 5;
}

.working-process__single .img-holder .counting:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  font-family: var(--thm-font);
  counter-increment: count;
  content: "0" counter(count);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.working-process__single .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-bg);
}

.working-process__single .img-holder .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  opacity: 0;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.working-process__single:hover .img-holder .inner:before {
  opacity: 0.5;
}

.working-process__single .img-holder .inner img {
  width: 100%;
  mix-blend-mode: luminosity;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.working-process__single:hover .img-holder .inner img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.working-process__single .content-box {
  position: relative;
  display: block;
  padding: 52px 0px 0px;
}

.working-process__single .content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 26px;
}

.working-process__single .content-box h3 a {
  color: var(--thm-black);
}

.working-process__single .content-box h3 a:hover {
  color: var(--thm-base);
}

.working-process__single .content-box p {
  margin: 0;
}

/*** 
=============================================
    Case Stories Area Css
=============================================
***/
.case-stories-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0px 0px;
  z-index: 10;
}

.case-stories__single {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

.case-stories__single .img-box {
  position: relative;
  display: block;
  background: var(--thm-bg);
  z-index: 1;
}

.case-stories__single .img-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-bg-rgb), 0.7);
  content: "";
  z-index: 1;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: all;
}

.case-stories__single:hover .img-box::before {
  opacity: 0;
}

.case-stories__single .img-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgba(var(--thm-base-rgb), 0.9);
  transform-origin: center;
  opacity: 0;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  z-index: 2;
}

.case-stories__single:hover .img-box:after {
  opacity: 0.9;
}

.case-stories__single .img-box img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.case-stories__single:hover .img-box img {
  transform: scale(1.02) rotate(0deg);
  mix-blend-mode: normal;
}

.case-stories__single .content-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 51px 60px 50px;
  z-index: 3;
}

.case-stories__single .content-box .top-text {
  position: relative;
  display: block;
}

.case-stories__single .content-box .top-text h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.case-stories__single .content-box .top-text .line {
  position: relative;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--thm-base);
  margin-top: 9px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.case-stories__single:hover .content-box .top-text .line {
  background: #ffffff;
}

.case-stories__single .content-box .bottom-text {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 60px 50px;
}

.case-stories__single .content-box .bottom-text .text {
  position: relative;
  display: block;
}

.case-stories__single .content-box .bottom-text .text p {
  color: #ffffff;
  margin: 0;
}

.case-stories__single .content-box .bottom-text .icon {
  position: relative;
  display: block;
}

.case-stories__single .content-box .bottom-text .icon a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  text-align: center;
  z-index: 1;
}

.case-stories__single .content-box .bottom-text .icon a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.case-stories__single .content-box .bottom-text .icon a:hover::before {
  transform: scaleX(1);
}

.case-stories__single .content-box .bottom-text .icon a span::before {
  position: relative;
  display: inline-block;
  line-height: 50px;
}

/*** 
=============================================
    Slogan area style
=============================================
***/
.slogan-area {
  position: relative;
  display: block;
  padding: 108px 0 120px;
  z-index: 10;
}

.slogan-area__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--thm-bg);
  background-blend-mode: luminosity;
  z-index: 1;
}

.slogan-area__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--thm-bg);
  opacity: 0.6;
  z-index: -1;
}

.slogan-area .shape {
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  mix-blend-mode: color-dodge;
  z-index: 2;
}

.slogan-text-box {
  position: relative;
  display: block;
  z-index: 5;
}

.slogan-text-box h2 {
  color: #ffffff;
  font-size: 75px;
  line-height: 1.1em;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.slogan-text-box h2 span {
  position: relative;
  display: inline-block;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.slogan-btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 43px;
}

.experience-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 170px;
  background-color: var(--thm-base);
  border-radius: 50%;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.experience-box:before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0px;
  border-top: 30px solid var(--thm-base);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  transform: rotate(35deg);
}

.experience-box h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 34px;
}

.experience-box p {
  color: #ffffff;
  line-height: 24px;
  margin: 8px 0 0;
}

/*** 
=============================================
    Slogan Style2 Area Css
=============================================
***/
.slogan-style2-area {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 10;
}

.slogan-style2-content {
  position: relative;
  padding: 75px 80px 75px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--thm-base);
  z-index: 100;
}

.slogan-style2-content .title {
  position: relative;
  display: block;
  z-index: 1;
}

.slogan-style2-content .title h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.slogan-style2-content .button-box {
  position: relative;
  display: block;
  line-height: 0;
}

.slogan-style2-content .button-box a {
  background-color: var(--thm-black);
}

.slogan-style2-content .button-box a::before {
  background-color: var(--thm-bg);
}

.slogan-style2-content .button-box a::after {
  background-color: var(--thm-bg);
}

/*** 
=============================================
    Slogan Style3 Area Css
=============================================
***/
.slogan-style3-area {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 53px 0;
  overflow: hidden;
  z-index: 10;
}

.slogan-style3__content {
  position: relative;
  display: block;
  text-align: center;
}

.slogan-style3__content h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
}

/*** 
=============================================
    Company Benefits Area Css
=============================================
***/
.company-benefits-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 120px;
}

.fact-counter-box {
  position: relative;
  display: block;
}

.single-fact-counter {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 36px 40px 36px;
  border-radius: 20px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  margin-bottom: 10px;
}

.single-fact-counter:last-child {
  margin-bottom: 0;
}

.single-fact-counter .inner {
  position: relative;
  display: block;
}

.single-fact-counter .count-box {
  position: relative;
  color: var(--thm-base);
  font-size: 44px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-fact-counter .count-box span {
  position: relative;
  display: inline-block;
}

.single-fact-counter .title {
  position: relative;
  display: block;
  padding-top: 11px;
}

.single-fact-counter .title h3 {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.company-benefits-content {
  position: relative;
  display: block;
}

.company-benefits-content .top-text {
  position: relative;
  display: block;
  margin-top: -11px;
  padding-bottom: 31px;
}

.company-benefits-content .top-text p {
  font-size: 20px;
  line-height: 36px;
  margin: 0;
}

.company-benefits-content ul {
  position: relative;
  display: block;
  padding-bottom: 54px;
}

.company-benefits-content ul li {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 500;
}

.company-benefits-content ul li + li {
  margin-top: 7px;
}

.company-benefits-content ul li span:before {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  color: var(--thm-base);
}

.company-benefits-content .bottom-content {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid #d9e3e4;
  border-bottom: 1px solid #d9e3e4;
  padding-top: 30px;
  padding-bottom: 30px;
}

.company-benefits-content .bottom-content .img-box {
  position: relative;
  display: block;
  width: 145px;
  background-color: var(--thm-black);
}

.company-benefits-content .bottom-content .img-box img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.company-benefits-content .bottom-content .inner-text {
  position: relative;
  display: block;
  padding-left: 30px;
}

.company-benefits-content .bottom-content .inner-text p {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}

.company-benefits-content .bottom-content .inner-text p span {
  color: var(--thm-base);
  font-weight: 700;
}

.company-benefits-img-box {
  position: relative;
  display: block;
}

.company-benefits-img-box .shape-1 {
  position: absolute;
  top: 60px;
  right: -120px;
  width: 120px;
  height: 170px;
  background-color: var(--thm-base);
  -moz-transform: skew(-20deg, 0deg);
  -webkit-transform: skew(-20deg, 0deg);
  -o-transform: skew(-20deg, 0deg);
  -ms-transform: skew(-20deg, 0deg);
  transform: skew(-20deg, 0deg);
  webkit-animation: bgSlideReverse2 20s linear infinite;
  animation: bgSlideReverse2 20s linear infinite;
  z-index: 1;
}

.company-benefits-img-box .shape-2 {
  position: absolute;
  top: 230px;
  right: -200px;
  width: 80px;
  height: 80px;
  background-color: var(--thm-black);
  -moz-transform: skew(-20deg, 0deg);
  -webkit-transform: skew(-20deg, 0deg);
  -o-transform: skew(-20deg, 0deg);
  -ms-transform: skew(-20deg, 0deg);
  transform: skew(-20deg, 0deg);
  z-index: 1;
}

.company-benefits-img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-bg);
}

.company-benefits-img-box .inner img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.company-benefits-img-box .inner .logo-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95px;
  height: 95px;
  background-color: var(--thm-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-benefits-img-box .inner .logo-box img {
  width: auto;
}

/*** 
=============================================
    Google Map Style1 Area Css
=============================================
***/
.google-map-style1-area {
  position: relative;
  display: block;
}

.google-map-style1-area .auto-container {
  max-width: 100%;
  padding: 0;
}

.home1-page-map-outer {
  position: relative;
  display: block;
  z-index: 10;
}

.home1-page-map-outer .map-canvas {
  position: relative;
  width: 100%;
  height: 550px;
}

/*** 
=============================================
    Choose Area Css
=============================================
***/
.choose-area {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 10;
}

.choose-img-box {
  position: relative;
  display: block;
  padding-top: 120px;
  z-index: 1;
}

.choose-img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1000000px;
  bottom: 0;
  right: 200px;
  background-color: var(--thm-base);
  z-index: -1;
}

.choose-img-box .border-box {
  position: absolute;
  top: 160px;
  left: -10px;
  bottom: 40px;
  width: 10px;
  background: #ffffff;
  animation: pulse5 5s infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.choose-img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-bg);
}

.choose-img-box .inner img {
  width: 100%;
  transform: scale(1);
  transition: all 2700ms ease;
  mix-blend-mode: luminosity;
}

.choose-img-box .inner:hover img {
  transform: scale(1.3);
  mix-blend-mode: normal;
}

.choose-content-box {
  position: relative;
  display: block;
  padding-top: 120px;
  padding-left: 70px;
}

.choose-content-box .sec-title--style2 {
  padding-bottom: 36px;
}

.choose-content-box .sec-title--style2 h2 {
  color: var(--thm-black);
}

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

.choose-content-box .inner-content .top-text {
  position: relative;
  display: block;
  padding-bottom: 36px;
}

.choose-content-box .inner-content .top-text p {
  margin: 0;
}

.choose-content-box .inner-content ul {
  position: relative;
  display: block;
}

.choose-content-box .inner-content ul li {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.choose-content-box .inner-content ul li:last-child {
  margin: 0;
}

.choose-content-box .inner-content ul li .inner {
  position: relative;
  display: block;
  padding-left: 80px;
}

.choose-content-box .inner-content ul li .inner .icon {
  position: absolute;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--thm-base);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
}

.choose-content-box .inner-content ul li .text {
  position: relative;
  display: block;
}

.choose-content-box .inner-content ul li .text h3 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 11px;
}

.choose-content-box .inner-content ul li .text p {
  margin: 0;
}

/*** 
=============================================
    Features Style1 Area Css
=============================================
***/
.features-style1-area {
  position: relative;
  display: block;
  background: var(--thm-bg);
  padding: 120px 0px 120px;
}

.features-style1-img-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 270px;
}

.features-style1-img-bg {
  position: relative;
  display: block;
  background-attachment: scroll;
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 270px;
  margin-left: -80px;
  background-color: var(--thm-bg);
  background-blend-mode: luminosity;
}

.features-style1__content {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
}

.features-style1__content .sec-title {
  padding-bottom: 36px;
}

.features-style1__content .inner-content {
  position: relative;
  display: block;
}

.features-style1__content .inner-content ul {
  position: relative;
  display: block;
}

.features-style1__content .inner-content ul li {
  position: relative;
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 3px;
}

.features-style1__content .inner-content ul li span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 20px;
  top: 2px;
  padding-right: 10px;
}

.features-style1__content .inner-content .btn-box {
  position: relative;
  display: block;
  margin-top: 54px;
  line-height: 0;
}

.features-style1__items {
  position: relative;
  display: block;
  padding-top: 210px;
}

.features-style1__items ul {
  position: relative;
  display: flex;
}

.features-style1__items ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: #ffffff;
  opacity: 0.1;
}

.features-style1__items ul li {
  position: relative;
  display: block;
  width: 50%;
  margin-right: 50px;
}

.features-style1__items ul li:last-child {
  margin-left: 50px;
  margin-right: 0;
}

.features-style1__items ul li .top {
  position: relative;
  display: block;
  padding-left: 85px;
}

.features-style1__items ul li .top .icon {
  position: absolute;
  top: 2px;
  left: 0;
}

.features-style1__items ul li .top .icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
}

.features-style1__items ul li .top .title {
  position: relative;
  display: block;
}

.features-style1__items ul li .top .title h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.features-style1__items ul li .inner-text {
  position: relative;
  display: block;
  padding-top: 30px;
}

.features-style1__items ul li .inner-text p {
  margin: 0;
}

/*** 
=============================================
    Features Style2 Area Css
=============================================
***/
.features-style2-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0 0;
  z-index: 10;
}

.features-style2-area__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 120px;
  background: var(--thm-primary);
  z-index: -1;
}

.features-style2__content {
  position: relative;
  display: block;
  padding: 89px 110px 70px;
  z-index: 1;
}

.features-style2__content .shape-1 {
  position: absolute;
  top: 60px;
  left: -100px;
  width: 120px;
  height: 170px;
  background-color: var(--thm-base);
  -moz-transform: skew(20deg, 0deg);
  -webkit-transform: skew(20deg, 0deg);
  -o-transform: skew(20deg, 0deg);
  -ms-transform: skew(20deg, 0deg);
  transform: skew(20deg, 0deg);
  z-index: 2;
}

.features-style2__content .shape-2 {
  position: absolute;
  top: 230px;
  left: -170px;
  width: 80px;
  height: 80px;
  background-color: var(--thm-black);
  -moz-transform: skew(20deg, 0deg);
  -webkit-transform: skew(20deg, 0deg);
  -o-transform: skew(20deg, 0deg);
  -ms-transform: skew(20deg, 0deg);
  transform: skew(20deg, 0deg);
  z-index: 2;
}

.features-style2__content-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--thm-bg);
  background-blend-mode: luminosity;
  z-index: -1;
}

.features-style2__content-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-bg);
  opacity: 0.6;
}

.features-style2__content .top-title {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 49px;
}

.features-style2__content .top-title h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 50px;
}

.features-style2__content-inner {
  position: relative;
  display: block;
}

.features-style2-single-box {
  position: relative;
  display: block;
  border:1px solid rgb(255 255 255 / 66%);
  padding: 49px 40px 38px;
  margin-bottom: 30px;
}

.features-style2-single-box span {
  position: relative;
  display: inline-block;
}

.features-style2-single-box span:before {
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
}

.features-style2-single-box .inner-title {
  position: relative;
  display: block;
  padding-top: 18px;
}

.features-style2-single-box .inner-title h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 5px;
}

.features-style2-single-box .inner-title p {
  margin: 0;    color: #efefef;
}

/*** 
=============================================
    Case Deatils Area Css
=============================================
***/
.case-deatils-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.case-deatils-content {
  position: relative;
  display: block;
}

.case-deatils__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--thm-bg);
}

.case-deatils__img-box img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.case-info-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 40px 80px 41px;
  margin: 0px 60px 0px;
  margin-top: -30px;
  z-index: 2;
}

.single-box-case-info {
  position: relative;
  display: block;
}

.single-box-case-info p {
  margin: 0;
}

.single-box-case-info h3 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

.single-box-case-info ul {
  position: relative;
  display: block;
  padding-left: 50px;
  padding-top: 25px;
}

.single-box-case-info ul::before {
  position: absolute;
  top: 6px;
  left: 0px;
  bottom: -18px;
  background: #d9e3e4;
  width: 1px;
  content: "";
}

.single-box-case-info ul li {
  position: relative;
  display: block;
  float: left;
  margin-right: 20px;
}

.single-box-case-info ul li:last-child {
  margin-right: 0px;
}

.single-box-case-info ul li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 20px;
}

.single-box-case-info ul li a:hover {
  color: var(--thm-base);
}

.case-deatils-text-box {
  position: relative;
  display: block;
  margin-top: 80px;
}

.case-deatils-text-box h2 {
  color: var(--thm-black);
  font-size: 36px;
  line-height: 46px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 38px;
}

.case-deatils-text-box .text1 {
  position: relative;
  display: block;
  margin: 0;
  margin-bottom: 33px;
}

.case-deatils-text-box .text2 {
  margin: 0px;
}

.case-deatils-text-box ul {
  position: relative;
  display: block;
  margin-top: 42px;
}

.case-deatils-text-box ul li {
  position: relative;
  display: block;
  color: var(--thm-bg);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.case-deatils-text-box ul li:last-child {
  margin-bottom: 0px;
}

.case-deatils-text-box ul li span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 15px;
  top: 1px;
  padding-right: 14px;
}

.case-details-prew-next-button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 1px solid #d9e3e4;
  border-bottom: 1px solid #d9e3e4;
  margin-top: 114px;
}

.case-details-prew-next-button .single-btn {
  position: relative;
  display: flex;
  align-items: center;
}

.case-details-prew-next-button .single-btn a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--thm-primary);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 54px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.case-details-prew-next-button .single-btn a:hover {
  color: #ffffff;
  background-color: var(--thm-base);
}

.case-details-prew-next-button .single-btn.prew a {
  transform: rotate(180deg);
}

.case-details-prew-next-button .single-btn p {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.case-details-prew-next-button .single-btn.prew p {
  padding-left: 10px;
}

.case-details-prew-next-button .single-btn.next p {
  padding-right: 10px;
}

/*** Form Style1 Box Css***/
.form-style1-box {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  float: right;
  background: #f2f3fa;
  padding: 58px 60px 60px;
}

.form-style1-box .top-title {
  position: relative;
  display: block;
  padding-bottom: 43px;
}

.form-style1-box .top-title p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  margin: 0 0 11px;
}

.form-style1-box .top-title h2 {
  font-size: 28px;
  line-height: 34px;
}

.form-style1-box form {
  position: relative;
  display: block;
}

.form-style1-box form .input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.form-style1-box form input[type="text"],
.form-style1-box form input[type="email"],
.form-style1-box form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #ffffff;
  color: #797989;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.form-style1-box form textarea {
  height: 133px;
  padding-top: 12px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
}

.form-style1-box form input[type="text"]::-webkit-input-placeholder {
  color: #797989;
}

.form-style1-box form input[type="text"]:-moz-placeholder {
  color: #797989;
}

.form-style1-box form input[type="text"]::-moz-placeholder {
  color: #797989;
}

.form-style1-box form input[type="text"]:-ms-input-placeholder {
  color: #797989;
}

.form-style1-box form input[type="email"]::-webkit-input-placeholder {
  color: #797989;
}

.form-style1-box form input[type="email"]:-moz-placeholder {
  color: #797989;
}

.form-style1-box form input[type="email"]::-moz-placeholder {
  color: #797989;
}

.form-style1-box form input[type="email"]:-ms-input-placeholder {
  color: #797989;
}

.form-style1-box form textarea::-webkit-input-placeholder {
  color: #797989;
}

.form-style1-box form textarea:-moz-placeholder {
  color: #797989;
}

.form-style1-box form textarea::-moz-placeholder {
  color: #797989;
}

.form-style1-box form textarea:-ms-input-placeholder {
  color: #797989;
}

.form-style1-box form .button-box {
  position: relative;
  display: block;
  padding-top: 10px;
}

/*** 
=============================================
    Error Page Area Style      
=============================================
***/
.error-page-area {
  position: relative;
  display: block;
  padding: 112px 0 120px;
  background: #ffffff;
  z-index: 10;
}

.error-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-content .big-title {
  position: relative;
  display: block;
  z-index: 1;
}

.error-content .big-title h2 {
  color: var(--thm-base);
  font-size: 72px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
}

.error-content .title {
  position: relative;
  display: block;
  padding-top: 29px;
  padding-bottom: 26px;
}

.error-content .title h2 {
  color: var(--thm-black);
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

.error-content .text {
  position: relative;
  display: block;
  padding-bottom: 29px;
}

.error-content .text p {
  margin: 0;
}

.error-page-search-box {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

.error-page-search-box form.search-form {
  position: relative;
  display: block;
  width: 100%;
}

.error-page-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
  font-family: var(--thm-font);
}

.error-page-search-box .search-form button {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 16px;
  line-height: 10px;
  display: block;
  text-align: center;
  border: 0px solid #e1e1e1;
  transition: all 500ms ease 0s;
}

.error-page-search-box .search-form button i {
  font-size: 16px;
}

.error-page-search-box .search-form input[type="text"]:focus {
  color: var(--thm-black);
  border-color: var(--thm-base);
}

.error-page-search-box .search-form input[type="text"]:focus + button,
.error-page-search-box .search-form button:hover {
  color: #fff;
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.error-page-search-box .search-form input:-moz-placeholder {
  color: var(--thm-gray);
}

.error-page-search-box .search-form input::-moz-placeholder {
  color: var(--thm-gray);
}

.error-page-search-box .search-form input:-ms-input-placeholder {
  color: var(--thm-gray);
}

.error-content .btns-box {
  line-height: 0;
  padding-top: 30px;
}

.error-content .btns-box a {
  padding-left: 40px;
  padding-right: 40px;
}

/*** 
=============================================
    Element Page Css      
=============================================
***/

.service-element-page02 {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.service-element-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding-bottom: 10px;
}

.service-element-carousel.pdb50.owl-carousel .owl-stage-outer {
  padding-bottom: 50px;
}

.service-element-carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.service-element-carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: all;
}

.service-element-carousel.owl-nav-style-one.owl-theme .owl-nav {
  text-align: center;
}

.service-element-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  background: var(--thm-primary);
  border-radius: 50%;
  margin: 0 5px;
}

.single-service-style1.martop0 {
  margin-top: 0;
}

.news-element-page03 {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.news-element-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding-bottom: 10px;
}

.news-element-carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.news-element-carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: all;
}

.news-element-carousel.owl-nav-style-one.owl-theme .owl-nav {
  text-align: center;
}

.news-element-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  background: var(--thm-primary);
  border-radius: 50%;
  margin: 0 5px;
}

.case-element-page02 {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.case-element-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding-bottom: 10px;
}

.case-element-carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.case-element-carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: all;
}

.case-element-carousel.owl-nav-style-one.owl-theme .owl-nav {
  text-align: center;
}

.case-element-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  background: var(--thm-primary);
  border-radius: 50%;
  margin: 0 5px;
}

.team-element-page03 {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.team-element-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding-bottom: 10px;
}

.team-element-carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.team-element-carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: all;
}

.team-element-carousel.owl-nav-style-one.owl-theme .owl-nav {
  text-align: center;
}

.team-element-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  background: var(--thm-primary);
  border-radius: 50%;
  margin: 0 5px;
}

.cs_top_header{
  background: var(--thm-secondary);
}
.cs_top_header.style3{
  background: #010d18;
  border-bottom: 1px solid #3e3e3e;
}

.cs_top_header_in {
  height: 45px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.cs_top_header_left li a,
.cs_top_header_right li a {
  color: #fff;
}

.cs_top_nav li:nth-child(2):after {
     content: "/";
    margin: 0 15px;
    color: #fff;
    position: absolute;
    top: 9px;
    right: 11%;
}
.cs_top_header_center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cs_top_nav {
  list-style: none;
}
.cs_top_nav li:nth-child(2){
  margin-left:20px;
}
.cs_fs_14 {
  font-size: 14px;
}
.p-0 {
  padding: 0 !important;
}
.m-0 {
  margin: 0 !important;
}
.align-items-center {
  align-items: center !important;
}

/*=================================================================

                        Seconde Homepage 

===================================================================*/

.text-accent {
  color: var(--thm-base) !important;
}
.end-0 {
  right: 0 !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.top-0 {
    top: 0!important;
}
.fw-semibold {
    font-weight: 600!important;
}
.moving_x {
  -webkit-animation-name: movingX;
  animation-name: movingX;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes movingX {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}
.background-filled {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.position-relative {
  position: relative !important;
}
.cs_experience_box {
  border: 15px solid #fff;
  height: 246px;
}
.cs_experience_box h2 {
  letter-spacing: 0.2em;
}

.cs_experience.cs_style_1 .cs_experience_thumb {
  padding: 40px 175px 115px 40px;
  position: relative;
}
.cs_experience.cs_style_1 .cs_experience_thumb::before {
  content: "";
  position: absolute;
  width: 255px;
  height: 304px;
  background-color: #f2f3f5;
  border-radius: 15px;
  left: 0;
  top: 0;
}
@media (max-width: 1400px) {
  .cs_experience.cs_style_1 .cs_experience_thumb {
    padding: 40px 40px 115px 40px;
  }
}
@media (max-width: 575px) {
  .cs_experience.cs_style_1 .cs_experience_thumb {
    padding: 25px 30px 115px 24px;
  }
}
.cs_experience.cs_style_1 .cs_experience_shape {
  position: absolute;
  bottom: 0px;
  right: 220px;
}
.cs_experience.cs_style_1 .cs_experience_box {
  background-color: #4c4c4c;
  background-blend-mode: overlay;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 300px;
  height: 360px;
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cs_section_heading.cs_style_1 .cs_section_heading_in {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cs_section_heading.cs_style_1 .cs_section_heading_in p{
  text-align: justify;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 .cs_section_heading_in {
    width: 100%;
  }
}
.cs_section_heading.cs_style_1 .cs_section_heading_right {
  width: 40%;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 .cs_section_heading_right {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cs_section_heading.cs_style_1 br {
    display: none;
  }
}
.semi_rotate {
  -webkit-animation-name: semiRotate;
  animation-name: semiRotate;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.cs_section_shape-1 {
  left: 82%;
  top: 6%;
}
@keyframes semiRotate {
  0%,
  100% {
    transform: rotate(0);
  }

  25%,
  75% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(20deg);
  }
}
/* .about-seconde .cs_section_heading_in h2,
.cs_about-icon-box h3 {
  color: #000000;
  font-weight: normal;
  font-size: 20px !important;
} */
.cs_team.cs_style_1 {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;border: #d6d6d6 solid 2px;
}
.cs_team.cs_style_1 .cs_team_member-name {
  line-height: 1.35em;
}
.cs_team.cs_style_1 .cs_team_info {
  margin-top: -100px;
  background-color: #18191d;
}
.cs_team.cs_style_1 .cs_social_btns {
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  bottom: 0px;
  opacity: 0;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cs_team.cs_style_1 .cs_social_btns a {
  background-color: #666;
}
.cs_team.cs_style_1 .cs_social_btns a:hover {
  background-color: #ef1209;
}
.cs_team.cs_style_1:hover .cs_team_info {
  background-color: var(--thm-base);
}
.cs_team.cs_style_1:hover .cs_social_btns {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  bottom: 30px;
  opacity: 1;
}
.cs_btn.cs_style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.6em;
  color: #fff;
  background-color: #f47814;
  position: relative;
  outline: none;
  border: none;
}
.cs_btn.cs_style_1 span {
  position: relative;
  z-index: 1;
}
.cs_btn.cs_style_1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs_btn.cs_style_1:hover::before {
  opacity: 1;
}
.form-control {
  background: #f6f6f6;    height: 48px;
  border: #e2e0e0 solid 1px !important;    box-shadow: none; outline: none;
}
.form-control:focus {
  color: #18191d;
  background-color: #f6f6f6;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(233, 161, 50, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(233, 161, 50, 0.25);
}
.cs_contact_form {
  background-position: bottom left;
  background-repeat: no-repeat;
}
.cs_contact_form .form-control {
  resize: none;
}
.cs_header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cs_header_contact .cs_header_contact_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 12px;
}
.cs_step p{text-align:center;}
@media screen and (max-width: 500px) {
  .cs_header_contact {
    display: none;
  }
}
.cs_steps.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 86px;
}
@media (max-width: 1199px) {
  .cs_steps.cs_style_1 {
    grid-gap: 25px;
  }
}
@media (max-width: 991px) {
  .cs_steps.cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
}
@media (max-width: 425px) {
  .cs_steps.cs_style_1 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px;
  }
}

.cs_steps.cs_style_1 .cs_step_thumb {
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  border: 1px dashed #ef1209;
}
@media (max-width: 1199px) {
  .cs_steps.cs_style_1 .cs_step_thumb {
    width: 280px;
    height: 280px;
  }
}
.cs_steps.cs_style_1 .cs_step::before {
  content: "";
  position: absolute;
  background-image: url(../img/arrow_shape.png);
  width: 112px;
  height: 110px;
  right: -102px;
  top: 100px;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1400px) {
  .cs_steps.cs_style_1 .cs_step::before {
    content: "";
    position: absolute;
    width: 70px;
    right: -79px;
  }
}
@media (max-width: 1199px) {
  .cs_steps.cs_style_1 .cs_step::before {
    display: none;
  }
}
.cs_steps.cs_style_1 .cs_step:nth-child(3n + 0)::before, .cs_steps.cs_style_1 .cs_step:last-child::before {
  display: none;
}
.cs_header_contact_right {
    margin-right: 30px;
}
.cs_header_contact_right h3{
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
}
.cs_contact_wrap.cs_type_1 {
  margin-top: -150px;
  position: relative;
  z-index: 2;
}
.cs_contact_wrap.cs_type_2 {
  position: relative;
  z-index: 2;
}

.pbmit-title-bar-wrapper:before {
  position: absolute;
   content: "";
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #00000073;
   background-image: none!important;
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   background-attachment: scroll;
}
.pbmit-title-bar-wrapper {
   background-color: transparent;
   background-image: url(../images/slide-banner/title-bg.jpg);
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   background-attachment: scroll;
   position: relative;
   min-height: 250px;
}
.pbmit-title-bar-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding:70px 0 75px
}
.pbmit-title-bar-content.slider-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding:34px 0 75px !important;
}
.pbmit-title-bar-content .pbmit-tbar-inner {
  max-width: none;
  padding: 0 !important;
}

.pbmit-title-bar-content-inner {
  width: 100%;
  text-align: left;
}
.pbmit-title-bar-content .pbmit-tbar-title {
  font-family: var(--heading-font-2);
  font-weight: normal;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0;
  color: #fff;
  text-transform: none;
  font-style: normal;
  margin-bottom: 5px;
}
.pbmit-title-bar-wrapper .pbmit-title-bar-content .pbmit-breadcrumb-inner {
  display: inline-block;
  border-radius: 0;
  padding: 0;
  opacity: 0.9;
}
.pbmit-breadcrumb, 
.pbmit-breadcrumb a {
  font-family: var(--heading-font-2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
  font-style: normal;
}
.pbmit-breadcrumb-inner .sep {
  margin: 0 2px;
}
.pbmit-title-bar-wrapper .post-post.current-item{
opacity: .9;
}
.pbmit-title-bar-wrapper .list-inline-item {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.pbmit-title-bar-wrapper .list-inline-item a {
  color:  #fff;
}
.pbmit-title-bar-wrapper .list-inline-item i {
 color: var(--thm-base);
}
.pbmit-title-bar-content .pbmit-tbar-title-one{
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #fff;
}
.pbmit-tbar-subtitle {
  font-family: Quicksand, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  text-transform: capitalize;
  font-style: normal;
}

.counter-top-style-three {
  margin: 50px 0px;
  padding-bottom: 15px;
}
.counter-history {
  padding: 40px 19px 66px 30px;
  background-color: var(--thm-base);
  position: relative;
  z-index: 1;
}
.counter-history h3 {
  color:#fff;
  font-size: 32px;
  line-height: 36px;
  text-align: left;
}
.counter-history p {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  margin: 30px 0px;
  color:#fff;
}
.counter-history button {
  background-color:#fff;
  color: #232639;
  font-family: Rubik,sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-style: normal;
  padding: 12px 40px;
}
.counter-history-style-one {
  border-bottom: 1px solid #eeeeee;
}
.counter-history-style-one .pbminfotech-ele-fid-style-3:first-child { 
  padding-bottom: 40px;
  border-right: 1px solid #eeeeee;
}
.counter-history-style-one .pbminfotech-ele-fid-style-3:last-child {
  padding-left: 50px;
}
.counter-history-style-three {
  padding-top: 40px;
  border-right: 1px solid #eeeeee;
}
.counter-history-style-four {
  padding-top: 40px;
  padding-left: 40px;
}
.counter-history-style {
  padding: 70px;
  background-color:#fff;
  position: relative;
  z-index: 1;
}
.counter-history button.pbmit-btn:hover {
  background-color: #f9f9f9;
  box-shadow: none;
  color: #232639;
}
.abt-styl{
  position: relative;
  padding-top:60px;
}
.abt-styl p{
  text-align: justify;
}
.abt-styl h2{
  text-align: center;
  font-size: 24px;
}
.pbminfotech-ele-fid-style-3 .pbmit-sbox-icon-wrapper {
  font-size: 55px;
  line-height: 55px;
  color: var(--thm-base);
  padding-right: 20px;
}
.tyophy-icon {
  position: absolute;
  bottom: 0px;
  right: 3px;
}
.tyophy-icon span.pbmit-enginir-icon.pbmit-enginir-icon-trophy {
  color: #f9f9f9;
  opacity: 0.2;
  font-size: 110px;
}
.pbmit-ihbox-style-1{ 
	background-color: #fff; 
	padding: 35px 25px 30px;
	transform: translateY(0);
	border: 1px solid #e8e8e8;
	height: 100%;
	text-align: left;
}
.pbmit-ihbox-style-1:hover{
	border-bottom-color: var(--thm-base);
}
.pbmit-ihbox-style-1:before{
    content: counter(item, decimal-leading-zero) " ";
    counter-increment: item;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    color: #e8e8e8;
    font-weight: 700;
	font-family: "Barlow Condensed",sans-serif;
    font-style: normal;
}
.pbmit-ihbox-style-1.pbmit-ihbox h2{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
.pbmit-ihbox-style-1 .pbmit-ihbox-icon-wrapper{
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 30px;
}
.pbmit-ihbox-style-1 .pbmit-ihbox-content{
    margin-top: 10px;
    margin-bottom: 20px;
}
.pbmit-ihbox-style-1 .vc_btn3-container.vc_btn3-inline{
    margin: 0;
}
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3{
    background: none;
	position: relative;
    padding: 0;
    color: var(--thm-base);
    text-align: left;
    font-size: 13px;
    line-height: 16px;
    padding-right: 0px;
    font-weight: 700;
	letter-spacing: 1px;
    text-transform: uppercase;
	border: 1px solid transparent;
	font-family: "Barlow Condensed",sans-serif;
}
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3:after,
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3:before{
	content: "";
    position: absolute;
    bottom: -3px;
    left: auto;
    right: 0;
    height: 2px;
    background-color: #eee;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3:after{
	width: 0%;
	background-color: var(--thm-base);
}
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3:hover:after{
	width: 100%;
    left: 0;
    right: auto;
}
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3:before{
	width: 100%;
}
.pbmit-ihbox-style-1 .vc_btn3-color-globalcolor.vc_general.vc_btn3 .vc_btn3-icon {
    right: -24px;
}
.pbmit-ihbox-style-1 .pbmit-ihbox-icon-type-image{
    width: 60px;
}
.about_us-one{
  padding-bottom: 50px;
}
.aboutus-main :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--heading-font-2);
}

.single-promo-item {
  padding: 40px 50px 50px 50px;
  position: relative;
  z-index: 1;
  background: #fff;
  height: 250px;
  margin-top: -60px;
  transition: 0.5s;
  box-shadow: 0 3px 9px -2px #d0cece;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-promo-item {
    padding: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-promo-item {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .single-promo-item {
    padding: 35px;
  }
}
.single-promo-item h5 {
  font-family: var(--heading-font-2);
  font-size: 22px;
  font-weight: 500;
  margin: 15px 0 20px;
  position: relative;
  padding-left: 40px;
}
.single-promo-item h5:before {
  position: absolute;
  content: " ";
  top: 50%;
  left: 0;
  background: var(--thm-base);
  height: 3px;
  width: 25px;
  margin-top: -1px;
}
.single-promo-item p {
  font-weight: 400;
  line-height: 1.5;
}
.single-promo-item i {
  position: relative;
}
.single-promo-item i:before {
  font-size: 50px;
  font-weight: 400;
  color: var(--thm-base);
}
.single-promo-item:hover img{    filter: brightness(0) invert(1);}
.single-promo-item:hover h5 {
  color: #fff;
}

.single-promo-item:hover p {
  color: #fff;
}

.single-promo-item:hover .promo-icon {
  color: #fff;
}

.single-promo-item:hover .promo-icon i:before {
  color: #fff;
}

.single-promo-item:hover h5:before {
  background: #fff;
}

.single-promo-item::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 16px;
  width: 16px;
  background: var(--thm-base);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single-promo-item:hover:after {
  width: 100%;
  height: 100%;
  z-index: -2;
}
.product-main{
  background-color: #ededf5;
  margin-top: -31px !important;
}
.product-main h1, h2 ,h3, h4, h5, h6{
  font-family: var(--heading-font-2);
}
.tp-team-item{
    position:relative;
}
.tp-team-item-thumb {
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-team-item-thumb {
    margin-bottom: 30px;
  }
}
.tp-team-item-thumb img {
  width: 100%;
  border-radius: 5px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-item-thumb img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-team-item-thumb img {
    min-width: 100%;
  }
}
.tp-team-item-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(358deg, #000000a8 5.86%, rgba(0, 77, 110, 0) 62.23%);
  border-radius: 5px;
  z-index: 1;
}
.tp-team-item-thumb:hover img {
  transform: scale(1.08);
}
.tp-team-item:hover .tp-team-social .icon-1 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-2 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-3 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-4 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.tp-team-item:nth-child(even) {
  padding-top: 40px;
}
.tp-team-social {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
}
.tp-team-social a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  display: block;
  text-align: center;
  border-radius: 5px;
  line-height: 30px;
  height: 30px;
  width: 30px;
  margin-bottom: 10px;
  color: #000000;
  background: #fff;
  transition: none;
}
.tp-team-social a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-team-social a:hover {
  color: #fff;
}
.tp-team-social a:hover::after {
  opacity: 1;
}
.tp-team-social .icon-1 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}
.tp-team-social .icon-2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.4s ease-in-out;
}
.tp-team-social .icon-3 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.5s ease-in-out;
}
.tp-team-social .icon-4 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.6s ease-in-out;
}
.tp-team-info {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.tp-team-info-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: #fff;
}
.tp-team-info-title a {
  color: #fff;
  background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
}
.tp-team-info-title a:hover {
  background-size: 0 1px, 100% 1px;
}
.tp-team-info p {
  color: #fff; text-align:center;
}
.tp-team-video-area {
  position: relative;
}
.tp-team-video-bg::before {
  position: absolute;
  content: "";
  height: 47%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: var(--thm-base);
  z-index: -1;
}
.tp-team-video-wrapper {
  position: relative;
}
.tp-team-video-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 77, 110, 0) 0%, rgba(0, 172, 204, 0.72) 100%);
}
.tp-team-video-wrapper img {
  border-radius: 5px;
  width: 100%;
}
.tp-team-video-wrapper .tp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50px, -50px);
  z-index: 1;
}
.tp-team-video-wrapper .tp-play-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 100%;
  -webkit-animation: ripple2 2s infinite;
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 0px 14px 24px -1px rgba(20, 0, 77, 0.31);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
@media (max-width: 575px) {
  .tp-team-area-2 {
    padding-top: 90px;
  }
}
.tp-team-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: var(--thm-base);
  z-index: -1;
}
.tp-team-bg {
  position: absolute;
  top: -27%;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
}
.tp-team-bg img {
  max-width: 100%;
}
.tp-team-item-margin .row [class*=col-]:nth-child(even) .tp-team-item {
  margin-top: 40px;
}
.tp-team-area{
  padding: 80px 0px;
}
.tp-team-area :where(h1, h2, h3, h5, h6){
  font-family: var(--heading-font-2);
}
.single-promo-item img{
  height: 50px;
  width: 50px;
  color: white;
  background-blend-mode:multiply;
}
.title-m h2{
  font-family: var(--heading-font-2);
  font-size: 35px;
  margin: 10px 0px;
}
.parsley-error{
  border-color: #ff4136 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url('../images/download.svg');
     background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.parsley-success{
  border-color: #28b62c !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url('../images/success.svg');
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.parsley-errors-list{
  font-size: 13px; color: #ff4136;}
  
.about-section-2{
  margin: 0px 80px 70px;
}
.about-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-items {
    padding-top: 20px
  }
}

@media only screen and (max-width:767px) {
  .about-items {
    padding-top: 10px
  }
}

.about-col {
  width: 27%
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-col {
    width: 29%
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .about-col {
    width: 47%
  }
}

@media only screen and (max-width:767px) {
  .about-col {
    width: 100%
  }
}

.about-item {
  margin-top: 30px
}

.about-item__top {
  display: block;
  position: relative
}

.about-item__top::before{
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top-left-radius: 170px;
    border-top-right-radius: 170px;
    z-index: 0;
    background-color: rgba(0, 0, 0, .5);
}

.about-item__top--image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
}

.about-item__top--title {
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-item__top--title {
    font-size: 30px
  }
}

@media only screen and (max-width:767px) {
  .about-item__top--title {
    font-size: 28px
  }
}

.about-item__bottom {
  padding: 40px 30px;
  border: 1px solid #a8a8a8;
  text-align: center;
  position: relative;
  margin-top: 115px
}

@media only screen and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-item__bottom {
    padding: 30px 10px 5px;
    margin-top: 45px
  }
}

.about-item__bottom:before {
  position: absolute;
  content: "";
  top: -116px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 115px;
  background-color: #a8a8a8
}

@media only screen and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-item__bottom:before {
    top: -66px;
    height: 65px
  }
}

.about-item__bottom--count {
  width: 50px;
  height: 50px;
  line-height: 46px;
  z-index: 1;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  fill: #494949;
  color: #494949;
  background-color: #fff;
  border: 1px solid #a8a8a8;
  border-radius: 50px;
  padding: 2px 0 0
}

@media only screen and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-item__bottom--count {
    font-size: 16px
  }
}

.about-item__bottom--description {
  font-size: 20px;
  line-height: 1.6; text-align:center;
}

@media only screen and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1599px) {
  .about-item__bottom--description {
    font-size: 16px
  }
}
.f-sec{
  display: flex;
  margin: 60px 0px;
}
.f-sec-wrapper{
  display:flex;
  align-items: center;
}
.f-sec .c-wrapper p{
  text-align: justify;
}
.f-sec .i-wrapper{
  position: relative;
  text-align: center;
}
.f-sec .i-wrapper img{
  height: 100%;
  width:200px;
}

.feature-two {
  position: relative;
  display: block;
  padding: 50px 0;
  z-index: 2; margin-bottom: 0;
}

.feature-two__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.feature-two__shape-1 img {
  width: auto;
}

.feature-two__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f4f4f4;    margin-bottom: 30px;
}

.feature-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 110px;
  width: 100%;
  height: 120px;
  background-color: #e7e7e7;
}

.feature-two__icon::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -12px;
  border-top: 20px solid transparent;
  border-left: 12px solid var(--thm-base);
  border-bottom: 20px solid transparent;
}

.feature-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--thm-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-two__single:hover .feature-two__icon span {
  transform: scale(0.9);
}

.feature-two__content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.feature-two__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.feature-two__content h3 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__content h3 a:hover {
  color: var(--thm-base);
}

.feature-two__content p {
  color: #7e8a9b;
  margin-top: 16px;
}

.feature-two__bottom-text {
  position: relative;
  display: block;
  border: 1px solid #283953;
  padding: 10px 20px 10px;
}

.feature-two__bottom-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-two__content {
    margin-left: 15px;
  }

  .feature-two__content h3 {
    font-size: 17px;
  }

  .feature-two__content p br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .feature-two__content {
    margin-left: 15px;
  }

  .feature-two__content h3 {
    font-size: 17px;
  }

  .feature-two__content p br {
    display: none;
  }
}

.project-three {
  background-color: #ededf5;
  position: relative;
  display: block;
  padding: 50px 0px;
  z-index: 1;
}

.project-three .container {
  max-width: 1600px;
}

.project-three .project-two__single {
  margin-bottom: 30PX;
}

.project-two {
  position: relative;
  display: block;
  z-index: 1;
}

.project-two__inner {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-two__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10000px;
  right: 100px;
  bottom: 0;
  background-color: var(--thm-black);
  z-index: -1;
}

.project-two__bg {
  position: absolute;
  top: 0;
  left: -375px;
  bottom: 0;
  width: 90.75%;
  opacity: .10;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: -1;
}

.project-two__left {
  position: relative;
  display: block;
  margin-right: 40px;
  z-index: 5;
}

.project-two__left .section-title {
  margin-bottom: 31px;
}

.project-two__left .section-title__tagline {
  color: #7e8a9b;
}

.project-two__left .section-title__title {
  color: var(--thm-white);
}

.project-two__text {
  color: #7e8a9b;
}

.project-two__completed-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--thm-base);
  padding: 18px 20px 17px;
  margin-top: 41px;
}

.project-two__completed-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__completed-icon:hover {
  background-color: var(--thm-white);
}

.project-two__completed-icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--thm-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__completed-icon:hover span {
  color: var(--thm-black);
}

.project-two__completed-content {
  position: relative;
  display: block;
  margin-left: 24px;
  padding-left: 32px;
}

.project-two__completed-content::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  bottom: -17px;
  width: 2px;
  background-color: rgba(var(--sinace-white-rgb), .10);
}

.project-two__count {
  position: relative;
  display: block;
}

.project-two__count h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  color: var(--thm-white);
  letter-spacing: 0;
}

.project-two__completed-content p {
  color: var(--thm-white);
  margin-top: 5px;
}

.project-two__right {
  position: relative;
  display: block;
  margin-right: -375px;
}

.project-two__carousel {
  position: relative;
  display: block;
}

.project-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.project-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.project-two__single {
  position: relative;
  display: block;
}

.project-two__img-box {
  position: relative;
  display: block;
}

.project-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-two__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(12, 38, 52, .60);
  opacity: 1;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateY(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateY(-90deg) scale(0.2);
  transform: perspective(400px) rotateY(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.project-two__single:hover .project-two__img:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateY(0deg) scale(1.0);
  transform: perspective(400px) rotateY(0deg) scale(1.0);
}

.project-two__img img {
  width: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;    height: 190px; object-fit: cover;
}

.project-two__single:hover .project-two__img img {
  transform: scale(1.1) rotate(2deg);
}

.project-two__title-box {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 19px 20px 23px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__single:hover .project-two__title-box {
  background-color:rgb(246 120 18);
}

.project-two__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
}

.project-two__title a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__single:hover .project-two__title a {
  color: var(--thm-white);
}

.project-two__tagline {
  position: absolute;
  bottom: 42px;
  right: -33px;
  background-color: var(--thm-base);
  padding: 14px 25px 14px;
  transform: rotate(90deg);
  z-index: 2;
}

.project-two__tagline p {
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--thm-white);
}

.project-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: -120px;
  right: 40.6%;
}

.project-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 0;
  color: var(--thm-white);
  background-color: var(--thm-base);
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 0;
  color: var(--thm-white);
  background-color: var(--thm-base);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.project-two__carousel.owl-theme .owl-nav .owl-next span,
.project-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-two__carousel.owl-theme .owl-nav .owl-next:hover,
.project-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--thm-white);
  color: var(--thm-black);
}    .goog-te-gadget-simple{background:transparent !important;border:none !important;}
.goog-te-gadget-simple  span{color:#fff !important;}
.input-box{margin-bottom: 20px;}
.cs_team_member img{    height: 250px;
  object-fit: cover;}



  


  .ring {
    position: fixed;
    bottom: 0;
    left: 0;
    transform: scale(.7);
    z-index: 100000;
    transform-origin: 0;
}

.coccoc-alo-phone {
    background-color: transparent;
    width: 200px;
    height: 200px;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
    right: 150px;
    top: 30px;
}
.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle {
border-color: #00aff2;
opacity: .5;
}
.coccoc-alo-ph-circle {
width: 160px;
height: 160px;
top: 20px;
left: 20px;
position: absolute;
background-color: transparent;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid rgba(30,30,30,.4);
opacity: .1;
-webkit-animation: 1.2s ease-in-out infinite coccoc-alo-circle-anim;
-moz-animation: 1.2s ease-in-out infinite coccoc-alo-circle-anim;
-ms-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
-o-animation: 1.2s ease-in-out infinite coccoc-alo-circle-anim;
animation: 1.2s ease-in-out infinite coccoc-alo-circle-anim;
-webkit-transition: .5s;
-moz-transition: .5s;
-o-transition: .5s;
transition: all .5s;
}
.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle-fill {
background-color: rgba(0,175,242,.5);
opacity: .75!important;
}
.coccoc-alo-ph-circle-fill {
width: 100px;
height: 100px;
top: 50px;
left: 50px;
position: absolute;
background-color: #000;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid transparent;
opacity: .1;
-webkit-animation: 2.3s ease-in-out infinite coccoc-alo-circle-fill-anim;
-moz-animation: 2.3s ease-in-out infinite coccoc-alo-circle-fill-anim;
-ms-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
-o-animation: 2.3s ease-in-out infinite coccoc-alo-circle-fill-anim;
animation: 2.3s ease-in-out infinite coccoc-alo-circle-fill-anim;
-webkit-transition: .5s;
-moz-transition: .5s;
-o-transition: .5s;
transition: all .5s;
}
a {
color: #5d9d41;
transition: background-color .3s ease 0s,color .3s ease 0s;
}
.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-img-circle {
background-color: #00aff2;
}
.coccoc-alo-ph-img-circle {
width: 60px;
height: 60px;
top: 70px;
left: 70px;
position: absolute;
background: url(https://drive.google.com/uc?id=1V3N2b79QjDWetC_ss9wI3c-xpWDymn9R) center center no-repeat rgba(30,30,30,.1);
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid transparent;
opacity: .7;
-webkit-animation: 1s ease-in-out infinite coccoc-alo-circle-img-anim;
-moz-animation: 1s ease-in-out infinite coccoc-alo-circle-img-anim;
-ms-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
-o-animation: 1s ease-in-out infinite coccoc-alo-circle-img-anim;
animation: 1s ease-in-out infinite coccoc-alo-circle-img-anim;
}

.whatsapp-fix .fa.fa-whatsapp {
position: fixed;
z-index: 1000000000;
width: 60px;
height: 60px;
background: #428a21;
right: 20px;
font-size: 45px;
color: #fff;
border-radius: 100%;
padding: 6px 6px 6px 11px;
box-shadow: 1px 1px 9px rgba(0,0,0,.5);
bottom: 88px;
}
.fa {
display: inline-block;
font: 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fa-whatsapp:before {
content: "\f232";
}  

@keyframes coccoc-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg)
}

10% {
    transform: rotate(-25deg) scale(1) skew(1deg)
}

20% {
    transform: rotate(25deg) scale(1) skew(1deg)
}

30% {
    transform: rotate(-25deg) scale(1) skew(1deg)
}

40% {
    transform: rotate(25deg) scale(1) skew(1deg)
}

50% {
    transform: rotate(0) scale(1) skew(1deg)
}

100% {
    transform: rotate(0) scale(1) skew(1deg)
}
}

@keyframes coccoc-alo-circle-fill-anim {
  0% {
      transform: rotate(0) scale(.7) skew(1deg);
      opacity: .2
  }

  50% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: .2
  }

  100% {
      transform: rotate(0) scale(.7) skew(1deg);
      opacity: .2
  }
}
.padd{    text-align: center;}
.header-style-one .logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 37%;
    height: 120px;
    z-index: 1; top:0;
}
@media (max-width: 1399px){
.header-style-one .logo-bg {
    width: 37%;
}
}

@media (max-width: 1499px){
.header-style-one .logo-bg {
    width: 37%;
}
}
@media (max-width: 1699px){
.header-style-one .logo-bg {
    width: 37%;
}
}
@media (max-width: 1799px){
.header-style-one .logo-bg {
    width: 43%;
}
}
.header-style-one .logo-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #fff;
    -webkit-clip-path: polygon(0% 0%, calc(100% - 60px) 0, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, calc(100% - 60px) 0, 100% 100%, 0% 100%);
    z-index: -1;
}
.img-box-outer .owl-nav{display:none;}
.img-box-outer .owl-carousel.owl-dot-style1 .owl-dots{margin-top:20px !important;}

.map-inner iframe{
    width:600px;
    height:600px;
}





/* BLOG */
.blog-index{
    padding-top: 50px;
    /*padding-bottom: 50px;*/
}
.news-block {
    position: relative;
    margin-bottom: 30px;
}
.news-block .inner-box {
    position: relative;
    background-color: #ffffff;
    border-bottom: 3px solid transparent;
    border-radius: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.news-block .date {
    position: absolute;
    right: -10px;
    top: 20px;
    background: #0ba5c2;
    color: #ffffff;
    z-index: 1;
    padding: 5px 20px;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    border-radius: 20px 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.news-block .date:before {
    position: absolute;
    bottom: -10px;
    right: 0;
    border-right: 10px solid transparent;
    border-top: 10px solid #0ba5c2;
    content: "";
}
.news-block .image-box {
    position: relative;
}
.news-block .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}
.news-block .image img {
    display: block;
    border-radius: 10px 10px 0 0;
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.news-block .image-box .image a:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.news-block .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.news-block .inner-box:hover .image-box .image a:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.news-block .lower-content {
    position: relative;
    padding: 20px;
}
.news-block h4 a{
      position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
     overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
}
.news-block h4 a:hover {
    color: #0ba5c2;
}
.news-block .author .name {
        font-size: 15px;
    line-height: 1em;
    color: #819291;
    font-weight: normal;
}
.news-block .author .name a{
    color: #819291;
}
.news-block .author .name:hover a,  .news-block .author .name:hover i{
    color: #0ba5c2;
}
.news-block .inner-box:hover {
    border-bottom: 3px solid #0ba5c2;
}
/* BLOG */

/* BLOG  DETAIL*/
.blog-details {
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0;
}
.sub-title .border-box {
    position: relative;
    display: block;
    margin-right: 10px;
    width: 18px;
    height: 2px;
    background: var(--thm-base);
}
.sub-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.blog-details .sec-title .sub-title h3 {
    font-weight: 600;
}
.blog-details__left {
    position: relative;
    display: block;
}
.blog-details__img {
    position: relative;
    display: block;
    border-radius: 10px;
    margin: auto;
    text-align: center;
}
.blog-details__img img {
    width: auto;
    border-radius: 10px;
    height: 300px;
    object-fit: contain;
    margin: auto;
    text-align: center;
}
.blog-details__content {
    position: relative;
    display: block;
    margin-top: 22px;
}
.blog-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 21px;
}
.blog-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0 20px;
    /* margin-top: 49px; */
    border-top: 1px solid #ece9e0;
}
.blog-details__bottom p {
    margin: 0;
}
.blog-details__tags span {
    color: #000000;
    font-size: 16px;
    margin-right: 14px;
    font-weight: normal;
}
.blog-details__social-list span {
    color: #000000;
    font-size: 16px;
    margin-right: 14px;
    font-weight: normal;
}
.blog-details__tags a {
    position: relative;
    font-size: 15px;
    background-color: #f8f6f1;
    color: #000000;
    display: inline-block;
    padding: 5px 30px 5px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 35px;
}
.blog-details__tags a:hover {
    background-color: #2fb2cb;
    color: #ffffff;
    text-decoration: none;
}
.blog-details__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-details__social-list a {
    position: relative;
    height: 43px;
    width: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    background-color: #f8f6f1;
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.blog-details__social-list a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #2fb2cb;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}
.blog-details__social-list a:hover {
    color: #fff;
}
.blog-details__social-list a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* margin-bottom: 53px; */
}
.nav-links .prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: calc(50% - 15px);
    margin-right: 30px;
}
.nav-links > div > a {
    display: inline-block;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 1.637;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #000000;
    background-color: #f8f6f1;
    padding: 52px 50px;
    border-radius: 10px;
    width: 100%;
}
.nav-links .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: calc(50% - 15px);
}
.nav-links > div > a:hover {
    color: #fff;
    background-color: #0ba5c2;
}
.sidebar__post {
    position: relative;
    display: block;
    padding: 25px;
    color:#003733;
    background-color: #f8f6f1;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 25px;
}
.sidebar__post .sidebar__title {
    margin-left: 20px;
}
.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight:normal;
}
.sidebar__post .sidebar__post-list {
    margin: 0;
}
.sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*align-items: center;*/
    padding: 16px 20px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    -webkit-box-flex: 70px;
    -ms-flex: 70px 0 0px;
    flex: 70px 0 0;
}
.sidebar__post .sidebar__post-list .sidebar__post-image > img {
    width: 80px;
    border-radius: 10px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    color: #757873 !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: #00a1bf;
    font-size: 14px;
    padding-right: 3px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
       color: #000000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sidebar__post .sidebar__post-list li:hover {
    background-color: #ffffff;
    border-radius: 10px;
}


 .banner-widget {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}
 .banner-widget .widget-content {
    position: relative;
    display: block;
    width: 100%;
    padding: 45px 30px 40px 30px;
    background-size: cover;
    background-repeat: no-repeat;
}
 .banner-widget .widget-content .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 278px;
    background-repeat: no-repeat;
    background-size: cover;
}
 .banner-widget .content-box {
    position: relative;
    max-width: 200px;
    width: 100%;
}
 .banner-widget .content-box .icon-box {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 40px;
        background-color: #f8f6f1;
    color: #00a0bf;
    text-align: center;
    margin-bottom: 23px;
}
 .banner-widget .content-box h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.btn-style-one {
    position: relative;
   font-size: 13px;
    line-height: 30px;
    color: #00a0bf;
    padding: 10px 25px;
    font-weight: 600;
    background: #f8f6f1;
    letter-spacing: 0.05em;
    border-radius: 50px;
    overflow: hidden;
    text-transform: uppercase;
}
.btn-style-one:hover {
      background-color: #37acc3;
    color: #f8f6f1;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.listing ul li i{
    color:#1fa2c1;
}
.listing{
    padding-bottom:20px;
}
/* BLOG  DETAIL*/

/* 404 */
.cs_error_content {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.cs_error_content .cs_error_thumbnail {
    width: 100%;
    margin-bottom: 18px;
}
.cs_error_content .cs_error_thumbnail img {
    width: 60%;
    -o-object-fit: cover;
    object-fit: cover;
}
.cs_error_content .cs_error_heading {
    font-size: 30px;
    margin-bottom: 15px;
}
.cs_error_content .cs_error_heading span{
    color: #1fa2c1;
}
.cs_error_content .cs_error_subtitle {
    margin-bottom: 26px;
}
.error{
    padding-top: 50px;
    padding-bottom: 50px;
}
/* 404 */
