:root {
  --main-color: #EE3538;/*393A71*/
  --main-color-2: #393A71;
  --main-color-3: #555857;
  --main-color-dark: #083c88;/*EE3538*/
  --main-color-light: #ffefef;
  --white: #ffffff;
  --black: #00000;
  --bs-primary-rgb: 6, 56, 131;/*7, 70, 163, 57, 58, 113*/
  --bs-light-rgb: 237, 244, 255;
  --footer-grey: #f6f6f6;
}

.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--main-color-dark);
  --bs-btn-hover-border-color: var(--main-color-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--main-color-dark);
  --bs-btn-active-border-color: var(--main-color-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color);
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  src: url("fonts/Lato/Lato-Thin.ttf") format("ttf");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/Lato/Lato-Light.ttf") format("ttf");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Lato/Lato-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Lato/Lato-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/Lato/Lato-Black.ttf") format("ttf");
}
body {
  font-family: "Lato";
  font-weight: 400;
}

@keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}
@keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 70px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}
@keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}
a {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  color: var(--main-color);
}

.section-title {
  position: relative;
}

.section-title .title-short {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--main-color);
  padding-bottom: 5px;
}

.section-title .title-main {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 800;
  line-height: 1.3;
  padding-bottom: 4px;
}

.section-title:before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--main-color);
  border-radius: 2px;
}

.section-title:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 7px;
  bottom: -1px;
  background: #FFFFFF;
  animation: section-title-run 6s infinite linear;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.text-center::after {
  animation: section-title-run-center 5s infinite linear;
}

.bg-primary-dark {
  background-color: var(--main-color-dark);
}

.nav-link {
  color: #000000;
}

.nav-tabs .nav-link.active {
  color: var(--main-color);
}

.wow {
  visibility: hidden;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding: 6px 22px;
  color: var(--black);
  font-weight: 700;
}

.navbar-expand-xl .navbar-nav .nav-link.active,
.navbar-expand-xl .navbar-nav .nav-link:hover {
  color: var(--main-color);
}

@media screen and (min-width: 767px) {
  .navbar-brand img {
    height: 75px;
  }
}
.banner .item.overlay:before {
  content: "";
  background: rgba(0, 37, 84, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner .item .captions {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: translate(0, -50%);
  padding: 28px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner .item .captions .text1 {
  font-size: 18px;
  font-weight: 600;
  padding-left: 5px;
}

.banner .item .captions .text2 {
  display: block;
  font-size: 26px;
  font-weight: 700;
  padding: 3px 0 8px;
}

.banner .item .captions .para {
  display: block;
  width: 100%;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .banner .item .captions .text1 {
    font-size: 26px;
  }
  .banner .item .captions .text2 {
    font-size: 70px;
  }
  .banner .item .captions .para {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .banner .item .captions .text1 {
    font-size: 36px;
  }
  .banner .item .captions .text2 {
    font-size: 110px;
  }
  .banner .item .captions .para {
    font-size: 20px;
    width: 760px;
  }
}
#facts {
  margin-top: 60px;
  z-index: 3;
  position: relative;
}

.facts-box {
  height: 140px;
}

.facts-counter {
  font-size: 30px;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  #facts {
    margin-top: -70px;
  }
}
.highlighted-services .h5 {
  font-weight: 700;
}

.product {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.product-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  padding: 6px 0 11px;
}

.product-price {
  font-size: 22px;
  color: var(--main-color);
  font-weight: 600;
}

#footer {
  background: var(--footer-grey);
}

.footer-logo {
  padding: 6px;
  background: var(--footer-grey);
  border-radius: 4px;
  margin-bottom: 15px;
}

.footer-links i {
  padding-top: 6px;
  padding-right: 11px;
  font-size: 16px;
  color: var(--main-color);
}

.footer-links .link {
  transition: 0.2s all ease-in-out;
}

.footer-links .link i {
  padding-top: 5px;
}

.footer-links .link:hover {
  padding-left: 8px;
  transition: 0.2s all ease-in-out;
}

#product_specification tr td {
  padding: 0;
}

#product_specification tr td input {
  border: 0;
  padding: 0.75rem;
  border-radius: 0;
}

#product_specification tr td input::-moz-placeholder {
  color: #959595;
}

#product_specification tr td input::placeholder {
  color: #959595;
}

#product_specification tr td input.error {
  background: #ffffff;
}

#product_specification tr td input.checkbox {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

#product_specification tr td input:focus {
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */
