:root {
  --font: "Manrope", sans-serif;
  --font2: "Manrope", sans-serif;
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --pri: #234982;
  --sec: #678fd5;
  --text-color: #0a2540;
  --text-light: #8c8c8c;
  --para-color: #54626d;
  --border-color: #ececec;
  --white: #fff;
  --off-white: #f4f7fb;
  --black: #212529;
}

body {
  background: var(--white);
  font-family: var(--font2);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--para-color);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font2);
  line-height: 1.6;
}

a {
  display: block;
  text-decoration: none;
}

p a {
  display: inline;
}

.head-sec {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 35px;
}

.head-sec.text-start {
  max-width: 100%;
}

.head-sec .sub-tt {
  padding: 7px 15px;
  border-radius: 30px;
  background-color: var(--off-white);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.head-sec .sub-tt.dark {
  background-color: var(--pri);
  color: var(--white);
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
  /* text-transform: capitalize; */
}

.head-sec .tt span {
  color: var(--pri);
}

.head-sec p {
  font-size: 15px;
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 0;
}

.head-sec.text-white .sub-tt::before {
  border-bottom: 1px solid var(--white);
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

.head-sec.text-white p {
  opacity: 0.8;
}

.w-btn {
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #00c966;
  outline: none;
  transition: 0.2s ease-in-out;
  line-height: 1;
}

.w-btn:hover {
  border-color: #00c966;
  background-color: #00b95d;
}

.main-btn {
  padding: 12px 18px;
  color: var(--white);
  border: 1px solid var(--sec);
  background-color: var(--sec);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font2);
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
}

.main-btn.sm {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 400;
}

.main-btn:hover {
  background: var(--white);
  color: var(--pri);
  border-color: var(--pri);
}

.main-btn2 {
  color: var(--white);
  background-color: var(--pri);
  border-color: var(--pri);
}

.main-btn2:hover {
  background-color: var(--sec);
  border-color: var(--sec);
  color: var(--white);
}

.main-btn.light {
  background-color: var(--off-white);
  border-color: var(--off-white);
  color: var(--text-color);
  font-weight: 600;
}

.main-btn.light:hover {
  background-color: var(--pri);
  border-color: var(--pri);
  color: var(--white);
}

.social {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 5px;
  margin-bottom: 0;
  padding: 0;
  align-items: center;
}

.social li a {
  width: 34px;
  height: 34px;
  color: var(--white);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  transition: 0.2s ease;
  background: var(--sec);
}

.social li a svg {
  width: 15px;
  height: 15px;
  color: currentColor;
}

.social li a:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--pri);
}

.form-label {
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 500;
  margin-bottom: 4px;
}

.SumoSelect > .CaptionCont > span.placeholder {
  background-color: transparent;
  color: var(--text-color);
  opacity: 0.8;
  font-style: normal;
}

.SumoSelect {
  display: block;
  width: 100%;
}

.SumoSelect.open .search-txt {
  font-weight: 500;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: var(--border-color);
  height: 43px;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  box-shadow: none;
  border-color: var(--text-light);
}

.SumoSelect.open > .optWrapper {
  top: 43px;
}

.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font2);
  border-color: #e3e3e3;
  height: 40px;
  align-content: center;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--text-light);
  box-shadow: none;
}

.logo {
  max-width: 250px;
  width: auto;
  height: auto;
}

.logo.dark {
  display: none;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: 0.5s;
  background: white;
}

header.stricky-fixed .top-bar {
  margin-top: -45px;
}

header.stricky-fixed {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

header:not(.stricky-fixed) .logo {
  display: none;
}
header:not(.stricky-fixed) .logo.dark {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.top-bar {
  background-color: var(--pri);
  transition: 0.5s;
}

.top-bar p {
  margin: 0;
  color: var(--off-white);
  font-size: 14px;
}

.top-bar p a {
  color: var(--white);
  font-weight: 500;
}

.top-bar p a:hover {
  color: var(--sec);
}

.top-bar svg {
  color: var(--off-white);
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.search-bx {
  display: flex;
  align-items: center;
}
.search-bx input {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: white;
  height: 45px;
}

.search-bx input::placeholder {
  color: white;
  opacity: 0.5;
}

.search-bx button {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: white;
  padding: 5px 8px;
}

.search-bx button:hover {
  color: var(--pri);
}

header.stricky-fixed .menubar {
  padding-block: 0;
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--pri);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 22px 11px;
  display: block;
  color: var(--text-color);
  transition: all 0.2s ease;
  font-size: 15px;
  font-family: var(--font2);
  background: transparent;
  font-weight: 600;
  /* text-transform: uppercase; */
}

.navigation .menu > ul > li.active > a,
.navigation .menu > ul > li:hover > a {
  color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul li ul.ls-dropdown li:last-child {
  border: 0;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown li ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: 285px;
  display: none;
  z-index: 99999;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navigation .menu ul li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  transition: all 0.3s ease;
  width: max-content;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li:last-child a:after {
  display: none;
}

.navigation .menu ul li ul.ls-dropdown li a:hover {
  color: white;
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover a {
  color: white;
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: #fff;
  background: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: var(--text-color);
  font-size: 14px;
  padding: 7px 13px;
  position: relative;
  display: block;
  text-transform: capitalize;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--text-color);
}

.navigation ul li.ls-submenu a button svg {
  width: 14px;
  height: 14px;
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--pri);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: #242424;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #333;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: #fff;
}

.navigation .navbar {
  display: none;
  padding: 12px 0;
  margin: 0;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li ul.ls-dropdown {
  position: absolute;
  min-width: 190px;
  width: max-content;
  max-width: 390px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
}

.navigation .menu ul > li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

/* ################### main ###################### */

main {
  padding-top: 45px;
}
main img {
  aspect-ratio: 1920 / 870;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
  transition: 0.5s;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 52%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--pri);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 15px;
    width: 15px;
  }

  .carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
  }
}

.swiper_wrap {
  position: relative;
}

.cate-next,
.cate-prev {
  width: 45px;
  height: 45px;
  background-color: #fdfff8;
  border: 1px solid var(--border-color);
  border-radius: 100%;
  color: var(--para-color);
  align-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.cate-prev {
  right: 50px;
}

.cate-next svg,
.cate-prev svg {
  width: 25px;
  height: 25px;
}

.cate-next:hover,
.cate-prev:hover {
  background-color: var(--pri);
  color: var(--white);
}

.lead-sure-section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-sec {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 100%
  ) !important;
  background-color: var(--pri) !important;
}

.bg-pri {
  background-color: var(--pri) !important ;
  align-content: center;
  color: var(--off-white);
}

.bg-pri.content-sec h1,
.bg-pri.content-sec h2,
.bg-pri.content-sec h3,
.bg-pri.content-sec h4,
.bg-pri.content-sec p,
.bg-pri.content-sec ul li {
  color: white;
}

.bg-pri.content-sec p,
.bg-pri.content-sec ul li {
  opacity: 0.8;
}

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

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

.abt-sec .cou-bx {
  text-align: center;
  background-color: var(--off-white);
  border-radius: 10px;
  padding: 20px 30px;
  color: var(--text-color);
}

.abt-sec .cou-bx .tt {
  font-weight: 600;
  font-size: 25px;
}

.abt-sec .cou-bx .tt .odometer {
  font-size: 50px;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font);
}

.abt-sec .cou-bx p {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0;
}

.abt-sec .cou-bx.dark,
.abt-sec .cou-bx.dark p {
  background-color: var(--pri);
  color: white;
}

.abt-sec .img-bx img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.read-mr {
  font-size: 0.85em;
  color: var(--pri);
  font-weight: 400;
  transition: 0.2s;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: 0;
}

.read-mr.text-decoration:hover {
  text-decoration: underline;
}

.read-mr:hover {
  color: var(--sec);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 10px;
}

.cate-bx {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.cate-bx .img-bx {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.cate-bx .img-bx img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cate-bx .img-bx:hover img {
  transform: scale(1.1);
}

.cate-bx .tx-bx {
  padding: 20px;
}

.cate-bx .tx-bx .tt {
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--font2);
}

.cate-bx .tx-bx .tt a {
  color: var(--text-color);
  font-family: var(--font);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cate-bx:hover .tx-bx .tt a {
  color: var(--pri);
}

.cate-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
  margin-bottom: 15px;
}

.cate-bx .tx-bx li {
  font-size: 14px;
  margin-bottom: 0;
}

.con-feat-bx {
  background-color: var(--black);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: 0.2s ease;
}

.con-feat-bx:hover {
  transform: scale(1.02);
}

.con-feat-bx svg {
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: var(--sec);
}

.con-feat-bx p {
  margin-bottom: 0;
  color: var(--off-white);
}

.con-feat-bx .tt {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.ceo-bx {
  background: url(../images/banner/10.webp);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 60px;
  border-radius: 12px;
}

.ceo-bx.bg-pri {
  background: var(--pri);
}

.ceo-bx .img-bx {
  text-align: center;
}
.ceo-bx .img-bx img {
  border-radius: 10px;
  margin-bottom: 10px;
}

.ceo-bx .img-bx .tt {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}

.sevice-bx {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sevice-bx .icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  align-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: var(--liner);
  background-color: var(--pri);
  color: white;
}

.sevice-bx .icon img {
  filter: brightness(0) invert(1);
  aspect-ratio: 1 / 1;
}

.sevice-bx .tx-bx .tt {
  display: block;
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 5px;
}

.sevice-bx .tx-bx p {
  color: var(--para-color);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

.testi-bx {
  text-align: center;
  height: 100%;
}

.testi-bx .tx-bx {
  background: #ffffff;
  /* font-size: 16px; */
  /* font-family: "Georgia"; */
  color: var(--para-color);
  line-height: 1.6;
  text-align: left;
  border: none;
  margin-bottom: 40px;
  height: calc(100% - 96px);
  padding: 30px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}

.testi-bx .tx-bx::before {
  content: open-quote;
  display: block;
  font-size: 130px;
  font-family: Georgia, Times, "Times New Roman", serif;
  color: var(--sec);
  opacity: 0.2;
  position: absolute;
  left: 15px;
  top: -30px;
  z-index: -1;
}

.testi-bx .tx-bx::after {
  content: close-quote;
  font-size: 0;
  display: block;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 20px solid #fff;
  border-bottom: 0;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.testi-bx .tx-bx:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.testi-bx .name {
  color: var(--pri);
  font-size: 17px;
  font-weight: 600;
}

.testi-bx p {
  margin-bottom: 0;
}

.bg-pri .content-sec h1,
.bg-pri .content-sec h2,
.bg-pri .content-sec h3,
.bg-pri .content-sec h4,
.bg-pri .content-sec p,
.bg-pri .content-sec li {
  color: white;
}

.blog-bx {
  background-color: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--off-white);
}

.blog-bx .img-bx {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.blog-bx .img-bx .label {
  background-color: var(--sec);
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  font-weight: 600;
}

.blog-bx .img-bx img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-bx .img-bx:hover img {
  transform: scale(1.03);
}

.blog-bx .tx-bx {
  padding: 25px;
}

.blog-bx.blog-card {
  display: flex;
  transition: 0.2s ease;
}

.blog-bx.blog-card:hover {
  transform: scale(1.03);
}

.blog-bx.blog-card .img-bx,
.blog-bx.blog-card .img-bx img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100px;
  min-width: 100px;
}

.blog-bx.blog-card .tx-bx {
  align-content: center;
  padding: 15px;
  flex-grow: 1;
}

.blog-bx.blog-card .tx-bx .tt a {
  font-size: 16px;
  margin-bottom: 3px;
}

.blog-sec .main-tt {
  padding-left: 13px;
  padding-block: 3px;
  font-weight: 700;
  border-left: 5px solid var(--pri);
  font-size: 25px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.blog-sec .img-bx {
  margin: 20px auto;
  text-align: center;
  max-width: 700px;
}

.blog-sec .img-bx img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.blog-date {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-date li {
  line-height: 1;
  background-color: var(--off-white);
  color: var(--text-color);
  padding: 8px 10px;
  border-radius: 10px;
}

.blog-date li:first-child {
  background-color: var(--pri);
  color: white;
}

.blog-bx .tx-bx .tt a,
.blog-bx .tx-bx a.tt {
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-bx .tx-bx .tt a:hover,
.blog-bx .tx-bx a.tt:hover {
  color: var(--pri);
}

.blog-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.overview-container {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
}

.overview-container .tx-bx {
  text-align: center;
  background: var(--liner);
  background-color: var(--pri);
  border-radius: 20px;
  padding: 20px;
  color: white;
  position: relative;
}

.overview-container .tx-bx::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 100%;
  height: 3px;
  background-color: var(--pri);
  z-index: -1;
}

.overview-container .tx-bx::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 10px);
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border: 3px solid var(--pri);
  border-radius: 100%;
  z-index: 2;
}

.overview-container .right-sec .tx-bx::before {
  right: 100%;
  left: auto;
}

.overview-container .right-sec .tx-bx::after {
  right: calc(100% - 10px);
  left: auto;
}

.overview-container .tx-bx:first-child {
  margin-bottom: 30px;
}

.overview-container .tx-bx .tt {
  font-size: 20px;
  font-weight: 600;
}

.overview-container .tx-bx p {
  margin-bottom: 0;
  color: var(--off-white);
}

.overview-container .mid-sec .logo-bx {
  aspect-ratio: 1 / 1;
  max-width: 250px;
  width: 100%;
  background-color: white;
  align-content: center;
  border-radius: 100%;
  border: 10px solid var(--pri);
  padding: 12px;
  margin: 0 auto;
}

.mis-vis-sec .nav-pills .nav-link {
  background-color: var(--off-white);
  font-weight: 600;
  color: var(--text-color);
  padding: 15px 10px;
  font-size: 17px;
}

.mis-vis-sec .nav-pills .nav-link.active,
.mis-vis-sec .nav-pills .show > .nav-link {
  background-color: var(--pri);
  color: white;
}

.certificate-bx {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
  transition: 0.2s ease-in-out;
}

.certificate-bx:hover {
  transform: scale(1.02);
}

.certificate-bx .img-bx {
  aspect-ratio: 1 / 1;
}

.certificate-bx .img-bx img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.certificate-bx .tt {
  background-color: #f1f1f1;
  padding: 10px;
  line-height: 1;
  align-content: center;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.certificate-bx .tt svg {
  margin-right: 3px;
}

.gallery-bx {
  background: #fff;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 3px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-bx img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}

.gallery-bx:hover img {
  filter: blur(3px);
}

.gallery-bx.certificate-bx img,
.gallery-bx.certificate-bx {
  aspect-ratio: 164 / 235;
}

.gallery-bx img {
  max-width: 100%;
}

.gallery-bx .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-radius: 100%;
}

.gallery-bx .link-wrap svg {
  width: 20px;
  height: 20px;
}

.gallery-bx:hover .link-wrap {
  opacity: 1;
}

.gallery-bx .tt {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 45px 20px 10px;
  pointer-events: none;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  background: linear-gradient(
    to top,
    rgba(2, 20, 4, 0.75) 10%,
    rgba(0, 0, 0, 0) 70%
  );
  text-shadow: 1px 1px 5px #000;
  z-index: 2;
}

.cat-nav-img {
  background-image: url(../images/cta.webp);
  padding: 30px 25px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.cat-nav-img .tt {
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font);
}

.cat-nav-img p {
  color: var(--off-white);
  line-height: 1.3;
}

.cat-nav-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  opacity: 0.8;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.call-bx {
  background-color: var(--off-white);
  padding: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
}

.call-bx .icon svg {
  width: 45px;
  height: 45px;
  color: var(--pri);
}

.call-bx .tx-bx p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--para-color);
  line-height: 1;
}

.call-bx .tx-bx .tt {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
}

.call-bx .tx-bx .tt:hover {
  color: var(--pri);
}

.contact-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
  overflow: hidden;
  padding: 30px 25px;
}

.contact-bx .head-sec {
  margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
  font-size: 23px;
}

.contact-bx .head-sec .tt::before {
  top: 40px;
}

.contact-bx .main-btn {
  padding: 13px 15px;
  font-size: 15px;
}

.contact-bx .con-bx {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.contact-bx .con-bx .ic-bx {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.contact-bx .con-bx .ic-bx svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
  color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font2);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 500;
}

.contact-bx .con-bx a:hover {
  color: var(--pri);
}

.map-bx {
  width: 100%;
  display: block;
}

.you_may {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
  background-color: var(--pri);
  border-radius: 10px;
  padding: 10px 15px;
}

.pr-li {
  border: 1px solid var(--off-white);
  transition: 0.2s;
  background: white;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.pr-li:hover {
  border: 1px solid var(--border-color);
}

.pr-li .img_bx {
  padding: 0;
  border-right: 1px solid var(--off-white);
  height: 100%;
}

.pr-li:hover .img_bx {
  border-color: var(--border-color);
}

.pr-li .img_bx img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.pr-li .g_100 .img_bx {
  border: 0;
}

.pr-li .tx-bx {
  padding: 15px 20px;
}

.grid.pr_view .pr-li .tx-bx {
  padding-top: 0;
}

.pr-li .tx-bx .title {
  color: var(--pri);
  padding: 0;
  text-align: left;
  border-bottom: 1px solid var(--off-white);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.pr-li:hover .tx-bx .title {
  border-color: var(--border-color);
}

.grid.pr_view .pr-li .tx-bx .title {
  text-align: center;
  border: none;
  margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
  text-align: center;
}

.pr-li .tx-bx .title a {
  font-size: 20px;
  color: var(--black);
  transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
  color: var(--pri);
}

.pr-li .tx-bx .info {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 0px;
}

.pr-li .tx-bx .info table {
  width: 100%;
  overflow: hidden;
}

.pr-li .tx-bx .info table thead {
  background-color: var(--pri);
  color: white;
  text-align: center;
}

.grid.pr_view .pr-li .tx-bx .info {
  display: none;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.pr-li .bt_bx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.multi-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.multi-imgs .imgs {
  border: 1px solid #e3e3e3;
  width: 55px;
  height: 55px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.multi-imgs .imgs.youTube a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
  width: 30px;
  height: 30px;
  color: white;
}

.multi-imgs .imgs.active {
  border: 1px solid var(--pri);
}

.multi-imgs .imgs img {
  object-fit: contain;
  object-position: center;
}

.productBrochureandvideo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #cdcdcd;
  padding: 5px 8px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  color: var(--text-color);
  border-radius: 6px;
}

.productBrochureandvideo a svg {
  color: #b90000;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.productBrochureandvideo a:hover {
  color: #444;
  border: 1px dashed #444;
}

.v-btn svg {
  width: 42px;
}

.content-sec table {
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.content-sec table strong,
.content-sec table b {
  font-weight: 600;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #c3c3c3;
  border-style: solid;
  border-width: 1px;
  padding: 8px 10px;
  font-size: 14px;
}

th {
  color: var(--text-color);
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clientSlider .swiper-slide {
  width: auto;
}

.clients-bx img {
  height: 70px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
}

.custom-from-row {
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 10px;
}

.custom-from-row .form-control {
  border-radius: 5px;
  height: 42px;
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  box-shadow: none !important;
}

.custom-from-row textarea {
  padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
  height: 42px;
}

.custom-from-row .main-btn {
  padding-block: 14px;
  font-size: 15px;
}

.breadcum-sec {
  background: url(https://trusteyman.com/wp-content/uploads/2018/06/hvac-chiller.jpeg);
  background-position: center;
  padding: 190px 0 80px;
  background-size: cover;
  position: relative;
  z-index: 1;
  font-family: var(--font);
}

.breadcum-sec.breadcum-sec2 {
  background: var(--off-white);
  padding: 8px 0;
}

.breadcum-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgb(51 71 107 / 85%),
    rgba(23, 50, 88, 0.2)
  );
  z-index: -1;
  transition: 0.3s ease-in-out;
  backdrop-filter: blur(2px);
}

.breadcum-sec.breadcum-sec2::before {
  content: none;
}

.breadcum-sec .main-tt {
  font-size: 27px;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.breadcum-sec .main-tt span {
  color: var(--pri);
}

.breadcum-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4px 20px;
  flex-wrap: wrap;
}

.breadcum-sec ul li {
  color: white;
  font-weight: 600;
  font-size: 13px;
  position: relative;
  font-family: var(--font2);
}

.breadcum-sec.breadcum-sec2 ul li {
  color: var(--sec);
  font-size: 14px;
}

.breadcum-sec ul li::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
  position: absolute;
  top: -1px;
  right: -19px;
  width: 20px;
  height: 20px;
}

.breadcum-sec.breadcum-sec2 ul li::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="%23333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
}

.breadcum-sec ul li:last-child:before {
  content: none;
}

.breadcum-sec ul li a {
  color: #ffffffcc;
}

.breadcum-sec.breadcum-sec2 ul li a {
  color: var(--text-color);
}

.breadcum-sec ul li a:hover {
  color: var(--pri);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
  color: var(--pri);
}

.abt-img-bx {
  float: right;
  max-width: 540px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  /* border-radius: 4px; */
  overflow: hidden;
}

.cate-img {
  max-width: 450px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cate-img.left {
  float: left;
  margin-right: 30px;
  margin-left: 0;
}

.cate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-sec .nav-pills .nav-link {
  background-color: white;
  color: var(--text-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  /* border-left: 3px solid var(--pri); */
  padding: 12px 16px;
  text-align: left;
  font-size: 16px;
}

.faq-sec .nav-pills .nav-link:hover {
  color: var(--pri);
}

.faq-sec .nav-pills .nav-link.active,
.faq-sec .nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--pri);
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent;
  font-weight: 500;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 16px;
  padding: 0 0 0;
  padding-right: 59px;
  font-family: var(--font);
  border-radius: 0 !important;
}

.accordion-body {
  line-height: 1.7;
  font-size: 14px;
  color: var(--para-color);
  padding: 11px 15px;
  background-color: var(--off-white);
  margin-top: 10px;
  border-radius: 10px;
}

.accordion-button::after {
  position: absolute;
  right: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: var(--pri);
  background-size: 15px;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-plus-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/> </svg>');
}

.accordion-button::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: 59px;
  top: 0;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--text-color);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-dash-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8"/> </svg>');
  background-color: var(--sec);
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

.business-enq {
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 14px;
  padding: 5px;
  padding-right: 15px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-weight: 400;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 130px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

.error {
  font-size: 15px;
  color: red;
}

.modal-header {
  padding: 0;
  padding-inline: 20px;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  /* border-bottom: 1px solid #e3e3e3; */
}

.modal-header.modal-header2 {
  background: var(--liner);
  background-color: var(--pri);
  color: white;
  padding-block: 12px;
}

.modal-header.modal-header2 .main-tt {
  color: white;
}

.modal-content {
  background: var(--off-white);
  /* border-radius: 0; */
  border: 0;
}

.modal-header.modal-header2 .btn-close {
  background-image: 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 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

.modal-body {
  padding: 13px 18px 20px;
}

.modal-content .main-tt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
  margin-bottom: 15px;
}

.btn-close {
  float: right;
  box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
  box-shadow: none;
}

.pop-img {
  aspect-ratio: 1 / 1;
}

.pop-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec .tt,
.cmTitle {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 700;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--font);
}

.cmTitle {
  color: var(--pri);
  font-size: 18px;
  margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec .tt {
  font-size: 22px;
  color: var(--text-color);
}

.content-sec ul,
.content-sec ol {
  padding-left: 20px;
  margin: 0;
  margin-bottom: 10px;
}

.content-sec p,
.content-sec li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font2);
  font-weight: 400;
}

.content-sec li {
  margin-bottom: 3px;
  position: relative;
}

.content-sec li a {
  display: inline;
  color: var(--text-color);
}

.content-sec table {
  width: -webkit-fill-available;
  margin-bottom: 10px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.content-sec table p {
  margin-bottom: 0;
  color: var(--para-color);
  font-size: 14px;
}

.content-sec table tr:nth-child(even) {
  background-color: #f8f8f8;
  color: var(--para-color);
}

.content-sec table tr:nth-child(odd) {
  background-color: var(--white);
  color: var(--para-color);
}

.content-sec table th {
  background-color: var(--pri);
  color: #fff;
}

ul.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;
  font-weight: 300;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--off-white);
}

ul.footer-menu-list li a:hover {
  color: var(--sec);
  opacity: 1;
}

ul.footer-menu-list li a::before {
  content: "|";
  padding: 0;
  font-size: 13px;
  position: absolute;
  right: -9px;
  top: 1px;
  color: var(--white);
  opacity: 0.8;
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

footer {
  overflow: hidden;
  padding: 60px 0 15px;
  position: relative;
  z-index: 1;
  background-color: var(--text-color);
}

.ft-bx {
  position: relative;
  z-index: 1;
}

.ft-bx .con-bx {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
  min-width: 17px;
  width: 17px;
  height: 17px;
  color: var(--sec);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0px;
}

.ft-bx .con-bx p strong {
  font-weight: 700;
}

.ft-bx .con-bx a {
  font-weight: 700;
}

.ft-bx .con-bx a:hover {
  color: var(--sec);
  opacity: 1;
}

.ft-bx .ft-tt {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative;
}

.ft-bx p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.ft-bx ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ft-bx ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  transition: 0.1s;
  display: inline-block;
  font-weight: 500;
}

.ft-bx ul li a:hover {
  color: var(--sec);
  opacity: 1;
}

.ft-bx ul.social {
  display: flex;
  gap: 7px;
  justify-content: start;
}

.ft-bx ul.social li a {
  background-color: var(--white);
  width: 38px;
  height: 38px;
  color: var(--pri);
  border-radius: 5px;
  align-content: center;
  text-align: center;
  line-height: 1;
  opacity: 1;
}

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--sec);
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background: var(--liner);
  background-color: #000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.instagram a {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white;
  border: 0;
}

.contactBx-container {
  background-color: var(--off-white);
  padding: 30px;
  border: 1px solid var(--off-white);
  height: 100%;
  border-radius: 15px;
}

.contactBx-container .form-control,
.contactBx-container .iti--allow-dropdown .iti__flag-container,
.contactBx-container .iti--separate-dial-code .iti__flag-container {
  height: 52px;
}

.contactBx-container textarea.form-control {
  min-height: 150px;
}

.ft-bx ul.social li a:hover {
  /* border-color: var(--sec); */
  background-color: var(--sec);
  color: white;
}

.copyright {
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright svg {
  color: var(--sec);
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 13px;
}

.copyright p a {
  color: rgba(255, 255, 255, 0.6);
  display: inline;
  font-weight: 600;
}

.copyright p a:hover {
  color: var(--sec);
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
  color: var(--white);
  font-size: 18px;
  text-transform: capitalize;
}

footer .content-sec p,
footer .content-sec ul li {
  color: var(--off-white);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

.sitemap {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li {
  list-style: none !important;
  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
  padding: 0px 0px 0px 15px;
  margin-bottom: 5px;
  font-family: var(--font2);
  color: var(--text-color);
  font-weight: 400;
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li a {
  color: var(--text-color);
  font-size: 15px;
  padding-bottom: 5px;
  display: inline-block;
}

.sitemap li a:hover {
  color: var(--pri);
}

.market-sec {
  padding: 60px 0;
  font-family: var(--font2);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
  font-size: 25px;
  color: var(--text-color);
  line-height: 26px;
  margin: 20px 0 15px;
  font-weight: 600;
}

.market-sec h2,
.market-sec h3 {
  font-size: 25px;
  font-weight: 600;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: var(--off-white);
  color: var(--text-color);
  font-size: 15px;
  transition: 0.2s ease-in-out;
  border-radius: 10px;
}

.market-sec .market-bx:hover {
  background-color: var(--pri);
  color: white;
}

.expend-content-sec {
  max-height: 460px; /* collapsed height */
  overflow: hidden;
}

.expend-content-sec.expanded {
  overflow: unset;
  max-height: 10000px !important;
}

.expend-content-sec.expanded::-webkit-scrollbar {
  width: 5px;
}

.expend-content-sec.expanded::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.read-toggle {
  display: inline-block;
  color: currentColor;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  user-select: none;
  font-size: 0.9em;
}

.read-toggle:hover {
  opacity: 0.8;
}

.abt-vid-bx,
.reels-vid {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.abt-vid-bx iframe,
.reels-vid iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  overflow: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: 50% 50%;
}

.youtube-player .youtube-thumbnail {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}

.youtube-player img,
.youtube-player iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  transform: scale(1.01);
}

.youtube-player .play {
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  position: absolute;
  background: url(../images/icon/play-1.png) no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  /* animation: 1.25s cubic-bezier(.66, 0, 0, 1) infinite pulse; */
  transition: 0.3s ease;
}

.youtube-player:hover .play {
  animation: none;
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);
  }
}

.youtube-player .tt {
  font-size: 14px;
  margin-top: 10px;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
}

.youtube-player img {
  width: 100%;
}

.reels-vid iframe,
.youtube-player.reel-player img {
  aspect-ratio: 35 / 62;
}

.mySwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.4;
}

.project-details-container img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  border-radius: 10px;
}

.mySwiper .swiper-slide {
  height: auto !important;
  cursor: pointer;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec h6 {
  scroll-margin-top: 90px;
}

.table-of-con {
  border-radius: 10px;
  background-color: var(--off-white);
  padding: 25px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  margin-block: 30px;
}

.table-of-con .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.table-of-con ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.table-of-con ul li {
  cursor: pointer;
  color: var(--para-color);
}

.table-of-con li:hover {
  text-decoration: underline;
}

.glow {
  transform-origin: center;
  animation: glowEffect 1s ease-in-out;
  animation-delay: 600ms;
}

@keyframes glowEffect {
  0% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }
  50% {
    background-color: rgba(255, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  }
  100% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }
}

.nav-cate-style.nav-pills .nav-link {
  background-color: var(--text-light);
  color: white;
  font-size: 14px;
  padding: 8px 12px;
}

.nav-cate-style.nav-pills .nav-link.active {
  background-color: var(--pri);
  color: white;
}