@font-face {
  font-family: "urbanist-regular";
  src: url("../fonts/Urbanist/Urbanist-Regular.otf") format("opentype");
}
@font-face {
  font-family: "urbanist-medium";
  src: url("../fonts/Urbanist/Urbanist-Medium.otf") format("opentype");
}
:root {
  --Urbanist: "urbanist-regular", sans-serif;
  --Urbanist-Medium: "urbanist-medium", sans-serif;
  --primary-main-color: #F0B706;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.2;
  font-family: var(--Urbanist);
}

img,
video {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.primary-title {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  font-family: var(--Urbanist);
  font-weight: 400;
  line-height: 1.1;
}

.primary-yellow-outline-btn {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  border-radius: 80px;
  padding: 8px 16px;
  background: transparent;
  color: rgb(240, 183, 6);
  border: solid 1px rgb(240, 183, 6);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .primary-yellow-outline-btn {
    font-size: 14px;
  }
}
.primary-yellow-outline-btn:hover {
  background-color: rgb(240, 183, 6);
  color: #fff;
}

.primary-black-bg-btn {
  font-family: var(--Urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  border-radius: 80px;
  padding: 10px 16px;
  background: transparent;
  color: rgb(30, 30, 30);
  border: solid 1px rgb(30, 30, 30);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .primary-black-bg-btn {
    font-size: 14px;
  }
}
.primary-black-bg-btn:hover {
  color: #876a12;
}

.primary-outline-btn {
  font-family: var(--Urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  border-radius: 80px;
  padding: 10px 16px;
  background: transparent;
  color: #F0B706;
  border: solid 1px #F0B706;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .primary-outline-btn {
    font-size: 14px;
  }
}

.primary-title.black {
  color: #000;
  font-size: clamp(26px, 4vw, 40px);
}

.secondary-title {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.1;
}

.subtitle {
  font-size: clamp(16px, 2vw, 22px);
  font-family: var(--Urbanist);
  color: #fff;
}

.desc {
  font-size: 16px;
  color: #fff;
  font-family: var(--Urbanist);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
.desc.dark {
  color: #1E1E1E;
}

.logistic-li li {
  font-size: 16px;
  color: rgba(30, 30, 30, 0.5);
  font-family: var(--Urbanist);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

.desc.light {
  color: rgba(255, 255, 255, 0.6980392157);
}

.white-text {
  color: #F0F0F0;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 80px;
  color: #1E1E1E;
  font-weight: 500;
  background-color: #F0B706;
}
.primary-btn span {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}
.primary-btn span img {
  transition: 0.3s linear;
}
.primary-btn span img:nth-child(2) {
  position: absolute;
  left: 0;
  top: -100%;
}
.primary-btn:hover span img {
  transform: translateY(100%);
}

body.open-careers-form,
body.open-inquiry-form,
body.open-sidebar {
  overflow: hidden;
  padding-inline-end: 20px;
}

body.open-sidebar .sidebar-bg,
body.open-sidebar .sidebar {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

body.open-careers-form .careers-form,
body.open-careers-form .careers-form-wrapper,
body.open-careers-form .careers-form-bg,
body.open-inquiry-form .product-inquiry-form,
body.open-inquiry-form .product-inquiry-form-bg {
  opacity: 1;
  visibility: visible;
}

body.open-sidebar .sidebar {
  transition-delay: 0.2s;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  background-color: #fff;
  z-index: 102;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  border-bottom: 1px solid #ddd;
}

.sidebar .sidebar-body {
  overflow: auto;
  height: calc(100% - 80px);
  padding: 15px;
}

.sidebar .sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .sidebar-body ul li a {
  display: block;
  padding: 10px;
  color: #000;
  font-size: 1.1rem;
  border: 1px solid #eee;
}
.sidebar .sidebar-body ul li a.active {
  color: #BB862A;
}

.sidebar .sidebar-body ul li:not(:last-child) a {
  border-bottom: 0;
}

.sidebar .sidebar-body ul li.has-drop .sub-menu a {
  border: 1px solid #eee;
}

.bottom-right-actions {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: rgba(30, 30, 30, 0.5019607843);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.0509803922);
  padding: 8px;
  border-radius: 80px;
}
.bottom-right-actions a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: rgba(255, 255, 255, 0.3019607843);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.bottom-right-actions a span {
  position: absolute;
  top: 50%;
  right: calc(100% + 16px);
  transform: translateY(-50%);
  color: #fff;
  background: linear-gradient(0deg, #F0B706, #F0B706), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  font-size: 16px;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 80px;
  display: none;
}
.bottom-right-actions a:hover span {
  display: block;
}

@media screen and (max-width: 768px) {
  .bottom-right-actions {
    right: 10px;
    bottom: 10px;
  }
}
.careers-form-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 990;
  padding: 40px 15px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  overflow: auto;
}
.careers-form-wrapper::-webkit-scrollbar {
  width: 5px;
}
.careers-form-wrapper::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 5px;
}
.careers-form-wrapper::-webkit-scrollbar-thumb {
  background-color: #BB862A;
  border-radius: 5px;
}

.careers-form-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.careers-form {
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-width: 840px;
  margin: auto;
  background-color: #fff;
}
.careers-form .head {
  position: relative;
  background-color: #1E1E1E;
  padding: 70px 70px 40px 70px;
  background-position: bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
.careers-form .head .close-careers-form {
  position: absolute;
  top: 10px;
  right: 10px;
}
.careers-form .head::after {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 400px;
  background-color: rgba(240, 183, 6, 0.4);
  filter: blur(720px);
  pointer-events: none;
}
.careers-form .head span {
  display: inline-flex;
  gap: 8px;
  color: #fff;
  align-items: center;
  font-size: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 80px;
}
.careers-form .head span img {
  width: 16px;
  min-width: 16px;
}
.careers-form .head h2 {
  font-size: clamp(42px, 4vw, 48px);
  color: #fff;
  margin-top: 15px;
  line-height: 1.1;
}
.careers-form .body {
  padding: 40px 70px 40px 70px;
}
.careers-form .body h4 {
  color: #876a12;
  font-size: 26px;
  margin: 0;
}
.careers-form .body .separator {
  border-top: 1px solid rgba(30, 30, 30, 0.1490196078);
  margin: 20px 0;
}
.careers-form .body label {
  display: block;
}
.careers-form .body label:not(.input) {
  font-size: 16px;
  color: #1E1E1E;
  margin-bottom: 10px;
}
.careers-form .body label:not(.input) span {
  color: #F0B706;
}
.careers-form .body .input {
  position: relative;
  margin-bottom: 15px;
}
.careers-form .body .input textarea,
.careers-form .body .input input {
  outline: 0;
}
.careers-form .body .input input:not(.iti__search-input) {
  width: 100%;
  padding: 5px 20px;
  height: 48px;
  color: #1E1E1E;
  border: 1px solid rgba(30, 30, 30, 0.1019607843);
  background-color: rgba(30, 30, 30, 0.0196078431);
  border-radius: 80px;
  outline: 0;
  font-weight: 400;
  font-size: 14px;
}
.careers-form .body .input input:not(.iti__search-input)::-moz-placeholder {
  color: rgba(30, 30, 30, 0.5019607843);
}
.careers-form .body .input input:not(.iti__search-input)::placeholder {
  color: rgba(30, 30, 30, 0.5019607843);
}
.careers-form .body .input textarea {
  width: 100%;
  padding: 20px;
  color: #1E1E1E;
  border: 1px solid rgba(30, 30, 30, 0.1019607843);
  background-color: rgba(30, 30, 30, 0.0196078431);
  border-radius: 4px;
  outline: 0;
  font-weight: 400;
  font-size: 14px;
}
.careers-form .body .input textarea::-moz-placeholder {
  color: rgba(30, 30, 30, 0.5019607843);
}
.careers-form .body .input textarea::placeholder {
  color: rgba(30, 30, 30, 0.5019607843);
}
.careers-form .body .input .icon {
  position: absolute;
  top: 9px;
  right: 15px;
  z-index: 1;
}
.careers-form .body .input .error-txt {
  font-size: 12px;
  color: red;
  display: none;
  margin-top: 4px;
}
.careers-form .body .input.error .error-txt {
  display: block;
}
.careers-form .body .input.upload-file-preview > div, .careers-form .body .input.upload-file > div {
  width: 100%;
  padding: 5px 20px;
  height: 48px;
  color: #1E1E1E;
  border: 1px solid rgba(30, 30, 30, 0.1019607843);
  background-color: rgba(30, 30, 30, 0.0196078431);
  border-radius: 80px;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(30, 30, 30, 0.5019607843);
}
.careers-form .body .input.upload-file-preview span {
  color: #1E1E1E;
}
.careers-form .body .input.upload-file-preview label {
  margin: 0;
}
.careers-form .body .input.upload-file-preview a {
  color: rgba(30, 30, 30, 0.5);
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .careers-form .body .input.upload-file-preview a {
    font-size: 12px;
  }
}
.careers-form .body .iti {
  width: 100%;
}
.careers-form .body .iti .iti__selected-flag {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.careers-form .body .iti .iti__arrow {
  border: 2px solid transparent;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  border-left-color: #1E1E1E;
  border-bottom-color: #1E1E1E;
  margin-top: -5px;
}
.careers-form .body .primary-btn {
  color: #F0B706;
  border: 1px solid #F0B706 !important;
  background-color: transparent;
  font-weight: 500;
  border: 0;
}
@media screen and (max-width: 768px) {
  .careers-form .head,
  .careers-form .body {
    padding: 40px 20px;
  }
  .careers-form .head {
    padding-top: 60px;
  }
}

.product-inquiry-form-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.product-inquiry-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  max-height: 90vh;
  width: 680px;
  max-width: 95vw;
  background-color: #fff;
  background-image: url("../images/inquiry-modal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 30px 50px 60px 50px;
  overflow: auto;
  z-index: 103;
}
.product-inquiry-form .close-inquiry-form {
  display: block;
  width: 40px;
  margin-inline-start: auto;
  margin-bottom: 10px;
}
.product-inquiry-form h4 {
  color: #fff;
  font-size: clamp(24px, 4vw, 32px);
}
.product-inquiry-form p {
  color: rgba(255, 255, 255, 0.6980392157);
  font-size: 14px;
  margin-bottom: 30px;
}
.product-inquiry-form label {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.product-inquiry-form .input {
  position: relative;
  margin-bottom: 15px;
}
.product-inquiry-form .input input {
  outline: 0;
}
.product-inquiry-form .input input:not(.iti__search-input) {
  width: 100%;
  padding: 5px 20px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid #ddd;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1215686275);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 0;
  outline: 0;
  font-weight: 400;
  font-size: 14px;
}
.product-inquiry-form .input input:not(.iti__search-input)::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.product-inquiry-form .input input:not(.iti__search-input)::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.product-inquiry-form .input input.select2-search__field {
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
  padding: 2px 10px;
}
.product-inquiry-form .input .icon {
  position: absolute;
  top: 9px;
  right: 15px;
  z-index: 1;
}
.product-inquiry-form .input .error-txt {
  font-size: 12px;
  color: red;
  display: none;
  margin-top: 4px;
}
.product-inquiry-form .input.error .error-txt {
  display: block;
}
.product-inquiry-form .iti {
  width: 100%;
}
.product-inquiry-form .iti .iti__selected-dial-code {
  color: #fff;
}
.product-inquiry-form .iti .iti__arrow {
  border: 2px solid transparent;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  border-left-color: #fff;
  border-bottom-color: #fff;
  margin-top: -5px;
}
.product-inquiry-form .primary-btn {
  color: #fff;
  background-color: #BB862A;
  font-weight: 500;
  border: 0;
}
@media screen and (max-width: 768px) {
  .product-inquiry-form {
    padding: 30px 20px 60px 20px;
  }
}

.select2-container--bootstrap-5 .select2-selection {
  background-color: rgba(255, 255, 255, 0.1215686275);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 0;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: #fff;
}

.select2-container--bootstrap-5 .select2-selection--single {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>");
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #ced4da;
  box-shadow: none;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #fff;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  background-color: #e9ecef;
  color: #000;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  padding: 11px 16px;
  line-height: 1;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.6980392157);
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  padding: 3px 10px;
  font-size: 14px;
  color: #fff;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover,
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear,
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(30, 30, 30, 0.1019607843);
  z-index: 100;
  padding: 20px 0;
}
header .header-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
header .header-menu li a {
  color: #1E1E1E;
  transition: 0.3s;
  text-decoration-color: #F0B706;
  font-weight: 500;
}
header .header-menu li a:hover, header .header-menu li a.active {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #F0B706;
}

.menu-open {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  /* background-color: rgb(255 255 255 / 47%); */
  cursor: pointer;
  float: right;
}

.arrow-down {
  position: relative;
  margin-right: 10px;
}

/* home slider start */
.home-slider {
  position: relative;
  background-color: #24221d;
}

.home-slider-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 10;
}

.home-slider-text .slider-text {
  max-width: 600px;
  margin: unset;
}

.gallery-slider-btn,
.home-slider-btn {
  background: var(--primary-main-color);
  padding: 12px;
  border-radius: 50px;
  border: 1px solid var(--primary-main-color);
}

.gallery-prev img,
.home-prev img,
.testimonial-prev img,
.blog-prev img {
  transform: rotate(180deg);
}

.gallery-slider-btn.swiper-button-disabled,
.home-slider-btn.swiper-button-disabled {
  background: unset;
  border: 1px solid #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

@media screen and (max-width: 991px) {
  .slider-image img {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery-slider-btn,
  .home-slider-btn {
    padding: 8px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1300px) {
  .gallery-slider-btn,
  .home-slider-btn {
    padding: 10px;
  }
}
/* home slider close */
/* introduction section start */
.introduction-section {
  position: relative;
  padding-top: 130px;
  overflow: hidden;
}
.introduction-section .map-card {
  position: absolute;
  color: #fff;
  text-align: start;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.introduction-section .map-card::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #fff;
  z-index: 2;
}
.introduction-section .map-card::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background-color: rgba(240, 183, 6, 0.5019607843);
  z-index: 1;
}
.introduction-section .map-card.card-1 {
  top: 60%;
  left: 0;
  width: 30%;
}
.introduction-section .map-card.card-2 {
  top: 72%;
  left: 65%;
  width: 35%;
  border-top-color: #fff;
}
.introduction-section .map-card.card-2::before {
  top: -8px;
  right: auto;
  left: -8px;
  width: 16px;
  height: 16px;
}
.introduction-section .map-card.card-2::after {
  top: -100px;
  right: auto;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 200px;
  animation: scaleUp 3s ease-in-out infinite;
}
.introduction-section .map-card.card-2 > div {
  position: absolute;
  right: 0;
  top: 0;
  padding: 30px;
  padding-inline-start: 0;
  max-width: 80%;
}
.introduction-section .map-card.card-2 img {
  width: 80%;
  min-height: 170px;
}
.introduction-section .map-card.card-3 {
  width: 40%;
  top: 84%;
  right: 47%;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.introduction-section .map-card h4 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
.introduction-section .map-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media screen and (max-width: 991px) {
  .introduction-section .map-card {
    position: relative;
    inset: unset !important;
    width: 100% !important;
    padding-block: 40px;
  }
  .introduction-section .map-card.card-2 {
    border-top-color: rgba(255, 255, 255, 0.3019607843);
  }
  .introduction-section .map-card.card-2::before {
    top: -6px;
    right: -6px;
    left: auto;
    width: 12px;
    height: 12px;
  }
  .introduction-section .map-card.card-2::after {
    top: -32px;
    right: -32px;
    left: auto;
    width: 64px;
    height: 64px;
    border-radius: 64px;
    animation: unset;
  }
  .introduction-section .map-card.card-2 > div {
    position: relative;
    inset: unset !important;
    max-width: 100% !important;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .introduction-section .map-card::before {
    right: 15px !important;
  }
  .introduction-section .map-card::after {
    right: -10px !important;
  }
}
.introduction-section .badge-hr-main span {
  font-family: var(--Urbanist);
  font-size: 16px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  border: solid 1px rgb(255, 255, 255);
  padding: 5px 10px;
  border-radius: 30px;
}
.introduction-section .badge-hr-main .hr {
  border: solid 1px rgba(255, 255, 255, 0.15);
  margin: 20px 0;
}
.introduction-section .text-main p {
  font-family: var(--Urbanist);
  font-size: 16px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
  line-height: 1.4;
}
.introduction-section .text-main .amazing-text span {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 34px;
  color: rgb(240, 183, 6);
  display: block;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
  margin-bottom: 12px;
}
.introduction-section .text-main .amazing-text p {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.introduction-section:before {
  position: absolute;
  content: "";
  background-image: url("../images/introduction-background.png");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 80%;
}

.about-text {
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 7px 15px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.about-text:hover {
  background: rgba(255, 255, 255, 0.2);
}

.border-white {
  border-color: rgba(255, 255, 255, 0.1490196078) !important;
}

.introduction-main {
  width: 100%;
  margin-top: 40px;
}

.introduction-main count {
  font-family: var(--Urbanist);
  font-size: 34px;
  font-weight: 100;
  color: var(--primary-main-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .introduction-section {
    padding: 70px 0 0 0;
  }
}
.our-products-slider {
  max-height: 400px;
}

.our-products {
  position: relative;
  padding: 70px 130px 100px 100px;
  width: 80%;
  margin-top: 80px;
  margin-left: auto;
}
.our-products.products-management-main {
  padding: 0 !important;
}
.our-products .chairmain-board-img {
  width: 100%;
  height: 100%;
}
.our-products .chairmain-board-img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-products .management-main {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .our-products .management-main {
    padding: 40px 20px;
  }
}
.our-products .management-main .badge {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  border-radius: 80px;
  color: rgb(255, 255, 255);
  border: solid 1px rgb(255, 255, 255);
  padding: 10px 12px;
}
@media screen and (max-width: 767px) {
  .our-products .management-main .badge {
    font-size: 14px;
  }
}
.our-products .management-main .hr {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .our-products .management-main .management-text {
    margin-top: 20px;
  }
}
.our-products .management-main .management-text img {
  margin-bottom: 28px;
}
.our-products .management-main .management-text h3 {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 44px;
  color: rgb(255, 255, 255);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .our-products .management-main .management-text h3 {
    font-size: 32px;
  }
}
.our-products .management-main .management-text ul {
  padding-left: 0;
  margin-bottom: 0;
}
.our-products .management-main .management-text ul li {
  list-style: none;
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .our-products .management-main .management-text ul li {
    font-size: 14px;
  }
}
.our-products .management-main .management-text p {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .our-products .management-main .management-text p {
    font-size: 14px;
  }
}
.our-products .management-main .management-text span {
  font-family: var(--Urbanist);
  font-weight: 500;
  font-size: 18px;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .our-products .management-main .management-text span {
    font-size: 16px;
  }
}

.our-products .bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  background-image: url("../images/our-products.png");
}

.our-products.home::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/our-products.png");
  z-index: -1;
}

.our-products-left {
  position: sticky;
  top: 0;
}

.our-products-left span {
  font-size: 16px;
  font-weight: 400;
  color: #F0F0F0;
  font-family: var(--Urbanist);
}

.our-products-box {
  margin-bottom: 50px;
  cursor: grab;
}

.our-products-box h5 {
  font-family: var(--Urbanist);
  font-size: clamp(26px, 3vw, 32px);
  color: #fff;
}

.white-hover {
  padding: 9px 15px;
}

.white-hover:hover {
  background-color: #fff;
  color: #BB862A;
}

.our-products-left .primary-title {
  max-width: 380px;
  font-size: clamp(32px, 4vw, 48px);
}

.our-products-right {
  max-width: 500px;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .our-products {
    padding: 0px 30px;
    width: 100%;
    padding-bottom: 50px !important;
    margin-top: 100px;
  }
}
.progress-circle {
  position: relative;
  margin-top: 200px;
  width: 108px;
  height: 108px;
}
.progress-circle.dark {
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .progress-circle.dark {
    margin: 0 auto 30px auto;
  }
}
.progress-circle.dark svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.progress-circle.dark .progress-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 1;
}
.progress-circle.dark .progress-bar {
  fill: none;
  stroke: rgb(0, 0, 0);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.5s ease;
}
.progress-circle.dark .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  color: #000;
  display: flex;
  gap: 5px;
  align-items: center;
}

.progress-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.progress-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1019607843);
  stroke-width: 1;
}

.progress-bar {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.5s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  display: flex;
  gap: 5px;
  align-items: center;
}

/* introduction section close */
/* Choose Us Section start style */
.why-choose-us {
  padding: 100px 0px;
}

.about-text.yellow {
  color: var(--primary-main-color);
  border-color: var(--primary-main-color);
}

.about-text.yellow:hover {
  background: var(--primary-main-color);
  color: #fff;
}

.whyChooseRight {
  padding: 30px;
}

.whyChooseRight1 {
  padding: 15px 30px;
  padding-bottom: 30px;
}

.whyChooseRight h4 {
  font-family: var(--Urbanist);
  font-size: clamp(22px, 4vw, 24px);
  font-weight: 400;
  max-width: 250px;
  color: #1E1E1E;
}

.whyChooseRight p {
  font-family: var(--Urbanist);
  font-size: 14px;
  font-weight: 400;
  color: rgba(91, 91, 91, 0.6980392157);
  border-bottom: 1px solid rgba(30, 30, 30, 0.1490196078);
  padding-bottom: 20px;
  margin-bottom: 0;
}

.why-choose-box {
  text-align: center;
  width: 25%;
  border-right: 1px solid rgba(30, 30, 30, 0.1490196078);
}

.why-choose-box:last-child {
  border-right: none;
}

.why-choose-box img {
  display: block;
  margin: 0px auto;
  margin-top: 20px;
}

.why-choose-box span {
  font-family: var(--Urbanist);
  font-size: 15px;
  line-height: 13.5px;
}

.whyChooseRight.whyChooseRight2 {
  border-right: 1px solid rgba(30, 30, 30, 0.1490196078);
  width: 50%;
}

.whyChooseRight.whyChooseRight2:last-child {
  border-right: none;
}

.footer-number span {
  font-family: var(--Urbanist-Medium);
  color: rgb(240, 183, 6);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-number span a {
  font-family: var(--Urbanist-Medium);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

.whyChooseRight ul {
  margin: 14px 0px;
  padding: 0px 20px;
  list-style: decimal;
  margin-bottom: 0px;
}

.whyChooseRight ul li {
  font-family: var(--Urbanist);
  font-size: 14px;
  font-weight: 400;
  color: rgba(91, 91, 91, 0.6980392157);
  padding-bottom: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .why-choose-us {
    padding: 50px 0px;
  }
  .whyChooseRight {
    padding: 20px;
  }
  .why-choose-box {
    border-right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1490196078);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .why-choose-box:last-child {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .whyChooseRight.whyChooseRight2 {
    border-right: none;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1490196078);
    width: 100%;
  }
  .whyChooseRight.whyChooseRight2:last-child {
    border: none;
  }
}
@media screen and (max-width: 992px) {
  .why-choose-image {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .why-choose-box {
    padding: 0px 10px;
  }
}
/* Choose Us Section close style */
/* Success Stories section start */
.success-stories {
  position: relative;
  padding: 130px 0px;
  overflow: hidden;
}

.success-stories > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* 
.success-stories:before {
  position: absolute;
  content: '';
  background-image: url("../images/testimonial.png");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
} */
.testimonial-text {
  max-width: 600px;
  margin: unset;
}

.quote {
  margin-top: 40px;
  margin-bottom: 30px;
}

.success-stories-text-main {
  position: relative;
  margin: 50px 0;
}
.success-stories-text-main .stories-number {
  position: absolute;
  top: -50px;
  left: 0;
}
.success-stories-text-main .stories-number span {
  font-family: var(--Urbanist);
  font-size: 80px;
  font-weight: 400;
  color: rgba(240, 183, 6, 0.1);
}

.testimonial-text h6 {
  color: #fff;
  font-family: var(--Urbanist);
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
}

.testimonial-arrow {
  position: relative;
  top: 50px;
}

.testimonial-image {
  position: absolute;
  top: 0;
  text-align: right;
  max-width: 42%;
  height: 100%;
  right: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .success-stories {
    padding: 50px 0px;
    background: #21211f;
    padding-bottom: 0;
  }
  .testimonial-image {
    position: relative;
    max-width: 100%;
  }
  .success-stories > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .quote {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .testimonial-arrow {
    top: 20px;
  }
  .our-products {
    width: 100%;
    padding: 20px 15px;
  }
  .introduction-section:before {
    background-size: cover;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .success-stories {
    padding: 50px 0px;
    background: #21211f;
    padding-bottom: 0;
  }
  .testimonial-arrow {
    top: 20px;
  }
  .testimonial-image {
    max-width: 50%;
    height: 100%;
  }
  .quote {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .testimonial-text {
    max-width: 340px;
  }
  .success-stories .secondary-title {
    font-size: clamp(24px, 3vw, 44px);
  }
}
@media screen and (min-width: 992px) and (max-width: 1300px) {
  .success-stories > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .testimonial-text {
    max-width: 440px;
  }
  .testimonial-image {
    max-width: 50%;
    height: 100%;
  }
}
/* Success Stories section close */
/* Blogs Articles section start */
.blogs-articles {
  position: relative;
  padding: 100px 0px;
  overflow: hidden;
}

.article-box {
  position: relative;
  border: 1px solid rgba(30, 30, 30, 0.1490196078);
  background: #FAFAFA;
  padding: 30px;
  overflow: hidden;
  min-height: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 9;
}

.article-title {
  font-weight: 400;
  font-size: clamp(20px, 4vw, 26px);
  font-family: var(--Urbanist);
  color: #1E1E1E;
  transition: 1s;
}

.article-box:hover .article-title {
  color: #fff;
}

.article-box span {
  font-size: 14px;
  font-family: var(--Urbanist);
  color: rgba(30, 30, 30, 0.6980392157);
  transition: 0.5s;
}

.article-box:hover span {
  color: rgba(255, 255, 255, 0.6980392157);
}

.article-box date {
  font-size: 18px;
  font-family: var(--Urbanist);
  color: #1E1E1E;
  transition: 0.5s;
}

.article-box:hover date {
  color: #fff;
}

.article-box p {
  font-size: 14px;
  font-family: var(--Urbanist);
  color: rgba(30, 30, 30, 0.6980392157);
  transition: 0.5s;
}

.article-box:hover p {
  color: rgba(255, 255, 255, 0.6980392157);
}

.blog-arrows {
  position: relative;
  margin-bottom: 40px;
}

.article-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 100%;
  transition: 0.5s;
  z-index: -1;
}

.article-box:hover .article-image {
  top: 0;
}

.gallery-slider-btn.swiper-button-disabled,
.blog-prev.home-slider-btn.swiper-button-disabled,
.blog-next.gallery-slider-btn.swiper-button-disabled,
.blog-next.home-slider-btn.swiper-button-disabled {
  border: 1px solid #1E1E1E;
}

.gallery-slider-btn.swiper-button-disabled img,
.blog-prev.home-slider-btn.swiper-button-disabled img,
.blog-next.gallery-slider-btn.swiper-button-disabled img,
.blog-next.home-slider-btn.swiper-button-disabled img {
  filter: brightness(5) invert(1);
}

@media screen and (max-width: 768px) {
  .blogs-articles {
    padding: 50px 0px;
  }
  .blog-arrows {
    margin: 0 10px 20px -10px;
  }
  .article-box {
    padding: 20px;
    margin: 0 10px;
    height: 360px;
  }
  .article-box .article-title {
    color: #fff;
  }
  .article-box span {
    color: rgba(255, 255, 255, 0.6980392157);
  }
  .article-box date {
    color: #fff;
  }
  .article-box p {
    color: rgba(255, 255, 255, 0.6980392157);
  }
  .article-box .article-image {
    top: 0;
  }
}
/* Blogs Articles section close */
/* Inner blog section Start */
.inner-banner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner-banner img {
    min-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.inner-banner .inner-banner-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner-banner .inner-banner-content {
    bottom: 20px;
  }
}

/* Inner blog section close */
/* footer style start */
footer {
  position: relative;
  padding: 100px 0px 40px 0;
}

footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/footer.png");
  z-index: -1;
}

.footer-text {
  font-family: var(--Urbanist);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 7px;
  display: block;
}
.footer-text a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
@media screen and (max-width: 768px) {
  .footer-text {
    margin-top: 22px;
  }
}

.footer-paragraph {
  font-family: var(--Urbanist);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-bottom: 7px;
  display: block;
}
.footer-paragraph a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 0;
}

.footer-btn {
  color: var(--primary-main-color);
  margin-top: 13px;
  border: 1px solid var(--primary-main-color);
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 20px;
  border-radius: 50px;
}

.footer-btn:hover {
  background-color: var(--primary-main-color);
  color: #fff;
}

.footer-arrow {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: #fff;
  border-radius: 40px;
  margin-right: 5px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.footer-arrow img {
  width: 24px;
  transition: 0.2s linear;
}
.footer-arrow img:nth-child(2) {
  position: absolute;
  top: -40px;
}
.footer-arrow:hover img {
  transform: translateY(48px);
}

.footer-icon {
  border: 1px solid #fff;
  padding: 8px;
  border-radius: 50px;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 20px;
  transition: 0.3s;
}

.footer-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-top {
  margin-top: 90px;
}

footer .separator {
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav {
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}

.footer-nav li {
  list-style: none;
}

.footer-nav li a {
  font-size: 20px;
  color: #fff;
  font-family: var(--Urbanist);
  margin-bottom: 2px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  transition: 0.2s linear;
}
.footer-nav li a:hover {
  color: #BB862A;
  text-decoration: underline;
  text-decoration-thickness: 0;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0px;
  }
  .footer-top {
    margin-top: 50px;
  }
  [name=recapcha] {
    transform: scale(0.8);
    transform-origin: left;
  }
}
/* footer style close *//*# sourceMappingURL=style.css.map */