/********** Template CSS **********/
:root {
  --primary: #28ba95;
  --secondary: #9B9B9B;
  --light: #F5F5F5;
  --dark: #161616;
  --red: #ed1c24;
}

body {
color: #212529;
}

section {
padding: 3rem 0;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.float{
position:fixed;
width:60px;
height:60px;
bottom:100px;
right:45px;
background-color:#25d366;
color:#FFF;
border-radius:50px;
text-align:center;
  font-size:30px;
box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.float:hover {
  color: #ffffff;
}

.my-float{
margin-top:16px;
}

ul {
    margin: 0px;
    padding: 0px;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
/*
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;
}
@media (min-width: 1200px) {
  .header-navigation .main-navigation {
    display: block !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: 25px 0;
  display: inline-block;
  vertical-align: middle;
  /* Second Level Menu */
  /* Thrid Level Menu */
}
.header-navigation ul.navigation-box > li + li {
  margin-left: 75px;
}
.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: 500;
  font-size: 17px;
  color: #182345;
  padding: 0;
  transition: all .4s ease;
  position: relative;
}
.header-navigation ul.navigation-box > li.current > a, .header-navigation ul.navigation-box > li:hover > a {
  color: #fff;
}
.header-navigation ul.navigation-box > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 220px;
  padding: 0px 0px;
  text-align: left;
  list-style: none;
  background-color: #222222;
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0px;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li > .sub-menu {
    display: block !important;
  }
}
.header-navigation ul.navigation-box > li > .sub-menu.right-align {
  left: auto;
  right: 0;
}
.header-navigation ul.navigation-box > li > .sub-menu.center-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-navigation ul.navigation-box > li > .sub-menu > li {
  display: block;
  position: relative;
  transition: all .4s ease;
}
.header-navigation ul.navigation-box > li > .sub-menu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.header-navigation ul.navigation-box > li > .sub-menu > li > a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  display: block;
  line-height: 26px;
  white-space: nowrap;
  position: relative;
  transition: all .4s ease;
}
.header-navigation ul.navigation-box > li > .sub-menu > li:hover > a {
  color: #fff;
  background: var(--primary);
}
.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 > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header-navigation ul.navigation-box > li > ul > li {
  /* no more nested showen */
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu {
  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: #222222;
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0px;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li > ul > li > .sub-menu {
    display: block !important;
  }
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu.right-align {
  left: auto;
  right: 100%;
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu.center-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li {
  display: block;
  position: relative;
  transition: all .4s ease;
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li > a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  display: block;
  line-height: 26px;
  white-space: nowrap;
  position: relative;
  transition: all .4s ease;
}
.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li:hover > a {
  color: #fff;
  background: var(--primary);
}
.header-navigation ul.navigation-box > li > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header-navigation ul.navigation-box > li > ul > li ul {
  display: none;
}

.main-header .top-header {
  background-color: #161827;
}
.main-header .top-header .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-left: 275px;
}
.main-header .top-header p {
  margin: 0;
}
.main-header .top-header .right-info i,
.main-header .top-header .left-info i {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  color: var(--primary);
  margin-right: 15px;
}
.main-header .top-header .left-info p {
  padding: 12px 0;
}
.main-header .top-header .left-info a {
  color: #B2B3BA;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  transition: all .4s ease;
}
.main-header .top-header .left-info a:hover {
  color: var(--primary);
}
.main-header .top-header .right-info a {
  color: #fff;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all .4s ease;
}
.main-header .top-header .right-info a:hover {
  color: var(--primary);
}
.main-header .top-header .info-block {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-header .top-header .info-block li {
  display: inline-block;
  vertical-align: middle;
}
.main-header .top-header .info-block li + li {
  margin-left: 23px;
}

@media (max-width:767px) {
    .main-header .top-header .right-info a,
    .main-header .top-header .left-info a {
        font-size: 12px;
    }
    
    .main-header .top-header .right-info i, .main-header .top-header .left-info i {
        font-size: 16px;
        margin-right: 5px;
    }
}

@media (max-width:500px) {

}

@media (max-width:420px) {

    .main-header .top-header .right-info i, .main-header .top-header .left-info i {
        display:none;
    }
}

.main-header .top-header .info-block li a.cart-btn {
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  display: inline-block;
  padding: 11.25px 19.5px;
  transition: all .4s ease;
}
.main-header .top-header .info-block li a.cart-btn:hover {
  background-color: #fff;
}
.main-header .top-header .info-block li a.cart-btn:hover i,
.main-header .top-header .info-block li a.cart-btn:hover span {
  color: var(--primary);
}
.main-header .top-header .info-block li a.cart-btn i,
.main-header .top-header .info-block li a.cart-btn span {
  display: inline-block;
  vertical-align: middle;
}
.main-header .top-header .info-block li a.cart-btn i {
  color: #fff;
  font-size: 20px;
  margin-right: 7px;
}
.main-header .header-navigation {
  background: #fff;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  z-index: 99;
}
.main-header .header-navigation .navbar-brand {
  background-color: #ffffff;
  display: block;
  padding: 41px 46px;
  position: relative;
  top: -16px;
}
.main-header .header-navigation .navbar-brand .main-logo,
.main-header .header-navigation .navbar-brand .stricky-logo  {
  display: block;
  width: 128px;
}
.main-header .header-navigation .navbar-brand .stricky-logo {
  display: none;
}
@media(max-width: 1199px){
  .main-header .top-header .container {
    padding: 0 15px;
  }
  .logo-box {
    width: 100%;
    float: none;
    margin: 0 !important;
  }
  .header-navigation .container .logo-box {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    padding-right: 0;
    width: auto;
  }

  .header-navigation .logo-box .navbar-brand {
    float: left;
    padding: 20px 0;
    top: 0;
    margin-top: -50px;
}

}
@media(max-width: 991px) {
  .main-header .header-navigation .container {
    /* display: flex; */
  }
  .main-header .header-navigation .container .logo-box .navbar-brand {
    margin: 0;
    padding: 15px 15px;
    background-color: transparent;
  }

  .main-header .header-navigation .container .logo-box .navbar-brand .main-logo {
      display: none;
  }

  .main-header .header-navigation .container .logo-box .navbar-brand .stricky-logo {
      display: block;
  }
  .main-header .header-navigation .navbar-brand .stricky-logo {
    display: block;
    width: 60px;
  }
}


.main-header .header-navigation .main-navigation {
  float: right;
  text-align: right;
}
.main-header .header-navigation ul.navigation-box > li.current > a,
.main-header .header-navigation ul.navigation-box > li:hover > a {
  color: var(--primary);
}
.main-header .header-navigation ul.navigation-box > li {
  padding: 40px 0;
}
.main-header .header-navigation ul.navigation-box > li + li {
  margin-left: 35px;
}
.main-header .header-navigation .right-side-box .social a {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EEEFF5;
  color: var(--primary);
  line-height: 52px;
  font-size: 14px;
  text-align: center;
  transition: all .4s ease;
}
.main-header .header-navigation .right-side-box .social a:hover {
  color: #fff;
  background: var(--primary);
}
.main-header .header-navigation .right-side-box .social a + a {
  margin-left: 15px;
}
.main-header .header-navigation.stricky-fixed .navbar-brand {
  background-color: transparent;
  padding: 0px 0px;
  position: relative;
  top: 0px;
}
.main-header .header-navigation.stricky-fixed .navbar-brand .main-logo {
  display: none;
}
.main-header .header-navigation.stricky-fixed .navbar-brand .stricky-logo {
  display: block;
}
.main-header .header-navigation.stricky-fixed ul.navigation-box > li {
  padding: 25px 0;
}

.header-navigation.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 991;
  border-bottom: 0;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header.style-two .menu-area .mobile-nav-toggler .icon-bar{
  background-color: #222;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}

/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: all 900ms ease;
}

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

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

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

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

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

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

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

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navbar-nav{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navbar-nav li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

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

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

.mobile-menu .navbar-nav li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navbar-nav li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navbar-nav li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navbar-nav li.current > a:before{
  height:100%;
}

.mobile-menu .navbar-nav li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navbar-nav li.dropdown .dropdown-btn.open{
  color: #ffffff;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navbar-nav li > ul,
.mobile-menu .navbar-nav li > ul > li > ul,
.mobile-menu .navbar-nav > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

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

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  
}

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

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  
}

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

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



@media only screen and (max-width: 1200px) {
  .menu-area .mobile-nav-toggler {
      display: none;
      padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .menu-area .mobile-nav-toggler {
    display: block;
  }
  .main-header .header-navigation .main-navigation {
    display: none;
  }
  .main-header .header-navigation .menu-area {
    height: 95px;
    display: flex;
    justify-content: end;
    align-items: center;
  }
}

/*** Header ***/
.header-carousel .carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
      position: relative;
      min-height: 500px;
  }
  
  .header-carousel .owl-carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
      font-size: 14px !important;
      font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
      font-size: 30px;
      font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 45px;
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 15px;
  transition: .5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #FFFFFF;
  border-radius: 5px;
}

.header-carousel .owl-dot.active {
  background: var(--red);
  border-color: var(--red);
}

.page-header {
  background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.html) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}


/*** Facts Section ***/
.facts-section hr {
background-color: #28ba95;
}

.facts-section hr + span {
color: #ffffff;
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
      max-width: 100% !important;
  }

  .about-text  {
      padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .about-text  {
      padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .about-text  {
      padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Service ***/
.services {
padding-bottom: 120px;
}
.service-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
  border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  background: var(--red);
  border-radius: 38px;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
}

.service-item:hover .btn {
  width: 140px;
}


.services-08 {
padding-bottom: 100px;
}
.services-08-item {
padding: 30px 15px;
}
.services-08 .services-08-item--wrapper{
 border-bottom: 2px solid #f5f5f5;
}

.services-08 .services-08-item--wrapper:nth-child(2){
border-bottom: none;
}
.services-08-item--wrapper > div{
position: relative;
border-right: 2px solid #f5f5f5;
}
.services-08-item--wrapper > div:nth-child(2),.services-08-item--wrapper > div:nth-child(3),.services-08-item--wrapper > div:nth-child(4),.services-08-item--wrapper > div:nth-child(5),.services-08-item--wrapper > div:nth-child(6){
border-right: 1px solid #cccccc;
background: #fff;
}
.services-08-item--wrapper > div:nth-child(4){
 border-left: 1px solid #cccccc;
}
.services-08-item--wrapper > div:nth-child(1){
 border-right: 1px solid #cccccc;
}
.services-08-item--wrapper > div:nth-child(2){
border-top: 1px solid #cccccc;
}
.services-08-item--wrapper > div:nth-child(3){
border-top: 1px solid #cccccc;
 border-left: none;
}
.services-08-item--wrapper > div:nth-child(4),.services-08-item--wrapper > div:nth-child(5),.services-08-item--wrapper > div:nth-child(6){
border-top: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
}
.services-08-thumb {
margin-bottom: 30px;
}
.services-08-content h3{
margin-bottom: 20px;
font-size: 24px;
}
.services-08-content,.services-08-thumb {
position: relative;
z-index: 1;
}
.services-08-content .readmore {
padding: 8px 13px;
border: 1px solid #232323;
border-radius: 5px;
display: inline-block;
font-size: 22px;
margin-top: 10px;
}
.services-08-item:hover .readmore{
 border: 1px solid #ff1749;
background: #ff1749;
color: #fff;
}
.services-08-item:hover h3 {
color: #fff;
}
.services-08-item:hover p {
color: #b9c3cb;
}
.services-08-item:before {
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
-webkit-transition: .3s;
-o-transition: .3s;
transition: .3s;
z-index: 1;
}
.services-08-item:hover::before {
width: calc(100% + 20px);
height: calc(100% + 20px);
top: -10px;
left: -10px;
background-color: #222629;
-webkit-box-shadow: 0px 30px 40px 0px rgba(32, 85, 125, 0.06);
box-shadow: 0px 30px 40px 0px rgba(32, 85, 125, 0.06);
}

.section-title h2 {
font-size: 65px;
padding-bottom: 0;
padding-right: 30px;
position: relative;
}

/*** mission styles ***/
.mission-style {
position: relative;
z-index: 10;
}
.mission-style .container {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -20%);
        transform: translate(-50%, -20%);
z-index: 99;
}
.mission-style .inner-container {
background-color: #222;
background-image: url(../images/resources/process-bg-1-1.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
box-shadow: 0px 0px 25px 0px rgba(13, 29, 13, 0.1);
padding: 67px 50px;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
        justify-content: space-between;
}

.mission-style .single-mission .count-block {
font-size: 26px;
font-weight: 500;
color: var(--primary);
}
.mission-style .single-mission .count-block:before {
content: '';
display: inline-block;
vertical-align: middle;
width: 30px;
height: 2px;
background-color: var(--primary);
}
.mission-style .single-mission h3,
.mission-style .single-mission p {
margin: 0;
}

.mission-style .single-mission h3 {
color: #fff;
font-size: 22px;
font-weight: 500;
margin-bottom: 15px;
margin-top: 20px;
}
.mission-style .single-mission p {
color: #fff;
font-size: 15px;
line-height: 26px;
opacity: 0.7;
}

.mission-style.home-page-two {
padding-bottom: 120px;
}
.mission-style.home-page-two .container {
position: relative;
top: 0%;
left: 0%;
-webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
}

/*** Fun Fact ***/
.fun-fact {
background: #000000 url(../images/background/fun-fact-bg-1-1.html) center center no-repeat;
background-size: cover;
background-attachment: fixed;
position: relative;
padding: 6rem 0;
}
.fun-fact {
padding-top: 200px;
}
.fun-fact:before {
position: absolute;
content: '';
width: 100%;
height: 100%;
background-color: #000;
opacity: .75;
top: 0;
left: 0;
}
.fun-fact .fun-fact-block-wrapper {
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
        justify-content: space-between;
position: relative;
}
.fun-fact .single-fun-fact .icon-block, .fun-fact .single-fun-fact .text-block {
display: table-cell;
vertical-align: top;
}
.fun-fact .single-fun-fact .icon-block i {
color: var(--primary);
font-size: 48px;
}
.fun-fact .single-fun-fact .text-block {
padding-left: 30px;
}
.fun-fact .single-fun-fact .text-block h3, .fun-fact .single-fun-fact .text-block p {
margin: 0;
}
.fun-fact .single-fun-fact .text-block h3 {
color: #fff;
font-size: 50px;
font-weight: 600;
line-height: 1em;
margin-bottom: 17px;
}
.fun-fact .single-fun-fact .text-block p {
font-size: 15px;
color: #B2B3BA;
line-height: 1em;
}


/*** Product ***/
.slick-slide img {
width: 100%;
}
.slick-initialized .slick-slide {
padding-left: calc(var(--bs-gutter-x) / 2);
padding-right: calc(var(--bs-gutter-x) / 2);
}
.product-type-one .slick-arrow,.product-type-two .slick-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -70px;
border: none;
background: none;
padding: 0;
color: #f6fbff;
z-index: 1;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
cursor: pointer;
width: 60px;
height: 60px;
text-align: center;
color: #fff;
background: var(--primary);
font-size: 24px;
 box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.07);
 border-radius: 50%;
}

.product-type-one .slick-prev {

}

.product-type-one .slick-arrow.slick-next,.product-type-two .slick-arrow.slick-next {
 right: -70px;
 left: auto;
}

.product-type-one .slick-arrow:hover,.product-type-two .slick-arrow:hover {
 background: var(--red);
 color: #fff;
}

.team-info {
padding: 30px 0px;
transition: .3s;
position: relative;
overflow: hidden;
border: 1px solid #efefef;
}

.team-info .text {
padding-left: 30px;
border-right: 5px solid var(--primary);
}

.team-info h4 {
font-size: 24px;
margin-bottom: 5px;
transition: .3s;
}

.team-info span {
font-size: 16px;
transition: .3s;
color: var(--primary);
font-weight: 600;
}

/*** work process styles ***/
.working-process {
background-color: #EBF0EB;
padding: 120px 0;
}
.working-process .title-block {
margin-bottom: 40px;
}
.working-process .title-block .tag-line {
display: inline-block;
vertical-align: middle;
color: var(--primary);
font-size: 20px;
font-weight: 500;
line-height: 1em;
}
.working-process .title-block .tag-line:before {
content: '';
display: inline-block;
vertical-align: middle;
width: 50px;
height: 2px;
background-color: var(--primary);
}
.working-process .title-block .tag-line::before {
margin-right: 20px;
}
.working-process .title-block h2 {
margin: 0;
color: #222222;
font-size: 42px;
line-height: 50px;
font-weight: 500;
margin-top: 10px;
}

.working-process-wrap {
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
        justify-content: space-between;
}

.working-process-wrap .single-working-process {
  padding-right: 20px;
  width:100%;
}

.working-process-wrap .single-working-process #more{
display: none;
}

.single-working-process .count-block {
display: inline-block;
vertical-align: middle;
width: 60px;
height: 60px;
border-radius: 50%;
text-align: center;
line-height: 60px;
color: var(--primary);
font-size: 22px;
font-weight: 500;
background-color: #fff;
margin-bottom: 20px;
}
.single-working-process h3 {
margin: 0;
color: #222222;
font-weight: 500;
font-size: 22px;
line-height: 24px;
margin-bottom: 20px;
}
.single-working-process p {
margin: 0;
font-size: 15px;
line-height: 26px;
}

.myBtn {
  background: none;
  border: none;
  color: var(--primary);
  padding: 0;
}

.myBtn > i {
  margin-left: 3px;
  vertical-align: middle;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
      max-width: 100% !important;
  }

  .feature-text  {
      padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text  {
      padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text  {
      padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--red);
  border-color: var(--red);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
  transition: .5s;
}

.portfolio-inner:hover img {
  transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
  bottom: 0;
  opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
      max-width: 100% !important;
  }

  .quote-text  {
      padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text  {
      padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text  {
      padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
  transition: .5s;
  width:100%;
  height: 300px;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 22, 22, .7);
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-social {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  opacity: 0;
}

.team-item:hover .team-social .btn {
  opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
  display: flex !important;
  flex-direction: column-reverse;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel .owl-dots {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--red);
  background: #FFFFFF;
  border-radius: 40px;
  transition: .5s;
  opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
  border-radius: 60px;
  opacity: .4;
  transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
      max-width: 100% !important;
  }

  .contact-text  {
      padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text  {
      padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text  {
      padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}

.container.contact .contact-text .info {
position: relative;
margin-top: 20px;
}

.container.contact .contact-text .info li {
color: #212529;
position: relative;
line-height: 1.6em;
font-size: 20px;
margin-bottom: 20px;
}

.container.contact .contact-text .info li strong {
color: #01050c;
display: block;
margin-bottom: 20px;
}



/*** Footer ***/
.main-footer {
border-top: 1px solid #efefef;
padding: 100px 0;
background-image: url(../images/resources/footer-bg.jpg);
background-repeat: no-repeat;
background-position: bottom right;
}
.widget-about > img {
margin-bottom: 15px;
width: 120px;
}
.widget-about > p  {
font-size: 16px;
line-height: 30px;
padding-right: 30px;
margin-bottom: 30px;
}
.widget-about > p:last-child {
margin-bottom: -10px;
}

.widget-title {
color: #01050c;
font-size: 24px;
position: relative;
padding-bottom: 14px;
margin-bottom: 15px;
margin-top: 17px
}
.widget-title:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 30px;
height: 2px;
}
.widget-services ul {
padding-right: 70px;
padding-left: 0;
}
.widget-services ul li {
display: table;
margin-bottom: 19px;
}
.widget-services ul li i {
margin-right: 15px;
width: 20px;
position: relative;
top: 1px;
text-align: center;
display: inline-block;
}
.widget-services ul li span {
display: table-cell;
width: 100%;
font-size: 16px;
line-height: 24px;
}

.socio-links li {
display: inline-block;
margin-right: 6px;
}
.socio-links li:last-child {
margin-right: 0;
}
.socio-links li a {
display: inline-block;
color: #222222;
font-size: 14px;
width: 40px;
height: 40px;
line-height: 40px;
border:1px solid var(--primary);
text-align: center;
}
.widget-social .socio-links li {
margin-right: 5px;
}
.widget-social .socio-links li:last-child {
margin-right: 0;
}
.widget-social .socio-links li a {
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
color: #222;
}
.widget-social .socio-links li a:hover {
background-color: var(--primary);
color: #fff;
}


/*** Service Block ***/

.services-section {
	position: relative;
	padding: 110px 0px 80px;
}

.service-block {
	position: relative;
	margin-top: 30px;
}

.service-block .inner-box {
	position: relative;
	padding: 50px 50px 45px;
	background-color: #ffffff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.service-block .inner-box h4 a {
	color: var(--heading-color);
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.service-block .inner-box:hover h4 a {
	color: var(--qtec-base);
}

.service-block .inner-box .text {
  opacity: 0.80;
	color: #00040b;
	font-size: 18px;
	margin-top: 15px;
}

.service-block .inner-box .arrow {
	position: relative;
	width: 64px;
	height: 64px;
	text-align: center;
	display: inline-block;
	font-size: 24px;
	color: #ffffff;
	line-height: 64px;
	border-radius: 50px;
	margin-top: 30px;
	background-color: #232323;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.service-block .inner-box:hover .arrow {
	background-color: #ff1749;
}


/*** Core Values ***/

.nav-pills-custom .nav-link {
  color: #1C1C1C;
  background: #ffffff;
  position: relative;
}

.nav-pills-custom .nav-link.active {
  color: #ffffff;
  background: var(--primary);
}


/* Add indicator arrow for the active tab */
@media only screen and (min-width: 992px) {
  .nav-pills-custom .nav-link::before {
      content: '';
      display: block;
      border-top: 8px solid transparent;
      border-left: 10px solid var(--primary);
      border-bottom: 8px solid transparent;
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      opacity: 0;
  }
}

.nav-pills-custom .nav-link.active::before {
  opacity: 1;
}


/*
pricing styles
*/

.pricing-style-one .title-block {
margin-bottom: 40px;
}
.pricing-style-one .title-block .tag-line {
display: inline-block;
vertical-align: middle;
color: var(--primary);
font-size: 20px;
font-weight: 500;
line-height: 1em;
}
.pricing-style-one .title-block .tag-line:before, .pricing-style-one .title-block .tag-line:after {
content: '';
display: inline-block;
vertical-align: middle;
width: 50px;
height: 2px;
background-color: var(--primary);
}
.pricing-style-one .title-block .tag-line::before {
margin-right: 20px;
}
.pricing-style-one .title-block .tag-line::after {
margin-left: 20px;
}
.pricing-style-one .title-block h2 {
margin: 0;
color: #222222;
font-size: 42px;
line-height: 50px;
font-weight: 500;
margin-top: 10px;
}
.pricing-style-one .title-block h2 + p {
margin-top: 22px;
}
.pricing-style-one .title-block p {
margin: 0;
color: #B2B3BA;
font-size: 17px;
line-height: 26px;
}
.pricing-style-one.pricing-page .single-pricing-style-one.popular-pricing .top-block {
background-color: var(--primary);
}
.pricing-style-one.pricing-page .single-pricing-style-one.popular-pricing .top-block:before {
background-image: url(../images/resources/price-feature-btn-2.html);
}

.single-pricing-style-one.popular-pricing .top-block {
position: relative;
}
.single-pricing-style-one.popular-pricing .top-block:before {
content: '';
width: 39px;
height: 52px;
background-image: url(../images/resources/price-feature-btn.html);
background-repeat: no-repeat;
background-position: 0 0;
position: absolute;
top: 0;
right: 30px;
}
.single-pricing-style-one ul,
.single-pricing-style-one h3,
.single-pricing-style-one p {
margin: 0;
padding: 0;
list-style: none;
}
.single-pricing-style-one .top-block {
background-color: #EBF0EB;
padding: 65px 0;
}
.single-pricing-style-one .top-block p {
color: #403b3b;
font-size: 15px;
line-height: 1em;
}
.single-pricing-style-one .top-block h3 {
color: #222222;
font-size: 30px;
font-weight: 500;
margin-top: 5px;
margin-bottom: 5px;
}
.single-pricing-style-one .top-block span {
display: inline-block;
vertical-align: middle;
font-size: 24px;
color: #403b3b;
font-weight: 500;
line-height: 1em;
}
.single-pricing-style-one .feature-list {
display: inline-block;
vertical-align: middle;
}
.single-pricing-style-one .feature-list li {
min-width: 250px;
width: 100%;
color: #403b3b;
font-size: 15px;
line-height: 49px;
}
.single-pricing-style-one .feature-list li i {
color: #403b3b;
font-size: 12px;
margin-right: 7px;
}
.single-pricing-style-one .feature-list li + li {
border-top: 1px solid #e5e5e5;
}
.single-pricing-style-one .bottom-block {
border: 1px solid #F0F0F0;
padding-top: 40px;
padding-bottom: 60px;
}

/*
Product-Categories
*/

.category-wrap {
padding-bottom: 5rem;
}

.category-wrap .card-wrapper .card-list:not(:last-child) {
margin-bottom: 24px;
}

.category-wrap .card-wrapper .card .card-box {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}

.category-wrap .card-wrapper .card .img-box {
height: 100%;
display: flex;
align-items: center;
padding: 12px 0 12px 15px;
}

.category-wrap .card-wrapper .card .img-wrapper {
width: 210px;
height: 110px;
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}

.category-wrap .card-wrapper .card .content-wrapper {
width: calc(100% - 210px);
color: #505050;
padding: 24px 24px 24px 20px;
overflow: hidden;
}

.category-wrap .card-wrapper .card .content-wrapper .title {
font-size: 20px;
font-weight: 600;
/* max-height: 27px; */
display: block;
display: -webkit-box;
max-width: 95%;
line-clamp: 1;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 0;
}

.category-wrap .card-wrapper .card .content-wrapper .description {
line-height: 24px;
font-size: 16px;
}

.category-wrap .card-wrapper .card .content-wrapper .description p {
display: block;
display: -webkit-box;
max-width: 95%;
line-height: 24px;
font-size: 16px;
line-clamp: 3;
-webkit-line-clamp: 3;
-moz-line-clamp: 3;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

/* Services */

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 25px;
}
.widget-title::after {
  content: "";
  height: 2px;
  width: 60px;
  background-color: var(--primary);
  display: inline-block;
  margin-bottom: 4px;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget {
        padding-top: 50px;
    }
}


.widget-item ul li {
  background-color: #f7f7f7;
  list-style: none;
  margin-bottom: 10px;
}
.widget-item ul li a {
  display: block;
  padding: 15px 30px;
  position: relative;
}
.widget-item ul li a::after {
  content: "\f178";
  position: absolute;
  top: 18px;
  right: 29px;
  font-family: "Font Awesome 5 Pro";
}
.widget-item ul li a span {
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.widget-item ul li a span i {
  color: var(--primary);
  font-size: 30px;
  padding-right: 20px;
}
.widget-item ul li:hover {
  background-color: var(--primary);
}
.widget-item ul li:hover a {
  color: #ffffff;
}
.widget-item ul li:hover span {
  color: #ffffff;
}
.widget-item ul li:hover span i {
  color: #ffffff;
}

@media (max-width: 767px) {
  .service-overveiw-area {
    margin-right: 0;
  }
}

.overview-details {
  padding: 45px 50px;
  border: 1px solid #eaeaea;
}
@media (max-width: 767px) {
  .overview-details {
    padding: 10px 30px;
  }
}
.overview-details p {
  padding-right: 2px;
  color: #777777;
}

.over-view-item {
  padding: 40px;
  border: 1px solid #f3f3f3;
  padding-right: 0;
  transition: 0.3s;
}
.over-view-item i {
  font-size: 60px;
  color: var(--tp-theme-1);
}
.over-view-item h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-top: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .over-view-item h5 {
    font-size: 17px;
  }
}
.over-view-item:hover {
  border-color: transparent;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.over-view-item:hover .over-veiw-counter::after {
  color: #ffffff;
  background-color: var(--primary);
}

.over-veiw-list h4 {
  font-size: 24px;
  padding-bottom: 25px;
}