@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,700;0,900;1,100;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap");
/* Hover Transistion */
/* Custom scroll Bar */
.footer_wrapper {
  padding-top: 25px;
  background: rgba(212, 175, 55, 0.6);
}

.footer_wrapper .footer_menu_area,
.footer_wrapper .footer_logo_area {
  margin-top: 30px;
}

.footer_wrapper .footer_logo_area p {
  text-align: justify;
}

.footer_wrapper .footer_menu_area h3 {
  display: inline-block;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
  padding-bottom: 10px;
  border-bottom: 2px solid white;
}

@media all and (max-width: 767px) {
  .footer_wrapper .footer_menu_area h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
  }
}

.footer_wrapper .footer_menu_area ul {
  margin-top: 30px;
}

@media all and (max-width: 767px) {
  .footer_wrapper .footer_menu_area ul {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 20px;
  }
}

.footer_wrapper .footer_menu_area ul li {
  margin-bottom: 10px;
}

.footer_wrapper .footer_menu_area ul li,
.footer_wrapper .footer_menu_area ul a {
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  text-align: start;
  color: #323232;
}

@media all and (max-width: 767px) {
  .footer_wrapper .footer_menu_area ul li,
  .footer_wrapper .footer_menu_area ul a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
  }
}

.footer_wrapper .footer_menu_area ul a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.footer_wrapper .footer_menu_area ul a:hover {
  transform: translateX(8px);
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  -ms-transform: translateX(8px);
  -o-transform: translateX(8px);
  color: rgba(50, 50, 50, 0.767);
}

.footer_wrapper .footer_social p {
  font-weight: 700;
  margin: 10px 0;
}

.footer_wrapper .footer_social ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 15px;
}

.footer_wrapper .copyright_text {
  margin-top: 50px;
  margin-bottom: 10px;
}

.footer_wrapper .copyright_text img {
  margin-left: 10px;
}

/* ============  Start Header Section =========== */
.header_wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  animation: navbarAnimation 2s ease 0.2s 1;
  -webkit-animation: navbarAnimation 2s ease 0.2s 1;
}

.header_wrapper .logo img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

@media all and (max-width: 767px) {
  .header_wrapper .logo img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 60%;
  }
}

.header_wrapper nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_wrapper .main_nav_item_area {
  gap: 10px 40px;
}

.header_wrapper .main_nav_item_area li {
  position: relative;
}

@media all and (min-width: 1200px) {
  .header_wrapper .main_nav_item_area li {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .header_wrapper .main_nav_item_area li::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    z-index: 1;
    border-radius: 1.5px;
  }
}

.header_wrapper .main_nav_item_area li:hover {
  color: #fec021;
}

.header_wrapper .main_nav_item_area li:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.header_wrapper .main_nav_item_area li a {
  position: relative;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
}

@-webkit-keyframes navbarAnimation {
  0% {
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes navbarAnimation {
  0% {
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

.header_wrapper .header_button a {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  border: 2px solid #fec021;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 6px 21px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.header_wrapper .header_button a:hover {
  background: #fec021;
}

@media all and (max-width: 991px) {
  .header_wrapper .mainMenu,
  .header_wrapper .header_button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: none;
  }
}

.header_wrapper .mobile_icon i {
  color: white;
  font-size: 25px;
  position: relative;
  top: -10px;
}

.header_wrapper .dropdown_list {
  position: relative;
}

.header_wrapper .dropdown_list:hover .dropdown_area {
  top: 47px;
  opacity: 1;
  visibility: visible;
}

.header_wrapper .dropdown_list .dropdown_area {
  position: absolute;
  top: 65px;
  left: -170px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
      grid-template-columns: 180px 1fr;
  min-width: 400px;
  min-height: 162px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.header_wrapper .dropdown_list .dropdown_area li {
  position: relative;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.header_wrapper .dropdown_list .dropdown_area li::before {
  content: " ";
  position: absolute;
  top: 0;
  left: -15px;
  width: 0;
  height: 100%;
  background: #fff323;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.header_wrapper .dropdown_list .dropdown_area li:hover::before {
  width: calc(100% + 30px);
}

.header_wrapper .dropdown_list .dropdown_area li:hover a {
  color: #323232;
}

.header_wrapper .dropdown_list .dropdown_area li a {
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

.header_wrapper .dropdown_list .dropdown_area p {
  font-size: 16px;
  line-height: 19px;
  color: #323232;
}

.header_wrapper .corporate_dropdown_area {
  left: -145px !important;
  -ms-grid-columns: 220px 1fr !important;
      grid-template-columns: 220px 1fr !important;
  min-width: 545px !important;
}

.header_wrapper .product_dropdown_area {
  -ms-grid-columns: 1fr 1fr  !important;
      grid-template-columns: 1fr 1fr  !important;
  min-width: 510px !important;
  background: white;
  left: -200px !important;
}

.header_wrapper .product_dropdown_area .middile_dorpdown {
  background: rgba(254, 192, 33, 0.25);
}

.header_wrapper .product_dropdown_area .middile_dorpdown a {
  color: #323232 !important;
}

.header_wrapper .product_dropdown_area .middile_dorpdown a:hover {
  color: rgba(50, 50, 50, 0.767) !important;
}

.header_wrapper .product_dropdown_area .right_dropdown::before {
  display: none;
}

.header_wrapper .product_dropdown_area .middile_dorpdown {
  position: relative;
}

.header_wrapper .product_dropdown_area .middile_dorpdown::before {
  content: " ";
  position: absolute;
  top: -8px;
  left: 62px;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: ghostwhite;
  z-index: -1;
}

.header_wrapper .corporate_left_dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_wrapper .left_dropdown {
  padding: 15px;
  background: #d4af37;
}

.header_wrapper .right_dropdown {
  position: relative;
  background: #ffffff;
}

.header_wrapper .right_dropdown::before {
  content: " ";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: ghostwhite;
  z-index: -1;
}

.header_wrapper .right_dropdown p {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
  padding: 0 10%;
}

.header_wrapper .right_dropdown_shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.mobile_menu_area {
  position: fixed;
  top: 0;
  left: -100vw;
  background: #d7d7d7;
  width: 0;
  height: 100vh;
  z-index: 100001;
  overflow: auto;
  padding: 0 10px 0 15px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  display: none;
}

.mobile_menu_area::-webkit-scrollbar {
  width: 7px;
}

.mobile_menu_area::-webkit-scrollbar-track {
  background: black;
}

.mobile_menu_area::-webkit-scrollbar-thumb {
  background: #e93c30;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media all and (max-width: 991px) {
  .mobile_menu_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline;
  }
}

.mobile_menu_area li,
.mobile_menu_area button {
  margin-bottom: 10px;
}

.mobile_menu_area .close_icon {
  margin-top: 17px;
  margin-right: 20px;
  text-align: right;
}

.mobile_menu_area .mobile_menu_list {
  position: relative;
  margin-top: 8px;
}

.mobile_menu_area a,
.mobile_menu_area button {
  font-size: 20px;
  color: white;
  font-family: "Lato", sans-serif;
}

.mobile_menu_area .accordion-body li a {
  font-size: 18px;
}

.mobile_menu_area .accordion-button:not(.collapsed) {
  color: #323232;
}

.mobile_menu_area .accordion-item {
  border: none;
  background-color: transparent;
}

.mobile_menu_area .accordion-item button {
  padding: 0;
  background: transparent;
}

.mobile_menu_area .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mobile_menu_area .mobile_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background-color: #0000001c;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.mobile_menu_area .mobile_contact_button {
  margin-top: 100px;
}

.mobile_menu_area .mobile_contact_button a {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  border: 2px solid #fec021;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 6px 21px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #FEC021;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.navbar_active {
  left: 0;
  width: 50vw;
}

@media all and (max-width: 575px) {
  .navbar_active {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100vw;
  }
}

.navbar_active .mobile_menu_overlay {
  width: 100vw;
}

.active_menu::before {
  display: none;
}

.active_menu > a, .active_menu > button {
  position: relative;
  color: #fec021 !important;
}

@media all and (min-width: 992px) {
  .active_menu > a, .active_menu > button {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .active_menu > a::after, .active_menu > button::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
}

/* ------------ Sticky Navbar   ------------*/
.navbar-fixed {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100000;
  background-color: #323232;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  padding: 0;
}

.navbar-fixed .logo img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  width: 80%;
}

@media all and (max-width: 575px) {
  .navbar-fixed .logo img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 55%;
  }
}

/* ============  End Header Section =========== */
/* Hero Section */
.hero_wrapper {
  position: relative;
}

.hero_wrapper .hero_slider_item img {
  width: 100%;
}

@media all and (max-width: 767px) {
  .hero_wrapper .hero_slider_item img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 500px;
  }
}

.hero_wrapper .hero_slider_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 65%;
}

@media all and (max-width: 767px) {
  .hero_wrapper .hero_slider_content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 90%;
  }
}

.hero_wrapper .hero_slider_content h1 {
  position: relative;
  font-family: "Yeseva One", cursive;
  font-weight: normal;
  font-size: 50px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  padding-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero_wrapper .hero_slider_content h1 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 40px;
    line-height: 50px;
  }
}

@media all and (max-width: 767px) {
  .hero_wrapper .hero_slider_content h1 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 25px;
    line-height: 30px;
  }
}

.hero_wrapper .hero_slider_content h1 span {
  color: #fec021;
}

.hero_wrapper .hero_slider_content h1::before {
  content: " ";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: -10px;
  width: 20%;
  height: 2px;
  background-color: white;
  animation: opacityAnimation 2s ease 0.1s 1;
  -webkit-animation: opacityAnimation 2s ease 0.1s 1;
}

.hero_wrapper h4 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  margin-top: 40px;
  line-height: 30px;
  color: white;
  text-align: center;
}

.hero_wrapper h4 span {
  color: #fec021;
}

.hero_wrapper .slider_button {
  text-align: center;
  margin-top: 30px;
}

.hero_wrapper .slider_button a {
  padding: 14px 24px;
  background-color: #fec021;
}

.hero_wrapper .slider_button a span {
  color: white;
}

.hero_wrapper .slider_button .hover_button::before {
  background-color: white;
}

.hero_wrapper .slider_button .hover_button:hover span {
  color: #fec021;
}

.hero_wrapper .swiper-slide-active .slider_text1 {
  animation: downAnimation 2s ease 0.2s 1;
  -webkit-animation: downAnimation 2s ease 0.2s 1;
}

.hero_wrapper .swiper-slide-active .slider_text2 {
  animation: upAnimation 2s ease 0.2s 1;
  -webkit-animation: upAnimation 2s ease 0.2s 1;
}

.hero_wrapper .swiper-slide-active .hero_button_animation {
  animation: opacityAnimation 2s ease 0.1s 1;
  -webkit-animation: opacityAnimation 2s ease 0.1s 1;
}

@-webkit-keyframes downAnimation {
  0% {
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes downAnimation {
  0% {
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes upAnimation {
  0% {
    transform: translateY(70px);
    -webkit-transform: translateY(70px);
    -moz-transform: translateY(70px);
    -ms-transform: translateY(70px);
    -o-transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes upAnimation {
  0% {
    transform: translateY(70px);
    -webkit-transform: translateY(70px);
    -moz-transform: translateY(70px);
    -ms-transform: translateY(70px);
    -o-transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes opacityAnimation {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacityAnimation {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.hero_wrapper .swiper-pagination {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* background: red; */
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 6%;
  width: 0px;
  margin-left: auto;
}

@media all and (max-width: 767px) {
  .hero_wrapper .swiper-pagination {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-right: 1%;
  }
}

.hero_wrapper .swiper-pagination span {
  width: 15px;
  height: 15px;
  border: 3px solid white;
  background: #ffffff;
  opacity: 1;
}

@media all and (max-width: 767px) {
  .hero_wrapper .swiper-pagination span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 12px;
    height: 12px;
    border: 2px solid white;
  }
}

.hero_wrapper .swiper-pagination-bullet-active {
  background: #fec021 !important;
}

/* Inspare Section */
.inpare_wrapper .inspare_col {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inpare_wrapper .inspare_content_area {
  padding: 45px 15px;
}

.inpare_wrapper .inspare_content_area h5 {
  margin-bottom: 18px;
}

.inpare_wrapper .inspare_content_area h2 {
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  font-weight: 400;
  margin-bottom: 8px;
}

.inpare_wrapper .inspare_shape {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
}

/* Service Section */
.service_wrapper .service_item {
  position: relative;
}

.service_wrapper .service_item img {
  width: 100%;
}

.service_wrapper .service_content_wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service_wrapper .service_content {
  text-align: center;
  background: rgba(254, 192, 33, 0.35);
  padding: 50px 20px;
  width: 60%;
}

@media all and (max-width: 1199px) {
  .service_wrapper .service_content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 90%;
  }
}

@media all and (max-width: 991px) {
  .service_wrapper .service_content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 95%;
    padding: 30px 16px;
  }
}

.service_wrapper .service_content h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #ffffff;
}

.service_wrapper .service_content p {
  color: #ffffff;
  margin: 45px 0;
}

@media all and (max-width: 991px) {
  .service_wrapper .service_content p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 35px 0;
  }
}

.service_wrapper .service_shape {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: -1;
}

/* Features  Section */
.features_wrapper {
  padding: 50px 0 20px 0;
  background: #d4af37;
}

.features_wrapper .features_title {
  gap: 10px;
}

.features_wrapper .features_title p {
  width: 320px;
  color: #ffffff;
}

.features_wrapper .page_title {
  text-align: start;
  color: #ffffff;
}

.features_wrapper .features_slider_area {
  position: relative;
  margin-top: 50px;
}

@media all and (max-width: 767px) {
  .features_wrapper .features_slider_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 30px;
  }
}

.features_wrapper .product_slider_img {
  position: relative;
}

.features_wrapper .product_slider_img img {
  height: 260px;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.features_wrapper .product_slider_img img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.features_wrapper .product_slider_img h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  width: 90%;
}

@media all and (max-width: 767px) {
  .features_wrapper .product_slider_img h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 26px;
  }
}

.features_wrapper .features_product_next_arrow,
.features_wrapper .features_product_prev_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 100;
}

.features_wrapper .features_product_next_arrow {
  right: -5%;
}

.features_wrapper .features_product_prev_arrow {
  left: -5%;
}

/* Product Filter Section */
.product_filter_wrapper {
  position: relative;
}

.product_filter_wrapper .filter_inner_title {
  text-align: center;
  padding: 0 5%;
  margin-top: 8px;
}

.product_filter_wrapper .produt_filter_left_shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.product_filter_wrapper .product_filter_right_shape {
  position: absolute;
  bottom: -130px;
  right: 1%;
  z-index: -1;
}

.product_filter_wrapper .product_zoom_slider_area {
  margin-top: 30px;
}

.product_filter_wrapper .product_zoom_slider_area .factory_next_icon,
.product_filter_wrapper .product_zoom_slider_area .factory_prev_icon {
  width: 70px;
  height: 70px;
  background-color: #323232;
}

.product_filter_wrapper .product_zoom_slider_area .factory_next_icon::after,
.product_filter_wrapper .product_zoom_slider_area .factory_prev_icon::after {
  display: none;
}

.product_filter_wrapper .product_zoom_slider_area .factory_prev_icon {
  opacity: 1 !important;
}

.product_filter_wrapper .factory_img {
  position: relative;
  display: inline-block;
}

@media all and (min-width: 1200px) {
  .product_filter_wrapper .factory_img {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .product_filter_wrapper .factory_img:hover::before {
    opacity: 1;
  }
  .product_filter_wrapper .factory_img::before {
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #262626ab;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 60px;
    color: white;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
}

.product_filter_wrapper .factory_item h3 {
  font-weight: 300;
  font-size: 14px;
  line-height: 19px;
  padding: 2px;
  text-align: center;
  color: #323232;
  background: rgba(254, 192, 33, 0.2);
  border-radius: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
  margin-top: 10px;
}

.mfp-wrap {
  z-index: 999999999999999 !important;
}

/* History Section */
.histroy_wrapper {
  position: relative;
}

.histroy_wrapper .histroy_img_item {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.histroy_wrapper .histroy_img_item img {
  width: 100%;
}

.histroy_wrapper .histroy_img_item h3 {
  font-weight: 400;
  font-size: 95px;
  line-height: 120px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .histroy_wrapper .histroy_img_item h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 70px;
  }
}

@media all and (max-width: 767px) {
  .histroy_wrapper .histroy_img_item h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 50px;
  }
}

.histroy_wrapper .history_arrow {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.histroy_wrapper .btn-default {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 60px;
}

.histroy_wrapper .histroy_left_shape {
  position: absolute;
  bottom: -85px;
  left: 0;
  z-index: -1;
}

/* Sustainbility Video Section */
.sustainbility_video_wrapper {
  position: relative;
}

.sustainbility_video_wrapper .sustainbility_video_area iframe, .sustainbility_video_wrapper .sustainbility_video_area video {
  width: 100%;
}

@media all and (max-width: 575px) {
  .sustainbility_video_wrapper .sustainbility_video_area iframe, .sustainbility_video_wrapper .sustainbility_video_area video {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 320px;
  }
}

.sustainbility_video_wrapper .testimonial_bottom_shape {
  position: absolute;
  bottom: -85px;
  left: 0;
  z-index: -1;
}

/* Testimonial Section */
.testimonial_wrapper {
  position: relative;
}

.testimonial_wrapper .tetsimoial_col {
  padding: 30px;
  background: #d4af37;
}

.testimonial_wrapper .swiper-slide .row {
  padding-bottom: 60px;
}

@media all and (max-width: 767px) {
  .testimonial_wrapper .swiper-slide .row {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-bottom: 30px;
  }
}

.testimonial_wrapper .client_img img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.testimonial_wrapper .client_img img:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

@media all and (max-width: 767px) {
  .testimonial_wrapper .testimonial_content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 15px;
  }
}

.testimonial_wrapper .testimonial_content p {
  color: white;
}

.testimonial_wrapper .testimonial_content h4 {
  font-weight: 400;
  font-size: 42px;
  line-height: 53px;
  color: #ffffff;
  margin: 16px 0;
}

@media all and (max-width: 767px) {
  .testimonial_wrapper .testimonial_content h4 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 30px;
    margin: 7px 0;
  }
}

.testimonial_wrapper .testimonial_content .client_feedback1 {
  position: relative;
  padding-bottom: 30px;
}

@media all and (max-width: 767px) {
  .testimonial_wrapper .testimonial_content .client_feedback1 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-bottom: 15px;
  }
}

.testimonial_wrapper .testimonial_content .client_feedback1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 2px;
  background-color: white;
}

.testimonial_wrapper .testimonial_content .client_feedback2 {
  margin-top: 50px;
}

@media all and (max-width: 767px) {
  .testimonial_wrapper .testimonial_content .client_feedback2 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 30px;
  }
}

.testimonial_wrapper .product_img {
  width: 100%;
}

.testimonial_wrapper .product_img img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.testimonial_wrapper .product_img img:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.testimonial_wrapper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: white;
  opacity: 1;
}

.testimonial_wrapper .swiper-pagination-bullet-active-main {
  width: 15px;
  height: 15px;
}

.testimonial_wrapper .testimonial_bottom_shape {
  position: absolute;
  bottom: -85px;
  left: 0;
  z-index: -1;
}

.testimonial_wrapper .swiper-slide-active .client_img img {
  animation: zoomEffect 2s ease 1;
  -webkit-animation: zoomEffect 2s ease 1;
}

.testimonial_wrapper .swiper-slide-active .testimonial_content p:not(:last-child),
.testimonial_wrapper .swiper-slide-active .testimonial_content h4 {
  animation: fadeDown 2s ease 1;
  -webkit-animation: fadeDown 2s ease 1;
}

.testimonial_wrapper .swiper-slide-active .testimonial_content .client_feedback2 {
  animation: fadeUp 2s ease 1;
  -webkit-animation: fadeUp 2s ease 1;
}

.testimonial_wrapper .swiper-slide-active .product_img img {
  animation: fadeLeft 2s ease 1;
  -webkit-animation: fadeLeft 2s ease 1;
}

@-webkit-keyframes zoomEffect {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomEffect {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeDown {
  0% {
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeLeft {
  0% {
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeLeft {
  0% {
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
  }
}

/* Responsibilty Section */
.responsiblity_wrapper {
  position: relative;
}

.responsiblity_wrapper .responsiblity_item {
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.responsiblity_wrapper .responsiblity_content {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.responsiblity_wrapper .responsiblity_content p {
  color: white;
}

.responsiblity_wrapper .responsiblity_content .page_title {
  color: #fec021;
  margin: 15px 0 20px 0;
}

.responsiblity_wrapper .responsiblity_content .btn-default {
  margin-top: 50px;
}

.responsiblity_wrapper .responsibilty_shape {
  position: absolute;
  bottom: -140px;
  z-index: -1;
  left: 53%;
}

/* Counter Section */
.counter_wrapper {
  padding: 50px 0;
  background: rgba(254, 192, 33, 0.2);
}

.counter_wrapper .counter_item {
  width: 80%;
  text-align: center;
  margin-top: 30px;
}

.counter_wrapper .counter_item h2,
.counter_wrapper .counter_item h6 {
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.counter_wrapper .counter_item h2 {
  color: #d4af37;
}

.counter_wrapper .counter_item .couter_shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

@media all and (min-width: 768px) {
  .counter_wrapper .counter_item_last .couter_shape {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    display: none;
  }
}

/* Map  Section */
.map_wrapper {
  position: relative;
  margin-bottom: 50px;
}

@media all and (min-width: 768px) {
  .map_wrapper .map_content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: 60px;
  }
}

.map_wrapper .map_content h2 {
  color: #fec021;
}

.map_wrapper .map_shape {
  position: absolute;
  bottom: -230px;
  right: 0;
  z-index: -1;
}

.map_wrapper .worldmap {
  overflow: hidden;
  max-height: 600px;
  position: relative;
  border: 0px solid transparent;
}

.map_wrapper .worldmap.expanded {
  max-height: none;
}

.map_wrapper #chartdiv .amcharts-chart-div a {
  display: none !important;
}

.map_wrapper .marker-overlay {
  position: absolute;
  bottom: 10px;
}

.map_wrapper .marker-overlay ul li {
  padding-top: 8px;
  vertical-align: top;
  margin-top: -10px;
}

.map_wrapper .marker-overlay ul li h4 {
  vertical-align: top;
  margin-top: -0px;
  display: block;
}

.map_wrapper .marker-overlay span.yellow {
  position: relative;
  background: #fcefa3;
  padding: 10px 30px;
  position: absolute;
  border: 1px solid;
}

.map_wrapper .marker-overlay span.greenish {
  position: relative;
  background: #89bcd7;
  padding: 10px 30px;
  position: absolute;
  border: 1px solid;
}

.map_wrapper .marker-overlay span.purple {
  position: relative;
  background: #8473b4;
  padding: 10px 30px;
  position: absolute;
  border: 1px solid;
}

.map_wrapper .marker-overlay h4 {
  position: relative;
  padding-left: 80px;
  font-size: 15px;
  font-weight: 600;
  vertical-align: top;
}

.map_wrapper #chartdiv {
  width: 100%;
  height: 450px;
  -webkit-transition: background-color 500ms ease-out 1s;
  transition: background-color 500ms ease-out 1s;
}

.map_wrapper .map-marker {
  /* adjusting for the marker dimensions
    so that it is centered on coordinates */
  margin-left: -8px;
  margin-top: -8px;
}

.map_wrapper .map-marker.map-clickable {
  cursor: pointer;
}

.map_wrapper .pulse {
  width: 5px;
  height: 5px;
  border: 5px solid #0d73c3;
  border-radius: 30px;
  background-color: #0d73c3;
  z-index: 10;
  position: absolute;
}

.map_wrapper .map-marker .dot {
  border: 10px solid #0d73c3;
  background: transparent;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: pulse 3s ease-out;
  animation: pulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

.about_wrapper {
  position: relative;
  margin-bottom: 70px;
}

.about_wrapper .about_img_area {
  position: relative;
  top: -130px;
}

@media all and (max-width: 767px) {
  .about_wrapper .about_img_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -60px;
    margin-bottom: 20px;
  }
}

@media all and (min-width: 768px) {
  .about_wrapper .about_img2 {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: absolute;
    top: 132px;
    right: 0;
  }
}

@media all and (min-width: 768px) {
  .about_wrapper .about_content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: 90px;
  }
}

.about_wrapper .about_content h5,
.about_wrapper .about_content h2 {
  text-align: start;
}

.about_wrapper .about_content h2 {
  text-transform: none;
  font-weight: 400;
}

.about_wrapper .about_content h2 span {
  font-weight: 600;
}

.about_wrapper .about_content p {
  margin-top: 8px;
}

.about_wrapper .about_content p q {
  color: #fec021;
}

.about_wrapper .about_shape {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
}

.about_wrapper .about_shape2 {
  position: absolute;
  bottom: -150px;
  left: 0;
  z-index: -1;
}

.step_wrapper {
  position: relative;
  margin-bottom: 100px;
}

.step_wrapper .page_title {
  text-transform: capitalize;
}

.step_wrapper .step_grid_area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 100px 60px;
  margin-top: 100px;
}

@media all and (max-width: 1199px) {
  .step_wrapper .step_grid_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    grid-gap: 100px 30px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .step_wrapper .step_grid_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media all and (max-width: 575px) {
  .step_wrapper .step_grid_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.step_wrapper .step_item {
  position: relative;
  background: rgba(254, 192, 33, 0.5);
  -webkit-box-shadow: 0px 4px 12px rgba(254, 192, 33, 0.25);
          box-shadow: 0px 4px 12px rgba(254, 192, 33, 0.25);
  padding: 40px 11px;
}

.step_wrapper .top_step_item {
  margin-top: 40px;
}

@media all and (max-width: 575px) {
  .step_wrapper .top_step_item:nth-child(even)::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 80%;
  }
}

@media all and (max-width: 575px) {
  .step_wrapper .top_step_item:nth-child(even)::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 77%;
  }
}

.step_wrapper .top_step_item::before {
  content: " ";
  position: absolute;
  top: -30px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: rgba(254, 192, 33, 0.5);
  -webkit-box-shadow: 0px 4px 12px rgba(254, 192, 33, 0.25);
          box-shadow: 0px 4px 12px rgba(254, 192, 33, 0.25);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}

.step_wrapper .top_step_item:hover::after {
  color: white;
  background-color: #fec021;
}

.step_wrapper .top_step_item::after {
  content: attr(data-number);
  position: absolute;
  border: 3px solid #fec021;
  top: -85px;
  left: 10px;
  width: 50px;
  height: 50px;
  font-weight: bold;
  font-size: 30px;
  line-height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.step_wrapper .bottom_step_item::before {
  content: " ";
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 30px;
  height: 30px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  background: rgba(254, 192, 33, 0.5);
  -webkit-box-shadow: 0px 4px 12px rgba(254, 192, 33, 0.25);
          box-shadow: 0px 4px 12px rgba(254, 192, 33, 0.25);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}

.step_wrapper .bottom_step_item:hover::after {
  color: white;
  background-color: #fec021;
}

.step_wrapper .bottom_step_item::after {
  content: attr(data-number);
  position: absolute;
  border: 3px solid #fec021;
  bottom: -85px;
  left: 10px;
  width: 50px;
  height: 50px;
  font-weight: bold;
  font-size: 30px;
  line-height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.step_wrapper .step_content h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  margin: 6px 0;
}

.step_wrapper .step_content p {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.step_wrapper .step_shape {
  position: absolute;
  right: 0;
  z-index: -1;
}

.misson_wrapper {
  position: relative;
  margin-top: 130px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 80px 0;
}

@media all and (max-width: 767px) {
  .misson_wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 30px;
  }
}

.misson_wrapper .container {
  background: rgba(254, 192, 33, 0.3);
  padding: 35px;
}

.misson_wrapper .mission_item {
  width: 215px;
  background: #ffdf90;
  text-align: center;
  padding: 25px 18px 60px 18px;
}

@media all and (max-width: 767px) {
  .misson_wrapper .mission_item {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 20px;
    padding: 15px;
  }
}

.misson_wrapper .mission_item h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.misson_wrapper .vission_item {
  position: relative;
  top: -60px;
  right: -180px;
}

@media all and (max-width: 1199px) {
  .misson_wrapper .vission_item {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    right: -100px;
  }
}

@media all and (max-width: 767px) {
  .misson_wrapper .vission_item {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -20px;
  }
}

.misson_wrapper .mission_shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

.misson_wrapper .mission_content_right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.misson_wrapper .mission_content_right .page_title {
  position: relative;
  font-weight: bold;
  color: #323232;
  text-align: start;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.misson_wrapper .mission_content_right .page_title::before {
  content: " ";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 30%;
  background-color: #323232;
}

.misson_wrapper .mission_content_right p {
  margin-top: 10px;
}

.chart_wrapper .chart_year_content {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (min-width: 1200px) {
  .chart_wrapper .chart_year_content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -40px;
  }
}

.chart_wrapper .chart_year_content::before {
  content: " ";
  position: absolute;
  top: -50px;
  left: -100%;
  width: 246%;
  height: 115%;
  background: #fec021;
  z-index: -1;
}

.chart_wrapper .chart_year_content .page_title {
  color: #323232;
}

.chart_wrapper .chart_year_content h3 {
  font-weight: normal;
  font-size: 200px;
  line-height: 200px;
  color: #323232;
}

@media all and (max-width: 1199px) {
  .chart_wrapper .chart_year_content h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 140px;
  }
}

.chart_wrapper .chart_year_content h4 {
  letter-spacing: 0.69em;
}

.chart_wrapper .busniess_chart {
  margin-top: 60px;
}

@media all and (max-width: 767px) {
  .chart_wrapper .busniess_chart {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 30px;
  }
}

.technology_wrapper {
  position: relative;
  background: #ffdf90;
  overflow: hidden;
}

.technology_wrapper .row {
  padding: 85px 0;
}

.technology_wrapper .page_title {
  text-transform: capitalize;
  text-align: start;
  margin: 7px 0;
}

.technology_wrapper .page_title span {
  color: white;
}

.technology_wrapper .technology_slider_area {
  position: relative;
}

@media all and (max-width: 767px) {
  .technology_wrapper .technology_slider_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 20px;
  }
}

.technology_wrapper .technology_slider_area::before {
  content: " ";
  position: absolute;
  top: -85px;
  left: 125px;
  width: 130%;
  height: calc(140% + 85px);
  background: #d4af37;
}

@media all and (max-width: 767px) {
  .technology_wrapper .technology_slider_area::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: 0;
  }
}

.technology_wrapper .tech_slider_item {
  overflow: hidden;
}

.technology_wrapper .tech_slider_item img {
  width: 100%;
}

.technology_wrapper .tech_slider_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 7px 16%;
  min-height: 70px;
  background: #fec021;
}

.technology_wrapper .tech_slider_content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

.technology_wrapper .tech_slider_content p {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.technology_wrapper .techonology_next_icon,
.technology_wrapper .techonology_prev_icon {
  top: 88%;
  width: 45px;
  height: 45px;
  border: 3px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

@media all and (max-width: 767px) {
  .technology_wrapper .techonology_next_icon,
  .technology_wrapper .techonology_prev_icon {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: 94%;
  }
}

.technology_wrapper .techonology_next_icon:hover,
.technology_wrapper .techonology_prev_icon:hover {
  background-color: #fec021;
  border-color: #fec021;
}

.technology_wrapper .techonology_next_icon::after,
.technology_wrapper .techonology_prev_icon::after {
  color: white;
  font-weight: 700;
  font-size: 30px;
}

.technology_wrapper .techonology_next_icon {
  left: 210px;
}

.technology_wrapper .techonology_prev_icon {
  left: 150px;
}

.provide_wrapper .provide_content_wrapper {
  padding: 50px 10%;
  height: 100%;
  background: #d4af37;
}

.provide_wrapper .provide_content_area p:nth-child(1) {
  color: white;
}

.provide_wrapper .page_title {
  text-transform: capitalize;
  text-align: start;
  margin: 10px 0;
}

.provide_wrapper .provide_button {
  margin-top: 25px;
}

.provide_wrapper .provide_img {
  position: relative;
  top: 100px;
  left: -70px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .provide_wrapper .provide_img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: 20px;
    left: -50px;
  }
}

.provide_wrapper .provide_img img {
  max-width: calc(100% + 150px);
}

@media all and (max-width: 767px) {
  .provide_wrapper .provide_img img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
  }
}

.buyer_wrapper {
  padding-top: 40px;
  margin-bottom: 50px;
}

@media all and (min-width: 1400px) {
  .buyer_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: 120px !important;
  }
}

.buyer_wrapper .page_title {
  color: #fec021;
}

.buyer_wrapper .buyer_logo_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.corporate_service_wrapper {
  position: relative;
  top: -90px;
}

.corporate_service_wrapper .corporate_service_area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px 100px;
}

@media all and (max-width: 1199px) {
  .corporate_service_wrapper .corporate_service_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    grid-gap: 10px 30px;
  }
}

@media all and (max-width: 767px) {
  .corporate_service_wrapper .corporate_service_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.corporate_service_wrapper .corporate_service_item {
  overflow: hidden;
  border: 15px solid white;
}

.corporate_service_wrapper .corporate_service_item img {
  width: 100%;
}

.corporate_service_wrapper .corporate_content {
  position: relative;
  background: #fec021;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  min-height: 120px;
  padding: 15px 10%;
}

.corporate_service_wrapper .corporate_content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
}

.corporate_service_wrapper .corporate_content p {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  margin-top: 6px;
}

@media all and (max-width: 767px) {
  .corporate_service_wrapper .corporate_content p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
  }
}

.corporate_service_wrapper .corporate_shape {
  position: absolute;
  bottom: -111px;
  left: 0;
  z-index: -1;
}

.corporate_service_wrapper .corporate_right_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.coporate_video_wrapper {
  /* Animated Vido Btn */
}

.coporate_video_wrapper .corporate_video_bg {
  height: 290px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.coporate_video_wrapper .video_item_area {
  position: relative;
  z-index: 1;
  height: 420px;
  border-top: 10px solid #fec021;
}

@media all and (max-width: 767px) {
  .coporate_video_wrapper .video_item_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: -200px;
  }
}

.coporate_video_wrapper .video_item_area video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.coporate_video_wrapper .video_more_button {
  position: absolute;
  right: -90px;
  bottom: -10px;
  z-index: 10;
}

@media all and (max-width: 767px) {
  .coporate_video_wrapper .video_more_button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    bottom: 30px;
    right: 0;
  }
}

.coporate_video_wrapper .video_more_button button {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #fec021;
  padding: 18px 30px;
}

.coporate_video_wrapper .video_more_button button:hover {
  background: rgba(254, 191, 33, 0.678);
}

.coporate_video_wrapper .video_play_button {
  position: relative;
  background-color: transparent;
  border-radius: 50%;
  text-align: center;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.coporate_video_wrapper .video_play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.coporate_video_wrapper .video_play_button:focus {
  border: none !important;
  outline: none !important;
}

.coporate_video_wrapper .video_play_button span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 90px;
  height: 90px;
  background-color: rgba(254, 191, 33, 0.4);
  animation: video_button 3s linear infinite;
  -webkit-animation: video_button 3s linear infinite;
  -webkit-animation-delay: calc(0.5s * var(--i));
  animation-delay: calc(0.5s * var(--i));
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.coporate_video_wrapper .video_play_button svg {
  position: relative;
  z-index: 10;
}

@-webkit-keyframes video_button {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 12rem;
    height: 12rem;
    opacity: 0;
  }
}

@keyframes video_button {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 12rem;
    height: 12rem;
    opacity: 0;
  }
}

.coporate_video_wrapper .video_content_area {
  position: relative;
  top: -110px;
  padding: 40px 10% 15% 10%;
  background: white;
  -webkit-box-shadow: 0px 4px 5px rgba(254, 192, 33, 0.12);
          box-shadow: 0px 4px 5px rgba(254, 192, 33, 0.12);
}

@media all and (max-width: 767px) {
  .coporate_video_wrapper .video_content_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 100px;
  }
}

.coporate_video_wrapper .video_content_area h4 {
  text-align: start;
}

.coporate_video_wrapper .video_content_area .page_title {
  text-transform: none;
  text-align: start;
  margin-bottom: 10px;
  font-weight: 700;
}

.coporate_video_wrapper .video_content_area p {
  margin-top: 10px;
  text-align: justify;
}

.coporate_video_wrapper .video_content_shape {
  position: absolute;
  top: 0;
  left: 0;
}

.coporate_video_wrapper .conporate_video_slider_area {
  display: none;
}

.coporate_video_wrapper .conporate_video_slider_area video,
.coporate_video_wrapper .conporate_video_slider_area iframe {
  width: 100%;
}

.coporate_video_wrapper .slider_video_next,
.coporate_video_wrapper .slider_video_prev {
  opacity: 1 !important;
}

.coporate_video_wrapper .slider_video_next::after,
.coporate_video_wrapper .slider_video_prev::after {
  font-size: 40px;
  font-weight: 700;
  color: #fec021;
}

.coporate_video_wrapper .hide_slider_button {
  margin-top: 30px;
}

.coporate_video_wrapper .hide_slider_button button {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #fec021;
  padding: 18px 30px;
  text-transform: uppercase;
}

.coporate_video_wrapper .hide_slider_button button:hover {
  background: rgba(254, 191, 33, 0.678);
}

.manufacture_wrapper .manufacture_slider_aera {
  position: relative;
  margin-top: 50px;
}

.manufacture_wrapper .manufacture_slider_item {
  text-align: center;
}

.manufacture_wrapper .manufacuture_title h3 {
  text-align: start;
}

.manufacture_wrapper .manufacuture_title h2 {
  text-decoration: none;
  text-align: start;
}

.manufacture_wrapper .manufacture_content {
  margin-top: 5px;
  padding: 28px 20px;
  text-align: center;
  background: #fec021;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.manufacture_wrapper .manufacture_content h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #323232;
}

@media all and (max-width: 767px) {
  .manufacture_wrapper .manufacture_content h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 24px;
  }
}

.manufacture_wrapper .manufacture_content h4 {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
}

@media all and (max-width: 767px) {
  .manufacture_wrapper .manufacture_content h4 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
  }
}

.manufacture_wrapper .manufacture_next_icon::after,
.manufacture_wrapper .manufacture_prev_icon::after {
  display: none;
}

@media all and (min-width: 576px) {
  .manufacture_wrapper .manufacture_next_icon {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: -15px;
  }
}

@media all and (min-width: 576px) {
  .manufacture_wrapper .manufacture_prev_icon {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -50px;
  }
}

.manufacture_wrapper .manufacture_left_shape {
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
}

.manufacture_wrapper .manufacture_right_shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.manufacture_item_img {
  position: relative;
  display: inline-block;
}

@media all and (min-width: 1200px) {
  .manufacture_item_img {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .manufacture_item_img:hover::before {
    opacity: 1;
  }
  .manufacture_item_img::before {
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #262626ab;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 60px;
    color: white;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
}

.environmet_wrapper .page_title {
  margin-top: 5px;
  text-transform: capitalize;
}

.environmet_wrapper .evironment_slider_area {
  position: relative;
  padding: 30px 0;
  background: rgba(254, 192, 33, 0.5);
  margin-top: 30px;
}

.environmet_wrapper .slider_grid_area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media all and (max-width: 1199px) {
  .environmet_wrapper .slider_grid_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    grid-gap: 20px;
  }
}

@media all and (max-width: 575px) {
  .environmet_wrapper .slider_grid_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    grid-gap: 10px;
  }
}

.environmet_wrapper .slider_grid_area img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.environmet_wrapper .slider_grid_area img:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.environmet_wrapper .environment_pagination span {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.environmet_wrapper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: white;
  opacity: 1;
}

.environmet_wrapper .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
}

.social_slider_wrapper {
  height: 630px;
  width: 100%;
  margin-top: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media all and (max-width: 767px) {
  .social_slider_wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 530px;
  }
}

@media all and (min-width: 1400px) {
  .social_slider_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: 330px;
  }
}

.social_slider_wrapper .container,
.social_slider_wrapper .row {
  height: 100%;
}

.social_slider_wrapper .social_content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 60px;
}

.social_slider_wrapper .social_content h2 {
  color: white;
  text-transform: none;
  margin-top: 20px;
}

.social_slider_area {
  position: relative;
  top: -770px;
}

.social_slider_area h3.page_title {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .social_slider_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -700px;
  }
}

@media all and (min-width: 1400px) {
  .social_slider_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    top: -820px;
  }
}

.social_slider_area .social_slider_content {
  padding: 20px 10%;
}

.social_slider_area .social_slider_img img {
  width: 100%;
}

.social_slider_area .swiper-slide {
  background: #fec021;
  border: 15px solid #ffffff;
}

.social_slider_area .social_slider_content h2 {
  color: white;
  text-transform: none;
}

.social_slider_area .social_slider_content p {
  margin: 24px 0 15px 0;
  text-align: justify;
}

.social_slider_area .social_slider_content ul {
  padding-left: 25px;
}

.social_slider_area .social_slider_content ul li {
  position: relative;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
}

@media all and (max-width: 767px) {
  .social_slider_area .social_slider_content ul li {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
  }
}

.social_slider_area .social_slider_content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #323232;
}

.social_slider_area .social_next_icon::after,
.social_slider_area .social_prev_icon::after {
  display: none;
}

@media all and (min-width: 768px) {
  .social_slider_area .social_next_icon {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: -30px;
  }
}

@media all and (min-width: 768px) {
  .social_slider_area .social_prev_icon {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -40px;
  }
}

.social_slider_area .csr_videos {
  width: 100%;
  height: 500px;
}

@media all and (max-width: 1199px) {
  .social_slider_area .csr_videos {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 400px;
  }
}

@media all and (max-width: 575px) {
  .social_slider_area .csr_videos {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 300px;
  }
}

.volumn_button {
  position: absolute;
  right: 110px;
  bottom: 10px;
}

@media all and (max-width: 767px) {
  .volumn_button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    right: 30px;
    bottom: 55px;
  }
}

@media all and (min-width: 1300px) {
  .volumn_button {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: 215px;
  }
}

.volumn_button i {
  color: #ff00d4;
  font-size: 25px;
  cursor: pointer;
}

.grid_wrapper {
  position: relative;
  top: -100px;
}

.grid_wrapper img {
  width: 100%;
}

.grid_wrapper .grid_img_item {
  position: relative;
}

.grid_wrapper .grid_img_area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 550px 1fr;
      grid-template-columns: 550px 1fr;
  grid-gap: 10px;
  background-color: white;
  border: 10px solid white;
}

@media all and (max-width: 991px) {
  .grid_wrapper .grid_img_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.grid_wrapper .grid_img_left_side {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70% 1fr;
      grid-template-columns: 70% 1fr;
  grid-gap: 10px;
}

@media all and (max-width: 575px) {
  .grid_wrapper .grid_img_left_side {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.grid_wrapper .grid_left_left_img img {
  height: 418px;
}

.grid_wrapper .grid_left_left_img h2 {
  position: absolute;
  bottom: 0;
}

@media all and (max-width: 575px) {
  .grid_wrapper .grid_left_right_img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}

.grid_wrapper .grid_left_right_img .grid_img_item:nth-child(2) {
  margin-top: 10px;
}

@media all and (max-width: 575px) {
  .grid_wrapper .grid_left_right_img .grid_img_item:nth-child(2) {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 0;
  }
}

.grid_wrapper .grid_left_right_img .grid_img_item:nth-child(2) img {
  height: 206px;
}

.grid_wrapper .grid_right_bottom_img img {
  height: 224px;
}

.grid_wrapper .grid_right_top_img img {
  height: 185px;
}

@media all and (max-width: 575px) {
  .grid_wrapper .grid_right_top_img img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 130px;
  }
}

.grid_wrapper .grid_right_bottom_img img {
  margin-top: 10px;
}

.grid_wrapper .grid_right_top_img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}

.grid_wrapper .grid_img_item h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #323232;
  width: 100%;
  background: #fec021;
  padding: 8px;
  text-align: center;
}

.grid_wrapper .grid_left_shape {
  position: absolute;
  left: 0;
  bottom: -220px;
  z-index: -1;
}

.grid_wrapper .grid_right_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.features_product_wrapper {
  margin-top: -70px;
}

.features_product_wrapper .page_title {
  margin-bottom: 30px;
}

.features_product_wrapper .swiper-slide img {
  width: 100%;
}

.features_product_wrapper .features_next_icon::after,
.features_product_wrapper .features_prev_icon::after {
  display: none;
}

@media all and (min-width: 768px) {
  .features_product_wrapper .features_next_icon {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: -40px;
  }
}

@media all and (min-width: 768px) {
  .features_product_wrapper .features_prev_icon {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -40px;
  }
}

@media all and (min-width: 768px) {
  .featurs_product_img_first {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: relative;
    top: -120px;
  }
}

.featurs_product_img_wrapper {
  position: relative;
  margin-top: 20px;
}

.featurs_product_img_wrapper .features_img_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100%;
}

.featurs_product_img_wrapper .features_img_content h2 {
  font-weight: normal;
  font-size: 85px;
  line-height: 85px;
  color: #323232;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .featurs_product_img_wrapper .features_img_content h2 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 55px;
    line-height: 60px;
  }
}

@media all and (max-width: 767px) {
  .featurs_product_img_wrapper .features_img_content h2 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 40px;
    line-height: 50px;
  }
}

.featurs_product_img_wrapper .features_img_area {
  position: relative;
}

.featurs_product_img_wrapper .product_link {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media all and (max-width: 991px) {
  .featurs_product_img_wrapper .product_link {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 80%;
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  .featurs_product_img_wrapper .product_link {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    text-align: center;
  }
}

.featurs_product_img_wrapper .product_link a {
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  color: #323232;
  background: #fec021;
  padding: 14px 40px;
}

@media all and (max-width: 767px) {
  .featurs_product_img_wrapper .product_link a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 18px;
    padding: 14px 30px;
  }
}

.featurs_product_img_wrapper .product_link a:hover {
  opacity: 0.9;
}

.featurs_product_img_wrapper .fetures_img_left_shape {
  position: absolute;
  top: 33%;
  z-index: -1;
}

.featurs_product_img_wrapper .fetures_img_right_shape {
  position: absolute;
  top: 25%;
  right: 0;
  z-index: -1;
}

.inner_featurs_product_wrapper {
  margin-top: 20px;
}

.inner_featurs_product_wrapper .inner_features_product_area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px 90px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .inner_featurs_product_wrapper .inner_features_product_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    grid-gap: 20px 50px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .inner_featurs_product_wrapper .inner_features_product_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 20px 30px;
  }
}

@media all and (max-width: 575px) {
  .inner_featurs_product_wrapper .inner_features_product_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.inner_featurs_product_wrapper .inner_features_img {
  position: relative;
}

.inner_featurs_product_wrapper .inner_features_img img {
  width: 100%;
}

.inner_featurs_product_wrapper .inner_features_img h3 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 70%;
  text-align: center;
  background: #fec021;
}

.inner_featurs_product_wrapper .inner_features_img h3:hover {
  opacity: 0.9;
}

.inner_featurs_product_wrapper .inner_features_img h3 a {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18.5257px;
  line-height: 22px;
  color: #323232;
  padding: 14px 0;
  display: inline-block;
}

.top_buyer_wrapper {
  position: relative;
}

@media all and (min-width: 992px) {
  .top_buyer_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-top: 100px;
  }
}

.top_buyer_wrapper .page_title {
  margin-bottom: 30px;
}

.top_buyer_wrapper .top_buyer_img_section {
  padding: 70px 0;
  background: rgba(254, 192, 33, 0.1);
}

.top_buyer_wrapper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_buyer_wrapper .top_buyer_shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.men_img_wrapper {
  position: relative;
}

.men_img_wrapper .men_img_area img {
  width: 100%;
}

.men_img_wrapper .men_img_area1 {
  position: relative;
  top: -150px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .men_img_wrapper .men_img_area1 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -120px;
  }
}

@media all and (max-width: 575px) {
  .men_img_wrapper .men_img_area1 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -90px;
  }
}

.men_img_wrapper .men_img_area2 {
  position: relative;
  top: -70px;
  left: -70px;
}

@media all and (max-width: 767px) {
  .men_img_wrapper .men_img_area2 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -120px;
    left: 0;
  }
}

.men_img_wrapper .men_content {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 6px solid #fec021;
  padding: 5px 30px;
}

@media all and (max-width: 575px) {
  .men_img_wrapper .men_content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 90%;
    padding: 5px 20px;
  }
}

.men_img_wrapper .men_content h2 {
  color: white;
  text-transform: capitalize;
}

.men_img_wrapper .men_left_shape {
  position: absolute;
  bottom: 130px;
  left: 0;
  z-index: -1;
}

.men_img_wrapper .men_right_shape {
  position: absolute;
  right: 0;
  top: 20%;
  z-index: -1;
}

.men_img_wrapper .product_img2 {
  position: absolute;
  right: -40px;
  opacity: 0;
  visibility: hidden;
}

.women_section_wrapper .fetures_img_left_shape {
  top: 100%;
}

.kids_wrapper .fetures_img_right_shape {
  top: 60%;
}

.accessories_wrapper .page_title {
  margin-bottom: 20px;
}

.accessories_wrapper .inner_features_img h3 {
  position: static;
  text-align: center;
  left: 0;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  margin: auto;
  margin-top: 10px;
}

.product_tab_wrapper {
  padding-top: 20px;
}

.product_tab_wrapper ul.nav {
  gap: 5px 30px;
}

@media all and (max-width: 991px) {
  .product_tab_wrapper ul.nav {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    gap: 5px 20px;
  }
}

.product_tab_wrapper .nav-item button {
  font-family: "Josefin Slab", serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  color: #323232;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 0;
  padding-bottom: 5px;
}

@media all and (max-width: 991px) {
  .product_tab_wrapper .nav-item button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
  }
}

.product_tab_wrapper .nav-item button:hover {
  opacity: 0.8;
}

.product_tab_wrapper .nav-item .active {
  color: #323232;
  background-color: transparent;
  border-bottom: 3px solid #fec021 !important;
}

.product_tab_wrapper .product_tab_item img {
  width: 100%;
}

.product_tab_wrapper .product_tab_item a {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18.5257px;
  line-height: 22px;
  color: #323232;
  background: #fec021;
  width: 100%;
  display: inline-block;
  padding: 8px 0;
}

.product_tab_wrapper .product_tab_item a:hover {
  opacity: 0.9;
}

.product_tab_wrapper .product_tab_item h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #323232;
  margin-top: 15px;
  margin-bottom: 5px;
}

.product_tab_wrapper .product_tab_item h5 {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #888888;
}

.product_tab_wrapper .swiper-button-next::after,
.product_tab_wrapper .swiper-button-prev::after {
  display: none;
}

@media all and (min-width: 1200px) {
  .product_tab_wrapper .swiper-button-next {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: -50px;
  }
}

@media all and (min-width: 1200px) {
  .product_tab_wrapper .swiper-button-prev {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -50px;
  }
}

.studio_wrapper {
  padding-top: 20px;
  margin-bottom: 110px;
}

.studio_wrapper .studio_img_area {
  position: relative;
}

.studio_wrapper .studio_img_area img {
  width: 100%;
}

.studio_wrapper .studio_img_area a {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: -22px;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
  padding: 15px 40px;
  background: #fec021;
}

.studio_wrapper .studio_img_area a:hover {
  opacity: 0.9;
}

@media all and (max-width: 767px) {
  .studio_wrapper .studio_img_area a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 95%;
    text-align: center;
  }
}

.men_product_wrapper {
  position: relative;
  padding-top: 50px;
  margin-bottom: 80px;
}

.men_product_wrapper .men_prodcut_button {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  padding: 8px 20px;
  background: #fec021;
  border-radius: 15px;
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 50px;
}

.men_product_wrapper .men_prodcut_button:hover {
  background: rgba(254, 191, 33, 0.774);
}

.men_product_wrapper .men_product_left_shape {
  position: absolute;
  top: 13%;
  left: 0;
  z-index: -1;
}

.men_product_wrapper .men_product_right_shape {
  position: absolute;
  right: 0;
  top: 6%;
  z-index: -1;
}

.men_product_wrapper .men_product_right_bottom_shape {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
}

.men_product_wrapper .men_product_left_bottom_shape {
  position: absolute;
  bottom: -10%;
  left: 0;
  z-index: -1;
}

@media all and (max-width: 575px) {
  .men_product_wrapper .men_product_left_bottom_shape {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: none;
  }
}

.men_product_wrapper x
.product_pagination_area {
  margin-top: 50px;
  gap: 15px;
}

@media all and (max-width: 575px) {
  .men_product_wrapper x
.product_pagination_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.men_product_wrapper x
.product_pagination_area ul {
  gap: 10px;
}

.men_product_wrapper x
.product_pagination_area ul li {
  border: 1.43475px solid #fec021;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.men_product_wrapper x
.product_pagination_area ul li a {
  min-width: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 13.2898px;
  color: #888888;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.men_product_wrapper x
.product_pagination_area ul li:hover:not(.active) a {
  color: #ffffff;
  background: #fec021;
}

.men_product_wrapper x
.product_pagination_area ul .active {
  background: #fec021;
}

.men_product_item {
  position: relative;
  padding: 20px;
  background: rgba(254, 192, 33, 0.15);
  overflow: hidden;
  margin-top: 30px;
  text-align: center;
}

.men_product_item > a .product_img1, .men_product_item > a .product_img2 {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.men_product_item > a:hover .product_img1 {
  opacity: 0;
  visibility: hidden;
}

.men_product_item > a:hover .product_img2 {
  opacity: 1;
  visibility: visible;
}

.men_product_item .product_img2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.men_product_content {
  text-align: center;
}

.men_product_content .men_product_name a {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18.5257px;
  line-height: 22px;
  color: #323232;
  background: #fec021;
  width: 100%;
  display: inline-block;
  padding: 8px 0;
}

.men_product_content .men_product_name a:hover {
  opacity: 0.9;
}

.men_product_content h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #323232;
  margin-top: 15px;
  margin-bottom: 5px;
}

.men_product_content h5 {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #888888;
}

.magnifier {
  background-color: #fec021 !important;
  border: 3px solid #ffdf90 !important;
}

.product_details_wrapper {
  position: relative;
}

.product_details_wrapper .product_details_slider_area {
  position: relative;
  top: -100px;
}

@media all and (max-width: 767px) {
  .product_details_wrapper .product_details_slider_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -50px;
  }
}

.product_details_wrapper .gallery-top {
  background: #ffdf90;
  border: 15px solid #ffffff;
}

.product_details_wrapper .gallery-thumbs .swiper-slide {
  opacity: 0.4;
}

.product_details_wrapper .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.product_details_wrapper .swiper-button-next::after,
.product_details_wrapper .swiper-button-prev::after {
  display: none;
}

.product_details_wrapper .prodcut_title_area h3 {
  font-weight: normal;
  font-size: 35px;
  line-height: 35px;
  color: #323232;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .product_details_wrapper .prodcut_title_area h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: -50px;
  }
}

.product_details_wrapper .prodcut_title_area ul li {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #888888;
  margin-bottom: 10px;
}

.product_details_wrapper .prodcut_details_right_shape {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 10%;
}

.prodcut_details_enque {
  font-weight: 600;
  font-size: 18.5257px;
  line-height: 22px;
  color: #323232;
  background-color: #fec021;
  padding: 13px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  margin: auto;
  margin-top: 70px;
  margin-bottom: 20px;
}

.prodcut_details_enque:hover {
  opacity: 0.9;
}

.product_details_form_area {
  display: none;
}

.product_details_form_area form {
  padding: 30px 45px;
  background: #ffdf90;
  -webkit-box-shadow: 0px 2.57901px 2.57901px rgba(254, 192, 33, 0.2);
          box-shadow: 0px 2.57901px 2.57901px rgba(254, 192, 33, 0.2);
}

.product_details_form_area form .input_row {
  margin-top: 10px;
}

.product_details_form_area form .input_row input,
.product_details_form_area form .input_row textarea {
  width: 100%;
  background-color: #ffffff;
  border: none;
  padding-left: 20px;
}

.product_details_form_area form .input_row input {
  height: 50px;
}

.product_details_form_area form .input_row textarea {
  padding-top: 10px;
}

.product_details_form_area form .form-checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.product_details_form_area form .form-checks label {
  padding-left: 10px;
}

.product_details_form_area form .submit_button {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  background: #d4af37;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 8px 30px;
  margin-top: 15px;
}

.product_details_form_area form .submit_button:hover {
  background: rgba(212, 175, 55, 0.822);
}

.product_details_form_area form .form-check-input {
  min-width: 1em;
}

.product_details_form_area form::-webkit-input-placeholder {
  font-weight: normal;
  font-size: 11.6055px !important;
  line-height: 14px;
  color: #707070;
}

.product_details_form_area form:-ms-input-placeholder {
  font-weight: normal;
  font-size: 11.6055px !important;
  line-height: 14px;
  color: #707070;
}

.product_details_form_area form::-ms-input-placeholder {
  font-weight: normal;
  font-size: 11.6055px !important;
  line-height: 14px;
  color: #707070;
}

.product_details_form_area form::placeholder {
  font-weight: normal;
  font-size: 11.6055px !important;
  line-height: 14px;
  color: #707070;
}

.related_prodcut_wrapper {
  margin-bottom: 50px;
}

.related_prodcut_wrapper .page_title {
  text-align: start;
  text-transform: capitalize;
}

.related_prodcut_wrapper .related_prodcut_slider_area {
  position: relative;
}

.related_prodcut_wrapper .swiper-button-next::after,
.related_prodcut_wrapper .swiper-button-prev::after {
  display: none;
}

.product_content_wrapper {
  position: relative;
}

.product_content_wrapper .top_features_img {
  margin-top: -100px;
}

@media all and (max-width: 767px) {
  .product_content_wrapper .top_features_img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: -50px;
  }
}

@media all and (min-width: 1200px) {
  .product_content_wrapper .bottom_features_img {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: -20px;
  }
}

.product_content_wrapper .bottom_features_img img {
  border: 15px solid #fec021;
}

.product_content_wrapper .page_title {
  text-transform: none;
  text-align: start;
  margin-top: 30px;
}

.product_content_wrapper p {
  margin-top: 10px;
  font-weight: 300;
  font-size: 15px;
  line-height: 19px;
  text-align: justify;
  color: #323232;
}

.product_content_wrapper .prodcut_content_left_shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media all and (max-width: 767px) {
  .product_content_wrapper .prodcut_content_left_shape {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: none;
  }
}

.product_content_wrapper .prodcut_content_right_shape {
  position: absolute;
  right: 0;
  top: 25%;
  z-index: -1;
}

.luxury_product_slider_wrapper .page_title {
  text-align: center;
}

.luxury_product_slider_wrapper .luxury_prodcut_slider_area {
  position: relative;
}

.luxury_product_slider_wrapper .luxury_prodcut_slider_area video {
  width: 100%;
}

@media all and (min-width: 992px) {
  .luxury_product_slider_wrapper .swiper-button-next {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: -40px;
  }
}

@media all and (min-width: 992px) {
  .luxury_product_slider_wrapper .swiper-button-prev {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -40px;
  }
}

.luxury_product_slider_wrapper .slider_bottom_button {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  background: #fec021;
  padding: 19px 38px;
  display: inline-block;
  margin-top: 40px;
}

.luxury_product_slider_wrapper .slider_bottom_button:hover {
  opacity: 0.9;
}

.luxury_product_slider_wrapper .product_details_form_area {
  display: none;
  margin-top: 30px;
}

.showFrom {
  display: block !important;
  animation: showForm 2s ease-in-out;
  -webkit-animation: showForm 2s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

@-webkit-keyframes showForm {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

@keyframes showForm {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

.product_pagination_area {
  margin-top: 50px;
}

.product_pagination_area ul {
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product_pagination_area .page-link {
  font-weight: 600;
  font-size: 13.2898px;
  line-height: 16px;
  color: #888888;
  border: 1.43475px solid #FEC021 !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product_pagination_area .active .page-link {
  color: white;
  background: #FEC021;
}

.contact_form_wrapper {
  position: relative;
  top: -115px;
}

@media all and (max-width: 767px) {
  .contact_form_wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    top: -90px;
  }
}

.contact_form_wrapper .contact_form_area {
  padding: 55px 6%;
  background: #ffdf90;
  border: 15px solid #ffffff;
  -webkit-box-shadow: 0px 4px 4px rgba(254, 192, 33, 0.2);
          box-shadow: 0px 4px 4px rgba(254, 192, 33, 0.2);
}

@media all and (max-width: 767px) {
  .contact_form_wrapper .contact_form_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 25px 6%;
  }
}

.contact_form_wrapper .input_group {
  margin-top: 20px;
}

.contact_form_wrapper .input_group input,
.contact_form_wrapper .input_group textarea {
  width: 100%;
  padding-left: 30px;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
  border: none;
}

@media all and (max-width: 991px) {
  .contact_form_wrapper .input_group input,
  .contact_form_wrapper .input_group textarea {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 15px;
  }
}

.contact_form_wrapper .input_group input {
  height: 70px;
}

@media all and (max-width: 991px) {
  .contact_form_wrapper .input_group input {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 50px;
  }
}

.contact_form_wrapper .input_group textarea {
  padding-top: 30px;
}

.contact_form_wrapper .form-checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.contact_form_wrapper .form-checks label {
  padding-left: 10px;
}

.contact_form_wrapper .submit_button {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  background: #d4af37;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 8px 30px;
  margin-top: 15px;
}

.contact_form_wrapper .submit_button:hover {
  background: rgba(212, 175, 55, 0.822);
}

.contact_form_wrapper .form-check-input {
  min-width: 1em;
}

.contact_address_wrapper {
  margin-bottom: 50px;
}

.contact_address_wrapper .page_innner_title {
  text-align: start;
}

.contact_address_wrapper .page_title {
  text-align: start;
  text-transform: none;
}

.contact_address_wrapper .location_area {
  margin-top: 15px;
}

.contact_address_wrapper .location_area h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 32px;
  color: #323232;
}

.contact_address_wrapper .location_area ul {
  margin-top: 10px;
}

.contact_address_wrapper .location_area ul li {
  margin-bottom: 2px;
}

.contact_address_wrapper .location_area ul li, .contact_address_wrapper .location_area ul a {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #323232;
}

.history_timeline_wrapper {
  position: relative;
  top: -100px;
}

.history_timeline_wrapper .histroy_timeline_area {
  position: relative;
}

.history_timeline_wrapper .histroy_timeline_area::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 98%;
  background-color: #fec021;
}

.history_timeline_wrapper .histroy_timeline_area::after {
  content: " ";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 10px;
  background-color: #fec021;
}

.history_timeline_wrapper .history_item_wrapper {
  position: relative;
  padding-left: 30%;
}

@media all and (max-width: 991px) {
  .history_timeline_wrapper .history_item_wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 17% !important;
  }
}

.history_timeline_wrapper .history_item_wrapper:not(:first-child) {
  margin-top: 50px;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(2) {
  padding-left: 43%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(2)::before {
  width: 39%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(2)::after {
  left: 38%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(3) {
  padding-left: 50%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(3)::before {
  width: 45%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(3)::after {
  left: 44%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .history_timeline_wrapper .history_item_wrapper:nth-child(3) {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 46%;
  }
  .history_timeline_wrapper .history_item_wrapper:nth-child(3)::before {
    width: 43%;
  }
  .history_timeline_wrapper .history_item_wrapper:nth-child(3)::after {
    left: 41%;
  }
}

.history_timeline_wrapper .history_item_wrapper:nth-child(4) {
  padding-left: 58%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(4)::before {
  width: 53%;
}

.history_timeline_wrapper .history_item_wrapper:nth-child(4)::after {
  left: 52%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .history_timeline_wrapper .history_item_wrapper:nth-child(4) {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 50%;
  }
  .history_timeline_wrapper .history_item_wrapper:nth-child(4)::before {
    width: 45%;
  }
  .history_timeline_wrapper .history_item_wrapper:nth-child(4)::after {
    left: 44%;
  }
}

.history_timeline_wrapper .history_item_wrapper::before {
  content: " ";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  height: 10px;
  width: 26%;
  background-color: #fec021;
}

@media all and (max-width: 991px) {
  .history_timeline_wrapper .history_item_wrapper::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 10% !important;
  }
}

.history_timeline_wrapper .history_item_wrapper::after {
  content: " ";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 25%;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #fec021;
}

@media all and (max-width: 991px) {
  .history_timeline_wrapper .history_item_wrapper::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 5% !important;
  }
}

.history_timeline_wrapper .history_timeline_item {
  width: 500px;
}

@media all and (max-width: 767px) {
  .history_timeline_wrapper .history_timeline_item {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
  }
}

.history_timeline_wrapper .histroy_content {
  padding-left: 10px;
}

.history_timeline_wrapper .histroy_content h3 {
  font-weight: bold;
  font-size: 45px;
  line-height: 45px;
  color: #323232;
}

.history_timeline_wrapper .histroy_content .page_title {
  text-align: start;
  text-transform: none;
  color: #323232;
}

.history_timeline_wrapper .history_left_shape {
  position: absolute;
  top: 400px;
  left: 0;
  z-index: -1;
}

.history_timeline_wrapper .history_right_shape {
  position: absolute;
  top: 300px;
  right: 0;
  z-index: -1;
}

.btn-default {
  display: inline-block;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 15px;
}

.btn-default span {
  position: relative;
}

.btn-default span svg {
  margin-left: 2px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.btn-default > span {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #fec021;
}

@media all and (max-width: 767px) {
  .btn-default > span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
  }
}

.hover_button {
  position: relative;
  overflow: hidden;
}

.hover_button::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fec021;
  border-radius: 15px;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.hover_button:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.hover_button:hover span {
  color: white;
}

.hover_button:hover span svg {
  margin-left: 5px;
}

.hover_button:hover span svg path {
  fill: white;
}

.btn-default-2 {
  padding: 8px 22px;
}

.btn-default-2:hover {
  background: #fec021;
}

.btn-default-2:hover span {
  color: white !important;
}

.breadcrumb_wrapper {
  height: 470px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 576px) and (max-width: 991px) {
  .breadcrumb_wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 350px;
  }
}

@media all and (max-width: 575px) {
  .breadcrumb_wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 270px;
  }
}

.breadcrumb_wrapper .page_title {
  color: white;
  text-transform: none;
}

.breadcrumb_wrapper .breadcrumb li a, .breadcrumb_wrapper .breadcrumb .active a {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #FFFFFF;
}

@media all and (max-width: 575px) {
  .breadcrumb_wrapper .breadcrumb li a, .breadcrumb_wrapper .breadcrumb .active a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
  }
}

.breadcrumb_wrapper .breadcrumb-item.active {
  color: #FFFFFF;
}

.breadcrumb_wrapper .breadcrumb-item + .breadcrumb-item::before {
  color: #FFFFFF;
}

/*
!Utilities Or Helper CSS
*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: white;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

html, body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Josefin Slab", serif;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5, h6, p {
  margin-bottom: 0;
}

img, svg {
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus {
  outline: none !important;
}

input:focus,
select:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid black !important;
}

textarea:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}

.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

button {
  border: none !important;
}

button:hover {
  border: none !important;
}

*::-webkit-input-placeholder {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
}

*:-ms-input-placeholder {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
}

*::-ms-input-placeholder {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
}

*::placeholder {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
}

*::-moz-placeholder {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
}

::-moz-selection {
  color: black;
  background: rgba(254, 192, 33, 0.35);
}

::selection {
  color: black;
  background: rgba(254, 192, 33, 0.35);
}

::-moz-selection {
  color: black;
  background: rgba(254, 192, 33, 0.35);
}

/*  Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Common Class */
@media all and (max-width: 575px) {
  .container {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.default_section_gap {
  margin-top: 50px;
}

.page_title {
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.page_title span {
  color: #FEC021;
}

@media all and (max-width: 767px) {
  .page_title {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 32px;
    line-height: 47px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .page_title {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 40px;
    line-height: 47px;
  }
}

.page_innner_title {
  font-family: "Lato", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #FEC021;
}

.skew_hover_effect {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.skew_hover_effect:hover::before {
  left: 140%;
  opacity: 1;
  visibility: visible;
}

.skew_hover_effect::before {
  content: " ";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 120%;
  background: #e5e5e547;
  transform: skew(45deg);
  -webkit-transform: skew(45deg);
  -moz-transform: skew(45deg);
  -ms-transform: skew(45deg);
  -o-transform: skew(45deg);
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

/* ============ ScrollToUP Section =========== */
.scrolltop {
  position: fixed;
  right: 70px;
  bottom: 150px;
  z-index: 1000000;
  background-color: #111111;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media all and (max-width: 991px) {
  .scrolltop {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    right: 20px;
  }
}

.scrolltop i {
  font-size: 16px;
  color: #FEC021;
}

.scrolltop:hover {
  background-color: rgba(17, 17, 17, 0.7);
}

.scroll_active {
  bottom: 60px;
  visibility: visible;
  opacity: 1;
}

.svg_up_animate {
  animation: svgUp 1.2s ease infinite alternate;
  -webkit-animation: svgUp 1.2s ease infinite alternate;
}

@-webkit-keyframes svgUp {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@keyframes svgUp {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

.img_zoom_animate {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.img_zoom_animate:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.bounes_animate {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.bounes_animate:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.mfp-close {
  cursor: pointer !important;
}

.valid-feedback, .invalid-feedback {
  font-size: 13px;
  font-weight: 600;
  text-align: start;
}
/*# sourceMappingURL=style.css.map */