@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;500;600;700&display=swap");
.header-wrap .header-top .header-top-left,
.header-wrap .header-top .header-top-right,
.mobile-bar-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header-wrap .header-top .header-top-left
 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header-wrap .header-top .header-top-right,
.mobile-bar-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

:root {
    --main-font-family: 'DM Sans', sans-serif;
	--primary-color: #df0e0e;
	--secondary-color: #0c4da2;
  --green-color: #008c44;
  --lightgreen-color: #E8FCF6;
  --darkgreen-color: #243d31;
    --gradient-color: linear-gradient(90deg, #D21163 0%, #D9230C 100%);
    --white-color: #ffffff;
    --black-color: #000;
    --paragraph-color: #656565;
    --font-size: 16px;
    --transition: .6s;
  }
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #000;
    text-transform: inherit;
    text-decoration: none;
}



body {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    font-family:'Spartan', sans-serif;
}
ul {
    padding: 0;
    margin: 0;
}
ul,
li {
    list-style: none;
}
p {
    font-size: 16px;
    line-height: 26px;
    color: #4c4c4c;
}
a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bg-white{
    background-color: var(--white-color);
}
.bg-secondary{
    background-color: var(--secondary-color) !important;
}

.page-wrapper {
    overflow-x: hidden !important;
    background-image: linear-gradient(-5deg,#f8f4f1 60%,#fefeff 98%);

}

/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 71px;
    background-color: #ffffff;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
  .cd-auto-hide-header::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-auto-hide-header.is-hidden {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  @media only screen and (min-width: 1024px) {
    .cd-auto-hide-header {
      height: 50px;
    }
  }
  @media only screen and (max-width: 767px) {
    .cd-auto-hide-header {
      height: auto;
    }
  }
  
  
  .cd-primary-nav {
    display: inline-block;
    width: 100%;
    /*height: 100%;*/
    padding-right: 5%;
    background-color: var(--green-color);
  }
  
  @media only screen and (min-width: 1024px) {
    .cd-primary-nav {
      /* vertically align its content */
      display: table;
    }
    
  }
  
  
  
  /* -------------------------------- 
  
  2. Auto-Hiding Navigation - with Sub Nav
  
  -------------------------------- */
  .cd-secondary-nav {
    position: relative;
    z-index: 1;
    clear: both;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
  
  
  
  
  
  
  @media only screen and (min-width: 1024px) {
    .cd-secondary-nav {
      /*height: 70px;*/
      padding: 10px 0;
      overflow: visible;
    }
  
  }
  
  /* -------------------------------- 
  
  3. Auto-Hiding Navigation - with Sub Nav + Hero Image
  
  -------------------------------- */
  .cd-secondary-nav.fixed {
    position: fixed;
    top: 60px;
  }
  .cd-secondary-nav.slide-up {
    -webkit-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  @media only screen and (min-width: 1024px) {
    .cd-secondary-nav.fixed {
      top: 80px;
      /* fixes a bug where nav and subnab move with a slight delay */
      box-shadow: 0 -6px 0 #25283D;
    }
    .cd-secondary-nav.slide-up {
      -webkit-transform: translateY(-80px);
          -ms-transform: translateY(-80px);
              transform: translateY(-80px);
    }
  }
  
  /* -------------------------------- 
  
  Main content
  
  -------------------------------- */
  .cd-main-content {
    /*padding: 60px 5% 2em;*/
    overflow: hidden;
  }
  
  
  
  
  @media only screen and (min-width: 1024px) {
    .cd-main-content {
      /*padding-top: 80px;*/
    }
  
  
    .cd-main-content p {
      
    }
  }
  


.body_overlay {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.body_overlay.open {
    visibility: visible;
    opacity: 1;
}




.header-wrap .header-top {
    background-color: var(--green-color);
    padding: 12px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.header-wrap .header-top .header-top-left p,
.header-wrap .header-top .header-top-left a {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    position: relative;
}
.header-wrap .header-top .header-top-left .header-contact {
    position: relative;
}
.header-wrap .header-top .header-top-left .header-contact:last-child {
    padding: 0 0 0 50px;
}
.header-wrap .header-top .header-top-left .header-contact:after {
    position: absolute;
    top: 3px;
    left: 25px;
    content: "";
    width: 1px;
    height: 20px;
    background-color: #344e6a;
    background-color: #fff;
}
.header-wrap .header-top .header-top-left .header-contact:nth-child(2):after {
    display: none;
}
.header-wrap .header-top .header-top-left .header-contact p{
  font-size: 12px;
}
.header-wrap .header-top .header-top-left .header-contact p,
.header-wrap .header-top .header-top-left .header-contact a {
    padding-left: 28px;
}
.header-wrap .header-top .header-top-left .header-contact p i {
    top: 3px;
}
.header-wrap .header-top .header-top-left .header-contact i {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color2);
    line-height: 1;
    font-size: 18px;
}







.header-wrap .header-bottom {
    padding: 10px 0;
    background-color: #f3f3f4;
}
.header-wrap .header-bottom .logo img {
    max-width: 400px;
}













@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .main-menu-wrap.style1 #menu > ul > li {
        margin: 0 5px !important;
    }

}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu-wrap.style1 #menu > ul > li.has-children > a::before {
        top: 23px !important;
    }
    
    .header-wrap .main-menu-wrap.style1 #menu {
        margin-left: 25px;
    }
    .header-wrap .main-menu-wrap.style1 #menu ul li a {
        padding: 15px 12px 14px;
        font-size: 13px;
    }
    .header-wrap .main-menu-wrap.style1 #menu ul li.has-children .sub-menu a {
        font-size: 13px;
    }
    .main-menu-wrap.style1 #menu > ul > li {
        margin: 0 !important;
    }
   
   
    .header-wrap .header-top .header-top-left p,
    .header-wrap .header-top .header-top-left a {
        font-size: 12px;
    }
   
}


@media only screen and (min-width: 992px) {
  
   
    .main-menu-wrap.style1 #menu ul li {
        display: inline-block;
        position: relative;
    }
    .main-menu-wrap.style1 #menu ul li a {
        padding: 15px;
        
        font-size: 15px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        display: inline-block;
    }
    .main-menu-wrap.style1 #menu ul li.has-children .sub-menu {
        position: absolute;
        top: 60px;
        left: -6px;
        min-width: 220px;
        border-radius: 8px;
        background: var(--white-color) !important;
        visibility: hidden;
        opacity: 0;
        -webkit-box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
        box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
        -webkit-transition: 0.3s;
        transition: 0.3s;
        z-index: 10;
        display: block !important;
    }
    .main-menu-wrap.style1 #menu ul li.has-children .sub-menu li {
        margin: 0;
        display: block;
        text-align: left;
    }
    .main-menu-wrap.style1 #menu ul li.has-children .sub-menu li a {
        font-size: 14px;
        line-height: 21px;
        margin: 0;
        display: block;
        color: #201d1e !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 15px 22px 13px;
        transition: all .3s ease-in-out
       
    }
    .main-menu-wrap.style1 #menu ul li.has-children .sub-menu li:hover a {
      padding-left: 32px;
      
      
    }
    .main-menu-wrap.style1 #menu ul li.has-children .sub-menu li a::before {
      content: "//";
      font-weight: bold;
      position: absolute;
      left: 15px;
      top: 15px;
      color: var(--secondary-color);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: -1
  }
  .main-menu-wrap.style1 #menu ul li.has-children .sub-menu li:hover a::before {
    opacity: 1;
    visibility: visible
}
    .main-menu-wrap.style1 #menu ul li.has-children .sub-menu li:last-child > a {
        border-bottom: none;
    }
    .main-menu-wrap.style1 #menu ul li.has-children:hover > .sub-menu {
        top: 70px;
        visibility: visible;
        opacity: 1;
    }
    .main-menu-wrap.style1 #menu > ul > li {
        margin: 0 5px;
    }
    .main-menu-wrap.style1 #menu > ul > li > a {
        position: relative;
        font-weight: 500;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .main-menu-wrap.style1 #menu > ul > li > a.active,
    .main-menu-wrap.style1 #menu > ul > li > a:hover {
        color: var(--main-color2);
    }
    .main-menu-wrap.style1 #menu > ul > li.has-children > a {
        position: relative;
    }
    .main-menu-wrap.style1 #menu > ul > li.has-children > a:before {
        position: absolute;
        top: 24px;
        right: 0;
        content: "";
        width: 6px;
        height: 6px;
        border-width: 0 0 1px 1px;
        border-style: solid;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .main-menu-wrap.style1 #menu > ul > li.has-children > .sub-menu > .has-children > a {
        position: relative;
    }
    .main-menu-wrap.style1 #menu > ul > li.has-children > .sub-menu > .has-children > a:after {
        position: absolute;
        top: 22px;
        right: 15px;
        content: "";
        width: 6px;
        height: 6px;
        border-width: 0 0 1px 1px;
        border-style: solid;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .main-menu-wrap.style1 #menu > ul > li.has-children > .sub-menu > .has-children > a:hover:after {
        border-color: var(--main-color2);
    }
    .main-menu-wrap.style1 #menu > ul > .has-children {
        position: relative;
    }
    .main-menu-wrap.style1 #menu ul > .has-children > .sub-menu > .has-children > .sub-menu {
        left: 100%;
        top: 0;
    }
    .menu-expand i {
        display: none;
    }
    .header-wrap.style1 #menu ul li.has-children .sub-menu {
        background: var(--main-color);
    }
    .header-wrap.style1 #menu ul li.has-children .sub-menu li a {
        color: #fff;
    }
    .header-wrap.style1 #menu ul li.has-children .sub-menu li a.active,
    
    .header-wrap.style1 #menu ul li.has-children .sub-menu li a:hover
     {
        background-color: var(--main-color2);
        border-color: rgba(255, 255, 255, 0.35);
        
        
    }
    .header-wrap.style1 #menu > ul > li.has-children > .sub-menu > .has-children > a:hover::after
     {
        border-color: #fff;
    }
}

@media only screen and (max-width: 991px) {
   
    
    .header-wrap.style1 .header-top {
        background-color: var(--secondary-color);
    }
    
    .header-top .header-contact a,
    .header-top .close-header-top button i
    {
        color: #fff;
    }
    
    
    .header-wrap .header-top .header-top-left .header-contact i {
        top: 5px;
    }
    
   
    
    .main-menu {
        text-align: left;
    }

    .logo img {
        max-width: 120px;
    }
    .mobile-bar-wrap {
        text-align: right;
        position: relative;
        top: 4px;
    }
    .header-wrap .header-bottom {
        padding: 12px 0;
    }

    .header-wrap .header-top .header-top-right {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }
    .header-wrap .header-top .header-top-left p {
        margin: 0;
        padding: 0;
    }
    .header-wrap .header-top .header-top-left p,
    .header-wrap .header-top .header-top-left a {
        color: #fff;
        display: block;
    }
    .header-wrap .header-top .header-top-left p::after {
        display: none;
    }
    
    .header-wrap .header-top .header-top-right {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
        -ms-grid-row-align: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
 
   
   
    .mobile-bar-wrap {
        text-align: right;
        position: relative;
        top: 4px;
    }
   
    .header-wrap .header-bottom {
        padding: 12px 0;
    }

    .header-wrap .header-top .header-top-left p {
        margin: 0;
        padding: 0;
    }
    .header-wrap .header-top .header-top-left p,
    .header-wrap .header-top .header-top-left a {
        color: #fff;
        display: block;
    }
    .header-wrap .header-top .header-top-left p::after {
        display: none;
    }

   
   
    .menu-close {
        position: absolute;
        top: 13px;
        right: 16px;
    }
    .menu-close i {
        color: #000;
        font-size: 22px;
    }
    .mobile-menu {
        text-align: right;
    }
    .mobile-menu a i {
        color: #012245;
        font-size: 26px;
    }
    .mobile-top-bar,
    .mobile-menu {
        display: inline-block;
    }
    .mobile-top-bar i {
        color: #012245;
        font-size: 22px;
        margin-right: 15px;
        cursor: pointer;
    }
    .header-top {
        position: absolute;
        height: 100vh;
        width: 100%;
        top: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background: #000;
        right: -100%;
        padding: 50px 5px !important;
        display: block;
        z-index: 99;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .header-top.open {
        visibility: visible;
        opacity: 1;
        right: 0;
    }
   
    .close-header-top button {
        position: absolute;
        top: 14px;
        right: 10px;
        z-index: 999;
        background: 0 0;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        text-align: center;
        padding: 0;
    }
    .close-header-top button i {
        color: #fff;
        font-size: 20px;
    }
    .header-contact {
        margin: 0 0 5px;
    }
    
    
    .header-bottom {
        border-top: none;
    }
    .main-menu-wrap {
        width: 100%;
        position: absolute;
        background: #f3f6fb;
        z-index: 999;
        top: 0;
        height: 100vh;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        left: -100%;
        padding: 55px 20px 30px;
        overflow-y: auto;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }
    .main-menu-wrap.open {
        left: 0;
    }
    .main-menu > li.has-children.menu-open > span.menu-expand {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .main-menu > li.has-children.menu-open > span.menu-expand i {
        color: #000;
    }
    .main-menu > li ul li.has-children.menu-open > span.menu-expand {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .main-menu li {
        position: relative;
    }
    .main-menu li:last-child {
        margin: 0;
    }
    .main-menu li span.menu-expand {
        position: absolute;
        right: 0;
        cursor: pointer;
    }
    .main-menu li span.menu-expand i {
        font-size: 24px !important;
        color: #000;
    }
    .main-menu li span.menu-expand:hover {
        color: #000;
    }
    .main-menu li a {
        font-size: 14px;
        font-weight: 400;
        color: #000;
        text-transform: capitalize;
        display: block;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }
    .main-menu li a:hover {
        color: #000;
    }
    .main-menu li ul.sub-menu {
        padding-left: 20px;
    }
    .main-menu li a.active {
        color: #000;
        font-weight: 600;
        border-color: rgba(0, 0, 0, 0.3);
    }
}
@media only screen and (max-width: 767px) {
    .header-wrap .header-bottom .logo img {
        max-width: 200px;
    }
    .mobile-top-bar i {
        margin-right: 10px;
    }

}
@media only screen and (max-width: 575px) {
   
    .header-contact {
        width: 100%;
    }
    .header-wrap .header-top .header-top-left .header-contact:last-child {
        padding: 0;
    }
    .header-wrap .header-top .header-top-left .header-contact::after {
        display: none;
    }
}





@media only screen and (max-width: 991px) {
    .page-wrapper {
        overflow-x: hidden !important;
    }
   
   
}

@media only screen and (min-width: 992px) {
    .xl-none {
        display: none !important;
    }
   
}



@media only screen and (min-width: 1440px) and (max-width: 1599px) {
    .header-wrap .container-fluid {
        padding: 0 30px !important;
    }
}
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
   
   
}
@media only screen and (min-width: 1450px) {
    .header-wrap .container-fluid {
        padding: 0 100px;
    }
   
    .container {
        max-width: 1410px;
    }
  
}

@media only screen and (max-width: 376px) {
    p {
        font-size: 14px;
        line-height: 24px;
    }
   
}

.header-social{
    padding-top: 0px;
}
.header-social ul li{
    float: left;
    padding-right: 10px;
}
.header-social ul li a{
    color: #fff;
}
.header-social ul li a i{
  font-size: 20px;
}

.ban{
  position: relative;
  margin-top: 135px;
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .ban{
    margin-top: 100px;
  }
}
.ban-enq{
  position: relative;
  margin-top: 150px;
  
}
@media only screen and (max-width: 991px) {
  .ban-enq{
    margin-top: 100px;
  }
}
.ban-inner{
  position: relative;
  margin-top: 150px;
  padding: 50px 0 40px 0;
}
@media only screen and (max-width: 991px) {
  .ban-inner{
    margin-top: 65px;
  }
}
.c-box {
  
  background-color:#e5e5e5;
 

}
.c-box--arrow-bottom {
  position: relative;
  z-index: 1;
}
.c-box--arrow-bottom::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  z-index: 1;
  border: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  margin-left: -20px;
  left: 50%;
  border-top: 15px solid #e5e5e5;
  bottom: -15px;
}
.ban-overlay{
  background-image: url(../img/cta.jpg);
    opacity: 0.07;
    background-position: bottom;
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: 0;
}
.ban-content{
  position: relative;
  z-index: 1;
}
.ban-content h1{
  font-size: 46px;
  line-height: 60px;
  font-weight: 700;
}
.ban button{
    padding: 15px;
    border: 0;
    background-color: #fff;
    box-shadow: 0 46px 50px 0 rgb(0 0 0 / 3%);
}

.rtl-btn {
  position: absolute;
  top: 10%;
  left: 3%;
  transform: translateY(-10%);
  transform: translateX(-3%);
  z-index: 1;
}

.rtl-btn .videos-btn {
  background-color: #bfbfbf;
  color: #ffffff;
  width: 52px;
  height: 52px;
  
  border-radius: 50%;
}
.rtl-btn .videos-btn i{
  font-size: 18px;
}

/*
08 - Video Btn Style
<<<<======================================================>>>>*/
.videos-btn {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.videos-btn span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.videos-btn span::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid #bfbfbf;
  animation: videoTwo 8s linear infinite;
}
.videos-btn span::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid #bfbfbf;
  animation: videoTwo 8s linear infinite;
}
.videos-btn span:nth-child(1)::after {
  animation-delay: 1s;
}
.videos-btn span:nth-child(1)::before {
  animation-delay: 5s;
}
.videos-btn span:nth-child(2)::after {
  animation-delay: 2s;
}
.videos-btn span:nth-child(2)::before {
  animation-delay: 6s;
}
.videos-btn span:nth-child(3)::after {
  animation-delay: 3s;
}
.videos-btn span:nth-child(3)::before {
  animation-delay: 7s;
}
.videos-btn span:nth-child(4)::after {
  animation-delay: 4s;
}
.videos-btn i {
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: block;
  background: #ffffff;
  color: #bfbfbf;
  border: 5px solid #bfbfbf;
  font-size: 30px;
}

@keyframes videoTwo {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

.circle {
	height:200px;
	width:200px;
	border-radius:50%;
	/*background-color:var(--white-color);*/
	
	position:absolute;
	top:50%;
	left:50%;
	
	
	-webkit-transition:height .25s ease, width .25s ease;
	transition:height .25s ease, width .25s ease;
	
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);

	display: flex;
	align-items: center;
	justify-content: center;
  }
  @media only screen and (max-width:991px){
	.circle {
		height:100px;
	    width:100px;
	}	
}
  .circle i{color: var(--primary); font-size: 24px;}
  
  .circle:before,
  .circle:after {
	content:'';
	display:block;
	position:absolute;
	top:0; right:0; bottom:0; left:0;
	border-radius:50%;
	border:1px solid var(--paragraph-color);
  }
  
  .circle:before {
	-webkit-animation: ripple 2s linear infinite;
	animation: ripple 2s linear infinite;
  }
  .circle:after {
	-webkit-animation: ripple 2s linear 1s infinite;
	animation: ripple 2s linear 1s infinite;
  }
  
  
  @-webkit-keyframes ripple{
	0% {-webkit-transform:scale(1); }
	50% {-webkit-transform:scale(1.2); opacity:1;}
	100% {-webkit-transform:scale(1.5); opacity:0;}
  }
  
  @keyframes ripple{
	0% {transform:scale(1); }
	50% {transform:scale(1.2); opacity:1;}
	100% {transform:scale(1.5); opacity:0;}
  }

  .br-50{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}
  .cp-faq-shape2{width:24px;height:24px;background:var(--green-color);top:75px;left:100px;z-index:1}
  .cp-faq-shape3{width:10px;height:10px;background:var(--primary-color);right:100px;top:10px;z-index:1}
  .cp-faq-shape4{width:10px;height:10px;background:var(--secondary-color);right:180px;top:40%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);z-index:1}
  .cp-faq-shape5{right:90px;top:70%;transform:translateY(-50%);z-index:1;transform-origin:top left}
  .cp-faq-shape6{width:10px;height:10px;background:var(--black-color);bottom:55px;left:30%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:1}
  .cp-faq-shape7{width:430px;height:430px;background:rgba(211,135,240,.29);filter:blur(350px);right:0;bottom:0;z-index:1}

  @-webkit-keyframes cp-round-rotation1{0%{-webkit-transform:translate(0px,0px) rotate(0deg)}20%{-webkit-transform:translate(73px,-1px) rotate(36deg)}40%{-webkit-transform:translate(141px,72px) rotate(72deg)}60%{-webkit-transform:translate(83px,122px) rotate(108deg)}80%{-webkit-transform:translate(-40px,72px) rotate(144deg)}100%{-webkit-transform:translate(0px,0px) rotate(0deg)}}
  .cp-round-rotation1{animation:cp-round-rotation1 30s alternate infinite linear}

  
  @-webkit-keyframes cp-round-rotation2{0%{transform:translate(0,0) rotate(0deg);-webkit-transform:translate(0,0) rotate(0deg);-moz-transform:translate(0,0) rotate(0deg);-ms-transform:translate(0,0) rotate(0deg);-o-transform:translate(0,0) rotate(0deg)}21%{transform:translate(4px,-20px) rotate(38deg);-webkit-transform:translate(4px,-20px) rotate(38deg);-moz-transform:translate(4px,-20px) rotate(38deg);-ms-transform:translate(4px,-20px) rotate(38deg);-o-transform:translate(4px,-20px) rotate(38deg)}41%{transform:translate(-50px,-60px) rotate(74deg);-webkit-transform:translate(-50px,-60px) rotate(74deg);-moz-transform:translate(-50px,-60px) rotate(74deg);-ms-transform:translate(-50px,-60px) rotate(74deg);-o-transform:translate(-50px,-60px) rotate(74deg)}60%{transform:translate(-20px,-30px) rotate(108deg);-webkit-transform:translate(-20px,-30px) rotate(108deg);-moz-transform:translate(-20px,-30px) rotate(108deg);-ms-transform:translate(-20px,-30px) rotate(108deg);-o-transform:translate(-20px,-30px) rotate(108deg)}80%{transform:translate(-195px,-49px) rotate(144deg);-webkit-transform:translate(-195px,-49px) rotate(144deg);-moz-transform:translate(-195px,-49px) rotate(144deg);-ms-transform:translate(-195px,-49px) rotate(144deg);-o-transform:translate(-195px,-49px) rotate(144deg)}100%{transform:translate(-1px,0px) rotate(180deg);-webkit-transform:translate(-1px,0px) rotate(180deg);-moz-transform:translate(-1px,0px) rotate(180deg);-ms-transform:translate(-1px,0px) rotate(180deg);-o-transform:translate(-1px,0px) rotate(180deg)}}
  .cp-round-rotation2{animation:cp-round-rotation2 30s alternate infinite linear}


  .cp-rotation{-webkit-animation:cp-rotation 10s linear infinite;animation:cp-rotation 10s linear infinite}
  @-webkit-keyframes cp-rotation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}

  .ban-content .assisted-candidate{background-color:#fff;box-shadow:0 6px 30px 5px rgba(33,34,38,.05);position:absolute;bottom:50px;right:15px;z-index:1;text-align:start;padding:20px;padding-left:85px;border-radius:5px}.ban-content .assisted-candidate h3{font-size:16px;margin-bottom:4px}.ban-content .assisted-candidate .icon{height:45px;width:45px;line-height:40px;border-radius:100%;text-align:center;background-color:rgba(248,24,21,.1);position:absolute;left:25px;top:50%;transform:translateY(-50%)}


.theme-container {
    max-width: 1430px;
  }


  .grBtn {
    display: flex;
    align-items: center;
    margin: 10px 0 0 0;
    gap: 0px;
    flex-direction: column;
  }
  @media only screen and (min-width: 542px) {
    .grBtn {
      flex-direction: row;
    }
  }
  @media only screen and (min-width: 769px) {
    .grBtn {
      gap: 20px;
      margin: 40px 0 20px 0;
    }
  }
  .grBtn a {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
   
    
  }
  .grBtn a i {
    width: 50px;
    display: flex;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  }
  .grBtn a:before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid transparent;
    z-index: -1;
    border-radius: 50px;
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  }
  .grBtn a:hover:before {
    width: calc(100% + 40px);
  }
  .grBtn a:hover i {
    transform: translateX(15px);
  }
  .grBtn a.outline {
    color: var(--green-color);
  }
  /*.grBtn a.outline:hover {
    color: #000;
  }*/
  .grBtn a:not(.outline) i {
    color: #ffffff;
  }
  .grBtn a.outline:before {
    background: none;
    border: 2px solid;
  }
  .grBtn a.dark {
    color: inherit;
  }
  .grBtn a.dark:hover {
    color: #ffffff;
  }
  .grBtn a.accent {
    color: var(--green-color);
  }
  .grBtn a.accent:hover {
    color: #ffffff;
  }
  .grBtn br {
    display: none;
  }
  .grBtn .button {
    border: none;
    line-height: 25px;
    padding-top: 13px;
    padding-bottom: 12.5px;
    border-radius: 50px;
  }
  .grBtn .button i {
    width: auto;
  }
  .grBtn .button:before {
    display: none;
  }
  .aligncenter .grBtn {
    justify-content: center;
  }
  .button.primary{
    background: var(--green-color);
  }

  
.button, input[type="button"], input[type="submit"], button {
  border: 1px solid rgba(255, 255, 255, 0);
}
input[type="submit"], input[type="button"], button, .button {
  
  background-image: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 18px;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 45px;
  color: #ffffff;
  border-radius: 10px;
}
a{
  background-image: linear-gradient(180deg, transparent 96%, #03dd84 0);
  font-weight: 500;
    position: relative;
    background-size: 0 100%;
    background-repeat: no-repeat;
}
a, .button{
  transition: all 0.2s ease-in-out 0s;
}
.button:not([class*="product_type_"]) {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button:not([class*="product_type_"]):after {
  content: "";
  width: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.1);
  transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}
.button:not([class*="product_type_"]):hover {
  color: #ffffff;
}
.button:not([class*="product_type_"]):hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.button:not([class*="product_type_"]).has-icon {
  padding-left: 90px;
}
.button:not([class*="product_type_"]).has-icon i {
  position: absolute;
  font-size: 24px;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}


.button:not([class*="product_type_"]).primary {
  color: #fff;
}
.button:not([class*="product_type_"]).primary i {
  color: inherit;
}

.grBtn a.accent:before{
  background: var(--green-color);
}
.grBtn a.outline:before{
  border-color: var(--green-color);
 
}

.tech_btn {
  
  text-decoration: none;
  text-align: center;
  font-size: 13px;
font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  border: 2px solid #232323;
  border-radius: 50px;
  color: #232323;
  padding: 10px 30px 10px 30px;
  
  transition: all 0.4s;
  
}

.tech_btn:hover {
  color: var(--white-color);
  background-color: var(--green-color);
  border: 2px solid var(--green-color);
}

.tech_btn span {
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.tech_btn span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -1.375rem;
  transition: 0.4s;
}

.tech_btn:hover span {
  padding-right: 2rem;
  color: var(--white-color);
}

.tech_btn:hover span:after {
  opacity: 1;
  right: 0;
}

.lo-main-section{
  position: relative;
  margin-bottom: 45px;
}
.lo-main-section:before{
  content: '';
  position: absolute;
  top: 348px;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: #03dd84;
  background: url('https://t3.ftcdn.net/jpg/01/70/09/70/360_F_170097055_L9o1KPW5k5mbTMnWXG32U7OUSRhCKItW.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 1;

}


.lo-view-posts, .lo-auther-icons, .lo-sidebar-list::before, .lo-sidebar-list, .lo-autherdetail_icons li, .lo-btnreply, .lo-searchtags-list a, .lo-accordion_title:after, .lo-ourexpertisevtwo .lo-ourexpertise_info:before, .grid-item .lo-grideffect .lo-effectV2, .grid-item .lo-grideffect em, .lo-navfilterbale li a::after, .lo-navfilterbale li a, .lo-aboutslider figure > img, .lo-aboutslider figure:before, .lo-aboutslider figure, .lo-aboutslider a h4:before, .lo-aboutslider a h4:after, .lo-count__text h4, .lo-count__text, .number, .lo-countdown__content:before,
.lo-count-down:before, .lo-countdown__content span,
.lo-count-down span, .lo-countdown__content h2,
.lo-count-down h2, .lo-ourexpertise_info p, .lo-ourexpertise_info, .triangle-bottomleft, .lo-effectV2, .lo-nav .owl-prev:before,
.lo-nav .owl-next:before, .lo-meettech figure img, .lo-explore_description, .lo-explore_description i, .lo-explore_description p, .lo-explore_title span, .lo-explore_title h3, .lo-explore_title figure, .lo-explore_title, .lo-explore li, .lo-count:after, .lo-count > span, .lo-count h3 i, .lo-count h3 em, .lo-count h3 span, .lo-count, .lo-soliallinks ul li a, .lo-socail-icons li a span, .lo-socail-icons li a, .lo-adressdetails ul li a i, .lo-overlayfooter:before, .radio-button span:after, .lo-languages li label span, .overlay-menu ul li a::before, .overlay-menu ul li a, .lo-navbarnav > li > a, .lo-navbarnav > li:before, .lo-categories-navbar .owl-nav > div:before, .lo-catsubmenu ul li a, .lo-catsubmenu, .lo-navbarnav > ul > li > a:before,
.lo-navbarnav .lo-categories-nav__content > a:before, .menu-item-has-children > a:after, .lo-navicon span, .lo-dropdowarrow, .sub-menu li a, .sub-menu li, .sub-menu, .btn-reply, .lo-pagination ul li a, .select2-container--default .select2-results__option[aria-selected=true], .lo-radio label:before, .lo-btn:before,
.lo-btnvtwo:before, .lo-btn,
.lo-btnvtwo, .lo-socialmedia a, .lo-socialmedia a i, .lo-socialmedia a span, .lo-facebook__bg i, .lo-twitter__bg i, .lo-linkedin__bg i, .lo-twitch__bg i, .lo-dribbble__bg i, .lo-instagram__bg i, .lo-quora__bg i, .lo-clone__bg i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.lo-page-load-status, .lo-sidebar-catogrie, .lo-view-posts, .lo-auther-icons, .lo-autherdetail_icons, .lo-commenstimg, .lo-tanglinks, .lo-searchtags, .lo-newsdetail, .lo-newlinks, .lo-modrengrid_brands, .lo-accordion_title, .lo-innerbanner_bg, .lo-infiniteicon i, .lo-newsgrid figure a i, .lo-newsgrid figure a, .lo-navfilterbale, .lo-portfolio-banner .lo-bannerhead, .lo-aboutslider a, .lo-themebtn, .lo-aboutbrandlist, .lo-skillsbar__content figure, .lo-skillsbar, .lo-count__text, .lo-cscounter-holder .lo-cscounter__holder .lo-cscounter__countdown, .lo-cscounter-holder .lo-cscounter, .lo-sectioncenter, .lo-commingsoon__footer .lo-footerv3, .lo-commingsoon__content, .lo-commingsoon .lo-headerwrap, .lo-countdownholder, .lo-testimonial .lo-featureRating, .lo-testimonial .lo-comment, .lo-ourexpertise_info, .lo-ourexpertise, .lo-image-gallery .lo-postbtns, .lo-postbtns, .lo-bannerfigure, .lo-nav .owl-nav, .lo-comment_title, .lo-rattingcoment, .lo-exploreholder, .lo-barrands ul, .lo-explore, .lo-count, .lo-socialicons, .lo-aside, .lo-bannerimg > .lo-imageswrap, .lo-footerhead, .lo-bottomfooter_right ul, .lo-bottomfooter .bottom-navbar, .lo-topfooter_input, .lo-languages li label span, .overlay-menu > ul > li, .lo-headerwrap__right, .lo-headerwrap, .lo-categoriesnav__title, .lo-categories-navbar .owl-nav > div:before, .lo-categories-navbar .owl-nav > div, .lo-catsubmenu ul, .lo-catsubmenu, .lo-navbarnav > ul,
.lo-navbarnav .lo-categories-nav__content, .lo-userlogin a, .sub-menu li, .lo-profileform__checkbox, .lo-profileform__title, .lo-documentlist, .lo-doclist, .lo-comentinfo, .lo-savelisting > li .lo-profilestatus, .lo-dhb-mainheading__rightarea, .lo-dhb-mainheading, .lo-hottag, .lo-on-off label,
.lo-onoff label em, .lo-onoff label, .lo-pagination ul, .lo-pagination, .lo-stars span, .select2-container--default .select2-selection--multiple .select2-selection__choice, .select2-container--default .select2-selection--multiple .select2-selection__rendered, .select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple, .lo-righticon, .lo-input, .lo-inputicon, .lo-select, .lo-calendar, .form-group-wrap, .lo-themeform__wrap, .lo-socialmedia {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lo-brand-explore {
    padding: 0 0px;
    position: relative;
  }
  
  .lo-explore {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    background-color: #fff;
    border-top: 1px solid #eeeeee;
    /*box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);*/
    justify-content: center;
  }
  .lo-explore .lo-exploretitle {
    width: 50%;
    padding: 90px 60px 0;
    justify-content: initial;
  }
  .lo-explore li {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    min-height: 300px;
    padding: 0px 20px 31px;
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
  }
  .lo-explore li:nth-child(1), .lo-explore li:nth-child(5){
    border-left: 1px solid #eeeeee;
  }
  
  .lo-barrands {
    margin-top: -351px;
    padding-bottom: 100px;
  }
  .lo-barrands figure {
    position: relative;
    background: #2d2d2d;
  }
  .lo-barrands figure img {
    width: 100%;
    opacity: 0.6;
    min-height: 450px;
    object-fit: cover;
  }

  .lo-barrands ul {
    width: 100%;
    padding: 0 50px;
    align-items: center;
    margin: -165px 0 0 0;
    justify-content: space-between;
  }
  .lo-barrands ul li {
    z-index: 1;
  }
  
  .lo-exploreholder {
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 1440px) {
    .lo-exploreholder {
        padding-right: 20px;
        padding-left: 20px;
      }
  }
  @media (min-width: 1200px) and (max-width: 1280px) {
    .lo-explore .lo-exploretitle {
      padding-right: 30px;
      padding-left: 30px;
    }
    .lo-explore li {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  @media (max-width: 1199px) {
    .lo-explore .lo-exploretitle {
        width: 100%;
      }
      .lo-explore li {
        width: 33.333%;
      }
      .lo-exploreholder {
        padding: 0;
      }
  }
  @media (max-width: 991px) {
    .lo-explore li {
        width: 50%;
      }
  }
  @media (max-width: 767px) {
    .lo-explore li {
        width: 100%;
        min-height: auto;
        padding-top: 25px;
      }
      .lo-brand-explore {
        padding: 0 15px;
      }
  }
  @media (max-width: 640px) {
    .lo-explore .lo-exploretitle {
        padding-right: 50px;
        padding-left: 50px;
      }
  }
  @media (max-width: 575px) {
    .lo-explore li,
    .lo-explore .lo-exploretitle {
        padding-right: 30px;
        padding-left: 30px;
      }
      .lo-brand-explore {
        padding: 0;
      }
  }

  .lo-explore li .work-process-item {
    text-align: center;
    
    padding-left: 0px;
    padding-right: 0px; }
    .lo-explore li .work-process-item p{
      font-size: 15px;
      line-height: 22px;
    }
    @media only screen and (max-width: 575px) {
      .lo-explore li .work-process-item {
        margin-top: 0; } }
        .lo-explore li .work-process-item .icon {
      z-index: 1;
      padding: 15px;
      position: relative;
      margin-bottom: 20px;
      display: inline-block; }
      

      .lo-explore li .work-process-item .icon span {
        color: white;
        font-size: 65px;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        display: inline-block;
        
        background: var(--secondary-color);
        padding: 20px;
        border-radius: 50%;
        text-align: center; }

        @media only screen and (max-width: 575px) {
          .lo-explore li .work-process-item .icon span {
           
            font-size: 35px;
            padding: 20px; } }

            
            .lo-explore li .work-process-item .icon span:before {
          line-height: inherit; }
          .lo-explore li .work-process-item .icon:before {
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        content: '';
        left: 0;
        top: 0;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        border-radius: 50%;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        border: 2px dashed var(--green-color); }
        .lo-explore li .work-process-item h4{
          font-size: 20px;
          font-weight: 600;
        }

        .lo-explore li:hover .work-process-item .icon span {
      background: var(--green-color); }
      .lo-explore li:hover .work-process-item .icon:before {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-animation: rotated_circle 5s linear infinite;
      animation: rotated_circle 5s linear infinite;
      -webkit-animation-delay: 0.5s;
      animation-delay: 0.5s; }

      @-webkit-keyframes rotated_circle {
        0% {
          -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }
        100% {
          -webkit-transform: rotate(360deg);
          transform: rotate(360deg); } }
      @keyframes rotated_circle {
        0% {
          -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }
        100% {
          -webkit-transform: rotate(360deg);
          transform: rotate(360deg); } }

  .divider .svg-info, .divider .svg-info * {
    fill: var(--green-color);
}
.bg-green{
  background-color: var(--green-color);
}
.divider .svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}


.bg-info {
  background-color: var(--secondary-color) !important;
}
.divider .svg-white {
  fill: #fff;
}
.divider .svg-white, .divider .svg-white * {
  fill: #fff;
}
.divider .svg-light, .divider .svg-light * {
  fill: #f5f5f5;
}
.divider .svg-footer, .divider .svg-footer * {
  fill: #1c1c1c;
}

.b-products{
 
  border-radius: 10px;
  padding: 0;

}
.b-products div{
  text-align: center;
  margin-bottom: 15px;
  padding: 10px 0px 0 0;
  background-color: var(--white-color);
 
}
  .b-products .content p{
    font-size: 16px;
    
  }






  







  .projects-header{padding-top:11.9rem;padding-bottom:8.3rem}@media (max-width: 991px){.projects-header{padding-top:4.7rem;padding-bottom:4.5rem}.projects-header .heading{margin-bottom:1.3rem}}.projects-header-1{padding-top:13.2rem;padding-bottom:6.6rem}@media (max-width: 991px){.projects-header-1{padding-top:4.2rem;padding-bottom:3rem}}.projects-footer{padding-top:7rem;padding-bottom:12.1rem}@media (max-width: 991px){.projects-footer{padding-top:4.7rem;padding-bottom:4.7rem}}@media (max-width: 767px){.projects-footer{padding-top:3.6rem;padding-bottom:3.5rem}.projects-footer-1{border-top:1px solid #333}.projects-footer .heading{margin-bottom:2.5rem}}



  .project-list-1 .project-list-single:hover .project-list-single--thumbnail img{-webkit-transform:scale(1.15);transform:scale(1.15);-webkit-transform-origin:center center;transform-origin:center center}.project-list-single{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.project-list-single--content{background-color:black;position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1}.project-list-single--content-inner{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:10rem;width:53%}.project-list-single--content .project-single-service h3{font-size:1.2rem;font-weight:600;color:#949494;letter-spacing:0.1rem;line-height:2rem;text-transform:uppercase}.project-list-single--content .project-single-client h3{font-size:1.4rem;letter-spacing:0;text-transform:initial}.project-list-single--content h2{font-size:3.4rem;line-height:5rem;font-weight:600;color:#fff;letter-spacing:-0.1rem;margin:1.8rem 0 1rem 0;word-break:break-word}.project-list-single--content .project-single-button{width:6.8rem;height:6.8rem;border-radius:50%;background-color:var(--slope-main-color-25);position:relative;margin-top:2.1rem}.project-list-single--content .project-single-button--inner{width:4.7rem;height:4.7rem;border-radius:inherit;background-color:var(--slope-main-color);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-transition:all .25s ease;transition:all .25s ease}.project-list-single--content .project-single-button--inner i{font-size:2rem;color:var(--slope-foreground);position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.project-list-single--wrapper{width:100%;display:block}.project-list-single--wrapper:nth-child(even) .project-list-single--content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.project-list-single--wrapper:nth-child(even) .project-list-single--content-inner{right:initial;left:10rem}.project-list-single--thumbnail{overflow:hidden;-webkit-box-flex:1;-ms-flex:1;flex:1}.project-list-single--thumbnail img{max-width:101% !important;width:101%;height:100% !important;-o-object-fit:cover;object-fit:cover;-webkit-transition:all .25s ease;transition:all .25s ease}@media (max-width: 991px){.project-list-single--thumbnail{height:50rem}.project-list-single--thumbnail img{height:50rem !important}}.project-list-single:hover .project-single--thumbnail img{-webkit-transform:scale(1.2);transform:scale(1.2)}.project-list-single:hover .project-single-button--inner{width:100%;height:100%}@media (max-width: 1400px){.project-list-single--content-inner{width:70%}.project-list-single--content h2{font-size:2.8rem}}@media (max-width: 1100px){.project-list-single--content{position:relative}.project-list-single--content-inner{width:80%;left:initial;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.project-list-single--wrapper:nth-child(even) .project-list-single--content-inner{left:initial;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}}@media (max-width: 991px){.project-list-single{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.project-list-single--content{width:100%}.project-list-single--content-inner{text-align:left;padding:5.5rem 50px 5rem 50px;position:relative;top:initial;left:initial;right:initial;width:100%;-webkit-transform:none;transform:none}.project-list-single--content-inner h2{margin:1.2rem 0}.project-list-single--content .project-single-button{margin:2.2rem 0 0 0}.project-list-single--wrapper{width:100%}.project-list-single--wrapper:nth-child(even) .project-list-single--content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.project-list-single--wrapper:nth-child(even) .project-list-single--content-inner{position:relative;top:initial;left:initial;right:initial;-webkit-transform:none;transform:none}.project-list-single--wrapper:nth-child(even) .project-list-single--thumbnail{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.project-list-single--wrapper .project-list-single--content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.project-list-single--wrapper .project-list-single--thumbnail{width:100%;height:100%;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media (max-width: 991px){.project-list-single{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.project-list-single--content{width:100%}.project-list-single--content-inner{position:relative;top:initial;left:initial;right:initial;width:100%;-webkit-transform:none;transform:none}.project-list-single--content-inner .project-single-button{-webkit-transform:scale(0.8);transform:scale(0.8)}.project-list-single--thumbnail{width:100%}.project-list-single--wrapper:nth-child(even) .project-list-single--content-inner{position:relative;top:initial;left:initial;right:initial;-webkit-transform:none;transform:none}}@media (max-width: 767px){.project-list-single--content-inner{padding:5.2rem 25px 5rem 25px}}.project-list.project-list-2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.project-list.project-list-2 .project-list-single--wrapper{width:50%}.project-list.project-list-2 .project-list-single--wrapper:nth-child(even) .project-list-single--content-inner{right:initial;left:9.7rem}.project-list.project-list-2 .project-list-single{display:block;position:relative;overflow:hidden}.project-list.project-list-2 .project-list-single--content{position:absolute;width:100%;height:100%;opacity:0;visibility:hidden;background-color:rgba(0,0,0,0.7);z-index:10}.project-list.project-list-2 .project-list-single--content-inner{right:initial;top:initial;-webkit-transform:translate(0);transform:translate(0);bottom:9rem;left:10rem}.project-list.project-list-2 .project-list-single--content .project-single-service{opacity:0;visibility:hidden}.project-list.project-list-2 .project-list-single--thumbnail{width:100%;height:100%;z-index:5}@media (min-width: 1025px){.project-list.project-list-2 .project-list-single--wrapper{height:auto !important}.project-list.project-list-2 .project-list-single--content-inner{right:initial;top:initial;-webkit-transform:translate(0);transform:translate(0);bottom:10rem;left:10rem}}@media (max-width: 991px){.project-list.project-list-2 .project-list-single img{height:100% !important}}@media (max-width: 1024px){.project-list.project-list-2 .project-list-single--wrapper{width:100%;height:50rem}.project-list.project-list-2 .project-list-single--wrapper:nth-child(even) .project-list-single--content{width:100%;height:105%;margin-top:-1rem}.project-list.project-list-2 .project-list-single--wrapper:nth-child(even) .project-list-single--content-inner{right:initial;left:initial}.project-list.project-list-2 .project-list-single--content-inner{left:initial;bottom:initial;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}}@media (max-width: 510px){.project-list.project-list-2 .project-list-single--content{padding:2rem}}.elementor-editor-active .project-list-single--content-inner{width:60%}@media (max-width: 1024px){.elementor-editor-active .project-list-single--content-inner{width:100%}}.load-more{width:100%;padding:10rem 0;background-color:#000;cursor:pointer;text-align:center}.load-more .button{width:27.9rem;height:6.2rem;padding:0;position:relative}.load-more .button span{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.load-more .button:hover{color:#000}.load-more .button::after{background-color:#fff}@media (max-width: 1024px){.load-more{padding:5rem 5rem}}@media (max-width: 767px){.load-more{padding:5rem 2.5rem}}@media (max-width: 991px){.load-more{text-align:left}.load-more.project-list-1{padding-top:0}}.project-single--header{margin:14.5rem 0 0 0}@media (max-width: 991px){.project-single--header{margin:6.5rem 0 0 0}}@media (max-width: 767px){.project-single--header{margin:4.5rem 0 0 0}}.project-single--header .heading{color:#000}.project-single h3.heading{font-size:1.4rem;letter-spacing:initial}.project-single h4.heading{font-size:1.4rem;font-weight:500;letter-spacing:initial;margin-bottom:.8rem}.project-single-details{margin:6rem 0 5.4rem 0}@media (max-width: 991px){.project-single-details{margin:2.5rem 0 2rem 0}}@media (max-width: 767px){.project-single-details{margin:2.5rem 0 2rem 0}}.project-single .col-md-3{margin-bottom:3rem}@media (max-width: 767px){.project-single .col-md-3{width:-webkit-max-content;width:-moz-max-content;width:max-content}.project-single .row{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}

  .section-padding {
    padding: 120px 0;
  }
  @media (max-width: 991px) {
    .section-padding {
      padding: 60px 0;
    }
  }
  
  .section-padding2 {
    padding: 120px 0 90px;
  }
  @media (max-width: 991px) {
    .section-padding2 {
      padding: 60px 0 30px;
    }
  }
  .bg5 {
    background: url("../img/bg2.png") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bg5-left {
    background: url("../img/bg4.png") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  .heading2 {
    margin-bottom: 70px;
  }
  @media (max-width: 767px) {
    .heading2 {
      margin-bottom: 40px;
    }
  }
  .heading2 small.heading-top {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #09120E;
    background: #E7EDEB;
    border-radius: 50px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    
  }
  @media (max-width: 767px) {
    .heading2 small.heading-top {
      font-size: 12px;
      padding: 10px 20px;
    }
  }
  .heading2 small.heading-top.inner-heading-top {
    background: rgba(121, 119, 198, 0.2);
  }
  .heading2 small.heading-top img {
    width: 24px;
    margin-right: 10px;
  }
  .heading2.white-heading .inner-heading-top {
    color: #ffffff;
  }
  .heading2 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -1px;
    color: #09120E;
   
  }
  @media (max-width: 767px) {
    .heading2 h2 {
      font-size: 32px;
      line-height: 42px;
    }
  }
  .heading2.white-heading h2 {
    color: #ffffff;
  }
  .heading2 p {
    margin-top: 20px;
    margin-bottom: 0;
    
  }
  .heading2 span.heilight-left {
    position: relative;
    z-index: 2;
    display: inline-block;
  }
  .heading2 span.heilight-left:after {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    background: url("../img/shapes/hilight-2-right-black.png") no-repeat;
    top: -38px;
    left: -35px;
    background-position: center;
    background-size: contain;
    object-fit: cover;
  }
  @media (max-width: 767px) {
    .heading2 span.heilight-left:after {
      display: none;
    }
  }
  .heading2 span.heilight-right {
    position: relative;
    z-index: 2;
    display: inline-block;
  }
  .heading2 span.heilight-right:after {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    background: url("../img/shapes/hilight-2-right-black.png") no-repeat;
    top: -38px;
    right: -35px;
    background-position: center;
    background-size: contain;
    object-fit: cover;
    transform: rotate(30deg);
  }
  @media (max-width: 767px) {
    .heading2 span.heilight-right:after {
      display: none;
    }
  }
  .heading2.white-heading span.heilight-left:after,
  .heading2.white-heading span.heilight-right:after {
    background: url("../img/shapes/hilight-2-left-white.png") no-repeat;
    background-position: center;
    background-size: contain;
    object-fit: cover;
  }


  .single-counter {
    text-align: center;
    margin-bottom: 30px;
  }
  .single-counter p {
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 20px;
    color: #5C5B79;
  }
  @media (max-width: 767px) {
    .single-counter p {
      font-size: 70%;
    }
  }
  .single-counter h3 {
    font-weight: 400;
    font-size: 80px;
    line-height: 80px;
    color: #161540;
    
  }
  @media (max-width: 767px) {
    .single-counter h3 {
      font-size: 40px;
    }
  }
  .single-counter .odometer.odometer-auto-theme,
  .single-counter .odometer.odometer-theme-default {
    
  }
  
  @media (max-width: 991px) {
    .counter2 {
      margin: 100px 0;
    }
  }
  .counter2 .odometer.odometer-auto-theme,
  .counter2 .odometer.odometer-theme-default {
    
  }
  .counter2 .corner-shape2-left {
    width: 130px;
    top: -100px;
    left: -100px;
  }
  .counter2 .single-counter {
    background: #ffffff;
    border-radius: 7px;
    padding: 30px 40px;
  }
  .counter2 .single-counter:last-child {
    margin-bottom: 0;
  }
  .counter2 .single-counter h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1px;
    
    color: #09120E;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .counter2 .single-counter h2 .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
    top: 2px;
  }
  .counter2 .single-counter p {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #515154;
  }
  .counter2 .conter-icon {
    width: 80px;
    height: 80px;
    background: #E8FCF6;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 20px;
  }
  .counter2 .conter-icon img {
    width: 40px;
  }

  .counter2 .single-counter {
    transition: all 0.3s;
  }
  .counter2 .single-counter:hover {
    background: var(--green-color);
    transition: all 0.3s;
  }
  .counter2 .single-counter:hover p,
  .counter2 .single-counter:hover h2 {
    color: #ffffff;
    transition: all 0.3s;
  }


  .our-products{
    background-color: var(--green-color);
  }

  /* Services */
.services-style-three .thumb {
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 25px;
  display: inline-block;
  /*border-radius: 50%;*/
  transition: all 0.35s ease-in-out;
}

.services-style-three img {
height: 100px;
}

.services-style-three .item {
  padding: 60px 30px;
  border-radius: 20px;
position: relative;
z-index: 1;
background: var(--white-color);
border-radius: 10px;
transition: all 0.35s ease-in-out;
}

.services-style-three .item .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
opacity: 0.5;
}

.services-style-three .item::after {
position: absolute;
left: 0;
top: 0;
content: "";
height: 0;
width: 100%;
background: var(--secondary-color);
z-index: -1;
transition: all 0.55s ease-in-out;
border-radius: 10px;
}

.services-style-three:last-child {
border: none;
}

.services-style-three .item:hover::after,
.services-style-three .item.active::after {
  height: 100%;
}

.services-style-three .item p {
transition: all 0.35s ease-in-out;
margin: 0;
}

.services-style-three .item a {
z-index: 1;
position: relative;
}

.services-style-three .item:hover p,
.services-style-three .item:hover a,
.services-style-three .item.active p,
.services-style-three .item.active a {
color: var(--white-color);
}

.services-style-three .item:hover p {
opacity: 0.8;
}

.services-style-three {
margin-top: 60px;
}

.services-style-three:nth-child(2) {
margin-top: 0;
}

.services-style-three-area .shape-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (max-width: 991px){
  .services-style-three {
    margin-top: 0px;
    }
}

  .enquiry-form input, .enquiry-form textarea{
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.95);
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 0px;
  }
  .enquiry-form ::placeholder{
    color: rgba(255, 255, 255, 0.70);
  }
  .enquiry-form input:focus, .enquiry-form textarea:focus{
    outline: none !important;
  }
  .enquiry-form h3{
    font-size: 20px;
    font-weight: 600;
    margin: -35px 0 15px 0;
    padding: 0;
    color: #fff;
    text-transform: uppercase;
  }
  .enquiry-form .submit-btn{
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    color: var(--secondary-color);
  }

.footer-contact h3{
  font-size: 18px;
  color: var(--white-color);
}
.footer-contact p{
  color: #a1fdce;
}
footer .detail-single{margin-top:1.8rem}
footer .detail-single h6{font-size:0.8rem;font-weight:600;color:var(--darkgreen-color);line-height:1rem;letter-spacing:normal}
footer .detail-single h4{font-size:1rem;font-weight:600;color:#fff;line-height:1.3rem;margin-top:0;letter-spacing:normal}
@media (max-width: 991px){
  footer .detail-single{margin-top:1.5rem}
}
.navigation-menu-social h6{font-weight:600;font-size:0.8rem;color:#949494}.navigation-menu-social ul{margin-top:0rem;padding-left:0}
@media (max-width: 991px){
  .navigation-menu-social ul{margin-top:.6rem}
}
.navigation-menu-social ul li{display:inline-block;margin-right:1.2rem;margin-top:.5rem}
.navigation-menu-social ul li a i{font-size:1.4rem;color:#818181;-webkit-transition:all .25s ease;transition:all .25s ease}
.navigation-menu-social ul li a i:hover{color:var(--slope-main-color)}
@media (max-width: 991px){
  .navigation-menu-social{margin-top:5rem}
}
  .footer-title {
    font-size: 14px;
    color: var(--zeinet-white, #ffffff);
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 27px;
    letter-spacing: var(--zeinet-letter-spacing-two, -0.02em);
}
  .menu-footer-links ul{
    position: relative;
      display: block;
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .menu-footer-links ul li{
    position: relative;
      display: block;
      margin-bottom: 5px;
  }
  .menu-footer-links ul li a {
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: #00a1e4;
    font-weight: 500;
    letter-spacing: var(--zeinet-letter-spacing-two, -0.02em);
    transition: all 500ms ease;
}
.menu-footer-links ul li a:hover {
	padding-left: 15px;
	color: #00a1e4;
}

.menu-footer-links ul li a:before {
	position: absolute;
	top: 9px;
	left: 0;
	content: "";
	opacity: 0;
	height: 10px;
	width: 2px;
	background-color: #00a1e4;
	transform: rotate(15deg);
	transition: all 500ms ease;
}

.menu-footer-links ul li a:hover:before {
	opacity: 1;
}

.menu-footer-links ul li a:after {
	position: absolute;
	top: 9px;
	left: 4px;
	content: "";
	opacity: 0;
	height: 10px;
	width: 2px;
	background-color: #00a1e4;
	transform: rotate(15deg);
	transition: all 500ms ease;
}

.menu-footer-links ul li a:hover:after {
	opacity: 1;
}
.w_img img {
  width: 100%;
}
.shop-item {
  background: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  box-shadow: 0 13px 29px rgba(0, 0, 0, 0.05);
}
.shop-item:hover .shop-cart-icon {
  bottom: 0;
}

.shop-img {
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: #D9E9E9;
  z-index: 1;
  overflow: hidden;
}

.shop-content-title {
  font-size: 22px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.shop-content-title:hover a {
  color: var(--clr-theme-primary);
}

.shop-content-price a {
  display: inline-block;
  color: var(--clr-body-heading);
  font-size: 20px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}



.shop-content {
  padding: 30px 20px;
  text-align: center;
}

.shop-cart-icon {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 1;
  transition: 0.4s;
}
.shop-cart-icon a {
  width: 100%;
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.shop-cart-icon a:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}
.shop-cart-icon a i {
  display: inline-block;
  margin-right: 5px;
  font-size: 16px;
}
.rbt-btn.btn-sm {
  padding: 0 22px;
  font-size: var(--font-size-b3);
  height: 45px;
  line-height: 43px;
}
.rbt-btn.btn-border {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--color-heading);
  line-height: 57px;
}
.rbt-btn {
  padding: 0 26px;
  background: var(--secondary-color);
  height: 60px;
  line-height: 60px;
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  border: 0 none;
  outline: none;
}

.radius-round {
  border-radius: 500px !important;
}
.rbt-btn.hover-icon-reverse .icon-reverse-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rbt-btn.hover-icon-reverse .btn-text {
  display: inline-block;
  transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  margin-inline-start: -23px;
}
.rbt-btn.hover-icon-reverse .btn-icon {
  display: inline-block;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}
.rbt-btn i {
  padding-left: 6px;
  display: inline-block;
  top: 2px;
  position: relative;
  font-size: 17px;
}


    
.footer-top {
	position: relative;
    /*background-color: #1c1c1c;*/
		background: rgb(0,140,68);
background: -moz-linear-gradient(90deg, rgba(0,140,68,1) 50%, rgba(12,77,162,1) 50%);
background: -webkit-linear-gradient(90deg, rgba(0,140,68,1) 50%, rgba(12,77,162,1) 50%);
background: linear-gradient(90deg, rgba(0,140,68,1) 50%, rgba(12,77,162,1) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008c44",endColorstr="#0c4da2",GradientType=1);
  }
	@media only screen and (max-width: 767px) {
		.footer-top{
		background: rgb(0,140,68);
background: -moz-linear-gradient(90deg, rgba(0,140,68,1) 50%, rgba(0,140,68) 50%);
background: -webkit-linear-gradient(90deg, rgba(0,140,68,1) 50%, rgba(0,140,68) 50%);
background: linear-gradient(90deg, rgba(0,140,68,1) 50%, rgba(0,140,68) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008c44",endColorstr="#008c44",GradientType=1);
		}
	}
	.footer-top:before{
		content: "";
		position: absolute;
		top: -50px;
		right: 0;
		width: 50%;
		height: 50px;
		background-color: var(--secondary-color);

	}

	@media only screen and (max-width: 991px) {
		.footer-top:before{
			width: 58.324924%;
		}
	}

.footer-menu-col{
	background-color: var(--secondary-color);
	position: relative;
}
.footer-menu-col:before{
		content: "";
		position: absolute;
		top: -50px;
		right: 0;
		width: 100%;
		height: 50px;
		background-color: var(--secondary-color);

	}
	@media (max-width: 991px){
		.footer-menu-col:before{
		display: none;

	}
}


.inner-categoryBx{
  /*background-color: #fff;
  box-shadow: 0 3px 99px 0 rgba(0,0,0,.03);*/
  padding: 2.8125rem 1.25rem ;
  text-align: center;
  position: relative;
  overflow: visible;
  
}
.inner-categoryBx .category-title{
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--primary-color);
  position: relative;
  border: 2px solid var(--primary-color);
  display: inline-block;
  padding: 5px 20px;
  margin: 0;
  border-radius: 4px;
}


.team-block{
  position: relative;
  margin-bottom: 30px;
}

.team-section .row{
  margin: 0 -22px;
}

.team-section .row .team-block{
  padding: 0 22px;
  margin-bottom: 60px;
}

.team-section .owl-theme .team-block{
  padding-bottom: 50px;
  margin-top: 10px;
}

.team-block .inner-box{
  position: relative;
  display: block;
  margin: 0 0 50px;
  text-align: center;
}

.team-block .image-box{
  position: relative;
  display: block;
  border-radius: 5px;
}

.team-block .image-box:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  right: 0;
  bottom: 0px;
  background: #FF8F1F;
  border-radius: 5px;
  transition: all 500ms ease;
}

.team-block:hover .image-box:before{
  top: -10px;
  bottom: -10px;
}

.team-block .image-box .image{
  position: relative;
  display: block;
  border-radius: 5px;
  height: 220px;
  z-index: 0;
  text-align: center;
  background: url(https://www.for-a.co.in/images/prod_bg.jpg);
    background-position: center;
    background-size: cover;
}

.team-block .image-box .image img{
  position: relative;
  display: block;
  width: auto !important;
  max-width: 100%;
  max-height: 220px;
  border-radius: 5px;
  margin: 0 auto;


}

.team-block .lower{
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  margin-top: -50px;
  display: block;
  padding: 30px 20px 26px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 500ms ease;
  z-index: 1;
}

.team-block:hover .lower{
  padding-bottom: 75px;
}

.team-block .lower h4{
  position: relative;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.2em;
  color: #191825;
  margin-bottom: 5px;
}

.team-block .lower h4 a{
  color: #191825;
}

.team-block .lower .text{
  position: relative;
  font-size: 16px;
  color: #808080;
  line-height: 24px;
}

.team-block .social{
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.team-block:hover .social{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
  transition: all 500ms ease;
}

.team-block .social .social-links{
  position: relative;
  display: block;
}

.team-block .social li{
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 3px;
}

.team-block .social li a{
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  background: #FF8F1F;
  font-size: 14px;
  line-height: 34px;
  color: #ffffff;
  border-radius: 50%;
  transition: all 500ms ease;
}

.team-block .social li a:hover{
  color: #ffffff;
  background: #101010;
}
  
.button-with-arrow {
  background: black;
  border: none;
  color: white;
  display: inline-block;
  font-size: 12px;
  text-transform:uppercase;
  overflow: hidden;
  padding: 8px 30px;
  margin-top: 25px !important;
  position: relative;
  text-decoration: none;
  transition: background 0.4s ease-in-out, padding 0.4s ease-in-out;
  border-radius:30px;
}

.button-with-arrow i {
  display: block;
  font-size: 20px;
  color:#fff;
  /* The arrow uses same text vertical centering trick as https://codepen.io/justinaven/pen/aNRLYg setting the height and line-height to 0 */
  height: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 100%;
  transition: all 0.4s ease-in-out;
}

.button-with-arrow:hover {
  background: var(--primary-color);
  color:#fff;
  padding: 8px 20px 8px 40px;
}

.button-with-arrow:hover i {
  right: 80%;
}


.rs-carousel.dot-style1 .owl-dots {
  text-align: center;
}
.rs-carousel.dot-style1 .owl-dots .owl-dot {
  width: 25px;
  height: 8px;
  display: inline-block;
  border-radius: 50px;
  margin: 0 5px;
  background: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  opacity: .5;
}
.rs-carousel.dot-style1 .owl-dots .owl-dot:hover {
  width: 40px;
  opacity: 1;
}
.rs-carousel.dot-style1 .owl-dots .owl-dot.active {
  width: 40px;
  opacity: 1;
}
.rs-carousel.nav-style1 {
  position: relative;
}
.rs-carousel.nav-style1 .owl-nav {
  display: block;
}
.rs-carousel.nav-style1 .owl-nav .owl-next,
.rs-carousel.nav-style1 .owl-nav .owl-prev {
  position: absolute;
  top: 35%;
  transform: translateY(-35%);
  left: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: var(--secondary-color);
  text-align: center;
  color: #ffffff;
  transition: all 0.5s;
  transition-delay: 0.70s;
  opacity: 0;
  visibility: hidden;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before,
.rs-carousel.nav-style1 .owl-nav .owl-prev i:before {
  content: "\f104";
  font-family:"Font Awesome 5 Pro";
}
.rs-carousel.nav-style1 .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before {
  content: "\f105";
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next,
.rs-carousel.nav-style1:hover .owl-nav .owl-prev {
  left: -25px;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next {
  right: -25px;
  left: unset;
}
.rs-carousel.nav-style1.nav-mod .owl-nav {
  display: block;
}
.rs-carousel.nav-style1.nav-mod .owl-nav .owl-next,
.rs-carousel.nav-style1.nav-mod .owl-nav .owl-prev {
  transition: all 0.5s;
  transition-delay: 0.70s;
  opacity: 0;
  visibility: hidden;
  left: 30px;
}
.rs-carousel.nav-style1.nav-mod .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-carousel.nav-style1.nav-mod:hover .owl-nav .owl-next,
.rs-carousel.nav-style1.nav-mod:hover .owl-nav .owl-prev {
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-carousel.nav-style2 {
  position: relative;
}
.rs-carousel.nav-style2 .owl-nav {
  display: block;
  position: absolute;
  top: -80px;
  right: 0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev,
.rs-carousel.nav-style2 .owl-nav .owl-next {
  display: inline-block;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i,
.rs-carousel.nav-style2 .owl-nav .owl-next i {
  transition: all 0.3s ease;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before,
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
  font-family: Flaticon;
  font-size: 22px;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:hover i,
.rs-carousel.nav-style2 .owl-nav .owl-next:hover i {
  color: var(--green-color);
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before {
  content: "\f134";
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:after {
  content: "/";
  padding: 0 5px 0 5px;
  position: relative;
  top: -3px;
}
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
  content: "\f133";
}

.our-products .team-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.our-products .team-wrap .team-image {
  margin-bottom: 75px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;


    position: relative;
    display: block;
    padding: 0 15px;
    height: 220px;
    z-index: 0;
    text-align: center;
    background: url(https://www.for-a.co.in/images/prod_bg.jpg);
      background-position: center;
      background-size: cover;

}
.our-products .team-wrap .team-image img {
  transition: all 0.3s ease;
  vertical-align: middle;
}
.our-products .team-wrap .text-bottom {
  text-align: center;
  border-bottom: 3px solid #eaedf0;
  border-radius: 0 0 3px 3px;
  background: #f1f6fc;
  padding: 26px 0 23px 0;
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.our-products .team-wrap .text-bottom h4.person-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
  
}
.our-products .team-wrap .text-bottom h4.person-name {
  color: #1c1b1b;
}

.our-products .team-wrap .text-bottom span.designation {
  display: block;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.our-products .team-wrap .social-links {
  margin-top: 5px;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  margin-bottom: -50px;
  opacity: 0;
}
.our-products .team-wrap .social-links ul li {
  display: inline;
  padding: 0 7px;
}
.our-products .team-wrap .social-links ul li a i {
  color: #ffffff;
  transition: all 0.3s ease;
}
.our-products .team-wrap .social-links ul li a:hover i {
  color: #ffffff;
}
.our-products .team-wrap:hover .team-image img {
  transform: scale(1.1);
}
.our-products .team-wrap:hover .text-bottom {
  background: var(--secondary-color);
  padding-bottom: 8px !important;
}
.our-products .team-wrap:hover .text-bottom .person-name {
  color: #ffffff;
}
.our-products .team-wrap:hover .text-bottom .person-name a:hover {
  color: #ffffff;
}
.our-products .team-wrap:hover .text-bottom .designation {
  color: #ffffff;
}
.our-products .team-wrap:hover .text-bottom .social-links {
  margin-bottom: 0;
  opacity: 1;
}



/* ===============================================
    15.Client-row  
------------------------*/
.client-box{ 
  position: relative;
  text-align: center;
  background-color: #fff;
}
.client-box .client-thumbnail {
  border: 1px solid #eee;
  padding: 15px; }
.client-box .cmt-client-logo-tooltip{ 
  padding-top: 3px; 
}
.client-box .cmt-client-logo-tooltip,
.client-box .cmt-client-logo-tooltip-inner{
  position: relative;
  overflow: hidden;
}
.client-box .cmt-client-logo-tooltip img{
  text-align: center;
  display: block;
  margin: 0 auto;
}
.client-box .tooltip-top:after, .client-box .tooltip-top:before, .client-box .tooltip:after, 
.client-box .tooltip:before, .client-box [data-tooltip]:after, .client-box [data-tooltip]:before { 
  bottom: 68%; 
}
.client-box .cmt-client-logo-tooltip .client-thumbnail_hover{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.client-box:hover .cmt-client-logo-tooltip .client-thumbnail_hover {
  bottom: 0;
}

.ban-inner h2{
  font-size: 28px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
}
.divider {
  display: flex;
}
.divider:before, .divider:after {
  content: "";
  flex: 1;
}

.line {
  align-items: center;
  margin: 1em -1em;
}
.line:before, .line:after {
  height: 1px;
  margin: 0 1em;
}
.one-line:before, .one-line:after {
  background: black;
}

.razor:before, .razor:after {
  box-shadow: 0 0.5px 0 black;
}
.double-razor:before, .double-razor:after {
  height: 3px;
  box-shadow: 0 -0.5px 0 var(--secondary-color), 0 0.5px 0 var(--secondary-color);
  border-width: 0;
}



  /* ==========================================================================
   3.0 Slider Section
   ========================================================================== */
   .display-table{
    width: 100%;
    height: 100%;
    display: table;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
}
   .slider-section{
	   margin: 135px 0 0 0;
	   padding: 0;
   }
   .slider-text {
	   width: 100%;
   }
   .slider-text h1{
	   font-size: 50px;
	   font-weight: 600;
	   color: #fff;
	   line-height: 1.2;
   }
   .slider-text h5{
    font-size: 20px;
	   font-weight: 400;
	   color: var(--color-white);
	   text-transform: uppercase;
	   background-color: var(--color-secondary);
	   display: inline-block;
       padding: 3px 10px;
       margin: 0 0 10px 0;
       border-radius: 3px;
   }
   .nivo-caption a,
   .nivo-caption .slider-btn{
	   display: inline-block!important;
   }
   .slider-btn{
	   margin: 0 5px;
   }
   .slider-btn .default-btn{
	   background-color: #0aa4e3;
	   color: #fff;
   }
   .slider-text p {
	   color: #777;
	   font-size: 16px;
	   margin-bottom: 15px;
   }
   .slider-wrapper {
	   position: relative;
   }
   .nivo-caption {
	   height: 100%;
	   opacity: 1;
	   background: transparent;
	   overflow: visible;
   }
   
   /* nivo directionNav css */
   .nivo-directionNav a {
	   font-size: 13px;
	   background-color: rgba(0,0,0,0.5);
	   width: 50px;
	   height: 50px;
	   line-height: 50px;
	   border-radius: 50%;
	   text-align: center;
	   color: #fff!important;
	   top: calc(50% - 20px);
	   opacity: 0;
	   -webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out;
	   -ms-transition: all 0.4s ease-in-out;
	   transition: all 0.4s ease-in-out;
   } 
   .nivo-directionNav a.nivo-prevNav {
	   left: 25px;
   }
   .nivo-directionNav a.nivo-nextNav {
	   right: 25px;
   }
   .slider-wrapper:hover .nivo-directionNav a.nivo-prevNav {
	   left: 15px;
	   opacity: 0.7;
   }
   .slider-wrapper:hover .nivo-directionNav a.nivo-nextNav {
	   right: 15px;
	   opacity: 0.7;
   }
   .nivo-directionNav a:hover{
	   opacity: 1!important;
   }
   
   /* nivo controlNav css */
   .nivo-controlNav {
	   padding: 0;
	   position: absolute;
	   z-index: 12;
	   bottom: 30px;
	   width: 100%;
   }
   .nivo-controlNav a {
	   background-color: transparent;
	   width: 12px;
	   height: 12px;
	   background-color: rgba(0,0,0,0.5);
	   border-radius: 50%;
	   display: inline-block;
	   font-size: 0;
	   cursor: pointer;
	   margin: 0 5px;
	   transition: all 0.3s linear;
	   line-height: 12px;
   }
   .nivo-controlNav a.active {
	   background-color: #2caee2;
   }
   #main-slider{
	   position: relative;
	   background-color: rgba(0,0,0,0.5) !important;
   }
.display-table{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.5) !important;
	z-index: 9;
}
   @media (max-width: 992px) {
    .slider-section{
        margin: 10px 0 0 0;
        padding: 0;
    }
	.slider-text h1{
        font-size: 32px;
    }
    .slider-text p{
        font-size: 14px;
    }
   }

   @media all and (max-width: 767px) {
    .slider-section{
        margin: 10px 0 0 0;
        padding: 0;
    }
	.slider-text h1{
        font-size: 28px;
    }
    .slider-text p{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .slider-text h5{
        font-size: 12px;
        margin-bottom: 0;
    }
    .slider-text .default-btn{
        display: none!important;
    }
	.nivo-caption a, .nivo-caption .slider-btn{
        display: none!important;
    }
   }

   @media all and (max-width: 480px) {
	.slider-text h1{
        font-size: 16px;
    }
    .slider-text p{
        display: none;
    }
   }

   @media all and (max-width: 380px) {
	
    .slider-text .default-btn{
        display: none;
    }
}


.view_prod{
  font-size: 13px;
  background-color: var(--green-color);
  margin: 5px 0 0 0;
  padding: 5px 20px;
  border: 0px solid #fff;
  border-radius: 20px;
}


.about-two-left-content{
  position: relative;
  display: block;
}
.about-two-sec-image{
  position: relative;
  display: block;
  z-index: 5;
}
.about-two-sec-image:before {
  position: absolute;
  bottom: -15px;
  right: -15px;
  border-radius: 6px;
  width: 270px;
  height: 270px;
  background: var(--thm-primary);
  content: "";
  z-index: -1;
}
.about-two-sec-image-bg-1 {
  position: absolute;
  top: -22px;
  left: -22px;
  height: 233px;
  width: 233px;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}
.about-two-sec-image-bg-2 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 210px;
  width: 210px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.about-two-sec-image img{
  width: 100%;
  border-radius: 6px;
}

