@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}
ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
}
a{
  text-decoration: none;
}

/********** Header **********/
.header{
  background: #ffffff;
  position: relative;
  width: 100%;
  z-index: 9;
}
.header-top{
  background: #0f0f0f;
  padding: 11.5px 0;
  position: relative;
}
.header.header-sticky .header-bottom{
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0px 7px 18px rgb(24 16 16 / 5%);
  animation: sticky 1s;
  z-index: 999;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.header-top:before{
  content: "";
  position: absolute;
  border-bottom: 47px solid #189ce7;
  border-left: 0 solid transparent;
  border-right: 45px solid transparent;
  height: 0;
  width: 50%;
  top: 0;
}
.topbar-left ul{
  color: #ffffff;
}
.topbar-left ul li{
  display: inline-block;
  padding-right: 25px;
  position: relative;
}
.topbar-left ul li:before{
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  background: rgba(106, 108, 113, 0.5);
  top: 3px;
  right: 10px;
}
.topbar-left ul li:last-child::before{
  display: none;
}
.topbar-left ul li a{
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  transition: 0.4s;
  padding-left: 5px;
}
.topbar-right ul{
  position: relative;
  top: 1px;
}
.topbar-right ul li{
  display: inline-block;
  position: relative;
  padding-right: 25px;
}
.topbar-right ul li:before{
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  background: rgba(106, 108, 113, 0.6784313725);
  top: 1px;
  right: 10px;
}
.topbar-right ul li:last-child::before{
  display: none;
}
.topbar-right ul li a i{
  font-size: 18px;
  font-weight: 400;
  transition: 0.4s;
  color: #fff;
}
.topbar-right ul li a i.facebook:hover{
  color: #4267B2;
}
.topbar-right ul li a i.instagram:hover{
  color: #833AB4;
}
.topbar-right ul li a i.twitter:hover{
  color: #1DA1F2;
}
.topbar-right ul li a i.linkedin:hover{
  color: #0A66C2;
}
.header-bottom{
  position: relative;
  background-color: #ffffff;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 20px rgb(0 0 0 / 5%);
}
.logo a{
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.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: #0f0f0f;
  font-size: 17px;
  font-weight: 700;
  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: #dd8a3c;
}
.ser-btn ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.ser-btn ul li a{
  text-decoration: none;
}
.ser-btn #ser-btn-icon{
  display: inline-block;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
.ser-btn .info-btn a{
  color: #0f0f0f;
  position: relative;
  display: block;
  font-size: 16px;
  padding: 8px 0;
  padding-left: 60px;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  line-height: 20px;
  margin-left: 30px;
}
.ser-btn .info-btn a i{
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
  line-height: 50px;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #dd8a3c;
  font-size: 16px;
  transform: rotate(-33deg);
}
/*.ser-btn .info-btn a:hover{
  color: #152733;
  background-color: #fff;
  border: 2px solid #152733;
}*/
#bar-icon{
  display: none;
}
.down-arrow{
  position: absolute;
  right: 0;
  top: 28px;
  display: inline-block;
  font-size: 15px;
}
.navbar ul ul li a .down-arrow{
  display: block;
  position: absolute;
  right: 10px;
  top: 17px;
}
@media(min-width:992px){
  .navbar ul li ul{
    position: absolute;
    list-style: none;
    min-width: 250px;
    background-color: #fff;
    background: #ffffff;
    padding: 10px 10px;
    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 ul:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 3px;
    background: #dd8a3c;
    content: "";
    transition: 0.6s;
  }
  .navbar ul li:hover ul:before{
    width: 100%;
  }
  .navbar ul>li:hover>ul{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .navbar ul ul li{
    position: relative;
    transition: 0.4s;
  }
  .navbar ul ul li:hover{
    padding-left: 20px;
  }
  .navbar ul ul li:before{
    content: "";
    width: 0;
    height: 2px;
    background: #dd8a3c;
    position: absolute;
    top: 21px;
    left: 0;

  }
  .navbar ul ul li:hover::before{
    width: 14px;
  }
  .navbar ul ul li a{
    display: block;
    color: #0f0f0f;
    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-color: #dd8a3c;
    border-color: transparent;
    padding-left: 25px;
  }*/
  .navbar ul li ul ul{
    position: absolute;
    left: 104%;
    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{
    position: unset;
  }
  .navbar>ul{
    position: absolute;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
    border-top: 8px solid #dd8a3c;

  }
  .header{
    height: 60px;
  }
  .ser-btn #bar-icon{
    display: block;
  }
  .ser-btn .info-btn{
    display: none;
  }
  .ser-btn #bar-icon a{
    background-color: #dd8a3c;
    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: #fff;
  }
  .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: 17px;
    font-size: 14px;
  }
  .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;
  }
}

/********** Banner **********/
.banner-section{
  position: relative;
  overflow: hidden;
}
.banner-section .slide-item{
  position: relative;
}
.banner-section .owl-carousel, .banner-section .owl-stage-outer, .banner-section .owl-stage, .banner-section .owl-item, .banner-section .slide-item {
    height: 100%;
}
.banner-section .active .bg-image{
   -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.banner-section .bg-image{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  transform: scale(1);
  transition: all 3000ms linear;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.banner-section .slide-item .bg-image:before{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../assets/img/slide-bg-pattern.png);
  background-color: #0f0f0f;
  opacity: 0.6;
  content: "";
}
.banner-section .content-box{
  position: relative;
  padding: 100px 0;
  text-align: center;
}
.banner-section .content-box .sub-title{
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  line-height: 30px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
  border-radius: 10px;
  margin-bottom: 15px;
}
.owl-carousel .animate-1{
  opacity: 0;
  transform: translateY(100px);
  transition: all 500ms ease;
}
.owl-carousel .active .animate-1 {
  opacity: 1;
  transform: translateY(0);
}
.banner-section .content-box .title{
  font-size: 75px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.04em;
  margin-bottom: 35px;
}
.owl-carousel .animate-2{
  opacity: 0;
  transform: translateY(100px);
  transition: all 500ms ease;
}
.owl-carousel .active .animate-2 {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0);
}
.banner-section .content-box .btn-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-carousel .active .animate-3 {
  transition-delay: 600ms;
  opacity: 1;
  transform: translateY(0);
}
.owl-carousel .animate-3{
  opacity: 0;
  transform: translateY(100px);
  transition: all 500ms ease;
}
.site-btn1{
  position: relative;
  font-size: 16px;
  line-height: 28px;
  padding: 15px 50px;
  font-weight: 500;
  overflow: hidden;
  color: #ffffff;
  background: #dd8a3c;
  transition: all 500ms ease;
  border-radius: 10px;
}
.site-btn1:hover{
  color: #fff;
}
.site-btn1:before{
  left: 0;
  top: 0;
  content: "";
  background-color: #000;
  border-radius: 10px;
  height: 100%;
  width: 24px;
  position: absolute;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.site-btn1:hover:before{
  width: 100%;
}
.site-btn1 span{
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.site-btn2{
  position: relative;
  font-size: 16px;
  line-height: 28px;
  padding: 15px 50px;
  font-weight: 500;
  overflow: hidden;
  color: #0f0f0f;
  background: #ffffff;
  transition: all 500ms ease;
  border-radius: 10px;
}
.site-btn2:hover{
  color: #0f0f0f;
}
.site-btn2:before{
  left: 0;
  top: 0;
  content: "";
  background-color: #dd8435;
  border-radius: 10px;
  height: 100%;
  width: 24px;
  position: absolute;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.site-btn2:hover:before{
  width: 100%;
}
.site-btn2 span{
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.banner-carousel .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  max-width: 1400px;
  padding: 0 15px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-carousel .owl-nav .owl-next, .banner-carousel .owl-nav .owl-prev {
  display: block;
  margin: 10px 0;
  height: 50px;
  width: 50px;
  color: #0f0f0f !important;
  border-radius: 50%;
  background-color: rgb(255, 255, 255) !important;
  font-size: 20px !important;
  line-height: 50px !important;
  font-weight: 500 !important;
  text-align: center;
  opacity: 0.2;
  transition: all 500ms ease;
}
.banner-carousel .owl-nav .owl-next:hover, .banner-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}
.feature-section{
  position: relative;
  z-index: 2;
}
.features-section .row > div {
    padding: 0 5px;
}
.feature-section .feature-block{
  position: relative;
  margin-bottom: 30px;
}
.feature-section .feature-block .inner-box{
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 40px 50px 50px;
  transition: all 300ms ease;
  border-radius: 0 0 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.feature-section .feature-block .inner-box:after{
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.feature-section .feature-block .inner-box:hover:after{
  height: 100%;
  opacity: 0;
  transition: all 400ms linear;
}
.feature-block .inner-box:hover{
  transform: translateY(-15px);
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}
.feature-block:nth-child(3n+1) .inner-box {
  background-image: url(../../assets/img/feature-bg-1.png);
}
.feature-block:nth-child(3n+2) .inner-box{
  background-image: url(../../assets/img/feature-bg-2.png);
}
.feature-block:nth-child(3n+3) .inner-box{
  background-image: url(../../assets/img/feature-bg-3.png);
}
.feature-block .content{
  position: relative;
  padding-left: 90px
}
.feature-block .icon{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 20px;
  font-size: 62px;
  line-height: 1em;
  color: #dd8a3c;
  border-radius: 50px;
  transition: all 300ms ease;
}
.feature-block h6{
  display: block;
  color: #0f0f0f;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-block .text{
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.feature-block:nth-child(3n+2) .inner-box .icon, .feature-block:nth-child(3n+2) .inner-box .text, .feature-block:nth-child(3n+2) .inner-box h6 {
  color: #ffffff;
}
.feature-block:nth-child(3n+3) .inner-box h6 {
  color: #ffffff;
}
.feature-block:nth-child(3n+3) .inner-box .text {
    color: #8f8f8f;
}
.about{
  position: relative;
  padding: 80px 0;
}
.about-img-box {
  position: relative;
}
.about-img2 {
  margin-top: 30px;
}
.about-img4 {
  margin-top: 30px;
}
.about-experience {
  position: absolute;
  background-color: #dd8a3c;
  padding: 40px;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 6px 6px 60px 0px rgb(255 56 56 / 30%);
}
.about-experience h2{
  font-size: 50px;
  line-height: 28px;
  color: #ffffff;
  padding: 0;
}
.about-experience h2 span {
  font-size: 18px;
  line-height: 0px;
  color: #ffffff;
}
.section-heading{
  text-align: center;
}
.section-heading span{
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #dd8a3c;
  padding: 10.5px 28px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
}
.section-heading span:before{
  position: absolute;
  content: "";
  top: 0px;
  left: -40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 40px 0px 0;
  border-color: transparent #dd8a3c transparent transparent;
}
.section-heading span:after {
  position: absolute;
  content: "";
  top: 0px;
  right: -40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 40px 0 0;
  border-color: #dd8a3c transparent transparent transparent;
}
.section-heading h2{
  font-size: 50px;
  color: #0f0f0f;
  line-height: 70px;
  font-weight: 700;
  padding-bottom: 28px;
  margin-bottom: 0;
  line-height: 1.2;
}
.about-content{
  position: relative;
  padding-left: 50px;
  padding-right: 30px;
}
.about-content .float-text{
  position: absolute;
  right: -100px;
  bottom: -130px;
  font-size: 100px;
  color: #f3f3f3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  font-weight: 300;
  transform-origin: top right;
}
.about-content .text{
  font-size: 16px;
  font-weight: 500;
  color: #6c6b6f;
  margin-bottom: 15px;
}
.services{
  padding-bottom: 80px;
}
.service-box{
  padding: 20px;
  border: 2px solid #eeeff1;
  position: relative;
  margin-bottom: 80px;
  justify-content: space-between !important;
  display: flex !important;
}
.service-box .service-img{
  flex: 0 0 auto;
  margin-bottom: -45px;
}
.service-box .service-text{
  position: relative;
  padding-left: 74px;
  padding-top: 33px;
  margin-bottom: -55px;
}
.service-box .service-text .service-icon{
  position: absolute;
  left: -50px;
  top: 37px;
}
.service-box .service-text .service-icon i{
  width: 100px;
  height: 100px;
  line-height: 85px;
  border-radius: 50%;
  background: #dd8a3c;
  border: 10px solid #fff;
  color: #fff;
  font-size: 35px;
  text-align: center;
  display: block;
}
.service-text h4{
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 22px;
}
.service-text h4 a{
  font-size: 22px;
  color: #03041c;
}
.service-text .desc{
  margin-bottom: 35px;
}
.service-box .site-btn1{
  border-radius: 0;
  padding: 15px 40px;
}
.it-service{
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-image: url(../../assets/img/it-service-bg.jpg);
  z-index: 1;
}

.it-service:after{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(30, 28, 28, 0.5);
  z-index: -1;
}

.it-service2:after{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(22, 143, 200, 0.4)!important;
  z-index: -1;
}

.it-service .section-heading{
  padding: 35px;
  background-color: #dd8a3c;
  border-radius: 5px;
}
.it-service-box{
  background: rgba(3, 11, 24, 0.6);
  padding: 40px 30px 35px 30px;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
  margin-bottom: 30px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: 0.7s;
}
.it-service-box:hover{
  background-color: #dd8a3c;
}
.it-service-box2:hover{
  background-color: #ea770b7a;
}
.it-service-box .icon-box{
  margin-bottom: 13px;
}
.it-service-box .icon-box i{
  font-size: 44px;
  color: #dd8a3c;
}
.it-service-box:hover .icon-box i{
  color: #fff;
}
.it-service-box h3 a{
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 30px;
}
.it-service-box p{
  color: #fff;
}
.blog{
  position: relative;
  padding: 80px 0;
}
.blog-box{
  overflow: hidden;
  transition: 0.4s;
  padding-bottom: 22px;
  margin-bottom: 40px;
}
.blog-box .blog-img{
  position: relative;
  overflow: hidden;
}
.blog-box .blog-img img{
  transform: scale(1.05);
  transition: 0.9s;
}
.blog-box .blog-img .blog-meta{
  background: #dd8a3c;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 30px;
  padding: 7px 15px;
  text-align: center;
}
.blog-box .blog-img .blog-meta li{
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 14px;
}
.blog-box .blog-img .blog-meta li i{
  color: #fff;
  margin-right: 4px;
}
.blog-box .blog-desc{
  background: #fbeaea;
  padding: 20px 30px 30px 30px;
  margin: 0 30px;
  position: relative;
}
.blog-box .blog-desc h4 a{
  line-height: 1.1;
  font-weight: 600;
  color: #0f0f0f;
  font-size: 22px;
}
.blog-box .blog-desc p{
  margin-bottom: 16px;
  color: #6c6b6f;
  font-weight: 400;
}
.blog-box .blog-desc i{
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  background: #dd8a3c;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -23px;
  transition: 0.4s;
}
.blog-box .blog-desc i:hover{
  background-color: #0f0f0f;
  color: #fff;
}
.footer{
  padding-top: 120px;
  background-color: #0f0f0f;
  margin-top: 80px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-top{
  position: relative;
  margin-top: -220px;
}
.footer-top-inner{
  align-items: center !important;
  display: flex !important;
}
.footer-top-inner-img{
  flex: 0 0 29%;
}
.footer-top-content{
  flex: 0 0 71%;
  background: url(../../assets/img/footer-top-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 71px 80px 39.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-top-content .text h2{
  color: #ffffff;
  font-size: 35px;
  line-height: 1.2;
  line-height: 1.2;
}
.footer-top-content .text p{
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom{
  padding-top: 80px;
  padding-bottom: 30px;
}
.footer-desc{
  color: #fff;
}
.footer-icon li{
  display: inline-block;
  padding-right: 5px;
}
.footer-icon li i{
  background: rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  transition: 0.4s;
  font-size: 16px;
}
.footer-icon li i:hover{
  background-color: #fff;
  color: #dd8a3c;
}
.footer-widget{
  padding-left: 75px;
}
.footer-widget h4{
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
  color: #ffffff;
}
.footer-widget h4 span{
  color: #dd8a3c;
}
.footer-widget ul li{
  padding-bottom: 12px;
}
.footer-widget ul li a{
  color: #fff;
  font-size: 15px;
}
.footer-widget.last{
  padding: 0px;
}
.footer-widget .contact-details{
  position: relative;
}
.footer-widget .contact-details li{
  position: relative;
  color: #ffffff;
  font-size: 14px;
  padding-left: 55px;
  margin-bottom: 10px;
  line-height: 1.6em;
}
.footer-widget .contact-details li i {
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 18px;
  line-height: 1em;
  background-color: #fff;
  color: #dd8a3c;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.footer-widget .contact-details li span{
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.copyright-area {
    border-top: 1px solid rgba(217, 217, 217, 0.2);
    padding: 28px 0;
}
.copyright-text p{
  color: #fff;
  margin-bottom: 0;
}
.copyright-text p a{
  color: #dd8a3c;
}
.bread-title{
  padding-bottom: 110px;
  padding-top: 135px;
  background-image: url(../../assets/img/breadcrumb.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bread-contnet{
  position: relative;
  z-index: 3 !important;
}
.bread-contnet .sub-title{
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 9px 22px 5px;
  border-left: 3px solid #e42032;
  margin-bottom: 18px;
}
.bread-contnet .sub-title ul li{
  display: inline-block;
  margin-left:10px;
  position: relative;
  padding-right: 20px;
}
.bread-contnet .sub-title ul li:before{
  content: "\f105";
  font-family: "Fontawesome";
  position: absolute;
  right: 0;
}
.bread-contnet .sub-title ul li:last-child::before{
  display: none;
}
.bread-contnet .title{
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.2;
}
.contact-page{
  position: relative;
  padding: 100px 0;
}
.contact-box{
  padding: 38px 30px 32px;
  box-shadow: 0px 3px 20px rgb(255 64 64 / 5%);
  transition: 0.4s;
  margin-bottom: 30px;
}
.contact-box .icon{
  margin-bottom: 10px;
}
.contact-box .icon i{
  margin-bottom: 10px;
  font-size: 44px;
  color:#dd8a3c;
}
.contact-box .details h3{
  margin-bottom: 5px;
  font-weight: 600;
  color: #0f0f0f;
}
.g-map-inner{
  margin-bottom: -10px;
  position: relative;
}
.g-map-contact{
  margin-top: -650px;
  position: relative;
  z-index: 3;
  margin-bottom: 250px;
}
.contact-form{
  box-shadow: 0px 3px 20px rgb(0 33 71 / 5%);
  padding: 50px 50px 30px;
  background: #fff;
}
.contact-form h3{
  color: #0f0f0f;
  font-weight: 600;
  font-size: 24px;
}
.g-map-inner iframe {
    width: 100%;
    height: 700px;
}
iframe{
  max-width: 100%;
}
.form-control{
  background: #F2F7FF;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  border: 0 !important;
  padding: 0 18px;
  font-weight: 400;
  color: #0f0f0f;
}
.form-control:focus{
  box-shadow: none;
  background:#F2F7FF;
}
textarea.form-control{
  height: unset !important;
}
button{
  border: none;
}
.testimonial{
  padding: 100px;
  background: #f4f1ee;
  z-index: 1;
  position: relative;
  display: block;
  margin-bottom: 180px;
}
.testimonial-item{
  position: relative;
  display: block;
  border: 1px solid #ede8e4;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  padding: 50px 50px 45px;
  transition: all 500ms ease;
}
.testimonial-item:hover{
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
  border: 1px solid transparent;
}
.testimonial-item:before{
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 9px;
  background-color: #dd8a3c;
  content: "";
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transform: scaleY(0);
  transition: all 500ms ease;
}
.testimonial-item:hover:before{
  transform: scaleY(1);
}
.testimonial-info{
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.testimonial-img-box{
  position: relative;
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-image:linear-gradient(90deg, rgb(28, 27, 31) 0%, rgb(255, 64, 64) 100%);
}
.testimonial-img{
  position: absolute;
  top: 0;
  left: -10px
}
.testimonial-img img{
  width: 100% !important;
  border-radius: 50%;
}
.testimonial-details{
  margin-left: 20px;
}
.testimonial-details h4{
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  color: #0f0f0f;
}
.testimonial-details p{
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.testimonial-text{
  padding-top: 20px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #6c6b6f;
}
.testimonial-rating{
  position: absolute;
  top: 65px;
  right: -20px;
  display: flex;
  align-items: center;
  background-color: #f4f1ee;
  padding: 13px 20px 14px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 500ms ease;
}
.testimonial-rating:after{
  position: absolute;
  bottom: -15px;
  right: 0;
  content: "";
  border-top: 0px solid transparent;
  border-left: 20px solid #ede8e4;
  border-bottom: 15px solid transparent;
  transition: all 500ms ease;
}
.testimonial-item:hover .testimonial-rating:after{
  border-left: 20px solid #dd8a3c;
}
.testimonial-item:hover .testimonial-rating{
  color: #dd8a3c;
  background-color: #dd8a3c;
}
.testimonial-rating i{
  font-size: 13px;
  color: #dd8a3c;
  transition: all 500ms ease;
}
.testimonial-item:hover .testimonial-rating i{
  color: #fff;
}
.testimonial-carousel .owl-dots {
  position: absolute;
  bottom: 34px;
  left: -404px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.testimonial-carousel .owl-dots .owl-dot{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}
.testimonial-carousel .owl-dots .owl-dot span{
  display: none;
}
.testimonial-carousel .owl-dots .owl-dot.active {
  width: 16px;
  height: 16px;
  background-color: #dd8a3c;
}
.backgound{
  position: relative;
  padding: 120px 0 70px;
  margin-bottom: 80px;
}
.backgound .section-heading h2{
  font-size: 46px;
}
.backgound-bg{
  right: 360px;
  width: auto;
  background-image: url(../../assets/img/background-bg.jpg);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.backgound-content{
  position: relative;
}
.backgound-box{
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  padding-left: 90px;
  transition: all 300ms ease;
}
.backgound-box .content{
  padding-bottom: 25px;
  border-bottom: 1px solid #dcdcdd;
/*  margin-bottom: 15px;*/
}
.backgound-box .content.last{
  border-bottom: none;
}
.backgound-box .content .icon{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 5px;
  height: 58px;
  width: 58px;
  font-size: 20px;
  background-color: #dd8a3c;
  color: #ffffff;
  border-radius: 50px;
  transition: all 300ms ease;
}
.backgound-box .content:hover .icon{
  background-color: #ffffff;
  color: #dd8a3c;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}
.backgound-box .content h5{
  display: block;
  color: #0f0f0f;
  font-weight: 800;
  margin-bottom: 18px;
}
.backgound-box .content p{
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  color: #6a6a6a;
}
.backgound-image{
  position: relative;
  margin-right: -100px;
}
.backgound-image img{
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.service-details{
  padding: 80px 0;
}
.service-sidebar{
  position: relative;
  display: block;
  max-width: 365px;
  width: 100%;
}
.sidebar-widget{
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.sidebar-list li a{
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transition: all 500ms ease;
  display: block;
  background-color: #f5faff;
  border-radius: 15px;
  padding: 19px 40px;
  color: #0f0f0f;
}
.sidebar-list li a:hover{
  color: #dd8a3c;
}
.sidebar-list li a i{
  height: 32px;
  width: 45px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
  color: #191825;
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 15px;
}
.sidebar-list li a:hover i{
  transform: translateY(-50%);
  color: #fff;
  background-color: #dd8a3c;
}
.sidebar-list li + li{
  margin-top: 10px;
}
.sidebar-list li.active a i{
  color: #fff;
  transform: translateY(-50%);
  background-color: #dd8a3c;
}
.service-contact{
  position: relative;
  display: block;
  padding: 57px 55px 50px;
  margin-top: 30px;
  text-align: center;
  z-index: 1;
  background-color: #dd8a3c;
  border-radius: 15px;
  overflow: hidden;
}
.service-contact-shape-1 {
 position: absolute;
  bottom: -215px;
  left: -95px;
  width: 220px;
  height: 500px;
  background-color: #303030;
  mix-blend-mode: soft-light;
  border-radius: 150px;
  transform: rotate(45deg);
  z-index: -1;
}
.service-contact-shape-2{
  position: absolute;
  top: -118px;
  right: -130px;
  width: 180px;
  height: 350px;
  background-color: #fff;
  mix-blend-mode: soft-light;
  border-radius: 186px;
  transform: rotate(48deg);
}
.service-contact h2{
  font-size: 38px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 21px;
  font-weight: 700;
}
.service-contact .icon{
  height: 73px;
  width: 73px;
  background-color: #fff;
  color: #191825;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 500ms ease;
}
.service-contact{
  position: relative;
  display: block;
  margin-top: 21px;
}
.service-call p{
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 32px;
  font-weight: 600;
  opacity: 0.7;
}
.service-call a{
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  transition: all 500ms ease;
}
.service-details-content h3{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f0f0f;
}
.service-details-content p{
  color: #6a6a6a;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.blog-page{
  padding: 80px 0;
}
.blog-page-box{
  margin-bottom: 35px;
  overflow: hidden;
  transition: 0.4s;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 40px;
}
.blog-page-img{
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-page-img img{
  transform: scale(1.05);
  transition: 0.9s;
}
.blog-page-box .details{
  position: relative;
}
.blog-page-box .details h2 a{
  margin-bottom: 3px;
  color: #0f0f0f;
  font-size: 34px;
  font-weight: 600;
}
.blog-page-box .details .blog-meta{
  margin-bottom: 15px;
}
.blog-page-box .details .blog-meta li{
  display: inline-block;
  margin-right: 12px;
  color: #8A8A8A;
  font-size: 14px;
}
.blog-page-box .details .blog-meta li i{
  margin-right: 4px;
  color: #dd8a3c;
}
.blog-page-box .details p{
  margin-bottom: 16px;
  color: #616161;
  font-size: 16px;
}
.blog-page .site-btn1{
  padding: 15px 30px;
}
.blog-sidebar .widget{
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.blog-sidebar .widget h4{
  margin-bottom: 30px;
  font-size: 24px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 600;
  color: #0f0f0f;
}
.blog-sidebar .widget h4:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 60px;
  background: #dd8a3c;
  z-index: 2;
}
.blog-sidebar .widget h4:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background: #E1E1E1;
}
.widget.category ul li{
  list-style: none;
  transition: 0.6s;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(66, 74, 97, 0.1);
}
.widget.category ul li a{
  color: #6c757d;
}
.media{
  display: flex;
  align-items: center;
}
.media-left{
  width: 80px;
  height: 80px;
  display: block;
  margin-right: 18px;
}
.media-right{
  flex: 1;
}
.media-right h6 a{
  margin-bottom: 8px;
  font-weight: 600;
  color: #0f0f0f;
  font-size: 16px;
}
.media-right .post-info{
  font-size: 13px;
  color: #0f0f0f;
}
.media-right .post-info i{
  margin-right: 5px;
  color: #dd8a3c;
}
.technology-partners{
  padding: 80px 0;
}
.technology-partner-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  padding: 20px;
}
.technology-partner-box .img-holder{
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 2;
}
.technology-partner-box .img-holder img{
  width: 100%;
  transform: scale(1);
  transition: all 500ms ease;
}
.technology-partner-box:hover .img-holder img{
  transform: scale(1.05) rotate(1deg);
  width: 110%;
}
.technology-partner-box .overlay-content{
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  background: rgba(255, 56, 56, .94);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  padding: 0 35px;
  overflow: hidden;
  z-index: 5;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}
.technology-partner-box:hover .overlay-content{
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.technology-partner-box .overlay-content h3{
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 8px 0 0;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
  color: #ffffff;
}
.technology-partner-box:hover .overlay-content h3{
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}
.jobs{
  padding: 80px 0;
}
.search-box{
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
}
.search-box .input-group{
  border: 1px solid #ededed;
  border-radius: 10px;
}
.search-box .input-group .form-control{
  height: 60px;
  background-color: #fff;
  font-size: 20px;
  border: none;
  padding: 0px 25px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.search-box .input-group .btn{
  color: #17171d;
  border-radius: 0px;
  height: 60px;
  padding: 0px 15px;
  font-size: 18px;
  background-color: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.job-box{
  background-color: #fff;
  border: 10px;
  box-shadow: 0px 0px 15px rgb(256 56 56 / 30%);
  position: relative;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  margin-top: 60px;
}
.job-box .job-img{
  width: 90px;
  height: 90px;
  line-height: 90px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 40px rgb(256 56 56 / 30%);
  margin-right: 30px;
  position: absolute;
  top: -30px;
  overflow: hidden;
}
.job-box .job-img img{
  display: block;
}
.job-type{
  position: absolute;
  right: 10px;
  top: 10px
}
.job-type span{
  color: #fff;
  border-radius: 5px;
  padding: 5px 12px;
  white-space: nowrap;
  background-color: #189ce7;
}
.job-box-content{
  padding-top: 60px;
}
.job-box-content h4 a{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #0f0f0f;
}
.job-box-content ul li{
  color: #3c3c3c;
  line-height: 1.7;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
  position: relative;
}
.job-box-content ul li i{
  color: #dd8a3c;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 16px;
}
.job-box-content ul li span{
  color: #dd8a3c;
  font-weight: 600;
}
.job-box .site-btn1{
  padding: 10px 26px;
}
.job-details-desc{
  margin-top: 30px;
}
.job-details-desc h4{
  line-height: 1.2;
  font-size: 18px;
  font-weight: 500;
  color: #0f0f0f;
}
.job-details-desc p{
  color: #3c3c3c;
  line-height: 1.7;
  font-weight: 400;
  font-size: 15px;
}
.job-details-desc ul{
  margin: 30px 0px
}
.job-details-desc ul li{
  padding-left: 45px;
  list-style: none;
  position: relative;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}
.job-details-desc ul li:before{
  font-family: "Fontawesome";
  content: "\f00c";
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  font-size: 22px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  color: #dd8a3c;
}
.job-sidebar-bottom{
  background: url(../../assets/img/job-sidebar-bottom-img.jpg);
  border-radius: 10px;
  overflow: hidden;
  padding: 50px 30px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 30px 0px;
}
.job-sidebar-bottom:before{
  content: "";
  background-color: #dd8a3c;
  opacity: 0.5;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
}
.job-sidebar-bottom h4{
  font-size: 30px;
  font-weight: 600;
}
#jobapply {
  background: #189ce721;
  padding: 10px;
  border-radius: 10px;
}