/***** Fonts *****/
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/poppins/Poppins-Medium.woff")
      format("woff"); /* Pretty Modern Browsers */
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/poppins/Poppins-SemiBold.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/poppins/Poppins-SemiBold.woff")
      format("woff"); /* Pretty Modern Browsers */
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/poppins/Poppins-Bold.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/poppins/Poppins-Bold.woff")
      format("woff"); /* Pretty Modern Browsers */
}

@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/rubik/Rubik-Regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/rubik/Rubik-Regular.woff")
      format("woff"); /* Pretty Modern Browsers */
}

/***** Common CSS *****/

body {
  font-family: "Rubik-Regular";
  color: #5a5a5a;
  overflow-x: hidden;
}
body.lock {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins-SemiBold";
  color: #ff3b3b;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
a {
  color: #a8002c;
}
a:hover,
a:focus {
  text-decoration: none;
}

/***** Shadow *****/
.shadow {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.main-content {
  position: relative;
  margin-top: 80px;
}

/***** Unordered List *****/
ul.arrow {
  padding-left: 0;
  margin-top: 15px;
  list-style: none;
}
ul.arrow li {
  padding-left: 15px;
  margin: 15px 0;
  background: url(../images/icons/arrow.png) no-repeat -8px 4px;
  background-size: 14px;
}
/***** Unordered List - Circle *****/
ul.circle {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.circle li {
  padding: 5px 0 5px 20px;
  position: relative;
}
ul.circle li:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid red;
  border-radius: 50%;
}
/***** Unordered List - Side Navigation *****/
ul.side-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #e5e5e5;
}
ul.side-nav li {
}
ul.side-nav li a {
  display: block;
  color: #5a5a5a;
  font-weight: bold;
  padding: 15px 25px;
  border-bottom: 1px solid #e5e5e5;
}
ul.side-nav li a:hover {
  color: red;
}
ul.side-nav li a.active {
  color: red;
  background: #fff;
  position: relative;
}
ul.side-nav li a.active:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: red;
}

/***** Alerts *****/
.alert {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

/***** Buttons *****/
.btn {
  position: relative;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  font-family: "Poppins-SemiBold";
  font-size: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../images/icons/btn_arrow.png) no-repeat center;
  background-size: contain;
  margin-left: 15px;
  position: relative;
}

.btn-primary,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
  background-color: #003a74;
  border-color: #003a74;
}
.btn-secondary,
.btn-secondary:hover,
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
  background-color: #ff3b3b;
  border-color: #ff3b3b;
}
.btn-white {
  color: #ff3b3b;
  background-color: #fff;
  border-color: #fff;
}

.btn-group-lg > .btn,
.btn-lg {
  font-size: 18px;
  padding: 9.5px 24px;
}

button:focus {
  outline: 0;
}

.btn.btn-white:after {
  background: url(../images/icons/link_arrow.svg) no-repeat center;
  background-size: contain;
  top: 2px;
}

/***** Colors *****/
.text-primary {
  color: #003a74 !important;
}
.text-secondary {
  color: #ff3b3b !important;
}

/***** Background Colors *****/
.bg-primary {
  background-color: #ef4728 !important;
}
.bg-light {
  background-color: #fafafa !important;
}

/***** Background Gradients *****/
.bg-gradient-primary {
  background: rgb(101, 0, 200);
  background: -moz-linear-gradient(45deg, #ef4728 0%, #f7911e 100%);
  background: -webkit-linear-gradient(45deg, #ef4728 0%, #f7911e 100%);
  background: linear-gradient(45deg, #ef4728 0%, #f7911e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EF4728",endColorstr="#F7911E",GradientType=1);
}
.bg-gradient-contact {
  background: rgb(255, 59, 59);
  background: -moz-linear-gradient(
    180deg,
    rgba(255, 59, 59, 1) 0%,
    rgba(255, 59, 59, 1) 60%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(255, 59, 59, 1) 0%,
    rgba(255, 59, 59, 1) 60%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(255, 59, 59, 1) 0%,
    rgba(255, 59, 59, 1) 55%,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3b3b",endColorstr="#ffffff",GradientType=1);
}

.bg-gradient-contact-btn {
  background: rgb(101, 0, 200);
  background: -moz-linear-gradient(45deg, #ef4728 0%, #f7911e 100%);
  background: -webkit-linear-gradient(45deg, #ef4728 0%, #f7911e 100%);
  background: linear-gradient(45deg, #ef4728 0%, #f7911e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EF4728",endColorstr="#F7911E",GradientType=1);
}

.bg-gradient-contact-btn .btn {
  width: 140px;
  height: 45px;
}

/***** Background Images *****/
.bg-support {
  background: url(../images/bg/oursupport_bg.jpg) no-repeat center;
  background-size: cover;
}
.bg-support-lg {
  background: url(../images/bg/bg_ss_lg.png) no-repeat center;
  background-size: cover;
}
.bg-choose {
  background: url(../images/bg/bg_whychooseus.png) no-repeat center;
  background-size: cover;
}

/***** Borders *****/
.border-primary {
  border-color: #003a74 !important;
}

/***** Breadcrumbs *****/
.breadcrumbs-hldr {
  border-bottom: 1px solid #a3b8ce;
  position: sticky;
  top: 115px;
  z-index: 999;
}
.breadcrumb .breadcrumb-item {
  color: #003a74;
}
.breadcrumb .breadcrumb-item a {
  color: #a7a7a7;
}

/***** Blocks *****/
.block-overlap {
  max-width: 700px;
}
.block-overlap p.lead {
  font-size: 20px;
}
.block-overlap p {
  font-size: 16px;
}

/***** Cards *****/
.two-column-card .card {
  color: #5a5a5a;
  background: #fafafa;
  transition: all 0.3s;
}
.two-column-card .card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.two-column-card .card img.link-arrow {
  margin-right: 5px;
  transition: all 0.3s;
  position: absolute;
  right: 10px;
}
.two-column-card .card:hover img.link-arrow {
  margin-right: 0;
}
.two-column-card .card-title {
  font-family: "Poppins-Bold";
  font-size: 22px;
  color: #5a5a5a;
}
.two-column-card .card-text {
  max-width: 400px;
  font-size: 14px;
  padding-right: 20px;
}

/***** Top Bar *****/
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #dee0e5;
  background: #fff;
  z-index: 9999;
  padding: 2px 0;
}
.topbar figure,
.topbar p {
  margin: 0;
}
.topbar p,
.topbar a {
  font-size: 12px;
  color: #5a5a5a;
}
.topbar a:hover,
.topbar a:focus {
  color: #ff3b3b;
}
.topbar .email {
  border-left: 1px solid #dee0e5;
}

/***** Main Navigation *****/
.main-nav {
  padding: 7px 0;
  width: 100%;
  z-index: 99999;
  top: 0;
  background: #fff;
}
.main-nav .navbar-brand {
  padding: 0;
}
.main-nav .navbar-brand img {
  max-width: 300px;
}
.main-nav .navbar-nav .nav-item {
  border-bottom: 2px solid #f5f5f5;
}
.main-nav .navbar-nav .nav-item.active {
  border-bottom: 2px solid #ff3b3b;
}
.main-nav .navbar-nav .nav-link {
  font-family: "Poppins-SemiBold";
  font-size: 12px;
  color: #5a5a5a;
  text-transform: uppercase;
  padding: 10px 0;
}
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .active .nav-link {
  color: #ff3b3b;
}

.sub-menu {
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0 auto;
  border: none;
}
.sub-menu .container {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
}
.sub-menu .container .row {
  padding: 20px;
}

.sub-menu ul {
  list-style: none;
  padding: 0;
}

.sub-menu ul.first {
}
.sub-menu ul.first li {
  border-bottom: 1px solid #e5e5e5;
}
.sub-menu ul.first li a {
  padding: 10px 0;
  display: block;
  color: #5a5a5a;
}
.sub-menu ul.first li a:hover {
  color: red;
}

.sub-menu ul.second {
}
.sub-menu ul.second li {
}
.sub-menu ul.second li a {
  padding: 5px 20px;
  font-size: 14px;
}

/***** Tabs *****/
.nav-tabs.product-tabs {
  border: 0;
}
.nav-tabs.product-tabs .nav-link {
  padding: 0;
  width: 30px;
  height: 30px;
  font-family: "Poppins-Medium";
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #68727b;
}
.nav-tabs.product-tabs .nav-link:focus,
.nav-tabs.product-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  border-radius: 50%;
  background: #fff;
}
.nav-tabs.product-tabs .nav-item {
  padding: 0 5px;
}
.nav-tabs.product-tabs .nav-item.show .nav-link,
.nav-tabs.product-tabs .nav-link.active {
  border: 0;
  border-radius: 50%;
  background: #ff3b3b;
  color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/***** Hero Carousel *****/
.hero-carousel .main-img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-carousel h1 {
  font-size: 26px;
}
.hero-carousel p {
  font-size: 13px;
}
.hero-carousel .slick-dots {
  bottom: 40px;
}

/***** Solutions Carousel *****/
.carousel-solutions .slick-prev:before,
.carousel-solutions .slick-next:before {
  display: none;
}
.carousel-solutions .slick-prev,
.carousel-solutions .slick-next {
  width: 18px;
  height: 27px;
  top: 35%;
  z-index: 999;
}
.carousel-solutions .slick-prev {
  left: 25px;
  background: url(../images/icons/slidearw_l.png) no-repeat center;
}
.carousel-solutions .slick-next {
  right: 25px;
  background: url(../images/icons/slidearw_r.png) no-repeat center;
}

/***** Support Carousel *****/
.carousel-support .slick-prev:before,
.carousel-support .slick-next:before {
  display: none;
}
.carousel-support .slick-prev,
.carousel-support .slick-next {
  width: 18px;
  height: 27px;
  z-index: 999;
}
.carousel-support .slick-prev {
  left: 25px;
  background: url(../images/icons/arrow_left.png) no-repeat center;
}
.carousel-support .slick-next {
  right: 25px;
  background: url(../images/icons/arrow_right.png) no-repeat center;
}

/***** Industries Carousel *****/
.carousel-industries .slick-prev:before,
.carousel-industries .slick-next:before,
.logo-grid .slick-prev:before,
.logo-grid .slick-next:before {
  display: none;
}
.carousel-industries .slick-prev,
.carousel-industries .slick-next,
.logo-grid .slick-prev,
.logo-grid .slick-next {
  width: 18px;
  height: 27px;
  z-index: 999;
}
.carousel-industries .slick-prev,
.logo-grid .slick-prev {
  left: 25px;
  background: url(../images/icons/arrow_left.png) no-repeat center;
}
.carousel-industries .slick-next,
.logo-grid .slick-next {
  right: 25px;
  background: url(../images/icons/arrow_right.png) no-repeat center;
}

/***** Form Elements *****/
.form-group {
  /*height: 90px;*/
}
.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
}
.form-group label sup {
  color: red;
}
.form-control {
  border: 1px solid #b2c3d5;
}
.form-group span.val-error {
  font-size: 12px;
  color: red;
}

/* Custom Input File */
.file-box {
  height: 335px;
  border: 1px solid #b2c3d5;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.file-box .upload_info {
  position: absolute;
  bottom: 20px;
  width: 330px;
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
  color: #969ca1;
}

.file-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
}

.file-upload__input {
  display: none;
}

.file-upload__button {
  -webkit-appearance: none;
  padding: 14px 45px;
  margin-bottom: 10px;
  background: #ff3b3b;
  color: #fff;
  font-size: 1em;
  transition: all 0.4s;
  cursor: pointer;
  border-radius: 8px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.file-upload__button:after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url(../images/icons/uparrow.png) no-repeat center;
  margin-left: 10px;
}

.file-upload__label {
  max-width: 250px;
  font-size: 0.95em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Quicksand", sans-serif;
}

/***** Our Support & Services *****/
.support figure .icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

/***** Our Business Partners *****/
.partners .rounded {
  border: 1px solid #a9bcd1;
  transition: all 0.3s;
}
.partners .rounded:hover {
  border: 1px solid #003a74;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.partners .rounded .link-arrow {
  width: 30px;
  height: 30px;
  background: url(../images/icons/link_arrow_disable.svg) no-repeat right;
  margin-right: 5px;
  transition: all 0.3s;
}
.partners .rounded:hover .link-arrow {
  background: url(../images/icons/link_arrow.svg) no-repeat right;
  margin-right: 0;
}

/***** Our Strategic Alliances *****/
.logo-grid {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.logo-grid .logo-box {
  width: 50%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e5e5e5;
}

.logo-grid .logo-box figure {
}
.logo-grid .logo-box figure img {
}

/***** Our Values *****/
ul.our-values {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
ul.our-values li {
  width: 50%;
  padding: 20px;
  border: 1px solid #e5e5e5;
}
ul.our-values li figure {
}
ul.our-values li figure img {
}
ul.our-values li h6 {
  font-size: 16px;
}
ul.our-values li p {
}

/***** Services Include *****/
ul.services-include {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
ul.services-include li {
  width: 100%;
  padding: 20px 20px 20px 40px;
  border: 1px solid #e5e5e5;
  position: relative;
}
ul.services-include li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border: 1px solid red;
  border-radius: 50%;
  transform: translate(0, -50%);
}

/***** Why Choose Us *****/
.choose h6 {
  color: #fff;
}
.choose p {
  color: #e1d1ff;
}

/***** Industries We Assist *****/
.industries div.d-flex {
  cursor: grab;
  transition: all 0.3s;
}
.industries div.d-flex:active {
  cursor: grabbing;
}
.industries div.d-flex:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/***** Join Global Automations *****/
.career h4 {
  margin-bottom: 20px;
}
.career p {
  max-width: 395px;
}
.career ul {
  padding-left: 0;
  margin-top: 30px;
  list-style: none;
}
.career ul li {
  padding-left: 20px;
  margin: 10px 0;
  background: url(../images/icons/arrow.png) no-repeat -8px;
  background-size: 16px;
}

/***** Contact Information *****/
.contact-info p {
  font-size: 14px;
}
.contact-info a {
  color: #003a74;
}

/***** Map *****/
.map-hldr {
  height: 400px;
}

/***** Product Detail Pages *****/
.products-hldr {
  /*height: calc(100vh - 224px);
	overflow-y: auto;*/
}

/******************/
/***** Footer *****/
/******************/
.main-footer {
  background-color: #2a363f;
  font-size: 16px;
}
.main-footer p,
.main-footer a {
  color: #a5a5a5;
}
.main-footer a:hover {
  color: rgb(239, 71, 40);
}

/***** Copyright Footer *****/
.copyright {
  background-color: #1c2329;
}
.copyright p {
  font-size: 13px;
  color: #a5a5a5;
  margin: 0;
}
