
:root {
  --thm-font: 'Open Sans';
  --heading-font: 'Work Sans';
  --thm-base-color: #36c0ea;
  --thm-base-color-rgb: 32, 223, 227;
  --thm-primary-color: #6468ff;
  --thm-primary-color-rgb: 85, 56, 244;
  --thm-black-color: #2d2c2c;
  --thm-black-color-rgb: 45, 44, 44;
  --thm-gray-color: #f0f1f5;
  --thm-text-color: #848484;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-text-color);
  font-size: 15px;
  line-height: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

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

hr.style-one {
  border-color: #e5e5e5;
  margin: 0;
  border-width: 1px;
  margin-bottom: 50px;
}

@-webkit-keyframes inctechPulse {
  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(var(--thm-base-color-rgb), 0.3), 0 0 0 30px rgba(var(--thm-base-color-rgb), 0.1);
            box-shadow: 0 0 0 15px rgba(var(--thm-base-color-rgb), 0.3), 0 0 0 30px rgba(var(--thm-base-color-rgb), 0.1);
  }
}

@keyframes inctechPulse {
  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(var(--thm-base-color-rgb), 0.3), 0 0 0 30px rgba(var(--thm-base-color-rgb), 0.1);
            box-shadow: 0 0 0 15px rgba(var(--thm-base-color-rgb), 0.3), 0 0 0 30px rgba(var(--thm-base-color-rgb), 0.1);
  }
}

.post-filter {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

.post-filter li + li {
  margin-left: 30px;
}

.post-filter li span {
  cursor: pointer;
  color: var(--thm-text-color);
  font-family: var(--heading-font);
  font-weight: 500;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.post-filter li span:hover {
  color: var(--thm-primary-color);
}

.post-filter li.active span {
  color: var(--thm-primary-color);
}

.block-title {
  margin-bottom: 50px;
}
.brand-title {
  margin-bottom: 50px;
}

.block-title__tag-line {
  color: var(--thm-base-color);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  font-family: var(--heading-font);
}

.block-title__tag-line + .block-title__title {
  margin-top: 10px;
}

.block-title__title {
  margin: 0;
  color: var(--thm-black-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.block-title__title span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.block-title__title span::before {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background-color: var(--thm-base-color);
  opacity: 0.3;
}

.block-title__title + .block-title__text {
  margin-top: 15px;
}

.blockqoute-one {
  background-color: var(--thm-primary-color);
  padding: 42px 0;
  padding-left: 130px;
  padding-right: 40px;
  margin-bottom: 80px;
  position: relative;
}

.blockqoute-one:before {
  position: absolute;
  top: 60px;
  left: 40px;
  content: '';
  width: 60px;
  height: 3px;
  background-color: var(--thm-base-color);
}

.blockqoute-one:after {
  content: '';
  background-color: transparent;
  background-image: url(../images/resources/block-qoute-1-1.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 63px;
  height: 48px;
  opacity: 0.2;
  position: absolute;
  top: 30px;
  left: 160px;
}

.blockqoute-one p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-family: var(--heading-font);
  font-weight: 300;
}

.blockqoute-one p:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  bottom: -20px;
  background-color: #cce9ed;
  z-index: -1;
}

.blockqoute-one p::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100px;
  right: 100px;
  bottom: -40px;
  background-color: #ebfdff;
  z-index: -2;
}

.thm-btn {
  border: none;
  outline: none;
  background-color: var(--thm-base-color);
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: #fff;
  -webkit-box-shadow: 0px 20px 30px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 20px 30px 0px rgba(26, 46, 85, 0.1);
  padding: 14.5px 39.5px;
  -webkit-transition: background-color .4s ease, color .3s ease;
  transition: background-color .4s ease, color .3s ease;
}

.thm-btn:hover {
  color: #fff;
  background-color: var(--thm-black-color);
}

.post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-pagination a {
  font-size: 24px;
  font-family: var(--heading-font);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: var(--thm-black-color);
}

.post-pagination a.active, .post-pagination a:hover {
  color: var(--thm-base-color);
}

.post-pagination a i {
  font-size: 25px;
  color: #cccccc;
  display: inline-block;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.post-pagination a i:hover {
  color: var(--thm-base-color);
  -webkit-transform: scale(1.5, 1);
          transform: scale(1.5, 1);
}

.post-pagination a.prev-page i {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.post-pagination a + a {
  margin-left: 30px;
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--thm-gray-color);
}

.bootstrap-select .dropdown-menu > li:first-child > a {
  padding-top: 10px;
}

.bootstrap-select .dropdown-menu > li:last-child > a {
  padding-bottom: 10px;
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--thm-base-color);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 9px 20px;
  color: var(--thm-black-color);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--thm-base-color);
  color: #fff;
  cursor: pointer;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
}

.preloader span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/resources/preloader.gif);
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--thm-base-color);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 990;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  position: relative;
  z-index: 10;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

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

.scroll-to-top:hover i {
  color: #fff;
}

/*
* 2. header styles
*/
.header-navigation {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  background-color: transparent;
}

.header-navigation .container {
  background: transparent;
  position: relative;
  display: block;
}

.header-navigation .container .logo-box {
  float: left;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-navigation .container .navbar-brand {
  height: auto;
  margin: 0;
}

.header-navigation .container .menu-toggler {
  display: none;
}

.header-navigation .container .right-side-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

.header-navigation .main-navigation {
  float: right;
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .header-navigation .main-navigation {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.header-navigation ul.navigation-box {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-navigation ul.navigation-box li a .sub-nav-toggler {
  display: none;
}

.header-navigation ul.navigation-box > li {
  position: relative;
  padding: 42px 0;
  display: inline-block;
  vertical-align: middle;
  /* Second Level Menu */
  /* Thrid Level Menu */
}

.header-navigation ul.navigation-box > li + li {
  margin-left: 40px;
}

.header-navigation ul.navigation-box > li:first-child {
  padding-left: 0;
}

.header-navigation ul.navigation-box > li:last-child {
  padding-right: 0;
}

.header-navigation ul.navigation-box > li > a {
  font-weight: 600;
  font-size: 16px;
  color: var(--thm-black-color);
  padding: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
}

.header-navigation ul.navigation-box > li > a:after {
  content: "\f107";
  font-family: FontAwesome;
  margin-left: 10px;
}

.header-navigation ul.navigation-box > li > a:only-child:after {
  content: '';
  display: none;
}

.header-navigation ul.navigation-box > li.current > a,
.header-navigation ul.navigation-box > li:hover > a {
  color: var(--thm-base-color);
}

.header-navigation ul.navigation-box > li > .submenu {
  position: absolute;
  height: 500px; 
  overflow-y: auto; 
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 220px;
  padding: 0px 0px;
  text-align: left;
  list-style: none;
  background-color: var(--thm-black-color);
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0px;
  visibility: hidden;
  -webkit-transition: opacity .4s ease, visibility .4s ease;
  transition: opacity .4s ease, visibility .4s ease;
  -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
          
         
}

.submenu::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.submenu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #6468ff; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #6468ff; 
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #6468ff; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #6468ff; 
}

@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li > .submenu {
    display: block !important;
  }
}

.header-navigation ul.navigation-box > li > .submenu.right-align {
  left: auto;
  right: 0;
}

.header-navigation ul.navigation-box > li > .submenu.center-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-navigation ul.navigation-box > li > .submenu > li {
  display: block;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > .submenu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-navigation ul.navigation-box > li > .submenu > li > a {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  padding: 12px 30px;
  display: block;
  line-height: 26px;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > .submenu > li:hover > a {
  color: #fff;
  background: var(--thm-base-color);
}

.header-navigation ul.navigation-box > li:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.header-navigation ul.navigation-box > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

.header-navigation ul.navigation-box > li > ul > li > .submenu {
  position: absolute;
  top: 0%;
  left: 100%;
  z-index: 1000;
  float: left;
  min-width: 220px;
  padding: 0px 0px;
  text-align: left;
  list-style: none;
  background-color: var(--thm-black-color);
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0px;
  visibility: hidden;
  -webkit-transition: opacity .4s ease, visibility .4s ease;
  transition: opacity .4s ease, visibility .4s ease;
  -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li > ul > li > .submenu {
    display: block !important;
  }
}

.header-navigation ul.navigation-box > li > ul > li > .submenu.right-align {
  left: auto;
  right: 100%;
}

.header-navigation ul.navigation-box > li > ul > li > .submenu.center-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-navigation ul.navigation-box > li > ul > li > .submenu > li {
  display: block;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > ul > li > .submenu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-navigation ul.navigation-box > li > ul > li > .submenu > li > a {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  padding: 12px 30px;
  display: block;
  line-height: 26px;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > ul > li > .submenu > li:hover > a {
  color: #fff;
  background: var(--thm-base-color);
}

.header-navigation ul.navigation-box > li > ul > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

.header-navigation ul.navigation-box > li > ul > li ul {
  /* no more nested showen */
  display: none;
}

.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.stricked-menu ul.navigation-box > li {
  padding-top: 22px;
  padding-bottom: 22px;
}

.stricked-menu.stricky-fixed {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.header-one__btn {
  padding: 12px 37px;
}

.site-header__header-one .header-navigation .container {
  padding-right: 195px;
}

.site-header__header-one .header-navigation ul.navigation-box + ul.navigation-box {
  margin-left: 50px;
}

.site-header__header-one .header-navigation ul.navigation-box > li > a {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: var(--thm-black-color);
}

.site-header__header-one .header-navigation ul.navigation-box > li.current > a,
.site-header__header-one .header-navigation ul.navigation-box > li:hover > a {
  color: var(--thm-base-color);
}

.site-header__header-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 991;
}

.site-header__header-two .header-navigation ul.navigation-box + ul.navigation-box {
  margin-left: 50px;
}

.site-header__header-two .header-navigation ul.navigation-box > li > a {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: #fff;
}

.site-header__header-two .header-navigation ul.navigation-box > li.current > a,
.site-header__header-two .header-navigation ul.navigation-box > li:hover > a {
  color: var(--thm-base-color);
}

.site-header__header-two .stricked-menu {
  background-color: var(--thm-black-color);
}

/*topbar styles*/
.topbar-one {
  padding-top: 17px;
  padding-bottom: 17px;
  background-color: var(--thm-black-color);
}

.topbar-one .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.topbar-one__left-text {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-family: var(--heading-font);
}

.topbar-one__right-info {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topbar-one__right-info i {
  color: var(--thm-base-color);
  margin-right: 10px;
}

.topbar-one__right-info li {
  color: #fff;
  font-size: 15px;
  font-family: var(--heading-font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topbar-one__right-info li + li {
  margin-left: 40px;
}

.topbar-one__light {
  background-color: var(--thm-gray-color);
}

.topbar-one__light .topbar-one__right-info li,
.topbar-one__light .topbar-one__left-text {
  color: var(--thm-text-color);
}

/*
* 3. banner styles
*/
.banner-one .container {
  padding-top: 139px;
  padding-bottom: 200px;
  position: relative;
}

.banner-one .owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.banner-one__is-animated {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

.banner-one__single {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner-one__tag-line {
  font-size: 17px;
  font-weight: 600;
  color: var(--thm-base-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.banner-one__tag-line + .banner-one__title {
  margin-top: 15px;
}

.banner-one__tag-line + .banner-one__text {
  margin-top: 35px;
}

.banner-one__title {
  margin: 0;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.banner-one__title + .banner-one__text {
  margin-top: 30px;
}

.banner-one__title + .banner-one__tag-line {
  margin-top: 10px;
}

.banner-one__text {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 28px;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.banner-one__text + .banner-one__btn {
  margin-top: 40px;
}

.banner-one__btn {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.banner-one__text + .banner-one__btn-group {
  margin-top: 40px;
}

.banner-one__moc {
  position: absolute;
  bottom: -40px;
  right: 0;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.banner-one__btn-white-bg {
  background-color: #fff;
  color: var(--thm-black-color);
}

.banner-one__slide-2 .banner-one__moc {
  bottom: 0;
}

.banner-one__btn-group .banner-one__btn + .banner-one__btn {
  margin-left: 15px;
}

.active .banner-one__tag-line {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.active .banner-one__title {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.active .banner-one__text {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.active .banner-one__btn {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.active .banner-one__moc {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

/*
* 5. cta styles
*/
.cta-one {
  padding: 101px 0;
  background-color: var(--thm-gray-color);
  background-image: url(../images/resources/cta-1-bg-1-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-one__title {
  color: var(--thm-black-color);
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin: 0;
}

.cta-one__phone {
  margin: 0;
  font-weight: 600;
  font-size: 45px;
  line-height: 1em;
  color: var(--thm-base-color);
  margin-top: 28px;
}

.cta-one__phone a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.cta-one__phone a:hover {
  color: var(--thm-black-color);
}

/*cta two*/
.cta-two .container-fluid {
  padding: 0;
}

.cta-two .block-title {
  margin-bottom: 0;
}

.cta-two .block-title__title {
  color: #fff;
}

@media (max-width: 1440px) {
  .cta-two .block-title__title {
    font-size: 35px;
  }
  .cta-two .block-title__title br {
    display: none;
  }
}

.cta-two .block-title__title:before {
  opacity: 0.5;
}

.cta-two__left {
  padding-top: 95px;
  padding-bottom: 100px;
  padding-left: 150px;
  background-color: #6468ff;
  min-height: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}

@media (max-width: 1440px) {
  .cta-two__left {
    padding-left: 55px;
    padding-right: 55px;
  }
}

.cta-two__right {
  padding-top: 95px;
  padding-bottom: 100px;
  padding-left: 150px;
  background-color: #359CEA;
  min-height: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1440px) {
  .cta-two__right {
    padding-left: 55px;
    padding-right: 55px;
  }
}

.cta-two__phone {
  font-size: 45px;
  font-weight: 600;
  color: #47FBFF;
  font-family: var(--heading-font);
  margin-top: 30px;
}

.cta-two__phone a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.cta-two__phone a:hover {
  color: var(--thm-black-color);
}

.cta-two__btn {
  margin-top: 30px;
}

.cta-three {
  background-color: var(--thm-gray-color);
  background-image: url(../images/background/cta-3-1-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.cta-three .my-auto {
  width: 100%;
}

.cta-three .block-title {
  margin-bottom: 40px;
}

@media (max-width: 1440px) {
  .cta-three .block-title__title {
    font-size: 35px;
    line-height: 1.2em;
  }
}

.cta-three .block-title__title + .block-title__text {
  margin-top: 30px;
}

.cta-three__content {
  padding-left: 115px;
  width: 100%;
  max-width: 810px;
}

@media (max-width: 1440px) {
  .cta-three__content {
    padding-left: 75px;
    padding-right: 50px;
  }
  .cta-three__content br {
    display: none;
  }
}

.cta-three__btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cta-three__btn-one {
  background-color: var(--thm-primary-color);
  margin-right: 20px;
}

.cta-four .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 70px;
  padding-right: 70px;
  background-color: var(--thm-black-color);
  background-image: url(../images/background/cta-4-1.jpg);
  background-position: center center;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 75px;
  margin-top: -125px;
  margin-bottom: -125px;
  position: relative;
  z-index: 10;
}

.cta-four .block-title {
  margin-bottom: 0;
}

.cta-four .block-title__title {
  color: #fff;
}

.cta-four .thm-btn:hover {
  background-color: #fff;
  color: var(--thm-black-color);
}

.cta-four__button-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cta-four__btn-one {
  background-color: var(--thm-primary-color);
  margin-right: 20px;
}

/*
* 6. footer styles
*/
.site-footer {
  background-color: #100a27;
}

.site-footer__upper {
  padding-top: 125px;
  padding-bottom: 125px;
}

.site-footer__bottom .container {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-footer__bottom .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 30px);
  height: 1px;
  border-top: 1px solid #fff;
  opacity: 0.2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.site-footer__links {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer__links a {
  font-size: 15px;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.site-footer__links a:hover {
  color: var(--thm-base-color);
}

.site-footer__links li + li::before {
  content: '|';
  font-size: 15px;
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
}

.site-footer__copy {
  margin: 0;
  color: #fff;
}

.footer-widget__title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  margin-top: -5px;
  margin-bottom: 35px;
}

.footer-widget__title + .footer-widget__text {
  margin-top: -10px;
}

.footer-widget__text {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  opacity: 0.7;
  margin: 0;
}
.footer-widget__text a {
  color: inherit;
  transition: all 500ms ease;
}
.footer-widget__text a:hover {
  color: var(--thm-base-color);
}

.footer-widget__text + .footer-widget__text {
  margin-top: 12px;
}

.footer-widget__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.footer-widget__social a {
  font-size: 20px;
  color: #fff;
  opacity: 0.3;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.footer-widget__social a + a {
  margin-left: 30px;
}

.footer-widget__social a:hover {
  opacity: 1;
  color: var(--thm-base-color);
}

.footer-widget__links {
  margin: 0;
  margin-top: -5px;
}

.footer-widget__links li + li {
  margin-top: 7px;
}

.footer-widget__links a {
  color: #fff;
  opacity: 0.7;
  display: inline-block;
  font-size: 16px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
}

.footer-widget__links a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--thm-base-color);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.footer-widget__links a:after {
  content: '\f101';
  font-family: 'FontAwesome';
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-15px);
          transform: translateY(-50%) translateX(-15px);
  opacity: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.footer-widget__links a:hover {
  color: var(--thm-base-color);
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.footer-widget__links a:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.footer-widget__links a:hover:after {
  opacity: 1;
}

.footer-widget__logo {
  display: inline-block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: 10px;
}

/*
* 7. inner-banner styles
*/
.inner-banner {
  background-color: var(--thm-black-color);
  background-image: url(../images/background/services-details.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  padding: 115px 0;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--thm-black-color);
  opacity: 0.5;
}

.inner-banner .container {
  position: relative;
}

.inner-banner__content-wrap {
  background-color: rgba(var(--thm-primary-color-rgb), 0.9);
  display: inline-block;
  padding: 20.5px 89px;
}

.inner-banner__title {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}

/*breadcrumb*/
.thm-breadcrumb {
  margin: 0;
  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;
  margin-top: 5px;
}

.thm-breadcrumb li + li::before {
  content: '/';
  margin-left: 10px;
  margin-right: 10px;
}

.thm-breadcrumb li,
.thm-breadcrumb a {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
}

.thm-breadcrumb .active a {
  color: var(--thm-base-color);
}



/*
* 9. contact styles
*/
.contact-one {
  background-color: var(--thm-gray-color);
  padding-top: 140px;
  padding-bottom: 150px;
}

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

.contact-one__form input,
.contact-one__form textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background-color: #fff;
  height: 50px;
  color: #848484;
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.contact-one__form input::-webkit-input-placeholder,
.contact-one__form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--thm-text-color);
}

.contact-one__form input::-moz-placeholder,
.contact-one__form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--thm-text-color);
}

.contact-one__form input:-ms-input-placeholder,
.contact-one__form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--thm-text-color);
}

.contact-one__form input:-moz-placeholder,
.contact-one__form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: var(--thm-text-color);
}

.contact-one__form input.error,
.contact-one__form textarea.error {
  background-color: red;
  color: #ffffff;
}

.contact-one__form input.error::-webkit-input-placeholder,
.contact-one__form textarea.error::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}

.contact-one__form input.error::-moz-placeholder,
.contact-one__form textarea.error::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}

.contact-one__form input.error:-ms-input-placeholder,
.contact-one__form textarea.error:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}

.contact-one__form input.error:-moz-placeholder,
.contact-one__form textarea.error:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}

.contact-one__form label.error {
  display: none !important;
}

.contact-one__form textarea {
  height: 150px;
  padding-top: 10px;
  margin-bottom: 50px;
}

.contact-one__form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.contact-one__form .bootstrap-select > .dropdown-toggle {
  padding: 12px 20px;
  background-color: #fff;
  color: var(--thm-text-color);
  border-radius: 0;
  border: none;
}

.contact-info-one {
  padding: 120px 0;
}

.contact-info-one__box {
  background-color: #fff;
  -webkit-box-shadow: 30.091px 39.932px 120px 0px rgba(26, 46, 85, 0.15);
          box-shadow: 30.091px 39.932px 120px 0px rgba(26, 46, 85, 0.15);
  position: relative;
  padding: 43px 45px;
}

.contact-info-one__single + .contact-info-one__single {
  margin-top: 40px;
}

.contact-info-one__box::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #d8f6f7;
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: -1;
}

.contact-info-one__label {
  margin: 0;
  color: var(--thm-text-color);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--heading-font);
  line-height: 1em;
  margin-bottom: 20px;
}

.contact-info-one__text {
  margin: 0;
  margin-top: -8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--thm-black-color);
  line-height: 28px;
  font-family: var(--heading-font);
}
.contact-info-one__text a {
  color: inherit;
  transition: all 500ms ease;
}
.contact-info-one__text a:hover {
  color: var(--thm-primary-color);
}

.contact-info-one__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-info-one__social a {
  font-size: 18px;
  color: #c2c2c2;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.contact-info-one__social a:hover {
  color: var(--thm-base-color);
}

.contact-info-one__social a + a {
  margin-left: 30px;
}

.google-map__contact {
  width: 100%;
  height: 360px;
  border: none;
  margin: 0;
}

.contact-cta {
  background-color: #F0F1F5;
}

.contact-cta .cta-two__right,
.contact-cta .cta-two__left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-cta .cta-two__right {
  background-color: #fff;
  padding-top: 81.5px;
  padding-bottom: 81.5px;
}

@media (max-width: 1440px) {
  .contact-cta .cta-two__right {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.contact-cta .cta-two__right .block-title__title {
  color: var(--thm-black-color);
}

.contact-home-two {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  padding-top: 100px;
  padding-bottom: 110px;
}

@media (max-width: 1440px) {
  .contact-home-two {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.contact-home-two .contact-one__form textarea {
  margin-bottom: 30px;
}

/*
* 10. sidebar styles
*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 70px;
  }
}

.sidebar__single + .sidebar__single {
  margin-top: 65px;
}

.sidebar__title {
  margin: 0;
  color: var(--thm-black-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 35px;
}

.sidebar__search-form {
  border: 1px solid #e6e6e6;
  position: relative;
}

.sidebar__search-form input {
  border: none;
  outline: none;
  background-color: transparent;
  color: #848484;
  font-size: 15px;
  width: 100%;
  height: 60px;
  padding-left: 20px;
}

.sidebar__search-form button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #848484;
  font-size: 17px;
}

.sidebar__cat-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar__cat-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1em;
}

.sidebar__cat-list li + li {
  margin-top: 26px;
}

.sidebar__cat-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #dcdde0;
}

.sidebar__cat-list li a {
  font-size: 17px;
  color: #3b3b3b;
  font-family: var(--heading-font);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.sidebar__cat-list li:hover::before {
  background-color: var(--thm-base-color);
}

.sidebar__cat-list li:hover a {
  color: var(--thm-base-color);
}

.sidebar__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sidebar__social a {
  width: 75px;
  height: 75px;
  border: 1px solid #e6e6e6;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--thm-text-color);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar__social a:hover {
  background-color: var(--thm-base-color);
  color: #fff;
}

.sidebar__social a + a {
  margin-left: 10px;
}

.sidebar__single .datepicker-inline {
  width: 100%;
}

.sidebar__single .datepicker table {
  width: 100%;
}

.sidebar__single .datepicker table thead tr:nth-child(2) {
  background-color: #f2f4f7;
}

.sidebar__single .datepicker table thead tr:nth-child(2) th {
  font-size: 17px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--thm-black-color);
  padding: 17px 0;
}

.sidebar__single .datepicker table thead tr:nth-child(3) th {
  font-size: 17px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: #3B3B3B;
  padding-top: 20px;
  padding-bottom: 10px;
}

.sidebar__single .datepicker table tbody td {
  font-size: 15px;
  color: #3B3B3B;
}

.sidebar__single .datepicker td,
.sidebar__single .datepicker th {
  width: 30px;
  height: 30px;
}

.sidebar__single .datepicker table tr td span.active.active,
.sidebar__single .datepicker table tr td span.active.disabled.active,
.sidebar__single .datepicker table tr td span.active.disabled:active,
.sidebar__single .datepicker table tr td span.active.disabled:hover.active,
.sidebar__single .datepicker table tr td span.active.disabled:hover:active,
.sidebar__single .datepicker table tr td span.active:active,
.sidebar__single .datepicker table tr td span.active:hover.active,
.sidebar__single .datepicker table tr td span.active:hover:active,
.sidebar__single .datepicker table tr td.active.active,
.sidebar__single .datepicker table tr td.active.disabled,
.sidebar__single .datepicker table tr td.active.disabled.active,
.sidebar__single .datepicker table tr td.active.disabled.disabled,
.sidebar__single .datepicker table tr td.active.disabled:active,
.sidebar__single .datepicker table tr td.active.disabled:hover,
.sidebar__single .datepicker table tr td.active.disabled:hover.active,
.sidebar__single .datepicker table tr td.active.disabled:hover.disabled,
.sidebar__single .datepicker table tr td.active.disabled:hover:active,
.sidebar__single .datepicker table tr td.active.disabled:hover:hover,
.sidebar__single .datepicker table tr td.active.disabled:hover[disabled],
.sidebar__single .datepicker table tr td.active.disabled[disabled],
.sidebar__single .datepicker table tr td.active:active,
.sidebar__single .datepicker table tr td.active:hover,
.sidebar__single .datepicker table tr td.active:hover.active,
.sidebar__single .datepicker table tr td.active:hover.disabled,
.sidebar__single .datepicker table tr td.active:hover:active,
.sidebar__single .datepicker table tr td.active:hover:hover,
.sidebar__single .datepicker table tr td.active:hover[disabled],
.sidebar__single .datepicker table tr td.active[disabled] {
  background-image: none;
  background-color: #FE721D;
  color: #fff;
}

.sidebar__single .datepicker table tr td.old,
.sidebar__single .datepicker table tr td.new {
  opacity: 0.7;
}

.sidebar__post-title {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: var(--thm-black-color);
  margin: 0;
}

.sidebar__post-title a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.sidebar__post-title a:hover {
  color: var(--thm-base-color);
}

.sidebar__post-single {
  position: relative;
  padding: 8px 0;
  padding-left: 115px;
}

.sidebar__post-single + .sidebar__post-single {
  margin-top: 30px;
}

.sidebar__post-single > img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 90px;
}

.sidebar__tagscloud {
  margin-left: -11px;
  margin-top: -15px;
}

.sidebar__tagscloud a {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #e5e5e5;
  color: #848484;
  padding: 6px 19px;
  font-size: 14px;
  font-family: var(--heading-font);
  margin-left: 11px;
  margin-top: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar__tagscloud a:hover {
  background-color: var(--thm-base-color);
  border-color: var(--thm-base-color);
  color: #fff;
}

/*
* 12. service styles
*/
.service-one {
  background-color: var(--thm-gray-color);
  background-image: url(../images/background/service-bg-1-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: -295px;
  padding-top: 355px;
  padding-bottom: 90px;
}

.service-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  position: relative;
  text-align: center;
  padding: 74px 0;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 60px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-one__single::before {
  background-color: var(--thm-primary-color);

  /* --thm-text-color */
}

.service-one__single:hover {
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.2);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.2);
}

.service-one__single:hover .service-one__link {
  opacity: 1;
  -webkit-transform: perspective(60px) translate(-50%, 50%) translatez(0px);
          transform: perspective(60px) translate(-50%, 50%) translatez(0px);
}

.service-one__single:hover .service-one__title {
  color: #fff;
}

.service-one__single:hover .service-one__icon img {
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.service-one__single:hover .service-one__icon img.normal-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 0);
          transform: translate(-50%, -50%) scale(1, 0);
}

.service-one__single:hover .service-one__icon img.hvr-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}

.service-one__icon {
  width: 70px;
  height: 70px;
  position: relative;
}

.service-one__icon > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.service-one__icon > img.normal-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}

.service-one__icon > img.hvr-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 0);
          transform: translate(-50%, -50%) scale(1, 0);
}

.service-one__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--thm-black-color);
  margin-top: 20px;
  margin-bottom: 25px;
}

.service-one__title a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-one__title a:hover {
  color: var(--thm-base-color);
}

.service-one__text {
  margin: 0;
}

.service-one__link {
  width: 60px;
  height: 60px;
  background-color: var(--thm-base-color);
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, transform .4s ease, background .4s ease;
  transition: opacity .4s ease, transform .4s ease, background .4s ease, -webkit-transform .4s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
  -webkit-transform: perspective(60px) translate(-50%, 50%) translatez(10px);
          transform: perspective(60px) translate(-50%, 50%) translatez(10px);
}

.service-one__link:hover {
  color: #fff;
  background-color: var(--thm-black-color);
}

.service-one__link i {
  color: inherit;
  font-size: 30px;
}

.service-one__home-two {
  margin-top: 0;
  padding-top: 110px;
  padding-bottom: 210px;
}

.service-one__home-three {
  padding: 0;
  background-image: none;
  background-color: transparent;
  position: relative;
  z-index: 100;
  margin-top: -115px;
}

.service-one__home-three .inner-container {
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
}

.service-one__home-three .service-one__single {
  margin-bottom: 0;
}

.service-three {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #f5f6fa;
}

.service-three__single {
  padding-left: 25px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.service-three__single::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  right: -25px;
  bottom: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 70px 0px rgba(26, 46, 85, 0.15);
          box-shadow: 0px 20px 70px 0px rgba(26, 46, 85, 0.15);
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.service-three__single:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.service-three__icon {
  position: relative;
}

.service-three__icon img {
  max-width: 60px;
}

.service-three__content {
  position: relative;
  padding-left: 30px;
}

.service-three__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 15px;
  color: var(--thm-black-color);
}

.service-three__title a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-three__title a:hover {
  color: var(--thm-base-color);
}

.service-three__text {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  color: var(--thm-text-color);
}

.service-three__link {
  display: inline-block;
  vertical-align: middle;
  color: var(--thm-base-color);
  font-size: 15px;
  font-family: var(--heading-font);
  margin-top: 15px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-three__link:hover {
  color: var(--thm-primary-color);
}

.services-details .testimonials-one {
  padding-top: 140px;
}

.services-details .testimonials-one .container hr.style-one {
  display: none;
}

.services-details__content .about-two__tab-title {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.services-details__content .about-two__tab-title-item {
  width: 100%;
}

.services-details__content .about-two__tab-title-item .about-two__tab-title-link {
  display: inline-block;
}

.services-details__content {
  background-color: #f0f1f5;
  padding-top: 150px;
  padding-bottom: 150px;
}

.services-details__content .block-title {
  margin-bottom: 0;
}

.services-details__content-info {
  background-color: #fff;
  padding: 0 50px;
  padding-top: 50px;
  padding-bottom: 45px;
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
}

.services-details__content-info-title {
  margin: 0;
  color: var(--thm-black-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-details__content-info-text {
  margin: 0;
  color: var(--thm-text-color);
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.services-details__sub-title {
  margin: 0;
  color: var(--thm-black-color);
  font-size: 24px;
  font-weight: 600;
}

.services-details__content-text {
  margin: 0;
  color: #848484;
  font-size: 15px;
  line-height: 26px;
}

.service-details__client-block {
  background-color: #fff;
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
}

.service-details__client-block [class*=col-] {
  padding: 17px;
}

.service-details__client-block [class*=col-] + [class*=col-] {
  border-left: 1px solid #e1e2e6;
}

.service-details__client-block [class*=col-] img {
  opacity: 0.2;
}

.service-details__client-block [class*=col-]:nth-child(2),
.service-details__client-block [class*=col-]:nth-child(3),
.service-details__client-block [class*=col-]:nth-child(1) {
  border-bottom: 1px solid #e1e2e6;
}

.service-details__client-block [class*=col-]:last-child {
  border-right: 1px solid #e1e2e6;
}

.services-details__image {
  position: relative;
}

.services-details__image::before {
  content: '';
  width: 138px;
  height: 403px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(40%) translateY(-20%);
          transform: translateX(40%) translateY(-20%);
  background-image: url(../images/resources/dot-pattern.png);
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0.2;
}

.service-one__bottom {
  margin-top: 25px;
}

/*
* 13. funfact styles
*/
.funfact-one {
  background-color: var(--thm-primary-color);
  padding: 102px 0;
  background-image: url(../images/background/funfact-bg-1-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
}

.funfact-one .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.funfact-one__single {
  text-align: center;
}

.funfact-one__title {
  margin: 0;
  font-size: 70px;
  color: var(--thm-base-color);
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1em;
}

.funfact-one__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1em;
  margin-top: 10px;
}



/*
* 17. brand styles
*/
.brand-one .container {
  padding-bottom: 50px;
}

.brand-one .container hr.style-one {
  margin-bottom: 50px;
}

.brand-one img {
  opacity: 0.2;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.brand-one img:hover {
  opacity: 1;
}

.brand-two {
  background-color: #f5f6fa;
  padding-top: 81.5px;
  padding-bottom: 81.5px;
}

.brand-two-title {
  background-color: #f5f6fa;
  padding-top: 81.5px;
  padding-bottom: 31.5px;
}


.brand-two img {
  opacity: 0.3;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.brand-two img:hover {
  opacity: 1;
}

/*
* 18. about styles
*/
.about-one,
.about-two {
  padding-top: 140px;
  padding-bottom: 150px;
}

.about-one .block-title,
.about-two .block-title {
  margin-bottom: 40px;
}

.about-one__content {
  padding-right: 32px;
}

.about-one__tab-title {
  border: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 30px;
}

.about-one__tab-title .about-one__tab-title-item {
  margin: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.about-one__tab-title .about-one__tab-title-link {
  border: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #e5e5e5;
  border-radius: 0;
  padding: 16px 38px;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--heading-font);
  color: var(--thm-black-color);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.about-one__tab-title .about-one__tab-title-link:hover, .about-one__tab-title .about-one__tab-title-link.active {
  color: var(--thm-base-color);
  border-color: var(--thm-base-color);
}

.about-two__text,
.about-one__text {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  color: var(--thm-text-color);
}

.about-two__list,
.about-one__list {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-two__list-item,
.about-one__list-item {
  color: var(--thm-text-color);
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.about-two__list-item + .about-two__list-item,
.about-one__list-item + .about-two__list-item, .about-two__list-item +
.about-one__list-item,
.about-one__list-item +
.about-one__list-item {
  margin-top: 5px;
}

.about-two__list-item:before,
.about-one__list-item:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dcdde0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-two .block-title__title + .block-title__text {
  margin-top: 40px;
}

.about-two__content {
  padding-right: 37px;
}

.about-two__tab-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-two__tab-title {
  width: 170px;
}

.about-two__tab-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 170px);
          flex: 0 0 calc(100% - 170px);
  border-left: 1px solid #e5e5e5;
  padding-left: 50px;
}

.about-two__tab-title {
  border: none;
  margin: 0;
}

.about-two__tab-title .about-two__tab-title-item {
  margin: 0;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}

.about-two__tab-title .about-two__tab-title-link {
  border: 0;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--heading-font);
  color: var(--thm-black-color);
  padding-left: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
}

.about-two__tab-title .about-two__tab-title-link:before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--thm-base-color);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scale(1, 0);
          transform: translateY(-50%) scale(1, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.about-two__tab-title .about-two__tab-title-link:hover, 
.about-two__tab-title .about-two__tab-title-link.active,
.about-two__tab-title .about-two__tab-title-link.active2 {
  color: var(--thm-base-color);
  border-color: var(--thm-base-color);
  padding-left: 35px;
  cursor: pointer;
}

.about-two__tab-title .about-two__tab-title-link:hover::before, .about-two__tab-title .about-two__tab-title-link.active::before {
  -webkit-transform: translateY(-50%) scale(1, 1);
          transform: translateY(-50%) scale(1, 1);
}

.about-three {
  background-color: #f0f1f5;
  background-image: url(../images/resources/about-3-map.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.about-three .block-title__title + .block-title__text {
  margin-top: 25px;
}

.about-three .block-title {
  margin-bottom: 60px;
}

.about-three__img {
  float: right;
}

.about-three__content {
  width: 100%;
  max-width: 695px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1550px) {
  .about-three__content {
    padding-left: 80px;
    padding-right: 70px;
  }
}

.about-three__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-three__single + .about-three__single {
  margin-top: 40px;
}

.about-three__icon {
  width: 100px;
}

.about-three__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--thm-black-color);
  margin: 0;
  margin-bottom: 15px;
  margin-top: -5px;
}

.about-three__para {
  font-size: 15px;
  line-height: 26px;
  color: #848484;
  margin: 0;
}

.about-four {
  padding-top: 180px;
  padding-bottom: 190px;
}

.about-four .about-one__list {
  margin-bottom: 44px;
}

.about-four .block-title {
  margin-bottom: 35px;
}

.about-four__content {
  padding-left: 37px;
}

.about-four__image {
  position: relative;
  display: inline-block;
  margin-left: 40px;
}

.about-four__image > img {
  max-width: 100%;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(14, 40, 41, 0.25);
          box-shadow: 0px 20px 40px 0px rgba(14, 40, 41, 0.25);
}

.about-four__image-content {
  position: absolute;
  right: -24.5%;
  top: 30%;
  background-color: var(--thm-primary-color);
  text-align: center;
  z-index: 100;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  font-family: var(--heading-font);
  padding: 49px 35px;
}

.about-four__image-content span {
  color: var(--thm-base-color);
  font-size: 50px;
  font-weight: 700;
  line-height: 1em;
  display: inline-block;
  margin-top: -8px;
}

.about-four__about-page {
  background-color: #F5F6FA;
}

/*
* 19. image styles
*/
.image-one {
  margin-top: 125px;
  margin-left: 30px;
  position: relative;
  display: inline-block;
}

.image-one::before {
  content: '';
  width: 63%;
  height: 96%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(40%) translateY(-20%);
          transform: translateX(40%) translateY(-20%);
  background-image: url(../images/resources/dot-pattern.png);
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0.2;
}

.image-one > img {
  max-width: 100%;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(14, 40, 41, 0.25);
          box-shadow: 0px 20px 40px 0px rgba(14, 40, 41, 0.25);
}

.image-one__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 90px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 90px;
  right: -45px;
  background-color: var(--thm-base-color);
  border-radius: 50%;
  -webkit-animation: inctechPulse 3s infinite;
          animation: inctechPulse 3s infinite;
}

.image-one__link i {
  color: #fff;
  font-size: 15px;
}



