@import url("https://fonts.googleapis.com/css2?family=Marck+Script&family=Stalemate&family=Syne:wght@400;500;600;700;800&family=Yantramanav:wght@100;300;400;500;700;900&display=swap");
:root {
  --regular-font: 'Yantramanav', sans-serif;
  --heading-font: 'Syne', sans-serif;
  --cursive-font: 'Marck Script', cursive;
  --signature-font: 'Stalemate', cursive;
  --brand-clr: #f9b117;
  --brand-subclr: #212121;
  --heading-weight: 700;
  --body-clr: #fffbef;
  --transition-cm: all 0.25s ease;
  --heading-size: 32px;
}

a,
a:hover {
  text-decoration: none;
  color: currentColor;
}

a:active,
button:active,
input[type='button']:active {
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
  -webkit-transform: scale(0.98) !important;
          transform: scale(0.98) !important;
  outline: 0;
}

.offcanvas-backdrop.show {
  opacity: .7;
}

body {
  background-color: var(--body-clr);
  font-family: var(--regular-font);
  -webkit-font-smoothing: antialiased;
}

.hero_btn {
  position: relative;
  overflow: hidden;
  padding: 6px 20px;
  border-radius: 4px;
  color: var(--brand-subclr);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px var(--brand-subclr);
  background-color: var(--body-clr);
  font-weight: 500;
  z-index: 1;
}

.hero_btn::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--brand-clr) 0%, #bf8b1b 100%);
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
  left: -100%;
  top: 0;
  z-index: -1;
}

.hero_btn:hover::after {
  left: 0;
  right: auto;
}

.hero_btn:hover {
  color: #fff;
  border-color: var(--brand-clr);
}

.heading {
  position: relative;
}

@media only screen and (max-width: 480px) {
  .heading {
    width: 100% !important;
  }
}

.heading h6 {
  font-size: 20px;
  font-family: var(--cursive-font);
  font-weight: 600;
  color: var(--brand-subclr);
}

@media only screen and (max-width: 480px) {
  .heading h6 {
    font-size: 18px !important;
  }
}

.heading h2 {
  font-size: 50px;
  font-weight: 600;
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
  .heading h2 {
    font-size: 28px !important;
    line-height: normal !important;
  }
}

.heading h2 span {
  color: var(--brand-subclr);
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

.heading h2.display span {
  color: var(--brand-clr);
}

.heading p {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--brand-subclr);
  opacity: 0.8;
}

header {
  top: 0;
}

header .navbar .navbar-brand a {
  display: block;
}

header .navbar .navbar-brand a img {
  width: 170px;
}

header .navbar .navbar-nav {
  gap: 10px;
}

header .navbar .navbar-nav .getQuote {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  padding: 7px 20px;
  border-radius: 30px;
  background: #ffefd7;
  cursor: pointer;
  color: #000;
  margin: 0 8px;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

header .navbar .navbar-nav .getQuote:hover {
  background: #f9b117;
}

header .navbar .navbar-nav .nav-item .nav-link {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
  color: var(--brand-subclr);
  position: relative;
}

header .navbar .navbar-nav .nav-item .nav-link:hover, header .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--brand-clr);
}

header .navbar .navbar-nav .nav-item .nav-link:hover::after {
  background-color: var(--brand-subclr);
  opacity: 1;
}

header .navbar .navbar-nav .nav-item .nav-link.active::after {
  background-color: var(--brand-clr);
  opacity: 1;
}

header .navbar .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-clr);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  opacity: 0;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

.slide_menu {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff0db), to(#ffe9cb));
  background: linear-gradient(180deg, #fff0db, #ffe9cb);
}

.slide_menu .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

.slide_menu .btn-close:hover {
  -webkit-transform: rotate(360deg) scale(1.05);
          transform: rotate(360deg) scale(1.05);
}

.slide_menu .btn-close:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.slide_menu .offcanvas-body {
  position: relative;
  padding: 4rem 2rem;
}

@media only screen and (max-width: 480px) {
  .slide_menu .offcanvas-body {
    padding: 3rem 1.5rem;
  }
}

.slide_menu .offcanvas-body ul.slide_menu li {
  position: relative;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: var(--transition-cm);
  font-size: 18px;
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.slide_menu .offcanvas-body ul.slide_menu li:hover {
  padding-left: 25px;
}

.slide_menu .offcanvas-body ul.slide_menu li::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--brand-subclr);
  top: 13px;
  left: 0;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

.slide_menu .offcanvas-body ul.slide_menu li:hover::after {
  width: 15px;
}

.slide_menu .offcanvas-body .slide_menuFooter {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid #ffe0b1;
}

.slide_menu .offcanvas-body .slide_menuFooter ul li {
  width: 40px;
  height: 40px;
  background-color: #fff7ea;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
  border-radius: 5px;
}

.slide_menu .offcanvas-body .slide_menuFooter ul li:hover {
  background-color: #ffe9ba;
}

.slide_menu .offcanvas-body .slide_menuFooter ul li a {
  display: block;
  width: 100%;
  line-height: 40px;
  text-align: center;
}

#hero_section {
  position: relative;
  padding: 6rem 0;
  height: 100vh;
  background: #7b51ee;
  background: radial-gradient(circle, #7b51ee 0%, #761fa5 100%);
  background: radial-gradient(circle, #80afc0 0%, #4fc4b4 100%);
  background: radial-gradient(circle, #87e3fa 0%, #af97f0 100%);
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #hero_section {
    height: auto;
    padding: 6rem 0 0;
  }
}

#hero_section::before {
  position: absolute;
  content: '';
  top: 0px;
  width: 100%;
  background-image: url(../images/hero_before.webp);
  background-size: contain;
  background-position: bottom;
  height: 100%;
  z-index: -1;
  background-repeat: repeat-x;
  opacity: 0.4;
  -webkit-animation: shake 8s linear infinite forwards;
          animation: shake 8s linear infinite forwards;
}

#hero_section .hero_leftWrapper {
  position: relative;
  margin-top: 100px;
}

@media only screen and (max-width: 480px) {
  #hero_section .hero_leftWrapper {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 480px) {
  #hero_section .hero_leftWrapper .heading h2 {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0px;
  }
  #hero_section .hero_leftWrapper .heading .hero_btn {
    margin: auto;
  }
}

#hero_section .hero_leftWrapper .heading p {
  padding-left: 30px;
  font-weight: 400;
  margin-left: 30px;
  border-left: 2px solid var(--brand-clr);
}

@media only screen and (max-width: 480px) {
  #hero_section .hero_leftWrapper .heading p {
    border-left: unset;
    margin-left: 0;
    padding-left: 0;
  }
}

#hero_section .hero_rightWrapper .img-fluid {
  height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 500px;
}

@media only screen and (max-width: 480px) {
  #hero_section .hero_rightWrapper .img-fluid {
    height: auto;
    max-height: 250px;
    position: static;
  }
}

#getaQuote .btn-close {
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

#getaQuote .btn-close:hover {
  -webkit-transform: rotate(360deg) scale(1.05);
          transform: rotate(360deg) scale(1.05);
}

#getaQuote .btn-close:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#getaQuote label {
  font-size: 14px;
  color: var(--brand-subclr);
  font-weight: 500;
}

#getaQuote label .star {
  color: #f10000;
}

#getaQuote .form-control, #getaQuote .form-select {
  height: 40px;
  border-radius: 0;
  margin: 5px 0;
  font-size: 15px;
}

#getaQuote .form-control:focus, #getaQuote .form-select:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-color: var(--brand-clr);
}

@media only screen and (max-width: 480px) {
  .quote_leftImages {
    display: none;
  }
}

#services_section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #services_section {
    padding: 3rem 0;
  }
  #services_section .hero_btn {
    margin-top: 20px;
  }
}

#services_section::after {
  position: absolute;
  content: '';
  bottom: 30px;
  width: 100%;
  background-image: url(https://malusinfotech.com/shakti/malus/public/images/backdrops/footer-shape2.png);
  background-size: contain;
  background-position: bottom;
  height: 100%;
  z-index: -1;
  background-repeat: repeat-x;
  opacity: .5;
}

#services_section .heading h2 {
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 50px;
  font-size: 45px;
}

#services_section .services_sectionWrapper {
  position: relative;
  padding: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
  height: 100%;
}

#services_section .services_sectionWrapper .services_sectionImg {
  width: 100px;
  height: 100px;
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #c38e1c, #ffe935);
  margin: 0 auto 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#services_section .services_sectionWrapper .services_sectionText h4 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  padding: 0 20px;
}

#services_section .services_sectionWrapper .services_sectionText p {
  color: #565656;
}

#technologies {
  position: relative;
  padding: 6rem 0;
  background-color: var(--brand-clr);
}

@media only screen and (max-width: 480px) {
  #technologies {
    padding: 3rem 0;
  }
}

@media only screen and (max-width: 480px) {
  #technologies .tech_leftWrapper .heading {
    margin-top: 0 !important;
  }
}

#technologies .tech_leftWrapper .heading p {
  color: #fff;
  opacity: 1;
  font-size: 20px;
  line-height: 28px;
}

#testimonial_section {
  position: relative;
  padding: 6rem 0;
}

@media only screen and (max-width: 480px) {
  #testimonial_section {
    padding: 3rem 0 1.5rem;
  }
}

#testimonial_section .swiper-slide {
  height: 100%;
}

#testimonial_section .swiper-slide .testomonial_sliderOuter {
  position: relative;
  padding: 20px;
  margin: 25px 20px 50px;
  height: 100%;
  background-color: #fff5d9;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 480px) {
  #testimonial_section .swiper-slide .testomonial_sliderOuter {
    margin: 0 0 50px 0;
  }
}

#testimonial_section .swiper-slide .testomonial_sliderOuter p {
  font-family: var(--cursive-font);
  font-size: 20px;
  font-weight: 500;
}

#testimonial_section .swiper-slide .testomonial_sliderOuter h6 {
  font-family: var(--signature-font);
  font-weight: 600;
  font-size: 24px;
  color: var(--brand-clr);
  margin-bottom: 0;
  letter-spacing: 2px;
}

#testimonial_section .swiper-slide .testomonial_sliderOuter span {
  font-family: var(--cursive-font);
}

#testimonial_section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  outline: 1px solid #000000;
  opacity: .4;
}

#testimonial_section .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#testimonial_section .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#testimonial_section .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: black;
  outline: 1px solid #000000;
  outline-offset: 4px;
}

#testimonial_section .swiper-button-next {
  width: 50px;
  height: 50px;
  z-index: 10;
  color: #fff;
  border-radius: 50%;
  background: #00000054;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#testimonial_section .swiper-button-next:after {
  font-size: 25px;
}

#testimonial_section .swiper-button-prev:after {
  font-size: 25px;
}

footer {
  background-image: url(../images/footer-bg.jpg);
  padding: 4rem 0 1rem;
  color: #fff;
}

footer .chat-icon {
  position: fixed;
  bottom: 20px;
  z-index: 99;
  right: 20px;
}

footer .chat-icon img {
  width: 45px;
}

footer h3.footer_heading {
  font-size: 20px;
  font-family: var(--heading-font);
  color: var(--brand-clr);
  padding-bottom: 5px;
  border-bottom: 1px dashed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}

footer .hero_text {
  color: #c4c4c4;
}

footer .slide_menuInner li {
  position: relative;
  color: #c4c4c4;
  font-weight: 300;
  margin-bottom: 6px;
  -webkit-transition: var(--transition-cm);
  transition: var(--transition-cm);
}

footer .slide_menuInner li:hover {
  color: #ffffff;
}

#breadcrumb_sec {
  background-color: #fff;
  padding: 180px 0;
  position: relative;
  top: 76.55px;
  text-align: center;
  margin-bottom: 76.55px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #breadcrumb_sec {
    padding: 70px 0;
  }
  #breadcrumb_sec.poslft {
    background-position: left !important;
  }
  #breadcrumb_sec.posrgt {
    background-position: right !important;
  }
}

#about_section {
  position: relative;
  padding: 5rem 0;
  background-color: #ffffff;
}

#about_sectionBottom {
  position: relative;
  padding: 3rem 0;
}

@media only screen and (max-width: 480px) {
  #about_sectionBottom .about_sectionBottom {
    width: 100% !important;
  }
  #about_sectionBottom .about_sectionBottom .col-lg-4 img {
    display: none;
  }
}

#contact_section {
  position: relative;
  padding: 5rem 0;
}

@media only screen and (max-width: 480px) {
  #contact_section {
    padding: 2rem 0;
  }
}

#contact_section iframe {
  padding-top: 3rem;
  height: 100%;
}

#contact_section #getaQuote {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}

#contact_section .contact_wrapper {
  background-color: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media only screen and (max-width: 480px) {
  #contact_section .contact_wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

#contact_section .contact_wrapper img {
  width: 100px;
  border-radius: 10px;
}

@media only screen and (max-width: 480px) {
  #contact_section .contact_wrapper img {
    width: 50px;
  }
}

#contact_section .contact_wrapper a {
  display: block;
}
/*# sourceMappingURL=style.css.map */