

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "poppins"; */
  color: #000000;
}
@font-face {
   font-family: poppins-regular; 
  src: url('../fonts/Poppins-Regular.ttf') 
} 
@font-face { font-family: poppins-medium; 
  src: url('../fonts/Poppins-Medium.ttf') 
} 
@font-face { font-family: poppins-light; 
  src: url('../fonts/Poppins-Light.ttf') 
} 
@font-face { font-family: poppins-semibold; 
  src: url('../fonts/Poppins-SemiBold.ttf') 
} 
a {
  color: #FC2029;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "poppins-semibold";
}
p{
  font-family: "poppins-light";
  /* font-size:14px; */
  font-size:18px;
  text-align:justify;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FC2029;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 10px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #FC2029;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #f06f54;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #333333;
  transition: 0.3s;
  font-size: 14px;
  font-family: "poppins-regular";
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #FC2029;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0b2341;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #FC2029;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #FC2029;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #ef6445;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #0b2341;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #0b2341;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #FC2029;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(4, 12, 21, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/* section {
  padding: 50px 0 20px 0;
} */

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}



@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #FC2029;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #FC2029;
  border: 2px solid #FC2029;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #FC2029;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}



@media (max-width: 992px) {
 
}

@media (max-width: 767px) {

}

@media (max-width: 420px) {
  
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #FC2029;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); */
  padding: 40px;
  /* background: #fff; */
}

.contact .php-email-form .validate {
  display: none;
  color: #fc2029;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #fc2029;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {

  border-color: #FC2029;
}

.contact .php-email-form input {
  padding: 20px 15px;
  /* background-color: #393939 !important; */
  background-color: #ffffff !important;
    border: 1px solid #575757 !important;
    color: #ffffff;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
  /* background-color: #393939 !important; */
  background-color: #ffffff !important;
  border: 1px solid #575757 !important;
    color: #ffffff;
}

.contact .php-email-form button[type="submit"] {
  background: #FFC400;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ef6445;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #FC2029 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #FFF6D5;
  padding: 0;
  color: #333333;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
/*  */
.caption1 {
  right:0;
  left: 67%;
  padding-top: 20px;
  color: #fc2029;
  text-align: left;
  top: 25%;
}
.carousel-caption  small{
font-size: 26px;
}
.slidetitle{
  font-family: "poppins-semibold";
  /* font: SemiBold 56px/76px Poppins; */
  color:#000000;
  font-weight: bold;
  line-height: 1.4;
}
.yellowtext{
  color: #FFC400;
    display: inline-block;
    margin-left: 1rem;
}
.packtitle{
  color: #FC2029;
  line-height: 1.6;
}
.caption2 {
  right: 0;
  left: 70%;
  padding-top: 20px;
  color: #fc2029;
  text-align: left;
  top: 36%;
}
.slidebtnwraper{
  position: relative;
    left: 72%;
    overflow: hidden;
    display: initial;
    top:23px;
}
.slidebtnwraper .carousel-control-next{
  right:-42px;
}
.slidebtnwraper .carousel-control-prev{
  left:-7px;
}
.slidebtnwraper .carousel-control-next, .carousel-control-prev{
  top: 2px;
}
#slider .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: -56px;
  left: 12.5%;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: left;
  padding-left: 0 !important;
   margin-right:0  !important; 
  margin-left:  0 !important;
  list-style: none;
  width: 50%;
}
#slider .carousel-indicators li{
  background-color: #212529 !important;
  width: 280px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.borderleft{
  border-left: 4px solid #FFC400;
  padding-left: 10px;
}
.commonsection{
  padding:38px 0 !important;
}
.welcomeimg{
  height: 453px;
}
.borderright{
  border-right: 4px solid #FFC400;
  padding-right: 10px;
  color: #000000;
}
/* .whychoosebg{ */
  /* background:transparent url('../img/whychoose.png') 0% 0% no-repeat padding-box; */
  /* background: url('../img/whychoose.png'); */
  /* background-size: 100% 100%; */
  /* background-repeat: no-repeat; */
  /* position: relative; */
  /* height: 400px; */
  /* width: 100%; */
/* } */
.contactbg{
  background: url('../img/contactus-bg.svg');
  background-size: 100% 122%;
  background-repeat: no-repeat;
  position: relative;
  height: 350px;
  width: 100%;
}
.contactbg h3{
  color:#FFC400;
  line-height: 1.5;
  margin-top: 2.6rem !important;
}
.contact .fa{
  color:#FFC400;
}
.listfa{
  margin-top: 5.4rem !important;
}
/* .whychoosebg span{ */
  /* color:#ffffff; */
  /* margin-bottom: 10px !important; */
/* } */
.whychoosebg li{
  margin-bottom: 10px !important;
  line-height: 1.5 !important;
    font-size: 0.99rem;
}


#clientsslide img{
  width: 100%;
  height: 100%;
}


#clientsslide .carousel-indicators li{
  background-color: #FC2029 !important;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
#clientsslide1 img{
  width: 100%;
  height: 100%;
}


#clientsslide1 .carousel-indicators li{
  background-color: #FC2029 !important;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
#team .carousel-indicators li{
  background-color: #FC2029 !important;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
#clientsslide .carousel-indicators{
  bottom: -59px;
}
#clientsslide1 .carousel-indicators{
  bottom: -59px;
}
#getIntouch .getInbg{
  background: url('../img/getintouch.svg');
  background-repeat: no-repeat;
  position: relative;
  background-position: right; 
  background-color:#333333;
  height: auto;
  width: 100%;
}
.presslist{
    list-style-image: url('../img/prepress/listicon.svg');
    padding-inline-start: 22px !important;
  }

  .presslist li{
    font-family: "poppins-medium";
    line-height: 2;
    margin-bottom: 3rem;
    font-weight: 300;
  }
  .flexolist li{
line-height: 1.2;
margin-bottom: 2rem;
font-size: 0.9rem;
  }
  .pressoffsetbg{
    background: url('../img/pressoffset/pressoffsetbg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  height: 350px;
  width: 100%;
  }
  .pressoffsetbg1{
    background: url('../img/pressflexo/ourprocessbg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  height: 350px;
  width: 100%;
  }
  .labelslist li{
    line-height: 2;
    margin-bottom: 1.8rem;
  }


  @media only screen and (max-width: 480px) and (min-width: 320px)  {
   #slider{
     margin-top:3rem !important;
     margin-bottom: 0 !important;
   }
   #team{
     padding:40px 0 !important;
   }
   .slidetitle{
     font-size: 0.7rem !important;
   }
   #slider .carousel-caption small {
    font-size: 11px !important;
}
.caption1 {
  left: 71%;
  top: 15%;
}
.caption2{
  top:27%;
}
#slider .yellowtext {
  margin-left: 0.4rem;
}
#slider .carousel-indicators{
display: none;
}
#slider .slidebtnwraper {
  left: 77%;
  top: 14px;
}
section{
  padding:25px 0 0 0;
}
section h3{
  margin-bottom: 1.8rem !important;
}
h3{
  font-size: 1rem !important;
}
#slider .slidebtnwraper img{
  width: 20px;
}
#slider .slidebtnwraper .carousel-control-prev {
  left: 2px;
}
#slider .slidebtnwraper .carousel-control-next {
  right: -42px;
}
.commonsection{
  padding:40px 0 !important;
}
p {
  font-size: 12px;
  text-align: justify;
}
#whoweare{
  padding:0  !important;
}
#whoweare .pt-5{
  padding-top:1rem !important;
}
.whychoosebg{
  height: auto;
}
.listfa{
  margin-top: 0 !important;
}

/* .contactbgrow{
  background: url('../img/contactus-bg.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  height: 400px;
  width: 100%;
} */
.contactbg{
  background-size: cover !important;
}
.contactbg h3{
  margin-top: 1rem !important;
}
.contactbgrow h3{
  font-size: 0.9rem !important;
  padding:0 0 10px 0 !important;
}
.contactbg p{
  text-align: initial !important;
}
.contactbg .col-10{
  padding-right: 0 !important;
}
.getInbg .col{
  padding-right:0 !important;
  width: 100%;
}
.getInbg .form-row{
  display:grid;
}
.getInbg form{
  padding:10px !important;
}
.getInbg .p-4 {
  padding: 1rem!important;
}
.contact .php-email-form button[type="submit"] {
  padding: 6px 15px;
  font-size: 0.8rem;
}
.prepresssection .mb-4{
  margin-bottom: 0.5rem !important;
}
.presslist li{
  margin-bottom: 0.3rem !important;
  font-size: 0.8rem;
  line-height: 1.5;
}
.postpresssection{
  margin-bottom: 4.5rem;
}
.pressflexowrap h6{
font-size: 0.8rem !important;
}
.pressflexowrap h3{
  margin-bottom: 1rem !important;
}
.pressoffsetbg{
  display: none;
}
.ourprocessbgmob{
  display: block !important;
    }
    .automation h6{
      margin-bottom: 1rem !important;
      font-size: 0.8rem;
    }
  }
  .ourprocessbgmob{
display: none;
  }
  #teamMulitple .carousel-indicators{
    bottom:-64px !important;
    }
    .carousel .carousel-item {
      -webkit-transition: 0.10s ease-in-out left;
    transition: 0.10s ease-in-out left;
    -webkit-transition: 0.10s, ease-in-out, left;
    -moz-transition: .10s, ease-in-out, left;
    -o-transition: .10s, ease-in-out, left;
    transition: .10s, ease-in-out, left;
  }
  table{
    font-size: 12px;
  }
  .card-header {
    padding: .2rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
  }
  .trackingcard{
    display: none;
  }
  .tableshow{
    display: block;
  }
  .nodata{
    display: none;
  }
  .nodatarowshow{
    display: block;
  }
  .presslist p{
    margin-bottom: 0 !important;
    padding: 0 16px !important;
  }
  .ppiccontainer .presslist li{
    margin-bottom: 1rem !important;
    text-align: justify;
  }
  .doclist li{
    margin-bottom: 0.5rem !important;
  }
  .textlight{
    color: #343a40;
  }
  .termswrap ol li{
    font-size: 0.9rem;
  }
  /* --------footer 2---------- */
  #footer2 ul li a{
    /* color: #8BA120; */
    color: #FC2029;
    font-family: "poppins-light";
    font-size:18px;
    text-align:justify;
  }
  .wid li, .wid{
    font-size: 22px;
    text-align: justify;
  }

  #blink {
    font-size: 20px;
    font-weight: bold;
    color: #2d38be;
    transition: 0.5s;
}
.tem-font{
  font-family: 'Raleway', sans-serif !important;
  font-size: 32px;
  font-weight: normal;
}
