.slide-carousel-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#slider .owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  text-align: left;
  margin: 0 auto;
  left: 0;
  /* right: 0; */
}
.slide-tagline {
  color: white;
  font-weight: 400;
  font-size: 18px;
}
.slide-tagline:after {
  content: "";
  background-color: var(--color-primary);
  width: 95px;
  height: 3px;
  display: inline-block;
  position: relative;
  left: 8px;
}
#slider img {
  width: 100%;
}
#slider .owl-dots {
  margin: 0;
  text-align: right;
  position: absolute;
  right: 0;
}
.slide-nav-container {
  position: absolute;
  right: 0;
  left: 0;
  text-align: right;
  top: 51%;
  transform: translateY(-50%);
  z-index: 9;
}
.inner_carousel.container {
  position: relative;
  padding: 21em 15px 15em 15px;
}
.topbar-container {
  background-color: white;
}
.slide-dot-container {
  position: absolute;
  right: 0;
  left: 0;
  text-align: right;
  bottom: 8%;
  z-index: 9;
}
#slider .slidesmalltext {
  color: #141b22;
  font-weight: 500;
  color: #8d7f77;
}
.custom-slider-nav.owl-nav {
  position: absolute;
  right: 0;
}
.Slider-left-box {
  max-width: 46%;
  z-index: 99;
  position: relative;
}
#slider h1,
#slider h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 400;
  color: white;
  padding-top: 0;
}
#slider h1 span,
#slider h2 span {
  color: white;
}
.slide-text {
  color: white;
  font-weight: 400;
  font-size: 14px;
}
@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

.slide-image-inner {
  position: relative;
}
.colored_word {
  color: var(--color-primary);
}
.slide-btn-nav {
  display: flex;
  position: relative;
  top: -30em;
  justify-content: end;
}
.slider-btn-wrap {
  display: block;
  width: 38px;
}
.slider-btn-wrap button {
  /* position: relative; */
  /* top: -30em; */
  /* z-index: 99; */
  background-color: var(--color-primary);
  color: white;
  padding: 11px 15px;
  font-size: 16px;
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid var(--color-primary);
}
.slider-btn-wrap button:hover {
  border-color: var(--color-primary);
  background-color: transparent;
  color: white;
}
#slider a.theme_button {
  margin-right: 15px;
}
.slide-container-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#slider .owl-dots {
  margin: 0;
}
.slide-nav-dot-container {
  position: absolute;
  bottom: 6em;
  z-index: 9;
  width: 100%;
}
.slide-apmt-block .media {
  background-color: var(--color-primary);
  display: inline-flex;
  padding: 40px 40px;
  align-items: center;
  position: absolute;
  bottom: -63px;
  z-index: 9;
  border-radius: 20px;
}
.slide-apmt-block .media i {
  color: #fff;
  font-size: 33px;
  margin-right: 10px;
}
.slide-apmt-block .media .contact-head {
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
}
.slide-apmt-block .media a.header-contact-text {
  color: #fff;
  font-family: var(--secondary-font);
  margin-top: 7px;
  display: block;
  font-size: 21px;
  font-weight: 400;
}
.slide-apmt-block .media a.header-contact-text:hover {
  color: #000;
}
#slider .owl-carousel .owl-dots button.owl-dot,
#slider .owl-dots button.owl-dot {
  background-color: white !important;
  display: block;
}
#slider .owl-carousel .owl-dots button.owl-dot.active,
#slider .owl-dots button.owl-dot.active {
  background-color: var(--color-primary) !important;
}



/* ---------- Slider Animation Additions ---------- */

/* Fade-in & slide-up for text elements */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#slider h1,
#slider h2,
.slide-tagline,
.slide-text {
  opacity: 0;
  animation: slideFadeIn 1s ease forwards;
}

#slider h1 {
  animation-delay: 1s;
}
#slider .slide-tagline {
  animation-delay: 1s;
}
#slider .slide-text {
  animation-delay: 1.5s;
}

/* Button animation - zoom-in */
@keyframes zoomInButton {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slide_btn a {
  opacity: 0;
  animation: zoomInButton 0.6s ease forwards;
  animation-delay: 1.5s;
}

/* Optional: Zoom effect on slide image */
@keyframes zoomBg {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
} 
.slide-carousel-image {
  animation: zoomBg 5s ease-in-out infinite alternate;
}

/* Optional: Fade in contact block */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-apmt-block .media {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.5s;
}

/*------------------ Services -------------------*/
#our-services .owl-dots {
  margin-top: 3em;
}
#our-products .owl-dots {
  margin-top: 1em;
}
#our-services {
  padding-top: 10em;
}
.services-image {
  background-color: #e1aa35;
  align-items: center;
  display: flex;
  justify-content: center;
}
.services-text-block {
  background-color: var(--color-primary);
  padding: 0;
  padding-top: 22px;
  padding-bottom: 15px;
}
.services-link-block {
  padding: 26px 26px 26px 26px;
  position: relative;
  top: 25px;
}
.services-text-inner {
  background-color: white;
  padding: 9px 30px;
  position: relative;
  max-width: 66.8%;
  position: absolute;
  bottom: 4em;
  border-left: 10px solid var(--color-primary);
  width: 100%;
  border-radius: 0 0 0 20px;
}
.services-link-block a {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}
.services-textbox {
  margin: 0;
}
.service-scale-image {
  /*  display: none;*/
  transition: all 0.6s ease;
}
.services-block h5 {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 400;
}
.services-head,
#latest-news .section_main_head {
  max-width: 40%;
  margin: 0 auto;
}
.services-textbox h5,
.services-textbox h5 a {
  font-size: 19px;
  /* padding-top: 2em; */
  color: #1e1e1e;
  font-weight: 400;
  font-size: 16px;
}
.services-box-text {
  font-weight: 600;
  font-size: 14px;
  color: #1e1e1e;
  padding-top: 10px;
  display: none;
  width: 100%;
  transition: all 0.6s ease;
}
.services-block,.service-bg {
  transition: all 0.6s ease;
  border-radius: 20px;
}
.services-block:hover .services-box-text {
  display: block;
  transition: all 0.6s ease;
}
.services-text {
  color: #9c9c9c;
  font-size: 15px;
  font-weight: 400;
}
.services-image {
  position: relative;
}
.service-bg:hover .service-scale-image {
  /*display: block;*/
  opacity: 1;
  transition: all 0.6s ease;
}
.service-bg {
  transition: all 0.6s ease;
}

.services-block:hover .services-text-block{
  transition: all 0.6s ease;
  background: #e1aa35;
}
.services-block:hover .services-text-inner {
  transition: all 0.6s ease;
  border-left: 15px solid #e1aa35;
}
.services-block:hover .services-link-block a {
  transition: all 0.6s ease;
  color: #fff;
}
.services-block:hover .services-icon img {
  transition: all 0.6s ease;
  filter: invert(100);
}

/* --------- About Us --------- */
.about-container {
  background-color: #f2f3f5;
  max-width: 80%;
  margin: 0 0 0 auto;
}
.about-image1,
.whychoose-image1 {
  position: relative;
  display: inline-block;
}
.about-block,
.whychoose-block {
  position: relative;
  display: inline-block;
}
.about_btn {
  margin-top: 2em;
}
#about-us .section_main_head .primary_text,
#about-us .section_main_head .primary_text p {
  color: var(--color-primary);
}
.about-head.section_main_head .second_text,
.about-head.section_main_head .second_text p {
  color: #6b6b6b;
}
#about-us .section_main_head h3 {
  font-size: 26px;
}
.about_us_box-image img,
.why_choose_us_box-image img {
  transition: 0.5s;
  transform-style: preserve-3d;
  position: relative;
  z-index: 9;
  background-color: var(--color-primary);
  padding: 15px 20px;
  border: 5px solid white;
  margin-top: -66px;
  border-radius: 20px;
}
#about-us {
  padding: 0;
}
#about-us .row{
  margin: 0;
}
.about-head.section_main_head {
  padding: 40px;
}
.about-list li {
  font-weight: 700;
  color: black;
  list-style: none;
}
.about-list i {
  border: 1px solid #200e32;
  font-size: 10px;
  padding: 2px;
  border-radius: 3px;
  margin-right: 8px;
}
.padding-zero {
  padding: 0;
}
.about-exp img {
  width: 100%;
}
.about-happy-customer img {
  width: 100%;
}
.exp-right-col,
.hc-right-col {
  background-color: #222431;
  display: flex;
  align-items: center;
  padding: 40px;
}
.about-record-number {
  color: var(--color-primary);
  font-size: 42px;
  font-family: var(--secondary-font);
}
.about-record-text {
  color: white;
  font-family: var(--secondary-font);
  font-size: 27px;
  margin-top: 10px;
  line-height: 30px;
}
.hc-right-col {
  background-color: #db9a11;
}
.hc-right-col .about-record-number {
  color: #1e1e1e;
}
.about-record {
  max-width: 70%;
}

.about-list {
  margin: 0;
  margin-top: 3em;
}
.about-container {
  background-color: #f2f3f5;
  max-width: 80%;
  margin: 0 0 0 auto;
  margin-bottom: -14em;
  border-radius: 20px 0 0 20px;
}

.about-list li:hover {
  color: var(--color-primary);
}

.about-list li:hover i {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

/* --------- Records --------- */
#records {
  padding-top: 20em;
  border-bottom: 40px solid var(--color-primary);
}
.records-info img {
  background-color: #575a6c;
  padding: 26px;
  margin-right: 10px !important;
  border-radius: 20px;
}
.box-count {
  color: white;
  font-family: var(--secondary-font);
  font-size: 32px;
  font-weight: 400;
}
.records-info h6,
.records-info h6 a {
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  font-family: var(--primary-font);
}
.records-info .media {
  align-items: center;
}

.records-info .media:hover {
  transform: scale(1.05);
  /* padding: 5px; */
  /* box-shadow: 0 10px 30px #e1aa354d; */
}
section#records .owl-stage-outer {
  padding: 30px 0;
}
@keyframes spin-pause {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(360deg); } 
  100% { transform: rotate(360deg); } 
}

.whychoose-image-box-inner:hover .why_choose_us_box-image img,.media:hover img,.media:hover i {
  animation: spin-pause 2s linear infinite;
}
/*------------------ Why Choose Us -------------------*/
#why-choose-us {
  padding-top: 0;
  padding-bottom: 0;
}
.whychoose-detail {
  background-color: #f2f3f5;
  padding-bottom: 11em;
}
#why-choose-us h6 span.tagline-part2 {
  color: var(--color-primary);
}
/* .whychoose-image1 > img {
  position: relative;
} */
#why-choose-us .section_main_head .section-text,
#why-choose-us .section_main_head .section-text p {
  color: #969798;
  font-weight: 600;
  font-size: 15px;
}
.whychoose-image1 i {
  background-color: var(--color-primary);
  padding: 30px 34px;
  color: white;
  font-size: 28px;
  border-radius: 50%;
}
.whychoose-image1 a.video_icon {
  display: inline-block;
  border: 2px solid;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 12em;
  right: -4em;
}
.whychoose-head {
  padding-top: 8em;
  padding-bottom: 2em;
}
.whychoose-head-outer {
  max-width: 80%;
  margin: 0 auto;
}
.whychoose-body h5,
.whychoose-body h5 a {
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 400;
}
.whychoose-image-box:nth-child(2),
.whychoose-image-box:nth-child(4) {
  margin-top: 40px;
}
.why_choose_us_box-image {
  margin-bottom: 1em;
  padding-top: 1em;
}
.whychoose-image-box {
  padding: 20px;
}
.why_choose_us-head {
  margin-bottom: 4em;
}
.whychoose-image-box-inner {
  background-color: white;
  padding: 20px;
}







.whychoose-image-box-inner:hover .why_choose_us_box-image img {
  background-color: #e1aa35;
  border: 5px solid #b3b3b3;
}
.whychoose-image-box-inner:hover{
  transition: all 0.6s ease;
  background-color: #e1aa35;
}
.whychoose-image-box-inner:hover .whychoose-body h5, .whychoose-body h5 a {
  transition: all 0.6s ease;
  color: #fff;
}









.question-block.row {
  background-color: white;
  max-width: 77%;
  padding: 20px;
  margin: 0 auto;
  margin-top: -56px;
  z-index: 99;
  position: relative;
  box-shadow: 0px 4px 64px 0px #0000001a;
}
.question-block.row h5 {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 400;
}
.whychoose-block .contact-head {
  color: #969798;
  font-size: 13px;
  font-weight: 400;
}
.whychoose-git-block img {
  margin-right: 10px;
}
.whychoose-number-box {
  position: relative;
}
.whychoose-git-block {
  color: #1e1e1e;
  font-weight: 400;
  font-family: var(--secondary-font);
}
.whychoose-image-outer {
  padding: 0;
}
.whychoose-number-box:after {
  content: "";
  background-color: rgb(34 36 49 / 10%);
  width: 1px;
  height: 54px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.whychoose-git-block a.header-contact-text {
  font-family: var(--secondary-font);
  color: #1e1e1e;
  font-weight: 400;
}

.whychoose-git-block a.header-contact-text:hover {
  color: var(--color-primary);
}

/*----------------- Projects --------------------*/
#our-projects .section_main_head h6 {
  background-color: white;
  color: black;
}
.project-buttons a.theme_button2 {
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
}
.project-buttons a.theme_button2:hover {
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
}
.project-buttons {
  background-color: var(--color-primary);
  max-width: 40%;
  margin: 0 auto;
  padding: 57px 40px;
  margin-bottom: -9em;
  z-index: 99;
  position: relative;
}
.project-middle-inner {
  max-width: 40%;
  margin: 0 auto;
  background-color: var(--color-primary);
  padding: 48px 40px;
  margin-top: -11em;
}
#our-projects .box {
  background: rgb(0 0 0 / 80%);
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}
.project-read-more-link i {
  font-size: 26px;
  color: white;
}
.row.projects-row {
  margin: 0;
  background-color: white;
  padding: 20px 10px 0px 10px;
}
#our-projects .section_main_head h3 {
  padding-bottom: 0;
}
#our-projects .box:before {
  content: "";
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.35s;
  z-index: 1;
}
#our-projects .box:hover:before {
  width: calc(100% - 50px);
  height: calc(100% - 50px);
}
#our-projects .box img {
  width: 100%;
  height: auto;
  transition: all 0.35s;
}
#our-projects .box:hover img {
  opacity: 0.3;
}
#our-projects .box .box-content {
  color: #fff;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-50%) scale(0);
  position: absolute;
  top: 50%;
  left: 25px;
  right: 25px;
  z-index: 2;
  transition: all 0.4s ease;
}
#our-projects .box:hover .box-content {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* --------- Our Product --------- */
.owl-carousel .owl-item .product_img_box img,
.owl-carousel .owl-item .team_img img,
.owl-carousel .owl-item .service-scale-image img {
  width: 100% !important;
}
#our-products {
  padding-top: 9em;
  background-color: #f2f3f5;
}
.product-title-box h5 a {
  color: black;
  font-size: 18px;
}
.price-rating-block {
  display: inline-block;
  background-color: #e1aa35;
  padding: 13px 20px;
  position: absolute;
  bottom: -12px;
  left: 0;
}
.price-rating-block ins,
.price-rating-block .price {
  color: white;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--primary-font);
}
.price-rating-block del {
  font-size: 14px;
  color: #969798;
  font-weight: 600;
}
.product-title-box {
  background-color: white;
  padding: 21px 10px;
}
.product-cart-box {
  background-color: #d9dce3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flash_product h5 a {
  color: black;
  font-size: 14px;
  font-weight: 400;
}
.flash_product,.flash_product img {
  transition: all 1s;
}
.product_img_box img{
  border-radius: 20px 20px 0 0;
}
.product-cart-box {
  border-radius: 0 0 20px 0;
}
.product-title-box {
  border-radius: 0 0 0 20px;
}
.flash_product h5 {
  padding-top: 0;
  padding-bottom: 0;
}
.product-price-cart {
  display: flex;
  justify-content: space-between;
}
.product-price-cart {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d9d9d9;
  margin-top: 12px;
  position: relative;
}
.flash_product .custom_product_meta a {
  font: 700 14px var(--primary-font);
  display: inline-block;
  padding: 10px 11px;
  border: none;
  position: relative;
  z-index: 1;
  color: white;
  transition: all 0.3s ease 0s;
  /* border: 2px solid #c5bac0; */
  border-radius: 4px;
}
.yith-wcwl-wishlistexistsbrowse i.yith-wcwl-icon.fa.fa-heart,
.yith-wcwl-wishlistaddedbrowse i.yith-wcwl-icon.fa.fa-heart {
  padding: 12px 12px;
  border: 2px solid #c5bac0;
  border-radius: 4px;
  margin: 0;
}
.yith-wcwl-wishlistaddedbrowse a {
  display: none !important;
}
.custom_product_meta .add_to_cart_button,
.custom_product_meta .added_to_cart {
  font-size: 0 !important;
}
.custom_product_meta .add_to_cart_button:before {
  content: "\f218";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  display: block;
  font-size: 20px;
}

.yith-wcwl-add-to-wishlist {
  /* margin-top: 10px; */
  margin-top: 0;
}
.custom_product_meta .added_to_cart:before {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  display: block;
  font-size: 20px;
}
.custom_product_meta .add_to_cart_button.ajax_add_to_cart.loading::after {
  font-family: WooCommerce;
  content: "\e01c";
  vertical-align: top;
  font-weight: 400;
  color: #200e32;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: block;
  z-index: 9999;
  display: block;
  /* width: 10px; */
  /* height: 10px; */
  font-size: 16px;
  text-align: center;
  animation: spin 2s linear infinite;
}
.custom_product_meta .add_to_cart_button.ajax_add_to_cart.loading::before {
  visibility: hidden;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.product_img_box {
  position: relative;
}
.flash_product
  a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.added {
  display: none;
}
.flash_product:hover .product-inner-box {
  transition: all 0.3s ease 0s;
}

.flash_product:hover .product-title-box {
  background-color: var(--color-primary);
}
.flash_product:hover .product-cart-box {
  background-color: #e1aa35;
}
.flash_product:hover .price-rating-block {
  background-color: white;
}
.flash_product:hover h5,.flash_product:hover h5 a,.flash_product:hover .custom_product_meta .add_to_cart_button:before {
  color: #fff;
}
.flash_product:hover .price-rating-block ins,
.flash_product:hover .price-rating-block .price{
  color: #000;
}

/* ----------- Testimonials ------------- */
.testimonials-row {
  background-color: white;
  border-radius: 0;
  max-width: 98%;
  padding: 0px 30px;
  position: relative;
}
.quote_box i.fas.fa-quote-left {
  color: #d8d8d8;
  font-size: 50px;
  position: relative;
  top: -14px;
}
#testimonials {
  background-color: var(--color-primary);
  padding-top: 0;
  padding-bottom: 2em;
}
#testimonials .section_main_head h3 {
  color: white;
}
#testimonials h6 {
  background-color: white;
  color: black;
}
.testimonial_outer > img {
  margin-bottom: 30px !important;
  display: block;
}
.owl-carousel .owl-item .testimonials_image img {
  width: auto !important;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 99;
}
.testimonial-block.testimonial_outer {
  background-color: #f0f0f0;
  padding: 0 20px 20px 20px;
  border-radius: 0px 60px 0px 60px;
}
.testimonial-title-box {
  max-width: 40%;
  margin: 0 auto;
  padding: 73px 20px 3px 20px;
}
#testimonials .owl-carousel .owl-stage-outer {
  padding: 30px 0;
}
.dark-box-testimonial {
  background-color: #222431;
  max-width: 40%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  text-align: center;
  margin: 0 auto;
}
.testimonial-title {
  position: relative;
  display: block;
  margin: 0 !important;
  padding-bottom: 6px;
  padding-top: 0;
}
.testimonial-title a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: #969798;
  font-family: var(--secondary-font);
}
.testimonial-block .media-body {
  text-align: right;
}
.testimonials_image {
  margin-left: 10px;
}
.testimonial-block .media {
  align-items: center;
}
.t-desig {
  font-size: 15px;
  font-weight: 500;
  display: block;
  color: black;
  font-family: var(--ternary-font);
}
.testimonials-info p {
  margin-bottom: 0;
}
.custom-testimonials-nav.owl-nav {
  /* text-align: left; */
  position: relative;
}
.testimonials-info p {
  font-weight: 600;
  font-size: 15px;
  color: #969798;
  /* line-height: 20px; */
  margin-bottom: 10px !important;
  font-family: var(--ternary-font);
}
.custom-testimonials-dots.owl-dots {
  /* text-align: left !important; */
  display: inline-block;
  margin: 0;
  position: relative;
  margin-top: 4em;
  margin-bottom: 2em;
}
.custom-testimonials-dots.owl-dots button.owl-dot {
  background-color: white !important;
}
.custom-testimonials-dots.owl-dots button.owl-dot.active {
  background-color: var(--color-primary) !important;
}
.testimonial-block:hover {
  background-color: var(--color-primary);
}
.testimonial-block:hover .quote_box i.fas.fa-quote-left {
  color: #ccc8c8;
}
.testimonial-block:hover .testimonials-info p ,.testimonial-block:hover .testimonials-info{
  color: #ffffff;
}

.testimonial-block:hover .t-desig {
  color: #ffffff;
}
.testimonial-block:hover .testimonial-title a {
  color: #ffffff;
}
/*------------------- Team  -----------------------*/
.team-box-inner {
  background-color: white;
  width: 71%;
  margin: 0 auto;
  padding: 9px 20px;
  position: absolute;
  margin-top: -4em;
  transition: all 0.6s ease;
}
.team_img img {
  width: 100%;
}

#team .section_main_head .section-text {
  margin-top: 1em;
}
.custom-team-dots.owl-dots {
  text-align: left;
  margin-top: 4em;
}
.team-box.hover-img-sweep {
  border-radius: 20px;
}
@media only screen and (max-width: 990px) {
  #team .box {
    margin: 0 0 30px;
  }
}
#team {
  padding-bottom: 15em;
}
.team-headbox {
  border-radius: 40px;
}
.team-text {
  color: #dfdfdf;
  font-size: 15px;
}
.team_img img {
}
.team_head a {
  color: #1e1e1e;
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 400;
}
.team-box-inner span {
  color: #969798;
  font-size: 14px;
  font-weight: 600;
}
#team .social-profiles {
  padding: 50px 17px 27px 17px;
  background-color: #d9dce3;
  text-align: center;
}
#team .social-profiles i {
  padding-right: 18px;
  font-size: 18px;
  color: rgb(34 36 49 / 30%);
}
#team .box .box-content span {
  font-weight: 400;
  font-size: 14px;
  color: white;
}
.team_head {
  padding-bottom: 4px;
}
#team .team_outer:hover .social-profiles {
  background-color: var(--color-primary);
}
#team .team_outer:hover .social-profiles i {
  color: #ffffff;
}
.team_outer:hover .team-box-inner {
  transition: all 0.6s ease;
  transform: translateY(-1em);
}
/* --------- Process --------- */
#process {
  margin-bottom: 13em;
  background-color: #222431;
}
#process .section_main_head h3 {
  color: white;
}
.process-image-box-inner {
  background-color: white;
  padding: 25px 30px;
  box-shadow: 0px 4px 60px 0px #0000001a;
}
.process_box-image img {
  background-color: var(--color-primary);
  padding: 18px 28px;
  border: 4px solid white;
  position: relative;
  border-radius: 20px;
  margin-top: -42px;
}
.process-body h5,
.process-body h5 a {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;
}
.box-text {
  font-weight: 600;
  font-size: 14px;
  color: #1E1E1E;
}
.process-image-box {
  margin-top: 2em;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 99999;
}
.process-image-box-inner{
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.process-image-box:hover .process-image-box-inner{
  transform: scale(1.05);
  box-shadow: 0 10px 30px #e1aa354d;
}

.process-image-box:nth-child(2) .process-image-box-inner,
.process-image-box:nth-child(3) .process-image-box-inner {
  background-color: var(--color-primary);
}
.process-image-box:nth-child(2) .process_box-image img,
.process-image-box:nth-child(3) .process_box-image img {
  background-color: white;
  border-radius: 20px;
  border-color: var(--color-primary);
}
.process-box-number {
  color: rgb(34 36 49 / 10%);
  font-family: var(--secondary-font);
  font-size: 36px;
  position: absolute;
  right: 30px;
  top: 30px;
}
.process-block a.video_icon i {
  color: white;
  padding: 20px;
  background-color: var(--color-primary);
  font-size: 36px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-block a.video_icon i:hover {
  color: black;
  background-color: #e1aa35;
}
a.video_icon {
  position: absolute;
  top: 0;
  left: -120px;
}
.process-block {
  position: relative;
  margin-top: -14.3em;
}
.process-image1 > img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%, 0 86%);
}
.process-image-boxes {
  margin-bottom: -16.4em;
}

/* ----------- Latest News ------------- */
.post-metabox {
  margin: 0;
}
/* #latest-news {
  padding-top: 16em;
} */
.news-box {
  border-radius: 20px 20px 0px 0px;
}
.post-image-block img{
  border-radius: 20px 20px 0px 0px;
}
.meta-author-comment{
  border-radius: 0 0 0px 20px;
}
.date-block{
  border-radius: 0 0 20px 0px;
}
.news-box h5 a {
  font-size: 16px;
  font-weight: 400;
  color: #1e1e1e;
  font-family: var(--secondary-font);
}
.news-date {
  font-family: var(--secondary-font);
}
.news-inner {
  padding: 30px;
  border-radius: 20px;
  background-color: white;
  max-width: 80%;
  margin: 0 auto;
  margin-top: -5em;
  position: relative;
  text-align: center;
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.08);
}
.post-metabox {
  margin-bottom: 20px;
}
.news-text {
  margin: 14px 0;
  font-weight: 500;
  color: #555555;
  font-size: 15px;
  font-family: var(--ternary-font);
}
.post-image-block {
  position: relative;
}
.post-metabox span.entry-author {
  padding-right: 20px;
}
.post-metabox i {
  padding-right: 7px;
  color: var(--color-primary);
}

.post-metabox a span:after {
  display: none;
}
#latest-news .section_main_head {
  max-width: 34%;
}
span.news_year {
  color: black;
  font-weight: 500;
  font-size: 16px;
  display: block;
}
.meta-author-comment a span,
.meta-author-comment a {
  color: black;
  font-size: 14px;
  font-weight: 500;
}
.meta-author-comment svg {
  margin-right: 6px;
}
/*---------------Newsletter ---------------*/
.newsletter_head {
  background-color: var(--color-primary);
  padding: 3.5em;
  max-width: 70%;
  margin: 0 auto;
  border-radius: 40px 40px 0px 0px;
}
.newsletter-container h4 {
  color: white;
  font-size: 17px;
}
#newsletter_section .section_main_head .section-text,
#newsletter_section .section_main_head .section-text p {
  max-width: 100%;
  margin: 0 !important;
  font-weight: 300;
}
.newsletter_shortcode {
  width: 100%;
  margin: 0 auto;
  /* margin-top: 30px; */
  max-width: 60%;
}
.newsletter_form {
  padding: 5em;
  border-radius: 20px;
  background-size: cover;
}
.newsletter_shortcode textarea {
  height: 152px;
}
.newsletter-image {
  margin-top: -49px;
}
.newsletter_shortcode input[type="text"],
.newsletter_shortcode input[type="tel"],
.newsletter_shortcode input[type="email"],
.newsletter_shortcode input[type="phno"],
.newsletter_shortcode input[type="password"],
.newsletter_shortcode textarea {
  background-color: white;
  border: none;
  color: #000000;
  padding: 11px 24px 11px 33px;
  font-family: var(--primary-font);
  border-radius: 10px;
  border: none;
  font-size: 14px;
}
.newsletter_shortcode input[type="text"]::placeholder,
.newsletter_shortcode input[type="tel"]::placeholder,
.newsletter_shortcode input[type="email"]::placeholder,
.newsletter_shortcode input[type="phno"]::placeholder,
.newsletter_shortcode input[type="password"]::placeholder,
.newsletter_shortcode textarea::placeholder {
  color: #000000;
}
.newsletter_shortcode input[type="submit"] {
  padding: 16px 22px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  background-color: var(--color-secondry);
  border-radius: 0px 10px 10px 0px;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 1px;
}
.newsletter_shortcode p {
  margin-bottom: 0;
}
.newsletter_shortcode form {
  position: relative;
}
.newsletter_social a {
  background-color: #f8ad6b;
  padding: 6px 8px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  margin-right: 8px;
}
.newsletter_shortcode label {
  color: #30494f;
  font-weight: 600;
}
.about-head .about-image:hover img {
  transform: scale(1.2) translate(4%, 4%);
}
.about-head .about-image img {
  transition: all 0.5s ease 0s;
  width: 100% !important;
}
.newsletter_form h5 {
  color: white;
  font-size: 18px;
  /* writing-mode: initial; */
  background-color: var(--color-primary);
  padding: 7px 20px;
  display: inline-block;
  font-size: 15px;
  border-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 020px;
  border-bottom-left-radius: 20px;
  transform: rotate(270deg) translateX(10%);
  position: absolute;
  left: -66px;
  top: 50%;
}
#newsletter_section {
  position: relative;
}
/*-------------- Owl crousel ---------------*/
button.owl-prev,
button.owl-next {
  border: none;
  padding: 0;
}
.owl-carousel .owl-dots,
.owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots button.owl-dot,
.owl-dots button.owl-dot {
  background-color: #c6cddc !important;
  border: none !important;
  margin: 0 5px;
  outline: none;
  border-radius: 0;
  padding: 5px !important;
  height: 4px !important;
  width: 4px !important;
  display: inline-block;
  border: none;
  margin-bottom: 10px;
}
.owl-carousel button.owl-dot.active,
button.owl-dot.active {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary);
  padding: 5px !important;
}
.owl-carousel .owl-item img {
  width: auto !important;
  margin: 0 auto;
  height: auto;
}
.owl-carousel .owl-nav i,
.owl-nav i {
  border: none;
  transition: 0.3s ease;
  opacity: 1;
  padding: 0;
  background-color: var(--color-primary);
  color: white;
  padding: 20px 24px;
  font-size: 16px;
  border: none;
}
.owl-carousel .owl-nav button.owl-prev i:hover,
.owl-nav button.owl-prev i:hover,
.owl-carousel .owl-nav button.owl-next i:hover,
.owl-nav button.owl-next i:hover {
  background-color: #e1aa35;
  color: black;
}
button.owl-prev {
  margin-right: -4px;
}
.owl-nav {
  margin-top: 20px;
  text-align: center;
}
#latest-news .owl-nav {
  text-align: center;
}
.owl-carousel .owl-item .post-image-block img {
  width: 100% !important;
}
.woocommerce .woocommerce-breadcrumb {
  display: none;
}
.meta-author-comment {
  background-color: #f2f3f5;
  padding: 28px 20px;
  display: flex;
  justify-content: space-between;
}
.date-block {
  background-color: #d9dce3;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
span.news_date {
  font-weight: 400;
  font-family: var(--secondary-font);
  color: #1e1e1e;
  font-size: 27px;
}
.post-title-box {
  background-color: white;
  padding: 20px;
  width: 66.66666667%;
  position: absolute;
  bottom: -22px;
  border-left: 5px solid #d9dce3;
  z-index: 9;
}
.meta-sepeartor {
  background-color: rgb(0 0 0 / 10%);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 43%;
  right: 0;
  top: 0;
  bottom: 0;
}
.meta-author-comment {
  background-color: #f2f3f5;
  padding: 41px 20px 20px 20px;
  display: flex;
  justify-content: space-between;
}
.news-box:hover .post-title-box {
  border-color: var(--color-primary);
}
.news-box:hover .meta-author-comment {
  background-color: var(--color-primary);
}
.news-box:hover .date-block {
  background-color: #e1aa35;
}

.news-box:hover span.news_year,
.news-box:hover .meta-author-comment svg,
.news-box:hover .meta-author-comment svg path,
.news-box:hover span.news_date {
  color: white;
  fill: #fff !important;
}
.news-box:hover .meta-author-comment a span,
.news-box:hover .meta-author-comment a {
  color: white;
}
.news-box .post-image-block img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-box:hover .post-image-block img,.flash_product:hover .product_img_box img {
  transform: scale(1.03);
  box-shadow: 0 10px 30px #0000004d;
}

/*-------------- Get In Touch ---------------*/
.get-in-touch-container {
  background-color: #f2f3f5;
  position: relative;
  z-index: 9;
}
.page-template-home-page .get-in-touch-container {
  max-width: 80%;
  margin: 0 0 0 auto;
  margin-bottom: -17em;
  border-radius: 20px 0 0 20px;
}
.get-in-touch-box-form{
  border-radius: 20px 0 0 20px;
}

.get-in-touch-box-form {
  background-color: var(--color-primary);
  padding: 50px;
}
#get-in-touch h6 {
  background-color: white;
  color: black;
}
.get-in-touch_shortcode input[type="text"],
.get-in-touch_shortcode input[type="email"],
.get-in-touch_shortcode input[type="number"],
.get-in-touch_shortcode textarea,
.get-in-touch_shortcode select {
  background: #E1AA35 !important;
  border: none;
  color: rgb(0 0 0 / 50%);
  padding: 11px 24px 11px 33px;
  font-family: var(--primary-font);
  border-radius: 0;
  border: none;
  font-size: 14px;
  width: 100%;
  font-weight: 500;
}



.get-in-touch_shortcode input[type="text"]:hover,
.get-in-touch_shortcode input[type="email"]:hover,
.get-in-touch_shortcode input[type="number"]:hover,
.get-in-touch_shortcode textarea:hover,
.get-in-touch_shortcode select:hover{
  box-shadow: 0 10px 30px #0000004d;
}

.get-in-touch_shortcode select {
  padding: 15px 24px 16px 33px !important;
}
.get-in-touch_shortcode textarea {
  height: 132px;
}
.get-in-touch_shortcode input[type="text"]::placeholder,
.get-in-touch_shortcode input[type="email"]::placeholder,
.get-in-touch_shortcode input[type="number"]::placeholder,
.get-in-touch_shortcode textarea::placeholder {
  color: rgb(0 0 0 / 50%);
  font-weight: 500;
}
.get-in-touch_shortcode input[type="submit"] {
  padding: 16px 22px;
  color: #fff;
  background-color: transparent;
  border-radius: 0;
  font-weight: 700;
  display: inline-block;
  border: 2px solid #fff;
  margin-top: 15px;
}
.get-in-touch_shortcode input[type="submit"]:hover {
  color: rgb(0 0 0 / 50%);
  border: 2px solid rgb(0 0 0 / 50%);
}
.get-in-touch-box-contact {
  background-color: #222431;
  position: relative;
  padding: 0;
}
.get-in-touch-contact-details {
  padding: 40px 40px 40px 0px;
  margin-top: 15px;
}
.get-in-touch-block.media i {
  background-color: var(--color-primary);
  padding: 13px;
  color: #fff;
  margin-right: 26px;
}
.get-in-touch-block .contact-head {
  font-size: 14px;
  color: white;
  font-weight: 600;
}
a.get_in_touch-contact-text {
  color: #969798;
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
  display: block;
}
.get-in-touch-block.media {
  margin-bottom: 26px;
}
.support-image {
  position: absolute;
  top: 55px;
  right: 50px;
  width: auto !important;
}
.get-in-touch-image-box {
  margin-top: 22px;
}
#get-in-touch {
  padding: 0;
}



section#partner .owl-carousel .owl-item {
  position: relative;
  overflow: hidden;
}

section#partner .owl-carousel .owl-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

section#partner .owl-carousel .owl-item:hover::after {
  opacity: 1;
}