@charset "UTF-8";
/*font import*/
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* variables */
:root {
  --font-family: "Bricolage Grotesque", sans-serif;
  --font-family-secondary: "Open Sans", sans-serif;
  --primary: #212C55;
  --grey: #AAAAAA;
  --light-gray: #E7E7E7;
  --dark-gray: #6C6B6B;
  --black: #000000;
  --white: #ffffff;
  --secondary-text: #181818;
}

body,
html {
  height: 100%;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 0px;
}

body {
  font-family: var(--font-family-secondary);
  background-color: #F9F9F9;
  color: #181818;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

p a {
  color: var(--secondary);
  text-decoration: none;
}

.fs-12 {
  font-size: 12px;
}

.fs-70 {
  font-size: 4.375rem;
}
@media (max-width: 1200px) {
  .fs-70 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.fs-72 {
  font-size: 72px;
}
@media (max-width: 1200px) {
  .fs-72 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.fs-30 {
  font-size: 30px;
}
@media (max-width: 1200px) {
  .fs-30 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

/* common css */
.pt-75 {
  padding-top: 75px;
}
@media (max-width: 1200px) {
  .pt-75 {
    padding-top: 25px;
  }
}

.py-12 {
  padding: 12px 0;
}

.py-20 {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
}

.py-75 {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .py-75 {
    padding: 30px 0;
  }
}

.mt-lg-100 {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .mt-lg-100 {
    margin-top: 24px;
  }
}

.ps-40 {
  padding-left: 40px;
}
@media (max-width: 1280px) {
  .ps-40 {
    padding-left: 8px;
  }
}
@media (max-width: 992px) {
  .ps-40 {
    padding-left: 0;
  }
}

.p-50 {
  padding: 50px;
}
@media (max-width: 992px) {
  .p-50 {
    padding: 15px;
  }
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .px-50 {
    padding-left: 0;
    padding-right: 0;
  }
}

.ps-50 {
  padding-left: 50px;
}
@media (max-width: 992px) {
  .ps-50 {
    padding-left: 0;
  }
}

.pe-50 {
  padding-right: 50px;
}
@media (max-width: 767px) {
  .pe-50 {
    padding-right: 0;
  }
}

.border-bottom {
  border-bottom: 1px solid rgba(217, 217, 217, 0.2) !important;
}

.border-left {
  border-left: 1px solid rgba(217, 217, 217, 0.2) !important;
}
@media (max-width: 992px) {
  .border-left {
    border-left: 0 !important;
  }
}

.border-right {
  border-right: 1px solid rgba(217, 217, 217, 0.2) !important;
}
@media (max-width: 992px) {
  .border-right {
    border-right: 0 !important;
  }
}

.gap-20 {
  gap: 20px;
}

hr {
  border: 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2) !important;
  margin: 28px 0;
  opacity: 1;
}

.link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  color: var(--secondary);
}

.cursor-pointer {
  cursor: pointer;
}

/* buttons */
.btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2%;
  text-align: center;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  line-height: 22px;
  position: relative;
  display: inline-block;
  border: none;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.btn.btn-primary {
  background-color: transparent;
  transition: 0.3s ease-out;
  border: 1px solid var(--primary);
  border-radius: 12px;
  color: var(--white);
  position: relative;
  isolation: isolate;
}
.btn.btn-primary:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: var(--primary);
  position: absolute;
  transition: 0.3s ease-out;
}
.btn.btn-primary:hover {
  color: var(--primary);
}
.btn.btn-primary:hover::before {
  height: 0%;
}
.btn.btn-outline {
  background-color: transparent;
  transition: 0.3s ease-out;
  border: 1px solid var(--primary);
  border-radius: 12px;
  color: var(--primary);
  position: relative;
  isolation: isolate;
}
.btn.btn-outline:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  width: 100%;
  z-index: -1;
  background-color: transparent;
  position: absolute;
  transition: 0.3s ease-out;
}
.btn.btn-outline:hover {
  color: var(--white);
}
.btn.btn-outline:hover::before {
  height: 100%;
  background-color: var(--primary);
}
.btn.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-radius: 12px;
  background-color: transparent;
  transition: 0.3s ease-out;
  border: 1px solid var(--white);
  position: relative;
  isolation: isolate;
}
.btn.btn-secondary:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: var(--white);
  position: absolute;
  transition: 0.3s ease-out;
}
.btn.btn-secondary:hover {
  color: var(--white);
}
.btn.btn-secondary:hover::before {
  height: 0%;
}
.btn.btn-white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-500);
}
.btn.btn-white::before {
  background: rgba(149, 204, 255, 0.3);
}
.btn.btn-small {
  font-size: 12px;
  line-height: 100%;
}

.btn-banner {
  background-color: var(--white) !important;
  color: var(--primary);
  border-radius: 34px 8px 34px 8px;
  padding-inline: 1.5rem !important;
  text-transform: uppercase;
  font-size: 14px;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 9;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media (max-width: 767px) {
  .btn-banner {
    font-size: 12px;
  }
}
.btn-banner:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}
.btn-banner:hover img {
  filter: brightness(0) invert(1);
  transition: all ease-in-out 0.3s;
}

/* home page */
.color-changer {
  animation: colorChange 3s infinite alternate;
}
@keyframes colorChange {
  0% {
    color: var(--secondary);
  }
  50% {
    color: var(--white);
  }
  100% {
    color: var(--secondary);
  }
}

header {
  padding: 0 50px;
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: top 0.3s ease-in-out;
}
@media (max-width: 991px) {
  header {
    background: rgba(33, 44, 85, 0.4);
  }
}
header.fixed-header {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(33, 44, 85, 0.4);
}
@media (max-width: 992px) {
  header {
    padding: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 992px) {
  header .header {
    border-radius: 0 !important;
  }
  header .header .logo {
    max-width: 150px;
  }
  header .header .menu-icon {
    width: 40px;
  }
}
header.no-home .navbar-collapse #menu-header-menu li a {
  color: var(--primary) !important;
}
header.no-home .navbar-collapse #menu-header-menu li a:hover {
  color: var(--primary) !important;
}
header.no-home .navbar-collapse #menu-header-menu li a:before {
  background-color: var(--primary) !important;
}
header.no-home .navbar-collapse #menu-header-menu li.menu-item-has-children .sub-menu li a:before {
  background-color: transparent !important;
}
header.no-home .dropdown .dropdown-toggle {
  color: var(--primary) !important;
}
header.no-home .dropdown .dropdown-toggle:before {
  background-color: var(--primary) !important;
}
header.no-home .dropdown .dropdown-toggle:after {
  background-image: url("../images/dropdown-inner.svg") !important;
}

.navbar-collapse #menu-header-menu {
  gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-collapse #menu-header-menu {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .navbar-collapse #menu-header-menu {
    max-height: 90vh;
    overflow-y: scroll;
  }
}
.navbar-collapse #menu-header-menu li a {
  font-weight: 500;
  font-size: 14px;
  text-transform: unset;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  position: relative;
  padding-inline: 0px;
  font-family: var(--font-family);
}
.navbar-collapse #menu-header-menu li a:before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background-color: var(--white);
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1280px) {
  .navbar-collapse #menu-header-menu li a {
    font-size: 12px;
  }
}
.navbar-collapse #menu-header-menu li a:hover {
  color: var(--white);
  transition: all ease-in-out 0.3s;
}
.navbar-collapse #menu-header-menu li a:hover:before {
  width: 100%;
}
.navbar-collapse #menu-header-menu li.current-menu-item a,
.navbar-collapse #menu-header-menu li.current-menu-item .active, .navbar-collapse #menu-header-menu li.current_page_item a,
.navbar-collapse #menu-header-menu li.current_page_item .active, .navbar-collapse #menu-header-menu li.active-sub-menu a,
.navbar-collapse #menu-header-menu li.active-sub-menu .active {
  color: var(--white);
  transition: all ease-in-out 0.3s;
}
.navbar-collapse #menu-header-menu li.current-menu-item a:before,
.navbar-collapse #menu-header-menu li.current-menu-item .active:before, .navbar-collapse #menu-header-menu li.current_page_item a:before,
.navbar-collapse #menu-header-menu li.current_page_item .active:before, .navbar-collapse #menu-header-menu li.active-sub-menu a:before,
.navbar-collapse #menu-header-menu li.active-sub-menu .active:before {
  width: 100%;
}
.navbar-collapse #menu-header-menu li.current-menu-item .dropdown-arrow i, .navbar-collapse #menu-header-menu li.current_page_item .dropdown-arrow i, .navbar-collapse #menu-header-menu li.active-sub-menu .dropdown-arrow i {
  color: var(--primary) !important;
}
@media (max-width: 991px) {
  .navbar-collapse #menu-header-menu li.current-menu-item .dropdown-arrow i, .navbar-collapse #menu-header-menu li.current_page_item .dropdown-arrow i, .navbar-collapse #menu-header-menu li.active-sub-menu .dropdown-arrow i {
    color: var(--white) !important;
  }
}
.navbar-collapse #menu-header-menu .sub-menu {
  padding: 20px;
  border-radius: 0;
  top: 52px;
  z-index: -1;
}
.navbar-collapse #menu-header-menu .sub-menu li a {
  text-align: left;
  color: var(--primary);
  padding: 16px 0;
  border-bottom: 1px solid #E7E7E7;
}
@media (max-width: 991px) {
  .navbar-collapse #menu-header-menu .sub-menu li a {
    white-space: break-spaces;
  }
}
.navbar-collapse #menu-header-menu .sub-menu li a:hover {
  color: var(--primary) !important;
  background-color: transparent;
  border-bottom: 1px solid #E7E7E7;
}
.navbar-collapse #menu-header-menu .sub-menu li .sub-menu li a {
  border-bottom: 0;
}
.navbar-collapse #menu-header-menu .sub-menu li:first-child a {
  padding-top: 0;
}
.navbar-collapse #menu-header-menu .sub-menu li:last-child a {
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
}
.navbar-collapse #menu-header-menu .dropdown-menu .dropdown-menu {
  top: 0;
  left: 0;
  margin-left: 0.1rem;
  position: relative;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1200px) {
  .navbar-collapse #menu-header-menu .dropdown-menu .dropdown-menu {
    width: 100%;
    position: static;
  }
}
.navbar-collapse #menu-header-menu .dropdown-item:focus, .navbar-collapse #menu-header-menu .dropdown-item:active {
  color: var(--primary) !important;
  background-color: transparent !important;
}
.navbar-collapse #menu-header-menu .dropdown-toggle {
  padding-right: 16px !important;
}
.navbar-collapse #menu-header-menu .dropdown-toggle:after {
  content: "";
  background-image: url("../images/dropdown.svg");
  width: 16px;
  height: 16px;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  top: 12px;
  right: -3px;
  position: absolute;
}
@media (max-width: 1200px) {
  .navbar-collapse #menu-header-menu .dropdown-menu {
    max-height: 90vh;
    overflow-y: auto;
  }
}
.navbar-collapse #menu-header-menu .dropdown-menu .dropdown-toggle:after {
  background-image: url("../images/dropdown-inner.svg");
  top: 15px;
  transform: rotate(-90deg);
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary);
    width: 100%;
    top: 63px;
    position: absolute;
    left: 0;
  }
  .navbar-collapse #menu-header-menu {
    gap: 5px;
    padding: 10px 16px;
    margin: 0 !important;
  }
  .navbar-collapse #menu-header-menu li a {
    text-align: left;
  }
  .navbar-collapse #menu-header-menu li a:before {
    width: 0 !important;
  }
}

.navbar-toggler {
  outline: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.fw-700 {
  font-weight: 700;
}

.footer-menu {
  padding-top: 20px;
}
.footer-menu ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.footer-menu ul li {
  list-style: none;
  line-height: initial;
  margin: 0;
}
.footer-menu ul li a {
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
  transition: color ease-in-out 0.3s;
  cursor: pointer;
}
.footer-menu ul li a:hover {
  opacity: 0.6;
  transition: color ease-in-out 0.3s;
}

.banner {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  isolation: isolate;
}
@media (max-width: 1024px) {
  .banner {
    min-height: 60vh;
  }
}
.banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(264.25deg, rgba(0, 0, 0, 0.1) 1.2%, rgba(0, 0, 0, 0.5) 52.23%, rgba(0, 0, 0, 0.8) 96.96%);
  z-index: 0;
}
.banner video {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  position: absolute;
}
.banner .banner-content {
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 991px) {
  .banner .banner-content {
    align-items: flex-end !important;
    padding-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-content {
    padding-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  .banner .banner-content {
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .banner .banner-content h1 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .banner .banner-content h1 {
    font-size: 18px;
  }
  .banner .banner-content h2.fs-20 {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .banner .banner-content h5 {
    font-size: 20px !important;
  }
}
.banner.inner-page img {
  height: 560px;
}
@media (max-width: 992px) {
  .banner.inner-page img {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .banner.inner-page .banner-content {
    height: 90dvh;
    height: 90vh;
  }
}

.quick-connect {
  position: fixed;
  left: auto;
  right: 0;
  top: 260px;
  z-index: 10;
  display: flex !important;
  gap: 20px;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .quick-connect {
    top: 25%;
  }
}
@media (max-width: 767px) {
  .quick-connect {
    top: 20%;
    gap: 10px;
  }
}
.quick-connect a {
  padding: 7px;
  background: var(--primary);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all ease-in-out 0.3s;
  display: block;
}
@media (max-width: 767px) {
  .quick-connect a > img {
    width: 20px;
    height: 20px;
  }
}
.quick-connect a:hover {
  padding-right: 20px;
}

@media (max-width: 767px) {
  body.home .quick-connect {
    top: 20%;
  }
}

.blur-modal {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1055;
}
.blur-modal .modal-dialog {
  max-width: 100%;
}
.blur-modal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
}
.blur-modal .modal-dialog .modal-close {
  position: fixed;
  top: 16px;
  right: 16px;
}

#backToTop {
  position: fixed;
  bottom: 10px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
  background: #f8fcf8;
  border-radius: 50%;
}
#backToTop svg.progress-circle {
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
}
#backToTop svg.progress-circle circle {
  fill: none;
  stroke-width: 6;
  stroke: rgba(0, 14, 42, 0.45);
}
#backToTop svg.progress-circle circle.progress {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 283;
  /* 2πr where r = 45 */
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.2s linear;
}
#backToTop .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 20px;
  color: #f1a72e;
}
#backToTop .arrow img {
  width: 20px;
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1025px) {
  .grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-col-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col-span-4 {
  grid-column: span 4/span 4;
}
@media (max-width: 1025px) {
  .col-span-4 {
    display: none;
  }
}

@media (max-width: 991px) {
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a {
    opacity: 0.6;
  }
}
@media (min-width: 992px) {
  body.wp-singular .header-wrapper, body.archive .header-wrapper {
    background-color: rgba(255, 255, 255, 0.6);
  }
  body.wp-singular .header-wrapper .navbar-expand-lg a img, body.archive .header-wrapper .navbar-expand-lg a img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(22%) saturate(1251%) hue-rotate(192deg) brightness(90%) contrast(95%);
  }
  body.wp-singular .header-wrapper .navbar-expand-lg a h6, body.archive .header-wrapper .navbar-expand-lg a h6 {
    color: var(--primary);
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a, body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.active-sub-menu > a, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.active-sub-menu > a {
    color: var(--primary);
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a::before, body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.active-sub-menu > a::before, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a::before, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.active-sub-menu > a::before {
    background-color: var(--primary);
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item > a {
    opacity: 0.65;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li a, body.archive .header-wrapper .navbar-collapse #menu-header-menu li a {
    color: #181818;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li a:hover, body.archive .header-wrapper .navbar-collapse #menu-header-menu li a:hover {
    opacity: 0.75;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li a::before, body.archive .header-wrapper .navbar-collapse #menu-header-menu li a::before {
    background-color: #181818;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li::before, body.archive .header-wrapper .navbar-collapse #menu-header-menu li::before {
    background-color: #181818;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li .dropdown-menu.sub-menu li a, body.archive .header-wrapper .navbar-collapse #menu-header-menu li .dropdown-menu.sub-menu li a {
    color: var(--primary);
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu li.menu-item-has-children:hover a::before, body.archive .header-wrapper .navbar-collapse #menu-header-menu li.menu-item-has-children:hover a::before {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 62px;
    height: 4px;
    border-radius: 4px 4px 0 0;
    transition: all ease-in-out 0.3s;
    background-color: #181818;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu .dropdown-arrow i, body.archive .header-wrapper .navbar-collapse #menu-header-menu .dropdown-arrow i {
    color: #181818;
  }
  body.wp-singular .header-wrapper .navbar-collapse #menu-header-menu > li.current_page_item > a, body.archive .header-wrapper .navbar-collapse #menu-header-menu > li.current_page_item > a {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  body.home .header-wrapper {
    background-color: transparent;
  }
  body.home .header-wrapper .navbar-expand-lg a img {
    filter: inherit;
  }
  body.home .header-wrapper .navbar-expand-lg a h6 {
    color: var(--white);
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item a {
    color: var(--white);
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li.current_page_item a::before {
    background-color: var(--white);
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li a {
    color: #181818;
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li a::before {
    background-color: #181818;
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li a {
    color: var(--white);
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li a::before {
    background-color: var(--white);
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li .dropdown-menu .menu-item .dropdown-item {
    color: #181818;
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu li .dropdown-menu .menu-item-has-children .dropdown-arrow i {
    color: #181818;
  }
  body.home .header-wrapper .navbar-collapse #menu-header-menu .dropdown-arrow i {
    color: var(--white);
  }
}

@media (min-width: 992px) {
  body.home .header-wrapper.fixed-header {
    background-color: rgba(255, 255, 255, 0.5);
  }
  body.home .header-wrapper.fixed-header .navbar-expand-lg a img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
  }
  body.home .header-wrapper.fixed-header .navbar-expand-lg a h6 {
    color: #181818;
  }
  body.home .header-wrapper.fixed-header .navbar-collapse #menu-header-menu li a {
    color: #181818;
  }
  body.home .header-wrapper.fixed-header .navbar-collapse #menu-header-menu li a::before {
    background-color: #181818;
  }
  body.home .header-wrapper.fixed-header .navbar-collapse #menu-header-menu .dropdown-arrow i {
    color: #181818;
  }
}

@media (max-width: 991px) {
  .header-wrapper .navbar-expand-lg > a {
    padding-left: 48px;
  }
  .header-wrapper .navbar-expand-lg > a img {
    max-width: 110px;
    height: auto;
  }
  .header-wrapper .navbar-expand-lg > a h6 {
    font-size: 9px;
  }
  .header-wrapper .navbar-expand-lg button.navbar-toggler {
    position: absolute;
    left: 0;
    top: 15px;
  }
  .header-wrapper .navbar-expand-lg.pt-3 {
    padding-top: 7px !important;
  }
  .header-wrapper .navbar-expand-lg img.ps-lg-4.logo {
    position: relative;
    top: 0;
    max-width: 100px;
    height: auto;
  }
}
@media (max-width: 991px) and (max-width: 370px) {
  .header-wrapper .navbar-expand-lg img.ps-lg-4.logo {
    max-width: 80px;
  }
}

.header-wrapper .navbar-expand-lg ul#menu-header-menu li > ul.dropdown-menu {
  min-width: 231px;
}
.header-wrapper .navbar-expand-lg ul#menu-header-menu li > ul.dropdown-menu li.menu-item-has-children span.dropdown-arrow {
  display: none;
}
.header-wrapper .navbar-expand-lg ul#menu-header-menu li > ul.dropdown-menu li.menu-item-has-children a {
  border-bottom: 0;
  padding-bottom: 0;
}
.header-wrapper .navbar-expand-lg ul#menu-header-menu li > ul.dropdown-menu li ul.dropdown-menu {
  min-width: initial;
  padding-top: 10px;
  padding-left: 7px;
  display: block !important;
}
.header-wrapper .navbar-expand-lg ul#menu-header-menu li > ul.dropdown-menu li ul.dropdown-menu li {
  padding-left: 0;
}
.header-wrapper .navbar-expand-lg ul#menu-header-menu li > ul.dropdown-menu li ul.dropdown-menu li a {
  font-size: 12px;
}
.header-wrapper .navbar-expand-lg .sub-menu .menu-item li {
  padding-left: 10px;
  position: relative;
}
.header-wrapper .navbar-expand-lg .sub-menu .menu-item li a {
  padding: 8px 7px !important;
}
.header-wrapper .navbar-expand-lg .sub-menu .menu-item li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 49%;
  width: 6px;
  border-top: 2px solid #181818;
  transform: translateY(-50%);
}
.header-wrapper .navbar-expand-lg .sub-menu .menu-item a::before {
  display: none;
}

.sevice-grid {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 12px;
  align-content: center;
  position: relative;
  z-index: 1;
  gap: 10px 0;
}
@media (min-width: 1025px) {
  .sevice-grid {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sevice-grid {
    margin: 0 0;
  }
  .sevice-grid .grid-col-4 .d-flex:last-child {
    padding: 8px !important;
  }
}
.sevice-grid p {
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sevice-grid p {
    font-size: 16px !important;
  }
}
.sevice-grid .d-flex:not(:last-child) {
  border-right: 1px solid var(--grey);
}
.sevice-grid .d-flex:not(:last-child):nth-child(4) {
  border-right: 0;
}
@media (max-width: 1025px) {
  .sevice-grid .d-flex:not(:last-child) {
    border-right: 0;
    padding: 8px;
    border-bottom: 1px solid var(--grey);
  }
  .sevice-grid .d-flex:not(:last-child):nth-child(9) {
    padding: 8px;
    border: 0;
  }
}

.border-gray {
  border-color: var(--grey) !important;
}

.border-dark-gray {
  border-color: var(--dark-gray) !important;
}

.text-dark-gray {
  color: var(--dark-gray) !important;
}

.text-light-gray {
  color: var(--light-gray) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-light-gray {
  background-color: var(--light-gray) !important;
}

.vision-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.about-bg {
  background-image: url("../images/about-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.about-bg:after {
  content: "";
  position: absolute;
  top: -33px;
  right: 0;
  width: 45%;
  height: 110.79%;
  background-color: rgba(33, 44, 85, 0.6980392157);
}
@media (max-width: 992px) {
  .about-bg:after {
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.strategy-section {
  background-image: url("../images/strategy-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 20px;
}

.fs-60 {
  font-size: 3.75rem;
}
@media (max-width: 1200px) {
  .fs-60 {
    font-size: 2.5rem;
  }
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-12 {
  font-size: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.py-125 {
  padding-top: 125px;
  padding-bottom: 125px;
}
@media (max-width: 767px) {
  .py-125 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.py-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.my-130 {
  margin-top: 130px;
  margin-bottom: 130px;
}
@media (max-width: 767px) {
  .my-130 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.head-border {
  position: relative;
}
.head-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  border-radius: 4px;
  height: 4px;
  background-color: var(--primary);
  width: 100px;
}

.head-border-bottom {
  position: relative;
}
.head-border-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  border-radius: 4px;
  height: 4px;
  background-color: var(--primary);
  width: 100px;
}

.service-box {
  display: grid;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
  margin-bottom: 1rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .service-box {
    margin-bottom: 30px;
  }
}
.service-box::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7490196078);
  position: absolute;
  z-index: 10;
  position: relative;
  border-radius: 12px;
  z-index: 10;
  grid-column-start: 1;
  grid-row-start: 1;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.service-box h6 {
  font-size: 22px !important;
}
.service-box figure {
  grid-column-start: 1;
  grid-row-start: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 292px;
}
.service-box figure img {
  height: 100%;
  transition: all ease-in-out 0.4s;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  width: 100%;
}
.service-box figcaption {
  grid-column-start: 1;
  grid-row-start: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  z-index: 20;
  position: relative;
  color: #fff;
  padding-inline: 18px;
  transition: all ease-in-out 0.3s;
  opacity: 0;
}
.service-box:hover::before {
  opacity: 1;
}
.service-box:hover figure img {
  transform: scale(1.2);
}
.service-box:hover figcaption {
  opacity: 1;
}

.flex-1 {
  flex: 1;
}

.min-h-60p {
  min-height: 60px;
}

.cube-flip {
  perspective: 1000px;
}
.cube-flip .bg-white {
  height: 151px;
}
.cube-flip h6 {
  transition: transform 0.3s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.cube-flip h6::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  content: attr(data-hover);
  transition: background 0.3s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
}
.cube-flip:hover h6 {
  transform: rotateX(95deg) translateY(-10px);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.map-box {
  display: grid;
  height: 100%;
}
.map-box > * {
  grid-column-start: 1;
  grid-row-start: 1;
}
.map-box div {
  background-color: rgba(33, 44, 85, 0.8509803922);
  padding: 24px 50px;
  z-index: 1;
}
.map-box div p {
  margin-bottom: 0;
}
.map-box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.map-box:hover div {
  background-color: transparent;
}
.map-box:hover p {
  display: none;
}

.product-bg {
  background-image: url("../images/product-list-hero-bg.jpg");
  background-size: cover;
  background-position: top;
  height: 50vh;
  min-height: 380px;
}
@media (min-width: 1200px) {
  .product-bg {
    min-height: 500px;
  }
}
@media (max-width: 991px) {
  .product-bg {
    height: 34vh;
    min-height: 300px;
  }
}
.product-bg h1 {
  display: inline-flex;
  position: relative;
  z-index: 9;
  padding-right: 20px;
}
.product-bg h1::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(10px) brightness(1.2);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.9), 0 0 90px rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.product-bg h1.text-dark::before {
  display: none;
}

.switch-container {
  display: inline-flex;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.16);
  padding: 3px;
  overflow: hidden;
}
.switch-container input[type=radio] {
  display: none;
}
.switch-container label {
  padding: 4px 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, color 0.3s;
  color: #aaa;
  border-radius: 8px;
}
.switch-container input:checked + label {
  background: #241E4E;
  color: white;
}
.switch-container input:checked + label img {
  filter: brightness(0) invert(1);
}

.contact-bg {
  background-image: url("../images/about-bg.svg");
  background-size: cover;
  background-position: bottom;
  height: 50vh;
}

.waste-bg {
  background-image: url("../images/waste-bg.jpg");
  background-size: cover;
  background-position: bottom;
  height: 50vh;
}

.after-sales-bg {
  background-image: url("../images/aftersales-banner.jpg");
  background-size: cover;
  background-position: bottom;
  height: 50vh;
}

.career-bg {
  background-image: url("../images/career-bg.jpg");
  background-size: cover;
  background-position: bottom;
  height: 50vh;
}

.circle-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: rgba(33, 44, 85, 0.2);
  border-radius: 50%;
}

.contact-form {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 12px;
  padding: 40px;
  background-color: var(--white);
  position: relative;
  margin-top: 30px;
  z-index: 9;
}
@media (min-width: 994px) {
  .contact-form {
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    margin-top: 16px;
    padding: 24px;
  }
}

.form-floating label {
  padding-left: 0;
}
.form-floating input,
.form-floating textarea {
  border: 0;
  border-bottom: 1px solid #181818;
  border-radius: 0;
  padding-left: 2px !important;
  box-shadow: none !important;
}
.form-floating textarea {
  resize: none;
  height: 100px !important;
}

.my-100 {
  margin: 100px 0;
}
@media (max-width: 991px) {
  .my-100 {
    margin: 30px 0;
  }
  .my-100.ase-value-section {
    margin: 0 0;
  }
  .my-100.our-strength-secction {
    margin-top: 0;
  }
  .my-100.our-strength-secction .custom-sponcers-l {
    margin-bottom: 24px;
  }
  .my-100.our-strength-secction .mb-40 {
    margin-bottom: 15px;
  }
}

.atlas-bg {
  position: relative;
}
.atlas-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  background-color: var(--light-gray);
  width: 100%;
  height: 110%;
  z-index: -1;
}
@media (min-width: 1366px) {
  .atlas-bg::before {
    height: 430px;
  }
}
.atlas-bg.single-products-lists {
  background-color: var(--light-gray);
  margin: 30px 0;
}
@media (max-width: 767px) {
  .atlas-bg.single-products-lists .custom-pa-1 {
    padding-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .atlas-bg.single-products-lists {
    margin: 165px 0;
    min-height: 386px;
    max-height: 386px;
    margin-bottom: 125px;
  }
}
.atlas-bg.single-products-lists .row {
  align-items: center;
}
@media (min-width: 992px) {
  .atlas-bg.single-products-lists .row {
    min-height: 386px;
    max-height: 386px;
  }
}
@media (min-width: 992px) {
  .atlas-bg.single-products-lists .custom-pl-60 {
    padding-left: 60px !important;
  }
}
.atlas-bg.single-products-lists .custom-inline-imgbox {
  position: relative;
}
.atlas-bg.single-products-lists .custom-inline-imgbox > img {
  border-radius: 12px;
}
@media (min-width: 992px) {
  .atlas-bg.single-products-lists .custom-inline-imgbox > img {
    position: absolute;
    min-height: 510px;
    top: -255px;
  }
}
.atlas-bg.single-products-lists .atlas-logo {
  width: 154px;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .atlas-bg.single-products-lists .atlas-logo {
    position: absolute;
    left: 20px;
    top: 15px;
    height: 75px;
    width: 75px;
    margin: 0 !important;
  }
}
@media (max-width: 767px) {
  .atlas-bg.single-products-lists .atlas-logo {
    top: 10px;
  }
}
@media (min-width: 992px) {
  .atlas-bg.single-products-lists .atlas-logo {
    position: absolute;
    right: -20px;
    top: -64px;
  }
}

.fs-100 {
  font-size: 100px;
}

.wm-slider .wm-slide-textbox {
  background-color: #F9F9F9;
  padding: 75px 36px;
}
@media (min-width: 768px) {
  .wm-slider .wm-slide-textbox {
    margin-left: -60px;
  }
}
.wm-slider .carousel-control-next,
.wm-slider .carousel-control-prev {
  position: relative;
  width: auto;
  opacity: 1;
  top: -100px;
}
@media (min-width: 991px) {
  .wm-slider .carousel-control-next,
  .wm-slider .carousel-control-prev {
    top: -78px;
  }
}
.wm-slider .carousel-control-next-icon,
.wm-slider .carousel-control-prev-icon {
  background-color: #D9D9D9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-size: 8px;
}
.wm-slider .carousel-control-next-icon {
  background-image: url("../images/next.png");
}
.wm-slider .carousel-control-prev-icon {
  background-image: url("../images/prev.png");
}
.wm-slider.for-opposite .wm-slide-textbox {
  margin-left: 0;
  position: relative;
}
@media (min-width: 768px) {
  .wm-slider.for-opposite .wm-slide-textbox {
    margin-right: -60px;
  }
}

.slick-style {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .slick-style {
    margin-bottom: 15px;
  }
}
.slick-style .d-flex {
  padding: 0 20px;
}
.slick-style .d-flex img {
  border-radius: 12px;
}
.slick-style .slick-list {
  padding: 0 60px 0 0 !important;
}

.fs-120 {
  font-size: 7.5rem;
  line-height: initial;
}

.about-banner {
  background-image: url("../images/about-banner.png");
  background-size: cover;
  background-position: center;
  height: 500px;
}

.about-wrapper {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .about-wrapper {
    padding: 30px 0;
  }
}
.about-wrapper .img-wrapper img {
  border-radius: 12px;
}
.about-wrapper .year-service {
  background-color: #212c55;
  border-radius: 12px;
  padding: 27px 12px;
  text-align: center;
  color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: -45px;
  width: 171px;
}
@media (max-width: 767px) {
  .about-wrapper .year-service {
    right: 11px;
  }
}
.about-wrapper .year-service h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
}
.about-wrapper .year-service span {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-mission {
  box-shadow: 0px 4px 65px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  border: 0;
}
.card-mission .card-body {
  padding: 24px;
}
.card-mission .card-body .card-title {
  display: flex;
  gap: 12px;
  align-items: center;
}
.card-mission .card-body .card-title h3 {
  font-weight: 700;
  font-size: 32px;
  color: #212c55;
}

.leadership {
  padding: 100px 0;
}

.value-box {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 12px;
  padding: 24px 18px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}
.value-box:hover {
  transform: translateY(-15px);
}
.value-box .icon-sec {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  margin: -60px auto 0 auto;
  padding: 1.2rem;
}
.value-box .icon-sec img {
  max-width: 100%;
}

.strength-box {
  background-color: var(--primary);
  border-radius: 12px;
  border-radius: 12px;
  min-height: 140px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.join-section {
  background-image: url("../images/join-img.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .join-section {
    background-size: cover;
    background-position: left;
  }
}

@media (min-width: 768px) {
  .px-md-100 {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.career-form {
  background-color: var(--white);
  padding: 20px;
}
@media (min-width: 1200px) {
  .career-form {
    margin-bottom: 0;
    padding: 60px 55px 50px 60px;
  }
}

.upload-wrapper input {
  display: none;
}
.upload-wrapper label {
  background-color: var(--light-gray);
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}

.leader-carousel .carousel-item {
  display: flex;
}
.leader-carousel .leader-card {
  position: absolute;
  inset: 0;
  height: 400px;
  transform: rotate(9deg);
}
.leader-carousel .leader-card img {
  max-width: 100%;
  height: 100%;
}

.skillset-main-container {
  position: relative;
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  flex-direction: row-reverse;
}

.skillset-content-section {
  flex: 1;
  max-width: 60%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.skillset-header-small {
  font-size: 1.1rem;
  color: #ef7d00;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.skillset-main-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1 !important;
  margin: 0;
}

.skillset-navigation {
  display: flex;
  gap: 1rem;
}

.skillset-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0eeeb;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

.skillset-nav-btn svg {
  width: 25px;
  height: 25px;
  stroke: #201918;
}

.skillset-nav-btn:hover {
  background: #ef7d00;
  transform: scale(1.05);
}

.swiper-button-disabled:hover {
  background: #f0eeeb;
  transform: scale(1);
}

.skillset-nav-btn:hover svg {
  stroke: #fff;
}

.skillset-nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.skillset-images-section {
  flex: 1;
  max-width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skillset-swiper {
  width: 500px;
  height: 400px;
}

.skillset-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.skillset-image {
  width: 500px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s ease;
  aspect-ratio: 16/9;
}

.skillset-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
}

/* Animation */
.skillset-content-animated {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.skillset-content-animated.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .skillset-main-container {
    flex-direction: column-reverse;
    height: auto;
  }
  .skillset-content-section {
    max-width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    min-height: auto;
  }
  .skillset-images-section {
    max-width: 100%;
    height: 60vh;
  }
  .skillset-swiper {
    width: 400px;
    height: 300px;
  }
  .skillset-navigation {
    justify-content: center;
  }
  .skillset-button {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .skillset-main-title {
    font-size: 2.5rem;
  }
  .skillset-swiper {
    width: 280px;
    height: 350px;
  }
}
/* Button animation */
.skillset-button.skillset-content-animated {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.skillset-button.skillset-content-animated.active {
  opacity: 1;
  transform: translateY(0);
}

.swiper-pagination {
  text-align: left;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 20px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
  width: 60px;
}
@media (max-width: 1023px) {
  .swiper-pagination {
    display: none;
  }
}

.txt-deco-none {
  text-decoration: none !important;
  font-size: 13.5px;
}

.text-underline {
  text-decoration: underline !important;
}

.text-truncate-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-sub-text {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
}
.text-sub-text span {
  font-family: "Open Sans", sans-serif;
}

.text-sub-text span {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-gray);
}

.para-two {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray);
}

.card-container {
  margin: auto;
  height: 100%;
}
.card-container .custom-card {
  height: 100%;
  border: none;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 65px 0px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: 1s all;
}
.card-container .custom-card:hover {
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .card-container .custom-card .card-body > .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.card-container .custom-card .dark-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 67px 64px 0;
  border-color: transparent var(--primary) transparent transparent;
  border-top-right-radius: 1rem;
  z-index: 1;
}
.card-container .custom-box-c {
  display: block;
  position: absolute;
  top: -6px;
  left: 104px;
  right: auto;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #DEEFF0;
  z-index: 1;
}
.card-container .profile-image-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  min-width: 150px;
  z-index: 1;
  background: #D9D9D9;
  border-radius: 50%;
}
.card-container .profile-image-wrapper .profile-img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  padding: 0;
  z-index: 2;
  display: block;
  margin: auto;
  max-width: 100%;
}
.card-container .card-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
}
@media (max-width: 767px) {
  .card-container .card-title {
    font-size: 26px;
  }
}
.card-container .card-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-gray);
}
.card-container .card-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-gray);
}

@media (max-width: 767px) {
  .set-top-headings {
    margin-top: 0px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .set-top-headings h6 {
    margin-bottom: 10px !important;
  }
}
.meat-team-section > .row {
  box-shadow: 0px 4px 65px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.leadership-section .row {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 36px;
}
.leadership-section .row .box-img-one img {
  border-radius: 7px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .leadership-section .row {
    padding: 16px;
  }
}
.leadership-section .row.flex-row-reverse.mb-lg-5 {
  margin-bottom: 0 !important;
}
.leadership-section .row.flex-row-reverse .box-img-one img {
  display: block;
  margin-left: auto;
  border-radius: 7px;
}
.leadership-section .head-border-bottom::before {
  width: 60px;
}

.py-80 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .py-80 {
    padding: 30px 0;
  }
}

.list-view-designs:nth-child(odd) {
  background-image: url("../images/pro-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.list-view-designs .flex-row-reverse .product-img-box img {
  display: block;
  margin-left: auto;
}

.product-img-box {
  border-radius: 12px;
  overflow: hidden;
}
.product-img-box > img {
  border-radius: 12px;
}

.product-bg h1 {
  color: var(--white) !important;
}

.product-bg h1.text-dark {
  color: var(--white) !important;
}

.map-box {
  max-height: 120px;
}
.map-box img {
  max-height: 120px;
}
.map-box > div {
  max-height: 120px;
}
.map-box:hover div {
  z-index: 0;
}
.map-box:hover .map-wrapper {
  z-index: 9;
}
.map-box iframe {
  min-height: 120px;
}

@media (min-width: 768px) {
  .our-clients-section .col {
    border-right: solid 1px var(--light-gray);
  }
  .our-clients-section .col:last-child {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .our-clients-section .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .explore-business-title,
  .head-border {
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .col-span-4.border-top.border-gray {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  footer.footer {
    overflow: hidden;
  }
}

.partners-marquee img.partner-logo {
  max-width: 100%;
}

ul.navbar-nav .menu-item-has-children {
  padding-right: 18px;
}
@media (max-width: 991px) {
  ul.navbar-nav .menu-item-has-children {
    padding-right: 0;
  }
}
ul.navbar-nav .dropdown-arrow {
  cursor: pointer;
  margin-top: 0;
  display: inline-block;
  position: absolute;
  right: -2px;
  top: 7px;
}
@media (max-width: 991px) {
  ul.navbar-nav .dropdown-arrow {
    top: 2px;
    width: 50px;
    margin: auto;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    padding-right: 5px;
  }
}
ul.navbar-nav .dropdown-arrow i {
  color: var(--white);
  font-size: 22px;
}
@media (max-width: 991px) {
  ul.navbar-nav .dropdown-arrow i {
    font-size: 28px;
  }
}
ul.navbar-nav .dropdown-menu.sub-menu .dropdown-arrow {
  top: 14px;
}
ul.navbar-nav .dropdown-menu.sub-menu .dropdown-arrow i {
  color: var(--primary);
}

.about-description {
  min-height: 410px;
  max-height: 410px;
  overflow-y: hidden;
}
@media (max-width: 991px) {
  .about-description {
    min-height: initial;
    max-height: initial;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .about-description {
    min-height: 340px;
    max-height: 340px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-description {
    min-height: 242px;
    max-height: 242px;
  }
}
.about-description.expanded {
  overflow-y: auto;
}

.read-more-btn,
.read-more-btn-two {
  display: block;
  margin-top: 2px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 991px) {
  .read-more-btn,
  .read-more-btn-two {
    display: none;
  }
}

.custom-sponcers-l .col {
  flex: 0;
}
.custom-sponcers-l .col a {
  display: block;
  max-width: 88px;
  background: white;
  padding: 7px;
  min-height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-sponcers-l .col a img {
  max-width: 88px;
  width: 80px;
}

.strength-border-b {
  border-radius: 4px;
  background-color: var(--primary);
  width: 100px;
  height: 4px;
  position: absolute;
  left: 12px;
  bottom: 0;
}

.vision-mission-section .about-description-two {
  min-height: 96px;
  max-height: 96px;
  overflow-y: hidden;
}
.vision-mission-section .about-description-two .short-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
}
@media (max-width: 991px) {
  .vision-mission-section .about-description-two {
    min-height: initial;
    max-height: initial;
  }
}
.vision-mission-section .about-description-two.expanded {
  overflow-y: auto;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

@media (max-width: 1200px) {
  .strength-box p.fs-14 {
    font-size: 13px;
  }
}

.values-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
.values-card-grid .col-cutoms {
  height: 100%;
}
@media (max-width: 1199px) {
  .values-card-grid .col-cutoms {
    padding-bottom: 55px;
  }
}
@media (max-width: 1100px) {
  .values-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .values-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .values-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 380px) {
  .values-card-grid {
    grid-template-columns: 1fr;
  }
}

.inner-map-boxes {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.location-txt {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 1200px) {
  .location-txt {
    font-size: 14px;
  }
}

.border-map-1 {
  border-bottom: solid 1px var(--light-gray);
}

@media (min-width: 768px) {
  .border-l-left {
    border-left: solid 1px var(--light-gray);
    max-height: 320px;
  }
}

.map-box-contact img {
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.contact-form-one .btn.btn-primary {
  margin-top: 16px;
  width: 100%;
  background-color: var(--primary);
}
.contact-form-one .btn.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary);
}
.contact-form-one .wpcf7 form .wpcf7-response-output {
  margin: 0em 0.5em 0em;
}
.contact-form-one .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 4px;
}

.join-description {
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .join-description {
    min-height: 190px;
    max-height: 190px;
    font-size: 18px;
    font-weight: 500;
  }
}
@media (max-width: 991px) {
  .join-description {
    min-height: initial;
    max-height: initial;
  }
}
.join-description.expanded {
  max-height: 120px;
  overflow-y: auto;
}

.read-more-btn-join {
  text-decoration: none;
}
@media (max-width: 991px) {
  .read-more-btn-join {
    display: none;
  }
}

.sevice-grid .card-h-service p a {
  line-height: 1.5;
  display: block;
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 1400px) {
  .sevice-grid .card-h-service {
    min-height: 88px;
    max-height: 88px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .sevice-grid .card-h-service {
    min-height: 88px;
    max-height: 88px;
  }
  .sevice-grid .card-h-service p a {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sevice-grid .card-h-service {
    min-height: 60px;
    max-height: 60px;
  }
  .sevice-grid .card-h-service p a {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sevice-grid .card-h-service:nth-child(8), .sevice-grid .card-h-service:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sevice-grid .card-h-service {
    border-bottom: solid 1px var(--grey);
  }
  .sevice-grid .card-h-service p a {
    font-size: 16px;
  }
}
.sevice-grid a:hover {
  opacity: 0.7;
}

.custom-inner-section-one > .h-100 {
  height: 75% !important;
}
@media (max-width: 991px) {
  .custom-inner-section-one > .h-100 {
    height: 70% !important;
  }
}

.page-template-leadership .product-bg::after,
.page-template-management .product-bg::after,
body.page-id-169 .product-bg::after {
  display: none;
}
.page-template-leadership .custom-inner-section-one .btn-banner,
.page-template-management .custom-inner-section-one .btn-banner,
body.page-id-169 .custom-inner-section-one .btn-banner {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact-modal-set.my-130 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .related_products.related-new .slick-slider {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .related_products.related-new .service-box {
    margin-bottom: 0;
  }
}
.related_products .slick-slide {
  margin-right: 24px;
}
.related_products .slick-prev,
.related_products .slick-next {
  background-color: #D9D9D9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  top: calc(50% - 50px);
}
.related_products .slick-prev:hover, .related_products .slick-prev:focus,
.related_products .slick-next:hover,
.related_products .slick-next:focus {
  background-color: #D9D9D9;
  color: inherit;
  outline: none;
  background-repeat: no-repeat;
  background-position: center;
}
.related_products .slick-prev::before,
.related_products .slick-next::before {
  display: none;
}
.related_products .slick-prev,
.related_products .slick-prev:hover,
.related_products .slick-prev:focus {
  background-image: url(../images/prev.png);
  left: 20px;
}
.related_products .slick-next,
.related_products .slick-next:hover,
.related_products .slick-next:focus {
  background-image: url(../images/next.png);
  right: 95px;
}
@media (max-width: 1199px) {
  .related_products .slick-next,
  .related_products .slick-next:hover,
  .related_products .slick-next:focus {
    right: 7px;
  }
}

.productCarousel .carousel-inner .carousel-item > img.d-block {
  min-height: 523px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.product_sliders_section .wm-slide-textbox-fixed {
  position: absolute;
  width: 55%;
  max-width: 100%;
  right: 0;
  z-index: 1;
  top: 50%;
  transform: translate(0%, -50%);
  justify-content: center;
  padding: 30px 35px !important;
}
@media (min-width: 768px) {
  .product_sliders_section .wm-slide-textbox-fixed {
    padding: 56px 35px !important;
    max-height: 420px;
    min-height: 420px;
  }
}
.product_sliders_section .for-opposite .wm-slide-textbox-fixed {
  position: absolute !important;
  left: 0;
}
.product_sliders_section .for-opposite .wm-slider-arrows {
  left: 122px;
}
.product_sliders_section .wm-slider-arrows {
  position: absolute;
  right: 122px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product_sliders_section .wm-slider-arrows {
    bottom: 39px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .product_sliders_section .wm-slide-textbox-fixed {
    width: 55%;
    padding: 24px !important;
  }
  .product_sliders_section .wm-slide-textbox-fixed h4 {
    font-size: 20px !important;
  }
  .product_sliders_section .wm-slide-textbox-fixed h6 {
    font-size: 14px !important;
  }
  .product_sliders_section .wm-slider .carousel-control-next-icon,
  .product_sliders_section .wm-slider .carousel-control-prev-icon {
    width: 36px;
    height: 36px;
  }
  .product_sliders_section .wm-slider .carousel-control-next,
  .product_sliders_section .wm-slider .carousel-control-prev {
    top: 0;
  }
}
@media (max-width: 767px) {
  .product_sliders_section .wm-slide-textbox-fixed {
    position: relative;
    transform: translate(0, 0);
    width: 100%;
  }
  .product_sliders_section .custom-flex-slider {
    display: flex;
    flex-direction: column-reverse;
  }
  .product_sliders_section .wm-slider-arrows {
    position: absolute;
    right: 0;
    left: 50%;
    transform: translate(-50%, 16%);
  }
  .product_sliders_section .for-opposite .wm-slide-textbox-fixed {
    position: relative !important;
  }
  .product_sliders_section .for-opposite .wm-slider-arrows {
    position: absolute;
    right: 0;
    left: 50%;
    transform: translate(-50%, 16%);
  }
}

.custom-flex-slider .d-grid p.d-flex {
  align-items: flex-start !important;
}
.custom-flex-slider .d-grid p.d-flex img {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  max-width: 100%;
  position: relative;
  top: 5px;
}

.my-33 {
  margin-top: 33px;
  margin-bottom: 33px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mb-40 {
  margin-bottom: 40px;
}

.esg-section-one {
  background-color: #e4e7e0;
  position: relative;
}
@media (max-width: 767px) {
  .esg-section-one .first-left-box {
    position: relative;
    z-index: 9;
  }
}
.esg-section-one .leaf-img-box {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .esg-section-one .leaf-img-box {
    opacity: 0.3;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .pb-80 {
    padding-bottom: 30px;
  }
}

@media (min-width: 1921px) {
  .esg-section-two .esg-content-card {
    padding-right: calc((100vw - 1320px) / 2);
  }
  .esg-section-two .flex-row-reverse .esg-content-card {
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: 50px;
  }
}
I .esg-section-two.atlas-bg::before {
  display: none;
}

.p-80 {
  padding: 80px;
}
@media (max-width: 767px) {
  .p-80 {
    padding: 30px;
  }
}

.esg-content-card {
  min-height: 605px;
  max-height: 605px;
  overflow-y: auto;
  background-color: var(--primary);
}
@media (min-width: 992px) {
  .esg-content-card p {
    max-height: 460px;
    overflow-y: auto;
  }
}
@media (max-width: 991px) {
  .esg-content-card {
    min-height: inherit;
    max-height: inherit;
  }
}

.esg-img-cards {
  max-height: 525px;
  overflow: hidden;
}

.esg-content-card p {
  font-size: 18px;
  font-weight: 600 !important;
}

.text-dark-gray a {
  color: var(--primary);
}

@media (min-width: 768px) {
  .mt-40 {
    margin-top: 40px;
  }
}

.carbon-section .report-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}
.carbon-section .report-card img {
  max-width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 1px #e8e8e8;
}
@media (max-width: 767px) {
  .carbon-section .report-card img {
    display: block;
    margin: auto;
  }
}
.carbon-section .report-card a .mb-12 img {
  min-height: 248px;
}
.carbon-section ul.nav-tabs {
  border-bottom: none;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .carbon-section ul.nav-tabs {
    justify-content: center;
  }
}
.carbon-section ul.nav-tabs > li {
  flex: 0 0 50%;
  max-width: 50%;
}
.carbon-section ul.nav-tabs .nav-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  font-size: 24px;
  padding: 20px 0;
  color: var(--primary);
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media (max-width: 991px) {
  .carbon-section ul.nav-tabs .nav-link {
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  .carbon-section ul.nav-tabs .nav-link {
    display: block;
    margin: auto;
  }
}
.carbon-section ul.nav-tabs .nav-link::before {
  content: "";
  width: 40px;
  height: 4px;
  background-color: transparent;
  position: absolute;
  top: 0;
  border-radius: 4px;
  background-color: var(--primary);
}

.mb-12 {
  margin-bottom: 12px;
}

.contact-modal-set {
  background-image: url("../images/bg-contacts.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
}
.contact-modal-set .text-logo {
  width: 140px;
  height: 140px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -78px;
}
.contact-modal-set .text-logo > img {
  max-width: 100%;
}

.sustain-boxes a {
  text-decoration: none !important;
}

.enquiry-modals .modal-content {
  border-radius: 12px;
}
.enquiry-modals .modal-header {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 0;
}
.enquiry-modals .modal-header .btn-close {
  outline: 0;
  box-shadow: none !important;
}
.enquiry-modals .modal-body {
  padding: 40px;
}
.enquiry-modals .modal-body select.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: solid 1px var(--primary);
  outline: 0;
  box-shadow: none !important;
  padding-top: 16px;
  padding-left: 0;
  min-height: 58px;
  background-position: right 0.1rem top 28px;
}
.enquiry-modals .modal-body select.form-control option {
  padding-left: 10px;
}

.facilities-section-one p {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
}
.facilities-section-one ul li {
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}
.facilities-section-one ul li > img {
  position: relative;
  top: 4px;
}

.facilities-section-two {
  background-color: #E7E7E7;
  background-image: url("../images/feature-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.facilities-section-two ul li {
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
}
.facilities-section-two ul li > img {
  position: relative;
  top: 4px;
}

.text-info-16 {
  font-size: 16px;
  font-weight: 400;
}

@media (min-width: 992px) {
  .mb-75 {
    margin-bottom: 75px;
  }
}

@media (min-width: 992px) {
  .mb-c-75 {
    padding-bottom: 75px !important;
  }
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .py-60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.work-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-gallery .work-main-slider {
  padding-left: 10px;
  padding-right: 10px;
}
.work-gallery .work-main-slider img {
  height: 350px;
}
.work-gallery .work-thumb-slider img {
  height: auto;
  border-radius: 12px;
  aspect-ratio: 1/1;
  max-width: 214px;
}
.work-gallery .work-thumb-slider .slick-slide {
  padding: 10px;
}
.work-gallery .work-thumb-slider .slick-current {
  opacity: 1;
}

.vision-homes.leader-brouser {
  background-image: url("../images/vision-bg.webp");
}
.vision-homes h3.fs-2 {
  font-size: 34px !important;
  font-weight: 700 !important;
  color: var(--primary);
  width: -moz-fit-content;
  width: fit-content;
}
.vision-homes h3.fs-2 a {
  color: var(--primary);
}
.vision-homes h3.fs-2 a:hover {
  opacity: 0.75;
}
.vision-homes p {
  font-size: 20px;
  font-weight: 600;
}
.vision-homes p.fs-16 {
  font-size: 16px;
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .single-products .single-products-lists .container p {
    max-height: 150px;
  }
}

.quality_certificates .work-gallery .work-main-slider img {
  height: auto;
}
.quality_certificates .work-gallery .work-thumb-slider img {
  height: 120px;
  border-radius: 12px;
  border: solid 1px #e9e9e9;
}

.career-form-one {
  width: 560px;
  max-width: 100%;
}

.inner-career {
  padding-left: calc((100vw - 540px) / 2);
}
@media (min-width: 576px) {
  .inner-career {
    padding-left: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  .inner-career {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .inner-career {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .inner-career {
    padding-left: calc((100vw - 1140px) / 2);
  }
  .inner-career .pe-xl-100 {
    padding-right: 100px !important;
  }
}
@media (min-width: 1400px) {
  .inner-career {
    padding-left: calc((100vw - 1320px) / 2);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .inner-career {
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 2000px) {
  .inner-career {
    padding-right: calc((100vw - 1320px) / 2);
  }
}
@media (max-width: 991px) {
  .inner-career .career-form {
    margin-bottom: 30px;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .inner-career {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .inner-career .career-form-one {
    width: 100%;
  }
}
.inner-career .text-primary {
  color: var(--primary) !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .facilities-section-two h4.fw-semibold.text-primary {
    font-size: 28px !important;
  }
}

@media (max-width: 767px) {
  .related_products.pb-5.related-new {
    padding-bottom: 1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .career-form-one {
    width: 100%;
  }
}

.related-new {
  padding-left: calc((100vw - 540px) / 2);
}
@media (min-width: 576px) {
  .related-new {
    padding-left: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  .related-new {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .related-new {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .related-new {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  .related-new {
    padding-left: calc((100vw - 1320px) / 2);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .related-new {
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media (max-width: 767px) {
  .related-new {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.related-new .slick-slider {
  padding-left: 12px;
}

@media (min-width: 768px) {
  .h-content-fixes {
    max-height: 300px;
    overflow-y: auto;
  }
}

@media (min-width: 768px) {
  .clamp-4-lines,
  .clamp-2-lines,
  .clamp-3-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.clamp-2-lines {
  -webkit-line-clamp: 2 !important;
}

.clamp-3-lines {
  -webkit-line-clamp: 3 !important;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

@media (min-width: 1921px) {
  .custom-flex-slider {
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: calc((100vw - 1320px) / 2);
  }
  .custom-flex-slider .wm-slide-textbox-fixed {
    padding-right: calc((100vw - 1320px) / 2) !important;
  }
  .custom-flex-slider.for-opposite {
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: calc((100vw - 1320px) / 2);
  }
  .custom-flex-slider.for-opposite .wm-slide-textbox-fixed {
    padding-left: calc((100vw - 1320px) / 2) !important;
    padding-right: 50px !important;
  }
}

.work-main-slider .slick-dots {
  display: none !important;
}

.work-thumb-slider .slick-dots {
  display: flex;
  gap: 8px;
  padding-left: 12px;
  bottom: -36px;
}
.work-thumb-slider .slick-dots li {
  width: auto;
  margin: 0 0;
}
.work-thumb-slider .slick-dots li.slick-active button {
  background-color: var(--primary);
  border-radius: 0px;
  width: 60px;
}
.work-thumb-slider .slick-dots li button {
  width: 30px;
  height: 4px;
  padding: 0 0;
  border-radius: 4px;
  background-color: var(--light-gray);
}
.work-thumb-slider .slick-dots li button::before {
  display: none;
}

.work-thumb-slider.mt-3 {
  margin-top: 0 !important;
}

.work-gallery .slick-dotted.slick-slider {
  margin-bottom: 10px;
}

.mx-img-auto > img {
  display: block;
  margin: auto;
}

.navbar-expand-lg a {
  outline: none;
}

.partners-slider .slick-track {
  display: flex;
  gap: 36px;
}
.available-stock-section .service-box::before {
  background-color: transparent;
}
.available-stock-section .post-card {
  border-radius: 10px;
}
.available-stock-section .post-card img {
  border-radius: 10px;
}

@media (min-width: 992px) {
  .mx-250-f {
    max-width: 250px;
  }
}

footer .map-box p.fs-12 {
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .about-bg {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .service-box figure > img {
    min-height: 292px;
    max-height: 292px;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pb-md-custom-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .pb-md-custom-0 .row .col-xl-3:last-child .service-box:last-child {
    margin-bottom: 0;
  }
}

.pb-md-custom-2 .row .col-xl-2:first-child .cube-flip img {
  max-width: 100px;
}
@media (max-width: 991px) {
  .pb-md-custom-2 .row .col-xl-2 .cube-flip img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .pb-md-custom-2 .row .col-xl-2:last-child:last-child {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .mb-36 {
    margin-bottom: 20px;
  }
}

.search-results-wrapper .post-card img {
  min-height: 200px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.search-results-wrapper .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.search-results-wrapper .nav-links a,
.search-results-wrapper .nav-links span.current {
  border: 2px solid var(--primary);
  padding: 10px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  text-decoration: none;
  color: var(--primary);
  font-weight: normal;
}
.search-results-wrapper .nav-links a:hover,
.search-results-wrapper .nav-links span.current:hover {
  background-color: var(--primary);
  color: var(--white);
}
.search-results-wrapper .nav-links span.current {
  background-color: var(--primary);
  color: var(--white);
}
.search-results-wrapper nav.navigation.pagination {
  width: 100%;
  justify-content: center;
}

.middle-east-map-box .middle-east-details {
  position: absolute;
  background-color: #ffffff;
  list-style: none;
  padding: 20px;
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  top: auto;
  bottom: 130px;
  max-width: 330px;
  width: 100%;
  z-index: 9;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 550px) {
  .middle-east-map-box .middle-east-details {
    bottom: 105px;
  }
}
.middle-east-map-box .middle-east-details:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.middle-east-map-box .middle-east-details .middle-east-location-item {
  border-bottom: 1px solid #E7E7E7;
}
.middle-east-map-box .middle-east-details .middle-east-location-item .item-header {
  padding: 0;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.middle-east-map-box .middle-east-details .middle-east-location-item .item-header h6 {
  font-size: 20px;
  font-weight: 500;
  color: #181818;
  align-items: center;
}
.middle-east-map-box .middle-east-details .middle-east-location-item .item-content {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
  opacity: 0.5;
}
.middle-east-map-box .middle-east-details .middle-east-location-item:last-child {
  border-bottom: 0px solid transparent;
}
.middle-east-map-box .middle-east-details .middle-east-location-item:last-child .item-content {
  margin-bottom: 0;
}
.middle-east-map-box:hover .middle-east-details {
  display: flex;
}

@media (max-width: 767px) {
  .f-logo-update img {
    min-width: 70px;
  }
}

.partners-slider .slick-slide img {
  max-width: 100%;
}

.list-view-design-show .product-img-box {
  position: relative;
}
.list-view-design-show .product-img-box::before {
  content: "";
  background-image: url("../images/dot-icons.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 52px;
  height: 116px;
  display: block;
  position: absolute;
  top: 80px;
  right: 45px;
  z-index: 9;
}
@media (max-width: 767px) {
  .list-view-design-show .product-img-box::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .list-view-design-show .product-img-box {
    padding-right: 100px;
  }
  .list-view-design-show .product-img-box > img {
    width: 100%;
    min-height: 250px;
    max-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .list-view-design-show .product-img-box > img {
    min-height: 355px;
    max-height: 355px;
  }
}
@media (min-width: 768px) {
  .list-view-design-show .text-archive-box-space {
    padding-left: 50px;
  }
}
.list-view-design-show .flex-md-row-reverse .product-img-box::before {
  right: auto;
  left: 45px;
}
@media (min-width: 768px) {
  .list-view-design-show .flex-md-row-reverse .product-img-box {
    padding-right: 0;
    padding-left: 100px;
  }
}
@media (min-width: 768px) {
  .list-view-design-show .flex-md-row-reverse .text-archive-box-space {
    padding-left: 0;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .footer-menu {
    padding-top: 5px;
  }
}

.leaf-img-box > img {
  max-height: 400px;
}

.product-bg {
  position: relative;
  z-index: 9;
}
.product-bg::after {
  content: "";
  background: linear-gradient(180deg, rgba(24, 24, 24, 0) 0%, rgba(24, 24, 24, 0.5) 50%, #181818 100%);
  display: block;
  width: 100%;
  height: 277px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.product-bg .custom-inner-section-one {
  position: relative;
  z-index: 9;
}

.f-logo-update {
  max-width: 260px;
}
.f-logo-update .col-4:nth-child(4),
.f-logo-update .col-4:nth-child(5) {
  width: 105px;
}
.f-logo-update .col-4:nth-child(4) a > img,
.f-logo-update .col-4:nth-child(5) a > img {
  width: 100%;
  max-width: 100%;
}

.value-box p {
  font-size: 18px;
}
.value-box p.text-dark-gray {
  color: #6C6B6B !important;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .ase-value-section .fs-120 {
    line-height: 1;
    margin-bottom: 30px;
  }
}

.facilities-section-two ul li a {
  color: var(--primary) !important;
  font-weight: 600;
  text-decoration: none;
}

ul.navbar-nav#menu-header-menu li.menu-item-has-children {
  position: relative;
}
.iti {
  width: 100%;
  z-index: 9;
}
.iti .iti__country-container:before {
  content: "";
  left: 95px;
  top: 12px;
  width: 1px;
  height: 35px;
  background-color: #181818;
  position: absolute;
  z-index: 9;
}
.iti input.iti__tel-input {
  padding: 1rem 0.75rem;
  padding-left: 105px !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .work-gallery {
    margin-bottom: 80px;
  }
  .work-gallery .work-thumb-slider img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .facilities-section-one ul li {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .facilities-section-two {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .custom-t-space {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .custom-t-space ul.d-flex li {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .custom-t-space ul.d-flex {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .custom-t-space ul.d-flex li {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .list-view-designs.py-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .list-view-designs.py-75 .row.mb-5 {
    margin-bottom: 0 !important;
  }
}

ul.navbar-nav#menu-header-menu li.menu-item-has-children ul.dropdown-menu.sub-menu li.menu-item-has-children {
  display: block !important;
  animation: none !important;
  transform: none !important;
  position: static !important;
}
ul.navbar-nav#menu-header-menu li.menu-item-has-children ul.dropdown-menu.sub-menu li.menu-item-has-children ul.dropdown-menu.sub-menu {
  display: block !important;
  animation: none !important;
  transform: none !important;
  position: static !important;
}

.text-left-con p small {
  font-size: 14px;
  font-weight: 400;
  color: #181818;
}

form .form-floating label {
  top: 2px;
}
form .form-floating label::after {
  display: none;
}
form .form-floating > .form-control {
  padding-bottom: 11px;
}

.postid-159 .carbon-section {
  padding-top: 0 !important;
}

.postid-74 .related_products,
.postid-75 .related_products,
.postid-539 .related_products,
.postid-571 .related_products {
  padding-top: 75px !important;
}

@media (min-width: 992px) {
  .archive-news-list {
    padding-bottom: 40px;
  }
}

.quality_certificates {
  background-color: var(--white);
}

@media (max-width: 767px) {
  .esg-section-one.quality-section-one {
    min-height: 650px;
    padding-bottom: 0;
  }
  .esg-section-one.quality-section-one .p-30 {
    padding: 0 16px;
  }
  .esg-section-one.quality-section-one .leaf-img-box {
    opacity: 1;
    position: static;
    padding: 0;
    padding-top: 20px;
  }
}

.modal-body.product_modal_image p.d-flex {
  align-items: flex-start !important;
}
.modal-body.product_modal_image p.d-flex > img {
  position: relative;
  top: 5px;
}

@media (max-width: 767px) {
  .mb-c-75.carbon-section {
    padding-left: 12px;
    padding-right: 10px;
  }
}

.after-cont-text {
  margin-top: 40px;
}
.after-cont-text h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #181818;
}
.after-cont-text p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #181818;
}
.after-cont-text p a {
  color: var(--primary);
  font-weight: 500;
}

.service-box figcaption h6 {
  display: none;
}
.service-box figcaption p {
  display: none;
}

@media (min-width: 1200px) {
  .pb-5.related-new {
    padding-bottom: 0 !important;
  }
}

ul.listin-proucts br {
  display: none;
}
ul.listin-proucts li {
  position: relative;
  padding-left: 25px;
  list-style: none;
  margin-bottom: 4px;
}
ul.listin-proucts li::before {
  content: "";
  background-image: url("../images/arrow-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0px;
}

.para-one-tx {
  font-weight: 600;
}

.product_modal_image p.mb-0 {
  margin-bottom: 4px !important;
}

.solution-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
}

.solution-table th,
.solution-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  vertical-align: top;
}

.solution-table th {
  background: #f4f4f4;
  font-weight: 600;
}

.solution-table tr {
  background-color: var(--white);
}

.solution-table tr:nth-child(odd) {
  background-color: #f6f6f6;
}

@media (max-width: 767px) {
  .list-view-designs a.btn-primary:hover {
    transition: transform 0s ease-in-out;
  }
}

@media (min-width: 320px) and (max-width: 1199px) {
  .pt-tab-30 {
    padding-top: 30px !important;
  }
}
.pt-tab-30.carbon-section.bg-white {
  background: #f9f9f9 !important;
}

img.custom-ico-1 {
  position: relative;
  top: 6px;
  min-width: 16px;
  width: 16px;
  min-height: 16px;
}

.br-12-custom {
  border-radius: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .my-130.about-bg {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .my-130.about-bg::after {
    top: -28px;
  }
}

.page-template-management .product-bg {
  background-size: contain !important;
  background-position: bottom !important;
  background-repeat: no-repeat;
  background-color: #000;
}
@media (max-width: 767px) {
  .page-template-management .product-bg {
    background-size: cover !important;
    background-position: center !important;
  }
}

@media (min-width: 768px) {
  .related-new-slide > .related_products {
    padding-top: 60px !important;
  }
}

div#wonderchat-wrapper {
  right: 50px !important;
  bottom: -3px !important;
  transform: scale(0.8);
  transform-origin: bottom right;
}

.gap-40 {
  gap: 40px;
}

.tabs_wrapper {
  z-index: 1;
  overflow-x: auto;
  padding-bottom: 26px;
  padding-top: 26px;
  overflow-y: hidden;
  scrollbar-width: none;
  width: 92%;
  -ms-overflow-style: none;
}
@media (max-width: 991px) {
  .tabs_wrapper {
    gap: 20px;
  }
}
.tabs_wrapper ::-webkit-scrollbar {
  display: none;
}
.tabs_wrapper .tabs_link {
  white-space: nowrap;
  font-size: 24px;
}
@media (max-width: 991px) {
  .tabs_wrapper .tabs_link {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .tabs_wrapper .tabs_link {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .tabs_wrapper .tabs_link {
    font-size: 14px;
  }
}
.tabs_wrapper .tabs_link.active {
  position: relative;
}
.tabs_wrapper .tabs_link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -26px;
  border-radius: 4px;
  height: 4px;
  background-color: var(--primary);
  width: 100%;
}
.tabs_wrapper::-webkit-scrollbar {
  height: 1px;
}
.tabs_wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.tabs_wrapper::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.tabs_main_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.tabs_main_wrapper .left-btn,
.tabs_main_wrapper .right-btn {
  display: none;
  background-color: #D9D9D9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9;
  position: absolute;
  top: 14px;
  border: none;
  cursor: pointer;
}
@media (max-width: 991px) {
  .tabs_main_wrapper .left-btn,
  .tabs_main_wrapper .right-btn {
    width: 36px;
    height: 36px;
    top: 20px;
  }
}
@media (max-width: 480px) {
  .tabs_main_wrapper .left-btn,
  .tabs_main_wrapper .right-btn {
    width: 30px;
    height: 30px;
  }
}
.tabs_main_wrapper .left-btn {
  left: 10px;
  background-image: url("../images/prev.png");
}
.tabs_main_wrapper .right-btn {
  right: 10px;
  background-image: url("../images/next.png");
}

.carbon-section {
  position: relative;
}
.carbon-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(231, 231, 231, 0.231372549);
  width: 100%;
  height: 61px;
  z-index: 0;
}

.slider-container .slick-arrow {
  background-color: #D9D9D9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-size: 9px !important;
  background-position: center !important;
  position: absolute;
  left: auto !important;
  right: 50px;
  top: auto;
}
.slider-container .slick-arrow::before {
  content: "";
  display: none;
}
.slider-container .slick-list {
  margin: 0px;
}
.slider-container .slick-prev {
  background-image: url("../images/prev.png") !important;
  background-repeat: no-repeat !important;
  right: 70px;
}
.slider-container .slick-next {
  background-image: url("../images/next.png") !important;
  background-repeat: no-repeat !important;
}
.slider-container .slick-slide {
  outline: none;
}
.slider-container .slick-prev {
  left: 0;
  z-index: 1;
}
.slider-container .slick-next {
  right: 0;
  z-index: 1;
}
.slider-container .slick-next:focus,
.slider-container .slick-next:hover,
.slider-container .slick-prev:focus,
.slider-container .slick-prev:hover {
  color: unset;
  outline: 0;
  background: #D9D9D9;
}

.product-slider .wm-slide-textbox-fixed {
  width: 100%;
  background: #F9F9F9;
  transform: translate(0%, -50%);
}
@media (max-width: 767px) {
  .product-slider .wm-slide-textbox-fixed {
    transform: translate(0%, -53%);
  }
}

.wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed {
  transform: translate(-11%, -50%);
  background: #F9F9F9;
}
@media (max-width: 767px) {
  .wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed {
    transform: translate(0%, 0%) !important;
    padding: 0 0 !important;
  }
}
.wm-slide-textbox-fixed-inner .modal_content p.d-flex {
  align-items: flex-start !important;
}
.wm-slide-textbox-fixed-inner .modal_content p.d-flex > img {
  position: relative;
  top: 5px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .product-slider .wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed {
    transform: translate(-9%, -50%) !important;
  }
}
.product-slider .for-opposite {
  flex-direction: row-reverse;
}
.product-slider .for-opposite .wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed {
  transform: translate(11%, -50%) !important;
}
@media (min-width: 768px) and (max-width: 992px) {
  .product-slider .for-opposite .wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed {
    transform: translate(12%, -50%) !important;
  }
}
@media (max-width: 767px) {
  .product-slider .for-opposite .wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed {
    transform: translate(0%, 0%) !important;
    padding: 0 0 !important;
  }
}
.product-slider .for-opposite .slick-arrow {
  right: auto !important;
  left: 70px !important;
}
.product-slider .for-opposite .slick-prev {
  right: auto !important;
  left: 0 !important;
}
@media (min-width: 768px) {
  .product-slider .slider-container .wm-slide-textbox-fixed-inner.wm-slide-textbox-fixed .slick-slider {
    min-height: 220px;
  }
}
.product-slider .slider-container .slick-arrow {
  bottom: -193px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-slider .slider-container .slick-arrow {
    bottom: -145px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-slider .slider-container .slick-arrow {
    bottom: -145px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .product-slider .slider-container .slick-arrow {
    bottom: -170px;
  }
}
@media (max-width: 767px) {
  .product-slider .slider-container .slick-arrow {
    bottom: auto !important;
    top: -90px !important;
    left: 50% !important;
  }
}
@media (max-width: 767px) {
  .product-slider .slider-container .slick-arrow.slick-prev {
    transform: translate(-120%, -50%) !important;
  }
}
@media (max-width: 767px) {
  .product-slider .slider-container .slick-arrow.slick-next {
    transform: translate(20%, -50%) !important;
  }
}
@media (min-width: 2000px) {
  .product-slider .slider-container.for-opposite .slick-slide .wm-slide-textbox {
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: 50px;
  }
}/*# sourceMappingURL=style.css.map */