/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/components/components.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.service-col {
  padding: 20px 25px;
  text-align: center;
  border: 1px solid var(--text);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .service-col {
    padding: 10px 15px;
  }
}
.service-col::before {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gradient-a);
  border-radius: 0 5px 0 0;
  transition: 0.5s ease;
  z-index: -1;
}
.service-col:hover::before {
  width: 100%;
  height: 100%;
}
.service-col:hover img {
  filter: invert(1);
}
.service-col:hover p {
  color: var(--white);
}
.service-col img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  transition: 1s ease;
}
@media only screen and (max-width: 540px) {
  .service-col img {
    width: 35px;
    height: 35px;
  }
}
.service-col p {
  color: var(--black);
  line-height: 1.1;
  transition: 1s ease;
}

.summery-detail-content .col {
  --padlr: 0;
  transition: 0.5s ease;
}
.summery-detail-content .col.active .title .outer-circle {
  background: var(--gradient-a);
  border: none;
}
.summery-detail-content .col.active .title h6 {
  color: var(--black);
}
.summery-detail-content .col.active .title .ico {
  --bgcolor: var(--white);
}
.summery-detail-content .col.active .title .ico::after {
  transform: scaleY(0);
}
.summery-detail-content .col.active article {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
}
.summery-detail-content .col .title {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  padding: 10px 20px 10px 0;
  margin-left: -20px;
  gap: 20px;
  cursor: pointer;
  transition: 0.5s ease;
}
.summery-detail-content .col .title h6 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  flex: 1 1;
  color: var(--text);
  padding-right: 1rem;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col .title h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 345px) {
  .summery-detail-content .col .title h6 {
    font-size: 14px;
  }
}
.summery-detail-content .col .title .outer-circle {
  border: 1px solid var(--black);
  border-radius: 50%;
  background-color: var(--white);
  padding: 10px;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col .title .outer-circle {
    padding: 7px;
  }
}
.summery-detail-content .col .title .ico {
  flex: 0 1 auto;
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--black);
  height: var(--size);
  width: var(--size);
  position: relative;
}
.summery-detail-content .col .title .ico::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.summery-detail-content .col .title .ico::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col .title .ico {
    --size: 14px;
  }
}
.summery-detail-content .col .title .ico::before, .summery-detail-content .col .title .ico::after {
  transition: 0.5s ease;
}
.summery-detail-content .col .title .ico::before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  bottom: auto;
  height: var(--border);
  width: 100%;
}
.summery-detail-content .col .title .ico::after {
  left: calc(var(--size) / 2);
  translate: -50% 0;
  right: auto;
  width: var(--border);
  height: 100%;
}
.summery-detail-content .col article {
  position: relative;
  background: var(--white);
  border-top: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 0 0 5px 5px;
}
.summery-detail-content .col article .content-desc {
  padding: 0px 10px 0px 40px;
}
.summery-detail-content .col article .content-desc p, .summery-detail-content .col article .content-desc ul, .summery-detail-content .col article .content-desc h2, .summery-detail-content .col article .content-desc h3, .summery-detail-content .col article .content-desc h4, .summery-detail-content .col article .content-desc h5, .summery-detail-content .col article .content-desc h6 {
  margin-bottom: 16px;
}
.summery-detail-content .col article .content-desc *:not(button) {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
.summery-detail-content .col article .content-desc h1, .summery-detail-content .col article .content-desc h2, .summery-detail-content .col article .content-desc h3, .summery-detail-content .col article .content-desc h4, .summery-detail-content .col article .content-desc h5, .summery-detail-content .col article .content-desc h6, .summery-detail-content .col article .content-desc b {
  color: var(--black);
  font-weight: 500;
}
.summery-detail-content .col article .content-desc ul {
  padding-left: 20px;
}
.summery-detail-content .col article .content-desc ul li {
  list-style: none;
}
.summery-detail-content .col article .content-desc ul li::before {
  background-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col article .content-desc ul li {
    font-size: 14px;
  }
}
.summery-detail-content .col article .content-desc ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col article .content-desc p {
    font-size: 14px;
  }
}

.col-3d {
  --borderwidth: 27px;
  --bordercolor: #000;
  --borderheight: 1px;
  position: relative;
  overflow: hidden;
  padding: 0 0 var(--borderwidth) var(--borderwidth);
}
@media only screen and (max-width: 540px) {
  .col-3d {
    --borderwidth: 15px;
  }
}
.col-3d:hover .card-wrap {
  transform: translate(0, 0);
}
.col-3d:hover .card-wrap::before, .col-3d:hover .card-wrap::after {
  width: 0;
}
.col-3d:hover .card-wrap::before {
  left: 0;
}
.col-3d:hover .card-wrap::after {
  right: 0;
}
.col-3d::before, .col-3d::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--bordercolor);
  transition: 0.5s ease;
}
.col-3d::before {
  width: calc(100% - var(--borderwidth));
  height: var(--borderheight);
  top: 0;
  right: 0;
}
.col-3d::after {
  height: calc(100% - var(--borderwidth));
  width: var(--borderheight);
  top: 0;
  right: 0;
}
.col-3d .card-wrap {
  transform: translate(calc(var(--borderwidth) * -1), var(--borderwidth));
  position: relative;
  transition: 0.5s ease;
}
.col-3d .card-wrap::before, .col-3d .card-wrap::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(45deg);
  transform-origin: bottom;
  transition: 0.5s ease;
}
.col-3d .card-wrap::before {
  left: 0;
}
.col-3d .card-wrap::after {
  right: 0;
}
.col-3d .card-wrap .card {
  position: relative;
}
.col-3d .card-wrap .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(45deg);
  transform-origin: bottom;
}
.col-3d .card-wrap .card .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 8% 100%, 0% 86%, 0 0);
          clip-path: polygon(100% 0%, 100% 100%, 8% 100%, 0% 86%, 0 0);
  position: relative;
}
.col-3d .card-wrap .card .figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.col-3d .card-wrap .card .figure img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  line-height: 0;
}
.col-3d .card-wrap .card figcaption {
  position: absolute;
  bottom: 10%;
  padding: 0 40px 20px;
}
@media only screen and (max-width: 540px) {
  .col-3d .card-wrap .card figcaption {
    padding: 0 10px 20px;
  }
}
.col-3d .card-wrap .card figcaption p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.2;
  font-weight: 800;
}
@media only screen and (max-width: 540px) {
  .col-3d .card-wrap .card figcaption p {
    font-size: 16px;
  }
}

.col-3d-right {
  --borderwidth: 90px;
  --bordercolor: #000;
  --borderheight: 1px;
  position: relative;
  overflow: hidden;
  padding: 0 var(--borderwidth) var(--borderwidth) 0;
}
.col-3d-right:hover .card-wrap {
  transform: translate(0, 0);
}
.col-3d-right:hover .card-wrap::before, .col-3d-right:hover .card-wrap::after {
  width: 0;
}
.col-3d-right:hover .card-wrap::before {
  left: 0;
}
.col-3d-right:hover .card-wrap::after {
  right: 0;
}
.col-3d-right::before, .col-3d-right::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--bordercolor);
  transition: 0.5s ease;
}
.col-3d-right::before {
  width: calc(100% - var(--borderwidth));
  height: var(--borderheight);
  top: 0;
  left: 0;
}
.col-3d-right::after {
  height: calc(100% - var(--borderwidth));
  width: var(--borderheight);
  top: 0;
  left: 0;
}
.col-3d-right .card-wrap {
  transform: translate(var(--borderwidth), var(--borderwidth));
  position: relative;
  transition: 0.5s ease;
}
.col-3d-right .card-wrap::before, .col-3d-right .card-wrap::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(316deg);
  transform-origin: bottom;
  transition: 0.5s ease;
}
.col-3d-right .card-wrap::before {
  left: 0;
}
.col-3d-right .card-wrap::after {
  right: 0;
}
.col-3d-right .card-wrap .card {
  position: relative;
}
.col-3d-right .card-wrap .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(314deg);
  transform-origin: bottom;
}
.col-3d-right .card-wrap .card .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.col-3d-right .card-wrap .card .figure img, .col-3d-right .card-wrap .card .figure video {
  width: 100%;
  transition: 0.5s ease;
  line-height: 0;
}

.formComWrapper .flex {
  align-items: center;
  gap: 100px;
}
@media only screen and (max-width: 991px) {
  .formComWrapper .flex {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex {
    flex-direction: column;
    gap: 0;
  }
}
.formComWrapper .flex .colA {
  flex: 0 1 40%;
  display: flex;
  justify-content: center;
}
.formComWrapper .flex .colA .form-3d {
  width: 350px;
  height: 500px;
  --borderwidth: 54px;
}
@media only screen and (max-width: 991px) {
  .formComWrapper .flex .colA .form-3d {
    --borderwidth: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex .colA .form-3d {
    width: 200px;
    height: 400px;
  }
}
@media only screen and (max-width: 540px) {
  .formComWrapper .flex .colA .form-3d {
    width: 150px;
    height: 300px;
    --borderwidth: 40px;
  }
}
.formComWrapper .flex .colA .form-3d:hover .card-wrap::before, .formComWrapper .flex .colA .form-3d:hover .card-wrap::after {
  width: var(--borderheight);
}
.formComWrapper .flex .colA .form-3d .card-wrap, .formComWrapper .flex .colA .form-3d .card, .formComWrapper .flex .colA .form-3d .figure, .formComWrapper .flex .colA .form-3d video {
  width: 100%;
  height: 100%;
}
.formComWrapper .flex .colA .form-3d .card-wrap {
  transform: translate(var(--borderwidth), calc(var(--borderwidth) * 0.3));
}
.formComWrapper .flex .colA .form-3d .card-wrap::before, .formComWrapper .flex .colA .form-3d .card-wrap::after {
  transform: rotate(286deg);
}
.formComWrapper .flex .colA .form-3d .card-wrap .card::before {
  transform: rotate(287deg);
}
.formComWrapper .flex .colA .form-3d video {
  filter: grayscale(1);
}
.formComWrapper .flex .colB {
  flex: 1 1;
}
.formComWrapper .flex .colB .title {
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex .colB .title {
    padding: 0 0 30px;
    text-align: center;
  }
}
.formComWrapper .flex .colB .title h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  max-width: 297px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex .colB .title h2 {
    max-width: 100%;
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .formComWrapper .flex .colB .title h2 {
    font-size: 24px;
    padding: 0 15px 5px;
  }
}
.formComWrapper .flex .colB .title p {
  color: var(--black);
}

.form-grid {
  --item: 2;
  --gaplr: 20px;
  --gaptb: 20px;
  --textareaheight: 60px;
}
@media only screen and (max-width: 768px) {
  .form-grid {
    --item: 1;
  }
}
.form-grid.full_width {
  --item: 1;
}
.form-grid .btn-wrap {
  margin-top: 20px;
}
.form-grid .btn-wrap button {
  border-radius: 5px;
}

.description-section .flex {
  border-bottom: 1px solid var(--black);
}
@media only screen and (max-width: 768px) {
  .description-section .flex {
    padding: 0;
    flex-direction: column;
  }
}
.description-section .flex .colA {
  padding: 40px 50px 40px 40px;
  border-right: 1px solid var(--black);
  flex: 0 1 60%;
}
@media only screen and (max-width: 991px) {
  .description-section .flex .colA {
    padding: 30px 30px 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  .description-section .flex .colA {
    border-right: none;
    flex: 0 1 100%;
    padding: 30px;
    border-bottom: 1px solid var(--black);
  }
}
@media only screen and (max-width: 540px) {
  .description-section .flex .colA {
    padding: 20px;
  }
}
.description-section .flex .colA .content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-weight: 700;
  font-weight: normal;
  margin: 10px 0;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .description-section .flex .colA .content h1 {
    font-size: 30px;
    font-weight: bold;
  }
}
.description-section .flex .colA .content h2 {
  font-size: 34px;
  margin: 10px 0;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h2 {
    font-size: 24px;
  }
}
.description-section .flex .colA .content h3 {
  font-size: 28px;
  line-height: 1.21;
  margin: 10px 0;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h3 {
    font-size: 22px;
  }
}
.description-section .flex .colA .content h4 {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h4 {
    font-size: 20px;
  }
}
.description-section .flex .colA .content h5 {
  font-size: 20px;
  line-height: 1.3;
  margin: 10px 0;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h5 {
    font-size: 18px;
  }
}
.description-section .flex .colA .content h6 {
  font-size: 18px;
  line-height: 1.3;
  margin: 10px 0;
  font-weight: 600;
}
.description-section .flex .colA .content p, .description-section .flex .colA .content li {
  color: var(--text);
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media only screen and (max-width: 520px) {
  .description-section .flex .colA .content p, .description-section .flex .colA .content li {
    font-size: 14px;
  }
}
.description-section .flex .colA .content p b, .description-section .flex .colA .content li b {
  font-weight: 600;
  color: var(--black);
}
.description-section .flex .colA .content a {
  color: var(--black);
}
.description-section .flex .colA .content a:hover {
  text-decoration: underline;
}
.description-section .flex .colA .content ul {
  padding-left: 10px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content ul {
    margin-bottom: 10px;
    padding-left: 10px;
  }
}
.description-section .flex .colA .content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content ul li {
    padding-left: 20px;
  }
}
.description-section .flex .colA .content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.description-section .flex .colA .content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}
@media only screen and (max-width: 520px) {
  .description-section .flex .colA .content ul li::before {
    width: 6px;
  }
}
.description-section .flex .colA .content p {
  padding-bottom: 15px;
  color: var(--black);
}
.description-section .flex .colB {
  padding: 60px 50px;
  flex: 1 1;
}
@media only screen and (max-width: 991px) {
  .description-section .flex .colB {
    padding: 40px 0 40px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .description-section .flex .colB {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 540px) {
  .description-section .flex .colB {
    padding: 30px 20px;
  }
}
.description-section .flex .colB .heading {
  text-align: center;
  padding-bottom: 20px;
}
.description-section .flex .colB .heading h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .description-section .flex .colB .heading h2 {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.description-section .flex .colB .heading p {
  color: var(--text);
}
.description-section .flex .colB .DescForm {
  --item: 1;
}
.description-section .flex .colB .DescForm .btn-wrap {
  text-align: center;
}

.sol-itemCard {
  padding: 50px 30px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .sol-itemCard {
    padding: 40px 20px;
  }
}
.sol-itemCard:hover .hover-item {
  transform: translateY(0);
}
.sol-itemCard h5 {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
}
.sol-itemCard figure {
  width: 100%;
  height: 100%;
}
.sol-itemCard figure img {
  object-fit: contain;
}
.sol-itemCard .hover-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-a);
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 30px;
  transform: translateY(100%);
  transition: 0.7s ease;
}
@media only screen and (max-width: 991px) {
  .sol-itemCard .hover-item {
    padding: 40px 20px;
  }
}
.sol-itemCard .hover-item h5 {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
  color: var(--white);
}
.sol-itemCard .hover-item p {
  color: var(--white);
  text-align: center;
}
.sol-itemCard .hover-item .btn-btn {
  margin: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.sol-itemCard .hover-item .btn-btn:hover span {
  transform: translate(0);
}
.sol-itemCard .hover-item .btn-btn::before {
  background-color: var(--white);
}
.sol-itemCard .hover-item .btn-btn span {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--white);
  transform: translate(-4px, -3px);
}

.additional-slider .swiper-slide.bordernone .sol-itemCard {
  border-right: none;
}

.additional-services .container {
  padding-bottom: 0;
}
.additional-services .heading {
  position: relative;
  border-bottom: 1px solid var(--black);
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .additional-services .heading {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 540px) {
  .additional-services .heading {
    padding-bottom: 80px;
  }
}
.additional-services .heading h2 {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .additional-services .heading h2 {
    max-width: 370px;
  }
}
@media only screen and (max-width: 540px) {
  .additional-services .heading h2 {
    max-width: 280px;
  }
}
.additional-services .heading .swiper-nav {
  position: absolute;
  right: 5%;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .additional-services .heading .swiper-nav {
    top: 60%;
  }
}
@media only screen and (max-width: 540px) {
  .additional-services .heading .swiper-nav {
    right: 50%;
    transform: translateX(50%);
  }
}
.additional-services .heading .swiper-nav button {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.additional-services .heading .swiper-nav button svg {
  vertical-align: middle;
  width: 30px;
  height: 30px;
}

.service-item {
  background-color: #F5F5F5;
  border: 1px solid var(--text);
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  gap: 20px;
}
.service-item img {
  width: 45px;
  height: 45px;
}
.service-item .content {
  text-align: left;
}
.service-item .content h6 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}
.service-item .content p {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.7px;
  color: var(--text);
  padding-bottom: 15px;
}
.service-item .content .more_a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.service-item .content .more_a svg {
  transition: 0.5s ease;
}
.service-item .content .more_a:hover svg {
  transform: translateX(5px);
}

.modal1_1 {
  position: fixed;
  z-index: 99999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7411764706);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center1_1 {
  z-index: 1000;
  padding: 30px;
  border-radius: 10px;
  filter: alpha(opacity=100);
  text-align: center;
}
.center1_1 p {
  font-size: 12px;
  line-height: 20px;
  margin-top: 18px;
  text-transform: uppercase;
}
.center1_1 img {
  width: 100%;
  max-width: 120px;
}/*# sourceMappingURL=components.css.map */
/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/home/home.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.home-secA {
  position: relative;
}
.home-secA::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secA::before {
    display: none;
  }
}
.home-secA .flex {
  padding-bottom: 70px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--black);
}
@media only screen and (max-width: 768px) {
  .home-secA .flex {
    padding: 30px 0 60px;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex {
    padding: 20px 0 0;
    gap: 20px;
    border-bottom: none;
  }
}
.home-secA .flex .colA, .home-secA .flex .colB {
  flex: 1 1;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-secA .flex .colA {
    padding: 0 25px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex .colA {
    text-align: center;
  }
}
.home-secA .flex .colA h2 {
  font-size: 48px;
  line-height: 55px;
  padding-bottom: 10px;
  max-width: 595px;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex .colA h2 {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .flex .colA h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex .colA h2 {
    font-size: 24px;
  }
}
.home-secA .flex .colA p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 473px;
  margin-bottom: 40px;
  letter-spacing: 0.2px;
  color: var(--black);
}
@media only screen and (max-width: 991px) {
  .home-secA .flex .colA p {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex .colA p {
    margin-bottom: 20px;
  }
}
.home-secA .flex .colA .btn-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.home-secA .flex .colB .home_3d {
  width: 100%;
}
.home-secA .flex .colB .home_3d.hero_sec {
  height: 430px;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex .colB .home_3d.hero_sec {
    height: 350px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .flex .colB .home_3d.hero_sec {
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .flex .colB .home_3d {
    --borderwidth: 0;
    --bordercolor: none;
    --borderheight: 0;
  }
}
.home-secA .flex .colB .home_3d .card-wrap {
  transform: translate(-27px, 27px);
}
@media only screen and (max-width: 768px) {
  .home-secA .flex .colB .home_3d .card-wrap {
    transform: translate(0);
  }
}
.home-secA .flex .colB .home_3d .card-wrap::before, .home-secA .flex .colB .home_3d .card-wrap::after {
  width: var(--borderheight);
}
.home-secA .flex .colB .home_3d .card-wrap, .home-secA .flex .colB .home_3d .card, .home-secA .flex .colB .home_3d .figure, .home-secA .flex .colB .home_3d video {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .home-secA .flex .colB .home_3d .figure {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.home-secA .flex .colB .home_3d .figure::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 540px) {
  .home-secA .flex .colB .home_3d .figure::after {
    display: none;
  }
}
.home-secA .flex .colB .home_3d .figure::before {
  display: none;
}

.home-secB {
  position: relative;
}
.home-secB::before {
  content: "";
  position: absolute;
  top: 5%;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media only screen and (max-width: 768px) {
  .home-secB::before {
    top: 3%;
  }
}
.home-secB .container {
  padding-bottom: 0;
}
.home-secB .container .heading {
  padding: 30px 0 50px;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secB .container .heading {
    max-width: 350px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .container .heading {
    padding: 30px 0;
    max-width: 290px;
  }
}
.home-secB .container .solutions-grid {
  border-top: 1px solid #000;
}
@media only screen and (max-width: 991px) {
  .home-secB .container .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .container .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-secB .container .solutions-grid .sol-item {
  padding: 50px 30px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-secB .container .solutions-grid .sol-item {
    padding: 25px 15px;
  }
}
.home-secB .container .solutions-grid .sol-item:nth-child(4n) {
  border-right: 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .container .solutions-grid .sol-item:nth-child(4n) {
    border-right: 1px solid #000;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .container .solutions-grid .sol-item:nth-child(4n) {
    border-right: none;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .container .solutions-grid .sol-item:nth-child(3n) {
    border-right: none;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .container .solutions-grid .sol-item:nth-child(2n) {
    border-right: 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .container .solutions-grid .sol-item:nth-child(3) {
    border-right: 1px solid #000;
  }
}
.home-secB .container .solutions-grid .sol-item:hover .hover-item {
  transform: translateY(0);
}
.home-secB .container .solutions-grid .sol-item h5 {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 540px) {
  .home-secB .container .solutions-grid .sol-item h5 {
    margin: 0 auto 10px;
  }
}
.home-secB .container .solutions-grid .sol-item figure {
  width: 100%;
  height: 100%;
}
.home-secB .container .solutions-grid .sol-item figure img {
  object-fit: contain;
}
.home-secB .container .solutions-grid .sol-item .hover-item {
  background: var(--gradient-a);
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 30px;
  transform: translateY(100%);
  transition: 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .home-secB .container .solutions-grid .sol-item .hover-item {
    display: none;
  }
}
.home-secB .container .solutions-grid .sol-item .hover-item h5 {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .home-secB .container .solutions-grid .sol-item .hover-item h5 {
    margin: 0 auto 10px;
    font-size: 20px;
  }
}
.home-secB .container .solutions-grid .sol-item .hover-item p {
  color: var(--white);
  text-align: center;
}
.home-secB .container .solutions-grid .sol-item .hover-item .btn-btn {
  margin: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.home-secB .container .solutions-grid .sol-item .hover-item .btn-btn:hover span {
  transform: translate(0);
}
.home-secB .container .solutions-grid .sol-item .hover-item .btn-btn::before {
  background-color: var(--white);
}
.home-secB .container .solutions-grid .sol-item .hover-item .btn-btn span {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--white);
  transform: translate(-4px, -3px);
}

.home-secC .container {
  border-bottom: 1px solid var(--black);
}
.home-secC .container .heading {
  text-align: center;
}
.home-secC .container .heading p {
  max-width: 670px;
  margin: 0 auto;
}
.home-secC .container .services-grid {
  grid-gap: 15px;
  padding: 50px 0 70px;
}
@media only screen and (max-width: 1100px) {
  .home-secC .container .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .container .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .container .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    padding: 40px 0 60px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .container .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0 40px;
  }
}
.home-secC .container .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .home-secC .container .btn-wrapper {
    gap: 15px;
  }
}

.home-secD .container {
  border-bottom: 1px solid var(--black);
  align-items: start;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .home-secD .container {
    flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .container {
    padding-bottom: 0;
    gap: 0;
  }
}
.home-secD .container .colA, .home-secD .container .colB {
  flex: 1 1;
}
@media only screen and (max-width: 1024px) {
  .home-secD .container .colA {
    width: 100%;
    text-align: center;
  }
}
.home-secD .container .colA h1 {
  font-size: 60px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .home-secD .container .colA h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .container .colA h1 {
    font-size: 30px;
  }
}
.home-secD .container .colA p {
  max-width: 500px;
  color: var(--black);
  padding-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  .home-secD .container .colA p {
    margin: 0 auto;
  }
}
.home-secD .container .colA .counter-wrapper {
  display: flex;
  padding: 40px 0;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .home-secD .container .colA .counter-wrapper {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .container .colA .counter-wrapper {
    padding: 30px 0;
  }
}
.home-secD .container .colA .counter-wrapper .counter-info-wrap h5 {
  font-size: 36px;
  font-weight: 300;
  padding-bottom: 6px;
}
.home-secD .container .colA .counter-wrapper .counter-info-wrap p {
  font-size: 16px;
}
.home-secD .container .colB {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .home-secD .container .colB {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .container .colB {
    flex-direction: column;
    transform: translateY(50px);
  }
}
.home-secD .container .colB .upper-sec ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .home-secD .container .colB .upper-sec ul {
    justify-content: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .container .colB .upper-sec ul {
    gap: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .container .colB .upper-sec ul li:last-child {
    display: none;
  }
}
.home-secD .container .colB .lower-sec {
  width: 507px;
  height: 538px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .home-secD .container .colB .lower-sec {
    width: 450px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secD .container .colB .lower-sec {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .container .colB .lower-sec {
    height: 450px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .container .colB .lower-sec {
    height: 300px;
  }
}
.home-secD .container .colB .lower-sec video {
  width: 99%;
  height: 99%;
}

.home-secE .container {
  padding-bottom: 0;
}
.home-secE .container .heading {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--black);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home-secE .container .heading {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .container .heading {
    padding-bottom: 25px;
  }
}
.home-secE .container .heading p {
  max-width: 400px;
  margin: 0 auto;
}
.home-secE .container .why-wrapper {
  align-items: center;
  border-bottom: 1px solid var(--black);
}
@media only screen and (max-width: 768px) {
  .home-secE .container .why-wrapper {
    flex-direction: column;
  }
}
.home-secE .container .why-wrapper .colA, .home-secE .container .why-wrapper .colB {
  flex: 1 1;
}
.home-secE .container .why-wrapper .colA {
  padding: 80px 40px;
  border-right: 1px solid var(--black);
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .home-secE .container .why-wrapper .colA {
    padding: 80px 30px;
    height: unset;
  }
}
@media only screen and (max-width: 768px) {
  .home-secE .container .why-wrapper .colA {
    padding: 0;
    border-right: none;
  }
}
.home-secE .container .why-wrapper .colA figure {
  width: 90%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .home-secE .container .why-wrapper .colA figure {
    width: 100%;
  }
}
.home-secE .container .why-wrapper .colA figure video {
  filter: grayscale(1);
}
.home-secE .container .why-wrapper .colB .Why-choose-wrapper .summery-detail-content {
  padding: 20px 0;
}
.home-secE .container .why-wrapper .colB .Why-choose-wrapper .summery-detail-content .col .title {
  padding: 10px 15px 10px 0;
}
@media only screen and (max-width: 768px) {
  .home-secE .container .why-wrapper .colB .Why-choose-wrapper .summery-detail-content .col .title {
    padding: 10px 15px 10px 15px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .container .why-wrapper .colB .Why-choose-wrapper .summery-detail-content .col .title {
    gap: 10px;
  }
}
.home-secE .container .why-wrapper .colB .Why-choose-wrapper .summery-detail-content .col .article .content-desc {
  padding: 0px 10px 0px 30px;
}

.home-secF .container {
  border-bottom: 1px solid var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secF .container {
    padding-bottom: 100px;
  }
}
.home-secF .container .heading {
  text-align: center;
  max-width: 590px;
  margin: 0 auto;
}
.home-secF .container .steps-wrapper {
  position: relative;
  padding: 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .home-secF .container .steps-wrapper {
    padding: 30px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper {
    padding: 10px 0 0;
  }
}
.home-secF .container .steps-wrapper .steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .home-secF .container .steps-wrapper .steps-nav {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper .steps-nav {
    display: flex;
    right: unset;
    top: unset;
    left: 50%;
    bottom: -10%;
    transform: translate(-50%, 100%);
  }
}
.home-secF .container .steps-wrapper .steps-nav button {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.home-secF .container .steps-wrapper .steps-nav button svg {
  vertical-align: middle;
  width: 30px;
  height: 30px;
}
.home-secF .container .steps-wrapper .steps-slider {
  padding-top: 30px;
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap {
  position: relative;
  padding: 64px 25px;
}
@media only screen and (max-width: 991px) {
  .home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap {
    padding: 40px 25px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap {
    padding: 30px 15px;
  }
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(/assets/images/home/steps_bg.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .upper-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px;
  position: absolute;
  top: -16%;
  left: 36%;
  transform: translate(-36%, 16%);
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .upper-count {
    top: -20%;
  }
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .upper-count .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white);
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.2509803922);
  width: 50px;
  height: 50px;
  background: var(--gradient-a);
  border-radius: 50%;
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .upper-count .icon {
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.11);
  }
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .upper-count .icon img {
  vertical-align: middle;
  width: 25px;
  height: 25px;
  filter: invert(1);
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .upper-count .step-count {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps {
  width: 100%;
  max-width: 360px;
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps .scroll {
  height: 85px;
  overflow-y: auto;
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps .scroll::-webkit-scrollbar {
  width: 0;
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps h6 {
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  padding-bottom: 10px;
  max-width: 80%;
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps h6 {
    max-width: 100%;
  }
}
.home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps p {
  font-size: 16px;
  line-height: 1.3;
  max-width: 77%;
}
@media only screen and (max-width: 540px) {
  .home-secF .container .steps-wrapper .steps-slider .swiper-slide .step-wrap .steps p {
    max-width: 90%;
  }
}

.home-secG .container {
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 540px) {
  .home-secG .container {
    padding-bottom: 50px;
  }
}
.home-secG .container .heading {
  max-width: 500px;
}
.home-secG .container .caseStudy-wrapper, .home-secG .container .client-wrapper {
  position: relative;
  padding: 50px 0 70px;
}
@media only screen and (max-width: 768px) {
  .home-secG .container .caseStudy-wrapper, .home-secG .container .client-wrapper {
    padding: 30px 0 50px;
  }
}
.home-secG .container .caseStudy-wrapper .swiper-nav, .home-secG .container .client-wrapper .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .home-secG .container .caseStudy-wrapper .swiper-nav, .home-secG .container .client-wrapper .swiper-nav {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .home-secG .container .caseStudy-wrapper .swiper-nav, .home-secG .container .client-wrapper .swiper-nav {
    display: flex;
    right: unset;
    left: 50%;
    bottom: -20px;
    top: unset;
    transform: translate(-50%, 0);
  }
}
.home-secG .container .caseStudy-wrapper .swiper-nav button, .home-secG .container .client-wrapper .swiper-nav button {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.home-secG .container .caseStudy-wrapper .swiper-nav button svg, .home-secG .container .client-wrapper .swiper-nav button svg {
  vertical-align: middle;
  width: 30px;
  height: 30px;
}
.home-secG .container .caseStudy-wrapper .case-slider, .home-secG .container .client-wrapper .case-slider {
  padding-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home-secG .container .caseStudy-wrapper .case-slider, .home-secG .container .client-wrapper .case-slider {
    padding-top: 0;
  }
}
.home-secG .container .caseStudy-wrapper .case-slider .caseCard, .home-secG .container .client-wrapper .case-slider .caseCard {
  --borderwidth: 15px;
}
@media only screen and (max-width: 768px) {
  .home-secG .container .caseStudy-wrapper .case-slider .caseCard::after, .home-secG .container .client-wrapper .case-slider .caseCard::after {
    right: 1px;
  }
}
.home-secG .container .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .home-secG .container .btn-wrapper {
    padding-top: 60px;
  }
}

.home-secH .container {
  border-bottom: 1px solid #000;
  padding-bottom: 0;
}
@media only screen and (max-width: 540px) {
  .home-secH .container {
    padding: 30px 0px 0px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secH .container .heading {
    max-width: 270px;
  }
}
.home-secH .client-wrapper {
  position: relative;
  padding: 50px 0 30px;
}
@media only screen and (max-width: 768px) {
  .home-secH .client-wrapper .swiper-nav.client-nav {
    display: none;
  }
}
.home-secH .client-wrapper .client-slider {
  padding-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home-secH .client-wrapper .client-slider {
    padding-top: 0;
  }
}
.home-secH .client-wrapper .client-slider .client-col {
  width: 100%;
  height: 100%;
}
.home-secH .client-wrapper .client-slider .client-col::before {
  background: var(--white);
  transition: 0.5s ease;
}
.home-secH .client-wrapper .client-slider .client-col .hoverItem {
  width: 100%;
  height: 100%;
  padding: 50px 40px;
  background-color: #f1efef;
  text-align: center;
  position: relative;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(84% 0%, 185% 100%, 0% 100%, 0% 100%, 0% 0);
          clip-path: polygon(84% 0%, 185% 100%, 0% 100%, 0% 100%, 0% 0);
  transition: 0.7s ease;
  z-index: 2;
}
@media only screen and (min-width: 1300px) {
  .home-secH .client-wrapper .client-slider .client-col .hoverItem {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 540px) {
  .home-secH .client-wrapper .client-slider .client-col .hoverItem {
    padding: 20px;
  }
}
.home-secH .client-wrapper .client-slider .client-col .hoverItem img {
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  border-radius: 50%;
}
@media only screen and (max-width: 540px) {
  .home-secH .client-wrapper .client-slider .client-col .hoverItem img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
}
.home-secH .client-wrapper .client-slider .client-col .hoverItem p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secH .client-wrapper .client-slider .client-col .hoverItem p {
    font-size: 14px;
    padding-bottom: 15px;
  }
}
.home-secH .client-wrapper .client-slider .client-col .hoverItem .details h6 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
}
.home-secH .client-wrapper .client-slider .client-col .hoverItem .details p {
  font-size: 14px;
  color: var(--black);
  font-weight: 300;
}
.home-secH .client-wrapper .client-slider .client-col figcaption {
  bottom: 10%;
  text-align: center;
}
.home-secH .client-wrapper .client-slider .client-col figcaption h4 {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  padding-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .home-secH .client-wrapper .client-slider .client-col figcaption h4 {
    font-size: 22px;
    padding-bottom: 5px;
  }
}
.home-secH .client-wrapper .client-slider .client-col figcaption p {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .home-secH .client-wrapper .client-slider .client-col figcaption p {
    font-size: 14px;
  }
}

.home-secI .flex {
  align-items: center;
  border-bottom: 1px solid var(--black);
}
@media only screen and (max-width: 768px) {
  .home-secI .flex {
    flex-direction: column-reverse;
  }
}
.home-secI .flex .colA, .home-secI .flex .colB {
  flex: 1 1;
  height: 100%;
  width: 100%;
}
.home-secI .flex .colA {
  padding: 30px 20px 30px 40px;
}
@media only screen and (max-width: 991px) {
  .home-secI .flex .colA {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secI .flex .colA {
    padding: 30px 10px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secI .flex .colA {
    padding: 20px 10px 40px;
  }
}
.home-secI .flex .colA h2 {
  font-size: 36px;
  max-width: 540px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .home-secI .flex .colA h2 {
    max-width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secI .flex .colA h2 {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secI .flex .colA h2 {
    font-size: 24px;
    padding-bottom: 10px;
  }
}
.home-secI .flex .colA p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  font-weight: 700;
  max-width: 280px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home-secI .flex .colA p {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 540px) {
  .home-secI .flex .colA p {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secI .flex .colB {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secI .flex .colB {
    padding-top: 20px;
  }
}
.home-secI .flex .colB figure {
  width: 100%;
  line-height: 0;
}
.home-secI .flex .colB figure video {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

.testimonial_sec {
  position: relative;
}
.testimonial_sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/icon/quote.svg") no-repeat;
  background-size: 23%;
  background-position: 6% -37%;
  opacity: 0.01;
}
.testimonial_sec .container {
  border-bottom: 1px solid var(--black);
  background: url(/assets/images/home/bg-line.png);
  background-repeat: repeat-y;
}
.testimonial_sec .container .testimonial_wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper {
    flex-direction: column;
  }
}
.testimonial_sec .container .testimonial_wrapper .colA {
  flex: 0 1 auto;
  padding-left: 40px;
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper .colA {
    display: flex;
    align-items: center;
    padding: 0 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .testimonial_sec .container .testimonial_wrapper .colA {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper .colA h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .testimonial_sec .container .testimonial_wrapper .colA h3 {
    font-size: 24px;
  }
}
.testimonial_sec .container .testimonial_wrapper .colA h3 span {
  font-weight: 400;
}
.testimonial_sec .container .testimonial_wrapper .colA .client-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper .colA .client-nav {
    flex: 1 1;
    justify-content: end;
    padding-top: 0;
  }
}
@media only screen and (max-width: 540px) {
  .testimonial_sec .container .testimonial_wrapper .colA .client-nav {
    display: none;
  }
}
.testimonial_sec .container .testimonial_wrapper .colA .client-nav button {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
  box-shadow: 3px 2px 0px #000;
  background: var(--white);
}
.testimonial_sec .container .testimonial_wrapper .colA .client-nav button:hover .svgg svg path {
  stroke: #000;
}
.testimonial_sec .container .testimonial_wrapper .colA .client-nav button svg {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.testimonial_sec .container .testimonial_wrapper .colB {
  flex: 1 1;
  width: 100%;
  overflow: hidden;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider {
  width: 100%;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .swiper-wrapper {
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper .colB .client-slider .swiper-wrapper {
    padding: 30px 10px 10px 20px;
  }
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col {
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 5px 2px;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col {
    padding: 20px 15px;
  }
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col .upper_sec {
  display: flex;
  padding-bottom: 25px;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col .upper_sec {
    padding-bottom: 15px;
  }
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col .upper_sec img {
  flex: 0 1 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col .upper_sec .name {
  flex: 1 1;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col .upper_sec .name h6 {
  font-size: 16px;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col .upper_sec .name p {
  font-size: 14px;
}
.testimonial_sec .container .testimonial_wrapper .colB .client-slider .client-col p {
  max-width: 400px;
}/*# sourceMappingURL=home.css.map */
/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./public/assets/css/animate.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
@media (min-width: 1007px) {
    .kmr-animate{transition: 1.5s ease}

    [data-animate][data-animate][data-animate-duration="50"],body[data-animate-duration="50"] [data-animate]{
        transition-duration:50ms
    }
    [data-animate][data-animate][data-animate-delay="50"],body[data-animate-delay="50"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="50"].kmr-animate,body[data-animate-delay="50"] [data-animate].kmr-animate{
        transition-delay:50ms
    }
    [data-animate][data-animate][data-animate-duration="100"],body[data-animate-duration="100"] [data-animate]{
        transition-duration:.1s
    }
    [data-animate][data-animate][data-animate-delay="100"],body[data-animate-delay="100"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="100"].kmr-animate,body[data-animate-delay="100"] [data-animate].kmr-animate{
        transition-delay:.1s
    }
    [data-animate][data-animate][data-animate-duration="150"],body[data-animate-duration="150"] [data-animate]{
        transition-duration:.15s
    }
    [data-animate][data-animate][data-animate-delay="150"],body[data-animate-delay="150"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="150"].kmr-animate,body[data-animate-delay="150"] [data-animate].kmr-animate{
        transition-delay:.15s
    }
    [data-animate][data-animate][data-animate-duration="200"],body[data-animate-duration="200"] [data-animate]{
        transition-duration:.2s
    }
    [data-animate][data-animate][data-animate-delay="200"],body[data-animate-delay="200"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="200"].kmr-animate,body[data-animate-delay="200"] [data-animate].kmr-animate{
        transition-delay:.2s
    }
    [data-animate][data-animate][data-animate-duration="250"],body[data-animate-duration="250"] [data-animate]{
        transition-duration:.25s
    }
    [data-animate][data-animate][data-animate-delay="250"],body[data-animate-delay="250"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="250"].kmr-animate,body[data-animate-delay="250"] [data-animate].kmr-animate{
        transition-delay:.25s
    }
    [data-animate][data-animate][data-animate-duration="300"],body[data-animate-duration="300"] [data-animate]{
        transition-duration:.3s
    }
    [data-animate][data-animate][data-animate-delay="300"],body[data-animate-delay="300"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="300"].kmr-animate,body[data-animate-delay="300"] [data-animate].kmr-animate{
        transition-delay:.3s
    }
    [data-animate][data-animate][data-animate-duration="350"],body[data-animate-duration="350"] [data-animate]{
        transition-duration:.35s
    }
    [data-animate][data-animate][data-animate-delay="350"],body[data-animate-delay="350"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="350"].kmr-animate,body[data-animate-delay="350"] [data-animate].kmr-animate{
        transition-delay:.35s
    }
    [data-animate][data-animate][data-animate-duration="400"],body[data-animate-duration="400"] [data-animate]{
        transition-duration:.4s
    }
    [data-animate][data-animate][data-animate-delay="400"],body[data-animate-delay="400"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="400"].kmr-animate,body[data-animate-delay="400"] [data-animate].kmr-animate{
        transition-delay:.4s
    }
    [data-animate][data-animate][data-animate-duration="450"],body[data-animate-duration="450"] [data-animate]{
        transition-duration:.45s
    }
    [data-animate][data-animate][data-animate-delay="450"],body[data-animate-delay="450"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="450"].kmr-animate,body[data-animate-delay="450"] [data-animate].kmr-animate{
        transition-delay:.45s
    }
    [data-animate][data-animate][data-animate-duration="500"],body[data-animate-duration="500"] [data-animate]{
        transition-duration:.5s
    }
    [data-animate][data-animate][data-animate-delay="500"],body[data-animate-delay="500"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="500"].kmr-animate,body[data-animate-delay="500"] [data-animate].kmr-animate{
        transition-delay:.5s
    }
    [data-animate][data-animate][data-animate-duration="550"],body[data-animate-duration="550"] [data-animate]{
        transition-duration:.55s
    }
    [data-animate][data-animate][data-animate-delay="550"],body[data-animate-delay="550"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="550"].kmr-animate,body[data-animate-delay="550"] [data-animate].kmr-animate{
        transition-delay:.55s
    }
    [data-animate][data-animate][data-animate-duration="600"],body[data-animate-duration="600"] [data-animate]{
        transition-duration:.6s
    }
    [data-animate][data-animate][data-animate-delay="600"],body[data-animate-delay="600"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="600"].kmr-animate,body[data-animate-delay="600"] [data-animate].kmr-animate{
        transition-delay:.6s
    }
    [data-animate][data-animate][data-animate-duration="650"],body[data-animate-duration="650"] [data-animate]{
        transition-duration:.65s
    }
    [data-animate][data-animate][data-animate-delay="650"],body[data-animate-delay="650"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="650"].kmr-animate,body[data-animate-delay="650"] [data-animate].kmr-animate{
        transition-delay:.65s
    }
    [data-animate][data-animate][data-animate-duration="700"],body[data-animate-duration="700"] [data-animate]{
        transition-duration:.7s
    }
    [data-animate][data-animate][data-animate-delay="700"],body[data-animate-delay="700"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="700"].kmr-animate,body[data-animate-delay="700"] [data-animate].kmr-animate{
        transition-delay:.7s
    }
    [data-animate][data-animate][data-animate-duration="750"],body[data-animate-duration="750"] [data-animate]{
        transition-duration:.75s
    }
    [data-animate][data-animate][data-animate-delay="750"],body[data-animate-delay="750"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="750"].kmr-animate,body[data-animate-delay="750"] [data-animate].kmr-animate{
        transition-delay:.75s
    }
    [data-animate][data-animate][data-animate-duration="800"],body[data-animate-duration="800"] [data-animate]{
        transition-duration:.8s
    }
    [data-animate][data-animate][data-animate-delay="800"],body[data-animate-delay="800"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="800"].kmr-animate,body[data-animate-delay="800"] [data-animate].kmr-animate{
        transition-delay:.8s
    }
    [data-animate][data-animate][data-animate-duration="850"],body[data-animate-duration="850"] [data-animate]{
        transition-duration:.85s
    }
    [data-animate][data-animate][data-animate-delay="850"],body[data-animate-delay="850"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="850"].kmr-animate,body[data-animate-delay="850"] [data-animate].kmr-animate{
        transition-delay:.85s
    }
    [data-animate][data-animate][data-animate-duration="900"],body[data-animate-duration="900"] [data-animate]{
        transition-duration:.9s
    }
    [data-animate][data-animate][data-animate-delay="900"],body[data-animate-delay="900"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="900"].kmr-animate,body[data-animate-delay="900"] [data-animate].kmr-animate{
        transition-delay:.9s
    }
    [data-animate][data-animate][data-animate-duration="950"],body[data-animate-duration="950"] [data-animate]{
        transition-duration:.95s
    }
    [data-animate][data-animate][data-animate-delay="950"],body[data-animate-delay="950"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="950"].kmr-animate,body[data-animate-delay="950"] [data-animate].kmr-animate{
        transition-delay:.95s
    }
    [data-animate][data-animate][data-animate-duration="1000"],body[data-animate-duration="1000"] [data-animate]{
        transition-duration:1s
    }
    [data-animate][data-animate][data-animate-delay="1000"],body[data-animate-delay="1000"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1000"].kmr-animate,body[data-animate-delay="1000"] [data-animate].kmr-animate{
        transition-delay:1s
    }
    [data-animate][data-animate][data-animate-duration="1050"],body[data-animate-duration="1050"] [data-animate]{
        transition-duration:1.05s
    }
    [data-animate][data-animate][data-animate-delay="1050"],body[data-animate-delay="1050"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1050"].kmr-animate,body[data-animate-delay="1050"] [data-animate].kmr-animate{
        transition-delay:1.05s
    }
    [data-animate][data-animate][data-animate-duration="1100"],body[data-animate-duration="1100"] [data-animate]{
        transition-duration:1.1s
    }
    [data-animate][data-animate][data-animate-delay="1100"],body[data-animate-delay="1100"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1100"].kmr-animate,body[data-animate-delay="1100"] [data-animate].kmr-animate{
        transition-delay:1.1s
    }
    [data-animate][data-animate][data-animate-duration="1150"],body[data-animate-duration="1150"] [data-animate]{
        transition-duration:1.15s
    }
    [data-animate][data-animate][data-animate-delay="1150"],body[data-animate-delay="1150"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1150"].kmr-animate,body[data-animate-delay="1150"] [data-animate].kmr-animate{
        transition-delay:1.15s
    }
    [data-animate][data-animate][data-animate-duration="1200"],body[data-animate-duration="1200"] [data-animate]{
        transition-duration:1.2s
    }
    [data-animate][data-animate][data-animate-delay="1200"],body[data-animate-delay="1200"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1200"].kmr-animate,body[data-animate-delay="1200"] [data-animate].kmr-animate{
        transition-delay:1.2s
    }
    [data-animate][data-animate][data-animate-duration="1250"],body[data-animate-duration="1250"] [data-animate]{
        transition-duration:1.25s
    }
    [data-animate][data-animate][data-animate-delay="1250"],body[data-animate-delay="1250"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1250"].kmr-animate,body[data-animate-delay="1250"] [data-animate].kmr-animate{
        transition-delay:1.25s
    }
    [data-animate][data-animate][data-animate-duration="1300"],body[data-animate-duration="1300"] [data-animate]{
        transition-duration:1.3s
    }
    [data-animate][data-animate][data-animate-delay="1300"],body[data-animate-delay="1300"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1300"].kmr-animate,body[data-animate-delay="1300"] [data-animate].kmr-animate{
        transition-delay:1.3s
    }
    [data-animate][data-animate][data-animate-duration="1350"],body[data-animate-duration="1350"] [data-animate]{
        transition-duration:1.35s
    }
    [data-animate][data-animate][data-animate-delay="1350"],body[data-animate-delay="1350"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1350"].kmr-animate,body[data-animate-delay="1350"] [data-animate].kmr-animate{
        transition-delay:1.35s
    }
    [data-animate][data-animate][data-animate-duration="1400"],body[data-animate-duration="1400"] [data-animate]{
        transition-duration:1.4s
    }
    [data-animate][data-animate][data-animate-delay="1400"],body[data-animate-delay="1400"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1400"].kmr-animate,body[data-animate-delay="1400"] [data-animate].kmr-animate{
        transition-delay:1.4s
    }
    [data-animate][data-animate][data-animate-duration="1450"],body[data-animate-duration="1450"] [data-animate]{
        transition-duration:1.45s
    }
    [data-animate][data-animate][data-animate-delay="1450"],body[data-animate-delay="1450"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1450"].kmr-animate,body[data-animate-delay="1450"] [data-animate].kmr-animate{
        transition-delay:1.45s
    }
    [data-animate][data-animate][data-animate-duration="1500"],body[data-animate-duration="1500"] [data-animate]{
        transition-duration:1.5s
    }
    [data-animate][data-animate][data-animate-delay="1500"],body[data-animate-delay="1500"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1500"].kmr-animate,body[data-animate-delay="1500"] [data-animate].kmr-animate{
        transition-delay:1.5s
    }
    [data-animate][data-animate][data-animate-duration="1550"],body[data-animate-duration="1550"] [data-animate]{
        transition-duration:1.55s
    }
    [data-animate][data-animate][data-animate-delay="1550"],body[data-animate-delay="1550"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1550"].kmr-animate,body[data-animate-delay="1550"] [data-animate].kmr-animate{
        transition-delay:1.55s
    }
    [data-animate][data-animate][data-animate-duration="1600"],body[data-animate-duration="1600"] [data-animate]{
        transition-duration:1.6s
    }
    [data-animate][data-animate][data-animate-delay="1600"],body[data-animate-delay="1600"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1600"].kmr-animate,body[data-animate-delay="1600"] [data-animate].kmr-animate{
        transition-delay:1.6s
    }
    [data-animate][data-animate][data-animate-duration="1650"],body[data-animate-duration="1650"] [data-animate]{
        transition-duration:1.65s
    }
    [data-animate][data-animate][data-animate-delay="1650"],body[data-animate-delay="1650"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1650"].kmr-animate,body[data-animate-delay="1650"] [data-animate].kmr-animate{
        transition-delay:1.65s
    }
    [data-animate][data-animate][data-animate-duration="1700"],body[data-animate-duration="1700"] [data-animate]{
        transition-duration:1.7s
    }
    [data-animate][data-animate][data-animate-delay="1700"],body[data-animate-delay="1700"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1700"].kmr-animate,body[data-animate-delay="1700"] [data-animate].kmr-animate{
        transition-delay:1.7s
    }
    [data-animate][data-animate][data-animate-duration="1750"],body[data-animate-duration="1750"] [data-animate]{
        transition-duration:1.75s
    }
    [data-animate][data-animate][data-animate-delay="1750"],body[data-animate-delay="1750"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1750"].kmr-animate,body[data-animate-delay="1750"] [data-animate].kmr-animate{
        transition-delay:1.75s
    }
    [data-animate][data-animate][data-animate-duration="1800"],body[data-animate-duration="1800"] [data-animate]{
        transition-duration:1.8s
    }
    [data-animate][data-animate][data-animate-delay="1800"],body[data-animate-delay="1800"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1800"].kmr-animate,body[data-animate-delay="1800"] [data-animate].kmr-animate{
        transition-delay:1.8s
    }
    [data-animate][data-animate][data-animate-duration="1850"],body[data-animate-duration="1850"] [data-animate]{
        transition-duration:1.85s
    }
    [data-animate][data-animate][data-animate-delay="1850"],body[data-animate-delay="1850"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1850"].kmr-animate,body[data-animate-delay="1850"] [data-animate].kmr-animate{
        transition-delay:1.85s
    }
    [data-animate][data-animate][data-animate-duration="1900"],body[data-animate-duration="1900"] [data-animate]{
        transition-duration:1.9s
    }
    [data-animate][data-animate][data-animate-delay="1900"],body[data-animate-delay="1900"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1900"].kmr-animate,body[data-animate-delay="1900"] [data-animate].kmr-animate{
        transition-delay:1.9s
    }
    [data-animate][data-animate][data-animate-duration="1950"],body[data-animate-duration="1950"] [data-animate]{
        transition-duration:1.95s
    }
    [data-animate][data-animate][data-animate-delay="1950"],body[data-animate-delay="1950"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1950"].kmr-animate,body[data-animate-delay="1950"] [data-animate].kmr-animate{
        transition-delay:1.95s
    }
    [data-animate][data-animate][data-animate-duration="2000"],body[data-animate-duration="2000"] [data-animate]{
        transition-duration:2s
    }
    [data-animate][data-animate][data-animate-delay="2000"],body[data-animate-delay="2000"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2000"].kmr-animate,body[data-animate-delay="2000"] [data-animate].kmr-animate{
        transition-delay:2s
    }
    [data-animate][data-animate][data-animate-duration="2050"],body[data-animate-duration="2050"] [data-animate]{
        transition-duration:2.05s
    }
    [data-animate][data-animate][data-animate-delay="2050"],body[data-animate-delay="2050"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2050"].kmr-animate,body[data-animate-delay="2050"] [data-animate].kmr-animate{
        transition-delay:2.05s
    }
    [data-animate][data-animate][data-animate-duration="2100"],body[data-animate-duration="2100"] [data-animate]{
        transition-duration:2.1s
    }
    [data-animate][data-animate][data-animate-delay="2100"],body[data-animate-delay="2100"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2100"].kmr-animate,body[data-animate-delay="2100"] [data-animate].kmr-animate{
        transition-delay:2.1s
    }
    [data-animate][data-animate][data-animate-duration="2150"],body[data-animate-duration="2150"] [data-animate]{
        transition-duration:2.15s
    }
    [data-animate][data-animate][data-animate-delay="2150"],body[data-animate-delay="2150"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2150"].kmr-animate,body[data-animate-delay="2150"] [data-animate].kmr-animate{
        transition-delay:2.15s
    }
    [data-animate][data-animate][data-animate-duration="2200"],body[data-animate-duration="2200"] [data-animate]{
        transition-duration:2.2s
    }
    [data-animate][data-animate][data-animate-delay="2200"],body[data-animate-delay="2200"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2200"].kmr-animate,body[data-animate-delay="2200"] [data-animate].kmr-animate{
        transition-delay:2.2s
    }
    [data-animate][data-animate][data-animate-duration="2250"],body[data-animate-duration="2250"] [data-animate]{
        transition-duration:2.25s
    }
    [data-animate][data-animate][data-animate-delay="2250"],body[data-animate-delay="2250"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2250"].kmr-animate,body[data-animate-delay="2250"] [data-animate].kmr-animate{
        transition-delay:2.25s
    }
    [data-animate][data-animate][data-animate-duration="2300"],body[data-animate-duration="2300"] [data-animate]{
        transition-duration:2.3s
    }
    [data-animate][data-animate][data-animate-delay="2300"],body[data-animate-delay="2300"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2300"].kmr-animate,body[data-animate-delay="2300"] [data-animate].kmr-animate{
        transition-delay:2.3s
    }
    [data-animate][data-animate][data-animate-duration="2350"],body[data-animate-duration="2350"] [data-animate]{
        transition-duration:2.35s
    }
    [data-animate][data-animate][data-animate-delay="2350"],body[data-animate-delay="2350"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2350"].kmr-animate,body[data-animate-delay="2350"] [data-animate].kmr-animate{
        transition-delay:2.35s
    }
    [data-animate][data-animate][data-animate-duration="2400"],body[data-animate-duration="2400"] [data-animate]{
        transition-duration:2.4s
    }
    [data-animate][data-animate][data-animate-delay="2400"],body[data-animate-delay="2400"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2400"].kmr-animate,body[data-animate-delay="2400"] [data-animate].kmr-animate{
        transition-delay:2.4s
    }
    [data-animate][data-animate][data-animate-duration="2450"],body[data-animate-duration="2450"] [data-animate]{
        transition-duration:2.45s
    }
    [data-animate][data-animate][data-animate-delay="2450"],body[data-animate-delay="2450"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2450"].kmr-animate,body[data-animate-delay="2450"] [data-animate].kmr-animate{
        transition-delay:2.45s
    }
    [data-animate][data-animate][data-animate-duration="2500"],body[data-animate-duration="2500"] [data-animate]{
        transition-duration:2.5s
    }
    [data-animate][data-animate][data-animate-delay="2500"],body[data-animate-delay="2500"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2500"].kmr-animate,body[data-animate-delay="2500"] [data-animate].kmr-animate{
        transition-delay:2.5s
    }
    [data-animate][data-animate][data-animate-duration="2550"],body[data-animate-duration="2550"] [data-animate]{
        transition-duration:2.55s
    }
    [data-animate][data-animate][data-animate-delay="2550"],body[data-animate-delay="2550"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2550"].kmr-animate,body[data-animate-delay="2550"] [data-animate].kmr-animate{
        transition-delay:2.55s
    }
    [data-animate][data-animate][data-animate-duration="2600"],body[data-animate-duration="2600"] [data-animate]{
        transition-duration:2.6s
    }
    [data-animate][data-animate][data-animate-delay="2600"],body[data-animate-delay="2600"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2600"].kmr-animate,body[data-animate-delay="2600"] [data-animate].kmr-animate{
        transition-delay:2.6s
    }
    [data-animate][data-animate][data-animate-duration="2650"],body[data-animate-duration="2650"] [data-animate]{
        transition-duration:2.65s
    }
    [data-animate][data-animate][data-animate-delay="2650"],body[data-animate-delay="2650"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2650"].kmr-animate,body[data-animate-delay="2650"] [data-animate].kmr-animate{
        transition-delay:2.65s
    }
    [data-animate][data-animate][data-animate-duration="2700"],body[data-animate-duration="2700"] [data-animate]{
        transition-duration:2.7s
    }
    [data-animate][data-animate][data-animate-delay="2700"],body[data-animate-delay="2700"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2700"].kmr-animate,body[data-animate-delay="2700"] [data-animate].kmr-animate{
        transition-delay:2.7s
    }
    [data-animate][data-animate][data-animate-duration="2750"],body[data-animate-duration="2750"] [data-animate]{
        transition-duration:2.75s
    }
    [data-animate][data-animate][data-animate-delay="2750"],body[data-animate-delay="2750"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2750"].kmr-animate,body[data-animate-delay="2750"] [data-animate].kmr-animate{
        transition-delay:2.75s
    }
    [data-animate][data-animate][data-animate-duration="2800"],body[data-animate-duration="2800"] [data-animate]{
        transition-duration:2.8s
    }
    [data-animate][data-animate][data-animate-delay="2800"],body[data-animate-delay="2800"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2800"].kmr-animate,body[data-animate-delay="2800"] [data-animate].kmr-animate{
        transition-delay:2.8s
    }
    [data-animate][data-animate][data-animate-duration="2850"],body[data-animate-duration="2850"] [data-animate]{
        transition-duration:2.85s
    }
    [data-animate][data-animate][data-animate-delay="2850"],body[data-animate-delay="2850"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2850"].kmr-animate,body[data-animate-delay="2850"] [data-animate].kmr-animate{
        transition-delay:2.85s
    }
    [data-animate][data-animate][data-animate-duration="2900"],body[data-animate-duration="2900"] [data-animate]{
        transition-duration:2.9s
    }
    [data-animate][data-animate][data-animate-delay="2900"],body[data-animate-delay="2900"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2900"].kmr-animate,body[data-animate-delay="2900"] [data-animate].kmr-animate{
        transition-delay:2.9s
    }
    [data-animate][data-animate][data-animate-duration="2950"],body[data-animate-duration="2950"] [data-animate]{
        transition-duration:2.95s
    }
    [data-animate][data-animate][data-animate-delay="2950"],body[data-animate-delay="2950"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2950"].kmr-animate,body[data-animate-delay="2950"] [data-animate].kmr-animate{
        transition-delay:2.95s
    }
    [data-animate][data-animate][data-animate-duration="3000"],body[data-animate-duration="3000"] [data-animate]{
        transition-duration:3s
    }
    [data-animate][data-animate][data-animate-delay="3000"],body[data-animate-delay="3000"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="3000"].kmr-animate,body[data-animate-delay="3000"] [data-animate].kmr-animate{
        transition-delay:3s
    }
    [data-animate][data-animate][data-animate-easing=linear],body[data-animate-easing=linear] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.25,.75,.75)
    }
    [data-animate][data-animate][data-animate-easing=ease],body[data-animate-easing=ease] [data-animate]{
        transition-timing-function:ease
    }
    [data-animate][data-animate][data-animate-easing=ease-in],body[data-animate-easing=ease-in] [data-animate]{
        transition-timing-function:ease-in
    }
    [data-animate][data-animate][data-animate-easing=ease-out],body[data-animate-easing=ease-out] [data-animate]{
        transition-timing-function:ease-out
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out],body[data-animate-easing=ease-in-out] [data-animate]{
        transition-timing-function:ease-in-out
    }
    [data-animate][data-animate][data-animate-easing=ease-in-back],body[data-animate-easing=ease-in-back] [data-animate]{
        transition-timing-function:cubic-bezier(.6,-.28,.735,.045)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-back],body[data-animate-easing=ease-out-back] [data-animate]{
        transition-timing-function:cubic-bezier(.175,.885,.32,1.275)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-back],body[data-animate-easing=ease-in-out-back] [data-animate]{
        transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-sine],body[data-animate-easing=ease-in-sine] [data-animate]{
        transition-timing-function:cubic-bezier(.47,0,.745,.715)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-sine],body[data-animate-easing=ease-out-sine] [data-animate]{
        transition-timing-function:cubic-bezier(.39,.575,.565,1)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-sine],body[data-animate-easing=ease-in-out-sine] [data-animate]{
        transition-timing-function:cubic-bezier(.445,.05,.55,.95)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-quad],body[data-animate-easing=ease-in-quad] [data-animate]{
        transition-timing-function:cubic-bezier(.55,.085,.68,.53)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-quad],body[data-animate-easing=ease-out-quad] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.46,.45,.94)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-quad],body[data-animate-easing=ease-in-out-quad] [data-animate]{
        transition-timing-function:cubic-bezier(.455,.03,.515,.955)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-cubic],body[data-animate-easing=ease-in-cubic] [data-animate]{
        transition-timing-function:cubic-bezier(.55,.085,.68,.53)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-cubic],body[data-animate-easing=ease-out-cubic] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.46,.45,.94)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-cubic],body[data-animate-easing=ease-in-out-cubic] [data-animate]{
        transition-timing-function:cubic-bezier(.455,.03,.515,.955)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-quart],body[data-animate-easing=ease-in-quart] [data-animate]{
        transition-timing-function:cubic-bezier(.55,.085,.68,.53)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-quart],body[data-animate-easing=ease-out-quart] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.46,.45,.94)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-quart],body[data-animate-easing=ease-in-out-quart] [data-animate]{
        transition-timing-function:cubic-bezier(.455,.03,.515,.955)
    }
    [data-animate^=fade][data-animate^=fade]{
        opacity:0;
        transition-property:opacity,transform
    }
    [data-animate^=fade][data-animate^=fade].kmr-animate{
        opacity:1;
        transform:translateZ(0)
    }
    [data-animate=fade-up]{
        transform:translate3d(0,100px,0)
    }
    [data-animate=fade-down]{
        transform:translate3d(0,-100px,0)
    }
    [data-animate=fade-right]{
        transform:translate3d(-100px,0,0)
    }
    [data-animate=fade-left]{
        transform:translate3d(100px,0,0)
    }
    [data-animate=fade-up-right]{
        transform:translate3d(-100px,100px,0)
    }
    [data-animate=fade-up-left]{
        transform:translate3d(100px,100px,0)
    }
    [data-animate=fade-down-right]{
        transform:translate3d(-100px,-100px,0)
    }
    [data-animate=fade-down-left]{
        transform:translate3d(100px,-100px,0)
    }
    [data-animate^=zoom][data-animate^=zoom]{
        opacity:0;
        transition-property:opacity,transform
    }
    [data-animate^=zoom][data-animate^=zoom].kmr-animate{
        opacity:1;
        transform:translateZ(0) scale(1)
    }
    [data-animate=zoom-in]{
        transform:scale(.6)
    }
    [data-animate=zoom-in-up]{
        transform:translate3d(0,100px,0) scale(.6)
    }
    [data-animate=zoom-in-down]{
        transform:translate3d(0,-100px,0) scale(.6)
    }
    [data-animate=zoom-in-right]{
        transform:translate3d(-100px,0,0) scale(.6)
    }
    [data-animate=zoom-in-left]{
        transform:translate3d(100px,0,0) scale(.6)
    }
    [data-animate=zoom-out]{
        transform:scale(1.2)
    }
    [data-animate=zoom-out-up]{
        transform:translate3d(0,100px,0) scale(1.2)
    }
    [data-animate=zoom-out-down]{
        transform:translate3d(0,-100px,0) scale(1.2)
    }
    [data-animate=zoom-out-right]{
        transform:translate3d(-100px,0,0) scale(1.2)
    }
    [data-animate=zoom-out-left]{
        transform:translate3d(100px,0,0) scale(1.2)
    }
    [data-animate^=slide][data-animate^=slide]{
        transition-property:transform
    }
    [data-animate^=slide][data-animate^=slide].kmr-animate{
        transform:translateZ(0)
    }
    [data-animate=slide-up]{
        transform:translate3d(0,100%,0)
    }
    [data-animate=slide-down]{
        transform:translate3d(0,-100%,0)
    }
    [data-animate=slide-right]{
        transform:translate3d(-100%,0,0)
    }
    [data-animate=slide-left]{
        transform:translate3d(100%,0,0)
    }
    [data-animate^=flip][data-animate^=flip]{
        -webkit-backface-visibility:hidden;
                backface-visibility:hidden;
        transition-property:transform
    }
    [data-animate=flip-left]{
        transform:perspective(2500px) rotateY(-100deg)
    }
    [data-animate=flip-left].kmr-animate{
        transform:perspective(2500px) rotateY(0)
    }
    [data-animate=flip-right]{
        transform:perspective(2500px) rotateY(100deg)
    }
    [data-animate=flip-right].kmr-animate{
        transform:perspective(2500px) rotateY(0)
    }
    [data-animate=flip-up]{
        transform:perspective(2500px) rotateX(-100deg)
    }
    [data-animate=flip-up].kmr-animate{
        transform:perspective(2500px) rotateX(0)
    }
    [data-animate=flip-down]{
        transform:perspective(2500px) rotateX(100deg)
    }
    [data-animate=flip-down].kmr-animate{
        transform:perspective(2500px) rotateX(0)
    }
}
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./node_modules/swiper/swiper.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./node_modules/swiper/modules/navigation.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-feature-settings: ;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */

