@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
p{
  position: relative;
  margin: 0 0 20px;
  line-height: 1.8em;
  color: #515264;
  font-size: 16px;
}
body{
  font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Mulish', sans-serif;
}

/********** Header Start **********/
.search-popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transform-origin: left center;
  transition: transform 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
  visibility: hidden;
}
.search-popup.active{
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
  transition: transform 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
}
.search-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);;
  opacity: 0.9;
  cursor: pointer;
}
.search-popup-content{
  width: 100%;
  max-width: 560px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-130%);
  transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, transform 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
}
.search-popup.active .search-popup-content{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
}
.search-popup-content form{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search-popup-content form input[type="search"], .search-popup-content form input[type="text"] {
  width: 100%;
  background-color: #ffffff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  box-shadow: none !important;
}
.search-popup-content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  background-color: #15ebae;
  border: 0;
}
.search-popup-content .thm-btn i {
  background-color: transparent;
  margin-left: 0;
  color: #232323;
  font-size: 20px;
}
.header-inner{
  background: rgba(1,5,15,0.06);
  backdrop-filter: blur(7.5px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 400ms ease;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 2%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header.header-sticky .header-inner{
  position: fixed;
  z-index: 991;
  width: 100%;
  top: 0;
  box-shadow: 0px 7px 18px rgb(24 16 16 / 5%);
  animation: sticky 1s;
  z-index: 999;
  background: #0d1525;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.header-inner:before{
  position: absolute;
  content: "";
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0, 100% 50%, 86% 100%, 0% 100%);
  height: 100%;
  width: 255px;
  top: 0;
  left: 0;
  z-index: -1;
}
.logo img{
  width: 166px;
}
.navbar ul{
  list-style: none;
}
.navbar>ul{
  display: flex;
  flex-direction: row;
}
.navbar ul li{
  position: relative;
}
.navbar ul li a{
  position: relative;
  display: block;
  color: #fff;
  font-size: 17px;  
  font-weight: 500;
  text-decoration: none;
  padding: 22px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color:#00BF63;
}
.ser-btn ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.ser-btn #ser-btn-icon{
  font-size: 24px;
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 0;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.ser-btn .header-contact-info{
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.ser-btn .header-contact-info .icon{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: #3f5965;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.ser-btn .header-contact-info .icon i{
  transform: rotate(-20deg);
}
.ser-btn .header-contact-info .text{
  margin-left: 10px;
}
.ser-btn .header-contact-info .text p{
  font-size: 14px;
  color: #cccccc;
  line-height: 14px;
  margin-bottom: 5px;
}
.ser-btn .header-contact-info .text h5 a{
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  transition: all 500ms ease;
}
#bar-icon{
  display: none;
}
.down-arrow{
  position: absolute;
  right: 0;
  top: 27px;
  display: inline-block;
  font-size: 15px;
}
.navbar{
  position: unset;
}
.navbar ul ul li a .down-arrow{
  display: block;
  position: absolute;
  right: 10px;
  top: 16px;
}
@media(min-width:992px){
  .navbar ul li ul{
    position: absolute;
    list-style: none;
    min-width: 250px;
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 20%);
    transition: all 0.3s;
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
  }
  .navbar ul>li:hover>ul{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .navbar ul ul li{
    position: relative;
  }
  .navbar ul ul li a{
    display: block;
    color: #232323;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 10px;
    line-height: 1.8rem;
    transition: all 0.5s;
  }
  .navbar ul ul li a:hover{
    color: #fff;
    background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);
    border-color: transparent;
    padding-left: 25px;
  }
  .navbar ul li ul ul{
    position: absolute;
    left: 100%;
    top: 0;
  }

}

@media(max-width:1200px){
  .logo a{
    font-size: 20px;

  }
  .navbar ul li a{
    font-size: 15px;
    padding: 22px 16px;
  }
  .ser-btn .enquiry-btn{
    padding: 10px 3px;
    font-size: 12px;

  }
}

@media(max-width:992px){
  .navbar>ul{
    position: absolute;
    background-color: #152733;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
    /*border-top: 8px solid #0d6efd;*/

  }
  /*.header{
    height: 60px;
  }*/
  .ser-btn .enquiry-btn{
    display: none;
  }
  .ser-btn #bar-icon{
    display: block;
  }
  .ser-btn #bar-icon a{
    background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);
    color: #fff;
    font-size: 27px;
    padding: 1px 5px;
  }
  .logo a{
    font-size: 30px;
    font-weight: 800;
  }
  .navbar ul li {
    border-top: 1px solid #e6e6e6;
  }
  .navbar ul li a{
    padding: 15px 16px;
  }
  .navbar ul li>ul{
    background-color: #2b5570;
  }
  .navbar ul li>ul li a{
    font-size: 13px;
    padding: 10px 25px;
  }
  .navbar ul ul li a .down-arrow{
    font-size: 18px;
    transform: rotate(0deg);
  }
  .navbar ul li a .down-arrow{
    right: 10px;
    top: 18px;
    font-size: 16px;
  }
  .navbar ul li ul li>ul{
    background-color: #0162cA;
  }

  #menu{
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }
  #menu.show{
    overflow-y: scroll;
    visibility: visible;
    opacity: 1;
    max-height: 100vh;
  }
  .submenu{
    display: none;
  }
  .submenushow{
    display: block;
  }
}

/********** Header End **********/


/********** Banner Start **********/

.banner{
  position: relative;
  overflow: hidden;
}
.banner .banner-carousel{
  position: relative;
}
.banner .slide-item{
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 172px 0px 170px 0px;
  overflow: hidden;
  background-color: #03031c;
}
.banner .slide-item:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 105%;
  background: radial-gradient(#151533e0, #07020f96);
  top: 0px;
  right: 0px;
  z-index: 2;
}
.banner .slide-item:after{
  content: "";
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);;
  width: 600px;
  height: 230px;
  position: absolute;
  right: -250px;
  bottom: -140px;
  z-index: 2;
  transform: skewY(140deg) translateX(50px);
  opacity: 0;
  transition-delay: 0.8s;
  transition-duration: 1200ms;
}
.banner .owl-item.active .slide-item:after{
  opacity: 0.3;
  transform: skewY(140deg) translateX(50px);
  right: -50px;
}
.banner .slide-item .image-layer{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  transition: all 6000ms linear;
  z-index: 0;
}
.banner .slide-item .shape1{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -680px;
  width: 865px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);;
  z-index: 1;
  animation: float-obj-y infinite 4s;
  opacity: 0.5;
}
@keyframes float-obj-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}
.banner .slide-item .shape2{
  position: absolute;
  left: -180px;
  bottom: -60px;
  width: 330px;
  height: 400px;
  border-radius: 0;
  transform: rotate(34deg);
  background: linear-gradient(45deg, #3f5965 0%, #00BF63 100%);;
  z-index: 2;
  filter: hue-rotate(8deg);
  opacity: 0.5;
  transition-duration: 1000ms;
}
.auto-container{
  position: static;
  max-width: 1380px;
  padding: 0px 15px;
  margin: 0 auto;
}
.banner .slide-item .content-box{
  position: relative;
  display: block;
  z-index: 5;
  width: 100%;
  padding: 0 30px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}
.banner .slide-item .content-box .title{
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 82px;
  font-weight: 900;
  margin-bottom: 30px;
  opacity: 0;
  max-width: 780px;
  z-index: 11;
  color: #fff;
  transition: all 1000ms ease;
  transform: translateY(100px);
  letter-spacing: 0.01em;
}
.banner .active .slide-item .content-box .title{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}
.banner .slide-item .content-box .text{
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 17px;
  line-height: 36px;
  opacity: 0;
  max-width: 600px;
  z-index: 11;
  transform: translateY(100px);
  transition: all 1300ms ease;
}
.banner .active .slide-item .content-box .text{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1300ms;
}
.banner .slide-item .content-box .btn-box{
  position: relative;
  opacity: 0;
  z-index: 11;
  transform: translateY(100px);
  transition: all 1300ms ease;
}
.banner .active .slide-item .content-box .btn-box{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1600ms;
}
.site-btn1{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  padding: 14px 42px;
  font-weight: 500;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
  z-index: 3;
}
.site-btn1:hover{
  color: #3f5965;
}
.site-btn1:before{
  content: "";
  position: absolute;
  height: 400px;
  width: 430px;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translateX(-30%) translateY(-40%) scale(0);
  transition: all 0.5s ease-out 0s;
  z-index: -1;
}
.site-btn1:hover::before{
  background-color: #ffffff;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.site-btn2{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  padding: 14px 42px;
  font-weight: 500;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 0.5px;
  z-index: 3;
}
.site-btn2:hover{
  color: #ffffff;
  border: 1px solid transparent;
}
.site-btn2:before{
  content: "";
  position: absolute;
  height: 400px;
  width: 430px;
  top: 50%;
  left: 50%;
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);
  border-radius: 50%;
  transform: translateX(-30%) translateY(-40%) scale(0);
  transition: all 0.5s ease-out 0s;
  z-index: -1;
}
.site-btn2:hover::before{
  background-color: #ffffff;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.banner .owl-nav button{
  background: #ffffff2e!important;
  border: 1px solid rgba(59,56,235,0.05)!importants;
}
.banner .owl-nav button:hover{
  background: rgba(0, 191, 99, 0.4)!important;
}
.banner .owl-nav button i{
  line-height: 54px;
  color: #ffffff;
}
.banner:hover .owl-nav button.owl-prev, .banner:hover .owl-nav button.owl-next{
  opacity: 1;
  visibility: visible;
}
.banner .owl-nav button.owl-prev, .banner .owl-nav button.owl-next{
  height: 65px;
  width: 65px;
  left: 0;
  opacity: 0;
  top: 45%;
  border-radius: 8px;
  visibility: visible;
  transition: all 300ms ease;
  font-size: 18px;
  line-height: 45px;
  position: absolute;
  text-align: center;
  transform: translate(0, -50%);
}
.banner .owl-nav button.owl-next{
  right: 0;
  left: auto;
}
/********** Banner End **********/


/********** Feature Start **********/
.feature{
  margin-top: -60px;
}
.feature-box{
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 500ms ease;
  border-radius: 12px;
  z-index: 1;
  position: relative;
}
.feature-box:hover{
  transform: translateY(-10px);
}
.feature-box .feature-box-inner{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px 0px;
  text-align: center;
  z-index: 1;
}
.feature-box .feature-box-inner:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #3f5965;
  border-radius: 10px;
  z-index: -1;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: center center;
  transform: scale(1, 0);
}
.feature-box:hover .feature-box-inner::before{
  -webkit-transform: scale(1, 1);
  transform: scaleX(1, 1);
  transform-origin: center center;
}
.feature-box .feature-box-inner .feature-shape{
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 500ms ease;
  transform: translateX(-10%);
  z-index: -1;
}
.feature-box:hover .feature-box-inner .feature-shape{
  transform: translateX(0%);
}
.feature-box .feature-box-inner .feature-shape img{
  width: 195px;
  opacity: 0.1;
}
.feature-box:hover .feature-box-inner .feature-shape img{
  opacity: 0.3;
}
.feature-box .feature-box-inner .features-count{
  position: absolute;
  top: 10px;
  right: 10px;
  height: 45px;
  width: 56px;
  text-align: center;
}
.feature-box .feature-box-inner .features-count{
  color: transparent;
  opacity: 0.15;
  font-size: 30px;
  -webkit-text-stroke: 1px #3f5965;
  line-height: 45px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  position: absolute;
  right: 0;
  top: 0;
}
.feature-box:hover .feature-box-inner .features-count{
  opacity: 0;
}
.feature-box .feature-box-inner .icon{
  margin-bottom: 15px;
  margin-top: 10px;
  width: 80px;
}
.feature-box:hover .feature-box-inner .icon{
  filter: brightness(0) invert(1);
}
.feature-box .feature-box-inner .features-title h5{
  font-size: 15px;
  line-height: 1.2;
  color: #232323;
  font-weight: 800;
}
.feature-box:hover .feature-box-inner .features-title h5{
  color: #ffffff;
}
/********** Feature End **********/

/********** About Start **********/
.about{
  position: relative;
  padding: 100px 0;
  background-image: url(../../assets/img/about-bg.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.about:before{
  opacity: 0.4;
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.about-content{
  position: relative;
}
.about-content h5{
  position: relative;
  padding-left: 70px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #3f5965;
}
.about-content h5:before{
  content: "";
  height: 1px;
  width: 55px;
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #3f5965;
}
.about-content h5:after{
  position: absolute;
  content: "";
  height: 4px;
  width: 35px;
  background: #3f5965;
  left: 0px;
  bottom: 12px;
}
.about-content h2{
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: #232323;
  position: relative;
}
.about-content h2 span{
  color: #3f5965;
}
.about-inner-box{
  position: relative;
  transition: all 0.5s ease-in-out 0s;
  display: flex;
  align-items: start;
}
.about-inner-box .icon{
  margin-right: 30px;
}
.about-inner-box .icon img{
  width: 100px;
}
.about-inner-box .content h4{
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #232323;
  font-weight: 700;
}
.about-image-box{
  margin-right: 60px;
  position: relative;
}
.about-image-box .about-img-1{
  position: absolute;
  right: -110px;
  width: 415px;
  bottom: 45px;
  border: 15px solid #ffffff;
  z-index: 3;
}
.about-image-box .about-image2{
  width: 490px;
  margin-left: 70px;
  position: relative;
  overflow: hidden;
}
.about-image-box .about-image2:before{
  position: absolute;
  top: 0;
  left: -80%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}
.about-image-box .experience{
  background-image: url(../../assets/img/experience.jpg);
  padding: 40px;
  text-align: center;
  position: absolute;
  background-size: cover;
  width: 230px;
  height: 230px;
  right: 140px;
  bottom: 50px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  border-radius: 50%;
}
.about-image-box .experience:after{
  content: "";
  background: rgba(0, 191, 99, 0.92);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 50%;
}
.about-image-box .experience p{
  z-index: 1;
  position: relative;
  color: #fff;
  margin-bottom: 0;
}
.about-image-box .experience h4{
  z-index: 1;
  position: relative;
  color: #fff;
  font-size: 32px;
/*  line-height: 75px;*/
  margin-bottom: 10px;
  -webkit-text-fill-color: #bc917600;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
}
/********** About End **********/


/********** Services Start **********/
.services{
  background-color: #f1f3f8;
  padding: 100px 0;
  position: relative;
}
.section-title{
  margin-bottom: 50px;
  position: relative;
}
.section-title h5{
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);
  display: inline-block;
  padding: 6px 24px;
  border-radius: 30px;
  font-size: 18px;
  margin-bottom: 10px;
  z-index: 1;
}
.section-title h2{
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
  color:#232323;
}
.section-title .bg-text{
  font-size: 120px;
  position: absolute;
  opacity: 1;
  left: 0;
  right: 0;
  top: -85px;
  color: #353542;
  font-weight: 800;
  z-index: 0;
  text-transform: none;
  letter-spacing: 5px;
  -webkit-text-fill-color: #ffffff00;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0e131721;
}
.service-box{
  position: relative;
  margin-bottom: 30px;
  transition: all 400ms ease;
}
.service-box .service-img{
  position: relative;
  display: block;
  overflow: hidden;
  background: #0d1525;
  border-radius: 10px 10px 0 0;
}
.service-box .service-content{
  position: relative;
  display: block;
  padding: 80px 30px 30px 30px;
  box-shadow: 0 0px 30px rgba(30,13,81,0.08);
  border-radius: 0 0 60px 8px;
}
.service-box .service-content .service-count{
  position: absolute;
  top: 15px;
  right: 10px;
  color: transparent;
  opacity: 0.15;
  font-size: 81px;
  -webkit-text-stroke: 1px #3f5965;
  line-height: 45px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.service-box .service-content .icon{
  position: absolute;
  background: linear-gradient(45deg, #00BF63 0%, #3f5965 100%);
  width: 80px;
  height: 80px;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  left: 30px;
  top: -40px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 15%, 100% 100%, 100% 100%, 0% 100%);
}
.service-box .service-content img{
  filter: brightness(0) invert(1);
  width: 40px;
}
.service-box .service-content h4 a{
  color: #232323;
  display: inline-block;
  position: relative;
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
.service-box .service-content .service-btn{
  color: #808093;
  font-weight: 500;
  margin-top: 20px;
  text-decoration: underline;
}
/********** Services End **********/


/********** Testimonial Start **********/
.testimonial{
  background-image: url(../../assets/img/testimonial-bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 100px;
  padding-bottom: 180px;
}
.testimonial:before{
  background: linear-gradient(45deg, #3f5965 0%, #00BF63 100%);
  opacity: 0.9;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.testimonial-block{
  position: relative;
  display: block;
  padding: 25px 40px 25px;
  padding-left: 0;
  z-index: 1;
}
.testimonial-block:before{
  position: absolute;
  top: 0;
  left: 70px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.07);
  content: "";
  z-index: -1;
  border-radius: 8px;
}
.testimonial-block .testimonial-item{
  position: relative;
  display: block;
  padding-left: 170px;
}
.testimonial-block .testimonial-item .testimonial-img-block{
  position: absolute;
  top: 15px;
  left: 0;
}
.testimonial-block .testimonial-item .testimonial-img-block .img{
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-block .testimonial-item .testimonial-img-block .img img{
  width: 100%;
}
.testimonial-block .testimonial-item .testimonial-img-block .test-quote{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #15ebae;
}
.testimonial-block .testimonial-item .testimonial-content-block{
  position: relative;
  display: block;
}
.testimonial-block .testimonial-item .testimonial-content-block .text{
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e8fa;
}
.testimonial-block .testimonial-item .testimonial-content-block .testimonial-detail{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-block .testimonial-item .testimonial-content-block .testimonial-detail .testimonial-client-info{
  position: relative;
  display: block;
}
.testimonial-block .testimonial-item .testimonial-content-block .testimonial-detail .testimonial-client-info .name{
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  color: #232323;
}
.testimonial-block .testimonial-item .testimonial-content-block .testimonial-detail .testimonial-client-info .deignation{
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  border-bottom: none!important;
}
.testimonial-block .testimonial-item .testimonial-content-block .testimonial-detail .testimonial-rating{
  padding: 6px 15px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(45deg, #3f5965 0%, #00BF63 100%);
}
.testimonial-block .testimonial-item .testimonial-content-block .testimonial-detail .testimonial-rating li{
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 0;
  font-size: 12px;
}
.testimonial .owl-nav button.owl-prev, .testimonial .owl-nav button.owl-next{
  font-size: 18px;
  height: 50px;
  left: 70px;
  /*line-height: 45px;*/
  position: absolute;
  text-align: center;
  top: auto;
  bottom: -105px;
  width: 50px;
  background: #fff;
  opacity: 1;
  visibility: visible;
  border-radius: 8px;
  transform: translate(0, -50%);
  transition: all 600ms ease 0ms;
}
.testimonial .owl-nav button.owl-next{
  right: auto;
  left: 130px;
}
.testimonial .owl-nav button i{
  color: #3f5965;
  vertical-align: middle;
}
.testimonial-content .title-box{
  position: relative;
}
.testimonial-content .title-box h5{
  color: #ffffff;
  padding: 0px 0 0px 70px;
  font-weight: 700;
  display: inline-block;
  border-radius: 30px;
  font-size: 18px;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}
.testimonial-content .title-box h5:before{
  content: "";
  height: 1px;
  width: 55px;
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #fff;
}
.testimonial-content .title-box h5:after{
  position: absolute;
  content: "";
  height: 4px;
  width: 35px;
  left: 0px;
  bottom: 12px;
  background: #fff;
}
.testimonial-content .title-box h2{
  margin-bottom: 35px;
  font-size: 46px;
  color: #fff;
  line-height: 1.2;
  font-weight: 900;
}
.testimonial-content .title-box h2 span{
  color: #15ebae;
}
.testi-list{
  color: #fff;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 35px;
}
.testi-list li{
  display: inherit;
  position: relative;
  padding-left: 30px;
  margin: 12px 0px;
}
.testi-list li:first-child{
  margin-top: 0;
}
.testi-list li:before{
  position: absolute;
  content: "\f30b";
  color: #3f5965;
  font-weight: 600;
  left: 0px;
  top: 0px;
  font-family: "fontawesome";
}
/********** Testimonial End **********/


/********** Quote Start **********/
.quote{
  background: #f1f3f8;
  padding-top: 100px;
  padding-bottom: 200px;
  position: relative;
}
.quote .quote-content:after{
  background-image: url(../../assets/img/quote-bg.jpg);
  content: "";
  height: 89%;
  width: 838px;
  position: absolute;
  right: 0px;
  bottom: 111px;
  z-index: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  clip-path: polygon(15% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 15%);
}
.home-form{
  padding: 54px 70px 68px 70px;
  box-shadow: 0 0 20px 0px rgba(38,37,37,0.1);
  background-color: #ffffff;
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 1;
  border-radius: 8px;
  background-image: url(../../assets/img/home-form-bg.png);
}
.home-form h5{
  margin-bottom: 10px;
  position: relative;
  padding-left: 70px;
  font-weight: 700;
  font-size: 18px;
  color: #3f5965;
}
.home-form h5:before{
  content: "";
  height: 1px;
  width: 55px;
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #3f5965;
}
.home-form h5:after{
  position: absolute;
  content: "";
  height: 4px;
  width: 35px;
  background: #3f5965;
  left: 0px;
  bottom: 12px;
}
.home-form h2{
  margin-bottom: 45px;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
  color: #232323;
}
.home-form form .form-control{
  height: 56px;
  padding: 10px 20px;
  border: 1px solid #e8e9ef;
  background: #f1f3f8;
  font-size: 16px;
  line-height: 24px;
  color: #0d1525;
  min-width: 100%;
  border-radius: unset;
}
.home-form form .form-control:focus{
  border-color: #3f5965;
  color: #212529;
  background-color: #fff;
  box-shadow: none;
}
.home-form form textarea{
  height: 150px!important;
}
/********** Quote End **********/

/********** Client Start **********/
.client{
  position: relative;
  display: block;
  margin-top: -90px;
}
.client .client-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 75px 45px;
  background: linear-gradient(45deg, #3f5965 0%, #00BF63 100%);;
  overflow: hidden;
  border-radius: 8px;
}
.client .client-inner:after{
  content: "";
  background-image: url(../../assets/img/wave.png);
  background-size: cover;
  background-position: center left;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.35;
  filter: brightness(1);
  animation: heartbeat 1.5s infinite alternate;
}
@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.client .client-item{
  padding: 20px;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 300ms ease-out 0s;
}
.client .client-item:hover{
  opacity: 1;
  filter: grayscale(0);
}
/********** Client End **********/

/********** Blogs Start **********/
.blogs{
  background: #f1f3f8;
  padding: 100px 0;
}
.blog-box{
  margin-bottom: 30px;
}
.blog-box .blog-img{
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.blog-box .blog-img:after{
  position: absolute;
  background: linear-gradient(-60deg, #252531e3, #332304ed);
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  bottom: 0;
  opacity: 0.15;
  border-radius: 8px 8px 0 0;
  transition: all 500ms ease-out 0s;
}
.blog-box .blog-img img{
  transition: all 400ms ease-out 0s;
  border-radius: 8px 8px 0 0;
}
.blog-box .blog-desc{
  padding: 30px 25px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 0 0 8px 8px;
}
.blog-box .blog-desc ul li{
  display: inline-block;
  margin-left: 10px;
  color: #a5a5a5;
}
.blog-box .blog-desc ul li i{
  margin-right: 5px;
  color: #00BF63;
}
.blog-box .blog-desc h4{
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #232323;
}
.blog-box .blog-desc h5{
  font-size: 20px;
  color: #232323;
  font-weight: 700;
}
.blog-box .blog-desc h4 a{
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #232323;
}
.blog-box .blog-btn{
  color: #808093;
  font-weight: 500;
  margin-top: 20px;
  text-decoration: underline;
}
/********** Blogs End **********/


/********** Footer Start **********/
.footer{
  position: relative;
  padding: 110px 0 0;
}
.footer:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: #3f5965;
}
.footer-bg{
  position: absolute;
  bottom: 30px;
  width: 520px;
  left: -135px;
  opacity: 0.12;
  z-index: 0;
  animation: float-obj-y infinite 3s;
}
.pdb-65{
  padding-bottom: 65px;
}
.footer-widget{
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
}
.footer-logo img{
  width: 190px;
}
.social-list li{
  display: inline;
  margin-right: 5px;
  z-index: 1;
  position: relative;
}
.social-list li a{
  background: #151d35;
  height: 42px;
  width: 42px;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 42px;
  font-size: 16px;
  transition: all 300ms ease-out 0s;
}
.social-list li a:hover{
  background: #15ebae;
  color: #232323;
}
.footer-widget h5{
  margin-bottom: 30px;
  position: relative;
  color: #fff!important;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}
.footer-widget h5:after{
  position: absolute;
  content: "";
  height: 4px;
  width: 58px;
  left: 0;
  bottom: -15px;
  background: #00BF63;
  border-radius: 6px;
}
.footer-widget .footer-links li{
  display: inherit;
  margin-bottom: 10px;
}
.footer-widget .footer-links li a{
  position: relative;
  padding-left: 30px;
  transition: all 300ms ease;
  color: #ffffff;
}
.footer-widget .footer-links li a:hover{
  color: #00BF63;
}
.footer-widget .footer-links li a:before{
  position: absolute;
  content: "\f061";
  left: 0px;
  /*top: -3px;*/
  font-family: "fontawesome";
  font-weight: 600;
}
.footer-widget .footer-contact li{
  position: relative;
  padding-left: 30px;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-widget .footer-contact li a{
  color: #fff;
}
.footer-widget .footer-contact li a:hover{
  color: #00BF63;
}
.footer-widget .footer-contact li i{
  position: absolute;
  left: 0;
  top: 5px;
}
.newsletter-from {
  position: relative;
}
.newsletter-from .email {
  display: flex;
  align-items: center;
  width: 100%;
}
.newsletter-from .email input[type="email"] {
  width: 100%;
  background: #151d35;
  color: #bbb7c2;
  padding: 15px 30px;
  letter-spacing: 0.5px;
  font-size: 14px;
  border-radius: 8px;
  outline: none;
  border: none;
}
.newsletter-from .submit {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0px, -50%);
}
.newsletter-from .submit button {
  color: #3f5965;
  background-color: transparent;
  border-color: transparent;
  margin-top: 5px;
  outline: none;
  border: none;
}
.newsletter-from .submit button i {
  background: #15ebae;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  color: #232323;
}
.footer .copyright{
  padding: 30px 0;
  background: #151d35;
  z-index: 1;
  position: relative;
}
/********** Footer End **********/


/********** Page Title Start **********/
.page-title{
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 150px 0;
}
/*.page-title:before{
  background-image: url(../../assets/img/breadcrumb.png);
  bottom: 30px;
  content: "";
  height: 450px;
  left: 0;
  position: absolute;
  transform: skewY(3deg);
  width: 50%;
  z-index: -1;
}
*/.page-title:after{
  background-image: url(../../assets/img/breadcrumb.png);
  bottom: 0px;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  /* transform: skewY(-3deg); */
  width: 100%;
  z-index: -1;
  background-position: center;
  background-size: contain;
}
.page-title h1{
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 3px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
}
.page-title .breadcrumb{
  display: inline-block;
  background: #3f5965;
  padding: 8px 40px;
}
.page-title .breadcrumb li{
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.page-title .breadcrumb li a{
  color: #ffffff;
}
.page-title .breadcrumb-item+.breadcrumb-item::before{
  color: #ffffff;
  content: "\f054";
  font-family: "fontawesome"
}
/********** Page Title End **********/


/********** Contact Page Start **********/
.contact{
  background-image: url(../../assets/img/contact-bg.png);
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact:before{
  background: #fff;
  opacity: 0.2;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.contact-block{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background: #f1f3f8;
  padding: 30px 30px;
  border: 1px solid #ece9e3;
}
.contact-block .icon i{
  width: 64px;
  height: 64px;
  background: #3f5965;
  text-align: center;
  line-height: 64px;
  display: inline-block;
  border-radius: 6px;
  font-size: 36px;
  color: #ffffff;
}
.contact-block .detail{
  margin-left: 30px;
}
.contact-block .detail h5{
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #232323;
}
.contact-block .detail p{
  margin-bottom: 0px;
}
.contact-box-left h5{
  margin-bottom: 5px;
  position: relative;
  padding-left: 70px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  color: #3f5965;
}
.contact-box-left h5:before{
  content: "";
  height: 1px;
  width: 55px;
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #3f5965;
}
.contact-box-left h5:after{
  position: absolute;
  content: "";
  height: 4px;
  width: 35px;
  background: #3f5965;
  left: 0px;
  bottom: 12px;
}
.contact-box-left h2{
  margin-bottom: 30px;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 900;
}
.contact-soacial li{
  display: inline;
  margin-right: 5px;
  z-index: 1;
  position: relative;
}
.contact-soacial li a{
  height: 48px;
  width: 48px;
  font-size: 18px;
  line-height: 48px;
  background-color: #3f5965;
  display: inline-block;
  color: #fff;
  text-align: center;
}
.contact-form textarea, .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="password"] {
  background: #f1f3f8!important;
  border: 1px solid #ece9e3;
}
.contact-form .form-control, .contact-form .form-select{
  box-shadow: none;
  outline: none;
  border: 1px solid #e8e9ef;
  background: #f1f3f8;
  font-size: 16px;
  line-height: 24px;
  color: #0d1525;
  height: auto;
  padding: 25px 20px;
  min-width: 100%;
  height: 56px;
  position: relative;
  border-radius: 0px;
}
 .contact-form.form-control:focus, .contact-form .form-select:focus{
  box-shadow: none;
  border-color: #3f5965;
}
.contact-form textarea {
  display: inline-block;
  min-height: 190px;
}
/********** Contact Page End **********/


/********** Services Start **********/
.services-page{
  padding: 100px 0;
  position: relative;
}
/*.service-img{
  margin-bottom: 40px;
}*/
.service-detail-text .service-desc h4{
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #232323;
}
.service-detail-text .service-desc ul li{
  display: inherit;
  position: relative;
  padding-left: 30px;
  margin: 12px 0px;
  margin-top: 0;
}
.service-detail-text .service-desc ul li:before{
  position: absolute;
  content: "\f058";
  color: #3f5965;
  font-weight: 600;
  left: 0px;
  top: 0px;
  font-family: "fontawesome";
}
.service-sidebar{
  margin-bottom: 30px;
}
.service-sidebar .service-list{
  background: #f1f3f8;
  padding: 40px;
}
.service-sidebar .service-list ul li{
  list-style-type: none;
}
.service-sidebar .service-list ul li a{
  display: block;
  color: #232323;
  padding: 12px 20px;
  transition: all 300ms ease-out 0s;
  position: relative;
  z-index: 1;
  background: #ffffff;
  margin-bottom: 10px;
  font-weight: 500;
  overflow: hidden;
}
.service-sidebar .service-list ul li:hover a{
  color: #ffffff;
}
.service-sidebar .service-list ul li.active a{
  color: #ffffff;
}
.service-sidebar .service-list ul li a:before{
  content: "";
  width: 10px;
  top: 0;
  left: -6px;
  height: 100%;
  position: absolute;
  transition: all 0.4s ease-out;
  z-index: -1;
  background: #3f5965;
  transform: skewX(13deg);
}.service-sidebar .service-list ul li:hover a:before{
  background-color: #3f5965;
  height: 100%;
  width: 105%;
  top: 0;
}
.service-sidebar .service-list ul li.active a:before{
  content: "";
  width: 105%;
  top: 0;
  height: 100%;
  position: absolute;
  transition: all 0.4s ease-out;
  z-index: -1;
  background-color: #3f5965;
}
.service-sidebar .service-list ul li a i{
  font-size: 16px;
  margin-right: 15px;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-7px);
}
.widget-help{
  padding: 30px;
  background: url(../../assets/img/need-help-bg.jpg);
  background-size: cover;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.widget-help:after{
  content: "";
  background: #3f5965;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.94;
  z-index: 0;
}
.widget-help .icon{
  position: relative;
  z-index: 1;
  height: 76px;
  width: 76px;
  line-height: 76px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto 35px;
  box-shadow: 0 0 0px 10px #ffffff1c;
}
.widget-help .icon i{
  font-size: 36px;
  line-height: 76px;
  color: #3f5965;
}
.widget-help  h4{
  position: relative;
  z-index: 1;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 800;
}
.widget-help a{
  font-size: 28px;
  color: #fff!important;
  font-weight: 800;
  z-index: 1;
  position: relative;

}
/********** Services End **********/


/********** Blog detail Start **********/
.blog-detail{
  position: relative;
  padding: 100px 0;
}
.blog-sidebar{
  padding: 40px 45px 40px 45px;
  margin-bottom: 38px;
  background: #f1f3f8;
}
.blog-sidebar h4{
  position: relative;
  padding: 5px 5px 5px 30px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}
.blog-sidebar h4:after{
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  left: 0;
  top: 0;
  background: #3f5965;
}
.blog-sidebar ul li{
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}
.blog-sidebar ul li:before{
  position: absolute;
  content: "\f0da";
  color: #3f5965;
  font-weight: 600;
  left: 0px;
  top: 5px;
  font-family: "fontawesome";
}
.blog-sidebar ul li a{
  color: #515264;
}
.blog-sidebar .single-post{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.blog-sidebar .single-post .img{
  margin-right: 10px;
  width: 80px !important;
  height: 60px !important;
}
.blog-sidebar .single-post .img img{
  border-radius: 6px;
  width: 80px;
  height: 60px;
}
.blog-sidebar .single-post .content .date{
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}
.blog-sidebar .single-post .content .date i{
  margin-right: 5px;
  color: #3f5965;
}
.blog-sidebar .single-post .content h5 a{
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  color: #232323;
}
/********** Blog detail End **********/


/********** Career Start **********/
.process{
  background-image: url(../../assets/img/carerr-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 200px;
  padding-top: 110px;
  margin-top: 100px;
}
.process:before{
  opacity: 0.9;
  background-color: #0d1525;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.process-item{
  position: relative;
  display: block;
  text-align: center;
  padding: 0 40px 0;
}
.process-item .icon-box{
  position: relative;
  display: block;
  height: 150px;
  width: 150px;
  margin: 0 auto;
}
.process-item .icon-box .icon{
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0px 0px 57px 0px rgba(0,0,0,0.1);
  height: 148px;
  width: 148px;
  line-height: 148px;
  margin: 0 auto;
  z-index: 1;
  border-radius: 20px 8px 20px 0px;
}
.process-item .icon-box .icon:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #3f5965;
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.54, 0.33, 0.78, 0.84);
  transform: scale(0);
  z-index: -1;
  border-radius: 20px 8px 20px 0px;
}
.process-item:hover .icon-box .icon:before{
  transform: scale(1.1);
}
.process-item .icon-box .icon i{
  font-size: 64px;
  color: #3f5965;
}
.process-item:hover .icon-box .icon i{
  color: #ffffff;
}
.process-item .icon-box .count{
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  background-color: #3f5965;
  z-index: 2;
  border-radius: 6px;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  font-weight: 600;
}
.process-item:hover .icon-box .count{
  background-color: #fff;
  color: #3f5965;
}
.process-item .icon-box .count:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.process-item .detail{
  position: relative;
  display: block;
  margin-top: 21px;
}
.process-item .detail h4{
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}
.process-item .detail p{
  color: #fff;
  margin-bottom: 0;
}
.career-form{
  background: #ffffff;
  background-image: url(../images/bg/abs-bg2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  margin-top: -125px;
  z-index: 1;
  position: relative;
  box-shadow: 6px 6px 25px 0px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 35px 40px 30px 40px;
  margin-bottom: 70px;
}
.career-form .form-control, .career-form .form-select{
  box-shadow: none;
  outline: none;
  border: 1px solid #e8e9ef;
  background-color: #fff!important;
  font-size: 16px;
  line-height: 24px;
  color: #0d1525;
  height: auto;
  padding: 13px 20px;
  min-width: 100%;
  height: 56px;
  position: relative;
  border-radius: 0px;
}
.career-form .form-control:focus, .career-form .form-select:focus{
  box-shadow: none;
  border-color: #3f5965;
}
.career-form textarea{
  height: 150px!important;
}
/********** Career End **********/