:root {
  --primary: #06A3DA;
  --secondary: #34AD54;
  --light: #EEF9FF;
  --dark: #091E3E;
}

@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:wght@300;400;700&display=swap');

.new-ft {
  font-family: 'Kantumruy Pro', sans-serif;
  font-weight: 700 !important;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: #f00;
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Heading ***/
/*h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}*/

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}


/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}


.btn-green {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 50px transparent;
  background-color: #e61f25;
  border: solid 1px #e61f25;
}

.btn-green:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
  background-color: #28185a;
  border: solid 1px #766c93;
  color: #fff;
}


.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #000;
  font-size: 18px;
  font-weight: 100;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #F40202;
}

.navbar-dark .navbar-brand h1 {
  color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
  color: #e31e24 !important;
  border-color: #e31e24 !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
    background-color: #fff;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: #F40202;
    transition: .5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}


/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: #F00;
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #FFFFFF;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 145px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }

  50% {
    left: 50%;
    margin-left: 45px;
  }

  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }

  50% {
    left: 85px;
  }

  100% {
    left: 0;
  }
}


/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: .5s;
  border: solid 1px #e6e6e6;
  border-radius: 15px !important;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, .07), 0 10px 20px -2px rgba(0, 0, 0, .04) !important;
  background: #fff;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e51c22;
  border-radius: 2px;
  transform: rotate(-45deg);
  font-size: 20px;
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #DDDDDD;
  border-radius: 2px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: #e51c22;
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

.bg-light-grey {
  background-color: #fbfbfb !important;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(34, 35, 36, .7), rgba(20, 21, 21, .7)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: .5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

.text-red {
  color: #F00;
}

/*Extra*/
.tp-subtitle {
  font-size: 18px;
  font-weight: 100 !important;
  color: #F00;
  margin-bottom: 20px;
}

.tp-subtitle::before {
  height: 12px;
  width: 12px;
  background-color: var(--tp-theme-primary);
  content: "";
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.tp-title-sm {
  font-size: 40px;
}

.bpservice {
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
}

.bpservice__item {
  padding: 55px 35px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.3s;
  box-shadow: 0px 26px 50px rgba(206, 210, 225, 0.24);
  background-color: var(--tp-common-white);
}

.bpservice__icon a {
  height: 84px;
  width: 84px;
  background-color: var(--tp-common-dpink);
  display: inline-block;
  text-align: center;
  line-height: 84px;
  border-radius: 50%;
  margin-bottom: 42px;
}

.bpservice__content .bp-sv-sm-title {
  font-size: 32px;
  color: var(--tp-common-black);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
  display: inline-block;
}

.bpservice__content P {
  font-size: 16px;
  margin-bottom: 0;
}

.bpservice__icon a {
  height: 84px;
  width: 84px;
  background-color: var(--tp-common-dpink);
  display: inline-block;
  text-align: center;
  line-height: 84px;
  border-radius: 50%;
  margin-bottom: 42px;
}

.bpservice:hover .bpservice__icon a,
.bpservice.active .bpservice__icon a {
  animation: icon-bounce 0.8s 1;
}

.bpservice:hover,
.bpservice.active {
  box-shadow: 0px 26px 50px rgba(206, 210, 225, 0.24);
  background-color: var(--tp-common-white);
}

.bpservice:hover .bpservice__item,
.bpservice.active .bpservice__item {
  border: 1px solid #F0F0F7;
}

.bp-sv-color-2 .bpservice__icon a {
  background-color: var(--tp-common-blue);
}

.tp-industri-bg {
  background-color: #f7f8fd;
  padding-top: 70px;
  padding-bottom: 70px;
  border-radius: 20px;
}

.tp-industri-space {
  padding-left: 50px;
  padding-right: 50px;
}

.tpindustri {
  padding: 20px 25px;
  background-color: #fff;
  border-radius: 10px;
  display: inline-block;
  margin: 0px 10px;
  border-radius: 10px;
  box-shadow: 0px 13px 12px rgba(181, 184, 200, 0.03);
  margin-bottom: 20px;
}

.tp-industri-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--tp-common-black);
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.tp-industri-title::before {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #f00;
  display: inline-block;
  border-radius: 50%;
  margin-right: 12px;
  flex: 0 0 auto;
}

.tp-ind-color-one::before {
  background-color: #82cefd;
}

.tp-ind-color-two::before {
  background-color: #ffdc60;
}

.tp-ind-color-three::before {
  background-color: #fd346e;
}

.tp-ind-color-four::before {
  background-color: #5956e9;
}

.tp-ind-color-five::before {
  background-color: #fd346e);
}

.tp-ind-color-six::before {
  background-color: #82cefd;
}

.tp-ind-color-seven::before {
  background-color: #ffdc60;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

/*Services*/
.service__area {
  padding-bottom: 60px;
}

.service__area .sec-title-wrap {
  padding-bottom: 50px;
}

.sec-sub-title {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.sec-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 20px;
  text-transform: uppercase;
}

.sec-title span {
  color: var(--primary);
}

.service__area a {
  position: relative;
  margin-bottom: 65px;
  display: block;
}

.service__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 3fr;
  grid-template-columns: 1fr 3fr;
  grid-gap: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service__left .icon {
  width: 70px;
  height: 70px;
  border: 1px solid #F00;
  border-radius: 50px;
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.service__title {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  padding-bottom: 22px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
}

.service__right p {
  color: #333;
}

.service__serial span {
  position: absolute;
  color: #737272;
  font-size: 100px;
  font-weight: 900;
  opacity: 0.05;
  bottom: 113px;
  left: 80px;
  z-index: -1;
}

.bs-about-sm-1 {
  position: absolute;
  right: 110px;
  top: 103px;
  animation: moving 5s linear infinite;
}

.bs-about-sm-2 {
  position: absolute;
  right: 110px;
  bottom: 103px;
  animation: rotate2 5s linear infinite;
}

.bp-about-shape {
  /*  top: -80px;
  left: -327px;
  position: absolute;*/
  background: url(../img/about-shape-6.1.png), #f7f8fd;
  background-repeat: no-repeat;
  background-position: -53% top;
  /*   background: #f7f8fd;*/

}

.bp-about-img {
  max-width: inherit;
  margin-left: 0px;
  position: relative;
  z-index: 2;
}

.bp-about-img img {
  max-width: 100%;
}

.bs-section-title-space {
  padding-left: 80px;
}

.tp-subtitle-before-color {
  color: rgba(41, 41, 48, 0.6);
}

.fix {
  overflow: hidden;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-120 {
  padding-top: 120px;
}

.grey-bg1 {
  background: #fff;
  /* background: #f7f8fd; */
}

.blue-bg1 {
  background: #281859;
}

.blue-red {
  background: #f00;
}

.text-grey-1 {
  color: #8A90A2;
}

.dropdown-item {
  line-height: 36px;
  border-bottom: solid 1px #e8e7e7;
}

/*.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  width: 1000px;
}*/

.navbar .megamenu {
  left: 5%;
  right: 0;
  width: 90%;
  margin-top: 0;
}

.navbar .megamenu {
  padding: 1rem;
}

.navbar .has-megamenu {
  position: static !important;
}

.dropdown-item:hover {
  background: #f00;
  border-radius: 5px;
  color: #fff;
}

#tabs {
  background: #007b5e;
  color: #eee;
}

#tabs h6.section-title {
  color: #eee;
}

#tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #f00;
  background-color: transparent;
  border-color: transparent transparent #f00;
  border-bottom: 4px solid !important;
  font-size: 17px;
  font-weight: 300;
}

#tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: #000;
  font-size: 17px;
}

.black-text {
  color: #000;
  padding-right: 25px;
}

.figure-caption {
  text-align: center;
}

.right-pad {
  padding-right: 50px;
}

.digital-btn {
  color: #333;
  box-shadow: inset 0 0 0 50px transparent;
  background-color: transparent;
  border-bottom: solid 1px #333;
  border-top: solid 1px #333;
  text-align: left;
}

.digital-btn:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
  background-color: #28185a;
  /*border: solid 1px #766c93;*/
  color: #fff;
}

.bg-red {
  background-color: #f00;
}

.btn-danger {
  color: #fff;
  background-color: #e51c22 !important;
  border-color: #e51c22 !important;
}

.text-red {
  color: #e51c22 !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #f00;
  color: #fff !important;
}

.nav-pills .nav-link.active h5 {
  color: #fff !important;
}

.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
  color: #fff;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #f00;
}

.nav-link:focus {
  border: solid 2px #ccc !important;
}


.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
  color: #000;
}

.bg-cb {
  background-color: #111111;
}

.bg-bt {
  background-color: #222222;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.container-fluid.footer-color.text-light.mt-3.wow.fadeInUp {
	background-color: #111;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.blink-btn {
  animation: blink 1s infinite;
}

/* .main_whatsapp{
  position: fixed;
  top: 300px;
  right: 20px;
  text-align: right;
  z-index: 10;
} */

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.social-widget {
  position: fixed;
  top: 45%;
  left: 20px;
  transform: translateY(-50%);
  animation: slideInRight 0.5s forwards;
  display: inline-grid;
  z-index: 505;
}
.custom-btn{
  background-color: #e51c22;
  color: #fff;
}
.custom-text{
  color: #e51c22;
}
.custom-icon{
  background-color: #e51c22;
}
.custom-section{
  background-color: #e51c22;
}
.icon-color{
  color: #e51c22;
}



@media only screen and (max-width: 767px) and (min-width: 320px)  {
/* .navbar {
	flex-wrap: inherit !important;
} */
.tp-title-sm {
  font-size: 27px;
}
.bs-section-title-space {
  padding-left: 8px;
}
.navbar-dark .navbar-brand {
  color: #fff;
  width: 75%;
}
.social-widget{
  display: none;
}
.nomar{
  padding: 1rem !important;
}
.banner{
  margin:1rem !important;
}
}