:root {
  --font: "DynaPuff", sans-serif;
  --font2: "Open Sans", sans-serif;
  --liner: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  --pri: #365ba8;
  --sec: #f4006b;
  --sky: #00c0f1;
  --yellow: #ffdf39;
  --orange: #ff7f2d;
  --green: #12746e;
  --text-color: #12161d;
  --text-light: #8c8c8c;
  --para-color: #2b2b2b;
  --border-color: #ececec;
  --white: #fff;
  --off-white: #fbfbfb;
  --black: #111;
}

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: 14px;
  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: 1000px;
  margin: 0 auto 35px;
}

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

.head-sec .sub-tt {
  font-size: 16px;
  font-weight: 400;
  color: var(--pri);
  align-content: center;
  font-family: var(--font);
  margin-bottom: 0px;
  display: inline-block;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 3px;
  position: relative;
  text-transform: capitalize;
}

.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.9;
}

.w-btn {
  padding: 11px 15px;
  border-radius: 4px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  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(--orange);
  background-color: var(--orange);
  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: 20px;
  line-height: 1;
}

.main-btn.sm {
  padding: 7px 15px;
  font-size: 13px;
  gap: 2px;
}

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

.main-btn.green {
  border-color: var(--green);
  background: var(--green);
}

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

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

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

.main-btn.sec {
  border-color: var(--sec);
  background: var(--sec);
}

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

.main-btn.sky {
  border-color: var(--sky);
  background: var(--sky);
}

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

.main-btn.yellow {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--text-color);
}

.main-btn.yellow:hover {
  background-color: var(--text-color);
  color: var(--yellow);
}

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

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

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

.social li a:hover {
  color: var(--sec);
}

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

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

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

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

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;
}

.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.9;
  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: 13px;
}

.form-control,
.form-select,
.SumoSelect>.CaptionCont {
  font-weight: 400;
  border-radius: 5px;
  font-size: 15px;
  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: 130px;
  width: auto;
  height: auto;
}

.menubar {
  position: relative;
}

header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}

header.stricky-fixed .top-bar {
  display: none;
}

header.stricky-fixed .menubar {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 600ms;
  animation-fill-mode: both;
}

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

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

.top-bar {
  background-color: var(--white);
  padding: 7px 0;
}

.top-bar p {
  margin: 0;
  color: var(--text-color);
}

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

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

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

.call-now {
  display: flex;
  align-items: center;
}

.call-now .icon-bx {
  min-width: 38px;
  margin-right: 8px;
  color: var(--pri);
}

.call-now .con-bx {
  text-align: left;
}

.call-now .con-bx span {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-light);
}

.call-now .con-bx span a {
  font-size: 15px;
  font-weight: bold;
  color: var(--sec);
  margin-bottom: 1px;
}

.call-now .con-bx span a:hover {
  color: var(--pri);
}

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

.menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  line-height: 1.2;
  position: relative;
}

.menu-list a .icon {
  display: block;
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform .2s ease;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.dropdown-icon svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ################### main ###################### */
main {
  margin-top: 18px;
}

main,
main img {
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}

.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);
}

.p-section {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.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.9;
}

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

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

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

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

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

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

.gradiant {
  background: conic-gradient(#00b5f1 0% 25%, #194b9b 25% 50%, #ffd400 50% 75%, #e2005b 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.read-mr {
  font-size: 0.9em;
  color: var(--orange);
  font-weight: 500;
  transition: 0.2s;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  text-decoration-style: wavy;
}

.read-mr svg {
  width: 20px;
  height: 20px;
}

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

.abt-sec img.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
}

.pro-bx {
  border: 1px solid #ffe9db;
  border-radius: 15px;
  background-color: #fff3e7;
  padding: 15px;
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
}

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

.pro-bx .img-bx {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ffe9db;
  margin-bottom: 15px;
}

.pro-bx .tx-bx .tt {
  margin-bottom: 3px;
}

.pro-bx .tx-bx .tt a {
  color: var(--pri);
  font-family: var(--font);
  font-size: 18px;
}

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

.cta-sec {
  padding: 60px 0;
  background-color: var(--green);
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-section .img-bx .main-img {
  filter: drop-shadow(-15px -5px 0px var(--orange));
}

.count-bx {
  background-color: var(--green);
  color: white;
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.count-bx svg {
  width: 65px;
  min-width: 65px;
  height: 65px;
}

.count-bx .tt {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font);
  line-height: 1;
}

.count-bx .tt .odometer {
  padding-right: 5px;
}

.count-bx p {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.enq-sec {
  background: url(../images/bg/shape-2-5.png) no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--pri);
}

.enq-sec .img-bx img {
  filter: drop-shadow(17px -3px 0px var(--orange));
}

.enq-sec .form-control,
.enq-sec .iti--allow-dropdown .iti__flag-container,
.enq-sec .iti--separate-dial-code .iti__flag-container {
  height: 50px;
}

.blog-bx {
  padding: 20px;
}

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

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

.blog-bx .img-bx .date {
  position: absolute;
  right: 10px;
  top: 10px;
  color: white;
  background-image: url('data:image/svg+xml,<svg width="67" height="63" viewBox="0 0 67 63" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M49.0628 10.987C52.2431 0.624557 32.1691 -7.14622 31.7708 10.39C20.043 1.42119 7.12437 11.3843 17.4601 24.1386C-2.61389 21.3494 -4.00595 43.2681 6.32979 50.8413C2.15566 55.8228 9.31101 60.8044 13.286 55.4235C25.0117 67.3792 56.2181 64.5899 56.4152 51.2386C66.751 56.4198 69.9313 41.2755 60.3902 35.098C73.7071 30.7134 63.5706 19.1571 58.801 18.9574C67.7447 12.5802 52.8386 5.60609 49.0628 10.987Z" fill="%2312746e"></path> </svg>');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 18px;
  text-align: center;
  line-height: 1.2;
  font-family: var(--font);
}

.pro-bx.blog-bx .tx-bx .tt a {
  font-size: 22px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

.pro-bx.blog-bx.blog-card .tx-bx .tt a {
  font-size: 17px;
}

.blog-bx.blog-card {
  display: flex;
  padding: 0;
  align-items: center;
  gap: 15px;
}

.blog-bx.blog-card .img-bx {
  margin-bottom: 0;
  max-width: 200px;
}

.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: 25px;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-date li {
  color: var(--sec);
  line-height: 1;
}

.blog-date li:first-child {
  background-color: var(--orange);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
}

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

.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: var(--orange);
  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(--white);
}

.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: 27px;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
}

.you_may span {
  color: var(--pri);
}

.you_may::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0px;
  width: 45px;
  height: 2px;
  background: var(--pri);
}

.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: 15px;
  color: var(--text-color);
}

.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;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: var(--off-white);
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 15px;
}

.testi-sec {
  background: url(../images/bg/testimonial_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

.testi-sec .swiper-slide{
    height: auto;
}

.testimonial-item {
  background-image: url(../images/bg/testimonial.svg);
  background-repeat: no-repeat;
  padding: 30px 50px;
  align-content: center;
  display: flex;
  align-items: center;
  height: 100%;
  background-position: top center;
  background-size: cover;
  position: relative;
  z-index: 1;
  aspect-ratio: 194 / 79;
}

.testimonial-item::before {
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23f04336" class="bi bi-quote" viewBox="0 0 16 16"> <path d="M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388q0-.527.062-1.054.093-.558.31-.992t.559-.683q.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 9 7.558V11a1 1 0 0 0 1 1zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612q0-.527.062-1.054.094-.558.31-.992.217-.434.559-.683.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 3 7.558V11a1 1 0 0 0 1 1z"/> </svg>');
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-size: cover;
    position: absolute;
    bottom: 9%;
    right: 9%;
    line-height: 1;
    font-weight: 700;
    z-index: -1;
}

.testi-avatar-thumb {
  width: 89px;
  flex: 0 0 89px;
  margin-right: 30px;
}

.testi-avatar-thumb img {
  border-radius: 50%;
  border: 7px solid #f4f1ea;
}

.testi-content p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}

.testi-avatar-info .title {
  font-size: 20px;
  margin-bottom: 0px;
  font-family: var(--font);
  color: var(--orange);
}

.testi-avatar-info>span {
  display: block;
  font-size: 13px;
  color: var(--green);
  padding-right: 46px;
}

.swiper-pagination{
  position: static;
}

.swiper-pagination-bullet{
  transition: 0.2s ease;
}

.swiper-pagination-bullet-active{
  background-color: var(--pri);
  width: 30px;
  border-radius: 5px;
}

.client-sec {
  background: url(../images/bg/bg-1-1.webp) no-repeat;
  background-position: center;
  background-size: contain;
  background-color: var(--orange);
}

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

.clients-bx img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: white;
}

.enq-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../images/enq-shape.webp);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

.custom-from-row {
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  max-width: 600px;
}

.custom-from-row .form-control {
  border-radius: 5px;
  height: 45px;
  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: 45px;
}

.breadcum-sec {
  padding: 60px 0;
  padding-top: 170px;
  position: relative;
  z-index: 1;
  font-family: var(--font);
  background: linear-gradient(0deg, rgba(224, 255, 161, 1) 0%, rgba(230, 250, 200, 1) 100%);
  overflow: hidden;
}

.breadcum-sec.breadcum-sec2 {
  background: #f1f1f1;
  padding: 8px 0;
  border-bottom: 2px solid var(--border-color);
}

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

.breadcum-sec .main-tt {
  font-size: 27px;
  color: var(--text-color);
  margin-bottom: 8px;
}

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

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

.breadcum-sec ul li {
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  font-family: var(--font2);
}

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

.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="black" 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: var(--sec);
}

.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: 600px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.why-bx {
  text-align: center;
}

.why-bx svg {
  width: 50px;
  height: 50px;
  color: var(--pri);
}

.why-bx .tt {
  font-family: var(--font);
  font-size: 20px;
  color: var(--white);
  margin-block: 10px;
}

.why-bx p {
  color: var(--off-white);
}

.cate-img {
  max-width: 500px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}

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

.vidBx .imgBx {
  position: relative;
}

.vidBx .imgBx img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  outline: 0;
  transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .tx-bx .tt {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 1px;
  text-transform: capitalize;
  text-align: center;
}

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

.vidBx .tx-bx p {
  text-align: center;
}

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

.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: 0;
  border: 1px solid transparent;
}

.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);
  /* border: 1px solid var(--pri); */
}

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

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

.accordion-button {
  background: transparent;
  font-weight: 400;
  outline: 0 !important;
  font-family: var(--font);
  color: var(--text-color);
  font-size: 16px;
  padding: 5px 0;
}

.accordion-body {
  line-height: 1.5;
  font-size: 14px;
  color: var(--para-color);
  padding: 0;
  padding-bottom: 5px;
}

.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

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

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

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bc4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.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: 15px;
  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: #f5f5f5;
  border-radius: 10px;
  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;
  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: 500;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  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(--pri);
}

.content-sec ul {
  padding-left: 0;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
}

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

.content-sec ul li {
  margin-bottom: 3px;
  position: relative;
  padding-left: 20px;
}

.content-sec ul li::before {
  content: "➤";
  position: absolute;
  left: 0px;
  color: var(--pri);
  font-size: 15px;
  top: 1px;
}

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

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.9;
}

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

footer {
  overflow: hidden;
  padding: 70px 0 20px;
  position: relative;
  z-index: 1;
  background-color: var(--pri);
}

.it-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: ittranslateX2 2s infinite alternate;
}

@keyframes ittranslateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

.ft-bx .logo {
  max-width: 250px;
  max-height: 100%;
  filter: brightness(0) invert(1);
}

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

.ft-bx .con-bx .ic-bx {
  width: 40px;
  min-width: 40px;
  height: 40px;
  text-align: center;
  align-content: center;
  background-color: var(--orange);
  border-radius: 100%;
  line-height: 1;
  margin-top: 5px;
}

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

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  /* font-weight: 500; */
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 0px;
}

.ft-bx .con-bx p span {
  display: block;
  font-weight: 600;
  color: var(--orange);
}

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

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

.ft-bx p {
  color: var(--white);
  line-height: 1.6;
  opacity: 0.9;
  font-size: 15px;
  margin-bottom: 20px;
}

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

.ft-bx ul li a {
  font-size: 15px;
  color: var(--white);
  padding: 5px 0;
  transition: 0.1s;
  display: inline-block;
  /* font-weight: 500; */
  opacity: 0.9;
}

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

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

.ft-bx ul.social li a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 38px;
  height: 38px;
  color: rgb(255, 255, 255);
  border-radius: 100%;
  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(--pri);
}

.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(--white);
  padding: 30px;
  border: 1px solid var(--white);
  height: 100%;
}

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

.copyright {
  padding-top: 20px;
  margin-top: 50px;
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
}

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

.copyright p {
  color: var(--white);
  margin-bottom: 0;
  /* font-size: 15px; */
  opacity: 0.9;
}

.copyright p a {
  color: var(--white);
  display: inline;
}

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

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;
}

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

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

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

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

.expend-content-sec.expanded {
  max-height: 4000px;
  /* expanded height */
  overflow: unset;
}

.read-toggle {
  display: inline-block;
  color: var(--text-light);
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  user-select: none;
}

.read-toggle:hover {
  color: var(--text-color);
}

.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;
  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;
}

.second-content-bx .tx-bx {
  padding: 25px;
  padding-bottom: 15px;
  background-color: white;
  border: 1px solid var(--border-color);
  height: 100%;
  align-content: center;
  border-radius: 0px;
  max-height: 440px;
  overflow-y: auto;
}

.second-content-bx .img img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.rotate {
  animation: rotate2 4s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.itrotate-ani {
  animation: itrotate 3s ease-in-out infinite alternate forwards;
}

@keyframes itrotate {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.zoom {
  animation: zoom 7s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(.5);
  }
}

.moving {
  animation: moving 9s linear infinite;
}

@keyframes moving {
  0% {

    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

.abt-sec .content-sec {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

.abt-sec .content-sec::-webkit-scrollbar,
.second-content-bx .tx-bx::-webkit-scrollbar {
  background-color: transparent;
  width: 0px;
}

.abt-sec .content-sec:hover::-webkit-scrollbar,
.second-content-bx .tx-bx::-webkit-scrollbar {
  width: 5px;
}

.abt-sec .content-sec:hover::-webkit-scrollbar-thumb,
.second-content-bx .tx-bx:hover::-webkit-scrollbar-thumb {
  background-color: rgba(75, 86, 97, 0.5);
}