body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  overflow-x: hidden;
}

a:hover {
  text-decoration: none;
}

.header-row-1 {
  padding: 10px 0;
  background: #fdc500;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  z-index: 100;
}

.header-row-1 .hr1-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 20px;
}

.header-row-1 .hr1-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 20px;
}

.hr1-left a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 10px;
  color: #0e0e0e;
  font-size: 12px;
  font-weight: 500;
}

.hr1-right a {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  color: #0e0e0e;
  justify-content: flex-end;
  font-size: 12px;
  transition: transform 0.5s ease-in-out;
}

.hr1-right a:hover {
  transform: rotate(360deg);
}

.header-row-2 {
  background: #070707;
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  z-index: 5;
}

.header-row-2 .navbar img {
  width: 100px;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: rgb(255 255 255 / 76%);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after,
.navbar-light .navbar-nav .nav-link::before {
  transition: all 0.3s ease-in-out 0s;
}

.navbar-light .navbar-nav .nav-link::after {
  transform-origin: 100% 50%;
}

.navbar-light .navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

a.nav-link::after {
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  border-bottom: 2px solid #fdc500;
  color: #fdc500;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgb(253 193 42);
  border-bottom: 2px solid #fdc500;
}

.navbar-light .navbar-nav .nav-item {
  padding: 0 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 215px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
}

.dropdown-content a {
  color: #0e0e0e;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 14px;
}

.dropdown-content a:hover {
  color: #fdc500;
  border-bottom: 2px solid #fdc500;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navbar-light .navbar-toggler {
  color: rgb(233 230 230);
  border-color: rgb(249 245 245 / 84%);
  background-color: #fff;
}

.dropdown_menu-7 .dropdown_item-1 {
  transform-origin: top center;
  animation: translateX 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-7 .dropdown_item-2 {
  transform-origin: top center;
  animation: translateX 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-7 .dropdown_item-3 {
  transform-origin: top center;
  animation: translateX 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-7 .dropdown_item-4 {
  transform-origin: top center;
  animation: translateX 300ms 240ms ease-in-out forwards;
}

@keyframes translateX {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }

  80% {
    transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.carousel-caption.carousel-caption-1 {
  right: inherit;
  left: 10%;
  transform: translateY(-50%);
  top: 50%;
  width: 40%;
  text-align: left;
}

.carousel-caption.carousel-caption-2 {
  left: inherit;
  right: 10%;
  transform: translateY(-50%);
  top: 50%;
  width: 40%;
  text-align: right;
}

.carousel-caption.carousel-caption-1 h5 {
  font-size: 50px;
  font-weight: 700;
  color: #fdc500;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.carousel-caption.carousel-caption-1 p {
  font-size: 18px;
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.carousel-caption.carousel-caption-2 h5 {
  font-size: 50px;
  text-align: left;
  font-weight: 700;
  color: #fdc500;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.carousel-caption.carousel-caption-2 p {
  font-size: 18px;
  text-align: justify;
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.carousel-caption.carousel-caption-1 a {
  background: #fdc500;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  margin-left: 70px;
  padding: 13px 32px;
  display: inline-block;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.carousel-caption.carousel-caption-2 a {
  background: #fdc500;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  margin-right: 70px;
  padding: 13px 32px;
  display: inline-block;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 99;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.carousel-item:after {
    content: "";
    background: linear-gradient(270deg, rgba(240, 240, 240, 0) 0%, rgba(20, 20, 20, 1) 65%);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
    z-index: 1;
}

figure.snip1206 {
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  max-height: 220px;
  width: 100%;
  color: #000000;
  text-align: center;
}

figure.snip1206 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

figure.snip1206 img {
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.snip1206:after {
  background: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  opacity: 0.75;
  -webkit-transform: skew(-45deg) scaleX(0);
  transform: skew(-45deg) scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

figure.snip1206 figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

figure.snip1206 h2,
figure.snip1206 p {
  margin: 0;
  width: 100%;
  opacity: 0;
}

figure.snip1206 h2 {
  color: #26006f;
  padding: 0 23px;
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
}

figure.snip1206 p {
  padding: 0 50px;
  font-size: 0.8em;
  font-weight: 500;
}

figure.snip1206 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.snip1206:hover:after,
figure.snip1206.hover:after {
  -webkit-transform: skew(-45deg) scaleX(1);
  transform: skew(-45deg) scaleX(1);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

figure.snip1206:hover figcaption h2,
figure.snip1206.hover figcaption h2,
figure.snip1206:hover figcaption p,
figure.snip1206.hover figcaption p {
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.snip1206:hover figcaption h2,
figure.snip1206.hover figcaption h2 {
  opacity: 1;
  font-size: 25px;
}

figure.snip1206:hover figcaption p,
figure.snip1206.hover figcaption p {
  opacity: 0.7;
}

/* four */
/* four-2 */
figure.snip0016 {
  font-family: "Raleway", Arial, sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  max-height: 220px;
  width: 100%;
  background: #000000;
  text-align: left;
}

figure.snip0016 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

figure.snip0016 img {
  max-width: 100%;
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.snip0016 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 3em;
  width: 100%;
  height: 100%;
}

figure.snip0016 figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

figure.snip0016 h2,
figure.snip0016 p {
  margin: 0 0 5px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s,
    -o-transform 0.35s, transform 0.35s;
}

figure.snip0016 h2 {
  font-size: 18px;
  color: #fff;
  word-spacing: -0.15em;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-transform: translate3d(30%, 0%, 0);
  transform: translate3d(30%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  padding-top: 45px;
}

figure.snip0016 p {
  font-weight: 200;
  -webkit-transform: translate3d(0%, 30%, 0);
  transform: translate3d(0%, 30%, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

figure.snip0016 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: #ffffff;
}

figure.snip0016:hover img {
  opacity: 0.3;
}

figure.snip0016:hover figcaption h2 {
  font-size: 18px;
  color: #fff;
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

figure.snip0016:hover figcaption p {
  opacity: 0.9;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

figure.snip0016:hover figcaption::before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* four-2 */

.feature-s4.boxed-filled,
.feature-s5.boxed-filled {
  margin-left: 0;
  margin-right: 0;
}

.feature-row:first-child,
.feature-row.mgfix {
  z-index: 1;
  position: relative;
}

/* .feature-row:first-child, .feature-row.mgfix {
    margin-top: -60px;
  } */
.boxed-w {
  background-color: #fff;
}

.boxed-w .heading-box {
  padding: 50px 50px 0 30px;
}

.feature-s4.boxed-filled .feature,
.feature-s4.boxed-filled .fbox-photo,
.feature-s5.boxed-filled .feature,
.feature-s5.boxed-filled .fbox-photo {
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.feature-s4 .feature,
.feature-s5 .feature {
  -ms-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}

.feature {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  background: transparent;
}

.feature > a {
  display: block;
}

a:link,
a:visited {
  text-decoration: none;
}

a {
  outline: 0;
  transition: all 0.5s;
  color: #000;
}

.feature-s4.boxed-filled .feature,
.feature-s4.boxed-filled .fbox-photo,
.feature-s5.boxed-filled .feature,
.feature-s5.boxed-filled .fbox-photo {
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.feature .fbox-photo:first-child,
.feature .fbox-content:first-child {
  margin-top: 0;
}

.feature .fbox-photo {
  -ms-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature .fbox-photo,
.feature .fbox-content {
  margin-top: 20px;
}

.feature-s4.off-text .feature .fbox-photo img,
.feature-s5.off-text .feature .fbox-photo img {
  transform: scale(1.01);
}

.feature-s4 .feature .fbox-photo img,
.feature-s5 .feature .fbox-photo img {
  transition: all 1.2s;
}

.feature .fbox-photo img {
  margin: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
}

img {
  outline: 0;
  border: 0 none;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.feature-s4.off-text .feature .fbox-over,
.feature-s5.off-text .feature .fbox-over {
  transform: translate(0, 100%);
  bottom: 60px;
}

.feature-s4 .feature .fbox-over,
.feature-s5 .feature .fbox-over {
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.feature .fbox-over {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: #000;
  padding: 14px 18px;
  transition: all 0.4s;
  -ms-border-radius: 0px 0px 3px 3px;
  border-radius: 0px 0px 3px 3px;
  background: rgb(255 184 6 / 77%);
}

.feature .fbox-over .title,
.feature .fbox-over .fbox-content {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.feature .fbox-over h3,
.feature .fbox-over h4,
.feature .fbox-over h5 {
  color: inherit;
}

.feature h3,
.feature h4 {
  color: #40454b;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.feature .fbox-over .title + .fbox-content {
  margin-top: 10px;
  font-size: 0.875em;
}

.feature .fbox-over .title,
.feature .fbox-over .fbox-content {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.feature .fbox-over .title {
  margin-top: 10px;
}

.feature .fbox-photo,
.feature .fbox-content {
  margin-top: 20px;
}

.feature-s4 .feature .fbox-over p,
.feature-s4 .feature .fbox-over .sub-lead,
.feature-s4 .feature .fbox-over .lead,
.feature-s5 .feature .fbox-over p,
.feature-s5 .feature .fbox-over .sub-lead,
.feature-s5 .feature .fbox-over .lead {
  color: #000;
  padding-top: 11px;
}

.feature p,
.feature .sub-lead,
.feature .lead {
  color: #747d88;
}

.feature .fbox-over .btn:last-child {
  margin-bottom: 5px;
}

.feature .fbox-over .btn {
  background-color: transparent;
  border-color: #000;
  padding: 7px 16px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}

.btn {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  padding: 12px 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  border: 2px solid rgb(240 191 67);
  background-color: rgb(240 191 67);
  box-sizing: border-box;
  transition: all 0.4s;
  -ms-border-radius: 45px;
  border-radius: 45px;
}

.feature-s4.off-text .feature:hover .fbox-over,
.feature-s4.off-text .feature > a:focus .fbox-over,
.feature-s5.off-text .feature:hover .fbox-over,
.feature-s5.off-text .feature > a:focus .fbox-over {
  transform: translate(0, 0);
  bottom: 0;
}

.feature .fbox-over .btn:hover {
  background-color: #000;
  color: rgb(240 191 67);
  border-color: #000;
}

.section.section-services {
  padding-bottom: 50px;
}

.fbox-over a:hover {
  color: #000;
}

.section-pad {
  padding-top: 90px;
  padding-bottom: 90px;
}

.row-vm {
  align-items: center;
  display: flex;
}

.heading-sm-lead,
.heading-md-lead {
  color: rgb(252 201 58);
}
.heading-sm-lead {
  color: rgb(80 80 78);
}

.heading-sm-lead,
.heading-md-lead,
.heading-lg-lead {
  letter-spacing: 4px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}

h6,
.h6,
.heading-sm,
.heading-sm-lead {
  font-size: 0.875em;
}
.heading-sm-lead {
  font-size: 0.875em;
  display: inline-block;
  background: #f9d04726;
  padding: 3px;
  border: 2px solid #ebb842;
}

.heading-section,
.heading-lead {
  margin-bottom: 30px;
}

.heading-section {
  font-size: 1.875em;
  text-transform: uppercase;
  color: #40454b;
  font-weight: 700;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
table {
  margin: 0 0 18px;
}

.col-md-offset-1 {
  margin-left: 8.33333333%;
}

.section-pad p {
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
}

.choose_left {
  border: 5px solid #f9c739;
  padding: 46px 21px 46px 33px;
  width: 90%;
}

.choose_left > h3 {
  color: #222222;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
}

.separator {
  background: #f9c739 none repeat scroll 0 0;
  height: 5px;
  margin-bottom: 22px;
  margin-top: 19px;
  width: 73px;
}

.choose_left > p {
  color: #818181;
  font-size: 14px;
  font-weight: 300;
}

.choose_right {
  margin-top: 20px;
}

.choose_right i {
  background: #f4eace none repeat scroll 0 0;
  border-radius: 2px;
  color: #f9c739;
  font-size: 25px;
  padding: 13px 15px;
}

.choose_right > h3 {
  color: #222222;
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
}

.choose_right > p {
  color: #818181;
  font-size: 14px;
  font-weight: 300;
}

.choose_area {
  padding: 60px 0;
  position: relative;
}

.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.section-title {
  max-width: 700px;
  margin: -5px auto 50px;
  text-align: center;
  position: relative;
}

.section-title .top-title {
  font-size: 16px;
  color: #fcc93a;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 50px;
}

.section-title h2 span {
  color: #fcc93a;
}

.single-services {
  position: relative;
  overflow: hidden;
}

.single-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(19.27%, rgba(0, 0, 0, 0)),
    color-stop(47.4%, rgba(0, 0, 0, 0)),
    to(#000000)
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 19.27%,
    rgba(0, 0, 0, 0) 47.4%,
    #000000 100%
  );
}

.single-services .services-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px;
}

.single-services .services-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.single-services .services-content h3 a {
  color: #ffffff;
}

.single-services .services-content p {
  color: #ffffff;
  margin-bottom: -75px;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services .services-content .read-more {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.read-more {
  font-size: 16px;
  color: #fcc93a;
  background-color: transparent;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-weight: 600;
}

.read-more i {
  position: relative;
  top: 1px;
  font-size: 15px;
}

.single-services .services-content .read-more:hover {
  color: #fcc93a;
}

.single-services:hover .services-content p {
  opacity: 1;
  margin-bottom: 15px;
}

.single-services:hover .read-more {
  color: #fcc93a;
}

.services-area {
  padding: 60px 0;
}

.main-footer .footer-upper {
  position: relative;
  padding: 50px 0px 0px;
  color: #fff;
  background: rgb(46, 45, 45) url(../images/footer-pattern.png) center center
    no-repeat;
  line-height: 2em;
}

.main-footer .footer-upper .column {
  position: relative;
  margin-bottom: 30px;
}

.main-footer .about-widget {
  font-size: 15px;
}

.footer-upper .column h2 {
  position: relative;
  font-size: 16px;
  line-height: 1.4em;
  padding: 0px 0px 18px;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-upper .column h2:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background: #fcc93a;
}

.footer-upper .links-widget li {
  position: relative;
  margin-bottom: 12px;
}

.footer-upper .links-widget li a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 24px;
}

.main-footer .footer-upper a {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.footer-upper .twitter-feeds .feed {
  position: relative;
  padding: 0px 0px 0px 30px;
  margin-bottom: 20px;
  color: #c8c8c8;
}

.footer-upper .twitter-feeds .feed .icon {
  position: absolute;
  width: 30px;
  height: 20px;
  left: 0px;
  top: 5px;
  line-height: 20px;
  font-size: 16px;
  color: #fcc93a;
}

.footer-upper .twitter-feeds .feed .time {
  position: relative;
  color: #2cb4cc;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-upper .twitter-feeds .feed-content {
  margin-bottom: 5px;
}

.footer-upper .twitter-feeds .feed a {
  position: relative;
  color: #ffffff;
}

.main-footer .newsletter-widget {
  position: relative;
}

.main-footer .newsletter-widget .form-group {
  margin-bottom: 20px;
}

.main-footer .newsletter-widget input[type="text"],
.main-footer .newsletter-widget input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 7px 15px;
  background: #35424f;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-one {
  position: relative;
  padding: 8px 25px;
  line-height: 20px;
  text-transform: uppercase;
  display: inline-block;
  background: #1cbefe;
  color: #ffffff !important;
  font-size: 12px;
  border: 1px solid #1cbefe !important;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.theme-btn {
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.footer-bottom {
  position: relative;
  background: #1c1d1d;
  padding: 10px 0px;
  font-size: 13px;
  text-align: center;
}

.main-footer .social-links a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  width: 32px;
  height: 32px;
  line-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  background: none;
  margin-right: 10px;
  color: #f1f1f1;
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-footer .social-links a:hover {
  color: #ffffff;
  background: #fcc93a;
}

.main-footer .social-links a:hover span {
  color: #000;
}

.footer-bottom .copyright {
  position: relative;
  line-height: 20px;
  padding: 5px 0px;
  color: #cddcea;
}

.footer-upper .links-widget li a:hover {
  color: #fcc93a;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.footer-upper .twitter-feeds .feed a:hover {
  color: #fbc83a;
}

.page-banner-area.bg-1 {
  background-image: url(../images/page-bg-1.jpg);
}
.page-banner-areas.bg-1 {
  background-image: url(../images/about-top.jpg) !important;
}
.startup.bg-1 {
  background-image: url(../images/startup.jpg) !important;
}
.tax-copl.bg-1 {
  background-image: url(../images/tax-copl.jpg) !important;
}
.tax-help.bg-1 {
  background-image: url(../images/tax-help.jpg) !important;
}

.contact-us-btn.bg-1 {
  background-image: url(../images/contact-us-btn.jpg) !important;
}

.page-banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-image: url(../images/page-bg-1.jpg);
}
.page-banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-image: url(../images/page-bg-1.jpg);
}

/* .page-banner-area-img{
    width: 300px;
} */

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* .ptb-1000 {
    padding-top: 65px;
} */

.page-banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(18.1%, #ffffff),
    color-stop(58.56%, rgba(241, 247, 248, 0.2)),
    color-stop(65.36%, rgba(241, 247, 248, 0))
  );
  background: linear-gradient(270deg, rgb(20 20 20 / 66%) 0%, rgb(0 0 0 / 28%) 65%);
  z-index: -1;
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.page-banner-content h2 {
  font-size: 77px;
  margin-bottom: 20px;
  color: #fff;
}

.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  line-height: 1;
}

.delay-0-4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.page-banner-content ul li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  color: #fff;
}

.page-banner-content ul .li::before {
  content: "";
  position: absolute;
  top: 1px;
  right: -19px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  color: #fff;
}

.page-banner-area a:hover {
  text-decoration: none;
  color: #fcc93a;
}

.page-banner-area a {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-decoration: none;
  color: #fff;
}

.page-banner-content ul li:last-child {
  margin-right: 0;
}

.choose-us-content {
  margin-right: 100px;
}

.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.choose-us-content .top-title {
  font-size: 16px;
  font-weight: 600;
  color: #fcc93a;
  margin-bottom: 10px;
  display: block;
}

.choose-us-content h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.choose-us-content p {
  position: relative;
  z-index: 1;
  padding-left: 15px;
  text-align: justify;
}

.choose-us-img {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-left: 30px;
}

.choose-us-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  bottom: -30px;
  width: 300px;
  height: 300px;
  background-color: #fcc93a;
  z-index: -1;
}

.section-pads {
  padding-top: 135px;
  padding-bottom: 135px;
  background: rgb(46, 45, 45) url(../images/footer-pattern.png) no-repeat;
  background-size: cover;
}

/* .bg-light, .box-s2 {
    background: #000;
} */
.heading-section,
.heading-lead {
  margin-bottom: 20px;
}

.section-pads .heading-section {
  font-size: 1.875em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.gaps.size-sm {
  height: 15px;
}

.gaps {
  clear: both;
  height: 20px;
  display: block;
  margin: 0;
}

.bg-white,
.box-s1 {
  background: #fff;
}

.pd-x3 {
  padding: 30px;
}

.round {
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.icon-box.style-s1,
.icon-box.style-s2 {
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #fcc93a;
  color: #000;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  color: #24c9ed;
  transition: all 0.4s;
  text-align: center;
  font-size: 1.25em;
  line-height: 50px;
  margin: 2px 0;
  border: 1px solid transparent;
}

.icon-box + h4,
.icon-box + h3,
.icon-box + h5 {
  margin-top: 20px;
}

.center {
  text-align: center;
}

.com_history {
  padding: 68px 0 68px;
  position: relative;
}
.com_history .about_sharp_2 {
  position: absolute;
  bottom: 440px;
  right: 75px;
}
.com_history .about_sharp_1 {
  position: absolute;
  bottom: 50px;
  right: 0;
}
.com_history .about_sharp_3 {
  position: absolute;
  bottom: 425px;
  right: 125px;
}

.sec_title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #222222;
  margin: 0 0 30px;
}

.com_history .sec_desc {
  margin-bottom: 80px;
}

.singleHistory .flipper {
  -webkit-transform-origin: 100% 213.5px;
  -moz-transform-origin: 100% 213.5px;
  -ms-transform-origin: 100% 213.5px;
  transform-origin: 100% 213.5px;
}

.singleHistory .flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 0.6s;
  -moz-transition: 0.6s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.singleHistory .front {
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  background: #fff;
  z-index: 2;
  padding: 37px 30px 24px 35px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 22px 0px rgb(129 128 224 / 17%);
  -moz-box-shadow: 0px 0px 22px 0px rgba(129, 128, 224, 0.17);
  box-shadow: 0px 0px 22px 0px rgb(129 128 224 / 17%);
}

.singleHistory .front,
.singleHistory .back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -moz-transform: rotateY(0deg);
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  -o-transform: rotateY(0deg);
  -ms-transition: 0.6s;
  -ms-transform-style: preserve-3d;
  -ms-transform: rotateY(0deg);
  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  position: absolute;
  top: 0;
  left: 0;
}

.singleHistory .back h4,
.singleHistory .front h4 {
  font-size: 22px;
  line-height: 30px;
  color: #fcc93a;
  font-weight: 700;
  margin: 0 0 17px;
}

.singleHistory .front p {
  margin: 0 0 16px;
}

.singleHistory .back:after,
.singleHistory .front:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 79px;
  height: 74px;
  background: #c5c5f7;
  content: "";
  z-index: 9;
  border-radius: 0 0 0 100%;
}

.singleHistory:hover .front,
.singleHistory.hover .front {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.singleHistory:hover .back,
.singleHistory.hover .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.singleHistory .back {
  background: #fcc93a;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  position: relative;
  padding: 40px 30px 26px 35px;
  width: 100%;
  top: -34px;
}

.singleHistory .back h4,
.singleHistory .back p {
  color: #fff;
}

.singleHistory .back h4,
.singleHistory .back p {
  color: #fff;
}

.singleHistory .back:after,
.singleHistory .front:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 79px;
  height: 74px;
  background: #f8eac2;
  content: "";
  z-index: 9;
  border-radius: 0 0 0 100%;
}

/* contact */
.contact-row {
  padding: 60px 0;
}

.contact-title {
  font-size: 1.875em;
  text-transform: uppercase;
  color: #40454b;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.con-details iframe {
  max-width: 100%;
  margin-top: 100px;
  margin-bottom: 50px;
  width: 100%;
}

.contact-row .inner-box {
  border: 1px solid #ddd;
  padding: 22px 20px;
  background: #000;
  margin: 20px 20px;
}

.contact-row .inner-box-2 {
  padding: 20px 20px;
  margin: 20px 20px;
}

.contact-row .inner-box-3 {
  height: 205px;
}
.contact-row .inner-box-4 {
  
}

.inner-box-3 h3 {
  color: #fff;
}

.inner-box-2 h3,
.inner-box-2 p {
  color: #fff;
}

.contact-row .inner-box .inner-content {
  /* display: flex; */
}

.contact-row .inner-box .inner-content i.fa {
  font-size: 34px;
  float: left;
  width: 13%;
  color: #fbc83a;
}

.contact-row .p1 {
  display: flex;
  justify-content: space-evenly;
}

.contact-row .p1 a {
  color: #fff;
}

.contact-row .p1 a:hover {
  color: #fbc83a;
}

.tp-contact-big-title {
  font-size: 45px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 60px;
}

.con-details {
  padding: 50px 0;
}

.tpcontact__form input {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  border-radius: 10px;
  color: #8a90a2;
  margin-bottom: 30px;
}
.tpcontact__form select {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  border-radius: 10px;
  color: #8a90a2;
  margin-bottom: 30px;
}

.tpcontact__form-3 input {
  border: 1px solid #bfc0c2 !important;
}
.tpcontact__form-3 select {
  border: 1px solid #bfc0c2 !important;
}

.tpcontact__form input:focus,
.tpcontact__form textarea:focus,
.tpcontact__form select:focus {
  border: 2px solid #000 !important;
  box-shadow: none !important;
}

.tpcontact__form textarea {
  width: 100%;
  resize: none;
  border: none;
  height: 215px;
  display: inline-block;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 28px;
  color: #8a90a2;
}

.tpcontact__form-3 textarea {
  border: 1px solid #bfc0c2 !important;
}

.submit .btn {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.btn21:hover {
  background: transparent;
  color: #fff;
}

.submit input[type="submit"]:before,
input[type="submit"]:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 0;
  left: 0;
}

.btn21 {
  color: #fff;
  background: #fab13b !important;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1) !important;
  width: 130px !important;
  height: 50px !important;
}

#error_message {
  margin-bottom: 20px;
  color: #f9242b;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s ease;
}

.con-details p {
  font-size: 20px;
}

.bank {
  flex-wrap: nowrap;
}

.ar5-row {
  display: flex;
  margin-bottom: 8px;
  /*padding-right: 81px;*/
}

.ar5-inner-row-1 {
  width: 1%;
}

.ar5-inner-row-1 i {
  color: #fcc93a;
  font-size: 20px;
  line-height: inherit;
}

.ar5-row p {
  font-size: 17px;
  color: #000;
  line-height: 30px;
  text-align: justify;
  width: 99%;
  padding: 0px 0 0 30px;
}

/* contact */
/* registration */
.heading-lg {
  font-size: 30px;
  color: #e2ab3f;
}

.section-contents img.alignright {
  padding: 0;
  float: right;
  margin: 5px 0 10px 30px;
}

.registration .heading-lg {
  font-size: 30px;
  padding: 30px 0;
}

.registration p,
.business p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.business .heading-lg {
  font-size: 30px;
  padding: 0 0 30px;
}

.business {
  padding: 50px 0;
}

.business p {
  padding-bottom: 25px;
}

.business .service-details-card {
  padding: 30px;
  box-shadow: 0px 8px 30px #6a6a6a1a;
  display: flex;
  align-items: flex-start;
  border-left: 5px solid #e1a940;
}

.business .thumbnail {
  margin-bottom: 45px;
}

.business .service-details-card .thumbnail img {
  height: 29px;
  width: 74px;
}

.business .service-details-card .details {
  margin-left: 20px;
}

.business .service-details-card .details .title {
  margin-bottom: 5px;
  font-size: 20px;
}

.business .service-details-card .details p {
  margin-bottom: 0;
}

.business-img img {
  padding: 0 50px;
}

.epfo h2 {
  padding-bottom: 30px;
}

.epfo p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.epf h3 {
  padding-top: 30px 0;
}

.epf p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.epf .epf-img {
  padding: 0 50px;
  margin-top: 78px;
}

.PF-Contribution .single-service-step {
  background: #fff;
  padding: 40px 20px;
  border: 1px solid #eeeeee;
  box-shadow: 0px 6px 39px #0000000a;
  height: 337px;
}

.PF-Contribution .single-service-step p.step {
  position: relative;
  color: #fff;
  z-index: 1;
  margin-bottom: 52px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 29px;
}

.PF-Contribution .single-service-step p.step::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #e1a94023;
  height: 90px;
  width: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}

.PF-Contribution .single-service-step p.step::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #e1a940;
  height: 60px;
  width: 60px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}

.PF-Contribution .single-service-step .title {
  margin-bottom: 8px;
  font-weight: 700;
}

.PF-Contribution .single-service-step p.disc {
  font-size: 15px;
  line-height: 26px;
  text-align: left;
}

.PF-Contribution {
  padding-bottom: 50px;
}

.epf-payment p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.epf-payment h6 {
  font-size: 25px;
}

.epf-payment {
  padding-bottom: 50px;
}

.servicelist--style2 {
  margin-bottom: 0;
  margin-top: 20px;
}

.pg-services-area__srevicelist {
  margin-top: 40px;
}

.servicelist--style2 .service--style2 {
  margin-top: 50px;
  margin-right: 20px;
}

.service--style2 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.service {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

.service--style2 .service__thumb {
  overflow: hidden;
}

.service--style2 .service__thumb a {
  display: inline-block;
  position: relative;
}

.service--style2 .service__thumb img {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.service--style2 .service__content {
  margin-top: 30px;
}

.service__content {
  -ms-flex-negative: 100;
  flex-shrink: 100;
}

.service__content h5 {
  text-transform: uppercase;
  color: #616161;
  font-weight: 700;
}

.service__content h5 a {
  color: #616161;
}

.service__content h5 a:hover {
  color: #e1a940;
}

.service__content p {
  margin-bottom: 0;
}

.service--style2:hover .service__thumb img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.servicelist--style2 {
  padding-bottom: 100px;
}

.esi p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.esi h2 {
  font-size: 30px;
}

.esi h6 {
  font-size: 25px;
  padding-top: 20px;
}

.esi .ar5-inner-row-1 i {
  color: #000;
  font-size: 20px;
  line-height: inherit;
}

.call-action.has-bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.call-action.bg-primary {
  background-color: #ad7102;
}

.call-action {
  color: #fff;
  background-color: #ad7102;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.bg-primary {
  background: #ad7102;
}

.has-bg {
  position: relative;
}

.has-bg,
.fixed-bg {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.call-action.has-bg.bg-primary .cta-block,
.call-action.has-parallax.bg-primary .cta-block {
  background: #ad7102b3;
}

.call-action.has-bg.cta-small .cta-block {
  padding: 90px 0;
}

.call-action.cta-small .cta-block {
  padding: 30px 0;
}

.call-action.has-bg .cta-block {
  background: rgba(0, 0, 0, 0.7);
}

.call-action .cta-block {
  padding: 45px 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: table;
}

.call-action .cta-sameline {
  position: relative;
  padding-right: 260px;
}

.call-action .cta-sameline h1,
.call-action .cta-sameline h2,
.call-action .cta-sameline h3,
.call-action .cta-sameline h4,
.call-action .cta-sameline p {
  margin: 1px 0 3px;
}

.call-action h1,
.call-action h2 {
  font-weight: 700;
  font-size: 1.875em;
}

.call-action .cta-sameline p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.call-action h1,
.call-action h2,
.call-action h3,
.call-action h4 {
  color: inherit;
  line-height: 1.5;
  margin: 15px 0;
}

.call-action .cta-sameline .btn,
.call-action .cta-sameline .cta-num {
  top: 50%;
  right: 0;
  margin-top: 0;
  position: absolute;
  transform: translate(0, -50%);
  transform-style: preserve-3d;
}

.call-action .btn {
  min-width: 160px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

.call-action .btn {
  min-width: 160px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

.call-action.bg-primary .btn:not(.btn-light):hover {
  background-color: #fff;
  border-color: #fff;
}

.call-action.bg-primary .btn:not(.btn-light):hover {
  color: #e1a940;
}

.call-action.bg-primary .btn:not(.btn-light):focus {
  box-shadow: none;
}

.img-1 {
  padding: 0 50px;
}

.registration h2 {
  padding-top: 30px;
}

.accordion {
  margin: 40px 0;
}

.accordion .item {
  border: none;
  margin-bottom: 30px;
  background: none;
}

.t-p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
  color: #000;
  padding: 40px 30px 15px 30px;
  background: #e5af40;
}

.t-p-1 {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
  color: #000;
  padding: 0px 30px 15px 30px;
  background: #e5af40;
}

.accordion .item .item-header h2 button.btn.btn-link {
  background: #070707;
  color: white;
  border-radius: 0px;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
  text-decoration: none;
}

.accordion .item .item-header {
  border-bottom: none;
  background: transparent;
  padding: 0px;
  margin: 2px;
}

.accordion .item .item-header h2 button {
  color: white;
  font-size: 20px;
  padding: 15px;
  display: block;
  width: 100%;
  text-align: left;
}

.accordion .item .item-header h2 i {
  float: right;
  font-size: 30px;
  color: #eca300;
  background-color: black;
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

button.btn.btn-link.collapsed i {
  transform: rotate(0deg);
}

button.btn.btn-link i {
  transform: rotate(180deg);
  transition: 0.5s;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.epf .img-image {
  margin-top: 35px;
}
.epf{
  position: relative;
}
.epf .about_sharp_1 {
  position: absolute;
  bottom: 50px;
  right: 0;
}
.epf .about_sharp_2 {
  position: absolute;
  bottom: 440px;
  right: 75px;
}
.epf .about_sharp_3 {
  position: absolute;
  bottom: 425px;
  right: 125px;
}

.epfo-info {
  padding: 50px 0 100px;
}
.epfo{
  position: relative;
}
.epfo .about_sharp_1 {
  position: absolute;
  right: 6%;
  top: 28%;
}
.epfo .about_sharp_2 {
  position: absolute;
  left: 17%;
  bottom: 39%;
}
.epfo .about_sharp_3 {
  position: absolute;
  left: 10%;
  top: 28%;
}
.epfo .about_sharp_4 {
  position: absolute;
  right: 17%;
  bottom: 45%;
}
.epfo .about_sharp_5 {
  position: absolute;
  right: 11%;
  bottom: 23%;
}

.info-esi .esi-info p {
  text-align: left;
}

.info-esi .ar5-inner-row-1 i {
  color: #000;
  font-size: 20px;
  line-height: inherit;
}

.info-esi {
  padding: 50px 0;
}

/* registration */
/* tax compliance */
.bg-color {
  background: #f7f7f7;
}

.pad100 {
  padding: 100px 0;
}

.section-title .title-text h2 {
  color: #2b3032;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title .title-text h2:before,
.section-title .title-text h2:after {
  position: absolute;
  left: 50%;
  top: 40px;
  content: "";
  background: #e5af41;
  width: 8px;
  height: 8px;
  z-index: 9;
  transform: translateX(-50%);
}

.section-title .title-text h2:before,
.section-title .title-text h2:after {
  position: absolute;
  left: 50%;
  top: 40px;
  content: "";
  background: #e5af41;
  width: 8px;
  height: 8px;
  z-index: 9;
  transform: translateX(-50%);
}

.section-title .title-text h2:after {
  width: 120px;
  height: 2px;
  top: 43px;
}

.section-title .title-text p {
  font-size: 17px;
  line-height: 30px;
  margin: 7px 0 50px;
  display: inline-block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.financial-company-area .company-content {
  margin-top: 57px;
}

.financial-company-area .company-content h3 {
  color: #2b3032;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.financial-company-area .company-content p {
  font-size: 17px;
}

.financial-company-area .company-content .custom {
  margin-top: 30px;
}

.financial-company-area .company-content .custom .col-one,
.financial-company-area .company-content .custom .col-two {
  margin-right: 20px;
}

.financial-company-area .company-content .custom .col-one p,
.financial-company-area .company-content .custom .col-two p {
  font-size: 16px;
}

.financial-company-area .company-content .custom .col-one p i.fa,
.financial-company-area .company-content .custom .col-two p i.fa {
  color: #2b3032;
  padding-right: 5px;
}

.financial-company-area .company-content .custom .col-two {
  margin-right: 0;
}

.financial-company-area .company-content .custom .col-one p,
.financial-company-area .company-content .custom .col-two p {
  font-size: 17px;
}

.financial-company-area .company-content .custom .col-one p i.fa,
.financial-company-area .company-content .custom .col-two p i.fa {
  color: #e5af41;
  padding-right: 5px;
}

.financial-company-area .company-content .h3 {
  color: #e2ab3f;
}

.how-we-work-area .inner-content .icon-bar {
  border: 2px solid #e5af41;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}

.how-we-work-area .inner-content .icon-bar span {
  font-size: 16px;
  font-weight: 500;
}

.how-we-work-area .inner-content .heading {
  display: inline-block;
  margin-top: 10px;
}

.how-we-work-area .inner-content .heading h3 {
  color: #2b3032;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.how-we-work-area .inner-content p {
  margin: 20px 0 0;
}

.mt40 {
  margin-top: 40px;
}

.inner-content p i.fa {
  color: #e5af41;
  padding-right: 10px;
}

.compliance h2 {
  font-size: 30px;
  padding-top: 30px;
}

.compliance p {
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 10px;
}

.compliance h3 {
  font-size: 24px;
}

/* .compliance .comp-p{
    line-height: 30px;
    font-size: 18px;
} */
.compliance .comp-p i.fa {
  padding-right: 10px;
}

.comp-div {
  padding-top: 50px;
}

.compliance {
  padding-bottom: 60px;
}

.tds {
  padding-bottom: 60px;
}

.tds h1 {
  padding-top: 30px;
  font-size: 30px;
}

.tds p {
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
}

.tds .note {
  font-size: 20px;
  font-weight: 700;
}

.tds .note span {
  font-size: 18px;
  font-weight: 400;
}

/* tax compliance */
/* utility srvices */
.trust-services {
  padding: 60px 0;
}

.trust-row p {
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
}

.trust-row p i.fa {
  padding-right: 10px;
}

.trust-row {
  padding: 20px 50px;
}

.payroll-services h3 {
  text-align: center;
}

.payroll-services p {
  font-size: 17px;
  line-height: 30px;
}

.payroll-services p i.fa {
  padding-right: 10px;
}

.payroll-services {
  padding-bottom: 60px;
}

.mt--70 {
  margin-bottom: 70px !important;
}

.service-detials-step-3 .title {
  margin-bottom: 8px;
}

.service-detials-step-3 p.disc {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.service-detials-step-3 .single-banifits {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-detials-step-3 .single-banifits i {
  margin-right: 15px;
  color: #e4ae40;
}

.other-services h6 {
  text-align: center;
}

.other-services {
  padding-bottom: 60px;
}

/* utility srvices */

.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp_float:hover {
  color: #fff;
}

.whatsapp-icon {
  margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
    margin-top: 10px;
  }

  .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }
}
.article-row-1{
  position: relative;
}
.article-row-1 .about_sharp_1 {
  position: absolute;
  right: 6%;
  top: 28%;
  z-index: 5;
}
.choose_area .about_sharp_1 {
  position: absolute;
  right: 6%;
  top: 28%;
  z-index: 5;
}
.custom-animation {
  backface-visibility: hidden;
  animation: jumping 3s ease-in-out 0.5s infinite alternate;
  animation-delay: 0.5s;
  transition: all 0.5s ease 5s;
  user-select: none;
}
.article-row-1 .about_sharp_2 {
  position: absolute;
  left: 17%;
  bottom: 39%;
  z-index: 5;
}
.choose_area .about_sharp_2 {
  position: absolute;
  left: 17%;
  bottom: 39%;
  z-index: 5;
}
.custom-animation2 {
  backface-visibility: hidden;
  animation: jumping2 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 1s ease 3s;
  user-select: none;
}
.custom-animation3 {
  backface-visibility: hidden;
  animation: jumping3 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 7s ease 2s;
  user-select: none;
}
.article-row-1 .about_sharp_3 {
  position: absolute;
  left: 10%;
  top: 28%;
  z-index: 5;
}
.choose_area .about_sharp_3 {
  position: absolute;
  left: 10%;
  top: 28%;
  z-index: 5;
}
.article-row-1 .about_sharp_4 {
  position: absolute;
  right: 17%;
  bottom: 45%;
  z-index: 5;
}
.choose_area .about_sharp_4 {
  position: absolute;
  right: 17%;
  bottom: 45%;
  z-index: 5;
}
.custom-animation4 {
  backface-visibility: hidden;
  animation: jumping4 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 8s ease 4s;
  user-select: none;
}
.custom-animation5 {
  backface-visibility: hidden;
  animation: jumping4 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 8s ease 4s;
  user-select: none;
}
.article-row-1 .about_sharp_5 {
  position: absolute;
  right: 11%;
  bottom: 23%;
  z-index: 5;
}
.choose_area .about_sharp_5 {
  position: absolute;
  right: 11%;
  bottom: 23%;
  z-index: 5;
}
@keyframes jumping_animation {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-25px) translateX(-25px) rotate(5deg) scale(0.75);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-25px) translateX(-25px) rotate(0) scale(1);
    opacity: 0.85;
  }
}
@keyframes jumping_animation2 {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px) translateX(-10px) rotate(2deg) scale(0.9);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-20px) translateX(-20px) rotate(0) scale(1);
    opacity: 0.85;
  }
}

@keyframes jumping {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-25px) translateX(-25px) rotate(15deg) scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-15px) translateX(-15px) rotate(0) scale(1);
    opacity: 0.85;
  }
}

@keyframes jumping1 {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-15px) translateX(-15px) rotate(5deg) scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-15px) translateX(-15px) rotate(5deg) scale(1);
    opacity: 0.85;
  }
}

@keyframes jumping {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-15px) translateX(-15px) rotate(15deg) scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-15px) translateX(-15px) rotate(0) scale(1);
    opacity: 0.85;
  }
}

@keyframes jumping2 {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 0.5;
  }

  25% {
    transform: translateY(-30px) translateX(10px) rotate(20deg) scale(0.8);
    opacity: 0.8;
  }

  50% {
    transform: translateY(15px) translateX(-15px) rotate(10deg) scale(0.7);
    opacity: 0.8;
  }

  75% {
    transform: translateY(30px) translateX(20px) rotate(20deg) scale(0.75);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-15px) translateX(15px) rotate(0) scale(0.75);
    opacity: 0.9;
  }
}

@keyframes jumping3 {
  0% {
    transform: translateY(10px) translateX(0) rotate(0) scale(1);
    opacity: 0.9;
  }

  20% {
    transform: translateY(20px) translateX(10px) rotate(-20deg) scale(0.8);
    opacity: 0.8;
  }

  40% {
    transform: translateY(15px) translateX(-15px) rotate(10deg) scale(0.75);
    opacity: 0.8;
  }

  40% {
    transform: translateY(-15px) translateX(-25px) rotate(10deg) scale(0.5);
    opacity: 1;
  }

  80% {
    transform: translateY(-30px) translateX(20px) rotate(-20deg) scale(0.75);
    opacity: 0.6;
  }

  100% {
    transform: translateY(15px) translateX(15px) rotate(0) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes jumping4 {
  0% {
    transform: translateY(-30px) translateX(20px) rotate(0) scale(1.2);
    opacity: 0.7;
  }

  25% {
    transform: translateY(-20px) translateX(10px) rotate(50deg) scale(0.6);
    opacity: 0.8;
  }

  50% {
    transform: translateY(15px) translateX(-15px) rotate(20deg) scale(0.5);
    opacity: 0.9;
  }

  75% {
    transform: translateY(30px) translateX(20px) rotate(50deg) scale(0.75);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-15px) translateX(15px) rotate(0) scale(0.5);
    opacity: 0.9;
  }
}

@keyframes jumping5 {
  0% {
    transform: rotate(180deg);
    display: block;
  }

  100% {
    transform: rotate(30deg);
    display: block;
  }
}

@keyframes jumping6 {
  0% {
    transform: rotate(180deg) translate(-20px, 20px);
    display: block;
  }

  100% {
    transform: rotate(30deg) translate(0px, 0px);
    display: block;
  }
}
#particle-canvas {
  width: 100%;
  height: 654px;
  position: absolute !important;
  top: 0;
  z-index: 2;
}
#particle-canvas canvas {
  width: 100%;
  height: 654px;
  position: absolute !important;
  top: 0;
  z-index: 2;
}
.page-banner-area #particle-canvas {
  width: 100%;
  height: 328px !important;
  position: absolute !important;
  top: 0;
  z-index: 2;
}
.page-banner-area #particle-canvas canvas{
  width: 100%;
  height: 328px !important;
  position: absolute !important;
  top: 0;
  z-index: 2;
}

.page-banner-area-1 #particle-canvas {
  width: 100%;
  height: 317px;
  position: absolute !important;
  top: 0;
  z-index: 1;
}
.page-banner-content{
  position: relative;
  z-index: 21;
}
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  position: absolute;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  animation: cursorAnim 0.5s infinite alternate;
  pointer-events: none;
}

.cursor:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  border: 8px solid gray;
  border-radius: 50%;
  opacity: 0.5;
  top: -8px;
  left: -8px;
  animation: cursorAnim2 0.5s infinite alternate;
  position: absolute;
  z-index: 10;
}

@keyframes cursorAnim {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.7);
  }
}

@keyframes cursorAnim2 {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.4);
  }
}

@keyframes cursorAnim3 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(3);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.expand {
  animation: cursorAnim3 0.5s forwards;
  border: 1px solid red;
}
.error-page h1{
  margin-top: 40px;
  font-size: 36px;
  font-weight: 600;
  color: #1073a9;
  text-align: center;
}
.error-page {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.fl-fl {
  background: #3C5A98;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -160px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
.insta{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.linkedin{
  background: #0077B5;
}
.whatsapp{
  background: #36CC62;
}

.float-sm .fa {
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}

.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px!important;
  vertical-align: top!important;
}

.float-fb {
  bottom: 97px;
}

.float-tw {
  bottom: 154px;
}

.float-gp {
  bottom: 211px;
}

.float-rs {
  bottom: 269px;
}

.float-ig {
  bottom: 328px;
}

.float-pn {
  bottom: 387px;
}
.scroll-top-wrapper .scroll_top {
    display: inline-block;
    font-size: 35px;
    line-height: 37px;
    text-align: center;
    background: #dfad05;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: key1 0.6s ease infinite alternate;
}
.scroll-top-wrapper {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 11;
}
.scroll-top-wrapper .scroll_top:hover {
    background: #4d4d4d;
}
@keyframes key1{
  0% {transform: translateY(0px);}
  100% {transform: translateY(-10px);}
}
.book-keeping{
  padding-bottom: 60px ;
}
.ptr{
  padding-bottom: 60px ;
}
.pf_esi_return{
  padding-bottom: 60px ;
}
.corporate_work{
  padding-bottom: 60px ;
}