@charset "UTF-8";
/* Table Of Content - end
================================================== */
/* @import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&amp;display=swap"); */

:root {
  --bs-font-body: "Mulish", sans-serif;
  --bs-font-heading: "Chakra Petch", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

:root,
[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #EDEDED;
  --bs-body-bg: #161616;
  --bs-primary: #ef0b14;
  --bs-primary: #ef0b13da;
  --bs-primary-hover: #ef0b13c4;
  --bs-secondary: #EDEDED;
  --bs-dark: #161616;
  --bs-gray-dark: #121212;
  --bs-white: #ffffff;
  --bs-border-color: #343434;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.06);
  --bs-primary-border-subtle: #ef0b14;
  --bs-box-shadow: 0 30px 50px 0 rgba(18, 18, 18, 0.5);
  --bs-p2: #CBCBCB
}

/* 1.2 - Template Reset - Start
================================================== */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  font-style: normal;
  color: var(--bs-body-color);
  font-family: var(--bs-font-body);
  background-color: var(--bs-body-bg);
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a:focus,
a:active {
  outline: none;
}

img:not([draggable]) {
  height: auto;
  max-width: 100%;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

a {
  outline: 0;
  display: inline-block;
  text-decoration: none;
  font-family: var(--bs-font-heading);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}

a:active,
a:focus,
a:hover,
a:visited {
  outline: 0;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bs-secondary);
  font-family: var(--bs-font-heading);
}

hr {
  opacity: 1;
  height: 1px;
  border: none;
  margin: 25px 0;
  background-color: var(--bs-border-color);
}

.container {
  max-width: 1390px;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  /* margin: -15px; */
  margin: unset;
}

[class*=col-] {
  padding: 15px;
}

/* 2.2 - CSS Animation - Start
================================================== */
@-webkit-keyframes dropDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes dropDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes textMarqueeX {
  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes textMarqueeX {
  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@-webkit-keyframes upDownMove {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes upDownMove {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes bttIconMover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bttIconMover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes changeBorderColor {

  0%,
  100% {
    border-color: var(--bs-primary);
  }

  25% {
    border-color: #0091EA;
  }

  50% {
    border-color: #8b4513;
  }

  75% {
    border-color: #9400d3;
  }
}

@keyframes changeBorderColor {

  0%,
  100% {
    border-color: var(--bs-primary);
  }

  25% {
    border-color: #0091EA;
  }

  50% {
    border-color: #8b4513;
  }

  75% {
    border-color: #9400d3;
  }
}

/* 2.4 - Spaces or Gaps - Start
================================================== */
.section_space_lg {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* 2.5 - Button - Start
================================================== */

.btn {
  z-index: 1;
  border: none;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  border-radius: 0;
  padding: 21px 40px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--bs-white);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--bs-font-heading);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  -webkit-clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.btn-primary {
  background-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
}

.btn:before {
  top: 0;
  left: -5%;
  z-index: -1;
  right: auto;
  bottom: auto;
  width: 110%;
  height: 200%;
  content: "";
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  background-color: var(--bs-white);
  -webkit-transform: skewY(-10deg) scale(1, 0);
  transform: skewY(-10deg) scale(1, 0);
}

.btn:hover {
  color: var(--bs-dark);
}

.btn:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: skewY(-10deg) scale(1, 1);
  transform: skewY(-10deg) scale(1, 1);
}

/* 2.7 - Typography - Start
================================================== */
.outline_text {
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #343434;
  font-family: var(--bs-font-heading);
}

.section_heading {
  margin-bottom: 35px;
}

.section_heading .heading_text {
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 18px;
}

.section_heading .heading_description {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
}

.section_heading .outline_text {
  font-size: 66px;
  line-height: 73px;
  margin-bottom: -44px;
}

/* 2.10 - Image - Start
================================================== */
.image_widget {
  overflow: hidden;
  position: relative;
  background-color: var(--bs-gray-dark);
}

.image_widget img {
  opacity: 0.7;
}

/* 2.13 Progressbar - Start
================================================== */

@-webkit-keyframes rx_width_90 {
  0% {
    width: 0%;
  }

  100% {
    width: 90%;
  }
}

@keyframes rx_width_90 {
  0% {
    width: 0%;
  }

  100% {
    width: 90%;
  }
}

@-webkit-keyframes rx_width_98 {
  0% {
    width: 0%;
  }

  100% {
    width: 98%;
  }
}

@keyframes rx_width_98 {
  0% {
    width: 0%;
  }

  100% {
    width: 98%;
  }
}

/* 2.18 - Counter - Start
================================================== */

.section_heading:has(.funfact_wrapper) {
  z-index: 1;
  position: relative;
  padding-left: 75px;
  margin-bottom: -60px;
}

/* 2.21 - IconBox - Start
================================================== */

.iconbox_hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.iconbox_hotline .item_icon {
  font-size: 40px;
  margin-right: 22px;
  color: var(--bs-primary);
}

.iconbox_hotline .item_title {
  color: #C2C2C2;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 4px;
  font-family: var(--bs-font-body);
}

.iconbox_hotline .hotline_number {
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  color: var(--bs-body-color);
  font-family: var(--bs-font-heading);
}

.iconbox_hotline .hotline_number:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}

/* 3.1 - Hero Section - Start
================================================== */
.hero_section {
  z-index: 1;
  position: relative;
}

.hero_section .hero_title {
  font-size: 66px;
  line-height: 73px;
  margin-bottom: 20px;
}

.hero_section p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  padding: 0 80px 34px 0;
}

.hero_section .outline_text {
  z-index: -1;
  font-size: 170px;
  line-height: 221px;
}

.hero_section_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: 61% 100%;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-position: right center;
  background-color: var(--bs-body-bg);
}

.hero-reviews {
  display: flex;
  gap: 20px;
  margin-bottom: 34px;
}

.hero_section_4 .outline_text {
  position: absolute;
}

.hero_section_4 .outline_text.outline_text_1 {
  left: 130px;
  top: -200px;
}

.hero_section_4 .outline_text.outline_text_2 {
  left: -220px;
  bottom: -230px;
}

/* 3.6 - Product - Start
================================================== */

.row:has(.feature_product_item) {
  margin: -50px;
}

.row:has(.feature_product_item)>[class*=col-] {
  padding: 50px;
}

/* Media Screen 1440px - Start
================================================== */
@media screen and (max-width: 1440px) {
  .hero_section_4 .outline_text.outline_text_2 {
    left: 0;
  }
}

/* Media Screen 1360px - Start
================================================== */
@media screen and (max-width: 1360px) {
  .hero_section .hero_title {
    font-size: 60px;
    line-height: 66px;
  }
}

/* Media Screen 1199px - Start
================================================== */
@media screen and (max-width: 1199px) {
  .section_heading .heading_text {
    font-size: 38px;
    line-height: 46px;
  }
}

/* Media Screen 1024px - Start
================================================== */
@media screen and (max-width: 1024px) {
  .section_space_lg {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .row:has(.feature_product_item) {
    margin: -30px -15px;
  }

  .row:has(.feature_product_item)>[class*=col-] {
    padding: 30px 15px;
  }

  .hero_section_4 {
    padding: 220px 0 180px;
    background-size: 62% 100%;
  }

  .hero_section .hero_title {
    font-size: 50px;
    line-height: 60px;
  }

  .hero_section_4 .outline_text.outline_text_1 {
    top: -120px;
  }

  .hero_section_4 .outline_text.outline_text_2 {
    bottom: -140px;
  }
}

/* Media Screen 991px - Start
================================================== */
@media screen and (max-width: 991px) {
  .container {
    max-width: 730px;
  }

  .hero_section .outline_text {
    line-height: 1;
    font-size: 110px;
  }

  .section_heading:has(.funfact_wrapper) {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .hero_section_4 {
    background-size: cover;
  }

  .section_heading {
    text-align: left !important;
  }
}

/* Media Screen 575px - Start
================================================== */
@media screen and (max-width: 575px) {
  .section_space_lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section_heading .heading_text {
    font-size: 32px;
    line-height: 40px;
  }

  .hero_section .hero_title {
    font-size: 50px;
    line-height: 54px;
  }

  .hero_section .outline_text {
    font-size: 70px;
  }

  .section_heading .outline_text {
    line-height: 1;
    font-size: 42px;
    margin-bottom: -26px;
  }

  body .hero_section_4 {
    padding: 180px 0 150px;
    padding: 140px 0px 140px;
  }

  .hero_section_4 .outline_text.outline_text_2 {
    bottom: -50px;
    bottom: -90px;
  }

  .hero_section_4 .outline_text.outline_text_1 {
    top: -30px;
    top: -60px;
    left: 80px;
  }

  .hero_section p {
    padding: 0 0 34px 0;
  }

  .hero_section_4 {
    padding: 150px 0 80px;
  }
}

/* Media Screen 425px - Start
================================================== */
@media screen and (max-width: 425px) {
  .btn {
    font-size: 16px;
    padding: 17px 30px;
  }

  .hero_section .hero_title {
    font-size: 46px;
    line-height: 54px;
  }
}






.custom-section section {
  padding: 100px 0px;
  margin: 0;

}

.container {
  max-width: 1600px;
}

.testimonials-section .swiper {
  max-width: none;
}

/* 
::-webkit-scrollbar {
  width: 5px;
}


::-webkit-scrollbar-track {
  border-radius: 5px;
background:#1f1f1f;
}

::-webkit-scrollbar-thumb {
  background: #ef0b14;
  border-radius: 5px;
} 
  
::-moz-selection 
color: red;
background:#a1a1a1;
}

::selection {
color: red;
background:#a1a1a1;
}

*/
@media (max-width: 1600px) {

  /* .container {
    margin: 0px 30px;
  } */
}





.about_section {
  background: var(--bs-gray-dark);
}

.about_section img {
  object-fit: cover;
  /* object-position: 0% 90% ;
  object-position: 0% 70% ; */
  aspect-ratio: 4/3;
  aspect-ratio: 8/5;
  opacity: 0.9;
  border-radius: 15px;
}

@media (max-width:768px) {
  .about_section img {
    /* object-position: 0% 65% ;
    aspect-ratio: 4/3; */
    aspect-ratio: unset;
    margin-bottom: 15px;
    border-radius: 10px;
  }
}

.hero_section .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0px;
  right: 0px;
}

.hero_section .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  opacity: 0.6;
  /* opacity: 0.55; */


}

.hero_section .outline_text {
  pointer-events: none;
}

.hero_section_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 240px 0 240px;
  padding: 300px 0 300px;

}

.swiper-pagination {}

.hero_section_4 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--bs-body-color);
}

.hero_section_4 .swiper-pagination-bullet-active {
  background: var(--bs-primary);
}

.splitting.animated .char {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.6s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(20ms * var(--char-index));
  animation-delay: calc(20ms * var(--char-index));
}

.hero_section .h-img-2 {
  background-position: bottom;
}

.hero_section .h-img-3 {
  /* background-position: 0% 50%; */
  background-position-y:60% ;
}

@media (max-width: 600px) {
  .hero_section .h-img-2 {
    /* background-position: bottom left; */
    background-position: 15% 50%;
  }

  .hero_section .h-img-3 {
    background-position: 8% 50%;
  }
  .hero_section .h-img-1 {
    background-position: 8% 50%;
  }
}







.portfolio-section img {
  border-radius: 20px;
  height: 516px;
  height: auto;
  height: 390px;
  height: 490px;
  width: 100%;
  object-fit: cover;
  height: 467px;
  /* height: 567px; */
  height: 645.5px;
  height: 550px;


}

@media (max-width :600px) {
  .portfolio-section img {
    height: auto;
    height: 260px;
    height: auto;
    height: 310px;
    width: 90%;
  }

}

@media (min-width:1024px) {
  .portfolio-section .portfolio-swiper {
    padding: 0% 7.8%;
    margin: 0;
  }
}

/* .swiper-button-next i, .swiper-button-prev i {
  font-size: 24px;
  color: #fff; 
} */

.portfolio-section .swiper-button-next,
.portfolio-section .swiper-button-prev {
  color: #000;
  /* Icon color */
  background: #fff;
  padding: 22px 22px;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  opacity: 0.7;
}

.portfolio-section .swiper-button-next:hover,
.portfolio-section .swiper-button-prev:hover {
  opacity: 1;
}

.portfolio-section .swiper-button-next::after,
.portfolio-section .swiper-button-prev::after {
  font-size: 12px;
  font-weight: bolder;

}

@media (min-width: 1024px) {
  .portfolio-section .swiper-button-next {
    right: calc(20% - 0px / 2);
  }

  .portfolio-section .swiper-button-prev {
    left: calc(20% - 0px / 2);
  }

}

/* .p-img-1 {
  object-position: 0% 25%;
}
.p-img-2 {
  object-position: 0% 30%;
}
.p-img-4{
  object-position: 0% 35%;
}
.p-img-6{
  object-position: 0% 35%;
} */
section.portfolio-section {
  padding-top: 0px;
}




@media (max-width:768px) {
  .theme-page-content>.theme-main {
    margin: 0px;
    width: unset;
  }

}


@media (max-width: 768px) {
  .hero_section_4 {
    padding: 200px 0 200px;
  }
}

.home-cta .theme-component-call-to-action {
  background: var(--bs-gray-dark);
}

.portfolio-section .btn-div {
  display: flex;
  /* justify-content: center; */
  margin-top: 35px;
}

.portfolio .btn-div .btn {}

@media (min-width: 1024px) {
  .portfolio-section .btn-div {

    /* justify-content: center;  */
  }
}





.workprocess_item {
  padding: 22px 80px 0 0;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  border-top: 1px solid var(--bs-border-color-translucent);
}

.workprocess_item:not(:last-child) {
  margin-bottom: 24px;
}

.workprocess_item .item_title {
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 14px;
}

.workprocess_item .item_title:has(mark, .item_icon) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.workprocess_item .serial_number {
  margin-right: 7px;
  color: var(--bs-primary);
}

@media screen and (max-width: 1199px) {
  .workprocess_item {
    padding: 22px 0 0 0;
  }
}

@media screen and (max-width: 991px) {

  .workprocess_item .item_title:has(mark, .item_icon) {
    display: block;
  }

}

@media screen and (max-width: 575px) {
  .workprocess_item {
    padding: 22px 0 0 0;
  }
}

.custom-section .about_section {
  padding-top: 100px;
  padding-bottom: 100px !important;
}

.trust-section .about_section {
  padding-top: 0px;
}

.trust-section img {
  /* object-position: 0% 60%; */
  /* aspect-ratio: 5/1 !important; */
  width: 100%;
  aspect-ratio: 6/6;
  object-position: 0% 20%;

}

@media(max-width:768px) {
  .trust-section img {
    aspect-ratio: 7/6;
    object-position: 0% 20%;
  }

}

.trust-section .about_section {
  letter-spacing: 0px;

}

.trust-section .about_section .about_content .row [class*=col-] {
  padding: 15px 0px !important;
  padding-bottom: 0px !important;

}

.trust-section .section_heading {
  margin-bottom: 3px;
}

.trust-section .about_section h3 {
  letter-spacing: unset;
}

.about_section img {
  border-radius: 10px;
  border-radius: 7px;
}

.trust-section img {
  /* margin-bottom: unset; */
}

.trust-section .btn {
  margin-top: 15px;
}

.price-out-your-service .vc_column-inner {
  margin-bottom: 0px !important;
}

.price-out-your-service .theme-component-header-subheader {
  margin-bottom: 0px !important;
}

@media(max-width:380px) {
  .hero-reviews img {
    width: 140px;
  }

  .hero_section .hero_title {
    font-size: 35px;
    line-height: 38px;
  }

  .hero_section p {
    font-size: 16px;
    line-height: 26px;
    line-height: 23px;
  }
}


.cbs-package-list>li {
  flex-basis: 350px;
}
footer [class*=col-] {
  padding: 0px;
}

.cbs-package-list > li > .cbs-package-duration
{
/* display: none; */
padding: 0px;
}
.cbs-package-list > li > .cbs-package-duration span
{
 display: none; 

}
.cbs-service-list > li > .cbs-service-duration {
  display: none !important;
}
.cbs-service-list>li>div.cbs-button-box {
  width: unset;
}