@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style: none;
  padding-left: 0;
}

a,
a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.socialmedia a {
  color: #6d6d6d;
  font-size: 18px;
  padding: 8px;
  transition: 0.3s all ease-in-out;
}

.socialmedia a:hover {
  color: #d82420;
}

#header {
  /* height: 80px; */
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(1, 4, 136, 0.9);
  padding-top: 8px;
  padding-bottom: 8px;
}
#header.header-transparent {
  background: #fffff7;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #0292d1;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #d82420;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #d82420;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0292d1;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #d82420;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navigation-box {
    position: absolute;
    right: 0;
    top: 50px;
    background-color: #ffffff;
    padding-right: 30px !important;
}   
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 3, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #3f43fd;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #1acc8d;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*section title*/

.section-title {
  padding-bottom: 0px;
}

.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: #d82521;
  margin: 4px 10px;
}

.headingwrap .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #d82521;
  margin: 4px 10px;
  display: block;
  margin: 0 auto;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #0191d6;
  line-height: normal;
  margin-top: 10px;
}

p.textpara {
  font-size: 13px;
}

.theambtn {
  display: inline-block;
  background: #0192d5;
  color: #fff;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 10px;
}

/*About Section*/

.aboutwrap {
  position: relative;
  padding: 150px 0 0 0;
}

.aboutwrap::after {
  position: absolute;
  content: "";
  background: url(../images/circle-1.png);
  width: 400px;
  height: 400px;
  right: 0;
  bottom: -205px;
  background-size: cover;
}

.about1 {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about1 img,
.about2 img {
  z-index: 9;
  position: relative;
}

.about1::after {
  position: absolute;
  content: "";
  background: url(../images/circle-2.png);
  width: 300px;
  height: 300px;
  left: -139px;
  top: -135px;
  background-size: cover;
}

.about2 {
  position: relative;
  top: -80px;
  left: -40px;
}

/*Services*/

.service-block .more-link {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  display: block;
}

.service-block .more-link a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 14px;
  color: #dc1f1b;
  box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 5%), 0px 0px 35px 0px rgb(0 0 0 / 5%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block {
  position: relative;
  display: block;
  padding: 30px 35px 50px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 7%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  margin: 0px 15px;
  width: 95%;
  margin: 35px 15px;
}

.service-block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid #0292d1;
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block:hover .more-link a {
  color: #ffffff;
  background: #dc1f1b;
}

.service-block:hover:before {
  -ms-transform: scale(1);
  transform: scale(1);
}

.icon {
  margin-bottom: 35px;
}

.headingtext {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.serviceswrap {
  display: flex;
}

.blocktwo {
  top: -80px;
}

.gallerywrap {
  position: relative;
}

/*Gallery*/

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgb(115 115 115 / 75%);
  position: absolute;
  width: 95%;
  height: 94%;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 2px solid rgb(255, 255, 255, 0.8);
  border-left: 2px solid rgb(255, 255, 255, 0.8);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 2px solid rgb(255, 255, 255, 0.8);
  border-right: 2px solid rgb(255, 255, 255, 0.8);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #d82420;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 7px;
  left: 9px;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

.productname {
  font-size: 17px;
  font-style: italic;
  color: #000;
  font-weight: 500;
}

.productdec {
  color: #666;
  font-size: 13px;
}

.marginbottom {
  margin-bottom: 50px;
}

/*Testimoinal*/

#testimonial-slider .owl-nav {
  display: block !important;
}

#testimonial-slider .owl-nav > button {
  position: absolute;
  left: -65px;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px !important;
  background-color: rgba(220, 31, 25, 0.5) !important;
  color: #fff !important;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
  border: 1px solid #dc1f19 !important;
  outline: none;
}

#testimonial-slider .owl-nav .owl-next {
  left: auto;
  right: -65px;
}

#testimonial-slider .owl-nav > button:hover {
  background-color: rgba(220, 31, 25);
}

.testimonial {
  margin: 0 10px;
  padding: 10px;
  padding-top: 30px;
}
.testimonial .description {
  color: #ffffff;
  line-height: normal;
  position: relative;
  padding: 40px 25px;
  margin-bottom: 15px;
  font-size: 12px;
  background: #dc1e19;
}
.testimonial .description:before {
  content: "\f10e";
  font-family: FontAwesome;
  font-weight: 900;
  color: #9c0400;
  position: absolute;
  top: 25%;
  left: 43%;
  font-size: 60px;
  /* z-index: -1; */
  opacity: 0.4;
}
.testimonial .testimonial-pic {
  float: none;
  width: 70px;
  height: 70px;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: -45px;
  z-index: 9999;
  position: relative;
}
.testimonial .testimonial-pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.testimonial .testimonial-review {
  /* margin: 25px 0 0 25px; */
  text-align: center;
}
.testimonial .testimonial-title {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: bold;
  margin: 0;
}
.testimonial .testimonial-review span {
  color: #585858;
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #dc005a;
}
.owl-theme .owl-controls .owl-page span {
  width: 10px;
  height: 10px;
  background: #333;
  opacity: 1;
}
.owl-theme .owl-controls {
  text-align: left;
  margin-top: 40px;
}

.testimonial .description::after {
  position: absolute;
  content: "";
  background: #0293d02e;
  width: 103%;
  height: 103%;
  border-radius: 10px;
  left: -5px;
  top: -2px;
  transform: rotate(7deg);
  z-index: -9;
}

/*Clients*/

.clientwrapper {
  position: relative;
  padding: 60px 0px;
  /*background: #edf5f8;*/
}

.image-box {
  position: relative;
  display: inline-block;
}

.image-box img {
  max-width: 100%;
  width: auto;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  opacity: 0.5;
}

.image-box:hover img {
  opacity: 1;
}

/*Footer*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info i {
  font-size: 20px;
  color: #929292;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #dc1f1b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #585757;
}

.contact .info p a {
  font-size: 14px;
  color: #585757;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #d82521;
  color: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.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: 7px;
  border: none;
  background: #f0f0ff;
}

.contact .php-email-form textarea {
  padding: 38px 12px;
  padding-top: 11px;
}

.contact .php-email-form button[type="submit"] {
  outline: none;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #da201b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footerlinks a {
  font-size: 14px;
  color: #2b2b2b;
  text-transform: uppercase;
  font-weight: 500;
}
.footerlinks {
  display: flex;
  justify-content: space-around;
}

.footerbg {
  background: #f9f9f9;
}

.contacthed {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

.copyright {
  border-top: 1px solid #c3c3c3;
  text-align: center;
  padding-top: 20px;
  margin-top: 60px;
  font-size: 12px;
  color: #2f2f2f;
}
.credits {
  /* padding-top: 10px; */
  text-align: center;
  font-size: 13px;
  color: #2f2f2f;
}

.credits a {
  color: #2f2f2f;
}

/*-------------------------------------------------------------------------------------
    home area
---------------------------------------------------------------------------------------*/

#home-area {
  position: relative;
  padding: 200px 0 170px;
  background-image: url(../images/banner-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.pattern-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 700px;
  background-image: url(../images/dot.png);
}

.caption h1 {
  font-weight: 700;
  margin: 0 0 25px;
}

.caption p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.caption a {
  display: inline-block;
  background-color: #ff4d1c;
  padding: 14px 30px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  margin: 30px 0 0;
}

.caption a:hover {
  background-color: #e03b0d;
}

.caption-img {
  position: relative;
  z-index: 9;
}

.caption-img img {
  max-width: 350px;
}

/*-------------------------------------------------------------------------------------
    home area
---------------------------------------------------------------------------------------*/

#home-area {
  position: relative;
  padding: 140px 0 170px;
  background-image: url(../images/banner-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.pattern-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 700px;
  background-image: url(../images/dot.png);
}

.caption h1 {
  font-weight: 700;
  margin: 0 0 0px;
}

.caption p {
  font-size: 13px;
  line-height: 30px;
  margin-top: 12px;
  color: #000;
}

.caption a {
  display: inline-block;
  background-color: #ff4d1c;
  padding: 14px 30px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  margin: 30px 0 0;
}

.caption a:hover {
  background-color: #e03b0d;
}

.caption-img {
  position: relative;
  z-index: 9;
}

.caption-img img {
  max-width: 350px;
}

/*-------------------------------------------------------------------------------------
    home slider
---------------------------------------------------------------------------------------*/

.slide-single .caption-img img {
  max-width: 300px;
  margin: 0 auto;
}

.owl-item.active .slide-single h1 {
  -webkit-animation: 1s 0.2s fadeInUp both;
  animation: 1s 0.2s fadeInUp both;
}

.owl-item.active .slide-single h3 {
  -webkit-animation: 1s 0.3s fadeInUp both;
  animation: 1s 0.4s fadeInUp both;
}

.owl-item.active .slide-single p {
  -webkit-animation: 1s 0.4s fadeInUp both;
  animation: 1s 0.4s fadeInUp both;
}

.owl-item.active .slide-single a {
  -webkit-animation: 1s 0.6s fadeInUp both;
  animation: 1s 0.6s fadeInUp both;
}

.owl-item.active .slide-single img {
  -webkit-animation: 1s 0.8s fadeInUp both;
  animation: 1s 0.8s fadeInUp both;
}

.home-carousel .owl-nav > button {
  position: absolute;
  left: 20px;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 68px;
  border-radius: 50%;
  font-size: 20px !important;
  background-color: rgba(220, 31, 25, 0.5) !important;
  color: #fff !important;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #dc1f19 !important;
  outline: none;
}

.home-carousel .owl-nav .owl-next {
  left: auto;
  right: 20px;
}

.home-carousel .owl-nav > button:hover {
  background-color: rgba(220, 31, 25);
}

#home-area:hover .owl-nav > button {
  visibility: visible;
  opacity: 1;
}

.home-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  text-align: center;
}

.home-carousel .owl-dot {
  width: 30px;
  height: 8px;
  border-radius: 2px;
  border: 2px solid #dc1f1b !important;
  display: inline-block;
  margin: 0 4px;
  outline: none;
}

.home-carousel .owl-dot.active {
  background-color: #dc1f1b;
}

.bannerhead1 {
  font-size: 14px;
  font-weight: 300;
  padding: 0;
  line-height: normal;
  margin: 0 0 5px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  font-family: "Poppins", sans-serif;
  padding-top: 45px;
  margin-bottom: 15px;
  display: block;
}

.bannerhead3 {
  font-size: 47px;
  color: #da2621;
}

.about-bg {
  background-image: url(../images/circle-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -25%;
  width: 50%;
  height: 100%;
}

.rs-services.style16 .services-wrap {
  margin: 0px 7px 0px 0px;
  transition: background 0.6s;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #dde2e5;
  border-radius: 3px 3px 3px 3px;
  padding: 16px 10px;
  transition: all ease 0.3s;
  width: 30%;
  margin: 0px 10px;
  text-align: center;
}

.rs-services.style16 .services-wrap .icon-part {
  background-image: linear-gradient(200deg, #00a1f5 0%, #015eea 96%);
  border-radius: 100px;
  margin-left: 0;
  margin-top: 11px;
  transition: 0.4s;
  height: 60px;
  display: inline-block;
  /* padding: 5px; */
  min-width: 60px;
  text-align: center;
  /* transform: rotate( 
45deg
 ); */
  margin-bottom: 20px;
}
.rs-services.style16 .services-wrap .icon-part i {
  transform: rotate(-45deg);
  transition: all ease 0.3s;
  font-size: 40px;
  /* left: -8px; */
  position: relative;
  top: 8px;
  color: #fff;
}

.rs-services.style16 .services-wrap:hover .icon-part i {
  color: #d82421;
}

.rs-services.style16 .services-wrap .services-txt .services-title {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 14px;
  color: #6b6b6b;
}

.rs-services.style16 .services-wrap:hover {
  background-color: #d82421;
}

.rs-services.style16 .services-wrap:hover .icon-part {
  background: #ffffff;
}

.rs-services.style16 .services-wrap:hover .icon-part i {
  transform: rotate(-45deg);
}

.rs-services.style16 .services-wrap:hover .services-txt .services-title {
  color: #ffffff;
}

.valuepoints {
  display: flex;
  justify-content: space-between;
}

.valuepoints .services-wrap:first-child {
  margin-left: 0px;
}
.valuepoints .services-wrap:last-child {
  margin-right: 0px;
}

.about-four-text .hading-title {
  padding-bottom: 20px;
}
.hading-title {
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
  margin: -12px 0;
  padding-bottom: 35px;
  font-family: "Montserrat", sans-serif;
  color: #0191d6;
}
.red-p {
  font-size: 14px !important;
  color: rgb(216 37 33);
  line-height: 1.5;
  padding-bottom: 20px;
  font-weight: 600 !important;
  line-height: 21px !important;
  margin-bottom: 0px !important;
}

.about-four-text p {
  font-size: 12px;
  line-height: normal;
  margin-bottom: 16px;
}

.page-title {
  position: relative;
  padding: 85px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 75px;
}
.page-title:before {
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #ffffff21;
  opacity: 0.6;
  position: absolute;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-title .inner-container {
  position: relative;
}
.page-title h1 {
  position: relative;
  float: left;
  font-size: 35px;
  color: #0191d6;
  line-height: 40px;
  font-weight: 700;
}
.page-title .bread-crumb {
  position: relative;
  float: right;
  padding: 10px 0;
}
.page-title .bread-crumb li {
  position: relative;
  float: left;
  font-size: 16px;
  line-height: 20px;
  color: #0191d6;
  font-weight: 400;
  text-transform: capitalize;
  cursor: default;
  padding-right: 10px;
  margin-right: 10px;
}
.page-title .bread-crumb li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.page-title .bread-crumb li:last-child::before {
  display: none;
}

.page-title .bread-crumb li:before {
  position: absolute;
  right: -3px;
  font-size: 18px;
  line-height: 20px;
  color: #0191d6;
  content: "-";
}

.page-title .bread-crumb li a {
  color: #d82622;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-four-img img {
  position: relative;
  z-index: 9;
}
.about-four-img {
  position: relative;
  z-index: 99;
}

.about-four-img::after {
  position: absolute;
  content: "";
  background: url(../images/circle-2.png);
  width: 350px;
  height: 350px;
  left: -139px;
  top: -115px;
  background-size: cover;
  /* z-index: 999; */
}

.about-four-text::after {
  position: absolute;
  content: "";
  background: url(../images/circle-1.png);
  width: 400px;
  height: 400px;
  right: -110px;
  bottom: -125px;
  opacity: 0.3;
  background-size: cover;
}
.about-four-text {
  position: relative;
  padding-left: 25px;
}

.counter-four-content {
  border: 3px dashed #9b9da9;
  padding: 45px 20px;
}

.counter-four-item {
  text-align: center;
}

.counter-text {
  padding: 17px 0 4px;
}

.counter-text span {
  font-size: 24px;
  color: #e0382d;
  font-weight: 600;
  text-align: center;
}

.counter-text span {
  font-size: 24px;
  color: #e0382d;
  font-weight: 600;
  text-align: center;
}

.headingwrap .hading-title {
  font-size: 44px;
  line-height: 68px;
  font-weight: 600;
  margin: -12px 0;
  padding-bottom: 0px;
}

.headingwrap .hading-title span {
  color: #d9241f;
}

.pt-30 {
  padding-top: 30px !important;
}

.inner-team .team-item {
  margin-top: 40px;
}
.team-item {
  position: relative;
}

.team-img {
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.team-name {
  background: #0191d6;
  position: absolute;
  right: -15px;
  bottom: 13px;
  width: 85%;
  text-align: center;
  color: #fff;
  padding: 14px 0 12px;
}

.team-name::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 15px;
  height: 15px;
  background: #1f65bd;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.team-name h6 {
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0px;
}
.team-name p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px;
}

.team-item:hover .team-img img {
  opacity: 0.7;
  /*    -webkit-filter: grayscale(50%) hue-rotate(
180deg
);
    filter: grayscale(50%) hue-rotate(
180deg
);*/
  -webkit-transform: scale(1.2) rotate(10deg);
  -ms-transform: scale(1.2) rotate(10deg);
  transform: scale(1.2) rotate(10deg);
}

ul.clientwrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}

ul.clientwrap .imagebox {
  width: 12%;
  margin: 11px;
  border: 1px dashed #0292d1;
  transition: 0.2s ease-in-out;
}

ul.clientwrap .imagebox:hover {
  border: 1px dashed #d82522;
}

ul.clientwrap .imagebox img {
  transform: scale(0.7);
  width: 100%;
  transition: 0.3s all ease-in-out;
}

ul.clientwrap .imagebox:hover img {
  transform: scale(0.8);
}

.section-block {
  padding: 90px 0px 90px 0px;
  background-color: #fff;
}

.section-block .section-heading {
  margin-bottom: 10px;
}

.section-block .section-heading h4 {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #111;
  line-height: 160%;
  margin-bottom: 10px;
}

.section-block .section-heading-line-left {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #dc1f1b;
  border-radius: 25%;
  margin-top: 15px;
  margin-bottom: 5px;
}

.mt-30 {
  margin-top: 30px;
}

.contact-form input.form-control {
  font-weight: 500 !important;
  border-radius: 5px;
  font-size: 13px;
  border: 1px solid #f6f7f8;
  background: #f6f7f8;
  color: #777 !important;
  outline: none;
  width: 100%;
  padding: 20px 14px;
  margin: 10px 0px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.contact-form textarea {
  font-weight: 500 !important;
  border-radius: 5px;
  font-size: 13px;
  border: 1px solid #f6f7f8;
  background: #f6f7f8;
  color: #777 !important;
  outline: none;
  width: 100%;
  padding: 14px;
  margin: 10px 0px;
  margin-bottom: 5px;
  min-height: 200px;
  overflow: hidden;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.contact-info-section {
  border-bottom: 1px solid #ececec;
  padding: 15px 0px;
  margin-bottom: 0px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  margin-left: 55px;
}

.center-holder {
  text-align: center !important;
}

.contact-info-section i {
  width: 60px;
  height: 60px;
  padding-top: 17px;
  border-radius: 50%;
  background: #da2621;
  color: #fff;
  font-size: 25px;
  margin-top: 5px;
}

.contact-info-section h4 {
  color: #111;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-info-section p,
.contact-info-section p a {
  color: #999;
  font-size: 13px;
  font-weight: 400;
}

.theambtn {
  border: none;
}
.mapframe iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #0192d5;
}
.mapframe {
  width: 100%;
  height: 400px;
}

.servicetest strong {
  font-size: 16px;
}
.servicetest {
  font-size: 13px;
  max-width: 280px;
  background: #d82521;
  color: #fff;
  padding: 15px;
  text-align: center;
  position: absolute;
  top: 0;
}

.servicewrap-img::after {
  position: absolute;
  content: "";
  background: #d82521;
  width: 35px;
  height: 180px;
  left: -35px;
  top: 0px;
}
.servicewrap-img {
  position: relative;
}

.graybg {
  background: #f5f5f5;
}

.bluetext {
  color: #0191d5;
}

/*Application*/
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*customisation*/
.application .cf:after,
.application .navi-tabs:after {
  content: "";
  display: table;
  clear: both;
}

.navi-tabs__nav {
  float: left;
  width: 25%;
}

.application nav > ul {
  /* border: 1px solid #ccc; */
  border-right: 0;
  /* border-bottom: 0; */
  border-radius: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.application .navi-tabs__content > :first-child {
  margin-top: 0;
}

.application nav > ul {
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.application nav > ul > li:last-child {
  border-bottom: 0;
}
.application nav > ul > li a {
  display: block;
  text-decoration: none;
  padding: 10px 10px 10px 40px;
  color: #666;
  font-size: 16px;
}
.application nav > ul > li > a {
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}
.application nav > ul > li > a:hover {
  color: #000;
  background: #e5e5e5;
}
.application nav > ul > li > a.active {
  background: #e5e5e5;
  color: #000;
}
.application nav > ul > li ul {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: none;
}
.application nav > ul > li ul li {
  border-bottom: 1px solid #ccc;
}
.application nav > ul > li ul li a {
  font-size: 14px;
  padding: 7px 20px 7px 40px;
}
.application nav > ul > li ul li a:hover {
  color: #000;
}
.application nav > ul > li ul li a.active {
  position: relative;
  background: #e5e5e5;
  color: #d82420 !important;
  font-weight: 600;
}
.application nav > ul > li ul li a.active:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #686868;
}
.application nav > ul > li.dropdown {
  position: relative;
}
.application nav > ul > li.dropdown:before {
  content: "+";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}
.application nav > ul > li.dropdown.open:before {
  content: "-";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}

.mainelement {
  position: relative;
  display: block !important;
  padding: 20px 13px !important;
  margin-bottom: -1px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 0px;
  margin-bottom: 5px;
  border-left: solid 6px #d82420;
  transition: 0.3s ease;
  cursor: pointer;
  color: #333;
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 500;
  font-size: 16px !important;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.subelement a {
  color: #666666 !important;
  display: block !important;
  position: relative !important;
  text-transform: capitalize;
  z-index: 1;
  padding: 10px 0 !important;
  text-decoration: none !important;
  background: transparent !important;
}

.subelement li {
  border-bottom: 1px dashed #999999 !important;
}

.subelement {
  margin-left: 10px !important;
}

.verticalnav .dropdown {
  margin-bottom: 20px;
}

.navi-tabs__container {
  width: 72%;
  padding: 10px;
  border: 1px dashed #ccc;
  margin-left: 25px;
  float: right;
}

.applicationname {
  display: inline-block;
  color: #fff;
  background: #0191d6;
  font-size: 18px;
  padding: 10px 20px;
  margin-bottom: 25px;
}

/* ///////////////////////////////////////////////////////////////////////// */
.portfolio-wrap img {
  width: 343px;
}

.owl-carousel .owl-item img {
  display: block;
  /*width: 30%;*/
  margin: 0 auto;
}
.service-block .icon img {
  width: 30% !important;
}
