/*----- FONTS -----*/
/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&display=swap');
/* files */
@import url('../css/header_footer.css');
@import url('../css/custome.css');


/*----- BASIC -----*/
html, body{
  height: auto;
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: #fff;
  color: #232323;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}
a, a:hover{
  color: #232323;
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
h1,h2,h3{
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  color: #131313;
}
h4,h5,h6{
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  color: #131313;
}
p{
  font-size: 15px;
  line-height: 25px;
  color: #343434;
}
.favicon{
  width: 16px;
  height: 16px;
  object-fit: contain;
}
/*----- MAIN -----*/
/*---HOME [ START ]---*/
.wd_banner{
  background: url(../images/banner.jpg)center center / cover scroll no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wd_banner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(19 19 19 / 60%);
  z-index: 0;
  width: 100%;
  height: 100vh;
}
.wd_banner_txt{
  position: relative;
  margin: 100px auto 0;
  text-align: center;
}
.wd_banner_txt .subtitle {
  position: absolute;
  left: 50%;
  top: -0.8em;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 160px;
  line-height: 160px;
  font-family: 'Urbanist', sans-serif;
  font-style: normal;
  opacity: 0.2;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  z-index: 0;
}
.wd_banner_txt span{
  color: #fca028;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 15px;
}
.wd_banner_txt h1{
  font-size: 65px;
  font-weight: 800;
  line-height: 1em;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.wd_banner_txt p{
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
  text-align: center;
}
.wd_bnr_btn{
  border: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  background-color: #fca028;
  padding: 17px 60px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.20);
  z-index: 1;
}
.wd_bnr_btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #222;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  z-index: -1;
}

.wd_bnr_btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);

}
.wd_bnr_btn:hover{
  z-index: 111;
  color: #fff;
}

.owl_banner .owl-stage-outer{
  padding: 4em 0 0;
}
.banr_obj{
  position: absolute;
  bottom: 0;
  right: 0;
}
.owl_banner .owl-nav{display: none;}
/*----Home About Us---*/
/*---Common Title---*/
.wd_title h3{
  color: #fca028;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  padding-left: 55px;
  display: inline-block;
  margin-bottom: 10px;
}
.wd_title h3::before{
  position: absolute;
  content: '';
  top: 6px;
  left: 0;
  border-bottom: 3px solid #fca028;
  width: 40px;
  height: 3px;
}
.wd_title h3::after{
  position: absolute;
  content: '';
  top: 15px;
  left: 0;
  border-bottom: 3px solid #fca028;
  width: 40px;
  height: 3px;
}
.wd_title h2{
  color: #131313;
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 30px;
}
.wd_title p{
  color: #343434;
  font-size: 16px;
  line-height: 26px;
}
.wd_abt_us{
/*  background: #ebe9e9 url(../images/abt-bg.png)no-repeat;*/
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom center;
  padding: 80px 0;
}
.wd_exp_bx{
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
#counter{
  margin-right: 50px;
  display: block;
  border-right: 1px solid #e9e9e7;
  width: 50%;
}
#counter h5 {
  font-size: 70px;
  line-height: 80px;
  padding: 0;
  margin: 0;
  color: #131313;
  font-weight: 900;
}
.wd_exp_bx h6{
  font-size: 20px;
  line-height: 30px;
  color: #131313;
  font-weight: 700;
  margin-bottom: 0;
}
.abt_img img{
  width: 100%;
  height: 470px;
  border-radius: 5px;
  object-fit: cover;
  border:5px solid #fca028;
}
.mt-80{
  margin-top: 80px;
}
.wd_service{
  padding: 120px 0;
  background: #131313;
  width: 100%;
}
.wd_service_bx{
  position: relative;
  overflow: hidden;
  border:5px solid transparent;
  display: block;
}
.wd_service_bx .wd_service_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.wd_service_bx:hover .wd_service_img{
  filter: grayscale(0);
}
.wd_service_bx:hover{
  border: 5px solid #fca028;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s esae-in;
}
.services_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px 20px 20px;
 /* padding-top: 60px;
  margin-right: 30px;*/
  z-index: 1;
  width: 95%;
}
.services_content::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -10px;
  transform: matrix(0.99, -0.1, 0.12, 0.99, 0, 0);
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.services_icon {
  background: #fca028;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 6px;
  border: 4px solid #fff;
  position: absolute;
  top: -1.5em;
  right: 0;
  padding: 10px 0;
}
.services_icon img{
  width: unset !important;
  margin: 0 auto;
  text-align: center;
}
.wd_service_bx h4{
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.wd_service_bx p{
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.arrow-tag{
  display: block;
  margin: 5px auto;
  text-align: right;
  cursor: pointer;
}
.wd_service .wd_title h2{margin-bottom: 10px;}
.wd_service .wd_title p{
  margin-bottom: 25px;
}
.owl_service .owl-dots.disabled{
  display: block !important;
}
.owl_service .owl-nav{display: none;}
.owl_service .owl-dots{
  margin: 25px auto 0;
  text-align: center;
  display: block;
}
.owl_service button.owl-dot{
  background: #878787;
  padding: 5px !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}
.owl_service button.owl-dot.active{
  background: #fca028 !important;
}
/*----Testimonial-----*/
.wd_testimonial{
  padding: 80px 0;
  position: relative;
  background: #f9f6f6;
}
.wd_testimonial::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/abt-bg.png)no-repeat;
  width: 100%;
  height: 100%;
}
.wd_testi_bx{
  border: 1px solid #ECECEC;
  padding: 30px;
  background: transparent;
  transition: 0.4s;
  position: relative;
}
.wd_testi_bx:hover{
  background: #fca028;
  cursor: pointer;
}
.wd_testi_client {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.wd_testi_client img{
  width: 80px !important;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.testi_title h5{
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
}
.testi_title span{
  color: #676767;
  font-size: 14px;
}
.wd_testi_bx p{
  font-size: 15px;
  line-height: 28px;
  transition: 0.4s;
}
.testimonial_reviews i{
  color: #fca028;
}
.testimonial_icon{
  position: absolute;
  bottom: 2em;
  right: 1em;
}
.testimonial_icon i{
  font-size: 20px;
  color: #fff;
}
.wd_testi_bx:hover .testimonial_reviews i{
  color: #fff;
}
.owl_testi .owl-nav{
  display: flex !important;
  grid-gap: 10px;
  position: absolute;
  top: -7em;
  right: 0;
}
.owl_testi .owl-nav button{
  width: 60px;
  height: 60px;
  line-height: 60px !important;
  display: inline-block;
  text-align: center;
  border: 1px solid #e3e0e0 !important;
  font-size: 22px;
  color: #000;
  border-radius: 50%;
  transition: 0.4s;
}
.wd_consultation{
  padding: 80px 0 0;
  background: url(../images/touch.jpg)no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 140px;
}
.wd_consultation::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(19 19 19 / 60%);
  width: 100%;
  height: 100%;
}
.touch_left{
  box-shadow:  0px 10px 70px rgba(0, 0, 0, 0.1);;
  background: #fff;
  padding: 70px 40px;
  margin-right: 80px;
  border-radius: 5px;
  margin-bottom: -90px;
}
.touch_left .wd_title h2{
  margin-bottom: 10px;
}
.touch_left .wd_title p{
  margin-bottom: 15px;
}
.touch_left form .form-control{
  color: #343434;
  border-radius: 6px;
  width: 100%;
  height: auto;
  border: 1px solid #E9E9E8;
  padding: 15px 15px;
  font-size: 15px;
  background: #FFFFFF;
}
.form-control:focus{
  box-shadow: 0 0 0 0.2rem rgb(252 160 40 / 40%);
}
.touch_left .wd_bnr_btn{
  display: block;
  margin: 25px auto 0;
}
.touch_title h2{
  font-size: 45px;
  color: #fff;
  line-height: 60px;
  margin-bottom: 30px;
}
.touch_title p{
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.touch-right-bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.getIn_text h4{
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0;
}
.getIn_btm_img {
  margin-left: 40px;
}
.getIn_btm_img ul {
  padding: 0;
  margin: 0;
  display: flex;
}
.getIn_btm_img ul li {
  padding: 0;
  display: inline-block;
  list-style: none;
  margin-left: -23px;
}
.getIn_btm_img ul li:first-child {
  margin: 0;
}
.getIn_btm_img ul li img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 50%;
  transition: 0.4s;
}
.subscribe_area{
  position: relative;
  margin-bottom: -150px;
  padding: 100px 0 0;
}
.subscribe_bg{
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  padding: 75px 70px;
  margin: 0;
  background: url(../images/subscribe.jpg)no-repeat;

  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.subscribe_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(19 19 19 / 70%);
  z-index: -1;
  border-radius: 5px;
}
.wd_sub_lft h3{
  font-size: 35px;
  color: #fff;
  margin-bottom: 20px;
}
.wd_noti_bx{
  display: flex;
  align-items: center;
  gap: 40px;
}
.wd_noti_bx h6{
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}
.wd_noti_icon{
  position: relative;
}
.wd_noti_icon::before {
  position: absolute;
  content: "";
  width: 75px;
  height: 75px;
  border: 1px solid #fff;
  opacity: 0.3;
  left: -7px;
  top: -7px;
  border-radius: 50%;
  animation-duration: 2.5s;
  animation-timing-function: linear;
  animation-name: video-animation;
  animation-iteration-count: infinite;
}
.wd_noti_icon i{
  color: #FCA028;
  background: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}
@keyframes video-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}
.content_roll {
  animation: roll 10s infinite linear;
}
@keyframes roll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
.roll {
  animation: rotation 2s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.left-right-animate {
  animation-name: left-right;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes left-right {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(20px);
  }
}

.left-right-animate2 {
  animation-name: left-right2;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes left-right2 {
  0% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(110px);
  }
  100% {
    transform: translateX(10px);
  }
}

.icon-animation { 
  animation: icon-animation 1.5s ease-in-out infinite;
}

@keyframes icon-animation {

    from {
        transform:rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0,0,1,15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0,0,1,0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0,0,1,-15deg);
    }
    80% {
        transform:rotate3d(0, 0, 1, 0deg);
    }

}

@keyframes animation {
  100% {
    left: 125%;
  }
}

@keyframes rotateY {
  100% {
    transform: rotateY(360deg);
  }
}
.subscribe_form {
    margin-left: 130px;
}
.subscribe_form form {
    position: relative;
}
.subscribe_form form .form-control {
    border: 0;
    height: auto;
    padding: 20px 30px;
    border-radius: 35px;
    color: #999999;
    width: 100%;
}
.subscribe_form form button {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 35px;
    background: #fca028;
    font-weight: 700;
    height: auto;padding: 20px 30px;
    text-transform: uppercase;
    border: 0;
}
/*----- SECTION -----*/
/*----About Us------*/
.wd_inner_banner{
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 160px;
  background: url(../images/banner-1.jpg)no-repeat;
  height: 450px;
}
.wd_inner_banner::before{
  content: "";
  position: absolute;
  background-image: url(../images/banner-pattern.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
}
.wd_inner_txt > span {
  color: #fff;
  display: block;
  font-weight: 700;
  font-size: 100px;
  line-height: 144px;
  opacity: 0.08;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  margin: 0 0 -70px 0;
  position: relative;
  z-index: -1;
  text-transform: uppercase;
}
.wd_inner_txt ul {
  padding: 0;
  margin: 0;
}
.wd_inner_txt ul li {
  display: inline-block;
  list-style: none;
  font-weight: 700;
  color: #fca028;
}
.wd_inner_txt ul li span{
  padding: 0 10px;
}
.wd_inner_txt ul li a {
  color: #fff;
  margin-right: 15px;
  transition: 0.4s;
}
.wd_inner_txt h1 {
  color: #fff;
  font-size: 40px;
  line-height: 80px;
  margin-top: 10px;
}
/*.company__history-area {
    max-width: 960px;
    margin: 0 auto;
}*/
.wd_service_blog{
  padding: 60px 0 0;
}
.wd_service_blog .wd_title h2{
  margin-bottom: 15px;
}
.wd_service_blog .wd_title p{
  margin-bottom: 50px;
}
.mission_item {
    display: flex;
}
.mission_item_left {
    padding-right: 69px;
    margin-right: 70px;
    border-right: 1px dashed #fca028;
}
.mission_item_left img {
    max-width: 410px;
}
.mission-item-right-content {
    padding: 39px;
    border: 1px solid #e7e7e7;
    margin: 30px 0;
    position: relative;
}
.mission-item-right-content p{
  margin-bottom: 0;
}
.mb-50 {
    margin-bottom: 50px;
}
.mission-item-right-content::before {
    content: "";
    position: absolute;
    left: -76px;
    top: 70px;
    width: 10px;
    height: 10px;
    background: #fca028;
    box-shadow: 0px 5px 20px rgba(249, 76, 48, 0.5);
    border-radius: 50%;
}

.item-content-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.item-content-date span {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    background: #fca028;
    padding: 7px 22px;
    padding-left: 10px;
    padding-right: 60px;
    -webkit-clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
    clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
}
.mission-item-right-content::after {
    content: "";
    position: absolute;
    left: -11px;
    top: 65px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-top: #E7E7E7 solid 1px;
    border-left: #E7E7E7 solid 1px;
    transform: rotate(-45deg);
}
/*----ABOUT US----*/
.wd_about{
  padding: 60px 0;
}
.wd_abt_us .wd_title h2{
  margin-bottom: 15px;
}
.wd_abt_us .wd_title p{
  margin-bottom: 30px;
}
