@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: Sofia Pro;
  src: url(../fonts/sofiapro-light.otf) format("opentype");
}

:root {
  --cursive-font: 'Caveat', cursive;
  --regular-font: 'Open Sans', sans-serif;
  --heading-font: Sofia Pro;
  --rubik-font: 'Rubik', sans-serif;
  --brand-clr: #4c1348;
  --brand-subclr: #eab02e;
}

body {
  font-family: var(--heading-font);
  -webkit-font-smoothing: antialiased;
}

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

.readmore {
  text-decoration: none;
  position: relative;
  padding: 0 10px;
  margin-left: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 50px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}

.readmore:hover {
  color: crimson;
  margin-right: 20px;
}

.readmore::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 25px;
  left: 100%;
  background-color: #000000;
  top: 10px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.readmore:hover::before {
  width: 0;
  background-color: crimson;
}

.heading h2 {
  font-size: 40px;
  font-family: var(--regular-font);
  font-weight: bold;
  margin-bottom: 0;
  line-height: 50px;
  color: #000000;
  letter-spacing: -1px;
}

.heading h2 span.clr_red {
  color: var(--brand-subclr);
}

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

.heading h2 span.ylw {
  color: var(--brand-subclr);
}

@media only screen and (max-width: 768px) {
  .heading h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0px;
  }
}

.heading.big_p p {
  font-size: 18px;
  line-height: 26px;
}

.heading h6 {
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000000;
}

@media only screen and (max-width: 768px) {
  .heading h6 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.heading p {
  font-size: 16px;
  margin: 15px 0 0;
  line-height: 24px;
  color: #000000;
}

@media only screen and (max-width: 768px) {
  .heading p {
    margin: 5px 0 0;
  }
}

.heading.text_white h2 {
  color: #ffffff;
}

.heading.text_white h6 {
  color: #ffffff;
}

.heading.text_white p {
  color: #ffffff;
}

.mb-30 {
  margin-bottom: 30px;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

#hero_section {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

#hero_section .down_arrowSection {
  display: block;
}

#hero_section .down_arrowSection img {
  position: absolute;
  width: 25px;
  z-index: 10;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#hero_section .hero_sliderWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  color: #ffffff;
}

#hero_section .hero_sliderWrapper .heading {
  margin-top: 180px;
}

@media only screen and (max-width: 992px) {
  #hero_section .hero_sliderWrapper .heading {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 480px) {
  #hero_section .hero_sliderWrapper .heading {
    margin-top: 0px;
  }
}

#hero_section .hero_sliderWrapper .heading h6 {
  -webkit-text-stroke: 0.7px #ffc959;
  -webkit-text-fill-color: transparent;
  font-family: 'Open Sans';
  font-weight: 900;
  font-size: 24px;
}

@media only screen and (max-width: 992px) {
  #hero_section .hero_sliderWrapper .heading h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
  }
}

#hero_section .hero_sliderWrapper .heading h6 span {
  color: var(--brand-subclr);
}

#hero_section .hero_sliderWrapper .heading h2 {
  font-family: var(--rubik-font);
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
  color: #ffffff;
  max-width: 735px;
  margin: 0 auto;
  letter-spacing: 1px;
  text-transform: unset;
}

@media only screen and (max-width: 992px) {
  #hero_section .hero_sliderWrapper .heading h2 {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
  }
}

#hero_section .hero_overlay {
  position: relative;
  z-index: 1;
}

#hero_section .hero_overlay::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #000000;
  z-index: 0;
  opacity: 0.5;
}

#hero_section .hero_overlay .bg-img .img-fluid {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 768px) {
  #hero_section .hero_overlay .bg-img {
    height: 80vh;
  }
}

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

#hero_section .swiper-button-prev,
#hero_section .swiper-rtl .swiper-button-next {
  left: 70px;
}

#hero_section .swiper-button-next,
#hero_section .swiper-rtl .swiper-button-prev {
  right: 70px;
}

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

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

#hero_section .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #fff;
  outline: 1px solid #ffffff;
  outline-offset: 4px;
}

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

@media only screen and (max-width: 768px) {
  #hero_section .swiper-button-next {
    width: 35px;
    height: 35px;
    right: auto;
    top: auto;
    left: 80px;
    bottom: 30px;
  }
}

#hero_section .swiper-button-next:hover {
  background: #000000;
}

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

@media only screen and (max-width: 768px) {
  #hero_section .swiper-button-next:after {
    font-size: 15px;
  }
}

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

@media only screen and (max-width: 768px) {
  #hero_section .swiper-button-prev {
    width: 35px;
    height: 35px;
    left: 30px;
    top: auto;
    bottom: 30px;
  }
}

#hero_section .swiper-button-prev:hover {
  background: #000000;
}

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

@media only screen and (max-width: 768px) {
  #hero_section .swiper-button-prev:after {
    font-size: 15px;
  }
}

#hero_section .swiper-slide-active .heading.text_white h2 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

#hero_section .swiper-slide-active .heading.text_white h6 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

#hero_section .swiper-slide-active .heading.text_white a {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  background: #000000;
  padding: 10px 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  border-radius: 5px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#hero_section .swiper-slide-active .heading.text_white a:hover {
  background-color: var(--brand-clr);
}

.scroll_spy {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.scroll_spy::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 30px;
  background-color: #c3c3c3;
  top: 0;
  left: 0;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.scroll_spy:hover::after {
  width: 50px;
  height: 3px;
  background-color: #000000;
}

.scroll_spy:hover span {
  opacity: 1;
  width: auto;
  height: auto;
  overflow: unset;
}

.scroll_spy span {
  -webkit-transition: all .25s;
  transition: all .25s;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  display: block;
  position: absolute;
  white-space: nowrap;
  margin-top: 5px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.scroll_spy.active {
  margin-bottom: 50px;
}

.scroll_spy.active::after {
  width: 50px;
  height: 3px;
  background-color: #000000;
}

.scroll_spy.active span {
  opacity: 1;
  width: auto;
  height: auto;
  overflow: unset;
}

.scroll_spy.active.clrwht::after {
  background-color: #ffffff;
}

.scroll_spy.active.clrwht span {
  color: #ffffff;
}

header {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

header #logomt {
  display: none;
}

header.test {
  background-color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: fixed !important;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

header.test .toggle.clr_wht span {
  background-color: #000000 !important;
}

header.test .navbar-brand #logow {
  display: none;
}

header.test .navbar-brand #logomt {
  display: block;
}

header.test .toggle {
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ebebeb;
}

header .navbar-expand-lg .navbar-nav .nav-link {
  font-size: 16px;
  font-family: var(--regular-font);
  font-weight: 500;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  letter-spacing: .4px;
  color: #ffffff;
}

header .navbar-expand-lg .navbar-nav .nav-link:hover {
  opacity: 0.8;
}

header .navbar-nav .drop_down {
  position: relative;
  padding-right: 20px;
}

header .navbar-nav .drop_down::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../icons/caret.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  right: 4px;
  -webkit-transition: all .23s;
  transition: all .23s;
  top: 13px;
}

header .navbar-nav .drop_down:hover::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header .navbar-nav .drop_down:hover .dropdown_menu {
  display: block;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

header .navbar-nav .drop_down .dropdown_menu {
  position: absolute;
  width: 10rem;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  display: none;
  -webkit-animation-name: fadeDrop;
  animation-name: fadeDrop;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeDrop {
  0% {
    opacity: 0;
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeDrop {
  0% {
    opacity: 0;
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

header .navbar-nav .drop_down .dropdown_menu li.drop_menuLinks {
  border-bottom: 1px solid #e5e5e5;
}

header .navbar-nav .drop_down .dropdown_menu li.drop_menuLinks:last-child {
  border: unset;
}

header .navbar-nav .drop_down .dropdown_menu li.drop_menuLinks a {
  line-height: 40px;
  display: block;
  padding: 0 10px;
  font-size: 14px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

header .navbar-nav .drop_down .dropdown_menu li.drop_menuLinks a::after {
  position: absolute;
  content: '';
  background-color: var(--brand-clr);
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: all .25s;
  transition: all .25s;
  z-index: -1;
}

header .navbar-nav .drop_down .dropdown_menu li.drop_menuLinks a:hover {
  color: #ffffff;
}

header .navbar-nav .drop_down .dropdown_menu li.drop_menuLinks a:hover::after {
  left: 0;
}

header.test .drop_down::after {
  background-image: url(../icons/caretb.svg);
}

.side_menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 60px;
  background-color: #ffffff;
  padding: 10px;
  z-index: 100000;
}

.toggle {
  position: relative;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  background-color: #ffffff;
}

.toggle span {
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000000;
  left: 24px;
}

.toggle span:nth-child(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  width: 25px;
  left: 15px;
  left: 12px;
}

.toggle span:nth-child(2) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  width: 25px;
  left: 12px;
}

@media only screen and (max-width: 768px) {
  .slide_menu p {
    display: none;
  }
}

.slide_menu .offcanvas-header {
  padding: 5% 10% 0;
}

@media only screen and (max-width: 768px) {
  .slide_menu .offcanvas-header {
    padding: 1.2rem;
  }
}

.slide_menu .offcanvas-body {
  padding: 3% 10% 0;
}

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

.navbar_menu .navbar-nav {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .navbar_menu .navbar-nav {
    margin-bottom: 20px;
  }
}

.navbar_menu .navbar-nav li {
  max-width: 50%;
  width: 100%;
  font-size: 40px;
}

@media only screen and (max-width: 768px) {
  .navbar_menu .navbar-nav li {
    max-width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.navbar_menu .navbar-nav li a {
  text-decoration: none;
  color: currentColor;
  font-family: var(--regular-font);
  font-weight: 700;
  letter-spacing: .5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.navbar_menu .navbar-nav li.active a {
  -webkit-text-stroke: 1px black;
  -webkit-text-fill-color: transparent;
}

.navbar_menu .navbar-nav a:hover {
  -webkit-text-stroke: 1px black;
  -webkit-text-fill-color: transparent;
}

.social_menu {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  z-index: 111;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border: 1px solid #2f39d3;
}

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

  .social_menu {
    display: none;
  }
}

.social_menu ul {
  padding-left: 10px;
  margin: 0;
}

.social_menu ul li {
  padding: 5px;
  border-radius: 50%;
}

.social_menu ul li:hover {
  padding: 5px;
  background: #fff;
  -webkit-box-shadow: 3px 5px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 5px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.social_menu ul li:hover img {
  -webkit-filter: unset;
          filter: unset;
}

.social_menu ul li img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.side_menu .social_menu ul::after {
  width: 2px;
  height: 30px;
  background-color: #696969;
  right: auto;
  top: 100%;
}

.slide_menu.offcanvas.offcanvas-start {
  width: 70%;
  background: linear-gradient(103deg, #fffbfc 0%, #e6e4ff 50%, #fff7f2 100%);
}

@media only screen and (max-width: 768px) {
  .slide_menu.offcanvas.offcanvas-start {
    width: 100%;
  }
}

.slide_menu.offcanvas::after {
  position: absolute;
  content: '';
  width: 0%;
  top: 0;
  height: 100%;
  background-color: #ffffff;
  left: 100%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .4s;
  transition: all .4s;
  opacity: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.1);
}

.slide_menu.offcanvas.offcanvas-start.show {
  -webkit-transition-delay: .0s;
          transition-delay: .0s;
}

.slide_menu.offcanvas.offcanvas-start.show::after {
  width: 50%;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.slide_menu .btn-close {
  position: absolute;
  top: 30px;
  left: 135%;
  z-index: 1;
  border: 1px solid #343434;
  padding: 10px;
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  .slide_menu .btn-close {
    left: auto;
    right: 30px;
  }
}

.slide_menu .btn-close:focus {
  border-color: #000000;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.slide_menu .paynow {
  color: #fff;
  background: green;
  padding: 8px 20px;
  border-radius: 20px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .slide_menu .paynow {
    border-radius: 25px;
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 0px;
  }
}

.slide_menu .paynow:hover {
  background-color: #0a970a;
}

.slide_menu .slide_menuInner {
  display: none;
}

@media only screen and (max-width: 880px) {
  .slide_menu .slide_menuInner {
    display: block;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 880px) {
  #scroll_detect {
    display: none;
  }
}

#service_section {
  padding: 5rem 0;
  z-index: 1;
  background: linear-gradient(103deg, #fff6f9 0%, #fbfffe 50%, #f6f6ff 100%);
}

@media only screen and (max-width: 1600px) {
  #service_section {
    padding: 7rem 0;
  }
}

@media only screen and (max-width: 1366px) {
  #service_section {
    padding: 5rem 0;
  }
}

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

#service_section .dividers {
  width: 100%;
  height: 4px;
  background: #e2e2e2;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  #service_section .dividers {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #service_section .services_outer {
    height: auto !important;
  }
}

@media only screen and (max-width: 768px) {
  #service_section .services_outerWrapper {
    height: auto !important;
  }
}

#service_section .services_outerWrapper:hover .services_innerBottomWrapper {
  background-color: #2f39d3;
  outline-color: #d2e1ff;
}

#service_section .services_outerWrapper .services_innerTopWrapper {
  margin: 0 0px 70px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
  padding: 20px 25px;
  position: relative;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  text-align: center;
}

@media only screen and (max-width: 1600px) {
  #service_section .services_outerWrapper .services_innerTopWrapper {
    margin: 0 15px 90px;
  }
}

@media only screen and (max-width: 1366px) {
  #service_section .services_outerWrapper .services_innerTopWrapper {
    margin: 0 0px 70px;
  }
}

@media only screen and (max-width: 768px) {
  #service_section .services_outerWrapper .services_innerTopWrapper {
    margin: 20px 0 0;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.04);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.04);
  }
}

#service_section .services_outerWrapper .services_innerTopWrapper::after {
  content: '';
  width: 22px;
  height: 22px;
  background-color: transparent;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: auto;
  z-index: -1;
  -webkit-transform: translateX(-50%) rotate(130deg) skew(-10deg);
          transform: translateX(-50%) rotate(130deg) skew(-10deg);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  background-color: #ffffff;
  opacity: 0;
}

#service_section .services_outerWrapper .services_innerTopWrapper:hover {
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.11);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.11);
}

#service_section .services_outerWrapper .services_innerTopWrapper:hover::after {
  bottom: -8px;
  opacity: 1;
}

#service_section .services_outerWrapper .services_innerTopWrapper h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  line-height: 24px;
}

#service_section .services_outerWrapper .services_innerTopWrapper p {
  font-size: 16px;
  margin: 0;
  line-height: 22px;
}

#service_section .services_outerWrapper .services_innerBottomWrapper {
  width: 8px;
  height: 8px;
  background-color: #000000;
  border-radius: 50%;
  position: absolute;
  bottom: -6px;
  outline: 6px solid white;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  #service_section .services_outerWrapper .services_innerBottomWrapper {
    display: none;
  }
}

#service_section .reverseDiv .services_innerTopWrapper {
  margin: 70px 0px 0 !important;
}

@media only screen and (max-width: 1600px) {
  #service_section .reverseDiv .services_innerTopWrapper {
    margin: 90px 15px 0 !important;
  }
}

@media only screen and (max-width: 1366px) {
  #service_section .reverseDiv .services_innerTopWrapper {
    margin: 70px 0px 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  #service_section .reverseDiv .services_innerTopWrapper {
    margin: 20px 0px 0 !important;
  }
}

.reverseDiv .services_innerTopWrapper {
  margin: 70px 10px 0 !important;
}

.reverseDiv .services_innerBottomWrapper {
  bottom: auto !important;
  top: -96px !important;
}

.reverseDiv .services_innerTopWrapper:hover::after {
  bottom: auto !important;
  top: -6px !important;
}

.reverseDiv .service_topLeftWrapper {
  margin-top: 100px !important;
  padding-left: 100px;
}

@media only screen and (max-width: 768px) {
  .reverseDiv .service_topLeftWrapper {
    margin-top: 40px !important;
    padding-left: 0px;
  }
}

#work_flowSection {
  position: relative;
  padding: 5rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#841b9f), color-stop(#3c0d56), to(#1d012c));
  background: linear-gradient(180deg, #841b9f, #3c0d56, #1d012c);
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #work_flowSection {
    overflow: hidden;
    padding: 3rem 0 2rem;
  }
}

#work_flowSection::after {
  position: absolute;
  content: '';
  width: 400px;
  height: 100%;
  background-image: url(../images/bg-lines-main.png);
  right: 0;
  top: 0;
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: .1;
}

@media only screen and (max-width: 768px) {
  #work_flowSection .heading {
    width: 100% !important;
  }
  #work_flowSection .heading p {
    font-size: 15px !important;
    line-height: 22px !important;
  }
}

#work_flowSection .work_flowContainer {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}

#work_flowSection .work_flowContainer::after {
  z-index: 2;
  z-index: -2;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  inset: 0;
  background: transparent;
}

#work_flowSection .work_flowContainer .work_flowOuter {
  position: relative;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowInner span {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #FF7979;
  font-weight: 500;
  font-family: var(--regular-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  #work_flowSection .work_flowContainer .work_flowOuter.bgarrw1 {
    padding-bottom: 80px;
  }
  #work_flowSection .work_flowContainer .work_flowOuter.bgarrw1 .work_flowInner {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter.bgarrw1::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 25px;
  background-image: url(../icons/bigarrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 120px;
  left: 41%;
}

@media only screen and (max-width: 768px) {
  #work_flowSection .work_flowContainer .work_flowOuter.bgarrw1::after {
    width: 70px;
    height: 70px;
    top: auto;
    left: 30%;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
    bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter.bgarrw2 {
    margin-bottom: 20px;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter.bgarrw2::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 25px;
  background-image: url(../icons/bigarrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 120px;
  left: 66%;
}

#work_flowSection .work_flowContainer .work_flowOuter h5 {
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter h5 {
    margin-bottom: 15px;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .big_left {
  width: 110px;
  height: 110px;
  padding: 30px;
  border-radius: 50%;
  outline: 1px solid #ffd8d8;
  margin: 40px auto 0;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

#work_flowSection .work_flowContainer .work_flowOuter .big_left img {
  width: 100%;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowLeft .big_left {
  width: 100px;
  height: 100px;
  padding: 20px;
  margin-top: 27px;
}

@media only screen and (max-width: 768px) {
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowLeft .big_left {
    width: 80px;
    height: 80px;
    padding: 15px;
    margin-top: 0px;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowLeft .big_left.dashedBigleft {
  position: relative;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowLeft .big_left.dashedBigleft::after {
  width: 10px;
  height: 2px;
  position: absolute;
  content: '';
  left: calc(100% + 7px);
  background-color: #FF7979;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter span,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight span {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffbf3b;
  font-weight: 500;
  font-family: var(--regular-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-top li,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-top li {
  position: relative;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-top li::after,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-top li::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 2px;
  background-color: #ffbf3b;
  top: 65%;
  left: calc(100% + -5px);
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-top li:last-child::after,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-top li:last-child::after {
  display: none;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-middle,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-middle {
  padding: 20px;
  border-radius: 50%;
  outline: 1px solid #edd7a3;
  margin: 0 10px;
  width: 85px;
  position: relative;
  height: 85px;
  z-index: 1;
  background: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-middle,
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-middle {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-middle img,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-middle img {
  width: 100%;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom {
  margin: 0 auto;
  padding-top: 35px;
  position: relative;
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom,
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom {
    max-width: 336px;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom::after,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom::after {
  position: absolute;
  content: '';
  height: 76%;
  width: 1px;
  border: 1px dashed #c3c3c3;
  left: 16%;
  top: 0;
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom::after,
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom::after {
    left: 22%;
    height: 78%;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom::before,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom::before {
  position: absolute;
  content: '';
  height: 76%;
  width: 1px;
  border: 1px dashed #c3c3c3;
  right: 16%;
  top: 0;
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom::before,
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom::before {
    right: 22%;
    height: 78%;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle {
  margin: 0 auto;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle::after, #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle::before,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle::after,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle::before {
  position: absolute;
  content: '';
  height: 1px;
  width: 77%;
  border: 1px dashed #c3c3c3;
  bottom: 37.5px;
}

@media only screen and (max-width: 480px) {
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle::after, #work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle::before,
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle::after,
  #work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle::before {
    bottom: 32.5px;
  }
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle::after,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle::after {
  right: 100%;
}

#work_flowSection .work_flowContainer .work_flowOuter .work_flowCenter .sm-buttom .sm-middle::before,
#work_flowSection .work_flowContainer .work_flowOuter .work_flowRight .sm-buttom .sm-middle::before {
  left: 100%;
}

#technology_section {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9b11a), color-stop(#b77c02), to(#a97304));
  background: linear-gradient(180deg, #f9b11a, #b77c02, #a97304);
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  background: #f9b11a;
}

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

#technology_section::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../images/process_bg.svg);
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  background-attachment: fixed;
  opacity: 0.2;
}

header {
  -webkit-transition: top .5s ease-in-out;
  transition: top .5s ease-in-out;
}

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

header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: var(--brand-subclr);
  font-weight: 600;
}

header .navbar-expand-lg .navbar-nav .nav-link {
  font-size: 17px;
  font-family: var(--regular-font);
  font-weight: 500;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  letter-spacing: .4px;
}

header .navbar-expand-lg .navbar-nav .nav-link:hover {
  opacity: 0.8;
}

header a.quote_popup.nav-link {
  padding: 8px 20px !important;
  display: block;
  margin-right: 20px;
  border-radius: 30px;
  background: #ffffff2b;
}

header.test .navbar-expand-lg .navbar-nav .nav-link {
  color: #000000 !important;
}

header.test .nav-item.active .nav-link {
  color: var(--brand-clr) !important;
  font-weight: 600;
}

header.test a.quote_popup.nav-link {
  background: #00000008;
  -webkit-transition: all .25s;
  transition: all .25s;
}

header.test a.quote_popup.nav-link:hover {
  background: var(--brand-clr);
  color: #ffffff !important;
}

#masonary_layouts {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(103deg, #fff6f9 0%, #edfffb 50%, #ebebff 100%);
  z-index: 1;
  margin-bottom: 516px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts {
    margin-bottom: 0px;
    padding: 3rem 0;
  }
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .col-lg-4.col-md-4.pe-0 {
    padding-right: 12px !important;
  }
}

#masonary_layouts .hiring_wrapper {
  position: relative;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter {
  background: #ffffff;
  position: relative;
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperImg {
  position: relative;
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperImg .img-fluid {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText {
  position: relative;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText {
    padding-bottom: 10px;
  }
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #a3a3a3;
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText h6 {
  padding: 1rem 0 1rem 2rem;
  text-transform: uppercase;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
  letter-spacing: 2px;
  color: #5444ad;
  font-weight: bold;
  margin: 0;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText h6 {
    padding: 1rem;
  }
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText h3 {
  max-width: 25rem;
  font-weight: 700;
  font-style: normal;
  color: #464646;
  line-height: 26px;
  margin: 1rem 2rem 2rem 2rem;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText h3 {
    margin: 1rem;
  }
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 1.5rem 2rem 1rem 3rem;
  padding-left: 1rem;
  border-left: 1px solid #fa0;
  font-size: 15px;
  line-height: 20px;
  height: 100px;
  text-overflow: ellipsis;
}
#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText p {
    display:none;
}
#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText.shw p {
   display: -webkit-box;
}

#masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText p:nth-child(1){
    display: block;
}
@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText p {
    margin: 1.5rem 2rem 1rem 2rem;
  }
}

#masonary_layouts .hiring_wrapper .swiper-horizontal > .swiper-pagination-bullets,
#masonary_layouts .hiring_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
#masonary_layouts .hiring_wrapper .swiper-pagination-custom,
#masonary_layouts .hiring_wrapper .swiper-pagination-fraction {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 25%;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .swiper-horizontal > .swiper-pagination-bullets,
  #masonary_layouts .hiring_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
  #masonary_layouts .hiring_wrapper .swiper-pagination-custom,
  #masonary_layouts .hiring_wrapper .swiper-pagination-fraction {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

#masonary_layouts .hiring_wrapper .swiper-pagination-bullet {
  outline: 1px solid #fff;
  opacity: 1;
  background: unset;
  width: 6px;
  height: 6px;
  border-radius: 0;
  margin: 0 5px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .swiper-pagination-bullet {
    outline: 1px solid black;
  }
}

#masonary_layouts .hiring_wrapper .swiper-pagination-bullet-active {
  background: #ffffff;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .hiring_wrapper .swiper-pagination-bullet-active {
    background: black;
  }
}

#masonary_layouts .intership_wrapper {
  position: relative;
  height: 100%;
  color: #fff;
  background: #35297f;
}

#masonary_layouts .intership_wrapper h6 {
  padding: 1rem 0 1rem 2rem;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .intership_wrapper h6 {
    padding: 1rem;
  }
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .hiring_wrapperOuter {
  background: #35297f;
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText {
  top: -5px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText {
    padding-bottom: 10px;
  }
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText h3 {
  color: #fff;
  max-width: 25rem;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  margin: 1rem 2rem 2rem 2rem;
  font-size: 18px;
  font-family: var(--heading-font);
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .hiring_wrapperOuter .hiring_wrapperText h3 {
    margin: 1rem;
  }
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .readmore {
  color: #ffffff;
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .hiring_wrapper .readmore::before {
  background-color: #fff;
}

#masonary_layouts .intership_wrapper .scroll_internWrapper .swiper-horizontal > .swiper-pagination-bullets,
#masonary_layouts .intership_wrapper .scroll_internWrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
#masonary_layouts .intership_wrapper .scroll_internWrapper .swiper-pagination-custom,
#masonary_layouts .intership_wrapper .scroll_internWrapper .swiper-pagination-fraction {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#masonary_layouts .malus_facts {
  position: relative;
  background: #ffbf3b;
  color: #fff;
}

#masonary_layouts .malus_facts h2 {
  padding: 1rem 0 1rem 2rem;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
  color: #000000;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

#masonary_layouts .malus_facts .malus_factsWrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner {
  padding: 1.33rem 1rem;
  border-bottom: 1px solid #fdb624;
  width: 50%;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px;
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner.bg1 {
  background-image: url(../icons/airplane.png);
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner.bg2 {
  background-image: url(../icons/growth.png);
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner.bg3 {
  background-image: url(../icons/client.png);
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner.bg4 {
  background-image: url(../icons/operation.png);
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner h3 {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  font-family: 'Open Sans';
  -webkit-text-stroke: 2px #000000;
  -webkit-text-fill-color: #ffbf3b;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 1.6px;
}

#masonary_layouts .malus_facts .malus_factsWrapper .malus_factsInner p {
  color: #000000;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

#masonary_layouts .life_malus {
  position: relative;
  padding-left: 15px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .life_malus {
    padding-left: 0px;
  }
}

#masonary_layouts .life_malus .h3 {
  position: absolute;
  width: 300px;
  bottom: 100px;
  z-index: 1;
  background: linear-gradient(45deg, #4a1246, transparent);
  color: #ffffff;
  padding: 10px;
  padding-left: 30px;
  margin: 0;
  font-family: var(--regular-font);
  font-style: italic;
  letter-spacing: .6px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .life_malus .h3 {
    bottom: auto;
    top: 200px;
  }
}

#masonary_layouts .life_malus .life_malusSlider .swiper-horizontal > .swiper-pagination-bullets,
#masonary_layouts .life_malus .life_malusSlider .swiper-pagination-bullets.swiper-pagination-horizontal,
#masonary_layouts .life_malus .life_malusSlider .swiper-pagination-custom,
#masonary_layouts .life_malus .life_malusSlider .swiper-pagination-fraction {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 25%;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}

#masonary_layouts .life_malus .life_malusSlider .swiper-pagination-bullet {
  outline: 1px solid #fff;
  opacity: 1;
  background: unset;
  width: 6px;
  height: 6px;
  border-radius: 0;
  margin: 0 5px;
}

#masonary_layouts .life_malus .life_malusSlider .swiper-pagination-bullet-active {
  background: #ffffff;
}

#masonary_layouts .life_malus .life_malusSlider .life_wraperInner .img-fluid {
  max-width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

#masonary_layouts .life_malus .employee_testimonials {
  position: absolute;
  bottom: 30px;
  background-color: #FFF;
  right: 30PX;
  z-index: 1;
  max-width: 400px;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .life_malus .employee_testimonials {
    position: relative;
    bottom: auto;
    right: 0;
    max-width: 100%;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
  }
}

#masonary_layouts .life_malus .employee_testimonials h2 {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  color: #4d1449;
  margin-bottom: 1.2rem;
  margin-top: 1.2rem;
}

#masonary_layouts .life_malus .employee_testimonials .employee_wrapper {
  position: relative;
  gap: 10px;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  #masonary_layouts .life_malus .employee_testimonials .employee_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#masonary_layouts .life_malus .employee_testimonials .employee_wrapper p {
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 15px;
}

#masonary_layouts .life_malus .employee_testimonials .employee_wrapper h6 {
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

#masonary_layouts .life_malus .employee_testimonials .employee_wrapper code {
  color: var(--brand-clr);
}

#masonary_layouts .life_malus .employee_testimonials .employee_figure {
  position: relative;
  padding: 0 0 0 15px;
}

#masonary_layouts .life_malus .employee_testimonials .employee_figure img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}

#masonary_layouts .life_malus .employee_testimonials .employee_text {
  padding-right: 15px;
  margin-bottom: 15px;
}

#masonary_layouts .life_malus .employee_testimonials .swiper-button-next,
#masonary_layouts .life_malus .employee_testimonials .swiper-button-prev {
  height: 25px;
  width: 25px;
}

#masonary_layouts .life_malus .employee_testimonials .swiper-button-prev,
#masonary_layouts .life_malus .employee_testimonials .swiper-rtl .swiper-button-next {
  left: auto;
  right: 40px;
  bottom: 10px;
  top: unset;
  background: #35297f;
  color: #fff;
  border-radius: 50%;
}

#masonary_layouts .life_malus .employee_testimonials .swiper-button-next,
#masonary_layouts .life_malus .employee_testimonials .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  bottom: 10px;
  top: unset;
  color: #fff;
  border-radius: 50%;
  background: #35297f;
}

#masonary_layouts .life_malus .employee_testimonials .swiper-button-next:after,
#masonary_layouts .life_malus .employee_testimonials .swiper-button-prev:after {
  font-size: 12px;
  font-weight: 600;
}

#testimonial_section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#testimonial_section .swiper-wrapper {
  margin-bottom: 40px;
}

#testimonial_section .swiper-pagination-bullet {
  outline: 1px solid #000000;
  opacity: 1;
  background: unset;
  width: 6px;
  height: 6px;
  border-radius: 0;
  margin: 0 5px;
}

#testimonial_section .swiper-pagination-bullet-active {
  background: #000000;
}

.testimonial_wrapper {
  position: relative;
  margin-top: 30px;
  border-top: 1px dashed #dfdfdf;
  padding-top: 30px;
}

.testimonial_wrapper .testimonail_topWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  background: #fff;
  z-index: 2;
  overflow: hidden;
  color: var(--brand-clr);
  margin: 0 auto;
}

.testimonial_wrapper .testimonail_topWrapper img {
  border-radius: 50%;
  border: 2px solid var(--brand-clr);
  padding: 4px;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  outline: 5px solid #fff;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .testimonial_wrapper .testimonail_topWrapper img {
    width: 80px;
    height: 80px;
  }
}

.testimonial_wrapper .testimonail_topWrapper div {
  position: relative;
  padding-right: 70px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .testimonial_wrapper .testimonail_topWrapper div {
    padding-right: 0px;
    text-align: left;
  }
}

.testimonial_wrapper .testimonail_topWrapper div h5 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  letter-spacing: .2px;
  margin-bottom: 5px;
  font-family: var(--regular-font);
}

.testimonial_wrapper .testimonail_topWrapper div span {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--brand-clr);
  letter-spacing: 1px;
  text-transform: capitalize;
  display: block;
}

.testimonial_wrapper div.stars {
  position: absolute;
  top: 15px;
  right: 20px;
}

.testimonial_wrapper .testmonial_testDiv {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 15px 0;
  text-align: center;
}

.testimonial_wrapper .testmonial_testDiv::after {
  position: absolute;
  content: '';
  background-image: url(../icons/quote.png);
  background-size: contain;
  width: 80px;
  height: 80px;
  top: -30px;
  left: 30px;
  z-index: -1;
  opacity: 0.4;
}

#class_clients {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-blend-mode: overlay;
  background-color: #ffffff;
  z-index: 10;
}

#class_clients .class_clients {
  position: relative;
  padding: 5rem 0;
}

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

#class_clients .client-img {
  max-width: 100%;
  height: 120px;
  width: 100%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 5px 10px 10px rgba(195, 233, 247, 0.3);
          box-shadow: 5px 10px 10px rgba(195, 233, 247, 0.3);
  margin-bottom: 20px;
  padding: 10px;
}

#class_clients .client-img .img-fluid {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100px;
}

#class_clients .client_float {
  gap: 20px;
  overflow: hidden;
  padding: 0 10px;
}

#class_clients .client_float .infiniteslide_wrap {
  height: 633px !important;
  overflow: hidden;
}

#class_clients .client_float .infiniteslide1 ul li,
#class_clients .client_float .infiniteslide2 ul li {
  margin: 0 5px 10px;
}

#class_clients .client_float .infiniteslide1 ul li img,
#class_clients .client_float .infiniteslide2 ul li img {
  opacity: 1 !important;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100px;
  -webkit-filter: unset;
          filter: unset;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
}

/* Footer */
footer {
  background: #200e1f;
  position: relative;
  z-index: 0;
  color: #ffffff;
  padding: 0rem 0 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 480px) {
  footer {
    position: relative;
  }
}

footer::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../images/bg20.png);
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

footer .partner_wrap {
  position: relative;
  text-align: center;
  padding: 2rem 0;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

@media only screen and (max-width: 480px) {
  footer .partner_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4%;
  }
}

footer .partner_wrap h3 {
  display: inline;
  position: relative;
  top: 8px;
  font-size: 20px;
  color: #000000;
  font-weight: 600;
}

@media only screen and (max-width: 480px) {
  footer .partner_wrap h3 {
    width: 100%;
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
  }
}

footer .partner_wrap a {
  margin: 0 30px;
}

@media only screen and (max-width: 480px) {
  footer .partner_wrap a {
    margin: 0 0;
    width: 48%;
  }
  footer .partner_wrap a img {
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.footer_logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer_logo p {
  color: #c3c3c3;
}

.footer_center .slide_menuInnerUl {
  margin-bottom: 0;
  border-bottom: unset;
}

.footer_center .slide_menuInnerUl li {
  margin-bottom: 5px;
  color: #c3c3c3;
}

.footer_center .slide_menuInnerUl li:hover {
  color: #f4f4f4;
}

.footer_center.slide_menuInner h3 {
  width: 100%;
}

@media only screen and (max-width: 480px) {
  .footer_center.slide_menuInner h3 {
    margin: 15px 0;
  }
}

@media only screen and (max-width: 480px) {
  .slide_menuInner ul {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    gap: 15px !important;
  }
}

.footer_right ul li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 25px;
  color: #c3c3c3;
}

.footer_right ul li::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-position: center;
  left: 0;
  top: 2px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.footer_right ul li:nth-child(1)::after {
  background-image: url(../icons/locationic.svg);
}

.footer_right ul li:nth-child(2)::after {
  background-image: url(../icons/phoneic.svg);
}

.footer_right ul li:nth-child(3)::after {
  background-image: url(../icons/mailic.svg);
}

.footer_right ul li:nth-child(4)::after {
  background-image: url(../icons/skypeic.svg);
}

@media only screen and (max-width: 480px) {
  .footer_right h3 {
    margin: 15px 0;
  }
}

.footer_social {
  gap: 10px !important;
}

.footer_social li {
  width: 40px;
  height: 40px;
  margin-top: 5px;
  background-color: #ffffff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer_social li a {
  display: block;
}

.footer_social li img {
  width: 20px !important;
}

.footer_quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #202020;
}

.footer_quote p {
  margin-bottom: 0;
  font-size: 14px;
  color: #c3c3c3;
}

.footer_quote a {
  background: #26b726;
  padding: 7px 20px;
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer_quote a:hover {
  background: #3aca3a;
}

#about_section {
  position: relative;
  background-color: #ffffff;
  padding: 4rem 0;
  z-index: 1;
}

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

#about_section .heading.big_p p {
  margin-bottom: 16px;
}

#about_btn {
  position: relative;
  background-color: #ffffff;
  z-index: 1;
  overflow: hidden;
}

#about_btn .about_btnRightWrapper {
  background-color: #2A2F69;
  padding: 5rem 0rem 5rem 4rem;
  position: relative;
}

@media only screen and (max-width: 480px) {
  #about_btn .about_btnRightWrapper {
    padding: 1.5rem;
  }
}

#about_btn .about_btnRightWrapper::after {
  position: absolute;
  content: '';
  width: 1000%;
  height: 100%;
  left: 100%;
  top: 0;
  background-color: #2A2F69;
}

@media only screen and (max-width: 480px) {
  #about_btn .about_btnRightWrapper::after {
    display: none;
  }
}

#about_btn .about_btnRightWrapper .heading h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0px;
}

#about_btn .accordion {
  background: #2A2F69;
  color: #ffffff;
  margin-top: 30px;
}

#about_btn .accordion-item {
  background: #2A2F69;
}

#about_btn .accordion-item:first-of-type {
  border-radius: unset;
  border: unset;
}

#about_btn .accordion-item:last-of-type {
  border-radius: unset;
  border: unset;
}

#about_btn .accordion-button {
  border-radius: unset !important;
  background-color: #2A2F69;
  color: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #3b4185;
  border-bottom: 1px solid #3b4185;
}

#about_btn .accordion-button:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-color: #3b4185;
}

#about_btn .accordion-button::after {
  background-image: url(../icons/plus.svg);
}

#about_btn .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#about_btn .accordion-button:not(.collapsed)::after {
  background-image: url(../icons/minus.svg);
  background-repeat: no-repeat;
}

#about_btn .accordion-body {
  padding: 15px 0;
}

#about_btn .accordion-body p {
  color: #fff;
}

#road_map {
  z-index: 1;
  position: relative;
  padding: 8rem 0;
  background-color: #fff;
  margin-bottom: 516px;
}

@media only screen and (max-width: 480px) {
  #road_map {
    margin-bottom: 0px;
    padding: 3rem 0;
  }
  #road_map .timeline:not(.timeline--horizontal):before {
    width: 2px;
  }
}

.timeline--horizontal .timeline__items {
  height: 300px !important;
}

.timeline__content {
  background-color: transparent;
  background: linear-gradient(45deg, #673ab7, #2196f3);
  border: 1px solid #673ab7;
  color: #fff;
}

.timeline--horizontal .timeline__item .timeline__content:after {
  border-top: 10px solid #3976de;
}

.timeline--horizontal .timeline__item .timeline__content:before {
  border-top: 12px solid #3976de;
}

.timeline--horizontal .timeline__item--bottom .timeline__content:after {
  border-bottom: 10px solid #3976de;
  border-top-color: transparent;
}

.timeline--horizontal .timeline__item--bottom .timeline__content:before {
  border-bottom: 12px solid #3976de;
  border-top-color: transparent;
}

.timeline-nav-button {
  background-color: #5c5c5c;
}

#contact_section {
  padding: 6rem 0 4rem;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 516px;
  z-index: 1;
}

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

#contact_section .contact_wrapper {
  position: relative;
  margin-bottom: 60px;
  background: #ffbf3b;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

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

#contact_section .contact_wrapper::after {
  position: absolute;
  content: 'Contact Us';
  font-size: 130px;
  height: 100%;
  top: -100px;
  left: 50%;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
  -webkit-text-stroke: 2px #ffc959;
  -webkit-text-fill-color: transparent;
  font-family: 'Open Sans';
  font-weight: 800;
  line-height: normal;
}

@media only screen and (max-width: 480px) {
  #contact_section .contact_wrapper::after {
    font-size: 45px;
    top: -30px;
    text-align: center;
  }
}

#contact_section .contact_wrapper .contact_wrapperLeft {
  padding: 80px 50px;
}

@media only screen and (max-width: 480px) {
  #contact_section .contact_wrapper .contact_wrapperLeft {
    padding: 40px 20px 20px;
  }
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList {
  height: 100%;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList .heading h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList .address_wrapper {
  position: relative;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList .address_wrapper h4 {
  font-size: 20px;
  font-weight: 600;
  color: #4c1348;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList .address_wrapper span {
  font-size: 16px;
  display: block;
  line-height: 26px;
  margin-bottom: 20px;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList ul.conDetails {
  position: relative;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList ul.conDetails li {
  padding-left: 45px;
  position: relative;
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList ul.conDetails li::after {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #4c1348;
  left: 0;
  top: -6px;
  border-radius: 5px;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList ul.conDetails li:nth-child(1)::after {
  background-image: url(../icons/email.svg);
  background-size: 25px;
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList ul.conDetails li:nth-child(2)::after {
  background-size: 25px;
  background-image: url(../icons/phone.svg);
}

#contact_section .contact_wrapper .contact_wrapperLeft .contact_wrapperList ul.conDetails li:nth-child(3)::after {
  background-image: url(../icons/cmt.svg);
}

#contact_section .contact_wrapper .contact_wrapperRight {
  padding: 65px 50px 0 0;
  position: relative;
}

@media only screen and (max-width: 480px) {
  #contact_section .contact_wrapper .contact_wrapperRight {
    padding: 20px;
  }
  #contact_section .contact_wrapper .contact_wrapperRight .form-row.row.mb-3 {
    margin-bottom: 0 !important;
  }
}

#contact_section .contact_wrapper .contact_wrapperRight .form-control:focus {
  color: #212529;
  background-color: #ffbf3b;
  border-color: #d39411;
  outline: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#contact_section .contact_wrapper .contact_wrapperRight .form-control {
  height: 45px;
  background-color: #ffbf3b;
  border-color: #edad27;
}

@media only screen and (max-width: 480px) {
  #contact_section .contact_wrapper .contact_wrapperRight .form-control {
    margin-bottom: 15px;
  }
}

#contact_section .contact_wrapper .contact_wrapperRight .form-control::-webkit-input-placeholder {
  color: #b97d01;
}

#contact_section .contact_wrapper .contact_wrapperRight .form-control:-ms-input-placeholder {
  color: #b97d01;
}

#contact_section .contact_wrapper .contact_wrapperRight .form-control::-ms-input-placeholder {
  color: #b97d01;
}

#contact_section .contact_wrapper .contact_wrapperRight .form-control::placeholder {
  color: #b97d01;
}

#contact_section .contact_wrapper .contact_wrapperRight button {
  background: #ffbf3b;
  border: unset;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  line-height: normal;
  display: block;
  margin-left: auto;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#contact_section .contact_wrapper .contact_wrapperRight button:hover {
  background-color: #edad27;
  color: #fff;
}

#contact_section .g_map {
  border-radius: 20px;
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

#services_pageSection {
  position: relative;
  padding: 4rem 0 4.5rem;
  margin-bottom: 516px;
  background-color: #ffffff;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #services_pageSection {
    padding: 3rem 0;
    margin-bottom: 0px;
  }
  #services_pageSection .heading {
    width: 100% !important;
    margin-bottom: 40px !important;
  }
}

#services_pageSection .services-listWrapper {
  padding: 30px 10px 10px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  -webkit-transition: all .25s;
  transition: all .25s;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#services_pageSection .services-listWrapper::after {
  position: absolute;
  content: '';
  top: -80px;
  left: 50%;
  width: 300px;
  height: 300px;
  background: -webkit-gradient(linear, left top, right top, from(#1595b6), to(rgba(31, 38, 103, 0.9)));
  background: linear-gradient(to right, #1595b6, rgba(31, 38, 103, 0.9));
  -webkit-transform: translateY(-25%) translateX(-50%) rotate(-45deg);
  transform: translateY(-25%) translateX(-50%) rotate(-45deg);
  z-index: -2;
  opacity: 0.1;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  border-radius: 15px;
}

#services_pageSection .services-listWrapper:hover::after {
  opacity: 0.2;
  top: -100px;
}

#services_pageSection .services-listWrapper:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

#services_pageSection .services-listWrapper .services_imgwrapper {
  width: 100px;
  height: 100px;
  padding: 15px;
  border-radius: 10px;
  background: #4c1348;
  margin: 0 auto 10px;
}

#services_pageSection .services-listWrapper .services_imgwrapper img {
  width: 100%;
}

#services_pageSection .services-listWrapper .services_textwrapper {
  padding-bottom: 20px;
}

#services_pageSection .services-listWrapper .services_textwrapper h3 {
  font-size: 20px;
  font-weight: 600;
}

#services_pageSection .services-listWrapper .services_textwrapper p {
  padding: 0 30px;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans';
}

#clients_sectionPage {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 516px;
  background-color: #ffffff;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #clients_sectionPage {
    padding: 3rem 0;
    margin-bottom: 0px;
  }
  #clients_sectionPage .heading {
    margin-bottom: 30px;
    width: 100% !important;
  }
}

#clients_sectionPage .clients_pageWrapper {
  text-align: center;
  padding: 10px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

@media only screen and (max-width: 480px) {
  #clients_sectionPage .clients_pageWrapper {
    padding: 7px;
  }
}

#clients_sectionPage .clients_pageWrapper .img-fluid {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media only screen and (max-width: 480px) {
  #clients_sectionPage .clients_pageWrapper .img-fluid {
    width: 120px;
    height: 80px;
  }
}

#clients_sectionPage .clients_pageWrapper:hover .img-fluid {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#breadcrumb_section {
  position: relative;
  padding: 4rem 0;
  height: 500px;
  z-index: 1;
  background-size: cover !important;
}

@media only screen and (max-width: 480px) {
  #breadcrumb_section {
    height: 260px;
  }
}

#breadcrumb_section::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000000 50%, var(--brand-clr));
  inset: 0;
  z-index: -1;
  opacity: 0.45;
}

#breadcrumb_section .breadcrumb_section {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 50px;
}

@media only screen and (max-width: 480px) {
  #breadcrumb_section .breadcrumb_section .heading {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 15px;
  }
}

#breadcrumb_section .breadcrumb_section .heading h2 {
  font-size: 60px;
}

@media only screen and (max-width: 480px) {
  #breadcrumb_section .breadcrumb_section .heading h2 {
    font-size: 30px;
    width: 100%;
  }
}

#team_member {
  background-color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 516px;
  padding: 4rem 0;
}

@media only screen and (max-width: 480px) {
  #team_member {
    margin-bottom: 0px;
    padding: 3rem 0;
    overflow: hidden;
  }
  #team_member .heading {
    width: 100% !important;
  }
}

#team_member .founder_outerWrapper {
  max-width: 85%;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  #team_member .founder_outerWrapper {
    max-width: 100%;
  }
}

#team_member .db {
  display: none;
}

#team_member .dn {
  display: block;
}

@media only screen and (max-width: 480px) {
  #team_member .team_member .row.gp > * {
    margin-top: 1rem !important;
  }
  #team_member .team_member .db {
    display: block;
  }
  #team_member .team_member .dn {
    display: none;
  }
}

#team_member .team_memberWrapper {
  position: relative;
}

#team_member .team_memberWrapper .team_imgWrapper {
  overflow: hidden;
  width: 100%;
  height: 310px;
  position: relative;
}

#team_member .team_memberWrapper .team_imgWrapper .img-fluid {
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#team_member .team_memberWrapper .team_imgWrapper .team_social {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul li {
  padding: 6px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  top: 20px;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul li:nth-child(2) {
  -webkit-transition-delay: .05s;
          transition-delay: .05s;
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul li:nth-child(3) {
  -webkit-transition-delay: .07s;
          transition-delay: .07s;
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul li:nth-child(4) {
  -webkit-transition-delay: .09s;
          transition-delay: .09s;
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul li:hover {
  background-color: var(--brand-clr);
}

#team_member .team_memberWrapper .team_imgWrapper .team_social ul li:hover img {
  -webkit-filter: invert(1) brightness(10);
          filter: invert(1) brightness(10);
}

#team_member .team_memberWrapper .team_imgWrapper:hover .img-fluid {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

#team_member .team_memberWrapper .team_imgWrapper:hover .team_social ul li {
  top: 0;
  opacity: 1;
}

#team_member .team_memberWrapper h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0;
  letter-spacing: 1px;
}

#team_member .team_memberWrapper span {
  font-size: 15px;
  color: var(--brand-clr);
  font-weight: 600;
}

#team_member .team_tab .founder_imgWrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 105px;
  text-align: center;
}

#team_member .team_tab .founder_imgWrapper img {
  border-radius: 50%;
  height: 240px;
  width: 240px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}

#team_member .team_tab .founder_textWrapper .heading h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--brand-clr);
}

#team_member .team_tab .founder_textWrapper .heading h6 {
  font-size: 14px;
}

#team_member .nav-tabs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  border: unset;
  border-bottom: 1px solid #cfcfcf;
}

@media only screen and (max-width: 480px) {
  #team_member .nav-tabs {
    margin-bottom: 70px;
  }
}

#team_member .nav-tabs .nav-link {
  border-radius: unset;
  background-color: #ffffff;
  color: var(--brand-clr);
  border: unset;
  border-bottom: 1px solid #cfcfcf;
  padding: 0 0 15px;
  font-size: 18px;
}

#team_member .nav-tabs .nav-link.active {
  color: var(--brand-clr);
  border-bottom: 1px solid var(--brand-clr);
  font-weight: 600;
}

#team_member hr {
  border-color: #9e9e9e;
}

#training_section {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 516px;
  background-color: #ffffff;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #training_section {
    padding: 3rem 0;
    margin-bottom: 0px;
  }
  #training_section .rr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}

#training_section .training_leftWrapper b {
  margin: 10px 0;
  color: var(--brand-clr);
  display: block;
}

#training_section .training_leftWrapper .readmore {
  margin-left: 0;
  padding: 0;
  font-size: 18px;
  margin-top: 20px;
}

#training_section .training_leftWrapper .readmore::before {
  margin-left: 10px;
  top: 15px;
}

#training_section .training_rightWrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding-left: 50px;
}

@media only screen and (max-width: 480px) {
  #training_section .training_rightWrapper {
    padding-left: 0px;
  }
}

#training_section .training_rightWrapper .img-fluid {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  -webkit-transition: all .3s esae;
  transition: all .3s esae;
  -webkit-animation: borderAnimate 5s linear infinite;
          animation: borderAnimate 5s linear infinite;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes borderAnimate {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 74% 26% 35% 65% / 58% 60% 40% 42%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes borderAnimate {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 74% 26% 35% 65% / 58% 60% 40% 42%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

#trainingModal .modal-fullscreen .modal-content,
#getaquote .modal-fullscreen .modal-content {
  background: linear-gradient(103deg, #fff6f9 0%, #edfffb 50%, #ebebff 100%);
}

#trainingModal .hiringIntern_wrapper,
#getaquote .hiringIntern_wrapper {
  position: relative;
  margin: 6% 0;
  padding: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 480px) {
    .sli-content h2 {
    font-size: 23px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 29px;
    /* transform: translateX(-100%); */
    /* transition: all 1.5s; */
}
  #trainingModal .hiringIntern_wrapper,
  #getaquote .hiringIntern_wrapper {
    margin-top: 10%;
  }
  #trainingModal .hiringIntern_wrapper .img-fluid.w-100,
  #getaquote .hiringIntern_wrapper .img-fluid.w-100 {
    display: none;
  }
}

#trainingModal .hiringIntern_wrapper .btn-close,
#getaquote .hiringIntern_wrapper .btn-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
  border: 1px solid #646464;
}

@media only screen and (max-width: 480px) {
  #trainingModal .hiringIntern_wrapper .btn-close,
  #getaquote .hiringIntern_wrapper .btn-close {
    right: -10px;
    padding: 7px;
  }
}

#trainingModal .hiringIntern_wrapper .btn-close:focus,
#getaquote .hiringIntern_wrapper .btn-close:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-color: #000000;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper {
  padding-left: 30px;
}

@media only screen and (max-width: 480px) {
  #trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper,
  #getaquote .hiringIntern_wrapper .hiringIntern_formWrapper {
    padding-left: 0px;
  }
  #trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .form-row.row.mb-3,
  #getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .form-row.row.mb-3 {
    margin-bottom: 0 !important;
  }
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .heading,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f4f4f4;
  text-align: left;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .heading h2,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .heading h2 {
  font-size: 30px;
  line-height: 30px;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .form-wrap,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .form-wrap {
  position: relative;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .err,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .err {
  color: red;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper label,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (max-width: 480px) {
  #trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper label,
  #getaquote .hiringIntern_wrapper .hiringIntern_formWrapper label {
    margin-top: 5px;
  }
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper label .star,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper label .star {
  color: red;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .form-control,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .form-control {
  height: 44px;
  border-radius: 0;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper .form-control:focus,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper .form-control:focus {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-clr);
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper textarea.form-control,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper textarea.form-control {
  height: auto;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper button,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper button {
  border: unset;
  background: var(--brand-clr);
  color: #ffffff;
  width: 48%;
  padding: 10px;
  margin-top: 20px;
  font-weight: 400;
  letter-spacing: .4px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper button:hover,
#getaquote .hiringIntern_wrapper .hiringIntern_formWrapper button:hover {
  background: #6a3266;
}

.sucess_popupWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.74);
  inset: 0;
  z-index: 9999;
}

.sucess_popupWrapper .sucess_popupInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.sucess_popupWrapper .sucess_popupInner .sucess_popupContainer {
  background: url(../images/sucess_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 300px;
  height: 400px;
  text-align: center;
  background-position: center;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.418);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.418);
}

.sucess_popupWrapper .sucess_popupInner .sucess_popupContainer img {
  width: 150px;
  position: relative;
  top: 30px;
}

.sucess_popupWrapper .sucess_popupInner .sucess_popupContainer h3 {
  position: relative;
  top: 100px;
  font-weight: 600;
  font-size: 26px;
}

.sucess_popupWrapper .sucess_popupInner .sucess_popupContainer p {
  position: relative;
  top: 100px;
  font-size: 18px;
}

.sucess_popupWrapper .sucess_popupInner .sucess_popupContainer a {
  position: relative;
  top: 110px;
  display: block;
  padding: 5px 20px;
  background: #59d603;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  -webkit-box-shadow: 3px 11px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 11px 10px rgba(0, 0, 0, 0.3);
}

.modal-fullscreen {
  height: auto;
}

#career_pageSection {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 516px;
  background-color: #ffffff;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  #career_pageSection {
    padding: 3rem 0;
    margin-bottom: 0px;
  }
  #career_pageSection .heading {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
}

#career_pageSection .career_wrapper {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#career_pageSection .career_wrapper .career_imgWrapper{
    height: 100%;
}
#career_pageSection .career_wrapper .career_imgWrapper .img-fluid{
    height: 100%;
    object-fit: cover;
}
#career_pageSection .career_wrapper .career_textWrapper {
  height: 100%;
  padding: 10px 10px 10px 15px;
  position: relative;
}

@media only screen and (max-width: 480px) {
  #career_pageSection .career_wrapper .career_textWrapper {
    padding: 15px;
  }
}

#career_pageSection .career_wrapper .career_textWrapper h3 {
  font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#career_pageSection .career_wrapper .career_textWrapper span {
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-size: 14px;
  font-weight: 600;
}

#career_pageSection .career_wrapper .career_textWrapper p {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid var(--brand-subclr);
  margin-top: 15px;
  font-size: 15px;
height: 90px;
text-overflow: ellipsis;
overflow: hidden;
}
#career_pageSection .career_wrapper .career_textWrapper div{
    padding-bottom: 50px;
}
#career_pageSection .career_wrapper .career_textWrapper p {
    display:none;
}
#career_pageSection .career_wrapper .career_textWrapper p:nth-child(1){
    display: block;
}
@media only screen and (max-width: 480px) {
  #career_pageSection .career_wrapper .career_textWrapper p {
    margin-bottom: 25px;
  }
}

#career_pageSection .career_wrapper .career_textWrapper .readmore {
  position: absolute;
  bottom: 45px;
  right: 10px;
}

@media only screen and (max-width: 480px) {
  #career_pageSection .career_wrapper .career_textWrapper .readmore {
    bottom: 10px;
  }
}

#current_careerHeading {
  position: relative;
  background: #f5f5f5;
  padding: 3rem 0;
  z-index: 1;
  display: none;
}

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

#current_careerHeading .current_careerDetails {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 480px) {
  #current_careerHeading .current_careerDetails {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#current_careerHeading .current_careerDetails h1 {
  font-size: 40px;
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  #current_careerHeading .current_careerDetails h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

#current_careerHeading .current_careerDetails p {
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  #current_careerHeading .current_careerDetails p {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

#current_careerHeading .current_careerDetails span {
  font-size: 18px;
  font-weight: 500;
  color: #646464;
}

@media only screen and (max-width: 480px) {
  #current_careerHeading .current_careerDetails span {
    font-size: 16px;
  }
}

#current_careerHeading .current_careerDetails a {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-clr);
  letter-spacing: 1px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 480px) {
  #current_careerHeading .current_careerDetails a {
    display: block;
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 15px;
  }
}

#current_careerHeading .current_careerDetails a:hover {
  background: var(--brand-subclr);
  color: #000000;
}

#apply_forPostion {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background-color: #ffffff;
  margin-bottom: 516px;
}

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

#apply_forPostion .heading h2 {
  font-size: 25px;
  font-family: var(--regular-font);
  font-weight: 600;
}

#apply_forPostion .heading ul {
  color: #646464;
}

#apply_forPostion .heading ul li:first-child {
  position: relative;
}

/*#apply_forPostion .heading ul li:first-child::after {*/
/*  position: absolute;*/
/*  content: '';*/
/*  width: 1px;*/
/*  height: 80%;*/
/*  background-color: #000000;*/
/*  margin-left: 20px;*/
/*  margin-top: 2px;*/
/*}*/

#apply_forPostion .job_detailsWrapper {
  position: relative;
  background: #f3f3f3;
  padding: 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#apply_forPostion .job_detailsWrapper p {
  font-size: 16px;
}

#apply_forPostion .job_detailsWrapper ul {
  list-style-type: square;
  font-size: 15px;
  color: #565656;
  font-family: var(--regular-font);
  font-weight: 500;
}

#apply_forPostion .job_detailsWrapper ul li {
  margin-bottom: 5px;
}

#apply_forPostion .job_detailsWrapper a , .cc_des .hero_btn{
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-clr);
  letter-spacing: 1px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 480px) {
  #apply_forPostion .job_detailsWrapper a {
    display: block;
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 15px;
  }
}

#apply_forPostion .job_detailsWrapper a:hover {
  background: var(--brand-subclr);
  color: #000000;
}
/*# sourceMappingURL=style.css.map */
/* For Loading Overlay by Malustech */
.post-wrapper{
	position: relative;
}
.loading-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    bottom: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.7);
}
.overlay-content {
    position: absolute;
    transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #555;
}


.cfx a {
    
    background-color:#4c1348;
    color:#fff;
    border:1px solid #fff;
    
    
    width: fit-content;
    padding: 5px 17px;
    border-radius: 30px;
    margin: auto;
   
    /* font-weight: 700; */
    font-size: 14px;
    transition:all .3s;
}
.cfx a:hover{
    border: 1px solid #4c1348;
     color: #4c1348;
     background-color:#0000;
}












    .webdevelop {
      width: 100%;
      height: 100%;
    }

    .webdevelop .swiper-slide {
      background-position: center;
      background-size: cover;
    }

    .webdevelop .swiper-slide img {
      display: block;
      width: 100%;
      height:100vh;
      transition:all 5s;
    }
    .webdevelop .swiper-slide-active img{
        transform:scale(1.1);
    }
    .sli-content{
        top:50%;
        left:10%;
        transform:translateY(-50%);
        width:100%;
    }
.sli-content h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 52px;
    /* transform: translateX(-100%); */
    /* transition: all 1.5s; */
}
.sli-content p {
    font-size: 21px;
    color: #fff;
    letter-spacing: 0.55px;
    line-height: 30px;
    width: 75%;
    margin: 15px 0;
    transform: translateX(-150%);
    transition: all 1.5s;
    transition-delay: 1.5s;
}
.sli-content ul{
    transition:all 1.5s;
    transform:translateX(-100%);
    
    transition-delay: 2s;
}
.sli-content ul li {
    font-size: 17px;
    color: #fff;
    letter-spacing: 0.55px;
    line-height: 26px;
    padding: 5px 0;
    font-weight: 300;
    letter-spacing: 0.55px;
}
.sli-content ul li img{
    width:18px !important;
    height:18px !important;
}
 .webdevelop .swiper-slide-active .sli-content h2,.webdevelop .swiper-slide-active .sli-content p,.webdevelop .swiper-slide-active .sli-content ul{
     transform:translateX(0%);
 }
 
 .sli-content ul li{
     display:flex;
     gap:10px;
     align-items:center;
 }
 #program_overviewSection .program_overviewSection {
    /*padding: 70px 50px 50px;*/
    border-radius: 30px;
    /*background-color: #F7F0FA;*/
}
#program_overviewSection .program_overviewSection .program_overviewWrapper {
    padding: 15px;
    background: #fff;
    position: relative;
    border-radius: 10px;
    height: 100%;
}
#program_overviewSection .program_overviewSection .program_overviewWrapper .program_overviewImg {
    background: var(--bg-clr);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: var(--border-radius-10px);
}
#program_overviewSection .program_overviewSection .program_overviewWrapper .program_overviewImg img {
    width: 80px;
    padding:10px;
}
#job_leading_gallery .job-leading-gallery-title, #program_overviewSection .program_overviewSection .program_overviewWrapper .program_overviewText .heading {
    text-align: center;
}
.program_overviewText .heading h6 {
    text-transform: uppercase;
    font-size: 18px;
}
#program_overviewSection .program_overviewSection .program_overviewWrapper .program_overviewText .heading p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    font-size: 14px;
    margin-bottom: 30px;
}
#program_overviewSection{
    position: relative;
    padding: 4rem 0 6rem;
    background: linear-gradient(103deg, #fff6f9 0%, #edfffb 50%, #ebebff 100%);
    z-index: 1;
    
}
#program_overviewSection1{
    
    margin-bottom: 396px;
     z-index: 1;
     position:relative;
     background-color:#fff;
}



#keyPoint_section .keyPoint_wrapper {
    text-align: center;
    border: 1px solid #dfb6eb;
    height: 100%;
    border-radius: 10px;
    padding: 0 10px;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_imgwrapper {
    text-align: center;
    position: relative;
    z-index: 1;
    /*background: #f8f8ff;*/
    top: -40px;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_imgwrapper img {
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_imgwrapper::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    left: -10px;
    top: -40px;
    background-image: url(../images/key_bg.svg);
    background-size: contain;
    background-position: center;
    z-index: -1;
    opacity: 1;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_textWrapper {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    top: -25px;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_textWrapper h6 {
    font-size: 21px;
    font-family: var(--heading-font);
    font-weight: 900;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_textWrapper p {
    font-size: calc(var(--font-small) - 1px);
    color: var(--font-clr-dark-light);
    margin-bottom: 0;
    font-family: var(--regular-font);
}
#keyPoint_section {
    background-color: #fff !important;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 9;
}
.sec-img{
    width: 250px;
    bottom: -5%;
    left: -3%;
    z-index: -1;
    transform: scale(1);
    transition:all .3s;
}
.thir-img {
    width: 250px;
    bottom: -5%;
    right: -3%;
    z-index: -1;
    transform: scale(1);
    transition:all .3s;
}
.port-list img {
    border-radius: 7px;
    box-shadow: black 0px 0px 16px -8px;
}
.fir-img{
    transform: scale(1.1);
    transition:all .3s;
}

.port-list:hover .sec-img {
    width: 250px;
    bottom: -5%;
    left: -7%;
    z-index: -1;
    transform: scale(1) rotate(-7deg);
}
.port-list:hover .thir-img {
    width: 250px;
    bottom: -5%;
    right: -7%;
    z-index: -1;
    transform: scale(1) rotate(7deg);
}
.port-list:hover .fir-img{
    transform: scale(1);
}
.portslide{
    padding:3rem;
}
.port-content h2 {
    font-size: 23px;
    letter-spacing: 0.55px;
    color: #000;
    font-weight: 700;
}
.port-content p {
       font-size: 16px;
    letter-spacing: 0.55px;
    color: #494949;
}
.bv {
    font-size: 26px;
    font-family: var(--regular-font);
    font-weight: bold;
    margin-bottom: 0;
    line-height: 46px;
    color: #000000;
    letter-spacing: 0.55px;
}


@media only screen and (max-width: 480px) {
    .sli-content h2 {
    font-size: 23px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 29px;
    /* transform: translateX(-100%); */
    /* transition: all 1.5s; */
}
.sli-content ul{
    display:none;
}
.sli-content {
    top: 57%;
    left: 7%;
    transform: translateY(-50%);
}
.webdevelop .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 5s;
}
.sli-content p {
    font-size: 17px;
    color: #fff;
    letter-spacing: 0.55px;
    line-height: 21px;
    width: 75%;
    margin: 15px 0;
    transform: translateX(-150%);
    transition: all 1.5s;
    transition-delay: 1.5s;
}
.bv {
    font-size: 20px;
    font-family: var(--regular-font);
    font-weight: bold;
    margin-bottom: 0;
    line-height: 46px;
    color: #000000;
    letter-spacing: 0.55px;
}
#keyPoint_section .heading,#program_overviewSection1 .heading{
    width:95% !important;
}
#keyPoint_section .keyPoint_wrapper .keyPoint_imgwrapper::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    left: 25px;
    top: -33px;
    background-image: url(../images/key_bg.svg);
    background-size: contain;
    background-position: center;
    z-index: -1;
    opacity: .8;
}
.keyPoint_section .row .col{
    margin-top:5rem !important;
}
#program_overviewSection {
    position: relative;
    padding: 2rem 0 3rem;
    background: linear-gradient(103deg, #fff6f9 0%, #edfffb 50%, #ebebff 100%);
    z-index: 1;
}
#program_overviewSection .program_overviewSection {
    /*padding: 50px 22px 50px;*/
    border-radius: 30px;
    /*background-color: #F7F0FA;*/
    margin-top: 1rem;
}
#keyPoint_section {
    background-color: #fff !important;
    padding: 2rem 0;
    position: relative;
    z-index: 9;
}
.sec-img {
    width: 250px;
    bottom: -5%;
    left: -8%;
    z-index: -1;
    transform: scale(1);
    transition: all .3s;
}
.thir-img {
    width: 250px;
    bottom: -5%;
    right: -8%;
    z-index: -1;
    transform: scale(1);
    transition: all .3s;
}
#program_overviewSection1 {
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
    background-color: #fff;
}
    .enq-br1 a {
        padding: 8px 22px;
        background-color: #4c1348;
        color: #fff;
        border-radius: 7px;
        display: flex;
        justify-content: center;
    }
    .enq-br2 a {
        padding: 8px 22px !important;
        background-color: green !important;
        color: #fff !important;
        border-radius: 7px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap:5px;
        position:initial !important;
    }
    .enq-br2 a img{
        width:18px !important;
    }
        .sli-content {
    width: 90%;
}
    .webdevelop .swiper-slide img {
        height: 50vh !important;
    }
}
#trainingModal .hiringIntern_wrapper .hiringIntern_formWrapper button, #getaquote .hiringIntern_wrapper .hiringIntern_formWrapper button {
    border: unset;
    background: var(--brand-clr);
    color: #ffffff;
    width: 48%;
    padding: 10px;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: .4px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    /* margin: auto; */
    display: flex;
    justify-content: center;
    margin: 37px auto;
}
.heading565 a {
    padding: 8px 20px !important;
    display: block;
    margin-right: 20px;
    border-radius: 30px;
    background: #ffffff;
    width: fit-content;
    font-size: 17px;
    font-size: 17px;
    font-family: var(--regular-font);
    font-weight: 500;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    letter-spacing: .4px;
    border:1px solid #fff;
}
.heading565 a:hover {
    background-color: transparent;
    color:#fff;
    border:1px solid #fff;
}

#terms{
    position: relative;
    padding: 4rem 0;
    margin-bottom: 516px;
    background-color: #ffffff;
    z-index: 1;
}
.inner-news h2{
  font-size: 20px;
    letter-spacing: 0.55px;
    font-weight: 600;
    color: #000;
    line-height: 32px;
}

.rwe {
    font-size: 19px;
    letter-spacing: 0.55px;
    color: #000;
    font-weight: 500;
}
.inner-news li{
    font-size: 17px;
    letter-spacing: 0.55px;
    color: #000;
    font-weight: 400;
    padding-bottom: 6px;
    list-style: circle;
}
.inner-news p{
    font-size: 18px;
    letter-spacing: 0.55px;
    color: #000000db;
    font-weight: 500;
    line-height: 28px;
}
.sd{
  font-size: 34px important;
    letter-spacing: 0.55px;
    font-weight: 600;
    color: #000;
    line-height: 32px;
}
.inner-news ul{
    margin-top: 1%;
}

.cy li{
    list-style: auto;
}
.po{
    font-size: 53px !important;
    line-height: 65px !important;
}