@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Glory:wght@100;200;300;400;500;600;800&display=swap");
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px grey;
          box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #e5002a;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

img {
  max-width: 100%;
}

h1, h2, h3 {
  font-family: "Glory", sans-serif;
}

.brown-bg {
  background-color: #e5002a;
}

.blue-bg {
  background-color: #e5002a;
}

.white {
  color: #FFFFFF;
}

.black {
  color: #000000;
}

a {
  text-align: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.header_area {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.nav-menu {
  text-transform: capitalize;
}

.nav-menu > li {
  color: #4b4e53;
}

@media (max-width: 768px) {
  .nav-menu > li.active > a,
  .nav-menu > li.active > a:focus {
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
}

.nav-menu > li.active > a:before {
  background-color: #008cba;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (max-width: 768px) {
  .nav-menu > li.active > a:before {
    background-color: transparent;
  }
}

.nav-menu > li > a {
  color: #4b4e53;
  position: relative;
  cursor: pointer;
  display: block;
  text-transform: capitalize;
  white-space: nowrap;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -moz-transition-property: border-bottom, color;
  -o-transition-property: border-bottom, color;
  -webkit-transition-property: border-bottom, color;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  transition-property: border-bottom, color;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav-menu > li > a {
    margin: 0;
    padding: 1em 2em 1em 1.5em;
  }
}

.nav-menu > li > a::before {
  background-color: transparent;
  bottom: -1px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  right: 50%;
  -webkit-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  z-index: 1;
}

.nav-menu > li > a:hover::before, .nav-menu > li > a.active::before {
  background-color: #e5002a;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (max-width: 768px) {
  .nav-menu > li > a:hover::before, .nav-menu > li > a.active::before {
    background-color: transparent;
  }
}

.nav-menu > li > a:hover, .nav-menu > li > a.active {
  background-color: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (max-width: 768px) {
  .nav-menu > li > a:hover, .nav-menu > li > a.active {
    background-color: rgba(0, 0, 0, 0.05);
  }
}

.nav-menu > li > .dropdown-menu {
  margin-top: 0;
}

@media (max-width: 768px) {
  .nav-menu > li > .dropdown-menu {
    margin: 0 20px;
  }
}

.nav-menu > .active > a,
.nav-menu > .active > a:hover,
.nav-menu > .active > a:focus {
  background-color: transparent;
  color: #4b4e53;
}

.ul-right-part li {
  list-style-type: none;
}

.ul-right-part li a {
  padding: 8px 20px;
  background-color: #e5002a;
  display: inline-block;
  color: #FFFFFF;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 25px;
}

.ul-right-part li a:hover {
  background-color: #e5002a;
  color: #FFFFFF;
}

.page-scroll {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: #FFFFFF;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.carousel-item .carousel-caption {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  text-align: left;
  background: #0e0e0e9c;
  width: 100%;
}

.carousel-item .carousel-caption div {
  right: 0;
  top: 0;
  /* bottom: 1.25rem; */
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.carousel-item .carousel-caption .btn-blue {
  margin-top: 20px;
}

.carousel-item h3 {
  font-weight: 900;
  font-size: 4.5rem;
}

.carousel-item p {
  font-size: 20px;
  max-width: 600px;
}

.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 0;
}

.carousel-indicators {
  bottom: 8%;
  margin-right: 5%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.carousel-indicators button img {
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-blue {
  background-color: #e5002a;
  border-radius: 20px;
  padding: 10px 25px;
  color: #FFFFFF;
}

.btn-blue:hover {
  background-color: #e5002a;
  color: #FFFFFF;
}

.section-services {
  margin: 4rem 0;
}

.section-services .single-service {
  margin-bottom: 40px;
  color: #FFFFFF;
  background-color: #24252a;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-position: center center;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.section-services .single-service:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e5002a), to(#e5002a));
  background-image: linear-gradient(#e5002a, #e5002a);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.section-services .single-service .part-1 {
  padding: 40px 40px 25px;
  border-bottom: 1px solid #6d6d6f;
}

.section-services .single-service .part-1 i {
  margin-bottom: 25px;
  font-size: 50px;
  color: #f70037;
}

.section-services .single-service .part-1 .title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8em;
}

.section-services .single-service .part-2 {
  padding: 30px 40px 40px;
}

.section-services .single-service .part-2 .description {
  margin-bottom: 22px;
  color: #cecece;
  font-size: 14px;
  line-height: 1.8em;
}

.section-services .single-service .part-2 a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  font-weight: 300;
}

.section-services .single-service .part-2 a i {
  margin-right: 10px;
  color: #e5002a;
}

.section-services .single-service .part-2 a:hover {
  letter-spacing: 2px;
  color: #e5002a;
}

.product__container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  margin-bottom: 10px;
}

.product__container:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.product__container:hover .product__container__copy {
  background-color: #000000c5;
}

.product__container-image {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.product__container__copy {
  position: absolute;
  background-color: #0000004a;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.product__container__copy .product__content_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: 0 5%;
  padding: 4% 0;
}

.product__container__copy .product__content_block .product__top_block div {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 12px;
  border-radius: 25px;
  display: inline-block;
  padding: 8px 20px;
  font-weight: 300;
}

.product__container__copy .product__content_block .product__bottom_block h2 {
  color: #FFFFFF;
}

.product__container__copy .product__content_block .product__bottom_block a {
  color: #e5002a;
  letter-spacing: 2px;
}

#whoweare {
  background-image: url(../images/m1.jpeg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 5rem 0;
}

.middle_copy {
  background-color: #FFFFFF;
  padding: 4rem;
}

.middle_copy h5 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8e8e8e;
}

.middle_copy h2 {
  font-size: 2rem;
  color: #e5002a;
}

.middle_copy p {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

#whatwedo {
  background-image: url(../images/p2.png);
  background-repeat: no-repeat;
  padding: 5rem 0;
  background-position: right;
}

#industry_block {
  margin: 4rem 0;
}

.Titleflex h1 {
  font-size: 2.5rem;
}

.Titleflex .hrline {
  width: 100px;
  height: 2px;
  margin: 0 0 1rem 0;
}

.bg-footer {
  background-color: #0b6da8;
  padding: 50px 0 30px;
}

.footer-heading {
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading:after {
  content: '';
  width: 25px;
  border-bottom: 1px solid #FFF;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  border-bottom: 1px solid #FFFFFF;
}

.footer-link a {
  color: #fff;
  line-height: 40px;
  font-size: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.footer-link a:hover {
  color: #e5002a;
  padding-left: 6px;
}

.contact-info {
  color: #fff;
  font-size: 12px;
}

.footer-social-icon {
  font-size: 15px;
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 3px;
  text-align: center;
  display: inline-block;
}

.facebook {
  background-color: #4e71a8;
  color: #ffffff;
}

.twitter {
  background-color: #55acee;
  color: #ffffff;
}

.google {
  background-color: #d6492f;
  color: #ffffff;
}

.footer-alt {
  color: #acacac;
}

.bottom_footer {
  background-color: #e5002a;
  font-size: 14px;
}

.bottom_footer p {
  color: #FFFFFF;
}

.blue-text {
  color: #e5002a;
}

.brown-text {
  color: #e5002a;
}

.explore {
  padding: 5rem 0;
  background: #e5002a;
}

.explore .product__container {
  margin-bottom: 30px;
  height: 350px;
}

.explore_one {
  background-color: #FFFFFF;
  height: 350px;
  margin-bottom: 30px;
}

.explore_one:hover h2 {
  color: #e5002a;
}

.explore_one .image-left {
  overflow: hidden;
  height: 350px;
}

.explore_one .image-left img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.explore_one_content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 350px;
}

.explore_one_content p {
  font-weight: 300;
}

.explore_one:hover .image-left img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  overflow: hidden;
}

.explore_two {
  height: 450px;
  padding: 20px;
  background-color: #FFFFFF;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.explore_two:hover h2 {
  color: #e5002a;
}

.explore_two p {
  font-weight: 300;
}

.explore_three {
  background-color: #FFFFFF;
  height: 450px;
  margin-bottom: 10px;
}

.explore_three:hover h2 {
  color: #e5002a;
}

.explore_three .imgpart {
  height: 200px;
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.explore_three .imgpart img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.explore_three .content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 250px;
}

.explore_three .content p {
  font-weight: 300;
}

.explore_three:hover .imgpart img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.taglines {
  margin: 10px 0;
}

.taglines a {
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 25px;
  margin-right: 10px;
  font-size: 12px;
}

.readBtn {
  color: #e5002a;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.readBtn:hover {
  letter-spacing: 2px;
}

.top-header {
  padding: 12px 0;
  font-weight: 300;
  font-size: 14px;
}

.topbarleft-header ul {
  padding: 0;
  margin: 0;
}

.topbarleft-header ul li {
  float: left;
  list-style-type: none;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #ccc;
  color: #FFFFFF;
}

.topbarleft-header ul li:last-child {
  border-right: none;
}

.topbarleft-header ul li i {
  padding-right: 5px;
}

.topbarleft-header ul li a {
  color: #FFFFFF;
}

.socialToplinks {
  text-align: right;
  float: right;
}

.socialToplinks ul {
  padding: 0;
  margin: 0;
}

.socialToplinks ul li {
  float: left;
  list-style-type: none;
}

.socialToplinks ul li.opening {
  color: white;
  padding-right: 20px;
  margin-right: 20px;
}

.socialToplinks ul li.opening i {
  padding-right: 5px;
}

.socialToplinks ul li a {
  color: #FFFFFF;
}

.socialToplinks ul li a i {
  padding: 0 10px;
}

.readBtn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.readBtn:before {
  position: absolute;
  background-color: #e5002a;
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.readBtn:hover:before {
  color: #fff;
  width: 100%;
}

#h-title {
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0;
}

#h-title::before, #h-title::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
}

#h-title::before {
  background-color: var(--link-1);
  height: 2px;
  bottom: 0;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

#h-title:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

#h-title::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: translate3d(200%, 0, 0);
          transform: translate3d(200%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: var(--link-1);
}

#h-title:hover::after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#h-title span {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

#h-title:hover span {
  -webkit-transform: translate3d(-200%, 0, 0);
          transform: translate3d(-200%, 0, 0);
}

.cont-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont-list i {
  margin-right: 10px;
  color: #FFFFFF;
}

/* Use logo colors for buttons and headings */
.btn-warning {
  background-color: #f9b233 !important;
  color: #fff !important;
  border: none;
}

.btn-warning:hover {
  background-color: #1e73be !important;
  color: #fff !important;
}

.hero-section {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #1e73be), to(#f9b233));
  background: linear-gradient(90deg, #1e73be 60%, #f9b233 100%);
  color: #fff;
}

.card-title {
  color: #1e73be;
}

section h2, section h1 {
  color: #1e73be;
}

@media (max-width: 1024px) {
  .socialToplinks {
    display: none;
  }
  .ul-right-part li a {
    margin-top: 7px;
  }
}

@media (max-width: 800px) {
  .ul-right-part li a {
    margin-top: 6px;
  }
  .explore_one {
    height: auto;
  }
  .nav-brand img {
    height: 44px;
  }
  .top-header {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */